.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-89f5dde0-710d-429b-9aad-7f134f20bf87 {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (min-width: 1200px){#s-89f5dde0-710d-429b-9aad-7f134f20bf87 {
  display: none;
}
#s-89f5dde0-710d-429b-9aad-7f134f20bf87, #wrap-s-89f5dde0-710d-429b-9aad-7f134f20bf87 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-89f5dde0-710d-429b-9aad-7f134f20bf87 {
  display: none;
}
#s-89f5dde0-710d-429b-9aad-7f134f20bf87, #wrap-s-89f5dde0-710d-429b-9aad-7f134f20bf87 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-89f5dde0-710d-429b-9aad-7f134f20bf87 {
  display: none;
}
#s-89f5dde0-710d-429b-9aad-7f134f20bf87, #wrap-s-89f5dde0-710d-429b-9aad-7f134f20bf87 { display: none !important; }}@media (max-width: 767px){#s-89f5dde0-710d-429b-9aad-7f134f20bf87 {
  display: none;
}
#s-89f5dde0-710d-429b-9aad-7f134f20bf87, #wrap-s-89f5dde0-710d-429b-9aad-7f134f20bf87 { display: none !important; }}







#s-89f5dde0-710d-429b-9aad-7f134f20bf87 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-89f5dde0-710d-429b-9aad-7f134f20bf87.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.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-c97e5000-8a1b-4fc6-936d-4d2c5a1f1416 {
  text-align: center;
}







  #s-c97e5000-8a1b-4fc6-936d-4d2c5a1f1416 img.shogun-image {
    

    
    
    
  }


#s-c97e5000-8a1b-4fc6-936d-4d2c5a1f1416 .shogun-image-content {
  
    align-items: center;
  
}

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

.shg-row > * {
  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-b1d1c613-f166-40de-a0bf-b6391fc6409f {
  margin-left: 2%;
margin-right: 2%;
}

@media (min-width: 0px) {
[id="s-b1d1c613-f166-40de-a0bf-b6391fc6409f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-b1d1c613-f166-40de-a0bf-b6391fc6409f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-b1d1c613-f166-40de-a0bf-b6391fc6409f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-b1d1c613-f166-40de-a0bf-b6391fc6409f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

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

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

#s-a032fcd3-7dab-454a-8373-7356dafa637d {
  margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a032fcd3-7dab-454a-8373-7356dafa637d .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 22px;
  line-height: 1.5em;
  letter-spacing: 3px;
  
}



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

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

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

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

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

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

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

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

#s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5 {
  margin-top: 10px;
margin-bottom: 25px;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-radius: 2px;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
}
#s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5-root {
    text-align: center;
  }


#s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5-root {
    text-align: center;
  }


#s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5-root {
    text-align: center;
  }


#s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5-root {
    text-align: center;
  }


#s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5-root {
    text-align: center;
  }


#s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}
  #s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5-root {
    text-align: center;
  }


#s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}

#s-48326488-34a4-4246-8050-ebbc4dc2cb5e {
  margin-top: -5%;
margin-bottom: 0%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-48326488-34a4-4246-8050-ebbc4dc2cb5e {
  display: none;
}
#s-48326488-34a4-4246-8050-ebbc4dc2cb5e, #wrap-s-48326488-34a4-4246-8050-ebbc4dc2cb5e { display: none !important; }}@media (max-width: 767px){#s-48326488-34a4-4246-8050-ebbc4dc2cb5e {
  display: none;
}
#s-48326488-34a4-4246-8050-ebbc4dc2cb5e, #wrap-s-48326488-34a4-4246-8050-ebbc4dc2cb5e { display: none !important; }}







#s-48326488-34a4-4246-8050-ebbc4dc2cb5e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-48326488-34a4-4246-8050-ebbc4dc2cb5e.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-9a829fcc-eae1-499b-ad0f-08b98f7b125e {
  max-width: 2800px;
aspect-ratio: 2800/806;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-9a829fcc-eae1-499b-ad0f-08b98f7b125e {
  display: none;
}
#s-9a829fcc-eae1-499b-ad0f-08b98f7b125e, #wrap-s-9a829fcc-eae1-499b-ad0f-08b98f7b125e { display: none !important; }}@media (max-width: 767px){#s-9a829fcc-eae1-499b-ad0f-08b98f7b125e {
  display: none;
}
#s-9a829fcc-eae1-499b-ad0f-08b98f7b125e, #wrap-s-9a829fcc-eae1-499b-ad0f-08b98f7b125e { display: none !important; }}




  #s-9a829fcc-eae1-499b-ad0f-08b98f7b125e img.shogun-image,
  #s-9a829fcc-eae1-499b-ad0f-08b98f7b125e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9a829fcc-eae1-499b-ad0f-08b98f7b125e {
    width: 100%;
    height: auto;
  }

  #s-9a829fcc-eae1-499b-ad0f-08b98f7b125e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9a829fcc-eae1-499b-ad0f-08b98f7b125e.shogun-image {
    
    
  }


.s-9a829fcc-eae1-499b-ad0f-08b98f7b125e .shogun-image-content {
  
    align-items: center;
  
}

.s-9a829fcc-eae1-499b-ad0f-08b98f7b125e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9a829fcc-eae1-499b-ad0f-08b98f7b125e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9a829fcc-eae1-499b-ad0f-08b98f7b125e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9a829fcc-eae1-499b-ad0f-08b98f7b125e {
      --shg-aspect-ratio: calc(2800/806); 
    }

    .s-9a829fcc-eae1-499b-ad0f-08b98f7b125e.shogun-image-container {
      position: relative;
    }

    .s-9a829fcc-eae1-499b-ad0f-08b98f7b125e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9a829fcc-eae1-499b-ad0f-08b98f7b125e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9a829fcc-eae1-499b-ad0f-08b98f7b125e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-9a829fcc-eae1-499b-ad0f-08b98f7b125e img.shogun-image,
  #s-9a829fcc-eae1-499b-ad0f-08b98f7b125e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9a829fcc-eae1-499b-ad0f-08b98f7b125e {
    width: 100%;
    height: auto;
  }

  #s-9a829fcc-eae1-499b-ad0f-08b98f7b125e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9a829fcc-eae1-499b-ad0f-08b98f7b125e.shogun-image {
    
    
  }


.s-9a829fcc-eae1-499b-ad0f-08b98f7b125e .shogun-image-content {
  
    align-items: center;
  
}

.s-9a829fcc-eae1-499b-ad0f-08b98f7b125e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9a829fcc-eae1-499b-ad0f-08b98f7b125e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9a829fcc-eae1-499b-ad0f-08b98f7b125e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9a829fcc-eae1-499b-ad0f-08b98f7b125e {
      --shg-aspect-ratio: calc(2800/806); 
    }

    .s-9a829fcc-eae1-499b-ad0f-08b98f7b125e.shogun-image-container {
      position: relative;
    }

    .s-9a829fcc-eae1-499b-ad0f-08b98f7b125e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9a829fcc-eae1-499b-ad0f-08b98f7b125e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9a829fcc-eae1-499b-ad0f-08b98f7b125e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-9a829fcc-eae1-499b-ad0f-08b98f7b125e img.shogun-image,
  #s-9a829fcc-eae1-499b-ad0f-08b98f7b125e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9a829fcc-eae1-499b-ad0f-08b98f7b125e {
    width: 100%;
    height: auto;
  }

  #s-9a829fcc-eae1-499b-ad0f-08b98f7b125e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9a829fcc-eae1-499b-ad0f-08b98f7b125e.shogun-image {
    
    
  }


.s-9a829fcc-eae1-499b-ad0f-08b98f7b125e .shogun-image-content {
  
    align-items: center;
  
}

.s-9a829fcc-eae1-499b-ad0f-08b98f7b125e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9a829fcc-eae1-499b-ad0f-08b98f7b125e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9a829fcc-eae1-499b-ad0f-08b98f7b125e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9a829fcc-eae1-499b-ad0f-08b98f7b125e {
      --shg-aspect-ratio: calc(2800/806); 
    }

    .s-9a829fcc-eae1-499b-ad0f-08b98f7b125e.shogun-image-container {
      position: relative;
    }

    .s-9a829fcc-eae1-499b-ad0f-08b98f7b125e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9a829fcc-eae1-499b-ad0f-08b98f7b125e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9a829fcc-eae1-499b-ad0f-08b98f7b125e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-9a829fcc-eae1-499b-ad0f-08b98f7b125e img.shogun-image,
  #s-9a829fcc-eae1-499b-ad0f-08b98f7b125e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9a829fcc-eae1-499b-ad0f-08b98f7b125e {
    width: 100%;
    height: auto;
  }

  #s-9a829fcc-eae1-499b-ad0f-08b98f7b125e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9a829fcc-eae1-499b-ad0f-08b98f7b125e.shogun-image {
    
    
  }


.s-9a829fcc-eae1-499b-ad0f-08b98f7b125e .shogun-image-content {
  
    align-items: center;
  
}

.s-9a829fcc-eae1-499b-ad0f-08b98f7b125e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9a829fcc-eae1-499b-ad0f-08b98f7b125e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9a829fcc-eae1-499b-ad0f-08b98f7b125e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9a829fcc-eae1-499b-ad0f-08b98f7b125e {
      --shg-aspect-ratio: calc(2800/806); 
    }

    .s-9a829fcc-eae1-499b-ad0f-08b98f7b125e.shogun-image-container {
      position: relative;
    }

    .s-9a829fcc-eae1-499b-ad0f-08b98f7b125e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9a829fcc-eae1-499b-ad0f-08b98f7b125e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9a829fcc-eae1-499b-ad0f-08b98f7b125e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-9a829fcc-eae1-499b-ad0f-08b98f7b125e img.shogun-image,
  #s-9a829fcc-eae1-499b-ad0f-08b98f7b125e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9a829fcc-eae1-499b-ad0f-08b98f7b125e {
    width: 100%;
    height: auto;
  }

  #s-9a829fcc-eae1-499b-ad0f-08b98f7b125e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9a829fcc-eae1-499b-ad0f-08b98f7b125e.shogun-image {
    
    
  }


.s-9a829fcc-eae1-499b-ad0f-08b98f7b125e .shogun-image-content {
  
    align-items: center;
  
}

.s-9a829fcc-eae1-499b-ad0f-08b98f7b125e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9a829fcc-eae1-499b-ad0f-08b98f7b125e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9a829fcc-eae1-499b-ad0f-08b98f7b125e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9a829fcc-eae1-499b-ad0f-08b98f7b125e {
      --shg-aspect-ratio: calc(2800/806); 
    }

    .s-9a829fcc-eae1-499b-ad0f-08b98f7b125e.shogun-image-container {
      position: relative;
    }

    .s-9a829fcc-eae1-499b-ad0f-08b98f7b125e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9a829fcc-eae1-499b-ad0f-08b98f7b125e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9a829fcc-eae1-499b-ad0f-08b98f7b125e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-6d5b1dba-6e87-4246-84d1-af1153b0931f {
  margin-top: 1%;
}
@media (min-width: 768px) and (max-width: 991px){#s-6d5b1dba-6e87-4246-84d1-af1153b0931f {
  display: none;
}
#s-6d5b1dba-6e87-4246-84d1-af1153b0931f, #wrap-s-6d5b1dba-6e87-4246-84d1-af1153b0931f { display: none !important; }}@media (max-width: 767px){#s-6d5b1dba-6e87-4246-84d1-af1153b0931f {
  display: none;
}
#s-6d5b1dba-6e87-4246-84d1-af1153b0931f, #wrap-s-6d5b1dba-6e87-4246-84d1-af1153b0931f { display: none !important; }}
@media (min-width: 0px) {
[id="s-6d5b1dba-6e87-4246-84d1-af1153b0931f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6d5b1dba-6e87-4246-84d1-af1153b0931f"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 10.0px);
}

[id="s-6d5b1dba-6e87-4246-84d1-af1153b0931f"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-6d5b1dba-6e87-4246-84d1-af1153b0931f"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 10.0px);
}

[id="s-6d5b1dba-6e87-4246-84d1-af1153b0931f"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-6d5b1dba-6e87-4246-84d1-af1153b0931f"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 10.0px);
}

[id="s-6d5b1dba-6e87-4246-84d1-af1153b0931f"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 10.0px);
}

}

#s-c081bf75-0cbe-45fe-a764-a651199318a3 {
  margin-left: 5%;
margin-right: 5%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-c081bf75-0cbe-45fe-a764-a651199318a3 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  line-height: 1em;
  letter-spacing: 2px;
  
}



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-09e8686f-cdb8-46c4-a9fc-d0eae580a08c {
  margin-top: 3%;
margin-left: 5%;
margin-right: 18%;
}
@media (min-width: 768px) and (max-width: 991px){#s-09e8686f-cdb8-46c4-a9fc-d0eae580a08c {
  display: none;
}
#s-09e8686f-cdb8-46c4-a9fc-d0eae580a08c, #wrap-s-09e8686f-cdb8-46c4-a9fc-d0eae580a08c { display: none !important; }}@media (max-width: 767px){#s-09e8686f-cdb8-46c4-a9fc-d0eae580a08c {
  display: none;
}
#s-09e8686f-cdb8-46c4-a9fc-d0eae580a08c, #wrap-s-09e8686f-cdb8-46c4-a9fc-d0eae580a08c { display: none !important; }}
#s-8509361b-a80d-44b6-8dc0-d0231c238101 {
  margin-top: 3%;
margin-left: 5%;
margin-bottom: 5%;
margin-right: 5%;
min-height: 50px;
}
@media (min-width: 1200px){#s-8509361b-a80d-44b6-8dc0-d0231c238101 {
  display: none;
}
#s-8509361b-a80d-44b6-8dc0-d0231c238101, #wrap-s-8509361b-a80d-44b6-8dc0-d0231c238101 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8509361b-a80d-44b6-8dc0-d0231c238101 {
  display: none;
}
#s-8509361b-a80d-44b6-8dc0-d0231c238101, #wrap-s-8509361b-a80d-44b6-8dc0-d0231c238101 { display: none !important; }}







#s-8509361b-a80d-44b6-8dc0-d0231c238101 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8509361b-a80d-44b6-8dc0-d0231c238101.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-grid {
  position: relative;
  width: 100%;
}

.shg-grid-content {
  display: grid;
}

#s-e0e80526-bb83-4383-a92e-bd118bdf4680 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(13, calc(100vw / 24));
}

#s-9205a577-364d-45f7-afe0-a2f1e5937ceb {
  aspect-ratio: 12/12;
text-align: center;
}

#s-9205a577-364d-45f7-afe0-a2f1e5937ceb-root {
  grid-column-start: 1;
grid-column-end: 13;
grid-row-start: 1;
grid-row-end: 13;
z-index: 0;
}





  #s-9205a577-364d-45f7-afe0-a2f1e5937ceb img.shogun-image,
  #s-9205a577-364d-45f7-afe0-a2f1e5937ceb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9205a577-364d-45f7-afe0-a2f1e5937ceb {
    width: 100%;
    height: auto;
  }

  #s-9205a577-364d-45f7-afe0-a2f1e5937ceb img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9205a577-364d-45f7-afe0-a2f1e5937ceb.shogun-image {
    
    
  }


.s-9205a577-364d-45f7-afe0-a2f1e5937ceb .shogun-image-content {
  
    align-items: center;
  
}

.s-9205a577-364d-45f7-afe0-a2f1e5937ceb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9205a577-364d-45f7-afe0-a2f1e5937ceb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9205a577-364d-45f7-afe0-a2f1e5937ceb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9205a577-364d-45f7-afe0-a2f1e5937ceb {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-9205a577-364d-45f7-afe0-a2f1e5937ceb.shogun-image-container {
      position: relative;
    }

    .s-9205a577-364d-45f7-afe0-a2f1e5937ceb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9205a577-364d-45f7-afe0-a2f1e5937ceb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9205a577-364d-45f7-afe0-a2f1e5937ceb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-9205a577-364d-45f7-afe0-a2f1e5937ceb img.shogun-image,
  #s-9205a577-364d-45f7-afe0-a2f1e5937ceb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9205a577-364d-45f7-afe0-a2f1e5937ceb {
    width: 100%;
    height: auto;
  }

  #s-9205a577-364d-45f7-afe0-a2f1e5937ceb img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9205a577-364d-45f7-afe0-a2f1e5937ceb.shogun-image {
    
    
  }


.s-9205a577-364d-45f7-afe0-a2f1e5937ceb .shogun-image-content {
  
    align-items: center;
  
}

.s-9205a577-364d-45f7-afe0-a2f1e5937ceb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9205a577-364d-45f7-afe0-a2f1e5937ceb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9205a577-364d-45f7-afe0-a2f1e5937ceb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9205a577-364d-45f7-afe0-a2f1e5937ceb {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-9205a577-364d-45f7-afe0-a2f1e5937ceb.shogun-image-container {
      position: relative;
    }

    .s-9205a577-364d-45f7-afe0-a2f1e5937ceb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9205a577-364d-45f7-afe0-a2f1e5937ceb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9205a577-364d-45f7-afe0-a2f1e5937ceb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-9205a577-364d-45f7-afe0-a2f1e5937ceb img.shogun-image,
  #s-9205a577-364d-45f7-afe0-a2f1e5937ceb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9205a577-364d-45f7-afe0-a2f1e5937ceb {
    width: 100%;
    height: auto;
  }

  #s-9205a577-364d-45f7-afe0-a2f1e5937ceb img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9205a577-364d-45f7-afe0-a2f1e5937ceb.shogun-image {
    
    
  }


.s-9205a577-364d-45f7-afe0-a2f1e5937ceb .shogun-image-content {
  
    align-items: center;
  
}

.s-9205a577-364d-45f7-afe0-a2f1e5937ceb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9205a577-364d-45f7-afe0-a2f1e5937ceb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9205a577-364d-45f7-afe0-a2f1e5937ceb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9205a577-364d-45f7-afe0-a2f1e5937ceb {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-9205a577-364d-45f7-afe0-a2f1e5937ceb.shogun-image-container {
      position: relative;
    }

    .s-9205a577-364d-45f7-afe0-a2f1e5937ceb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9205a577-364d-45f7-afe0-a2f1e5937ceb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9205a577-364d-45f7-afe0-a2f1e5937ceb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-9205a577-364d-45f7-afe0-a2f1e5937ceb img.shogun-image,
  #s-9205a577-364d-45f7-afe0-a2f1e5937ceb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9205a577-364d-45f7-afe0-a2f1e5937ceb {
    width: 100%;
    height: auto;
  }

  #s-9205a577-364d-45f7-afe0-a2f1e5937ceb img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9205a577-364d-45f7-afe0-a2f1e5937ceb.shogun-image {
    
    
  }


.s-9205a577-364d-45f7-afe0-a2f1e5937ceb .shogun-image-content {
  
    align-items: center;
  
}

.s-9205a577-364d-45f7-afe0-a2f1e5937ceb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9205a577-364d-45f7-afe0-a2f1e5937ceb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9205a577-364d-45f7-afe0-a2f1e5937ceb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9205a577-364d-45f7-afe0-a2f1e5937ceb {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-9205a577-364d-45f7-afe0-a2f1e5937ceb.shogun-image-container {
      position: relative;
    }

    .s-9205a577-364d-45f7-afe0-a2f1e5937ceb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9205a577-364d-45f7-afe0-a2f1e5937ceb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9205a577-364d-45f7-afe0-a2f1e5937ceb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-9205a577-364d-45f7-afe0-a2f1e5937ceb img.shogun-image,
  #s-9205a577-364d-45f7-afe0-a2f1e5937ceb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9205a577-364d-45f7-afe0-a2f1e5937ceb {
    width: 100%;
    height: auto;
  }

  #s-9205a577-364d-45f7-afe0-a2f1e5937ceb img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9205a577-364d-45f7-afe0-a2f1e5937ceb.shogun-image {
    
    
  }


.s-9205a577-364d-45f7-afe0-a2f1e5937ceb .shogun-image-content {
  
    align-items: center;
  
}

.s-9205a577-364d-45f7-afe0-a2f1e5937ceb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9205a577-364d-45f7-afe0-a2f1e5937ceb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9205a577-364d-45f7-afe0-a2f1e5937ceb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9205a577-364d-45f7-afe0-a2f1e5937ceb {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-9205a577-364d-45f7-afe0-a2f1e5937ceb.shogun-image-container {
      position: relative;
    }

    .s-9205a577-364d-45f7-afe0-a2f1e5937ceb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9205a577-364d-45f7-afe0-a2f1e5937ceb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9205a577-364d-45f7-afe0-a2f1e5937ceb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89 {
  aspect-ratio: 12/12;
text-align: center;
}

#s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89-root {
  grid-column-start: 12;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 14;
z-index: 1;
}





  #s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89 img.shogun-image,
  #s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89 {
    width: 100%;
    height: auto;
  }

  #s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89.shogun-image {
    
    
  }


.s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89 .shogun-image-content {
  
    align-items: center;
  
}

.s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89.shg-align-container {
  display: flex;
  justify-content: center
}

.s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89.shogun-image-container {
      position: relative;
    }

    .s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89 img.shogun-image,
  #s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89 {
    width: 100%;
    height: auto;
  }

  #s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89.shogun-image {
    
    
  }


.s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89 .shogun-image-content {
  
    align-items: center;
  
}

.s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89.shg-align-container {
  display: flex;
  justify-content: center
}

.s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89.shogun-image-container {
      position: relative;
    }

    .s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89 img.shogun-image,
  #s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89 {
    width: 100%;
    height: auto;
  }

  #s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89.shogun-image {
    
    
  }


.s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89 .shogun-image-content {
  
    align-items: center;
  
}

.s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89.shg-align-container {
  display: flex;
  justify-content: center
}

.s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89.shogun-image-container {
      position: relative;
    }

    .s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89 img.shogun-image,
  #s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89 {
    width: 100%;
    height: auto;
  }

  #s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89.shogun-image {
    
    
  }


.s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89 .shogun-image-content {
  
    align-items: center;
  
}

.s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89.shg-align-container {
  display: flex;
  justify-content: center
}

.s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89.shogun-image-container {
      position: relative;
    }

    .s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89 img.shogun-image,
  #s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89 {
    width: 100%;
    height: auto;
  }

  #s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89.shogun-image {
    
    
  }


.s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89 .shogun-image-content {
  
    align-items: center;
  
}

.s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89.shg-align-container {
  display: flex;
  justify-content: center
}

.s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89.shogun-image-container {
      position: relative;
    }

    .s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-356f8ec3-3323-41bc-bf9a-e02dc43e3e89 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-b2334b08-6545-4a04-8810-82f1730f4752 {
  margin-top: -1%;
margin-bottom: 0%;
}

#s-b2334b08-6545-4a04-8810-82f1730f4752 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(5, calc(100vw / 24));
}

#s-6469367f-d1f4-4da5-b2b2-210a37a2dce7 {
  margin-left: 0%;
margin-right: 20%;
text-align: center;
}

#s-6469367f-d1f4-4da5-b2b2-210a37a2dce7-root {
  grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 2;
grid-row-end: 6;
z-index: 0;
}







  img.s-6469367f-d1f4-4da5-b2b2-210a37a2dce7.shogun-image {
    
    
  }


.s-6469367f-d1f4-4da5-b2b2-210a37a2dce7 .shogun-image-content {
  
    align-items: center;
  
}

.s-6469367f-d1f4-4da5-b2b2-210a37a2dce7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6469367f-d1f4-4da5-b2b2-210a37a2dce7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6469367f-d1f4-4da5-b2b2-210a37a2dce7.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-6469367f-d1f4-4da5-b2b2-210a37a2dce7.shogun-image {
    
    
  }


.s-6469367f-d1f4-4da5-b2b2-210a37a2dce7 .shogun-image-content {
  
    align-items: center;
  
}

.s-6469367f-d1f4-4da5-b2b2-210a37a2dce7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6469367f-d1f4-4da5-b2b2-210a37a2dce7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6469367f-d1f4-4da5-b2b2-210a37a2dce7.shogun-image {
  box-sizing: border-box;
}



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





  img.s-6469367f-d1f4-4da5-b2b2-210a37a2dce7.shogun-image {
    
    
  }


.s-6469367f-d1f4-4da5-b2b2-210a37a2dce7 .shogun-image-content {
  
    align-items: center;
  
}

.s-6469367f-d1f4-4da5-b2b2-210a37a2dce7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6469367f-d1f4-4da5-b2b2-210a37a2dce7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6469367f-d1f4-4da5-b2b2-210a37a2dce7.shogun-image {
  box-sizing: border-box;
}



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





  img.s-6469367f-d1f4-4da5-b2b2-210a37a2dce7.shogun-image {
    
    
  }


.s-6469367f-d1f4-4da5-b2b2-210a37a2dce7 .shogun-image-content {
  
    align-items: center;
  
}

.s-6469367f-d1f4-4da5-b2b2-210a37a2dce7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6469367f-d1f4-4da5-b2b2-210a37a2dce7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6469367f-d1f4-4da5-b2b2-210a37a2dce7.shogun-image {
  box-sizing: border-box;
}



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





  img.s-6469367f-d1f4-4da5-b2b2-210a37a2dce7.shogun-image {
    
    
  }


.s-6469367f-d1f4-4da5-b2b2-210a37a2dce7 .shogun-image-content {
  
    align-items: center;
  
}

.s-6469367f-d1f4-4da5-b2b2-210a37a2dce7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6469367f-d1f4-4da5-b2b2-210a37a2dce7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6469367f-d1f4-4da5-b2b2-210a37a2dce7.shogun-image {
  box-sizing: border-box;
}



}
#s-c6ac43ae-bff7-428c-82e0-e03ff856ed50 {
  margin-top: 6%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c6ac43ae-bff7-428c-82e0-e03ff856ed50 {
  grid-column-start: 6;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 6;
z-index: 1;
}

#s-c6ac43ae-bff7-428c-82e0-e03ff856ed50 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 1px;
  text-align: left;
}



#s-370cf12e-9be0-4890-a71e-d672f4945e3f {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-94a10535-106a-4973-86dd-8c8871f9f061 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-94a10535-106a-4973-86dd-8c8871f9f061 img.shogun-image,
  #s-94a10535-106a-4973-86dd-8c8871f9f061 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-94a10535-106a-4973-86dd-8c8871f9f061 {
    width: 100%;
    height: auto;
  }

  #s-94a10535-106a-4973-86dd-8c8871f9f061 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-94a10535-106a-4973-86dd-8c8871f9f061.shogun-image {
    
    
  }


.s-94a10535-106a-4973-86dd-8c8871f9f061 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-94a10535-106a-4973-86dd-8c8871f9f061.shg-align-container {
  display: flex;
  justify-content: center
}

.s-94a10535-106a-4973-86dd-8c8871f9f061.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-94a10535-106a-4973-86dd-8c8871f9f061.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-94a10535-106a-4973-86dd-8c8871f9f061 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-94a10535-106a-4973-86dd-8c8871f9f061.shogun-image-container {
      position: relative;
    }

    .s-94a10535-106a-4973-86dd-8c8871f9f061.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-94a10535-106a-4973-86dd-8c8871f9f061.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-94a10535-106a-4973-86dd-8c8871f9f061 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-94a10535-106a-4973-86dd-8c8871f9f061 img.shogun-image,
  #s-94a10535-106a-4973-86dd-8c8871f9f061 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-94a10535-106a-4973-86dd-8c8871f9f061 {
    width: 100%;
    height: auto;
  }

  #s-94a10535-106a-4973-86dd-8c8871f9f061 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-94a10535-106a-4973-86dd-8c8871f9f061.shogun-image {
    
    
  }


.s-94a10535-106a-4973-86dd-8c8871f9f061 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-94a10535-106a-4973-86dd-8c8871f9f061.shg-align-container {
  display: flex;
  justify-content: center
}

.s-94a10535-106a-4973-86dd-8c8871f9f061.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-94a10535-106a-4973-86dd-8c8871f9f061.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-94a10535-106a-4973-86dd-8c8871f9f061 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-94a10535-106a-4973-86dd-8c8871f9f061.shogun-image-container {
      position: relative;
    }

    .s-94a10535-106a-4973-86dd-8c8871f9f061.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-94a10535-106a-4973-86dd-8c8871f9f061.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-94a10535-106a-4973-86dd-8c8871f9f061 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-94a10535-106a-4973-86dd-8c8871f9f061 img.shogun-image,
  #s-94a10535-106a-4973-86dd-8c8871f9f061 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-94a10535-106a-4973-86dd-8c8871f9f061 {
    width: 100%;
    height: auto;
  }

  #s-94a10535-106a-4973-86dd-8c8871f9f061 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-94a10535-106a-4973-86dd-8c8871f9f061.shogun-image {
    
    
  }


.s-94a10535-106a-4973-86dd-8c8871f9f061 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-94a10535-106a-4973-86dd-8c8871f9f061.shg-align-container {
  display: flex;
  justify-content: center
}

.s-94a10535-106a-4973-86dd-8c8871f9f061.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-94a10535-106a-4973-86dd-8c8871f9f061.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-94a10535-106a-4973-86dd-8c8871f9f061 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-94a10535-106a-4973-86dd-8c8871f9f061.shogun-image-container {
      position: relative;
    }

    .s-94a10535-106a-4973-86dd-8c8871f9f061.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-94a10535-106a-4973-86dd-8c8871f9f061.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-94a10535-106a-4973-86dd-8c8871f9f061 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-94a10535-106a-4973-86dd-8c8871f9f061 img.shogun-image,
  #s-94a10535-106a-4973-86dd-8c8871f9f061 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-94a10535-106a-4973-86dd-8c8871f9f061 {
    width: 100%;
    height: auto;
  }

  #s-94a10535-106a-4973-86dd-8c8871f9f061 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-94a10535-106a-4973-86dd-8c8871f9f061.shogun-image {
    
    
  }


.s-94a10535-106a-4973-86dd-8c8871f9f061 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-94a10535-106a-4973-86dd-8c8871f9f061.shg-align-container {
  display: flex;
  justify-content: center
}

.s-94a10535-106a-4973-86dd-8c8871f9f061.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-94a10535-106a-4973-86dd-8c8871f9f061.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-94a10535-106a-4973-86dd-8c8871f9f061 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-94a10535-106a-4973-86dd-8c8871f9f061.shogun-image-container {
      position: relative;
    }

    .s-94a10535-106a-4973-86dd-8c8871f9f061.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-94a10535-106a-4973-86dd-8c8871f9f061.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-94a10535-106a-4973-86dd-8c8871f9f061 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-94a10535-106a-4973-86dd-8c8871f9f061 img.shogun-image,
  #s-94a10535-106a-4973-86dd-8c8871f9f061 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-94a10535-106a-4973-86dd-8c8871f9f061 {
    width: 100%;
    height: auto;
  }

  #s-94a10535-106a-4973-86dd-8c8871f9f061 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-94a10535-106a-4973-86dd-8c8871f9f061.shogun-image {
    
    
  }


.s-94a10535-106a-4973-86dd-8c8871f9f061 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-94a10535-106a-4973-86dd-8c8871f9f061.shg-align-container {
  display: flex;
  justify-content: center
}

.s-94a10535-106a-4973-86dd-8c8871f9f061.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-94a10535-106a-4973-86dd-8c8871f9f061.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-94a10535-106a-4973-86dd-8c8871f9f061 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-94a10535-106a-4973-86dd-8c8871f9f061.shogun-image-container {
      position: relative;
    }

    .s-94a10535-106a-4973-86dd-8c8871f9f061.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-94a10535-106a-4973-86dd-8c8871f9f061.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-94a10535-106a-4973-86dd-8c8871f9f061 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-724bcb28-08e1-4dad-8ab5-8a23a6865bf6 {
  margin-top: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-724bcb28-08e1-4dad-8ab5-8a23a6865bf6 .shogun-heading-component h5 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-2d6b09a0-57c3-48fd-abfc-f912b3b4a9a2 {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-2d6b09a0-57c3-48fd-abfc-f912b3b4a9a2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2d6b09a0-57c3-48fd-abfc-f912b3b4a9a2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bc5ab36b-a9d9-4989-bdc3-c463c3bf4c83 {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: rgba(29, 29, 29, 0);
border-radius: 3px;
max-width: 100%;
background-color: rgba(29, 29, 29, 0.9);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-bc5ab36b-a9d9-4989-bdc3-c463c3bf4c83:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 0) !important;
background-color: rgba(74, 74, 74, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-bc5ab36b-a9d9-4989-bdc3-c463c3bf4c83:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(155, 155, 155, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-bc5ab36b-a9d9-4989-bdc3-c463c3bf4c83-root {
    text-align: center;
  }


#s-bc5ab36b-a9d9-4989-bdc3-c463c3bf4c83.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-bc5ab36b-a9d9-4989-bdc3-c463c3bf4c83-root {
    text-align: center;
  }


#s-bc5ab36b-a9d9-4989-bdc3-c463c3bf4c83.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-bc5ab36b-a9d9-4989-bdc3-c463c3bf4c83-root {
    text-align: center;
  }


#s-bc5ab36b-a9d9-4989-bdc3-c463c3bf4c83.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-bc5ab36b-a9d9-4989-bdc3-c463c3bf4c83-root {
    text-align: center;
  }


#s-bc5ab36b-a9d9-4989-bdc3-c463c3bf4c83.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-bc5ab36b-a9d9-4989-bdc3-c463c3bf4c83-root {
    text-align: center;
  }


#s-bc5ab36b-a9d9-4989-bdc3-c463c3bf4c83.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-bc5ab36b-a9d9-4989-bdc3-c463c3bf4c83-root {
    text-align: center;
  }


#s-bc5ab36b-a9d9-4989-bdc3-c463c3bf4c83.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-9bbde3d3-3895-4abe-acda-49f31b067a8a {
  margin-top: 13%;
margin-bottom: 0%;
}

#s-9bbde3d3-3895-4abe-acda-49f31b067a8a .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(14, calc(100vw / 24));
}

#s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c {
  aspect-ratio: 13/13;
text-align: center;
}

#s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c-root {
  grid-column-start: 1;
grid-column-end: 14;
grid-row-start: 1;
grid-row-end: 14;
z-index: 0;
}





  #s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c img.shogun-image,
  #s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c {
    width: 100%;
    height: auto;
  }

  #s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c.shogun-image {
    
    
  }


.s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c .shogun-image-content {
  
    align-items: center;
  
}

.s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c.shogun-image-container {
      position: relative;
    }

    .s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c img.shogun-image,
  #s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c {
    width: 100%;
    height: auto;
  }

  #s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c.shogun-image {
    
    
  }


.s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c .shogun-image-content {
  
    align-items: center;
  
}

.s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c.shogun-image-container {
      position: relative;
    }

    .s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c img.shogun-image,
  #s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c {
    width: 100%;
    height: auto;
  }

  #s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c.shogun-image {
    
    
  }


.s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c .shogun-image-content {
  
    align-items: center;
  
}

.s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c.shogun-image-container {
      position: relative;
    }

    .s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c img.shogun-image,
  #s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c {
    width: 100%;
    height: auto;
  }

  #s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c.shogun-image {
    
    
  }


.s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c .shogun-image-content {
  
    align-items: center;
  
}

.s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c.shogun-image-container {
      position: relative;
    }

    .s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c img.shogun-image,
  #s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c {
    width: 100%;
    height: auto;
  }

  #s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c.shogun-image {
    
    
  }


.s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c .shogun-image-content {
  
    align-items: center;
  
}

.s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c.shogun-image-container {
      position: relative;
    }

    .s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5bbd8699-fbff-49d2-a230-6c02dfbb8e9c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-fbd88625-10d6-43e5-93d5-66b5565e9fd7 {
  aspect-ratio: 12/12;
text-align: center;
}

#s-fbd88625-10d6-43e5-93d5-66b5565e9fd7-root {
  grid-column-start: 13;
grid-column-end: 25;
grid-row-start: 3;
grid-row-end: 15;
z-index: 1;
}





  #s-fbd88625-10d6-43e5-93d5-66b5565e9fd7 img.shogun-image,
  #s-fbd88625-10d6-43e5-93d5-66b5565e9fd7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fbd88625-10d6-43e5-93d5-66b5565e9fd7 {
    width: 100%;
    height: auto;
  }

  #s-fbd88625-10d6-43e5-93d5-66b5565e9fd7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fbd88625-10d6-43e5-93d5-66b5565e9fd7.shogun-image {
    
    
  }


.s-fbd88625-10d6-43e5-93d5-66b5565e9fd7 .shogun-image-content {
  
    align-items: center;
  
}

.s-fbd88625-10d6-43e5-93d5-66b5565e9fd7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fbd88625-10d6-43e5-93d5-66b5565e9fd7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fbd88625-10d6-43e5-93d5-66b5565e9fd7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fbd88625-10d6-43e5-93d5-66b5565e9fd7 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-fbd88625-10d6-43e5-93d5-66b5565e9fd7.shogun-image-container {
      position: relative;
    }

    .s-fbd88625-10d6-43e5-93d5-66b5565e9fd7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fbd88625-10d6-43e5-93d5-66b5565e9fd7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fbd88625-10d6-43e5-93d5-66b5565e9fd7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-fbd88625-10d6-43e5-93d5-66b5565e9fd7 img.shogun-image,
  #s-fbd88625-10d6-43e5-93d5-66b5565e9fd7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fbd88625-10d6-43e5-93d5-66b5565e9fd7 {
    width: 100%;
    height: auto;
  }

  #s-fbd88625-10d6-43e5-93d5-66b5565e9fd7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fbd88625-10d6-43e5-93d5-66b5565e9fd7.shogun-image {
    
    
  }


.s-fbd88625-10d6-43e5-93d5-66b5565e9fd7 .shogun-image-content {
  
    align-items: center;
  
}

.s-fbd88625-10d6-43e5-93d5-66b5565e9fd7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fbd88625-10d6-43e5-93d5-66b5565e9fd7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fbd88625-10d6-43e5-93d5-66b5565e9fd7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fbd88625-10d6-43e5-93d5-66b5565e9fd7 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-fbd88625-10d6-43e5-93d5-66b5565e9fd7.shogun-image-container {
      position: relative;
    }

    .s-fbd88625-10d6-43e5-93d5-66b5565e9fd7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fbd88625-10d6-43e5-93d5-66b5565e9fd7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fbd88625-10d6-43e5-93d5-66b5565e9fd7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-fbd88625-10d6-43e5-93d5-66b5565e9fd7 img.shogun-image,
  #s-fbd88625-10d6-43e5-93d5-66b5565e9fd7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fbd88625-10d6-43e5-93d5-66b5565e9fd7 {
    width: 100%;
    height: auto;
  }

  #s-fbd88625-10d6-43e5-93d5-66b5565e9fd7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fbd88625-10d6-43e5-93d5-66b5565e9fd7.shogun-image {
    
    
  }


.s-fbd88625-10d6-43e5-93d5-66b5565e9fd7 .shogun-image-content {
  
    align-items: center;
  
}

.s-fbd88625-10d6-43e5-93d5-66b5565e9fd7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fbd88625-10d6-43e5-93d5-66b5565e9fd7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fbd88625-10d6-43e5-93d5-66b5565e9fd7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fbd88625-10d6-43e5-93d5-66b5565e9fd7 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-fbd88625-10d6-43e5-93d5-66b5565e9fd7.shogun-image-container {
      position: relative;
    }

    .s-fbd88625-10d6-43e5-93d5-66b5565e9fd7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fbd88625-10d6-43e5-93d5-66b5565e9fd7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fbd88625-10d6-43e5-93d5-66b5565e9fd7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-fbd88625-10d6-43e5-93d5-66b5565e9fd7 img.shogun-image,
  #s-fbd88625-10d6-43e5-93d5-66b5565e9fd7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fbd88625-10d6-43e5-93d5-66b5565e9fd7 {
    width: 100%;
    height: auto;
  }

  #s-fbd88625-10d6-43e5-93d5-66b5565e9fd7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fbd88625-10d6-43e5-93d5-66b5565e9fd7.shogun-image {
    
    
  }


.s-fbd88625-10d6-43e5-93d5-66b5565e9fd7 .shogun-image-content {
  
    align-items: center;
  
}

.s-fbd88625-10d6-43e5-93d5-66b5565e9fd7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fbd88625-10d6-43e5-93d5-66b5565e9fd7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fbd88625-10d6-43e5-93d5-66b5565e9fd7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fbd88625-10d6-43e5-93d5-66b5565e9fd7 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-fbd88625-10d6-43e5-93d5-66b5565e9fd7.shogun-image-container {
      position: relative;
    }

    .s-fbd88625-10d6-43e5-93d5-66b5565e9fd7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fbd88625-10d6-43e5-93d5-66b5565e9fd7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fbd88625-10d6-43e5-93d5-66b5565e9fd7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-fbd88625-10d6-43e5-93d5-66b5565e9fd7 img.shogun-image,
  #s-fbd88625-10d6-43e5-93d5-66b5565e9fd7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fbd88625-10d6-43e5-93d5-66b5565e9fd7 {
    width: 100%;
    height: auto;
  }

  #s-fbd88625-10d6-43e5-93d5-66b5565e9fd7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fbd88625-10d6-43e5-93d5-66b5565e9fd7.shogun-image {
    
    
  }


.s-fbd88625-10d6-43e5-93d5-66b5565e9fd7 .shogun-image-content {
  
    align-items: center;
  
}

.s-fbd88625-10d6-43e5-93d5-66b5565e9fd7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fbd88625-10d6-43e5-93d5-66b5565e9fd7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fbd88625-10d6-43e5-93d5-66b5565e9fd7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fbd88625-10d6-43e5-93d5-66b5565e9fd7 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-fbd88625-10d6-43e5-93d5-66b5565e9fd7.shogun-image-container {
      position: relative;
    }

    .s-fbd88625-10d6-43e5-93d5-66b5565e9fd7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fbd88625-10d6-43e5-93d5-66b5565e9fd7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fbd88625-10d6-43e5-93d5-66b5565e9fd7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-18e6ba59-64b8-492e-a81d-b9723532670b {
  margin-top: -1%;
}

#s-18e6ba59-64b8-492e-a81d-b9723532670b .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(5, calc(100vw / 24));
}

#s-5fcbe424-2319-485c-98b6-5d20fda462e7 {
  margin-left: 0%;
margin-right: 20%;
text-align: center;
}

#s-5fcbe424-2319-485c-98b6-5d20fda462e7-root {
  grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 2;
grid-row-end: 6;
z-index: 0;
}







  img.s-5fcbe424-2319-485c-98b6-5d20fda462e7.shogun-image {
    
    
  }


.s-5fcbe424-2319-485c-98b6-5d20fda462e7 .shogun-image-content {
  
    align-items: center;
  
}

.s-5fcbe424-2319-485c-98b6-5d20fda462e7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5fcbe424-2319-485c-98b6-5d20fda462e7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5fcbe424-2319-485c-98b6-5d20fda462e7.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-5fcbe424-2319-485c-98b6-5d20fda462e7.shogun-image {
    
    
  }


.s-5fcbe424-2319-485c-98b6-5d20fda462e7 .shogun-image-content {
  
    align-items: center;
  
}

.s-5fcbe424-2319-485c-98b6-5d20fda462e7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5fcbe424-2319-485c-98b6-5d20fda462e7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5fcbe424-2319-485c-98b6-5d20fda462e7.shogun-image {
  box-sizing: border-box;
}



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





  img.s-5fcbe424-2319-485c-98b6-5d20fda462e7.shogun-image {
    
    
  }


.s-5fcbe424-2319-485c-98b6-5d20fda462e7 .shogun-image-content {
  
    align-items: center;
  
}

.s-5fcbe424-2319-485c-98b6-5d20fda462e7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5fcbe424-2319-485c-98b6-5d20fda462e7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5fcbe424-2319-485c-98b6-5d20fda462e7.shogun-image {
  box-sizing: border-box;
}



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





  img.s-5fcbe424-2319-485c-98b6-5d20fda462e7.shogun-image {
    
    
  }


.s-5fcbe424-2319-485c-98b6-5d20fda462e7 .shogun-image-content {
  
    align-items: center;
  
}

.s-5fcbe424-2319-485c-98b6-5d20fda462e7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5fcbe424-2319-485c-98b6-5d20fda462e7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5fcbe424-2319-485c-98b6-5d20fda462e7.shogun-image {
  box-sizing: border-box;
}



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





  img.s-5fcbe424-2319-485c-98b6-5d20fda462e7.shogun-image {
    
    
  }


.s-5fcbe424-2319-485c-98b6-5d20fda462e7 .shogun-image-content {
  
    align-items: center;
  
}

.s-5fcbe424-2319-485c-98b6-5d20fda462e7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5fcbe424-2319-485c-98b6-5d20fda462e7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5fcbe424-2319-485c-98b6-5d20fda462e7.shogun-image {
  box-sizing: border-box;
}



}
#s-adb72599-949b-44e6-81a8-6b0e4308590d {
  margin-top: 1%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-adb72599-949b-44e6-81a8-6b0e4308590d {
  grid-column-start: 6;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 6;
z-index: 1;
}

#s-adb72599-949b-44e6-81a8-6b0e4308590d .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-1441eac4-1e94-42e3-be1f-610d302987f3 {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-0227fabb-05a2-41ec-a834-19b55017709b {
  text-align: left;
}

#s-9c9b114e-9683-4df2-9cd4-def3327c911a {
  margin-top: 13%;
}

#s-9c9b114e-9683-4df2-9cd4-def3327c911a .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(14, calc(100vw / 24));
}

#s-a432d254-89be-4e1c-a72e-d62daf0caebb {
  aspect-ratio: 11/11;
text-align: center;
}

#s-a432d254-89be-4e1c-a72e-d62daf0caebb-root {
  grid-column-start: 1;
grid-column-end: 12;
grid-row-start: 3;
grid-row-end: 14;
z-index: 0;
}





  #s-a432d254-89be-4e1c-a72e-d62daf0caebb img.shogun-image,
  #s-a432d254-89be-4e1c-a72e-d62daf0caebb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a432d254-89be-4e1c-a72e-d62daf0caebb {
    width: 100%;
    height: auto;
  }

  #s-a432d254-89be-4e1c-a72e-d62daf0caebb img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a432d254-89be-4e1c-a72e-d62daf0caebb.shogun-image {
    
    
  }


.s-a432d254-89be-4e1c-a72e-d62daf0caebb .shogun-image-content {
  
    align-items: center;
  
}

.s-a432d254-89be-4e1c-a72e-d62daf0caebb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a432d254-89be-4e1c-a72e-d62daf0caebb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a432d254-89be-4e1c-a72e-d62daf0caebb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a432d254-89be-4e1c-a72e-d62daf0caebb {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-a432d254-89be-4e1c-a72e-d62daf0caebb.shogun-image-container {
      position: relative;
    }

    .s-a432d254-89be-4e1c-a72e-d62daf0caebb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a432d254-89be-4e1c-a72e-d62daf0caebb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a432d254-89be-4e1c-a72e-d62daf0caebb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-a432d254-89be-4e1c-a72e-d62daf0caebb img.shogun-image,
  #s-a432d254-89be-4e1c-a72e-d62daf0caebb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a432d254-89be-4e1c-a72e-d62daf0caebb {
    width: 100%;
    height: auto;
  }

  #s-a432d254-89be-4e1c-a72e-d62daf0caebb img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a432d254-89be-4e1c-a72e-d62daf0caebb.shogun-image {
    
    
  }


.s-a432d254-89be-4e1c-a72e-d62daf0caebb .shogun-image-content {
  
    align-items: center;
  
}

.s-a432d254-89be-4e1c-a72e-d62daf0caebb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a432d254-89be-4e1c-a72e-d62daf0caebb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a432d254-89be-4e1c-a72e-d62daf0caebb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a432d254-89be-4e1c-a72e-d62daf0caebb {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-a432d254-89be-4e1c-a72e-d62daf0caebb.shogun-image-container {
      position: relative;
    }

    .s-a432d254-89be-4e1c-a72e-d62daf0caebb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a432d254-89be-4e1c-a72e-d62daf0caebb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a432d254-89be-4e1c-a72e-d62daf0caebb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-a432d254-89be-4e1c-a72e-d62daf0caebb img.shogun-image,
  #s-a432d254-89be-4e1c-a72e-d62daf0caebb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a432d254-89be-4e1c-a72e-d62daf0caebb {
    width: 100%;
    height: auto;
  }

  #s-a432d254-89be-4e1c-a72e-d62daf0caebb img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a432d254-89be-4e1c-a72e-d62daf0caebb.shogun-image {
    
    
  }


.s-a432d254-89be-4e1c-a72e-d62daf0caebb .shogun-image-content {
  
    align-items: center;
  
}

.s-a432d254-89be-4e1c-a72e-d62daf0caebb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a432d254-89be-4e1c-a72e-d62daf0caebb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a432d254-89be-4e1c-a72e-d62daf0caebb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a432d254-89be-4e1c-a72e-d62daf0caebb {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-a432d254-89be-4e1c-a72e-d62daf0caebb.shogun-image-container {
      position: relative;
    }

    .s-a432d254-89be-4e1c-a72e-d62daf0caebb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a432d254-89be-4e1c-a72e-d62daf0caebb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a432d254-89be-4e1c-a72e-d62daf0caebb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-a432d254-89be-4e1c-a72e-d62daf0caebb img.shogun-image,
  #s-a432d254-89be-4e1c-a72e-d62daf0caebb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a432d254-89be-4e1c-a72e-d62daf0caebb {
    width: 100%;
    height: auto;
  }

  #s-a432d254-89be-4e1c-a72e-d62daf0caebb img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a432d254-89be-4e1c-a72e-d62daf0caebb.shogun-image {
    
    
  }


.s-a432d254-89be-4e1c-a72e-d62daf0caebb .shogun-image-content {
  
    align-items: center;
  
}

.s-a432d254-89be-4e1c-a72e-d62daf0caebb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a432d254-89be-4e1c-a72e-d62daf0caebb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a432d254-89be-4e1c-a72e-d62daf0caebb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a432d254-89be-4e1c-a72e-d62daf0caebb {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-a432d254-89be-4e1c-a72e-d62daf0caebb.shogun-image-container {
      position: relative;
    }

    .s-a432d254-89be-4e1c-a72e-d62daf0caebb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a432d254-89be-4e1c-a72e-d62daf0caebb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a432d254-89be-4e1c-a72e-d62daf0caebb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-a432d254-89be-4e1c-a72e-d62daf0caebb img.shogun-image,
  #s-a432d254-89be-4e1c-a72e-d62daf0caebb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a432d254-89be-4e1c-a72e-d62daf0caebb {
    width: 100%;
    height: auto;
  }

  #s-a432d254-89be-4e1c-a72e-d62daf0caebb img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a432d254-89be-4e1c-a72e-d62daf0caebb.shogun-image {
    
    
  }


.s-a432d254-89be-4e1c-a72e-d62daf0caebb .shogun-image-content {
  
    align-items: center;
  
}

.s-a432d254-89be-4e1c-a72e-d62daf0caebb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a432d254-89be-4e1c-a72e-d62daf0caebb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a432d254-89be-4e1c-a72e-d62daf0caebb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a432d254-89be-4e1c-a72e-d62daf0caebb {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-a432d254-89be-4e1c-a72e-d62daf0caebb.shogun-image-container {
      position: relative;
    }

    .s-a432d254-89be-4e1c-a72e-d62daf0caebb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a432d254-89be-4e1c-a72e-d62daf0caebb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a432d254-89be-4e1c-a72e-d62daf0caebb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-e7fcac01-37da-452e-acf2-d3abeb2a60ea {
  aspect-ratio: 14/14;
text-align: center;
}

#s-e7fcac01-37da-452e-acf2-d3abeb2a60ea-root {
  grid-column-start: 11;
grid-column-end: 25;
grid-row-start: 1;
grid-row-end: 15;
z-index: 1;
}





  #s-e7fcac01-37da-452e-acf2-d3abeb2a60ea img.shogun-image,
  #s-e7fcac01-37da-452e-acf2-d3abeb2a60ea .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e7fcac01-37da-452e-acf2-d3abeb2a60ea {
    width: 100%;
    height: auto;
  }

  #s-e7fcac01-37da-452e-acf2-d3abeb2a60ea img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e7fcac01-37da-452e-acf2-d3abeb2a60ea.shogun-image {
    
    
  }


.s-e7fcac01-37da-452e-acf2-d3abeb2a60ea .shogun-image-content {
  
    align-items: center;
  
}

.s-e7fcac01-37da-452e-acf2-d3abeb2a60ea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7fcac01-37da-452e-acf2-d3abeb2a60ea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7fcac01-37da-452e-acf2-d3abeb2a60ea.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e7fcac01-37da-452e-acf2-d3abeb2a60ea {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-e7fcac01-37da-452e-acf2-d3abeb2a60ea.shogun-image-container {
      position: relative;
    }

    .s-e7fcac01-37da-452e-acf2-d3abeb2a60ea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e7fcac01-37da-452e-acf2-d3abeb2a60ea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e7fcac01-37da-452e-acf2-d3abeb2a60ea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-e7fcac01-37da-452e-acf2-d3abeb2a60ea img.shogun-image,
  #s-e7fcac01-37da-452e-acf2-d3abeb2a60ea .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e7fcac01-37da-452e-acf2-d3abeb2a60ea {
    width: 100%;
    height: auto;
  }

  #s-e7fcac01-37da-452e-acf2-d3abeb2a60ea img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e7fcac01-37da-452e-acf2-d3abeb2a60ea.shogun-image {
    
    
  }


.s-e7fcac01-37da-452e-acf2-d3abeb2a60ea .shogun-image-content {
  
    align-items: center;
  
}

.s-e7fcac01-37da-452e-acf2-d3abeb2a60ea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7fcac01-37da-452e-acf2-d3abeb2a60ea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7fcac01-37da-452e-acf2-d3abeb2a60ea.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e7fcac01-37da-452e-acf2-d3abeb2a60ea {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-e7fcac01-37da-452e-acf2-d3abeb2a60ea.shogun-image-container {
      position: relative;
    }

    .s-e7fcac01-37da-452e-acf2-d3abeb2a60ea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e7fcac01-37da-452e-acf2-d3abeb2a60ea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e7fcac01-37da-452e-acf2-d3abeb2a60ea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-e7fcac01-37da-452e-acf2-d3abeb2a60ea img.shogun-image,
  #s-e7fcac01-37da-452e-acf2-d3abeb2a60ea .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e7fcac01-37da-452e-acf2-d3abeb2a60ea {
    width: 100%;
    height: auto;
  }

  #s-e7fcac01-37da-452e-acf2-d3abeb2a60ea img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e7fcac01-37da-452e-acf2-d3abeb2a60ea.shogun-image {
    
    
  }


.s-e7fcac01-37da-452e-acf2-d3abeb2a60ea .shogun-image-content {
  
    align-items: center;
  
}

.s-e7fcac01-37da-452e-acf2-d3abeb2a60ea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7fcac01-37da-452e-acf2-d3abeb2a60ea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7fcac01-37da-452e-acf2-d3abeb2a60ea.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e7fcac01-37da-452e-acf2-d3abeb2a60ea {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-e7fcac01-37da-452e-acf2-d3abeb2a60ea.shogun-image-container {
      position: relative;
    }

    .s-e7fcac01-37da-452e-acf2-d3abeb2a60ea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e7fcac01-37da-452e-acf2-d3abeb2a60ea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e7fcac01-37da-452e-acf2-d3abeb2a60ea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-e7fcac01-37da-452e-acf2-d3abeb2a60ea img.shogun-image,
  #s-e7fcac01-37da-452e-acf2-d3abeb2a60ea .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e7fcac01-37da-452e-acf2-d3abeb2a60ea {
    width: 100%;
    height: auto;
  }

  #s-e7fcac01-37da-452e-acf2-d3abeb2a60ea img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e7fcac01-37da-452e-acf2-d3abeb2a60ea.shogun-image {
    
    
  }


.s-e7fcac01-37da-452e-acf2-d3abeb2a60ea .shogun-image-content {
  
    align-items: center;
  
}

.s-e7fcac01-37da-452e-acf2-d3abeb2a60ea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7fcac01-37da-452e-acf2-d3abeb2a60ea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7fcac01-37da-452e-acf2-d3abeb2a60ea.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e7fcac01-37da-452e-acf2-d3abeb2a60ea {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-e7fcac01-37da-452e-acf2-d3abeb2a60ea.shogun-image-container {
      position: relative;
    }

    .s-e7fcac01-37da-452e-acf2-d3abeb2a60ea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e7fcac01-37da-452e-acf2-d3abeb2a60ea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e7fcac01-37da-452e-acf2-d3abeb2a60ea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-e7fcac01-37da-452e-acf2-d3abeb2a60ea img.shogun-image,
  #s-e7fcac01-37da-452e-acf2-d3abeb2a60ea .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e7fcac01-37da-452e-acf2-d3abeb2a60ea {
    width: 100%;
    height: auto;
  }

  #s-e7fcac01-37da-452e-acf2-d3abeb2a60ea img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e7fcac01-37da-452e-acf2-d3abeb2a60ea.shogun-image {
    
    
  }


.s-e7fcac01-37da-452e-acf2-d3abeb2a60ea .shogun-image-content {
  
    align-items: center;
  
}

.s-e7fcac01-37da-452e-acf2-d3abeb2a60ea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7fcac01-37da-452e-acf2-d3abeb2a60ea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7fcac01-37da-452e-acf2-d3abeb2a60ea.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e7fcac01-37da-452e-acf2-d3abeb2a60ea {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-e7fcac01-37da-452e-acf2-d3abeb2a60ea.shogun-image-container {
      position: relative;
    }

    .s-e7fcac01-37da-452e-acf2-d3abeb2a60ea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e7fcac01-37da-452e-acf2-d3abeb2a60ea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e7fcac01-37da-452e-acf2-d3abeb2a60ea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-af6f6e47-d3f1-450a-86f3-24cf4cfcab3a {
  margin-top: -1%;
}

#s-af6f6e47-d3f1-450a-86f3-24cf4cfcab3a .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(5, calc(100vw / 24));
}

#s-a2b3e0fb-4fc9-4acb-a69d-47f441d7100e {
  margin-left: 0%;
margin-right: 20%;
text-align: center;
}

#s-a2b3e0fb-4fc9-4acb-a69d-47f441d7100e-root {
  grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 2;
grid-row-end: 6;
z-index: 0;
}







  img.s-a2b3e0fb-4fc9-4acb-a69d-47f441d7100e.shogun-image {
    
    
  }


.s-a2b3e0fb-4fc9-4acb-a69d-47f441d7100e .shogun-image-content {
  
    align-items: center;
  
}

.s-a2b3e0fb-4fc9-4acb-a69d-47f441d7100e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a2b3e0fb-4fc9-4acb-a69d-47f441d7100e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a2b3e0fb-4fc9-4acb-a69d-47f441d7100e.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-a2b3e0fb-4fc9-4acb-a69d-47f441d7100e.shogun-image {
    
    
  }


.s-a2b3e0fb-4fc9-4acb-a69d-47f441d7100e .shogun-image-content {
  
    align-items: center;
  
}

.s-a2b3e0fb-4fc9-4acb-a69d-47f441d7100e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a2b3e0fb-4fc9-4acb-a69d-47f441d7100e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a2b3e0fb-4fc9-4acb-a69d-47f441d7100e.shogun-image {
  box-sizing: border-box;
}



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





  img.s-a2b3e0fb-4fc9-4acb-a69d-47f441d7100e.shogun-image {
    
    
  }


.s-a2b3e0fb-4fc9-4acb-a69d-47f441d7100e .shogun-image-content {
  
    align-items: center;
  
}

.s-a2b3e0fb-4fc9-4acb-a69d-47f441d7100e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a2b3e0fb-4fc9-4acb-a69d-47f441d7100e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a2b3e0fb-4fc9-4acb-a69d-47f441d7100e.shogun-image {
  box-sizing: border-box;
}



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





  img.s-a2b3e0fb-4fc9-4acb-a69d-47f441d7100e.shogun-image {
    
    
  }


.s-a2b3e0fb-4fc9-4acb-a69d-47f441d7100e .shogun-image-content {
  
    align-items: center;
  
}

.s-a2b3e0fb-4fc9-4acb-a69d-47f441d7100e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a2b3e0fb-4fc9-4acb-a69d-47f441d7100e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a2b3e0fb-4fc9-4acb-a69d-47f441d7100e.shogun-image {
  box-sizing: border-box;
}



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





  img.s-a2b3e0fb-4fc9-4acb-a69d-47f441d7100e.shogun-image {
    
    
  }


.s-a2b3e0fb-4fc9-4acb-a69d-47f441d7100e .shogun-image-content {
  
    align-items: center;
  
}

.s-a2b3e0fb-4fc9-4acb-a69d-47f441d7100e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a2b3e0fb-4fc9-4acb-a69d-47f441d7100e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a2b3e0fb-4fc9-4acb-a69d-47f441d7100e.shogun-image {
  box-sizing: border-box;
}



}
#s-45075f98-7098-4b22-82f5-274d48278d50 {
  margin-top: 1%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-45075f98-7098-4b22-82f5-274d48278d50 {
  grid-column-start: 6;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 6;
z-index: 1;
}

#s-45075f98-7098-4b22-82f5-274d48278d50 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-9005f028-7228-4a84-a4ba-4121b6ce6cec {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-449ba3ab-2a01-4ad4-b953-205aecbdbb29 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
max-width: 1269px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-449ba3ab-2a01-4ad4-b953-205aecbdbb29 img.shogun-image,
  #s-449ba3ab-2a01-4ad4-b953-205aecbdbb29 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-449ba3ab-2a01-4ad4-b953-205aecbdbb29 {
    width: 100%;
    height: auto;
  }

  #s-449ba3ab-2a01-4ad4-b953-205aecbdbb29 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-449ba3ab-2a01-4ad4-b953-205aecbdbb29.shogun-image {
    
    
  }


.s-449ba3ab-2a01-4ad4-b953-205aecbdbb29 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-449ba3ab-2a01-4ad4-b953-205aecbdbb29.shg-align-container {
  display: flex;
  justify-content: center
}

.s-449ba3ab-2a01-4ad4-b953-205aecbdbb29.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-449ba3ab-2a01-4ad4-b953-205aecbdbb29.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-449ba3ab-2a01-4ad4-b953-205aecbdbb29 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-449ba3ab-2a01-4ad4-b953-205aecbdbb29.shogun-image-container {
      position: relative;
    }

    .s-449ba3ab-2a01-4ad4-b953-205aecbdbb29.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-449ba3ab-2a01-4ad4-b953-205aecbdbb29.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-449ba3ab-2a01-4ad4-b953-205aecbdbb29 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-449ba3ab-2a01-4ad4-b953-205aecbdbb29 img.shogun-image,
  #s-449ba3ab-2a01-4ad4-b953-205aecbdbb29 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-449ba3ab-2a01-4ad4-b953-205aecbdbb29 {
    width: 100%;
    height: auto;
  }

  #s-449ba3ab-2a01-4ad4-b953-205aecbdbb29 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-449ba3ab-2a01-4ad4-b953-205aecbdbb29.shogun-image {
    
    
  }


.s-449ba3ab-2a01-4ad4-b953-205aecbdbb29 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-449ba3ab-2a01-4ad4-b953-205aecbdbb29.shg-align-container {
  display: flex;
  justify-content: center
}

.s-449ba3ab-2a01-4ad4-b953-205aecbdbb29.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-449ba3ab-2a01-4ad4-b953-205aecbdbb29.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-449ba3ab-2a01-4ad4-b953-205aecbdbb29 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-449ba3ab-2a01-4ad4-b953-205aecbdbb29.shogun-image-container {
      position: relative;
    }

    .s-449ba3ab-2a01-4ad4-b953-205aecbdbb29.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-449ba3ab-2a01-4ad4-b953-205aecbdbb29.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-449ba3ab-2a01-4ad4-b953-205aecbdbb29 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-449ba3ab-2a01-4ad4-b953-205aecbdbb29 img.shogun-image,
  #s-449ba3ab-2a01-4ad4-b953-205aecbdbb29 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-449ba3ab-2a01-4ad4-b953-205aecbdbb29 {
    width: 100%;
    height: auto;
  }

  #s-449ba3ab-2a01-4ad4-b953-205aecbdbb29 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-449ba3ab-2a01-4ad4-b953-205aecbdbb29.shogun-image {
    
    
  }


.s-449ba3ab-2a01-4ad4-b953-205aecbdbb29 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-449ba3ab-2a01-4ad4-b953-205aecbdbb29.shg-align-container {
  display: flex;
  justify-content: center
}

.s-449ba3ab-2a01-4ad4-b953-205aecbdbb29.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-449ba3ab-2a01-4ad4-b953-205aecbdbb29.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-449ba3ab-2a01-4ad4-b953-205aecbdbb29 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-449ba3ab-2a01-4ad4-b953-205aecbdbb29.shogun-image-container {
      position: relative;
    }

    .s-449ba3ab-2a01-4ad4-b953-205aecbdbb29.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-449ba3ab-2a01-4ad4-b953-205aecbdbb29.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-449ba3ab-2a01-4ad4-b953-205aecbdbb29 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-449ba3ab-2a01-4ad4-b953-205aecbdbb29 img.shogun-image,
  #s-449ba3ab-2a01-4ad4-b953-205aecbdbb29 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-449ba3ab-2a01-4ad4-b953-205aecbdbb29 {
    width: 100%;
    height: auto;
  }

  #s-449ba3ab-2a01-4ad4-b953-205aecbdbb29 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-449ba3ab-2a01-4ad4-b953-205aecbdbb29.shogun-image {
    
    
  }


.s-449ba3ab-2a01-4ad4-b953-205aecbdbb29 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-449ba3ab-2a01-4ad4-b953-205aecbdbb29.shg-align-container {
  display: flex;
  justify-content: center
}

.s-449ba3ab-2a01-4ad4-b953-205aecbdbb29.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-449ba3ab-2a01-4ad4-b953-205aecbdbb29.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-449ba3ab-2a01-4ad4-b953-205aecbdbb29 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-449ba3ab-2a01-4ad4-b953-205aecbdbb29.shogun-image-container {
      position: relative;
    }

    .s-449ba3ab-2a01-4ad4-b953-205aecbdbb29.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-449ba3ab-2a01-4ad4-b953-205aecbdbb29.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-449ba3ab-2a01-4ad4-b953-205aecbdbb29 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-449ba3ab-2a01-4ad4-b953-205aecbdbb29 img.shogun-image,
  #s-449ba3ab-2a01-4ad4-b953-205aecbdbb29 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-449ba3ab-2a01-4ad4-b953-205aecbdbb29 {
    width: 100%;
    height: auto;
  }

  #s-449ba3ab-2a01-4ad4-b953-205aecbdbb29 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-449ba3ab-2a01-4ad4-b953-205aecbdbb29.shogun-image {
    
    
  }


.s-449ba3ab-2a01-4ad4-b953-205aecbdbb29 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-449ba3ab-2a01-4ad4-b953-205aecbdbb29.shg-align-container {
  display: flex;
  justify-content: center
}

.s-449ba3ab-2a01-4ad4-b953-205aecbdbb29.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-449ba3ab-2a01-4ad4-b953-205aecbdbb29.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-449ba3ab-2a01-4ad4-b953-205aecbdbb29 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-449ba3ab-2a01-4ad4-b953-205aecbdbb29.shogun-image-container {
      position: relative;
    }

    .s-449ba3ab-2a01-4ad4-b953-205aecbdbb29.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-449ba3ab-2a01-4ad4-b953-205aecbdbb29.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-449ba3ab-2a01-4ad4-b953-205aecbdbb29 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-672b22f9-4c5d-4810-88d4-113f6d2f124b {
  margin-top: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-672b22f9-4c5d-4810-88d4-113f6d2f124b .shogun-heading-component h5 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-b46bce28-6c5b-4934-83da-e70da258a0d3 {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-b46bce28-6c5b-4934-83da-e70da258a0d3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b46bce28-6c5b-4934-83da-e70da258a0d3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-21a56ff2-7ba8-4aaa-ba11-5262aee401ab {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: rgba(29, 29, 29, 0);
border-radius: 3px;
max-width: 100%;
background-color: rgba(29, 29, 29, 0.9);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-21a56ff2-7ba8-4aaa-ba11-5262aee401ab:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 0) !important;
background-color: rgba(74, 74, 74, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-21a56ff2-7ba8-4aaa-ba11-5262aee401ab:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(155, 155, 155, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-21a56ff2-7ba8-4aaa-ba11-5262aee401ab-root {
    text-align: center;
  }


#s-21a56ff2-7ba8-4aaa-ba11-5262aee401ab.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-21a56ff2-7ba8-4aaa-ba11-5262aee401ab-root {
    text-align: center;
  }


#s-21a56ff2-7ba8-4aaa-ba11-5262aee401ab.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-21a56ff2-7ba8-4aaa-ba11-5262aee401ab-root {
    text-align: center;
  }


#s-21a56ff2-7ba8-4aaa-ba11-5262aee401ab.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-21a56ff2-7ba8-4aaa-ba11-5262aee401ab-root {
    text-align: center;
  }


#s-21a56ff2-7ba8-4aaa-ba11-5262aee401ab.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-21a56ff2-7ba8-4aaa-ba11-5262aee401ab-root {
    text-align: center;
  }


#s-21a56ff2-7ba8-4aaa-ba11-5262aee401ab.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-21a56ff2-7ba8-4aaa-ba11-5262aee401ab-root {
    text-align: center;
  }


#s-21a56ff2-7ba8-4aaa-ba11-5262aee401ab.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-f3421365-3f5b-4a24-8f20-25915ddaee95 {
  margin-top: 13%;
}

#s-f3421365-3f5b-4a24-8f20-25915ddaee95 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(15, calc(100vw / 24));
}

#s-cb9eabec-264c-4883-8e84-7a6c822885e9 {
  aspect-ratio: 11/11;
text-align: center;
}

#s-cb9eabec-264c-4883-8e84-7a6c822885e9-root {
  grid-column-start: 1;
grid-column-end: 12;
grid-row-start: 1;
grid-row-end: 12;
z-index: 0;
}





  #s-cb9eabec-264c-4883-8e84-7a6c822885e9 img.shogun-image,
  #s-cb9eabec-264c-4883-8e84-7a6c822885e9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cb9eabec-264c-4883-8e84-7a6c822885e9 {
    width: 100%;
    height: auto;
  }

  #s-cb9eabec-264c-4883-8e84-7a6c822885e9 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cb9eabec-264c-4883-8e84-7a6c822885e9.shogun-image {
    
    
  }


.s-cb9eabec-264c-4883-8e84-7a6c822885e9 .shogun-image-content {
  
    align-items: center;
  
}

.s-cb9eabec-264c-4883-8e84-7a6c822885e9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cb9eabec-264c-4883-8e84-7a6c822885e9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cb9eabec-264c-4883-8e84-7a6c822885e9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cb9eabec-264c-4883-8e84-7a6c822885e9 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-cb9eabec-264c-4883-8e84-7a6c822885e9.shogun-image-container {
      position: relative;
    }

    .s-cb9eabec-264c-4883-8e84-7a6c822885e9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cb9eabec-264c-4883-8e84-7a6c822885e9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cb9eabec-264c-4883-8e84-7a6c822885e9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-cb9eabec-264c-4883-8e84-7a6c822885e9 img.shogun-image,
  #s-cb9eabec-264c-4883-8e84-7a6c822885e9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cb9eabec-264c-4883-8e84-7a6c822885e9 {
    width: 100%;
    height: auto;
  }

  #s-cb9eabec-264c-4883-8e84-7a6c822885e9 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cb9eabec-264c-4883-8e84-7a6c822885e9.shogun-image {
    
    
  }


.s-cb9eabec-264c-4883-8e84-7a6c822885e9 .shogun-image-content {
  
    align-items: center;
  
}

.s-cb9eabec-264c-4883-8e84-7a6c822885e9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cb9eabec-264c-4883-8e84-7a6c822885e9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cb9eabec-264c-4883-8e84-7a6c822885e9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cb9eabec-264c-4883-8e84-7a6c822885e9 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-cb9eabec-264c-4883-8e84-7a6c822885e9.shogun-image-container {
      position: relative;
    }

    .s-cb9eabec-264c-4883-8e84-7a6c822885e9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cb9eabec-264c-4883-8e84-7a6c822885e9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cb9eabec-264c-4883-8e84-7a6c822885e9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-cb9eabec-264c-4883-8e84-7a6c822885e9 img.shogun-image,
  #s-cb9eabec-264c-4883-8e84-7a6c822885e9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cb9eabec-264c-4883-8e84-7a6c822885e9 {
    width: 100%;
    height: auto;
  }

  #s-cb9eabec-264c-4883-8e84-7a6c822885e9 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cb9eabec-264c-4883-8e84-7a6c822885e9.shogun-image {
    
    
  }


.s-cb9eabec-264c-4883-8e84-7a6c822885e9 .shogun-image-content {
  
    align-items: center;
  
}

.s-cb9eabec-264c-4883-8e84-7a6c822885e9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cb9eabec-264c-4883-8e84-7a6c822885e9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cb9eabec-264c-4883-8e84-7a6c822885e9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cb9eabec-264c-4883-8e84-7a6c822885e9 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-cb9eabec-264c-4883-8e84-7a6c822885e9.shogun-image-container {
      position: relative;
    }

    .s-cb9eabec-264c-4883-8e84-7a6c822885e9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cb9eabec-264c-4883-8e84-7a6c822885e9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cb9eabec-264c-4883-8e84-7a6c822885e9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-cb9eabec-264c-4883-8e84-7a6c822885e9 img.shogun-image,
  #s-cb9eabec-264c-4883-8e84-7a6c822885e9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cb9eabec-264c-4883-8e84-7a6c822885e9 {
    width: 100%;
    height: auto;
  }

  #s-cb9eabec-264c-4883-8e84-7a6c822885e9 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cb9eabec-264c-4883-8e84-7a6c822885e9.shogun-image {
    
    
  }


.s-cb9eabec-264c-4883-8e84-7a6c822885e9 .shogun-image-content {
  
    align-items: center;
  
}

.s-cb9eabec-264c-4883-8e84-7a6c822885e9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cb9eabec-264c-4883-8e84-7a6c822885e9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cb9eabec-264c-4883-8e84-7a6c822885e9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cb9eabec-264c-4883-8e84-7a6c822885e9 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-cb9eabec-264c-4883-8e84-7a6c822885e9.shogun-image-container {
      position: relative;
    }

    .s-cb9eabec-264c-4883-8e84-7a6c822885e9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cb9eabec-264c-4883-8e84-7a6c822885e9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cb9eabec-264c-4883-8e84-7a6c822885e9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-cb9eabec-264c-4883-8e84-7a6c822885e9 img.shogun-image,
  #s-cb9eabec-264c-4883-8e84-7a6c822885e9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cb9eabec-264c-4883-8e84-7a6c822885e9 {
    width: 100%;
    height: auto;
  }

  #s-cb9eabec-264c-4883-8e84-7a6c822885e9 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cb9eabec-264c-4883-8e84-7a6c822885e9.shogun-image {
    
    
  }


.s-cb9eabec-264c-4883-8e84-7a6c822885e9 .shogun-image-content {
  
    align-items: center;
  
}

.s-cb9eabec-264c-4883-8e84-7a6c822885e9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cb9eabec-264c-4883-8e84-7a6c822885e9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cb9eabec-264c-4883-8e84-7a6c822885e9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cb9eabec-264c-4883-8e84-7a6c822885e9 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-cb9eabec-264c-4883-8e84-7a6c822885e9.shogun-image-container {
      position: relative;
    }

    .s-cb9eabec-264c-4883-8e84-7a6c822885e9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cb9eabec-264c-4883-8e84-7a6c822885e9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cb9eabec-264c-4883-8e84-7a6c822885e9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-3921a356-2c85-4a25-ab6c-90994b7d3bf3 {
  aspect-ratio: 14/14;
text-align: center;
}

#s-3921a356-2c85-4a25-ab6c-90994b7d3bf3-root {
  grid-column-start: 11;
grid-column-end: 25;
grid-row-start: 2;
grid-row-end: 16;
z-index: 1;
}





  #s-3921a356-2c85-4a25-ab6c-90994b7d3bf3 img.shogun-image,
  #s-3921a356-2c85-4a25-ab6c-90994b7d3bf3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3921a356-2c85-4a25-ab6c-90994b7d3bf3 {
    width: 100%;
    height: auto;
  }

  #s-3921a356-2c85-4a25-ab6c-90994b7d3bf3 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3921a356-2c85-4a25-ab6c-90994b7d3bf3.shogun-image {
    
    
  }


.s-3921a356-2c85-4a25-ab6c-90994b7d3bf3 .shogun-image-content {
  
    align-items: center;
  
}

.s-3921a356-2c85-4a25-ab6c-90994b7d3bf3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3921a356-2c85-4a25-ab6c-90994b7d3bf3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3921a356-2c85-4a25-ab6c-90994b7d3bf3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3921a356-2c85-4a25-ab6c-90994b7d3bf3 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-3921a356-2c85-4a25-ab6c-90994b7d3bf3.shogun-image-container {
      position: relative;
    }

    .s-3921a356-2c85-4a25-ab6c-90994b7d3bf3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3921a356-2c85-4a25-ab6c-90994b7d3bf3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3921a356-2c85-4a25-ab6c-90994b7d3bf3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-3921a356-2c85-4a25-ab6c-90994b7d3bf3 img.shogun-image,
  #s-3921a356-2c85-4a25-ab6c-90994b7d3bf3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3921a356-2c85-4a25-ab6c-90994b7d3bf3 {
    width: 100%;
    height: auto;
  }

  #s-3921a356-2c85-4a25-ab6c-90994b7d3bf3 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3921a356-2c85-4a25-ab6c-90994b7d3bf3.shogun-image {
    
    
  }


.s-3921a356-2c85-4a25-ab6c-90994b7d3bf3 .shogun-image-content {
  
    align-items: center;
  
}

.s-3921a356-2c85-4a25-ab6c-90994b7d3bf3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3921a356-2c85-4a25-ab6c-90994b7d3bf3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3921a356-2c85-4a25-ab6c-90994b7d3bf3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3921a356-2c85-4a25-ab6c-90994b7d3bf3 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-3921a356-2c85-4a25-ab6c-90994b7d3bf3.shogun-image-container {
      position: relative;
    }

    .s-3921a356-2c85-4a25-ab6c-90994b7d3bf3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3921a356-2c85-4a25-ab6c-90994b7d3bf3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3921a356-2c85-4a25-ab6c-90994b7d3bf3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-3921a356-2c85-4a25-ab6c-90994b7d3bf3 img.shogun-image,
  #s-3921a356-2c85-4a25-ab6c-90994b7d3bf3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3921a356-2c85-4a25-ab6c-90994b7d3bf3 {
    width: 100%;
    height: auto;
  }

  #s-3921a356-2c85-4a25-ab6c-90994b7d3bf3 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3921a356-2c85-4a25-ab6c-90994b7d3bf3.shogun-image {
    
    
  }


.s-3921a356-2c85-4a25-ab6c-90994b7d3bf3 .shogun-image-content {
  
    align-items: center;
  
}

.s-3921a356-2c85-4a25-ab6c-90994b7d3bf3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3921a356-2c85-4a25-ab6c-90994b7d3bf3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3921a356-2c85-4a25-ab6c-90994b7d3bf3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3921a356-2c85-4a25-ab6c-90994b7d3bf3 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-3921a356-2c85-4a25-ab6c-90994b7d3bf3.shogun-image-container {
      position: relative;
    }

    .s-3921a356-2c85-4a25-ab6c-90994b7d3bf3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3921a356-2c85-4a25-ab6c-90994b7d3bf3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3921a356-2c85-4a25-ab6c-90994b7d3bf3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-3921a356-2c85-4a25-ab6c-90994b7d3bf3 img.shogun-image,
  #s-3921a356-2c85-4a25-ab6c-90994b7d3bf3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3921a356-2c85-4a25-ab6c-90994b7d3bf3 {
    width: 100%;
    height: auto;
  }

  #s-3921a356-2c85-4a25-ab6c-90994b7d3bf3 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3921a356-2c85-4a25-ab6c-90994b7d3bf3.shogun-image {
    
    
  }


.s-3921a356-2c85-4a25-ab6c-90994b7d3bf3 .shogun-image-content {
  
    align-items: center;
  
}

.s-3921a356-2c85-4a25-ab6c-90994b7d3bf3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3921a356-2c85-4a25-ab6c-90994b7d3bf3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3921a356-2c85-4a25-ab6c-90994b7d3bf3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3921a356-2c85-4a25-ab6c-90994b7d3bf3 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-3921a356-2c85-4a25-ab6c-90994b7d3bf3.shogun-image-container {
      position: relative;
    }

    .s-3921a356-2c85-4a25-ab6c-90994b7d3bf3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3921a356-2c85-4a25-ab6c-90994b7d3bf3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3921a356-2c85-4a25-ab6c-90994b7d3bf3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-3921a356-2c85-4a25-ab6c-90994b7d3bf3 img.shogun-image,
  #s-3921a356-2c85-4a25-ab6c-90994b7d3bf3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3921a356-2c85-4a25-ab6c-90994b7d3bf3 {
    width: 100%;
    height: auto;
  }

  #s-3921a356-2c85-4a25-ab6c-90994b7d3bf3 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3921a356-2c85-4a25-ab6c-90994b7d3bf3.shogun-image {
    
    
  }


.s-3921a356-2c85-4a25-ab6c-90994b7d3bf3 .shogun-image-content {
  
    align-items: center;
  
}

.s-3921a356-2c85-4a25-ab6c-90994b7d3bf3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3921a356-2c85-4a25-ab6c-90994b7d3bf3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3921a356-2c85-4a25-ab6c-90994b7d3bf3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3921a356-2c85-4a25-ab6c-90994b7d3bf3 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-3921a356-2c85-4a25-ab6c-90994b7d3bf3.shogun-image-container {
      position: relative;
    }

    .s-3921a356-2c85-4a25-ab6c-90994b7d3bf3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3921a356-2c85-4a25-ab6c-90994b7d3bf3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3921a356-2c85-4a25-ab6c-90994b7d3bf3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-a570e6bf-c7ea-4108-b37f-666ccbdf7ead {
  margin-top: -4%;
margin-bottom: -3%;
}

#s-a570e6bf-c7ea-4108-b37f-666ccbdf7ead .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(5, calc(100vw / 24));
}

#s-c1112fdb-30e5-4066-9d1f-770a6eecdcb4 {
  margin-left: 0%;
margin-right: 20%;
text-align: center;
}

#s-c1112fdb-30e5-4066-9d1f-770a6eecdcb4-root {
  grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 2;
grid-row-end: 6;
z-index: 0;
}







  img.s-c1112fdb-30e5-4066-9d1f-770a6eecdcb4.shogun-image {
    
    
  }


.s-c1112fdb-30e5-4066-9d1f-770a6eecdcb4 .shogun-image-content {
  
    align-items: center;
  
}

.s-c1112fdb-30e5-4066-9d1f-770a6eecdcb4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c1112fdb-30e5-4066-9d1f-770a6eecdcb4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c1112fdb-30e5-4066-9d1f-770a6eecdcb4.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-c1112fdb-30e5-4066-9d1f-770a6eecdcb4.shogun-image {
    
    
  }


.s-c1112fdb-30e5-4066-9d1f-770a6eecdcb4 .shogun-image-content {
  
    align-items: center;
  
}

.s-c1112fdb-30e5-4066-9d1f-770a6eecdcb4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c1112fdb-30e5-4066-9d1f-770a6eecdcb4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c1112fdb-30e5-4066-9d1f-770a6eecdcb4.shogun-image {
  box-sizing: border-box;
}



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





  img.s-c1112fdb-30e5-4066-9d1f-770a6eecdcb4.shogun-image {
    
    
  }


.s-c1112fdb-30e5-4066-9d1f-770a6eecdcb4 .shogun-image-content {
  
    align-items: center;
  
}

.s-c1112fdb-30e5-4066-9d1f-770a6eecdcb4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c1112fdb-30e5-4066-9d1f-770a6eecdcb4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c1112fdb-30e5-4066-9d1f-770a6eecdcb4.shogun-image {
  box-sizing: border-box;
}



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





  img.s-c1112fdb-30e5-4066-9d1f-770a6eecdcb4.shogun-image {
    
    
  }


.s-c1112fdb-30e5-4066-9d1f-770a6eecdcb4 .shogun-image-content {
  
    align-items: center;
  
}

.s-c1112fdb-30e5-4066-9d1f-770a6eecdcb4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c1112fdb-30e5-4066-9d1f-770a6eecdcb4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c1112fdb-30e5-4066-9d1f-770a6eecdcb4.shogun-image {
  box-sizing: border-box;
}



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





  img.s-c1112fdb-30e5-4066-9d1f-770a6eecdcb4.shogun-image {
    
    
  }


.s-c1112fdb-30e5-4066-9d1f-770a6eecdcb4 .shogun-image-content {
  
    align-items: center;
  
}

.s-c1112fdb-30e5-4066-9d1f-770a6eecdcb4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c1112fdb-30e5-4066-9d1f-770a6eecdcb4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c1112fdb-30e5-4066-9d1f-770a6eecdcb4.shogun-image {
  box-sizing: border-box;
}



}
#s-a4529cfb-3a3c-49e4-b787-dcd144077f95 {
  margin-top: 1%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a4529cfb-3a3c-49e4-b787-dcd144077f95 {
  grid-column-start: 6;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 6;
z-index: 1;
}

#s-a4529cfb-3a3c-49e4-b787-dcd144077f95 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-2d7104e2-c6a0-4094-84bc-3e189f1e6f6b {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-7728b2d6-e8be-41a6-9560-a8c5662a39de {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
text-align: center;
}







  img.s-7728b2d6-e8be-41a6-9560-a8c5662a39de.shogun-image {
    
    
  }


.s-7728b2d6-e8be-41a6-9560-a8c5662a39de .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-7728b2d6-e8be-41a6-9560-a8c5662a39de.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7728b2d6-e8be-41a6-9560-a8c5662a39de.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7728b2d6-e8be-41a6-9560-a8c5662a39de.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-7728b2d6-e8be-41a6-9560-a8c5662a39de.shogun-image {
    
    
  }


.s-7728b2d6-e8be-41a6-9560-a8c5662a39de .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-7728b2d6-e8be-41a6-9560-a8c5662a39de.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7728b2d6-e8be-41a6-9560-a8c5662a39de.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7728b2d6-e8be-41a6-9560-a8c5662a39de.shogun-image {
  box-sizing: border-box;
}



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





  img.s-7728b2d6-e8be-41a6-9560-a8c5662a39de.shogun-image {
    
    
  }


.s-7728b2d6-e8be-41a6-9560-a8c5662a39de .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-7728b2d6-e8be-41a6-9560-a8c5662a39de.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7728b2d6-e8be-41a6-9560-a8c5662a39de.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7728b2d6-e8be-41a6-9560-a8c5662a39de.shogun-image {
  box-sizing: border-box;
}



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





  img.s-7728b2d6-e8be-41a6-9560-a8c5662a39de.shogun-image {
    
    
  }


.s-7728b2d6-e8be-41a6-9560-a8c5662a39de .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-7728b2d6-e8be-41a6-9560-a8c5662a39de.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7728b2d6-e8be-41a6-9560-a8c5662a39de.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7728b2d6-e8be-41a6-9560-a8c5662a39de.shogun-image {
  box-sizing: border-box;
}



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





  img.s-7728b2d6-e8be-41a6-9560-a8c5662a39de.shogun-image {
    
    
  }


.s-7728b2d6-e8be-41a6-9560-a8c5662a39de .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-7728b2d6-e8be-41a6-9560-a8c5662a39de.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7728b2d6-e8be-41a6-9560-a8c5662a39de.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7728b2d6-e8be-41a6-9560-a8c5662a39de.shogun-image {
  box-sizing: border-box;
}



}
#s-c9fc26dc-d564-48b5-aead-899973ea85b8 {
  margin-top: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c9fc26dc-d564-48b5-aead-899973ea85b8 .shogun-heading-component h5 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-95ef73a9-37e4-4c96-9920-067afdb3ed68 {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-95ef73a9-37e4-4c96-9920-067afdb3ed68 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-95ef73a9-37e4-4c96-9920-067afdb3ed68.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3121bdd1-1786-468b-b746-444942b5a781 {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: rgba(29, 29, 29, 0);
border-radius: 3px;
max-width: 100%;
background-color: rgba(29, 29, 29, 0.9);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-3121bdd1-1786-468b-b746-444942b5a781:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 0) !important;
background-color: rgba(74, 74, 74, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-3121bdd1-1786-468b-b746-444942b5a781:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(155, 155, 155, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-3121bdd1-1786-468b-b746-444942b5a781-root {
    text-align: center;
  }


#s-3121bdd1-1786-468b-b746-444942b5a781.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-3121bdd1-1786-468b-b746-444942b5a781-root {
    text-align: center;
  }


#s-3121bdd1-1786-468b-b746-444942b5a781.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-3121bdd1-1786-468b-b746-444942b5a781-root {
    text-align: center;
  }


#s-3121bdd1-1786-468b-b746-444942b5a781.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-3121bdd1-1786-468b-b746-444942b5a781-root {
    text-align: center;
  }


#s-3121bdd1-1786-468b-b746-444942b5a781.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-3121bdd1-1786-468b-b746-444942b5a781-root {
    text-align: center;
  }


#s-3121bdd1-1786-468b-b746-444942b5a781.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-3121bdd1-1786-468b-b746-444942b5a781-root {
    text-align: center;
  }


#s-3121bdd1-1786-468b-b746-444942b5a781.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-d71ba27b-0e31-425e-8025-40cccf2d8bb2 {
  margin-top: 13%;
margin-bottom: 0%;
}

#s-d71ba27b-0e31-425e-8025-40cccf2d8bb2 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(14, calc(100vw / 24));
}

#s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b {
  aspect-ratio: 11/11;
text-align: center;
}

#s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b-root {
  grid-column-start: 1;
grid-column-end: 12;
grid-row-start: 4;
grid-row-end: 15;
z-index: 0;
}





  #s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b img.shogun-image,
  #s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b {
    width: 100%;
    height: auto;
  }

  #s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b.shogun-image {
    
    
  }


.s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b .shogun-image-content {
  
    align-items: center;
  
}

.s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b.shogun-image-container {
      position: relative;
    }

    .s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b img.shogun-image,
  #s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b {
    width: 100%;
    height: auto;
  }

  #s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b.shogun-image {
    
    
  }


.s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b .shogun-image-content {
  
    align-items: center;
  
}

.s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b.shogun-image-container {
      position: relative;
    }

    .s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b img.shogun-image,
  #s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b {
    width: 100%;
    height: auto;
  }

  #s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b.shogun-image {
    
    
  }


.s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b .shogun-image-content {
  
    align-items: center;
  
}

.s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b.shogun-image-container {
      position: relative;
    }

    .s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b img.shogun-image,
  #s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b {
    width: 100%;
    height: auto;
  }

  #s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b.shogun-image {
    
    
  }


.s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b .shogun-image-content {
  
    align-items: center;
  
}

.s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b.shogun-image-container {
      position: relative;
    }

    .s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b img.shogun-image,
  #s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b {
    width: 100%;
    height: auto;
  }

  #s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b.shogun-image {
    
    
  }


.s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b .shogun-image-content {
  
    align-items: center;
  
}

.s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b.shogun-image-container {
      position: relative;
    }

    .s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-92ea1529-5196-4b1d-97f8-9dd21e3ac65b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2 {
  aspect-ratio: 14/14;
text-align: center;
}

#s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2-root {
  grid-column-start: 11;
grid-column-end: 25;
grid-row-start: 1;
grid-row-end: 15;
z-index: 1;
}





  #s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2 img.shogun-image,
  #s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2 {
    width: 100%;
    height: auto;
  }

  #s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2.shogun-image {
    
    
  }


.s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2 .shogun-image-content {
  
    align-items: center;
  
}

.s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2.shogun-image-container {
      position: relative;
    }

    .s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2 img.shogun-image,
  #s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2 {
    width: 100%;
    height: auto;
  }

  #s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2.shogun-image {
    
    
  }


.s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2 .shogun-image-content {
  
    align-items: center;
  
}

.s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2.shogun-image-container {
      position: relative;
    }

    .s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2 img.shogun-image,
  #s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2 {
    width: 100%;
    height: auto;
  }

  #s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2.shogun-image {
    
    
  }


.s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2 .shogun-image-content {
  
    align-items: center;
  
}

.s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2.shogun-image-container {
      position: relative;
    }

    .s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2 img.shogun-image,
  #s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2 {
    width: 100%;
    height: auto;
  }

  #s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2.shogun-image {
    
    
  }


.s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2 .shogun-image-content {
  
    align-items: center;
  
}

.s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2.shogun-image-container {
      position: relative;
    }

    .s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2 img.shogun-image,
  #s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2 {
    width: 100%;
    height: auto;
  }

  #s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2.shogun-image {
    
    
  }


.s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2 .shogun-image-content {
  
    align-items: center;
  
}

.s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2.shogun-image-container {
      position: relative;
    }

    .s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-775e8e0e-17bb-427a-9c4e-f173c4c0f1b2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-4e8db947-d2b7-4cf1-baaf-9e888b76cde2 {
  margin-top: -1%;
}

#s-4e8db947-d2b7-4cf1-baaf-9e888b76cde2 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(5, calc(100vw / 24));
}

#s-ddee34c7-6fce-4ea8-8913-51c53f758b23 {
  margin-left: 0%;
margin-right: 20%;
text-align: center;
}

#s-ddee34c7-6fce-4ea8-8913-51c53f758b23-root {
  grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 2;
grid-row-end: 6;
z-index: 0;
}







  img.s-ddee34c7-6fce-4ea8-8913-51c53f758b23.shogun-image {
    
    
  }


.s-ddee34c7-6fce-4ea8-8913-51c53f758b23 .shogun-image-content {
  
    align-items: center;
  
}

.s-ddee34c7-6fce-4ea8-8913-51c53f758b23.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ddee34c7-6fce-4ea8-8913-51c53f758b23.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ddee34c7-6fce-4ea8-8913-51c53f758b23.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-ddee34c7-6fce-4ea8-8913-51c53f758b23.shogun-image {
    
    
  }


.s-ddee34c7-6fce-4ea8-8913-51c53f758b23 .shogun-image-content {
  
    align-items: center;
  
}

.s-ddee34c7-6fce-4ea8-8913-51c53f758b23.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ddee34c7-6fce-4ea8-8913-51c53f758b23.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ddee34c7-6fce-4ea8-8913-51c53f758b23.shogun-image {
  box-sizing: border-box;
}



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





  img.s-ddee34c7-6fce-4ea8-8913-51c53f758b23.shogun-image {
    
    
  }


.s-ddee34c7-6fce-4ea8-8913-51c53f758b23 .shogun-image-content {
  
    align-items: center;
  
}

.s-ddee34c7-6fce-4ea8-8913-51c53f758b23.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ddee34c7-6fce-4ea8-8913-51c53f758b23.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ddee34c7-6fce-4ea8-8913-51c53f758b23.shogun-image {
  box-sizing: border-box;
}



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





  img.s-ddee34c7-6fce-4ea8-8913-51c53f758b23.shogun-image {
    
    
  }


.s-ddee34c7-6fce-4ea8-8913-51c53f758b23 .shogun-image-content {
  
    align-items: center;
  
}

.s-ddee34c7-6fce-4ea8-8913-51c53f758b23.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ddee34c7-6fce-4ea8-8913-51c53f758b23.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ddee34c7-6fce-4ea8-8913-51c53f758b23.shogun-image {
  box-sizing: border-box;
}



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





  img.s-ddee34c7-6fce-4ea8-8913-51c53f758b23.shogun-image {
    
    
  }


.s-ddee34c7-6fce-4ea8-8913-51c53f758b23 .shogun-image-content {
  
    align-items: center;
  
}

.s-ddee34c7-6fce-4ea8-8913-51c53f758b23.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ddee34c7-6fce-4ea8-8913-51c53f758b23.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ddee34c7-6fce-4ea8-8913-51c53f758b23.shogun-image {
  box-sizing: border-box;
}



}
#s-bc0f0868-e4c8-40e3-8ed1-4e3f56a37d3a {
  margin-top: 5%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-bc0f0868-e4c8-40e3-8ed1-4e3f56a37d3a {
  grid-column-start: 6;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 6;
z-index: 1;
}

#s-bc0f0868-e4c8-40e3-8ed1-4e3f56a37d3a .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 1px;
  text-align: left;
}



#s-eeea4c66-ebbe-46cf-98cd-044e1e150fde {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-bc8f1ade-67fb-4f0e-a8d7-9d0b7ce7170f {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}







  img.s-bc8f1ade-67fb-4f0e-a8d7-9d0b7ce7170f.shogun-image {
    
    
  }


.s-bc8f1ade-67fb-4f0e-a8d7-9d0b7ce7170f .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-bc8f1ade-67fb-4f0e-a8d7-9d0b7ce7170f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bc8f1ade-67fb-4f0e-a8d7-9d0b7ce7170f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc8f1ade-67fb-4f0e-a8d7-9d0b7ce7170f.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-bc8f1ade-67fb-4f0e-a8d7-9d0b7ce7170f.shogun-image {
    
    
  }


.s-bc8f1ade-67fb-4f0e-a8d7-9d0b7ce7170f .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-bc8f1ade-67fb-4f0e-a8d7-9d0b7ce7170f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bc8f1ade-67fb-4f0e-a8d7-9d0b7ce7170f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc8f1ade-67fb-4f0e-a8d7-9d0b7ce7170f.shogun-image {
  box-sizing: border-box;
}



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





  img.s-bc8f1ade-67fb-4f0e-a8d7-9d0b7ce7170f.shogun-image {
    
    
  }


.s-bc8f1ade-67fb-4f0e-a8d7-9d0b7ce7170f .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-bc8f1ade-67fb-4f0e-a8d7-9d0b7ce7170f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bc8f1ade-67fb-4f0e-a8d7-9d0b7ce7170f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc8f1ade-67fb-4f0e-a8d7-9d0b7ce7170f.shogun-image {
  box-sizing: border-box;
}



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





  img.s-bc8f1ade-67fb-4f0e-a8d7-9d0b7ce7170f.shogun-image {
    
    
  }


.s-bc8f1ade-67fb-4f0e-a8d7-9d0b7ce7170f .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-bc8f1ade-67fb-4f0e-a8d7-9d0b7ce7170f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bc8f1ade-67fb-4f0e-a8d7-9d0b7ce7170f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc8f1ade-67fb-4f0e-a8d7-9d0b7ce7170f.shogun-image {
  box-sizing: border-box;
}



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





  img.s-bc8f1ade-67fb-4f0e-a8d7-9d0b7ce7170f.shogun-image {
    
    
  }


.s-bc8f1ade-67fb-4f0e-a8d7-9d0b7ce7170f .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-bc8f1ade-67fb-4f0e-a8d7-9d0b7ce7170f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bc8f1ade-67fb-4f0e-a8d7-9d0b7ce7170f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc8f1ade-67fb-4f0e-a8d7-9d0b7ce7170f.shogun-image {
  box-sizing: border-box;
}



}
#s-f1b1cff9-a638-41eb-a45d-4fec3e3484e5 {
  margin-top: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f1b1cff9-a638-41eb-a45d-4fec3e3484e5 .shogun-heading-component h5 {
  color: rgba(31, 31, 31, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-69615fe8-c50a-449d-b229-2e174181bcf9 {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-69615fe8-c50a-449d-b229-2e174181bcf9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-69615fe8-c50a-449d-b229-2e174181bcf9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b2faac8f-2725-4a5d-868b-1a2233e0d641 {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: rgba(29, 29, 29, 0);
border-radius: 3px;
max-width: 100%;
background-color: rgba(29, 29, 29, 0.9);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-b2faac8f-2725-4a5d-868b-1a2233e0d641:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 0) !important;
background-color: rgba(74, 74, 74, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-b2faac8f-2725-4a5d-868b-1a2233e0d641:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(155, 155, 155, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-b2faac8f-2725-4a5d-868b-1a2233e0d641-root {
    text-align: center;
  }


#s-b2faac8f-2725-4a5d-868b-1a2233e0d641.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-b2faac8f-2725-4a5d-868b-1a2233e0d641-root {
    text-align: center;
  }


#s-b2faac8f-2725-4a5d-868b-1a2233e0d641.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b2faac8f-2725-4a5d-868b-1a2233e0d641-root {
    text-align: center;
  }


#s-b2faac8f-2725-4a5d-868b-1a2233e0d641.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b2faac8f-2725-4a5d-868b-1a2233e0d641-root {
    text-align: center;
  }


#s-b2faac8f-2725-4a5d-868b-1a2233e0d641.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-b2faac8f-2725-4a5d-868b-1a2233e0d641-root {
    text-align: center;
  }


#s-b2faac8f-2725-4a5d-868b-1a2233e0d641.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-b2faac8f-2725-4a5d-868b-1a2233e0d641-root {
    text-align: center;
  }


#s-b2faac8f-2725-4a5d-868b-1a2233e0d641.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-09c4a7c4-6dbf-4c3f-aae2-afda35ac82d1 {
  margin-top: 13%;
margin-bottom: 0%;
}

#s-09c4a7c4-6dbf-4c3f-aae2-afda35ac82d1 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(13, calc(100vw / 24));
}

#s-f35304aa-1188-449f-9c01-4d70f08bb39e {
  aspect-ratio: 13/13;
text-align: center;
}

#s-f35304aa-1188-449f-9c01-4d70f08bb39e-root {
  grid-column-start: 1;
grid-column-end: 14;
grid-row-start: 1;
grid-row-end: 14;
z-index: 0;
}





  #s-f35304aa-1188-449f-9c01-4d70f08bb39e img.shogun-image,
  #s-f35304aa-1188-449f-9c01-4d70f08bb39e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f35304aa-1188-449f-9c01-4d70f08bb39e {
    width: 100%;
    height: auto;
  }

  #s-f35304aa-1188-449f-9c01-4d70f08bb39e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f35304aa-1188-449f-9c01-4d70f08bb39e.shogun-image {
    
    
  }


.s-f35304aa-1188-449f-9c01-4d70f08bb39e .shogun-image-content {
  
    align-items: center;
  
}

.s-f35304aa-1188-449f-9c01-4d70f08bb39e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f35304aa-1188-449f-9c01-4d70f08bb39e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f35304aa-1188-449f-9c01-4d70f08bb39e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f35304aa-1188-449f-9c01-4d70f08bb39e {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-f35304aa-1188-449f-9c01-4d70f08bb39e.shogun-image-container {
      position: relative;
    }

    .s-f35304aa-1188-449f-9c01-4d70f08bb39e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f35304aa-1188-449f-9c01-4d70f08bb39e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f35304aa-1188-449f-9c01-4d70f08bb39e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-f35304aa-1188-449f-9c01-4d70f08bb39e img.shogun-image,
  #s-f35304aa-1188-449f-9c01-4d70f08bb39e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f35304aa-1188-449f-9c01-4d70f08bb39e {
    width: 100%;
    height: auto;
  }

  #s-f35304aa-1188-449f-9c01-4d70f08bb39e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f35304aa-1188-449f-9c01-4d70f08bb39e.shogun-image {
    
    
  }


.s-f35304aa-1188-449f-9c01-4d70f08bb39e .shogun-image-content {
  
    align-items: center;
  
}

.s-f35304aa-1188-449f-9c01-4d70f08bb39e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f35304aa-1188-449f-9c01-4d70f08bb39e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f35304aa-1188-449f-9c01-4d70f08bb39e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f35304aa-1188-449f-9c01-4d70f08bb39e {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-f35304aa-1188-449f-9c01-4d70f08bb39e.shogun-image-container {
      position: relative;
    }

    .s-f35304aa-1188-449f-9c01-4d70f08bb39e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f35304aa-1188-449f-9c01-4d70f08bb39e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f35304aa-1188-449f-9c01-4d70f08bb39e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-f35304aa-1188-449f-9c01-4d70f08bb39e img.shogun-image,
  #s-f35304aa-1188-449f-9c01-4d70f08bb39e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f35304aa-1188-449f-9c01-4d70f08bb39e {
    width: 100%;
    height: auto;
  }

  #s-f35304aa-1188-449f-9c01-4d70f08bb39e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f35304aa-1188-449f-9c01-4d70f08bb39e.shogun-image {
    
    
  }


.s-f35304aa-1188-449f-9c01-4d70f08bb39e .shogun-image-content {
  
    align-items: center;
  
}

.s-f35304aa-1188-449f-9c01-4d70f08bb39e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f35304aa-1188-449f-9c01-4d70f08bb39e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f35304aa-1188-449f-9c01-4d70f08bb39e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f35304aa-1188-449f-9c01-4d70f08bb39e {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-f35304aa-1188-449f-9c01-4d70f08bb39e.shogun-image-container {
      position: relative;
    }

    .s-f35304aa-1188-449f-9c01-4d70f08bb39e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f35304aa-1188-449f-9c01-4d70f08bb39e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f35304aa-1188-449f-9c01-4d70f08bb39e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-f35304aa-1188-449f-9c01-4d70f08bb39e img.shogun-image,
  #s-f35304aa-1188-449f-9c01-4d70f08bb39e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f35304aa-1188-449f-9c01-4d70f08bb39e {
    width: 100%;
    height: auto;
  }

  #s-f35304aa-1188-449f-9c01-4d70f08bb39e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f35304aa-1188-449f-9c01-4d70f08bb39e.shogun-image {
    
    
  }


.s-f35304aa-1188-449f-9c01-4d70f08bb39e .shogun-image-content {
  
    align-items: center;
  
}

.s-f35304aa-1188-449f-9c01-4d70f08bb39e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f35304aa-1188-449f-9c01-4d70f08bb39e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f35304aa-1188-449f-9c01-4d70f08bb39e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f35304aa-1188-449f-9c01-4d70f08bb39e {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-f35304aa-1188-449f-9c01-4d70f08bb39e.shogun-image-container {
      position: relative;
    }

    .s-f35304aa-1188-449f-9c01-4d70f08bb39e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f35304aa-1188-449f-9c01-4d70f08bb39e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f35304aa-1188-449f-9c01-4d70f08bb39e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-f35304aa-1188-449f-9c01-4d70f08bb39e img.shogun-image,
  #s-f35304aa-1188-449f-9c01-4d70f08bb39e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f35304aa-1188-449f-9c01-4d70f08bb39e {
    width: 100%;
    height: auto;
  }

  #s-f35304aa-1188-449f-9c01-4d70f08bb39e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f35304aa-1188-449f-9c01-4d70f08bb39e.shogun-image {
    
    
  }


.s-f35304aa-1188-449f-9c01-4d70f08bb39e .shogun-image-content {
  
    align-items: center;
  
}

.s-f35304aa-1188-449f-9c01-4d70f08bb39e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f35304aa-1188-449f-9c01-4d70f08bb39e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f35304aa-1188-449f-9c01-4d70f08bb39e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f35304aa-1188-449f-9c01-4d70f08bb39e {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-f35304aa-1188-449f-9c01-4d70f08bb39e.shogun-image-container {
      position: relative;
    }

    .s-f35304aa-1188-449f-9c01-4d70f08bb39e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f35304aa-1188-449f-9c01-4d70f08bb39e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f35304aa-1188-449f-9c01-4d70f08bb39e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-8cda8074-a80d-4208-a524-c5bd11563800 {
  aspect-ratio: 11/11;
text-align: center;
}

#s-8cda8074-a80d-4208-a524-c5bd11563800-root {
  grid-column-start: 14;
grid-column-end: 25;
grid-row-start: 1;
grid-row-end: 12;
z-index: 1;
}





  #s-8cda8074-a80d-4208-a524-c5bd11563800 img.shogun-image,
  #s-8cda8074-a80d-4208-a524-c5bd11563800 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8cda8074-a80d-4208-a524-c5bd11563800 {
    width: 100%;
    height: auto;
  }

  #s-8cda8074-a80d-4208-a524-c5bd11563800 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8cda8074-a80d-4208-a524-c5bd11563800.shogun-image {
    
    
  }


.s-8cda8074-a80d-4208-a524-c5bd11563800 .shogun-image-content {
  
    align-items: center;
  
}

.s-8cda8074-a80d-4208-a524-c5bd11563800.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8cda8074-a80d-4208-a524-c5bd11563800.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8cda8074-a80d-4208-a524-c5bd11563800.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8cda8074-a80d-4208-a524-c5bd11563800 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-8cda8074-a80d-4208-a524-c5bd11563800.shogun-image-container {
      position: relative;
    }

    .s-8cda8074-a80d-4208-a524-c5bd11563800.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8cda8074-a80d-4208-a524-c5bd11563800.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8cda8074-a80d-4208-a524-c5bd11563800 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-8cda8074-a80d-4208-a524-c5bd11563800 img.shogun-image,
  #s-8cda8074-a80d-4208-a524-c5bd11563800 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8cda8074-a80d-4208-a524-c5bd11563800 {
    width: 100%;
    height: auto;
  }

  #s-8cda8074-a80d-4208-a524-c5bd11563800 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8cda8074-a80d-4208-a524-c5bd11563800.shogun-image {
    
    
  }


.s-8cda8074-a80d-4208-a524-c5bd11563800 .shogun-image-content {
  
    align-items: center;
  
}

.s-8cda8074-a80d-4208-a524-c5bd11563800.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8cda8074-a80d-4208-a524-c5bd11563800.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8cda8074-a80d-4208-a524-c5bd11563800.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8cda8074-a80d-4208-a524-c5bd11563800 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-8cda8074-a80d-4208-a524-c5bd11563800.shogun-image-container {
      position: relative;
    }

    .s-8cda8074-a80d-4208-a524-c5bd11563800.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8cda8074-a80d-4208-a524-c5bd11563800.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8cda8074-a80d-4208-a524-c5bd11563800 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-8cda8074-a80d-4208-a524-c5bd11563800 img.shogun-image,
  #s-8cda8074-a80d-4208-a524-c5bd11563800 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8cda8074-a80d-4208-a524-c5bd11563800 {
    width: 100%;
    height: auto;
  }

  #s-8cda8074-a80d-4208-a524-c5bd11563800 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8cda8074-a80d-4208-a524-c5bd11563800.shogun-image {
    
    
  }


.s-8cda8074-a80d-4208-a524-c5bd11563800 .shogun-image-content {
  
    align-items: center;
  
}

.s-8cda8074-a80d-4208-a524-c5bd11563800.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8cda8074-a80d-4208-a524-c5bd11563800.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8cda8074-a80d-4208-a524-c5bd11563800.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8cda8074-a80d-4208-a524-c5bd11563800 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-8cda8074-a80d-4208-a524-c5bd11563800.shogun-image-container {
      position: relative;
    }

    .s-8cda8074-a80d-4208-a524-c5bd11563800.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8cda8074-a80d-4208-a524-c5bd11563800.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8cda8074-a80d-4208-a524-c5bd11563800 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-8cda8074-a80d-4208-a524-c5bd11563800 img.shogun-image,
  #s-8cda8074-a80d-4208-a524-c5bd11563800 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8cda8074-a80d-4208-a524-c5bd11563800 {
    width: 100%;
    height: auto;
  }

  #s-8cda8074-a80d-4208-a524-c5bd11563800 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8cda8074-a80d-4208-a524-c5bd11563800.shogun-image {
    
    
  }


.s-8cda8074-a80d-4208-a524-c5bd11563800 .shogun-image-content {
  
    align-items: center;
  
}

.s-8cda8074-a80d-4208-a524-c5bd11563800.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8cda8074-a80d-4208-a524-c5bd11563800.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8cda8074-a80d-4208-a524-c5bd11563800.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8cda8074-a80d-4208-a524-c5bd11563800 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-8cda8074-a80d-4208-a524-c5bd11563800.shogun-image-container {
      position: relative;
    }

    .s-8cda8074-a80d-4208-a524-c5bd11563800.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8cda8074-a80d-4208-a524-c5bd11563800.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8cda8074-a80d-4208-a524-c5bd11563800 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-8cda8074-a80d-4208-a524-c5bd11563800 img.shogun-image,
  #s-8cda8074-a80d-4208-a524-c5bd11563800 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8cda8074-a80d-4208-a524-c5bd11563800 {
    width: 100%;
    height: auto;
  }

  #s-8cda8074-a80d-4208-a524-c5bd11563800 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8cda8074-a80d-4208-a524-c5bd11563800.shogun-image {
    
    
  }


.s-8cda8074-a80d-4208-a524-c5bd11563800 .shogun-image-content {
  
    align-items: center;
  
}

.s-8cda8074-a80d-4208-a524-c5bd11563800.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8cda8074-a80d-4208-a524-c5bd11563800.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8cda8074-a80d-4208-a524-c5bd11563800.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8cda8074-a80d-4208-a524-c5bd11563800 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-8cda8074-a80d-4208-a524-c5bd11563800.shogun-image-container {
      position: relative;
    }

    .s-8cda8074-a80d-4208-a524-c5bd11563800.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8cda8074-a80d-4208-a524-c5bd11563800.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8cda8074-a80d-4208-a524-c5bd11563800 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-3be569d7-f8bc-4914-9f6c-1e2cd23d35d7 {
  margin-top: -3%;
}

#s-3be569d7-f8bc-4914-9f6c-1e2cd23d35d7 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(6, calc(100vw / 24));
}

#s-f08d3c53-26a5-42ad-9f5c-9a567727f629 {
  margin-top: 3%;
margin-left: 0%;
margin-right: 20%;
aspect-ratio: 5/5;
text-align: center;
}

#s-f08d3c53-26a5-42ad-9f5c-9a567727f629-root {
  grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 2;
grid-row-end: 7;
z-index: 0;
}





  #s-f08d3c53-26a5-42ad-9f5c-9a567727f629 img.shogun-image,
  #s-f08d3c53-26a5-42ad-9f5c-9a567727f629 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f08d3c53-26a5-42ad-9f5c-9a567727f629 {
    width: 100%;
    height: auto;
  }

  #s-f08d3c53-26a5-42ad-9f5c-9a567727f629 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f08d3c53-26a5-42ad-9f5c-9a567727f629.shogun-image {
    
    
  }


.s-f08d3c53-26a5-42ad-9f5c-9a567727f629 .shogun-image-content {
  
    align-items: center;
  
}

.s-f08d3c53-26a5-42ad-9f5c-9a567727f629.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f08d3c53-26a5-42ad-9f5c-9a567727f629.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f08d3c53-26a5-42ad-9f5c-9a567727f629.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f08d3c53-26a5-42ad-9f5c-9a567727f629 {
      --shg-aspect-ratio: calc(5/5); 
    }

    .s-f08d3c53-26a5-42ad-9f5c-9a567727f629.shogun-image-container {
      position: relative;
    }

    .s-f08d3c53-26a5-42ad-9f5c-9a567727f629.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f08d3c53-26a5-42ad-9f5c-9a567727f629.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f08d3c53-26a5-42ad-9f5c-9a567727f629 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-f08d3c53-26a5-42ad-9f5c-9a567727f629 img.shogun-image,
  #s-f08d3c53-26a5-42ad-9f5c-9a567727f629 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f08d3c53-26a5-42ad-9f5c-9a567727f629 {
    width: 100%;
    height: auto;
  }

  #s-f08d3c53-26a5-42ad-9f5c-9a567727f629 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f08d3c53-26a5-42ad-9f5c-9a567727f629.shogun-image {
    
    
  }


.s-f08d3c53-26a5-42ad-9f5c-9a567727f629 .shogun-image-content {
  
    align-items: center;
  
}

.s-f08d3c53-26a5-42ad-9f5c-9a567727f629.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f08d3c53-26a5-42ad-9f5c-9a567727f629.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f08d3c53-26a5-42ad-9f5c-9a567727f629.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f08d3c53-26a5-42ad-9f5c-9a567727f629 {
      --shg-aspect-ratio: calc(5/5); 
    }

    .s-f08d3c53-26a5-42ad-9f5c-9a567727f629.shogun-image-container {
      position: relative;
    }

    .s-f08d3c53-26a5-42ad-9f5c-9a567727f629.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f08d3c53-26a5-42ad-9f5c-9a567727f629.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f08d3c53-26a5-42ad-9f5c-9a567727f629 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-f08d3c53-26a5-42ad-9f5c-9a567727f629 img.shogun-image,
  #s-f08d3c53-26a5-42ad-9f5c-9a567727f629 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f08d3c53-26a5-42ad-9f5c-9a567727f629 {
    width: 100%;
    height: auto;
  }

  #s-f08d3c53-26a5-42ad-9f5c-9a567727f629 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f08d3c53-26a5-42ad-9f5c-9a567727f629.shogun-image {
    
    
  }


.s-f08d3c53-26a5-42ad-9f5c-9a567727f629 .shogun-image-content {
  
    align-items: center;
  
}

.s-f08d3c53-26a5-42ad-9f5c-9a567727f629.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f08d3c53-26a5-42ad-9f5c-9a567727f629.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f08d3c53-26a5-42ad-9f5c-9a567727f629.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f08d3c53-26a5-42ad-9f5c-9a567727f629 {
      --shg-aspect-ratio: calc(5/5); 
    }

    .s-f08d3c53-26a5-42ad-9f5c-9a567727f629.shogun-image-container {
      position: relative;
    }

    .s-f08d3c53-26a5-42ad-9f5c-9a567727f629.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f08d3c53-26a5-42ad-9f5c-9a567727f629.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f08d3c53-26a5-42ad-9f5c-9a567727f629 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-f08d3c53-26a5-42ad-9f5c-9a567727f629 img.shogun-image,
  #s-f08d3c53-26a5-42ad-9f5c-9a567727f629 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f08d3c53-26a5-42ad-9f5c-9a567727f629 {
    width: 100%;
    height: auto;
  }

  #s-f08d3c53-26a5-42ad-9f5c-9a567727f629 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f08d3c53-26a5-42ad-9f5c-9a567727f629.shogun-image {
    
    
  }


.s-f08d3c53-26a5-42ad-9f5c-9a567727f629 .shogun-image-content {
  
    align-items: center;
  
}

.s-f08d3c53-26a5-42ad-9f5c-9a567727f629.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f08d3c53-26a5-42ad-9f5c-9a567727f629.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f08d3c53-26a5-42ad-9f5c-9a567727f629.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f08d3c53-26a5-42ad-9f5c-9a567727f629 {
      --shg-aspect-ratio: calc(5/5); 
    }

    .s-f08d3c53-26a5-42ad-9f5c-9a567727f629.shogun-image-container {
      position: relative;
    }

    .s-f08d3c53-26a5-42ad-9f5c-9a567727f629.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f08d3c53-26a5-42ad-9f5c-9a567727f629.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f08d3c53-26a5-42ad-9f5c-9a567727f629 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-f08d3c53-26a5-42ad-9f5c-9a567727f629 img.shogun-image,
  #s-f08d3c53-26a5-42ad-9f5c-9a567727f629 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f08d3c53-26a5-42ad-9f5c-9a567727f629 {
    width: 100%;
    height: auto;
  }

  #s-f08d3c53-26a5-42ad-9f5c-9a567727f629 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f08d3c53-26a5-42ad-9f5c-9a567727f629.shogun-image {
    
    
  }


.s-f08d3c53-26a5-42ad-9f5c-9a567727f629 .shogun-image-content {
  
    align-items: center;
  
}

.s-f08d3c53-26a5-42ad-9f5c-9a567727f629.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f08d3c53-26a5-42ad-9f5c-9a567727f629.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f08d3c53-26a5-42ad-9f5c-9a567727f629.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f08d3c53-26a5-42ad-9f5c-9a567727f629 {
      --shg-aspect-ratio: calc(5/5); 
    }

    .s-f08d3c53-26a5-42ad-9f5c-9a567727f629.shogun-image-container {
      position: relative;
    }

    .s-f08d3c53-26a5-42ad-9f5c-9a567727f629.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f08d3c53-26a5-42ad-9f5c-9a567727f629.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f08d3c53-26a5-42ad-9f5c-9a567727f629 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-5b6a129e-80ff-40f5-aed4-6b417ae60d3a {
  margin-top: 5%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5b6a129e-80ff-40f5-aed4-6b417ae60d3a {
  grid-column-start: 6;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 7;
z-index: 1;
}

#s-5b6a129e-80ff-40f5-aed4-6b417ae60d3a .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 1px;
  text-align: left;
}



#s-3f6f0524-3e4d-47eb-bf4c-e9f59b47f30e {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-ea6c350f-ef87-404a-abf6-d6f8dec29829 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}







  img.s-ea6c350f-ef87-404a-abf6-d6f8dec29829.shogun-image {
    
    
  }


.s-ea6c350f-ef87-404a-abf6-d6f8dec29829 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-ea6c350f-ef87-404a-abf6-d6f8dec29829.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ea6c350f-ef87-404a-abf6-d6f8dec29829.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ea6c350f-ef87-404a-abf6-d6f8dec29829.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-ea6c350f-ef87-404a-abf6-d6f8dec29829.shogun-image {
    
    
  }


.s-ea6c350f-ef87-404a-abf6-d6f8dec29829 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-ea6c350f-ef87-404a-abf6-d6f8dec29829.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ea6c350f-ef87-404a-abf6-d6f8dec29829.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ea6c350f-ef87-404a-abf6-d6f8dec29829.shogun-image {
  box-sizing: border-box;
}



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





  img.s-ea6c350f-ef87-404a-abf6-d6f8dec29829.shogun-image {
    
    
  }


.s-ea6c350f-ef87-404a-abf6-d6f8dec29829 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-ea6c350f-ef87-404a-abf6-d6f8dec29829.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ea6c350f-ef87-404a-abf6-d6f8dec29829.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ea6c350f-ef87-404a-abf6-d6f8dec29829.shogun-image {
  box-sizing: border-box;
}



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





  img.s-ea6c350f-ef87-404a-abf6-d6f8dec29829.shogun-image {
    
    
  }


.s-ea6c350f-ef87-404a-abf6-d6f8dec29829 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-ea6c350f-ef87-404a-abf6-d6f8dec29829.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ea6c350f-ef87-404a-abf6-d6f8dec29829.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ea6c350f-ef87-404a-abf6-d6f8dec29829.shogun-image {
  box-sizing: border-box;
}



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





  img.s-ea6c350f-ef87-404a-abf6-d6f8dec29829.shogun-image {
    
    
  }


.s-ea6c350f-ef87-404a-abf6-d6f8dec29829 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-ea6c350f-ef87-404a-abf6-d6f8dec29829.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ea6c350f-ef87-404a-abf6-d6f8dec29829.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ea6c350f-ef87-404a-abf6-d6f8dec29829.shogun-image {
  box-sizing: border-box;
}



}
#s-c3d5e42b-7450-458a-8b83-2b74e1e97fa3 {
  margin-top: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c3d5e42b-7450-458a-8b83-2b74e1e97fa3 .shogun-heading-component h5 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-87f2515c-8fa5-42bb-b11b-f363794106e7 {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-87f2515c-8fa5-42bb-b11b-f363794106e7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-87f2515c-8fa5-42bb-b11b-f363794106e7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-90b261fc-60db-4259-b438-6bc6e4e2b6ce {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: rgba(255, 255, 255, 1);
border-radius: 3px;
max-width: 100%;
background-color: rgba(255, 255, 255, 0.5);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-90b261fc-60db-4259-b438-6bc6e4e2b6ce:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: rgba(255, 255, 255, 0.36) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-90b261fc-60db-4259-b438-6bc6e4e2b6ce:active {background-color: rgba(255, 255, 255, 0.51) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-90b261fc-60db-4259-b438-6bc6e4e2b6ce-root {
    text-align: center;
  }


#s-90b261fc-60db-4259-b438-6bc6e4e2b6ce.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-90b261fc-60db-4259-b438-6bc6e4e2b6ce-root {
    text-align: center;
  }


#s-90b261fc-60db-4259-b438-6bc6e4e2b6ce.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-90b261fc-60db-4259-b438-6bc6e4e2b6ce-root {
    text-align: center;
  }


#s-90b261fc-60db-4259-b438-6bc6e4e2b6ce.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-90b261fc-60db-4259-b438-6bc6e4e2b6ce-root {
    text-align: center;
  }


#s-90b261fc-60db-4259-b438-6bc6e4e2b6ce.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-90b261fc-60db-4259-b438-6bc6e4e2b6ce-root {
    text-align: center;
  }


#s-90b261fc-60db-4259-b438-6bc6e4e2b6ce.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-90b261fc-60db-4259-b438-6bc6e4e2b6ce-root {
    text-align: center;
  }


#s-90b261fc-60db-4259-b438-6bc6e4e2b6ce.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-8c1ea11c-6687-42cb-8b9f-8c37f791f1a0 {
  margin-top: 13%;
}

#s-8c1ea11c-6687-42cb-8b9f-8c37f791f1a0 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(14, calc(100vw / 24));
}

#s-cc272aa9-c90a-483b-a3e7-7d4464967e49 {
  aspect-ratio: 11/11;
text-align: center;
}

#s-cc272aa9-c90a-483b-a3e7-7d4464967e49-root {
  grid-column-start: 1;
grid-column-end: 12;
grid-row-start: 4;
grid-row-end: 15;
z-index: 0;
}





  #s-cc272aa9-c90a-483b-a3e7-7d4464967e49 img.shogun-image,
  #s-cc272aa9-c90a-483b-a3e7-7d4464967e49 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cc272aa9-c90a-483b-a3e7-7d4464967e49 {
    width: 100%;
    height: auto;
  }

  #s-cc272aa9-c90a-483b-a3e7-7d4464967e49 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cc272aa9-c90a-483b-a3e7-7d4464967e49.shogun-image {
    
    
  }


.s-cc272aa9-c90a-483b-a3e7-7d4464967e49 .shogun-image-content {
  
    align-items: center;
  
}

.s-cc272aa9-c90a-483b-a3e7-7d4464967e49.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc272aa9-c90a-483b-a3e7-7d4464967e49.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc272aa9-c90a-483b-a3e7-7d4464967e49.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cc272aa9-c90a-483b-a3e7-7d4464967e49 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-cc272aa9-c90a-483b-a3e7-7d4464967e49.shogun-image-container {
      position: relative;
    }

    .s-cc272aa9-c90a-483b-a3e7-7d4464967e49.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cc272aa9-c90a-483b-a3e7-7d4464967e49.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cc272aa9-c90a-483b-a3e7-7d4464967e49 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-cc272aa9-c90a-483b-a3e7-7d4464967e49 img.shogun-image,
  #s-cc272aa9-c90a-483b-a3e7-7d4464967e49 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cc272aa9-c90a-483b-a3e7-7d4464967e49 {
    width: 100%;
    height: auto;
  }

  #s-cc272aa9-c90a-483b-a3e7-7d4464967e49 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cc272aa9-c90a-483b-a3e7-7d4464967e49.shogun-image {
    
    
  }


.s-cc272aa9-c90a-483b-a3e7-7d4464967e49 .shogun-image-content {
  
    align-items: center;
  
}

.s-cc272aa9-c90a-483b-a3e7-7d4464967e49.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc272aa9-c90a-483b-a3e7-7d4464967e49.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc272aa9-c90a-483b-a3e7-7d4464967e49.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cc272aa9-c90a-483b-a3e7-7d4464967e49 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-cc272aa9-c90a-483b-a3e7-7d4464967e49.shogun-image-container {
      position: relative;
    }

    .s-cc272aa9-c90a-483b-a3e7-7d4464967e49.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cc272aa9-c90a-483b-a3e7-7d4464967e49.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cc272aa9-c90a-483b-a3e7-7d4464967e49 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-cc272aa9-c90a-483b-a3e7-7d4464967e49 img.shogun-image,
  #s-cc272aa9-c90a-483b-a3e7-7d4464967e49 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cc272aa9-c90a-483b-a3e7-7d4464967e49 {
    width: 100%;
    height: auto;
  }

  #s-cc272aa9-c90a-483b-a3e7-7d4464967e49 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cc272aa9-c90a-483b-a3e7-7d4464967e49.shogun-image {
    
    
  }


.s-cc272aa9-c90a-483b-a3e7-7d4464967e49 .shogun-image-content {
  
    align-items: center;
  
}

.s-cc272aa9-c90a-483b-a3e7-7d4464967e49.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc272aa9-c90a-483b-a3e7-7d4464967e49.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc272aa9-c90a-483b-a3e7-7d4464967e49.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cc272aa9-c90a-483b-a3e7-7d4464967e49 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-cc272aa9-c90a-483b-a3e7-7d4464967e49.shogun-image-container {
      position: relative;
    }

    .s-cc272aa9-c90a-483b-a3e7-7d4464967e49.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cc272aa9-c90a-483b-a3e7-7d4464967e49.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cc272aa9-c90a-483b-a3e7-7d4464967e49 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-cc272aa9-c90a-483b-a3e7-7d4464967e49 img.shogun-image,
  #s-cc272aa9-c90a-483b-a3e7-7d4464967e49 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cc272aa9-c90a-483b-a3e7-7d4464967e49 {
    width: 100%;
    height: auto;
  }

  #s-cc272aa9-c90a-483b-a3e7-7d4464967e49 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cc272aa9-c90a-483b-a3e7-7d4464967e49.shogun-image {
    
    
  }


.s-cc272aa9-c90a-483b-a3e7-7d4464967e49 .shogun-image-content {
  
    align-items: center;
  
}

.s-cc272aa9-c90a-483b-a3e7-7d4464967e49.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc272aa9-c90a-483b-a3e7-7d4464967e49.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc272aa9-c90a-483b-a3e7-7d4464967e49.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cc272aa9-c90a-483b-a3e7-7d4464967e49 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-cc272aa9-c90a-483b-a3e7-7d4464967e49.shogun-image-container {
      position: relative;
    }

    .s-cc272aa9-c90a-483b-a3e7-7d4464967e49.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cc272aa9-c90a-483b-a3e7-7d4464967e49.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cc272aa9-c90a-483b-a3e7-7d4464967e49 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-cc272aa9-c90a-483b-a3e7-7d4464967e49 img.shogun-image,
  #s-cc272aa9-c90a-483b-a3e7-7d4464967e49 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cc272aa9-c90a-483b-a3e7-7d4464967e49 {
    width: 100%;
    height: auto;
  }

  #s-cc272aa9-c90a-483b-a3e7-7d4464967e49 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cc272aa9-c90a-483b-a3e7-7d4464967e49.shogun-image {
    
    
  }


.s-cc272aa9-c90a-483b-a3e7-7d4464967e49 .shogun-image-content {
  
    align-items: center;
  
}

.s-cc272aa9-c90a-483b-a3e7-7d4464967e49.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc272aa9-c90a-483b-a3e7-7d4464967e49.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc272aa9-c90a-483b-a3e7-7d4464967e49.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cc272aa9-c90a-483b-a3e7-7d4464967e49 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-cc272aa9-c90a-483b-a3e7-7d4464967e49.shogun-image-container {
      position: relative;
    }

    .s-cc272aa9-c90a-483b-a3e7-7d4464967e49.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cc272aa9-c90a-483b-a3e7-7d4464967e49.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cc272aa9-c90a-483b-a3e7-7d4464967e49 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-71f7a437-817e-4374-9945-d55d6b95cd82 {
  aspect-ratio: 14/14;
text-align: center;
}

#s-71f7a437-817e-4374-9945-d55d6b95cd82-root {
  grid-column-start: 11;
grid-column-end: 25;
grid-row-start: 1;
grid-row-end: 15;
z-index: 1;
}





  #s-71f7a437-817e-4374-9945-d55d6b95cd82 img.shogun-image,
  #s-71f7a437-817e-4374-9945-d55d6b95cd82 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-71f7a437-817e-4374-9945-d55d6b95cd82 {
    width: 100%;
    height: auto;
  }

  #s-71f7a437-817e-4374-9945-d55d6b95cd82 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-71f7a437-817e-4374-9945-d55d6b95cd82.shogun-image {
    
    
  }


.s-71f7a437-817e-4374-9945-d55d6b95cd82 .shogun-image-content {
  
    align-items: center;
  
}

.s-71f7a437-817e-4374-9945-d55d6b95cd82.shg-align-container {
  display: flex;
  justify-content: center
}

.s-71f7a437-817e-4374-9945-d55d6b95cd82.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-71f7a437-817e-4374-9945-d55d6b95cd82.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-71f7a437-817e-4374-9945-d55d6b95cd82 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-71f7a437-817e-4374-9945-d55d6b95cd82.shogun-image-container {
      position: relative;
    }

    .s-71f7a437-817e-4374-9945-d55d6b95cd82.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-71f7a437-817e-4374-9945-d55d6b95cd82.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-71f7a437-817e-4374-9945-d55d6b95cd82 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-71f7a437-817e-4374-9945-d55d6b95cd82 img.shogun-image,
  #s-71f7a437-817e-4374-9945-d55d6b95cd82 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-71f7a437-817e-4374-9945-d55d6b95cd82 {
    width: 100%;
    height: auto;
  }

  #s-71f7a437-817e-4374-9945-d55d6b95cd82 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-71f7a437-817e-4374-9945-d55d6b95cd82.shogun-image {
    
    
  }


.s-71f7a437-817e-4374-9945-d55d6b95cd82 .shogun-image-content {
  
    align-items: center;
  
}

.s-71f7a437-817e-4374-9945-d55d6b95cd82.shg-align-container {
  display: flex;
  justify-content: center
}

.s-71f7a437-817e-4374-9945-d55d6b95cd82.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-71f7a437-817e-4374-9945-d55d6b95cd82.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-71f7a437-817e-4374-9945-d55d6b95cd82 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-71f7a437-817e-4374-9945-d55d6b95cd82.shogun-image-container {
      position: relative;
    }

    .s-71f7a437-817e-4374-9945-d55d6b95cd82.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-71f7a437-817e-4374-9945-d55d6b95cd82.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-71f7a437-817e-4374-9945-d55d6b95cd82 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-71f7a437-817e-4374-9945-d55d6b95cd82 img.shogun-image,
  #s-71f7a437-817e-4374-9945-d55d6b95cd82 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-71f7a437-817e-4374-9945-d55d6b95cd82 {
    width: 100%;
    height: auto;
  }

  #s-71f7a437-817e-4374-9945-d55d6b95cd82 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-71f7a437-817e-4374-9945-d55d6b95cd82.shogun-image {
    
    
  }


.s-71f7a437-817e-4374-9945-d55d6b95cd82 .shogun-image-content {
  
    align-items: center;
  
}

.s-71f7a437-817e-4374-9945-d55d6b95cd82.shg-align-container {
  display: flex;
  justify-content: center
}

.s-71f7a437-817e-4374-9945-d55d6b95cd82.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-71f7a437-817e-4374-9945-d55d6b95cd82.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-71f7a437-817e-4374-9945-d55d6b95cd82 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-71f7a437-817e-4374-9945-d55d6b95cd82.shogun-image-container {
      position: relative;
    }

    .s-71f7a437-817e-4374-9945-d55d6b95cd82.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-71f7a437-817e-4374-9945-d55d6b95cd82.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-71f7a437-817e-4374-9945-d55d6b95cd82 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-71f7a437-817e-4374-9945-d55d6b95cd82 img.shogun-image,
  #s-71f7a437-817e-4374-9945-d55d6b95cd82 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-71f7a437-817e-4374-9945-d55d6b95cd82 {
    width: 100%;
    height: auto;
  }

  #s-71f7a437-817e-4374-9945-d55d6b95cd82 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-71f7a437-817e-4374-9945-d55d6b95cd82.shogun-image {
    
    
  }


.s-71f7a437-817e-4374-9945-d55d6b95cd82 .shogun-image-content {
  
    align-items: center;
  
}

.s-71f7a437-817e-4374-9945-d55d6b95cd82.shg-align-container {
  display: flex;
  justify-content: center
}

.s-71f7a437-817e-4374-9945-d55d6b95cd82.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-71f7a437-817e-4374-9945-d55d6b95cd82.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-71f7a437-817e-4374-9945-d55d6b95cd82 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-71f7a437-817e-4374-9945-d55d6b95cd82.shogun-image-container {
      position: relative;
    }

    .s-71f7a437-817e-4374-9945-d55d6b95cd82.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-71f7a437-817e-4374-9945-d55d6b95cd82.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-71f7a437-817e-4374-9945-d55d6b95cd82 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-71f7a437-817e-4374-9945-d55d6b95cd82 img.shogun-image,
  #s-71f7a437-817e-4374-9945-d55d6b95cd82 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-71f7a437-817e-4374-9945-d55d6b95cd82 {
    width: 100%;
    height: auto;
  }

  #s-71f7a437-817e-4374-9945-d55d6b95cd82 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-71f7a437-817e-4374-9945-d55d6b95cd82.shogun-image {
    
    
  }


.s-71f7a437-817e-4374-9945-d55d6b95cd82 .shogun-image-content {
  
    align-items: center;
  
}

.s-71f7a437-817e-4374-9945-d55d6b95cd82.shg-align-container {
  display: flex;
  justify-content: center
}

.s-71f7a437-817e-4374-9945-d55d6b95cd82.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-71f7a437-817e-4374-9945-d55d6b95cd82.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-71f7a437-817e-4374-9945-d55d6b95cd82 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-71f7a437-817e-4374-9945-d55d6b95cd82.shogun-image-container {
      position: relative;
    }

    .s-71f7a437-817e-4374-9945-d55d6b95cd82.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-71f7a437-817e-4374-9945-d55d6b95cd82.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-71f7a437-817e-4374-9945-d55d6b95cd82 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-0b76d4e6-924d-44ca-a8a4-c046d34ed336 {
  margin-top: -1%;
}

#s-0b76d4e6-924d-44ca-a8a4-c046d34ed336 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(5, calc(100vw / 24));
}

#s-7d681904-7ca6-4cc1-bd49-70333a314fe0 {
  margin-left: 0%;
margin-right: 20%;
text-align: center;
}

#s-7d681904-7ca6-4cc1-bd49-70333a314fe0-root {
  grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 2;
grid-row-end: 6;
z-index: 0;
}







  img.s-7d681904-7ca6-4cc1-bd49-70333a314fe0.shogun-image {
    
    
  }


.s-7d681904-7ca6-4cc1-bd49-70333a314fe0 .shogun-image-content {
  
    align-items: center;
  
}

.s-7d681904-7ca6-4cc1-bd49-70333a314fe0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d681904-7ca6-4cc1-bd49-70333a314fe0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d681904-7ca6-4cc1-bd49-70333a314fe0.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-7d681904-7ca6-4cc1-bd49-70333a314fe0.shogun-image {
    
    
  }


.s-7d681904-7ca6-4cc1-bd49-70333a314fe0 .shogun-image-content {
  
    align-items: center;
  
}

.s-7d681904-7ca6-4cc1-bd49-70333a314fe0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d681904-7ca6-4cc1-bd49-70333a314fe0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d681904-7ca6-4cc1-bd49-70333a314fe0.shogun-image {
  box-sizing: border-box;
}



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





  img.s-7d681904-7ca6-4cc1-bd49-70333a314fe0.shogun-image {
    
    
  }


.s-7d681904-7ca6-4cc1-bd49-70333a314fe0 .shogun-image-content {
  
    align-items: center;
  
}

.s-7d681904-7ca6-4cc1-bd49-70333a314fe0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d681904-7ca6-4cc1-bd49-70333a314fe0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d681904-7ca6-4cc1-bd49-70333a314fe0.shogun-image {
  box-sizing: border-box;
}



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





  img.s-7d681904-7ca6-4cc1-bd49-70333a314fe0.shogun-image {
    
    
  }


.s-7d681904-7ca6-4cc1-bd49-70333a314fe0 .shogun-image-content {
  
    align-items: center;
  
}

.s-7d681904-7ca6-4cc1-bd49-70333a314fe0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d681904-7ca6-4cc1-bd49-70333a314fe0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d681904-7ca6-4cc1-bd49-70333a314fe0.shogun-image {
  box-sizing: border-box;
}



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





  img.s-7d681904-7ca6-4cc1-bd49-70333a314fe0.shogun-image {
    
    
  }


.s-7d681904-7ca6-4cc1-bd49-70333a314fe0 .shogun-image-content {
  
    align-items: center;
  
}

.s-7d681904-7ca6-4cc1-bd49-70333a314fe0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d681904-7ca6-4cc1-bd49-70333a314fe0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d681904-7ca6-4cc1-bd49-70333a314fe0.shogun-image {
  box-sizing: border-box;
}



}
#s-fed161f7-6ef9-4200-a262-037a0b11324e {
  margin-top: 5%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-fed161f7-6ef9-4200-a262-037a0b11324e {
  grid-column-start: 6;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 6;
z-index: 1;
}

#s-fed161f7-6ef9-4200-a262-037a0b11324e .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 1px;
  text-align: left;
}



#s-674294bc-83a8-4840-9a29-a13937c4beac {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-fd726e30-1361-4bf7-af8a-f5193dd08974 {
  text-align: left;
}

#s-66227f42-20cd-45a1-bee8-5653719d4b3c {
  margin-top: 3%;
margin-left: 5%;
margin-bottom: 5%;
margin-right: 5%;
min-height: 50px;
}
@media (min-width: 1200px){#s-66227f42-20cd-45a1-bee8-5653719d4b3c {
  display: none;
}
#s-66227f42-20cd-45a1-bee8-5653719d4b3c, #wrap-s-66227f42-20cd-45a1-bee8-5653719d4b3c { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-66227f42-20cd-45a1-bee8-5653719d4b3c {
  display: none;
}
#s-66227f42-20cd-45a1-bee8-5653719d4b3c, #wrap-s-66227f42-20cd-45a1-bee8-5653719d4b3c { display: none !important; }}







#s-66227f42-20cd-45a1-bee8-5653719d4b3c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-66227f42-20cd-45a1-bee8-5653719d4b3c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-901096c5-bdca-4e93-88b3-2f7400912b31 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(13, calc(100vw / 24));
}

#s-e10b8e7f-5797-4955-bd06-e310edb66512 {
  aspect-ratio: 12/12;
text-align: center;
}

#s-e10b8e7f-5797-4955-bd06-e310edb66512-root {
  grid-column-start: 1;
grid-column-end: 13;
grid-row-start: 1;
grid-row-end: 13;
z-index: 0;
}





  #s-e10b8e7f-5797-4955-bd06-e310edb66512 img.shogun-image,
  #s-e10b8e7f-5797-4955-bd06-e310edb66512 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e10b8e7f-5797-4955-bd06-e310edb66512 {
    width: 100%;
    height: auto;
  }

  #s-e10b8e7f-5797-4955-bd06-e310edb66512 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e10b8e7f-5797-4955-bd06-e310edb66512.shogun-image {
    
    
  }


.s-e10b8e7f-5797-4955-bd06-e310edb66512 .shogun-image-content {
  
    align-items: center;
  
}

.s-e10b8e7f-5797-4955-bd06-e310edb66512.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e10b8e7f-5797-4955-bd06-e310edb66512.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e10b8e7f-5797-4955-bd06-e310edb66512.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e10b8e7f-5797-4955-bd06-e310edb66512 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-e10b8e7f-5797-4955-bd06-e310edb66512.shogun-image-container {
      position: relative;
    }

    .s-e10b8e7f-5797-4955-bd06-e310edb66512.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e10b8e7f-5797-4955-bd06-e310edb66512.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e10b8e7f-5797-4955-bd06-e310edb66512 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-e10b8e7f-5797-4955-bd06-e310edb66512 img.shogun-image,
  #s-e10b8e7f-5797-4955-bd06-e310edb66512 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e10b8e7f-5797-4955-bd06-e310edb66512 {
    width: 100%;
    height: auto;
  }

  #s-e10b8e7f-5797-4955-bd06-e310edb66512 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e10b8e7f-5797-4955-bd06-e310edb66512.shogun-image {
    
    
  }


.s-e10b8e7f-5797-4955-bd06-e310edb66512 .shogun-image-content {
  
    align-items: center;
  
}

.s-e10b8e7f-5797-4955-bd06-e310edb66512.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e10b8e7f-5797-4955-bd06-e310edb66512.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e10b8e7f-5797-4955-bd06-e310edb66512.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e10b8e7f-5797-4955-bd06-e310edb66512 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-e10b8e7f-5797-4955-bd06-e310edb66512.shogun-image-container {
      position: relative;
    }

    .s-e10b8e7f-5797-4955-bd06-e310edb66512.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e10b8e7f-5797-4955-bd06-e310edb66512.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e10b8e7f-5797-4955-bd06-e310edb66512 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-e10b8e7f-5797-4955-bd06-e310edb66512 img.shogun-image,
  #s-e10b8e7f-5797-4955-bd06-e310edb66512 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e10b8e7f-5797-4955-bd06-e310edb66512 {
    width: 100%;
    height: auto;
  }

  #s-e10b8e7f-5797-4955-bd06-e310edb66512 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e10b8e7f-5797-4955-bd06-e310edb66512.shogun-image {
    
    
  }


.s-e10b8e7f-5797-4955-bd06-e310edb66512 .shogun-image-content {
  
    align-items: center;
  
}

.s-e10b8e7f-5797-4955-bd06-e310edb66512.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e10b8e7f-5797-4955-bd06-e310edb66512.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e10b8e7f-5797-4955-bd06-e310edb66512.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e10b8e7f-5797-4955-bd06-e310edb66512 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-e10b8e7f-5797-4955-bd06-e310edb66512.shogun-image-container {
      position: relative;
    }

    .s-e10b8e7f-5797-4955-bd06-e310edb66512.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e10b8e7f-5797-4955-bd06-e310edb66512.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e10b8e7f-5797-4955-bd06-e310edb66512 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-e10b8e7f-5797-4955-bd06-e310edb66512 img.shogun-image,
  #s-e10b8e7f-5797-4955-bd06-e310edb66512 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e10b8e7f-5797-4955-bd06-e310edb66512 {
    width: 100%;
    height: auto;
  }

  #s-e10b8e7f-5797-4955-bd06-e310edb66512 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e10b8e7f-5797-4955-bd06-e310edb66512.shogun-image {
    
    
  }


.s-e10b8e7f-5797-4955-bd06-e310edb66512 .shogun-image-content {
  
    align-items: center;
  
}

.s-e10b8e7f-5797-4955-bd06-e310edb66512.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e10b8e7f-5797-4955-bd06-e310edb66512.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e10b8e7f-5797-4955-bd06-e310edb66512.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e10b8e7f-5797-4955-bd06-e310edb66512 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-e10b8e7f-5797-4955-bd06-e310edb66512.shogun-image-container {
      position: relative;
    }

    .s-e10b8e7f-5797-4955-bd06-e310edb66512.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e10b8e7f-5797-4955-bd06-e310edb66512.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e10b8e7f-5797-4955-bd06-e310edb66512 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-e10b8e7f-5797-4955-bd06-e310edb66512 img.shogun-image,
  #s-e10b8e7f-5797-4955-bd06-e310edb66512 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e10b8e7f-5797-4955-bd06-e310edb66512 {
    width: 100%;
    height: auto;
  }

  #s-e10b8e7f-5797-4955-bd06-e310edb66512 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e10b8e7f-5797-4955-bd06-e310edb66512.shogun-image {
    
    
  }


.s-e10b8e7f-5797-4955-bd06-e310edb66512 .shogun-image-content {
  
    align-items: center;
  
}

.s-e10b8e7f-5797-4955-bd06-e310edb66512.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e10b8e7f-5797-4955-bd06-e310edb66512.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e10b8e7f-5797-4955-bd06-e310edb66512.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e10b8e7f-5797-4955-bd06-e310edb66512 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-e10b8e7f-5797-4955-bd06-e310edb66512.shogun-image-container {
      position: relative;
    }

    .s-e10b8e7f-5797-4955-bd06-e310edb66512.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e10b8e7f-5797-4955-bd06-e310edb66512.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e10b8e7f-5797-4955-bd06-e310edb66512 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-de1db58c-3bdf-4067-983d-4135ca7874ad {
  aspect-ratio: 12/12;
text-align: center;
}

#s-de1db58c-3bdf-4067-983d-4135ca7874ad-root {
  grid-column-start: 12;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 14;
z-index: 1;
}





  #s-de1db58c-3bdf-4067-983d-4135ca7874ad img.shogun-image,
  #s-de1db58c-3bdf-4067-983d-4135ca7874ad .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-de1db58c-3bdf-4067-983d-4135ca7874ad {
    width: 100%;
    height: auto;
  }

  #s-de1db58c-3bdf-4067-983d-4135ca7874ad img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-de1db58c-3bdf-4067-983d-4135ca7874ad.shogun-image {
    
    
  }


.s-de1db58c-3bdf-4067-983d-4135ca7874ad .shogun-image-content {
  
    align-items: center;
  
}

.s-de1db58c-3bdf-4067-983d-4135ca7874ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de1db58c-3bdf-4067-983d-4135ca7874ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de1db58c-3bdf-4067-983d-4135ca7874ad.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-de1db58c-3bdf-4067-983d-4135ca7874ad {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-de1db58c-3bdf-4067-983d-4135ca7874ad.shogun-image-container {
      position: relative;
    }

    .s-de1db58c-3bdf-4067-983d-4135ca7874ad.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-de1db58c-3bdf-4067-983d-4135ca7874ad.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-de1db58c-3bdf-4067-983d-4135ca7874ad img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-de1db58c-3bdf-4067-983d-4135ca7874ad img.shogun-image,
  #s-de1db58c-3bdf-4067-983d-4135ca7874ad .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-de1db58c-3bdf-4067-983d-4135ca7874ad {
    width: 100%;
    height: auto;
  }

  #s-de1db58c-3bdf-4067-983d-4135ca7874ad img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-de1db58c-3bdf-4067-983d-4135ca7874ad.shogun-image {
    
    
  }


.s-de1db58c-3bdf-4067-983d-4135ca7874ad .shogun-image-content {
  
    align-items: center;
  
}

.s-de1db58c-3bdf-4067-983d-4135ca7874ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de1db58c-3bdf-4067-983d-4135ca7874ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de1db58c-3bdf-4067-983d-4135ca7874ad.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-de1db58c-3bdf-4067-983d-4135ca7874ad {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-de1db58c-3bdf-4067-983d-4135ca7874ad.shogun-image-container {
      position: relative;
    }

    .s-de1db58c-3bdf-4067-983d-4135ca7874ad.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-de1db58c-3bdf-4067-983d-4135ca7874ad.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-de1db58c-3bdf-4067-983d-4135ca7874ad img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-de1db58c-3bdf-4067-983d-4135ca7874ad img.shogun-image,
  #s-de1db58c-3bdf-4067-983d-4135ca7874ad .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-de1db58c-3bdf-4067-983d-4135ca7874ad {
    width: 100%;
    height: auto;
  }

  #s-de1db58c-3bdf-4067-983d-4135ca7874ad img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-de1db58c-3bdf-4067-983d-4135ca7874ad.shogun-image {
    
    
  }


.s-de1db58c-3bdf-4067-983d-4135ca7874ad .shogun-image-content {
  
    align-items: center;
  
}

.s-de1db58c-3bdf-4067-983d-4135ca7874ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de1db58c-3bdf-4067-983d-4135ca7874ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de1db58c-3bdf-4067-983d-4135ca7874ad.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-de1db58c-3bdf-4067-983d-4135ca7874ad {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-de1db58c-3bdf-4067-983d-4135ca7874ad.shogun-image-container {
      position: relative;
    }

    .s-de1db58c-3bdf-4067-983d-4135ca7874ad.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-de1db58c-3bdf-4067-983d-4135ca7874ad.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-de1db58c-3bdf-4067-983d-4135ca7874ad img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-de1db58c-3bdf-4067-983d-4135ca7874ad img.shogun-image,
  #s-de1db58c-3bdf-4067-983d-4135ca7874ad .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-de1db58c-3bdf-4067-983d-4135ca7874ad {
    width: 100%;
    height: auto;
  }

  #s-de1db58c-3bdf-4067-983d-4135ca7874ad img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-de1db58c-3bdf-4067-983d-4135ca7874ad.shogun-image {
    
    
  }


.s-de1db58c-3bdf-4067-983d-4135ca7874ad .shogun-image-content {
  
    align-items: center;
  
}

.s-de1db58c-3bdf-4067-983d-4135ca7874ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de1db58c-3bdf-4067-983d-4135ca7874ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de1db58c-3bdf-4067-983d-4135ca7874ad.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-de1db58c-3bdf-4067-983d-4135ca7874ad {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-de1db58c-3bdf-4067-983d-4135ca7874ad.shogun-image-container {
      position: relative;
    }

    .s-de1db58c-3bdf-4067-983d-4135ca7874ad.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-de1db58c-3bdf-4067-983d-4135ca7874ad.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-de1db58c-3bdf-4067-983d-4135ca7874ad img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-de1db58c-3bdf-4067-983d-4135ca7874ad img.shogun-image,
  #s-de1db58c-3bdf-4067-983d-4135ca7874ad .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-de1db58c-3bdf-4067-983d-4135ca7874ad {
    width: 100%;
    height: auto;
  }

  #s-de1db58c-3bdf-4067-983d-4135ca7874ad img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-de1db58c-3bdf-4067-983d-4135ca7874ad.shogun-image {
    
    
  }


.s-de1db58c-3bdf-4067-983d-4135ca7874ad .shogun-image-content {
  
    align-items: center;
  
}

.s-de1db58c-3bdf-4067-983d-4135ca7874ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de1db58c-3bdf-4067-983d-4135ca7874ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de1db58c-3bdf-4067-983d-4135ca7874ad.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-de1db58c-3bdf-4067-983d-4135ca7874ad {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-de1db58c-3bdf-4067-983d-4135ca7874ad.shogun-image-container {
      position: relative;
    }

    .s-de1db58c-3bdf-4067-983d-4135ca7874ad.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-de1db58c-3bdf-4067-983d-4135ca7874ad.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-de1db58c-3bdf-4067-983d-4135ca7874ad img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-e8371063-4ca2-4808-bc2c-0c9994abecfc {
  margin-top: -1%;
margin-bottom: 0%;
}

#s-e8371063-4ca2-4808-bc2c-0c9994abecfc .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(5, calc(100vw / 24));
}

#s-5db63ccb-113f-4803-aab5-8d6cf7ff2d3d {
  margin-left: 0%;
margin-right: 20%;
text-align: center;
}

#s-5db63ccb-113f-4803-aab5-8d6cf7ff2d3d-root {
  grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 2;
grid-row-end: 6;
z-index: 0;
}







  img.s-5db63ccb-113f-4803-aab5-8d6cf7ff2d3d.shogun-image {
    
    
  }


.s-5db63ccb-113f-4803-aab5-8d6cf7ff2d3d .shogun-image-content {
  
    align-items: center;
  
}

.s-5db63ccb-113f-4803-aab5-8d6cf7ff2d3d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5db63ccb-113f-4803-aab5-8d6cf7ff2d3d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5db63ccb-113f-4803-aab5-8d6cf7ff2d3d.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-5db63ccb-113f-4803-aab5-8d6cf7ff2d3d.shogun-image {
    
    
  }


.s-5db63ccb-113f-4803-aab5-8d6cf7ff2d3d .shogun-image-content {
  
    align-items: center;
  
}

.s-5db63ccb-113f-4803-aab5-8d6cf7ff2d3d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5db63ccb-113f-4803-aab5-8d6cf7ff2d3d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5db63ccb-113f-4803-aab5-8d6cf7ff2d3d.shogun-image {
  box-sizing: border-box;
}



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





  img.s-5db63ccb-113f-4803-aab5-8d6cf7ff2d3d.shogun-image {
    
    
  }


.s-5db63ccb-113f-4803-aab5-8d6cf7ff2d3d .shogun-image-content {
  
    align-items: center;
  
}

.s-5db63ccb-113f-4803-aab5-8d6cf7ff2d3d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5db63ccb-113f-4803-aab5-8d6cf7ff2d3d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5db63ccb-113f-4803-aab5-8d6cf7ff2d3d.shogun-image {
  box-sizing: border-box;
}



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





  img.s-5db63ccb-113f-4803-aab5-8d6cf7ff2d3d.shogun-image {
    
    
  }


.s-5db63ccb-113f-4803-aab5-8d6cf7ff2d3d .shogun-image-content {
  
    align-items: center;
  
}

.s-5db63ccb-113f-4803-aab5-8d6cf7ff2d3d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5db63ccb-113f-4803-aab5-8d6cf7ff2d3d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5db63ccb-113f-4803-aab5-8d6cf7ff2d3d.shogun-image {
  box-sizing: border-box;
}



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





  img.s-5db63ccb-113f-4803-aab5-8d6cf7ff2d3d.shogun-image {
    
    
  }


.s-5db63ccb-113f-4803-aab5-8d6cf7ff2d3d .shogun-image-content {
  
    align-items: center;
  
}

.s-5db63ccb-113f-4803-aab5-8d6cf7ff2d3d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5db63ccb-113f-4803-aab5-8d6cf7ff2d3d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5db63ccb-113f-4803-aab5-8d6cf7ff2d3d.shogun-image {
  box-sizing: border-box;
}



}
#s-15b66025-3d27-4334-8e5c-f5adc7303273 {
  margin-top: 6%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-15b66025-3d27-4334-8e5c-f5adc7303273 {
  grid-column-start: 6;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 6;
z-index: 1;
}

#s-15b66025-3d27-4334-8e5c-f5adc7303273 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 1px;
  text-align: left;
}



#s-38f8ff28-9b89-4613-8f6b-15eb3623b3a5 {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03 img.shogun-image,
  #s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03 {
    width: 100%;
    height: auto;
  }

  #s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03.shogun-image {
    
    
  }


.s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03.shogun-image-container {
      position: relative;
    }

    .s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03 img.shogun-image,
  #s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03 {
    width: 100%;
    height: auto;
  }

  #s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03.shogun-image {
    
    
  }


.s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03.shogun-image-container {
      position: relative;
    }

    .s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03 img.shogun-image,
  #s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03 {
    width: 100%;
    height: auto;
  }

  #s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03.shogun-image {
    
    
  }


.s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03.shogun-image-container {
      position: relative;
    }

    .s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03 img.shogun-image,
  #s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03 {
    width: 100%;
    height: auto;
  }

  #s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03.shogun-image {
    
    
  }


.s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03.shogun-image-container {
      position: relative;
    }

    .s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03 img.shogun-image,
  #s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03 {
    width: 100%;
    height: auto;
  }

  #s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03.shogun-image {
    
    
  }


.s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03.shogun-image-container {
      position: relative;
    }

    .s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5f8a5c2b-63f2-48cb-a64a-7975baf4bc03 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-27622e98-706e-4e67-9bea-ca0a00b8a773 {
  margin-top: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-27622e98-706e-4e67-9bea-ca0a00b8a773 .shogun-heading-component h5 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-5a3204b2-1713-498f-a5e7-bf762b47696e {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-5a3204b2-1713-498f-a5e7-bf762b47696e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5a3204b2-1713-498f-a5e7-bf762b47696e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-25b8b3ca-c401-46f4-b04b-5f8817fb3b1e {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: rgba(29, 29, 29, 0);
border-radius: 3px;
max-width: 100%;
background-color: rgba(29, 29, 29, 0.9);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-25b8b3ca-c401-46f4-b04b-5f8817fb3b1e:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 0) !important;
background-color: rgba(74, 74, 74, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-25b8b3ca-c401-46f4-b04b-5f8817fb3b1e:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(155, 155, 155, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-25b8b3ca-c401-46f4-b04b-5f8817fb3b1e-root {
    text-align: center;
  }


#s-25b8b3ca-c401-46f4-b04b-5f8817fb3b1e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-25b8b3ca-c401-46f4-b04b-5f8817fb3b1e-root {
    text-align: center;
  }


#s-25b8b3ca-c401-46f4-b04b-5f8817fb3b1e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-25b8b3ca-c401-46f4-b04b-5f8817fb3b1e-root {
    text-align: center;
  }


#s-25b8b3ca-c401-46f4-b04b-5f8817fb3b1e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-25b8b3ca-c401-46f4-b04b-5f8817fb3b1e-root {
    text-align: center;
  }


#s-25b8b3ca-c401-46f4-b04b-5f8817fb3b1e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-25b8b3ca-c401-46f4-b04b-5f8817fb3b1e-root {
    text-align: center;
  }


#s-25b8b3ca-c401-46f4-b04b-5f8817fb3b1e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-25b8b3ca-c401-46f4-b04b-5f8817fb3b1e-root {
    text-align: center;
  }


#s-25b8b3ca-c401-46f4-b04b-5f8817fb3b1e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-f95126fa-7892-46c8-a2b8-10b46f7dc524 {
  margin-top: 13%;
margin-bottom: 0%;
}

#s-f95126fa-7892-46c8-a2b8-10b46f7dc524 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(14, calc(100vw / 24));
}

#s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6 {
  aspect-ratio: 13/13;
text-align: center;
}

#s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6-root {
  grid-column-start: 1;
grid-column-end: 14;
grid-row-start: 1;
grid-row-end: 14;
z-index: 0;
}





  #s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6 img.shogun-image,
  #s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6 {
    width: 100%;
    height: auto;
  }

  #s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6.shogun-image {
    
    
  }


.s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6 .shogun-image-content {
  
    align-items: center;
  
}

.s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6 {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6.shogun-image-container {
      position: relative;
    }

    .s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6 img.shogun-image,
  #s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6 {
    width: 100%;
    height: auto;
  }

  #s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6.shogun-image {
    
    
  }


.s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6 .shogun-image-content {
  
    align-items: center;
  
}

.s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6 {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6.shogun-image-container {
      position: relative;
    }

    .s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6 img.shogun-image,
  #s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6 {
    width: 100%;
    height: auto;
  }

  #s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6.shogun-image {
    
    
  }


.s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6 .shogun-image-content {
  
    align-items: center;
  
}

.s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6 {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6.shogun-image-container {
      position: relative;
    }

    .s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6 img.shogun-image,
  #s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6 {
    width: 100%;
    height: auto;
  }

  #s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6.shogun-image {
    
    
  }


.s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6 .shogun-image-content {
  
    align-items: center;
  
}

.s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6 {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6.shogun-image-container {
      position: relative;
    }

    .s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6 img.shogun-image,
  #s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6 {
    width: 100%;
    height: auto;
  }

  #s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6.shogun-image {
    
    
  }


.s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6 .shogun-image-content {
  
    align-items: center;
  
}

.s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6 {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6.shogun-image-container {
      position: relative;
    }

    .s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd35fbcf-dbc3-4098-8796-e4c28dbe9ec6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-e1f11187-689c-47e9-9a01-17002f608393 {
  aspect-ratio: 12/12;
text-align: center;
}

#s-e1f11187-689c-47e9-9a01-17002f608393-root {
  grid-column-start: 13;
grid-column-end: 25;
grid-row-start: 3;
grid-row-end: 15;
z-index: 1;
}





  #s-e1f11187-689c-47e9-9a01-17002f608393 img.shogun-image,
  #s-e1f11187-689c-47e9-9a01-17002f608393 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e1f11187-689c-47e9-9a01-17002f608393 {
    width: 100%;
    height: auto;
  }

  #s-e1f11187-689c-47e9-9a01-17002f608393 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e1f11187-689c-47e9-9a01-17002f608393.shogun-image {
    
    
  }


.s-e1f11187-689c-47e9-9a01-17002f608393 .shogun-image-content {
  
    align-items: center;
  
}

.s-e1f11187-689c-47e9-9a01-17002f608393.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e1f11187-689c-47e9-9a01-17002f608393.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e1f11187-689c-47e9-9a01-17002f608393.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e1f11187-689c-47e9-9a01-17002f608393 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-e1f11187-689c-47e9-9a01-17002f608393.shogun-image-container {
      position: relative;
    }

    .s-e1f11187-689c-47e9-9a01-17002f608393.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e1f11187-689c-47e9-9a01-17002f608393.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e1f11187-689c-47e9-9a01-17002f608393 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-e1f11187-689c-47e9-9a01-17002f608393 img.shogun-image,
  #s-e1f11187-689c-47e9-9a01-17002f608393 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e1f11187-689c-47e9-9a01-17002f608393 {
    width: 100%;
    height: auto;
  }

  #s-e1f11187-689c-47e9-9a01-17002f608393 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e1f11187-689c-47e9-9a01-17002f608393.shogun-image {
    
    
  }


.s-e1f11187-689c-47e9-9a01-17002f608393 .shogun-image-content {
  
    align-items: center;
  
}

.s-e1f11187-689c-47e9-9a01-17002f608393.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e1f11187-689c-47e9-9a01-17002f608393.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e1f11187-689c-47e9-9a01-17002f608393.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e1f11187-689c-47e9-9a01-17002f608393 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-e1f11187-689c-47e9-9a01-17002f608393.shogun-image-container {
      position: relative;
    }

    .s-e1f11187-689c-47e9-9a01-17002f608393.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e1f11187-689c-47e9-9a01-17002f608393.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e1f11187-689c-47e9-9a01-17002f608393 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-e1f11187-689c-47e9-9a01-17002f608393 img.shogun-image,
  #s-e1f11187-689c-47e9-9a01-17002f608393 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e1f11187-689c-47e9-9a01-17002f608393 {
    width: 100%;
    height: auto;
  }

  #s-e1f11187-689c-47e9-9a01-17002f608393 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e1f11187-689c-47e9-9a01-17002f608393.shogun-image {
    
    
  }


.s-e1f11187-689c-47e9-9a01-17002f608393 .shogun-image-content {
  
    align-items: center;
  
}

.s-e1f11187-689c-47e9-9a01-17002f608393.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e1f11187-689c-47e9-9a01-17002f608393.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e1f11187-689c-47e9-9a01-17002f608393.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e1f11187-689c-47e9-9a01-17002f608393 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-e1f11187-689c-47e9-9a01-17002f608393.shogun-image-container {
      position: relative;
    }

    .s-e1f11187-689c-47e9-9a01-17002f608393.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e1f11187-689c-47e9-9a01-17002f608393.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e1f11187-689c-47e9-9a01-17002f608393 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-e1f11187-689c-47e9-9a01-17002f608393 img.shogun-image,
  #s-e1f11187-689c-47e9-9a01-17002f608393 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e1f11187-689c-47e9-9a01-17002f608393 {
    width: 100%;
    height: auto;
  }

  #s-e1f11187-689c-47e9-9a01-17002f608393 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e1f11187-689c-47e9-9a01-17002f608393.shogun-image {
    
    
  }


.s-e1f11187-689c-47e9-9a01-17002f608393 .shogun-image-content {
  
    align-items: center;
  
}

.s-e1f11187-689c-47e9-9a01-17002f608393.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e1f11187-689c-47e9-9a01-17002f608393.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e1f11187-689c-47e9-9a01-17002f608393.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e1f11187-689c-47e9-9a01-17002f608393 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-e1f11187-689c-47e9-9a01-17002f608393.shogun-image-container {
      position: relative;
    }

    .s-e1f11187-689c-47e9-9a01-17002f608393.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e1f11187-689c-47e9-9a01-17002f608393.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e1f11187-689c-47e9-9a01-17002f608393 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-e1f11187-689c-47e9-9a01-17002f608393 img.shogun-image,
  #s-e1f11187-689c-47e9-9a01-17002f608393 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e1f11187-689c-47e9-9a01-17002f608393 {
    width: 100%;
    height: auto;
  }

  #s-e1f11187-689c-47e9-9a01-17002f608393 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e1f11187-689c-47e9-9a01-17002f608393.shogun-image {
    
    
  }


.s-e1f11187-689c-47e9-9a01-17002f608393 .shogun-image-content {
  
    align-items: center;
  
}

.s-e1f11187-689c-47e9-9a01-17002f608393.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e1f11187-689c-47e9-9a01-17002f608393.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e1f11187-689c-47e9-9a01-17002f608393.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e1f11187-689c-47e9-9a01-17002f608393 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-e1f11187-689c-47e9-9a01-17002f608393.shogun-image-container {
      position: relative;
    }

    .s-e1f11187-689c-47e9-9a01-17002f608393.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e1f11187-689c-47e9-9a01-17002f608393.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e1f11187-689c-47e9-9a01-17002f608393 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-7aff9477-a658-46eb-adff-759d41c5eb9f {
  margin-top: -1%;
}

#s-7aff9477-a658-46eb-adff-759d41c5eb9f .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(5, calc(100vw / 24));
}

#s-ff8291af-9b33-456e-a300-71d1b90044d5 {
  margin-left: 0%;
margin-right: 20%;
text-align: center;
}

#s-ff8291af-9b33-456e-a300-71d1b90044d5-root {
  grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 2;
grid-row-end: 6;
z-index: 0;
}







  img.s-ff8291af-9b33-456e-a300-71d1b90044d5.shogun-image {
    
    
  }


.s-ff8291af-9b33-456e-a300-71d1b90044d5 .shogun-image-content {
  
    align-items: center;
  
}

.s-ff8291af-9b33-456e-a300-71d1b90044d5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff8291af-9b33-456e-a300-71d1b90044d5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff8291af-9b33-456e-a300-71d1b90044d5.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-ff8291af-9b33-456e-a300-71d1b90044d5.shogun-image {
    
    
  }


.s-ff8291af-9b33-456e-a300-71d1b90044d5 .shogun-image-content {
  
    align-items: center;
  
}

.s-ff8291af-9b33-456e-a300-71d1b90044d5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff8291af-9b33-456e-a300-71d1b90044d5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff8291af-9b33-456e-a300-71d1b90044d5.shogun-image {
  box-sizing: border-box;
}



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





  img.s-ff8291af-9b33-456e-a300-71d1b90044d5.shogun-image {
    
    
  }


.s-ff8291af-9b33-456e-a300-71d1b90044d5 .shogun-image-content {
  
    align-items: center;
  
}

.s-ff8291af-9b33-456e-a300-71d1b90044d5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff8291af-9b33-456e-a300-71d1b90044d5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff8291af-9b33-456e-a300-71d1b90044d5.shogun-image {
  box-sizing: border-box;
}



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





  img.s-ff8291af-9b33-456e-a300-71d1b90044d5.shogun-image {
    
    
  }


.s-ff8291af-9b33-456e-a300-71d1b90044d5 .shogun-image-content {
  
    align-items: center;
  
}

.s-ff8291af-9b33-456e-a300-71d1b90044d5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff8291af-9b33-456e-a300-71d1b90044d5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff8291af-9b33-456e-a300-71d1b90044d5.shogun-image {
  box-sizing: border-box;
}



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





  img.s-ff8291af-9b33-456e-a300-71d1b90044d5.shogun-image {
    
    
  }


.s-ff8291af-9b33-456e-a300-71d1b90044d5 .shogun-image-content {
  
    align-items: center;
  
}

.s-ff8291af-9b33-456e-a300-71d1b90044d5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff8291af-9b33-456e-a300-71d1b90044d5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff8291af-9b33-456e-a300-71d1b90044d5.shogun-image {
  box-sizing: border-box;
}



}
#s-e9bb0e9c-68f4-4285-ae09-97b4c649795a {
  margin-top: 1%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e9bb0e9c-68f4-4285-ae09-97b4c649795a {
  grid-column-start: 6;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 6;
z-index: 1;
}

#s-e9bb0e9c-68f4-4285-ae09-97b4c649795a .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-c048f620-2500-453a-a53e-7489582bdf53 {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-b08b9589-6c50-4224-91d0-1e6d5bc0afcd {
  text-align: left;
}

#s-f97243ed-6acc-4ef5-b88a-b07a8dc203cc {
  margin-top: 13%;
}

#s-f97243ed-6acc-4ef5-b88a-b07a8dc203cc .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(14, calc(100vw / 24));
}

#s-04dfc944-ca4f-4e26-b5fe-84a768473534 {
  aspect-ratio: 11/11;
text-align: center;
}

#s-04dfc944-ca4f-4e26-b5fe-84a768473534-root {
  grid-column-start: 1;
grid-column-end: 12;
grid-row-start: 3;
grid-row-end: 14;
z-index: 0;
}





  #s-04dfc944-ca4f-4e26-b5fe-84a768473534 img.shogun-image,
  #s-04dfc944-ca4f-4e26-b5fe-84a768473534 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-04dfc944-ca4f-4e26-b5fe-84a768473534 {
    width: 100%;
    height: auto;
  }

  #s-04dfc944-ca4f-4e26-b5fe-84a768473534 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-04dfc944-ca4f-4e26-b5fe-84a768473534.shogun-image {
    
    
  }


.s-04dfc944-ca4f-4e26-b5fe-84a768473534 .shogun-image-content {
  
    align-items: center;
  
}

.s-04dfc944-ca4f-4e26-b5fe-84a768473534.shg-align-container {
  display: flex;
  justify-content: center
}

.s-04dfc944-ca4f-4e26-b5fe-84a768473534.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-04dfc944-ca4f-4e26-b5fe-84a768473534.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-04dfc944-ca4f-4e26-b5fe-84a768473534 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-04dfc944-ca4f-4e26-b5fe-84a768473534.shogun-image-container {
      position: relative;
    }

    .s-04dfc944-ca4f-4e26-b5fe-84a768473534.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-04dfc944-ca4f-4e26-b5fe-84a768473534.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-04dfc944-ca4f-4e26-b5fe-84a768473534 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-04dfc944-ca4f-4e26-b5fe-84a768473534 img.shogun-image,
  #s-04dfc944-ca4f-4e26-b5fe-84a768473534 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-04dfc944-ca4f-4e26-b5fe-84a768473534 {
    width: 100%;
    height: auto;
  }

  #s-04dfc944-ca4f-4e26-b5fe-84a768473534 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-04dfc944-ca4f-4e26-b5fe-84a768473534.shogun-image {
    
    
  }


.s-04dfc944-ca4f-4e26-b5fe-84a768473534 .shogun-image-content {
  
    align-items: center;
  
}

.s-04dfc944-ca4f-4e26-b5fe-84a768473534.shg-align-container {
  display: flex;
  justify-content: center
}

.s-04dfc944-ca4f-4e26-b5fe-84a768473534.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-04dfc944-ca4f-4e26-b5fe-84a768473534.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-04dfc944-ca4f-4e26-b5fe-84a768473534 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-04dfc944-ca4f-4e26-b5fe-84a768473534.shogun-image-container {
      position: relative;
    }

    .s-04dfc944-ca4f-4e26-b5fe-84a768473534.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-04dfc944-ca4f-4e26-b5fe-84a768473534.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-04dfc944-ca4f-4e26-b5fe-84a768473534 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-04dfc944-ca4f-4e26-b5fe-84a768473534 img.shogun-image,
  #s-04dfc944-ca4f-4e26-b5fe-84a768473534 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-04dfc944-ca4f-4e26-b5fe-84a768473534 {
    width: 100%;
    height: auto;
  }

  #s-04dfc944-ca4f-4e26-b5fe-84a768473534 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-04dfc944-ca4f-4e26-b5fe-84a768473534.shogun-image {
    
    
  }


.s-04dfc944-ca4f-4e26-b5fe-84a768473534 .shogun-image-content {
  
    align-items: center;
  
}

.s-04dfc944-ca4f-4e26-b5fe-84a768473534.shg-align-container {
  display: flex;
  justify-content: center
}

.s-04dfc944-ca4f-4e26-b5fe-84a768473534.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-04dfc944-ca4f-4e26-b5fe-84a768473534.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-04dfc944-ca4f-4e26-b5fe-84a768473534 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-04dfc944-ca4f-4e26-b5fe-84a768473534.shogun-image-container {
      position: relative;
    }

    .s-04dfc944-ca4f-4e26-b5fe-84a768473534.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-04dfc944-ca4f-4e26-b5fe-84a768473534.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-04dfc944-ca4f-4e26-b5fe-84a768473534 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-04dfc944-ca4f-4e26-b5fe-84a768473534 img.shogun-image,
  #s-04dfc944-ca4f-4e26-b5fe-84a768473534 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-04dfc944-ca4f-4e26-b5fe-84a768473534 {
    width: 100%;
    height: auto;
  }

  #s-04dfc944-ca4f-4e26-b5fe-84a768473534 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-04dfc944-ca4f-4e26-b5fe-84a768473534.shogun-image {
    
    
  }


.s-04dfc944-ca4f-4e26-b5fe-84a768473534 .shogun-image-content {
  
    align-items: center;
  
}

.s-04dfc944-ca4f-4e26-b5fe-84a768473534.shg-align-container {
  display: flex;
  justify-content: center
}

.s-04dfc944-ca4f-4e26-b5fe-84a768473534.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-04dfc944-ca4f-4e26-b5fe-84a768473534.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-04dfc944-ca4f-4e26-b5fe-84a768473534 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-04dfc944-ca4f-4e26-b5fe-84a768473534.shogun-image-container {
      position: relative;
    }

    .s-04dfc944-ca4f-4e26-b5fe-84a768473534.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-04dfc944-ca4f-4e26-b5fe-84a768473534.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-04dfc944-ca4f-4e26-b5fe-84a768473534 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-04dfc944-ca4f-4e26-b5fe-84a768473534 img.shogun-image,
  #s-04dfc944-ca4f-4e26-b5fe-84a768473534 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-04dfc944-ca4f-4e26-b5fe-84a768473534 {
    width: 100%;
    height: auto;
  }

  #s-04dfc944-ca4f-4e26-b5fe-84a768473534 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-04dfc944-ca4f-4e26-b5fe-84a768473534.shogun-image {
    
    
  }


.s-04dfc944-ca4f-4e26-b5fe-84a768473534 .shogun-image-content {
  
    align-items: center;
  
}

.s-04dfc944-ca4f-4e26-b5fe-84a768473534.shg-align-container {
  display: flex;
  justify-content: center
}

.s-04dfc944-ca4f-4e26-b5fe-84a768473534.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-04dfc944-ca4f-4e26-b5fe-84a768473534.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-04dfc944-ca4f-4e26-b5fe-84a768473534 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-04dfc944-ca4f-4e26-b5fe-84a768473534.shogun-image-container {
      position: relative;
    }

    .s-04dfc944-ca4f-4e26-b5fe-84a768473534.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-04dfc944-ca4f-4e26-b5fe-84a768473534.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-04dfc944-ca4f-4e26-b5fe-84a768473534 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-11f87540-aa8f-4f49-b0a5-9ede86ef522f {
  aspect-ratio: 14/14;
text-align: center;
}

#s-11f87540-aa8f-4f49-b0a5-9ede86ef522f-root {
  grid-column-start: 11;
grid-column-end: 25;
grid-row-start: 1;
grid-row-end: 15;
z-index: 1;
}





  #s-11f87540-aa8f-4f49-b0a5-9ede86ef522f img.shogun-image,
  #s-11f87540-aa8f-4f49-b0a5-9ede86ef522f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-11f87540-aa8f-4f49-b0a5-9ede86ef522f {
    width: 100%;
    height: auto;
  }

  #s-11f87540-aa8f-4f49-b0a5-9ede86ef522f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-11f87540-aa8f-4f49-b0a5-9ede86ef522f.shogun-image {
    
    
  }


.s-11f87540-aa8f-4f49-b0a5-9ede86ef522f .shogun-image-content {
  
    align-items: center;
  
}

.s-11f87540-aa8f-4f49-b0a5-9ede86ef522f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-11f87540-aa8f-4f49-b0a5-9ede86ef522f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-11f87540-aa8f-4f49-b0a5-9ede86ef522f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-11f87540-aa8f-4f49-b0a5-9ede86ef522f {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-11f87540-aa8f-4f49-b0a5-9ede86ef522f.shogun-image-container {
      position: relative;
    }

    .s-11f87540-aa8f-4f49-b0a5-9ede86ef522f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-11f87540-aa8f-4f49-b0a5-9ede86ef522f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-11f87540-aa8f-4f49-b0a5-9ede86ef522f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-11f87540-aa8f-4f49-b0a5-9ede86ef522f img.shogun-image,
  #s-11f87540-aa8f-4f49-b0a5-9ede86ef522f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-11f87540-aa8f-4f49-b0a5-9ede86ef522f {
    width: 100%;
    height: auto;
  }

  #s-11f87540-aa8f-4f49-b0a5-9ede86ef522f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-11f87540-aa8f-4f49-b0a5-9ede86ef522f.shogun-image {
    
    
  }


.s-11f87540-aa8f-4f49-b0a5-9ede86ef522f .shogun-image-content {
  
    align-items: center;
  
}

.s-11f87540-aa8f-4f49-b0a5-9ede86ef522f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-11f87540-aa8f-4f49-b0a5-9ede86ef522f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-11f87540-aa8f-4f49-b0a5-9ede86ef522f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-11f87540-aa8f-4f49-b0a5-9ede86ef522f {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-11f87540-aa8f-4f49-b0a5-9ede86ef522f.shogun-image-container {
      position: relative;
    }

    .s-11f87540-aa8f-4f49-b0a5-9ede86ef522f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-11f87540-aa8f-4f49-b0a5-9ede86ef522f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-11f87540-aa8f-4f49-b0a5-9ede86ef522f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-11f87540-aa8f-4f49-b0a5-9ede86ef522f img.shogun-image,
  #s-11f87540-aa8f-4f49-b0a5-9ede86ef522f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-11f87540-aa8f-4f49-b0a5-9ede86ef522f {
    width: 100%;
    height: auto;
  }

  #s-11f87540-aa8f-4f49-b0a5-9ede86ef522f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-11f87540-aa8f-4f49-b0a5-9ede86ef522f.shogun-image {
    
    
  }


.s-11f87540-aa8f-4f49-b0a5-9ede86ef522f .shogun-image-content {
  
    align-items: center;
  
}

.s-11f87540-aa8f-4f49-b0a5-9ede86ef522f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-11f87540-aa8f-4f49-b0a5-9ede86ef522f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-11f87540-aa8f-4f49-b0a5-9ede86ef522f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-11f87540-aa8f-4f49-b0a5-9ede86ef522f {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-11f87540-aa8f-4f49-b0a5-9ede86ef522f.shogun-image-container {
      position: relative;
    }

    .s-11f87540-aa8f-4f49-b0a5-9ede86ef522f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-11f87540-aa8f-4f49-b0a5-9ede86ef522f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-11f87540-aa8f-4f49-b0a5-9ede86ef522f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-11f87540-aa8f-4f49-b0a5-9ede86ef522f img.shogun-image,
  #s-11f87540-aa8f-4f49-b0a5-9ede86ef522f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-11f87540-aa8f-4f49-b0a5-9ede86ef522f {
    width: 100%;
    height: auto;
  }

  #s-11f87540-aa8f-4f49-b0a5-9ede86ef522f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-11f87540-aa8f-4f49-b0a5-9ede86ef522f.shogun-image {
    
    
  }


.s-11f87540-aa8f-4f49-b0a5-9ede86ef522f .shogun-image-content {
  
    align-items: center;
  
}

.s-11f87540-aa8f-4f49-b0a5-9ede86ef522f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-11f87540-aa8f-4f49-b0a5-9ede86ef522f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-11f87540-aa8f-4f49-b0a5-9ede86ef522f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-11f87540-aa8f-4f49-b0a5-9ede86ef522f {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-11f87540-aa8f-4f49-b0a5-9ede86ef522f.shogun-image-container {
      position: relative;
    }

    .s-11f87540-aa8f-4f49-b0a5-9ede86ef522f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-11f87540-aa8f-4f49-b0a5-9ede86ef522f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-11f87540-aa8f-4f49-b0a5-9ede86ef522f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-11f87540-aa8f-4f49-b0a5-9ede86ef522f img.shogun-image,
  #s-11f87540-aa8f-4f49-b0a5-9ede86ef522f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-11f87540-aa8f-4f49-b0a5-9ede86ef522f {
    width: 100%;
    height: auto;
  }

  #s-11f87540-aa8f-4f49-b0a5-9ede86ef522f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-11f87540-aa8f-4f49-b0a5-9ede86ef522f.shogun-image {
    
    
  }


.s-11f87540-aa8f-4f49-b0a5-9ede86ef522f .shogun-image-content {
  
    align-items: center;
  
}

.s-11f87540-aa8f-4f49-b0a5-9ede86ef522f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-11f87540-aa8f-4f49-b0a5-9ede86ef522f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-11f87540-aa8f-4f49-b0a5-9ede86ef522f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-11f87540-aa8f-4f49-b0a5-9ede86ef522f {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-11f87540-aa8f-4f49-b0a5-9ede86ef522f.shogun-image-container {
      position: relative;
    }

    .s-11f87540-aa8f-4f49-b0a5-9ede86ef522f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-11f87540-aa8f-4f49-b0a5-9ede86ef522f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-11f87540-aa8f-4f49-b0a5-9ede86ef522f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-72ce5250-a531-4658-b150-baa547f642ae {
  margin-top: -1%;
}

#s-72ce5250-a531-4658-b150-baa547f642ae .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(5, calc(100vw / 24));
}

#s-547070cd-a71c-4e29-b3a3-128ccb9a99e7 {
  margin-left: 0%;
margin-right: 20%;
text-align: center;
}

#s-547070cd-a71c-4e29-b3a3-128ccb9a99e7-root {
  grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 2;
grid-row-end: 6;
z-index: 0;
}







  img.s-547070cd-a71c-4e29-b3a3-128ccb9a99e7.shogun-image {
    
    
  }


.s-547070cd-a71c-4e29-b3a3-128ccb9a99e7 .shogun-image-content {
  
    align-items: center;
  
}

.s-547070cd-a71c-4e29-b3a3-128ccb9a99e7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-547070cd-a71c-4e29-b3a3-128ccb9a99e7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-547070cd-a71c-4e29-b3a3-128ccb9a99e7.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-547070cd-a71c-4e29-b3a3-128ccb9a99e7.shogun-image {
    
    
  }


.s-547070cd-a71c-4e29-b3a3-128ccb9a99e7 .shogun-image-content {
  
    align-items: center;
  
}

.s-547070cd-a71c-4e29-b3a3-128ccb9a99e7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-547070cd-a71c-4e29-b3a3-128ccb9a99e7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-547070cd-a71c-4e29-b3a3-128ccb9a99e7.shogun-image {
  box-sizing: border-box;
}



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





  img.s-547070cd-a71c-4e29-b3a3-128ccb9a99e7.shogun-image {
    
    
  }


.s-547070cd-a71c-4e29-b3a3-128ccb9a99e7 .shogun-image-content {
  
    align-items: center;
  
}

.s-547070cd-a71c-4e29-b3a3-128ccb9a99e7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-547070cd-a71c-4e29-b3a3-128ccb9a99e7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-547070cd-a71c-4e29-b3a3-128ccb9a99e7.shogun-image {
  box-sizing: border-box;
}



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





  img.s-547070cd-a71c-4e29-b3a3-128ccb9a99e7.shogun-image {
    
    
  }


.s-547070cd-a71c-4e29-b3a3-128ccb9a99e7 .shogun-image-content {
  
    align-items: center;
  
}

.s-547070cd-a71c-4e29-b3a3-128ccb9a99e7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-547070cd-a71c-4e29-b3a3-128ccb9a99e7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-547070cd-a71c-4e29-b3a3-128ccb9a99e7.shogun-image {
  box-sizing: border-box;
}



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





  img.s-547070cd-a71c-4e29-b3a3-128ccb9a99e7.shogun-image {
    
    
  }


.s-547070cd-a71c-4e29-b3a3-128ccb9a99e7 .shogun-image-content {
  
    align-items: center;
  
}

.s-547070cd-a71c-4e29-b3a3-128ccb9a99e7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-547070cd-a71c-4e29-b3a3-128ccb9a99e7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-547070cd-a71c-4e29-b3a3-128ccb9a99e7.shogun-image {
  box-sizing: border-box;
}



}
#s-b27caaa5-c02a-4108-8338-bcf288bdaae4 {
  margin-top: 1%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b27caaa5-c02a-4108-8338-bcf288bdaae4 {
  grid-column-start: 6;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 6;
z-index: 1;
}

#s-b27caaa5-c02a-4108-8338-bcf288bdaae4 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-fd66681a-285c-493f-8d9d-99c407f0b2da {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-92317060-1a1c-4712-9313-40a0117b4fe9 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
max-width: 1269px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-92317060-1a1c-4712-9313-40a0117b4fe9 img.shogun-image,
  #s-92317060-1a1c-4712-9313-40a0117b4fe9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-92317060-1a1c-4712-9313-40a0117b4fe9 {
    width: 100%;
    height: auto;
  }

  #s-92317060-1a1c-4712-9313-40a0117b4fe9 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-92317060-1a1c-4712-9313-40a0117b4fe9.shogun-image {
    
    
  }


.s-92317060-1a1c-4712-9313-40a0117b4fe9 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-92317060-1a1c-4712-9313-40a0117b4fe9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-92317060-1a1c-4712-9313-40a0117b4fe9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-92317060-1a1c-4712-9313-40a0117b4fe9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-92317060-1a1c-4712-9313-40a0117b4fe9 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-92317060-1a1c-4712-9313-40a0117b4fe9.shogun-image-container {
      position: relative;
    }

    .s-92317060-1a1c-4712-9313-40a0117b4fe9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-92317060-1a1c-4712-9313-40a0117b4fe9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-92317060-1a1c-4712-9313-40a0117b4fe9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-92317060-1a1c-4712-9313-40a0117b4fe9 img.shogun-image,
  #s-92317060-1a1c-4712-9313-40a0117b4fe9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-92317060-1a1c-4712-9313-40a0117b4fe9 {
    width: 100%;
    height: auto;
  }

  #s-92317060-1a1c-4712-9313-40a0117b4fe9 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-92317060-1a1c-4712-9313-40a0117b4fe9.shogun-image {
    
    
  }


.s-92317060-1a1c-4712-9313-40a0117b4fe9 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-92317060-1a1c-4712-9313-40a0117b4fe9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-92317060-1a1c-4712-9313-40a0117b4fe9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-92317060-1a1c-4712-9313-40a0117b4fe9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-92317060-1a1c-4712-9313-40a0117b4fe9 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-92317060-1a1c-4712-9313-40a0117b4fe9.shogun-image-container {
      position: relative;
    }

    .s-92317060-1a1c-4712-9313-40a0117b4fe9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-92317060-1a1c-4712-9313-40a0117b4fe9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-92317060-1a1c-4712-9313-40a0117b4fe9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-92317060-1a1c-4712-9313-40a0117b4fe9 img.shogun-image,
  #s-92317060-1a1c-4712-9313-40a0117b4fe9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-92317060-1a1c-4712-9313-40a0117b4fe9 {
    width: 100%;
    height: auto;
  }

  #s-92317060-1a1c-4712-9313-40a0117b4fe9 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-92317060-1a1c-4712-9313-40a0117b4fe9.shogun-image {
    
    
  }


.s-92317060-1a1c-4712-9313-40a0117b4fe9 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-92317060-1a1c-4712-9313-40a0117b4fe9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-92317060-1a1c-4712-9313-40a0117b4fe9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-92317060-1a1c-4712-9313-40a0117b4fe9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-92317060-1a1c-4712-9313-40a0117b4fe9 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-92317060-1a1c-4712-9313-40a0117b4fe9.shogun-image-container {
      position: relative;
    }

    .s-92317060-1a1c-4712-9313-40a0117b4fe9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-92317060-1a1c-4712-9313-40a0117b4fe9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-92317060-1a1c-4712-9313-40a0117b4fe9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-92317060-1a1c-4712-9313-40a0117b4fe9 img.shogun-image,
  #s-92317060-1a1c-4712-9313-40a0117b4fe9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-92317060-1a1c-4712-9313-40a0117b4fe9 {
    width: 100%;
    height: auto;
  }

  #s-92317060-1a1c-4712-9313-40a0117b4fe9 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-92317060-1a1c-4712-9313-40a0117b4fe9.shogun-image {
    
    
  }


.s-92317060-1a1c-4712-9313-40a0117b4fe9 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-92317060-1a1c-4712-9313-40a0117b4fe9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-92317060-1a1c-4712-9313-40a0117b4fe9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-92317060-1a1c-4712-9313-40a0117b4fe9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-92317060-1a1c-4712-9313-40a0117b4fe9 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-92317060-1a1c-4712-9313-40a0117b4fe9.shogun-image-container {
      position: relative;
    }

    .s-92317060-1a1c-4712-9313-40a0117b4fe9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-92317060-1a1c-4712-9313-40a0117b4fe9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-92317060-1a1c-4712-9313-40a0117b4fe9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-92317060-1a1c-4712-9313-40a0117b4fe9 img.shogun-image,
  #s-92317060-1a1c-4712-9313-40a0117b4fe9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-92317060-1a1c-4712-9313-40a0117b4fe9 {
    width: 100%;
    height: auto;
  }

  #s-92317060-1a1c-4712-9313-40a0117b4fe9 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-92317060-1a1c-4712-9313-40a0117b4fe9.shogun-image {
    
    
  }


.s-92317060-1a1c-4712-9313-40a0117b4fe9 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-92317060-1a1c-4712-9313-40a0117b4fe9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-92317060-1a1c-4712-9313-40a0117b4fe9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-92317060-1a1c-4712-9313-40a0117b4fe9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-92317060-1a1c-4712-9313-40a0117b4fe9 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-92317060-1a1c-4712-9313-40a0117b4fe9.shogun-image-container {
      position: relative;
    }

    .s-92317060-1a1c-4712-9313-40a0117b4fe9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-92317060-1a1c-4712-9313-40a0117b4fe9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-92317060-1a1c-4712-9313-40a0117b4fe9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-b0a4544e-418c-4c7d-9d5e-6e9d53f8df88 {
  margin-top: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b0a4544e-418c-4c7d-9d5e-6e9d53f8df88 .shogun-heading-component h5 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-337c7949-d5c7-44d7-85a8-1fdc7109b277 {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-337c7949-d5c7-44d7-85a8-1fdc7109b277 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-337c7949-d5c7-44d7-85a8-1fdc7109b277.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-65690e40-17c5-49e8-bf7a-10542acdd7eb {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: rgba(29, 29, 29, 0);
border-radius: 3px;
max-width: 100%;
background-color: rgba(29, 29, 29, 0.9);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-65690e40-17c5-49e8-bf7a-10542acdd7eb:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 0) !important;
background-color: rgba(74, 74, 74, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-65690e40-17c5-49e8-bf7a-10542acdd7eb:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(155, 155, 155, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-65690e40-17c5-49e8-bf7a-10542acdd7eb-root {
    text-align: center;
  }


#s-65690e40-17c5-49e8-bf7a-10542acdd7eb.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-65690e40-17c5-49e8-bf7a-10542acdd7eb-root {
    text-align: center;
  }


#s-65690e40-17c5-49e8-bf7a-10542acdd7eb.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-65690e40-17c5-49e8-bf7a-10542acdd7eb-root {
    text-align: center;
  }


#s-65690e40-17c5-49e8-bf7a-10542acdd7eb.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-65690e40-17c5-49e8-bf7a-10542acdd7eb-root {
    text-align: center;
  }


#s-65690e40-17c5-49e8-bf7a-10542acdd7eb.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-65690e40-17c5-49e8-bf7a-10542acdd7eb-root {
    text-align: center;
  }


#s-65690e40-17c5-49e8-bf7a-10542acdd7eb.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-65690e40-17c5-49e8-bf7a-10542acdd7eb-root {
    text-align: center;
  }


#s-65690e40-17c5-49e8-bf7a-10542acdd7eb.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-ff2ab07f-060a-49ed-99a9-49af1ea1004f {
  margin-top: 13%;
}

#s-ff2ab07f-060a-49ed-99a9-49af1ea1004f .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(15, calc(100vw / 24));
}

#s-e5addd0b-cf3a-4159-8243-69ee4fef288c {
  aspect-ratio: 11/11;
text-align: center;
}

#s-e5addd0b-cf3a-4159-8243-69ee4fef288c-root {
  grid-column-start: 1;
grid-column-end: 12;
grid-row-start: 1;
grid-row-end: 12;
z-index: 0;
}





  #s-e5addd0b-cf3a-4159-8243-69ee4fef288c img.shogun-image,
  #s-e5addd0b-cf3a-4159-8243-69ee4fef288c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e5addd0b-cf3a-4159-8243-69ee4fef288c {
    width: 100%;
    height: auto;
  }

  #s-e5addd0b-cf3a-4159-8243-69ee4fef288c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e5addd0b-cf3a-4159-8243-69ee4fef288c.shogun-image {
    
    
  }


.s-e5addd0b-cf3a-4159-8243-69ee4fef288c .shogun-image-content {
  
    align-items: center;
  
}

.s-e5addd0b-cf3a-4159-8243-69ee4fef288c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e5addd0b-cf3a-4159-8243-69ee4fef288c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e5addd0b-cf3a-4159-8243-69ee4fef288c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e5addd0b-cf3a-4159-8243-69ee4fef288c {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-e5addd0b-cf3a-4159-8243-69ee4fef288c.shogun-image-container {
      position: relative;
    }

    .s-e5addd0b-cf3a-4159-8243-69ee4fef288c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e5addd0b-cf3a-4159-8243-69ee4fef288c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e5addd0b-cf3a-4159-8243-69ee4fef288c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-e5addd0b-cf3a-4159-8243-69ee4fef288c img.shogun-image,
  #s-e5addd0b-cf3a-4159-8243-69ee4fef288c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e5addd0b-cf3a-4159-8243-69ee4fef288c {
    width: 100%;
    height: auto;
  }

  #s-e5addd0b-cf3a-4159-8243-69ee4fef288c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e5addd0b-cf3a-4159-8243-69ee4fef288c.shogun-image {
    
    
  }


.s-e5addd0b-cf3a-4159-8243-69ee4fef288c .shogun-image-content {
  
    align-items: center;
  
}

.s-e5addd0b-cf3a-4159-8243-69ee4fef288c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e5addd0b-cf3a-4159-8243-69ee4fef288c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e5addd0b-cf3a-4159-8243-69ee4fef288c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e5addd0b-cf3a-4159-8243-69ee4fef288c {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-e5addd0b-cf3a-4159-8243-69ee4fef288c.shogun-image-container {
      position: relative;
    }

    .s-e5addd0b-cf3a-4159-8243-69ee4fef288c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e5addd0b-cf3a-4159-8243-69ee4fef288c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e5addd0b-cf3a-4159-8243-69ee4fef288c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-e5addd0b-cf3a-4159-8243-69ee4fef288c img.shogun-image,
  #s-e5addd0b-cf3a-4159-8243-69ee4fef288c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e5addd0b-cf3a-4159-8243-69ee4fef288c {
    width: 100%;
    height: auto;
  }

  #s-e5addd0b-cf3a-4159-8243-69ee4fef288c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e5addd0b-cf3a-4159-8243-69ee4fef288c.shogun-image {
    
    
  }


.s-e5addd0b-cf3a-4159-8243-69ee4fef288c .shogun-image-content {
  
    align-items: center;
  
}

.s-e5addd0b-cf3a-4159-8243-69ee4fef288c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e5addd0b-cf3a-4159-8243-69ee4fef288c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e5addd0b-cf3a-4159-8243-69ee4fef288c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e5addd0b-cf3a-4159-8243-69ee4fef288c {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-e5addd0b-cf3a-4159-8243-69ee4fef288c.shogun-image-container {
      position: relative;
    }

    .s-e5addd0b-cf3a-4159-8243-69ee4fef288c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e5addd0b-cf3a-4159-8243-69ee4fef288c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e5addd0b-cf3a-4159-8243-69ee4fef288c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-e5addd0b-cf3a-4159-8243-69ee4fef288c img.shogun-image,
  #s-e5addd0b-cf3a-4159-8243-69ee4fef288c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e5addd0b-cf3a-4159-8243-69ee4fef288c {
    width: 100%;
    height: auto;
  }

  #s-e5addd0b-cf3a-4159-8243-69ee4fef288c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e5addd0b-cf3a-4159-8243-69ee4fef288c.shogun-image {
    
    
  }


.s-e5addd0b-cf3a-4159-8243-69ee4fef288c .shogun-image-content {
  
    align-items: center;
  
}

.s-e5addd0b-cf3a-4159-8243-69ee4fef288c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e5addd0b-cf3a-4159-8243-69ee4fef288c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e5addd0b-cf3a-4159-8243-69ee4fef288c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e5addd0b-cf3a-4159-8243-69ee4fef288c {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-e5addd0b-cf3a-4159-8243-69ee4fef288c.shogun-image-container {
      position: relative;
    }

    .s-e5addd0b-cf3a-4159-8243-69ee4fef288c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e5addd0b-cf3a-4159-8243-69ee4fef288c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e5addd0b-cf3a-4159-8243-69ee4fef288c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-e5addd0b-cf3a-4159-8243-69ee4fef288c img.shogun-image,
  #s-e5addd0b-cf3a-4159-8243-69ee4fef288c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e5addd0b-cf3a-4159-8243-69ee4fef288c {
    width: 100%;
    height: auto;
  }

  #s-e5addd0b-cf3a-4159-8243-69ee4fef288c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e5addd0b-cf3a-4159-8243-69ee4fef288c.shogun-image {
    
    
  }


.s-e5addd0b-cf3a-4159-8243-69ee4fef288c .shogun-image-content {
  
    align-items: center;
  
}

.s-e5addd0b-cf3a-4159-8243-69ee4fef288c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e5addd0b-cf3a-4159-8243-69ee4fef288c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e5addd0b-cf3a-4159-8243-69ee4fef288c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e5addd0b-cf3a-4159-8243-69ee4fef288c {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-e5addd0b-cf3a-4159-8243-69ee4fef288c.shogun-image-container {
      position: relative;
    }

    .s-e5addd0b-cf3a-4159-8243-69ee4fef288c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e5addd0b-cf3a-4159-8243-69ee4fef288c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e5addd0b-cf3a-4159-8243-69ee4fef288c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-db7e032d-32da-48ba-a3d0-b34e69db43d9 {
  aspect-ratio: 14/14;
text-align: center;
}

#s-db7e032d-32da-48ba-a3d0-b34e69db43d9-root {
  grid-column-start: 11;
grid-column-end: 25;
grid-row-start: 2;
grid-row-end: 16;
z-index: 1;
}





  #s-db7e032d-32da-48ba-a3d0-b34e69db43d9 img.shogun-image,
  #s-db7e032d-32da-48ba-a3d0-b34e69db43d9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-db7e032d-32da-48ba-a3d0-b34e69db43d9 {
    width: 100%;
    height: auto;
  }

  #s-db7e032d-32da-48ba-a3d0-b34e69db43d9 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-db7e032d-32da-48ba-a3d0-b34e69db43d9.shogun-image {
    
    
  }


.s-db7e032d-32da-48ba-a3d0-b34e69db43d9 .shogun-image-content {
  
    align-items: center;
  
}

.s-db7e032d-32da-48ba-a3d0-b34e69db43d9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-db7e032d-32da-48ba-a3d0-b34e69db43d9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-db7e032d-32da-48ba-a3d0-b34e69db43d9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-db7e032d-32da-48ba-a3d0-b34e69db43d9 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-db7e032d-32da-48ba-a3d0-b34e69db43d9.shogun-image-container {
      position: relative;
    }

    .s-db7e032d-32da-48ba-a3d0-b34e69db43d9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-db7e032d-32da-48ba-a3d0-b34e69db43d9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-db7e032d-32da-48ba-a3d0-b34e69db43d9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-db7e032d-32da-48ba-a3d0-b34e69db43d9 img.shogun-image,
  #s-db7e032d-32da-48ba-a3d0-b34e69db43d9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-db7e032d-32da-48ba-a3d0-b34e69db43d9 {
    width: 100%;
    height: auto;
  }

  #s-db7e032d-32da-48ba-a3d0-b34e69db43d9 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-db7e032d-32da-48ba-a3d0-b34e69db43d9.shogun-image {
    
    
  }


.s-db7e032d-32da-48ba-a3d0-b34e69db43d9 .shogun-image-content {
  
    align-items: center;
  
}

.s-db7e032d-32da-48ba-a3d0-b34e69db43d9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-db7e032d-32da-48ba-a3d0-b34e69db43d9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-db7e032d-32da-48ba-a3d0-b34e69db43d9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-db7e032d-32da-48ba-a3d0-b34e69db43d9 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-db7e032d-32da-48ba-a3d0-b34e69db43d9.shogun-image-container {
      position: relative;
    }

    .s-db7e032d-32da-48ba-a3d0-b34e69db43d9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-db7e032d-32da-48ba-a3d0-b34e69db43d9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-db7e032d-32da-48ba-a3d0-b34e69db43d9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-db7e032d-32da-48ba-a3d0-b34e69db43d9 img.shogun-image,
  #s-db7e032d-32da-48ba-a3d0-b34e69db43d9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-db7e032d-32da-48ba-a3d0-b34e69db43d9 {
    width: 100%;
    height: auto;
  }

  #s-db7e032d-32da-48ba-a3d0-b34e69db43d9 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-db7e032d-32da-48ba-a3d0-b34e69db43d9.shogun-image {
    
    
  }


.s-db7e032d-32da-48ba-a3d0-b34e69db43d9 .shogun-image-content {
  
    align-items: center;
  
}

.s-db7e032d-32da-48ba-a3d0-b34e69db43d9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-db7e032d-32da-48ba-a3d0-b34e69db43d9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-db7e032d-32da-48ba-a3d0-b34e69db43d9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-db7e032d-32da-48ba-a3d0-b34e69db43d9 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-db7e032d-32da-48ba-a3d0-b34e69db43d9.shogun-image-container {
      position: relative;
    }

    .s-db7e032d-32da-48ba-a3d0-b34e69db43d9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-db7e032d-32da-48ba-a3d0-b34e69db43d9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-db7e032d-32da-48ba-a3d0-b34e69db43d9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-db7e032d-32da-48ba-a3d0-b34e69db43d9 img.shogun-image,
  #s-db7e032d-32da-48ba-a3d0-b34e69db43d9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-db7e032d-32da-48ba-a3d0-b34e69db43d9 {
    width: 100%;
    height: auto;
  }

  #s-db7e032d-32da-48ba-a3d0-b34e69db43d9 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-db7e032d-32da-48ba-a3d0-b34e69db43d9.shogun-image {
    
    
  }


.s-db7e032d-32da-48ba-a3d0-b34e69db43d9 .shogun-image-content {
  
    align-items: center;
  
}

.s-db7e032d-32da-48ba-a3d0-b34e69db43d9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-db7e032d-32da-48ba-a3d0-b34e69db43d9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-db7e032d-32da-48ba-a3d0-b34e69db43d9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-db7e032d-32da-48ba-a3d0-b34e69db43d9 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-db7e032d-32da-48ba-a3d0-b34e69db43d9.shogun-image-container {
      position: relative;
    }

    .s-db7e032d-32da-48ba-a3d0-b34e69db43d9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-db7e032d-32da-48ba-a3d0-b34e69db43d9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-db7e032d-32da-48ba-a3d0-b34e69db43d9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-db7e032d-32da-48ba-a3d0-b34e69db43d9 img.shogun-image,
  #s-db7e032d-32da-48ba-a3d0-b34e69db43d9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-db7e032d-32da-48ba-a3d0-b34e69db43d9 {
    width: 100%;
    height: auto;
  }

  #s-db7e032d-32da-48ba-a3d0-b34e69db43d9 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-db7e032d-32da-48ba-a3d0-b34e69db43d9.shogun-image {
    
    
  }


.s-db7e032d-32da-48ba-a3d0-b34e69db43d9 .shogun-image-content {
  
    align-items: center;
  
}

.s-db7e032d-32da-48ba-a3d0-b34e69db43d9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-db7e032d-32da-48ba-a3d0-b34e69db43d9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-db7e032d-32da-48ba-a3d0-b34e69db43d9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-db7e032d-32da-48ba-a3d0-b34e69db43d9 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-db7e032d-32da-48ba-a3d0-b34e69db43d9.shogun-image-container {
      position: relative;
    }

    .s-db7e032d-32da-48ba-a3d0-b34e69db43d9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-db7e032d-32da-48ba-a3d0-b34e69db43d9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-db7e032d-32da-48ba-a3d0-b34e69db43d9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-f77e575e-43ed-413b-9ea7-2b9ec0b4ec79 {
  margin-top: -4%;
margin-bottom: -3%;
}

#s-f77e575e-43ed-413b-9ea7-2b9ec0b4ec79 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(5, calc(100vw / 24));
}

#s-2da6ebc4-5c25-42ac-b8b6-ebd0df26a644 {
  margin-left: 0%;
margin-right: 20%;
text-align: center;
}

#s-2da6ebc4-5c25-42ac-b8b6-ebd0df26a644-root {
  grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 2;
grid-row-end: 6;
z-index: 0;
}







  img.s-2da6ebc4-5c25-42ac-b8b6-ebd0df26a644.shogun-image {
    
    
  }


.s-2da6ebc4-5c25-42ac-b8b6-ebd0df26a644 .shogun-image-content {
  
    align-items: center;
  
}

.s-2da6ebc4-5c25-42ac-b8b6-ebd0df26a644.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2da6ebc4-5c25-42ac-b8b6-ebd0df26a644.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2da6ebc4-5c25-42ac-b8b6-ebd0df26a644.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-2da6ebc4-5c25-42ac-b8b6-ebd0df26a644.shogun-image {
    
    
  }


.s-2da6ebc4-5c25-42ac-b8b6-ebd0df26a644 .shogun-image-content {
  
    align-items: center;
  
}

.s-2da6ebc4-5c25-42ac-b8b6-ebd0df26a644.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2da6ebc4-5c25-42ac-b8b6-ebd0df26a644.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2da6ebc4-5c25-42ac-b8b6-ebd0df26a644.shogun-image {
  box-sizing: border-box;
}



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





  img.s-2da6ebc4-5c25-42ac-b8b6-ebd0df26a644.shogun-image {
    
    
  }


.s-2da6ebc4-5c25-42ac-b8b6-ebd0df26a644 .shogun-image-content {
  
    align-items: center;
  
}

.s-2da6ebc4-5c25-42ac-b8b6-ebd0df26a644.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2da6ebc4-5c25-42ac-b8b6-ebd0df26a644.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2da6ebc4-5c25-42ac-b8b6-ebd0df26a644.shogun-image {
  box-sizing: border-box;
}



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





  img.s-2da6ebc4-5c25-42ac-b8b6-ebd0df26a644.shogun-image {
    
    
  }


.s-2da6ebc4-5c25-42ac-b8b6-ebd0df26a644 .shogun-image-content {
  
    align-items: center;
  
}

.s-2da6ebc4-5c25-42ac-b8b6-ebd0df26a644.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2da6ebc4-5c25-42ac-b8b6-ebd0df26a644.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2da6ebc4-5c25-42ac-b8b6-ebd0df26a644.shogun-image {
  box-sizing: border-box;
}



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





  img.s-2da6ebc4-5c25-42ac-b8b6-ebd0df26a644.shogun-image {
    
    
  }


.s-2da6ebc4-5c25-42ac-b8b6-ebd0df26a644 .shogun-image-content {
  
    align-items: center;
  
}

.s-2da6ebc4-5c25-42ac-b8b6-ebd0df26a644.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2da6ebc4-5c25-42ac-b8b6-ebd0df26a644.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2da6ebc4-5c25-42ac-b8b6-ebd0df26a644.shogun-image {
  box-sizing: border-box;
}



}
#s-aaa237d4-0eed-42da-a5ad-7ec3467853b6 {
  margin-top: 1%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-aaa237d4-0eed-42da-a5ad-7ec3467853b6 {
  grid-column-start: 6;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 6;
z-index: 1;
}

#s-aaa237d4-0eed-42da-a5ad-7ec3467853b6 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-2be50cc9-1051-4b00-ad24-0c0c140b6b6a {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-7d610ca2-3fd9-44f3-b580-591b9f654cb6 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
text-align: center;
}







  img.s-7d610ca2-3fd9-44f3-b580-591b9f654cb6.shogun-image {
    
    
  }


.s-7d610ca2-3fd9-44f3-b580-591b9f654cb6 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-7d610ca2-3fd9-44f3-b580-591b9f654cb6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d610ca2-3fd9-44f3-b580-591b9f654cb6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d610ca2-3fd9-44f3-b580-591b9f654cb6.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-7d610ca2-3fd9-44f3-b580-591b9f654cb6.shogun-image {
    
    
  }


.s-7d610ca2-3fd9-44f3-b580-591b9f654cb6 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-7d610ca2-3fd9-44f3-b580-591b9f654cb6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d610ca2-3fd9-44f3-b580-591b9f654cb6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d610ca2-3fd9-44f3-b580-591b9f654cb6.shogun-image {
  box-sizing: border-box;
}



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





  img.s-7d610ca2-3fd9-44f3-b580-591b9f654cb6.shogun-image {
    
    
  }


.s-7d610ca2-3fd9-44f3-b580-591b9f654cb6 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-7d610ca2-3fd9-44f3-b580-591b9f654cb6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d610ca2-3fd9-44f3-b580-591b9f654cb6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d610ca2-3fd9-44f3-b580-591b9f654cb6.shogun-image {
  box-sizing: border-box;
}



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





  img.s-7d610ca2-3fd9-44f3-b580-591b9f654cb6.shogun-image {
    
    
  }


.s-7d610ca2-3fd9-44f3-b580-591b9f654cb6 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-7d610ca2-3fd9-44f3-b580-591b9f654cb6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d610ca2-3fd9-44f3-b580-591b9f654cb6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d610ca2-3fd9-44f3-b580-591b9f654cb6.shogun-image {
  box-sizing: border-box;
}



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





  img.s-7d610ca2-3fd9-44f3-b580-591b9f654cb6.shogun-image {
    
    
  }


.s-7d610ca2-3fd9-44f3-b580-591b9f654cb6 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-7d610ca2-3fd9-44f3-b580-591b9f654cb6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d610ca2-3fd9-44f3-b580-591b9f654cb6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d610ca2-3fd9-44f3-b580-591b9f654cb6.shogun-image {
  box-sizing: border-box;
}



}
#s-a76ff111-6acf-4e61-b197-5c42ec6ca2bb {
  margin-top: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a76ff111-6acf-4e61-b197-5c42ec6ca2bb .shogun-heading-component h5 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-62cc7740-a3e8-4b71-96b6-9ff95dabe440 {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-62cc7740-a3e8-4b71-96b6-9ff95dabe440 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-62cc7740-a3e8-4b71-96b6-9ff95dabe440.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-78be0fcb-bae8-46e5-b14b-ceb3165a3e04 {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: rgba(29, 29, 29, 0);
border-radius: 3px;
max-width: 100%;
background-color: rgba(29, 29, 29, 0.9);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-78be0fcb-bae8-46e5-b14b-ceb3165a3e04:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 0) !important;
background-color: rgba(74, 74, 74, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-78be0fcb-bae8-46e5-b14b-ceb3165a3e04:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(155, 155, 155, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-78be0fcb-bae8-46e5-b14b-ceb3165a3e04-root {
    text-align: center;
  }


#s-78be0fcb-bae8-46e5-b14b-ceb3165a3e04.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-78be0fcb-bae8-46e5-b14b-ceb3165a3e04-root {
    text-align: center;
  }


#s-78be0fcb-bae8-46e5-b14b-ceb3165a3e04.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-78be0fcb-bae8-46e5-b14b-ceb3165a3e04-root {
    text-align: center;
  }


#s-78be0fcb-bae8-46e5-b14b-ceb3165a3e04.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-78be0fcb-bae8-46e5-b14b-ceb3165a3e04-root {
    text-align: center;
  }


#s-78be0fcb-bae8-46e5-b14b-ceb3165a3e04.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-78be0fcb-bae8-46e5-b14b-ceb3165a3e04-root {
    text-align: center;
  }


#s-78be0fcb-bae8-46e5-b14b-ceb3165a3e04.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-78be0fcb-bae8-46e5-b14b-ceb3165a3e04-root {
    text-align: center;
  }


#s-78be0fcb-bae8-46e5-b14b-ceb3165a3e04.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-6684e5c0-0b1a-4f4c-93cb-c11a36f0878d {
  margin-top: 13%;
margin-bottom: 0%;
}

#s-6684e5c0-0b1a-4f4c-93cb-c11a36f0878d .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(14, calc(100vw / 24));
}

#s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3 {
  aspect-ratio: 11/11;
text-align: center;
}

#s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3-root {
  grid-column-start: 1;
grid-column-end: 12;
grid-row-start: 4;
grid-row-end: 15;
z-index: 0;
}





  #s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3 img.shogun-image,
  #s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3 {
    width: 100%;
    height: auto;
  }

  #s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3.shogun-image {
    
    
  }


.s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3 .shogun-image-content {
  
    align-items: center;
  
}

.s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3.shogun-image-container {
      position: relative;
    }

    .s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3 img.shogun-image,
  #s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3 {
    width: 100%;
    height: auto;
  }

  #s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3.shogun-image {
    
    
  }


.s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3 .shogun-image-content {
  
    align-items: center;
  
}

.s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3.shogun-image-container {
      position: relative;
    }

    .s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3 img.shogun-image,
  #s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3 {
    width: 100%;
    height: auto;
  }

  #s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3.shogun-image {
    
    
  }


.s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3 .shogun-image-content {
  
    align-items: center;
  
}

.s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3.shogun-image-container {
      position: relative;
    }

    .s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3 img.shogun-image,
  #s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3 {
    width: 100%;
    height: auto;
  }

  #s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3.shogun-image {
    
    
  }


.s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3 .shogun-image-content {
  
    align-items: center;
  
}

.s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3.shogun-image-container {
      position: relative;
    }

    .s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3 img.shogun-image,
  #s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3 {
    width: 100%;
    height: auto;
  }

  #s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3.shogun-image {
    
    
  }


.s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3 .shogun-image-content {
  
    align-items: center;
  
}

.s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3.shogun-image-container {
      position: relative;
    }

    .s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7454134a-ffc6-412e-b7cf-9fe4b52c81b3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-bee11c04-080d-4785-8d5c-ab9eac2d5723 {
  aspect-ratio: 14/14;
text-align: center;
}

#s-bee11c04-080d-4785-8d5c-ab9eac2d5723-root {
  grid-column-start: 11;
grid-column-end: 25;
grid-row-start: 1;
grid-row-end: 15;
z-index: 1;
}





  #s-bee11c04-080d-4785-8d5c-ab9eac2d5723 img.shogun-image,
  #s-bee11c04-080d-4785-8d5c-ab9eac2d5723 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-bee11c04-080d-4785-8d5c-ab9eac2d5723 {
    width: 100%;
    height: auto;
  }

  #s-bee11c04-080d-4785-8d5c-ab9eac2d5723 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bee11c04-080d-4785-8d5c-ab9eac2d5723.shogun-image {
    
    
  }


.s-bee11c04-080d-4785-8d5c-ab9eac2d5723 .shogun-image-content {
  
    align-items: center;
  
}

.s-bee11c04-080d-4785-8d5c-ab9eac2d5723.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bee11c04-080d-4785-8d5c-ab9eac2d5723.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bee11c04-080d-4785-8d5c-ab9eac2d5723.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bee11c04-080d-4785-8d5c-ab9eac2d5723 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-bee11c04-080d-4785-8d5c-ab9eac2d5723.shogun-image-container {
      position: relative;
    }

    .s-bee11c04-080d-4785-8d5c-ab9eac2d5723.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bee11c04-080d-4785-8d5c-ab9eac2d5723.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bee11c04-080d-4785-8d5c-ab9eac2d5723 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-bee11c04-080d-4785-8d5c-ab9eac2d5723 img.shogun-image,
  #s-bee11c04-080d-4785-8d5c-ab9eac2d5723 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-bee11c04-080d-4785-8d5c-ab9eac2d5723 {
    width: 100%;
    height: auto;
  }

  #s-bee11c04-080d-4785-8d5c-ab9eac2d5723 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bee11c04-080d-4785-8d5c-ab9eac2d5723.shogun-image {
    
    
  }


.s-bee11c04-080d-4785-8d5c-ab9eac2d5723 .shogun-image-content {
  
    align-items: center;
  
}

.s-bee11c04-080d-4785-8d5c-ab9eac2d5723.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bee11c04-080d-4785-8d5c-ab9eac2d5723.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bee11c04-080d-4785-8d5c-ab9eac2d5723.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bee11c04-080d-4785-8d5c-ab9eac2d5723 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-bee11c04-080d-4785-8d5c-ab9eac2d5723.shogun-image-container {
      position: relative;
    }

    .s-bee11c04-080d-4785-8d5c-ab9eac2d5723.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bee11c04-080d-4785-8d5c-ab9eac2d5723.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bee11c04-080d-4785-8d5c-ab9eac2d5723 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-bee11c04-080d-4785-8d5c-ab9eac2d5723 img.shogun-image,
  #s-bee11c04-080d-4785-8d5c-ab9eac2d5723 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-bee11c04-080d-4785-8d5c-ab9eac2d5723 {
    width: 100%;
    height: auto;
  }

  #s-bee11c04-080d-4785-8d5c-ab9eac2d5723 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bee11c04-080d-4785-8d5c-ab9eac2d5723.shogun-image {
    
    
  }


.s-bee11c04-080d-4785-8d5c-ab9eac2d5723 .shogun-image-content {
  
    align-items: center;
  
}

.s-bee11c04-080d-4785-8d5c-ab9eac2d5723.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bee11c04-080d-4785-8d5c-ab9eac2d5723.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bee11c04-080d-4785-8d5c-ab9eac2d5723.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bee11c04-080d-4785-8d5c-ab9eac2d5723 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-bee11c04-080d-4785-8d5c-ab9eac2d5723.shogun-image-container {
      position: relative;
    }

    .s-bee11c04-080d-4785-8d5c-ab9eac2d5723.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bee11c04-080d-4785-8d5c-ab9eac2d5723.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bee11c04-080d-4785-8d5c-ab9eac2d5723 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-bee11c04-080d-4785-8d5c-ab9eac2d5723 img.shogun-image,
  #s-bee11c04-080d-4785-8d5c-ab9eac2d5723 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-bee11c04-080d-4785-8d5c-ab9eac2d5723 {
    width: 100%;
    height: auto;
  }

  #s-bee11c04-080d-4785-8d5c-ab9eac2d5723 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bee11c04-080d-4785-8d5c-ab9eac2d5723.shogun-image {
    
    
  }


.s-bee11c04-080d-4785-8d5c-ab9eac2d5723 .shogun-image-content {
  
    align-items: center;
  
}

.s-bee11c04-080d-4785-8d5c-ab9eac2d5723.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bee11c04-080d-4785-8d5c-ab9eac2d5723.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bee11c04-080d-4785-8d5c-ab9eac2d5723.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bee11c04-080d-4785-8d5c-ab9eac2d5723 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-bee11c04-080d-4785-8d5c-ab9eac2d5723.shogun-image-container {
      position: relative;
    }

    .s-bee11c04-080d-4785-8d5c-ab9eac2d5723.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bee11c04-080d-4785-8d5c-ab9eac2d5723.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bee11c04-080d-4785-8d5c-ab9eac2d5723 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-bee11c04-080d-4785-8d5c-ab9eac2d5723 img.shogun-image,
  #s-bee11c04-080d-4785-8d5c-ab9eac2d5723 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-bee11c04-080d-4785-8d5c-ab9eac2d5723 {
    width: 100%;
    height: auto;
  }

  #s-bee11c04-080d-4785-8d5c-ab9eac2d5723 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bee11c04-080d-4785-8d5c-ab9eac2d5723.shogun-image {
    
    
  }


.s-bee11c04-080d-4785-8d5c-ab9eac2d5723 .shogun-image-content {
  
    align-items: center;
  
}

.s-bee11c04-080d-4785-8d5c-ab9eac2d5723.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bee11c04-080d-4785-8d5c-ab9eac2d5723.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bee11c04-080d-4785-8d5c-ab9eac2d5723.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bee11c04-080d-4785-8d5c-ab9eac2d5723 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-bee11c04-080d-4785-8d5c-ab9eac2d5723.shogun-image-container {
      position: relative;
    }

    .s-bee11c04-080d-4785-8d5c-ab9eac2d5723.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bee11c04-080d-4785-8d5c-ab9eac2d5723.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bee11c04-080d-4785-8d5c-ab9eac2d5723 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-90eae7f8-1df6-4cfa-bc44-edc37ba79e11 {
  margin-top: -1%;
}

#s-90eae7f8-1df6-4cfa-bc44-edc37ba79e11 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(5, calc(100vw / 24));
}

#s-e7642469-bf34-4e36-ba9e-1aa01f1f8f8e {
  margin-left: 0%;
margin-right: 20%;
text-align: center;
}

#s-e7642469-bf34-4e36-ba9e-1aa01f1f8f8e-root {
  grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 2;
grid-row-end: 6;
z-index: 0;
}







  img.s-e7642469-bf34-4e36-ba9e-1aa01f1f8f8e.shogun-image {
    
    
  }


.s-e7642469-bf34-4e36-ba9e-1aa01f1f8f8e .shogun-image-content {
  
    align-items: center;
  
}

.s-e7642469-bf34-4e36-ba9e-1aa01f1f8f8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7642469-bf34-4e36-ba9e-1aa01f1f8f8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7642469-bf34-4e36-ba9e-1aa01f1f8f8e.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-e7642469-bf34-4e36-ba9e-1aa01f1f8f8e.shogun-image {
    
    
  }


.s-e7642469-bf34-4e36-ba9e-1aa01f1f8f8e .shogun-image-content {
  
    align-items: center;
  
}

.s-e7642469-bf34-4e36-ba9e-1aa01f1f8f8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7642469-bf34-4e36-ba9e-1aa01f1f8f8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7642469-bf34-4e36-ba9e-1aa01f1f8f8e.shogun-image {
  box-sizing: border-box;
}



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





  img.s-e7642469-bf34-4e36-ba9e-1aa01f1f8f8e.shogun-image {
    
    
  }


.s-e7642469-bf34-4e36-ba9e-1aa01f1f8f8e .shogun-image-content {
  
    align-items: center;
  
}

.s-e7642469-bf34-4e36-ba9e-1aa01f1f8f8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7642469-bf34-4e36-ba9e-1aa01f1f8f8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7642469-bf34-4e36-ba9e-1aa01f1f8f8e.shogun-image {
  box-sizing: border-box;
}



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





  img.s-e7642469-bf34-4e36-ba9e-1aa01f1f8f8e.shogun-image {
    
    
  }


.s-e7642469-bf34-4e36-ba9e-1aa01f1f8f8e .shogun-image-content {
  
    align-items: center;
  
}

.s-e7642469-bf34-4e36-ba9e-1aa01f1f8f8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7642469-bf34-4e36-ba9e-1aa01f1f8f8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7642469-bf34-4e36-ba9e-1aa01f1f8f8e.shogun-image {
  box-sizing: border-box;
}



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





  img.s-e7642469-bf34-4e36-ba9e-1aa01f1f8f8e.shogun-image {
    
    
  }


.s-e7642469-bf34-4e36-ba9e-1aa01f1f8f8e .shogun-image-content {
  
    align-items: center;
  
}

.s-e7642469-bf34-4e36-ba9e-1aa01f1f8f8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7642469-bf34-4e36-ba9e-1aa01f1f8f8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7642469-bf34-4e36-ba9e-1aa01f1f8f8e.shogun-image {
  box-sizing: border-box;
}



}
#s-6b019d2a-79aa-4255-af78-995d08ca0c0d {
  margin-top: 5%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6b019d2a-79aa-4255-af78-995d08ca0c0d {
  grid-column-start: 6;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 6;
z-index: 1;
}

#s-6b019d2a-79aa-4255-af78-995d08ca0c0d .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 1px;
  text-align: left;
}



#s-c4f5e3b9-49c5-49e6-94fa-4e005f3c03c3 {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-551763a8-2715-426f-89ea-a4c16315bcc7 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}







  img.s-551763a8-2715-426f-89ea-a4c16315bcc7.shogun-image {
    
    
  }


.s-551763a8-2715-426f-89ea-a4c16315bcc7 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-551763a8-2715-426f-89ea-a4c16315bcc7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-551763a8-2715-426f-89ea-a4c16315bcc7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-551763a8-2715-426f-89ea-a4c16315bcc7.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-551763a8-2715-426f-89ea-a4c16315bcc7.shogun-image {
    
    
  }


.s-551763a8-2715-426f-89ea-a4c16315bcc7 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-551763a8-2715-426f-89ea-a4c16315bcc7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-551763a8-2715-426f-89ea-a4c16315bcc7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-551763a8-2715-426f-89ea-a4c16315bcc7.shogun-image {
  box-sizing: border-box;
}



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





  img.s-551763a8-2715-426f-89ea-a4c16315bcc7.shogun-image {
    
    
  }


.s-551763a8-2715-426f-89ea-a4c16315bcc7 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-551763a8-2715-426f-89ea-a4c16315bcc7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-551763a8-2715-426f-89ea-a4c16315bcc7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-551763a8-2715-426f-89ea-a4c16315bcc7.shogun-image {
  box-sizing: border-box;
}



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





  img.s-551763a8-2715-426f-89ea-a4c16315bcc7.shogun-image {
    
    
  }


.s-551763a8-2715-426f-89ea-a4c16315bcc7 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-551763a8-2715-426f-89ea-a4c16315bcc7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-551763a8-2715-426f-89ea-a4c16315bcc7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-551763a8-2715-426f-89ea-a4c16315bcc7.shogun-image {
  box-sizing: border-box;
}



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





  img.s-551763a8-2715-426f-89ea-a4c16315bcc7.shogun-image {
    
    
  }


.s-551763a8-2715-426f-89ea-a4c16315bcc7 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-551763a8-2715-426f-89ea-a4c16315bcc7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-551763a8-2715-426f-89ea-a4c16315bcc7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-551763a8-2715-426f-89ea-a4c16315bcc7.shogun-image {
  box-sizing: border-box;
}



}
#s-8c2fe046-c647-418d-b123-409a40ed4b4f {
  margin-top: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8c2fe046-c647-418d-b123-409a40ed4b4f .shogun-heading-component h5 {
  color: rgba(31, 31, 31, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-9002744c-f14a-4396-955c-4ccc88820201 {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-9002744c-f14a-4396-955c-4ccc88820201 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9002744c-f14a-4396-955c-4ccc88820201.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4d7ee285-655d-4f10-b38f-f66912d420c9 {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: rgba(29, 29, 29, 0);
border-radius: 3px;
max-width: 100%;
background-color: rgba(29, 29, 29, 0.9);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-4d7ee285-655d-4f10-b38f-f66912d420c9:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 0) !important;
background-color: rgba(74, 74, 74, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-4d7ee285-655d-4f10-b38f-f66912d420c9:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(155, 155, 155, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-4d7ee285-655d-4f10-b38f-f66912d420c9-root {
    text-align: center;
  }


#s-4d7ee285-655d-4f10-b38f-f66912d420c9.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-4d7ee285-655d-4f10-b38f-f66912d420c9-root {
    text-align: center;
  }


#s-4d7ee285-655d-4f10-b38f-f66912d420c9.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4d7ee285-655d-4f10-b38f-f66912d420c9-root {
    text-align: center;
  }


#s-4d7ee285-655d-4f10-b38f-f66912d420c9.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4d7ee285-655d-4f10-b38f-f66912d420c9-root {
    text-align: center;
  }


#s-4d7ee285-655d-4f10-b38f-f66912d420c9.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-4d7ee285-655d-4f10-b38f-f66912d420c9-root {
    text-align: center;
  }


#s-4d7ee285-655d-4f10-b38f-f66912d420c9.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-4d7ee285-655d-4f10-b38f-f66912d420c9-root {
    text-align: center;
  }


#s-4d7ee285-655d-4f10-b38f-f66912d420c9.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-bace8a9e-3fff-43a6-a0b3-591915d0551a {
  margin-top: 13%;
margin-bottom: 0%;
}

#s-bace8a9e-3fff-43a6-a0b3-591915d0551a .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(13, calc(100vw / 24));
}

#s-880ecd96-e774-4c7b-bac8-1d7b0e27601d {
  aspect-ratio: 13/13;
text-align: center;
}

#s-880ecd96-e774-4c7b-bac8-1d7b0e27601d-root {
  grid-column-start: 1;
grid-column-end: 14;
grid-row-start: 1;
grid-row-end: 14;
z-index: 0;
}





  #s-880ecd96-e774-4c7b-bac8-1d7b0e27601d img.shogun-image,
  #s-880ecd96-e774-4c7b-bac8-1d7b0e27601d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-880ecd96-e774-4c7b-bac8-1d7b0e27601d {
    width: 100%;
    height: auto;
  }

  #s-880ecd96-e774-4c7b-bac8-1d7b0e27601d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-880ecd96-e774-4c7b-bac8-1d7b0e27601d.shogun-image {
    
    
  }


.s-880ecd96-e774-4c7b-bac8-1d7b0e27601d .shogun-image-content {
  
    align-items: center;
  
}

.s-880ecd96-e774-4c7b-bac8-1d7b0e27601d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-880ecd96-e774-4c7b-bac8-1d7b0e27601d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-880ecd96-e774-4c7b-bac8-1d7b0e27601d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-880ecd96-e774-4c7b-bac8-1d7b0e27601d {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-880ecd96-e774-4c7b-bac8-1d7b0e27601d.shogun-image-container {
      position: relative;
    }

    .s-880ecd96-e774-4c7b-bac8-1d7b0e27601d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-880ecd96-e774-4c7b-bac8-1d7b0e27601d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-880ecd96-e774-4c7b-bac8-1d7b0e27601d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-880ecd96-e774-4c7b-bac8-1d7b0e27601d img.shogun-image,
  #s-880ecd96-e774-4c7b-bac8-1d7b0e27601d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-880ecd96-e774-4c7b-bac8-1d7b0e27601d {
    width: 100%;
    height: auto;
  }

  #s-880ecd96-e774-4c7b-bac8-1d7b0e27601d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-880ecd96-e774-4c7b-bac8-1d7b0e27601d.shogun-image {
    
    
  }


.s-880ecd96-e774-4c7b-bac8-1d7b0e27601d .shogun-image-content {
  
    align-items: center;
  
}

.s-880ecd96-e774-4c7b-bac8-1d7b0e27601d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-880ecd96-e774-4c7b-bac8-1d7b0e27601d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-880ecd96-e774-4c7b-bac8-1d7b0e27601d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-880ecd96-e774-4c7b-bac8-1d7b0e27601d {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-880ecd96-e774-4c7b-bac8-1d7b0e27601d.shogun-image-container {
      position: relative;
    }

    .s-880ecd96-e774-4c7b-bac8-1d7b0e27601d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-880ecd96-e774-4c7b-bac8-1d7b0e27601d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-880ecd96-e774-4c7b-bac8-1d7b0e27601d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-880ecd96-e774-4c7b-bac8-1d7b0e27601d img.shogun-image,
  #s-880ecd96-e774-4c7b-bac8-1d7b0e27601d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-880ecd96-e774-4c7b-bac8-1d7b0e27601d {
    width: 100%;
    height: auto;
  }

  #s-880ecd96-e774-4c7b-bac8-1d7b0e27601d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-880ecd96-e774-4c7b-bac8-1d7b0e27601d.shogun-image {
    
    
  }


.s-880ecd96-e774-4c7b-bac8-1d7b0e27601d .shogun-image-content {
  
    align-items: center;
  
}

.s-880ecd96-e774-4c7b-bac8-1d7b0e27601d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-880ecd96-e774-4c7b-bac8-1d7b0e27601d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-880ecd96-e774-4c7b-bac8-1d7b0e27601d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-880ecd96-e774-4c7b-bac8-1d7b0e27601d {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-880ecd96-e774-4c7b-bac8-1d7b0e27601d.shogun-image-container {
      position: relative;
    }

    .s-880ecd96-e774-4c7b-bac8-1d7b0e27601d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-880ecd96-e774-4c7b-bac8-1d7b0e27601d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-880ecd96-e774-4c7b-bac8-1d7b0e27601d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-880ecd96-e774-4c7b-bac8-1d7b0e27601d img.shogun-image,
  #s-880ecd96-e774-4c7b-bac8-1d7b0e27601d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-880ecd96-e774-4c7b-bac8-1d7b0e27601d {
    width: 100%;
    height: auto;
  }

  #s-880ecd96-e774-4c7b-bac8-1d7b0e27601d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-880ecd96-e774-4c7b-bac8-1d7b0e27601d.shogun-image {
    
    
  }


.s-880ecd96-e774-4c7b-bac8-1d7b0e27601d .shogun-image-content {
  
    align-items: center;
  
}

.s-880ecd96-e774-4c7b-bac8-1d7b0e27601d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-880ecd96-e774-4c7b-bac8-1d7b0e27601d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-880ecd96-e774-4c7b-bac8-1d7b0e27601d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-880ecd96-e774-4c7b-bac8-1d7b0e27601d {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-880ecd96-e774-4c7b-bac8-1d7b0e27601d.shogun-image-container {
      position: relative;
    }

    .s-880ecd96-e774-4c7b-bac8-1d7b0e27601d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-880ecd96-e774-4c7b-bac8-1d7b0e27601d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-880ecd96-e774-4c7b-bac8-1d7b0e27601d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-880ecd96-e774-4c7b-bac8-1d7b0e27601d img.shogun-image,
  #s-880ecd96-e774-4c7b-bac8-1d7b0e27601d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-880ecd96-e774-4c7b-bac8-1d7b0e27601d {
    width: 100%;
    height: auto;
  }

  #s-880ecd96-e774-4c7b-bac8-1d7b0e27601d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-880ecd96-e774-4c7b-bac8-1d7b0e27601d.shogun-image {
    
    
  }


.s-880ecd96-e774-4c7b-bac8-1d7b0e27601d .shogun-image-content {
  
    align-items: center;
  
}

.s-880ecd96-e774-4c7b-bac8-1d7b0e27601d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-880ecd96-e774-4c7b-bac8-1d7b0e27601d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-880ecd96-e774-4c7b-bac8-1d7b0e27601d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-880ecd96-e774-4c7b-bac8-1d7b0e27601d {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-880ecd96-e774-4c7b-bac8-1d7b0e27601d.shogun-image-container {
      position: relative;
    }

    .s-880ecd96-e774-4c7b-bac8-1d7b0e27601d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-880ecd96-e774-4c7b-bac8-1d7b0e27601d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-880ecd96-e774-4c7b-bac8-1d7b0e27601d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-b2b3c29a-b103-479e-b944-9266340e4ac8 {
  aspect-ratio: 11/11;
text-align: center;
}

#s-b2b3c29a-b103-479e-b944-9266340e4ac8-root {
  grid-column-start: 14;
grid-column-end: 25;
grid-row-start: 1;
grid-row-end: 12;
z-index: 1;
}





  #s-b2b3c29a-b103-479e-b944-9266340e4ac8 img.shogun-image,
  #s-b2b3c29a-b103-479e-b944-9266340e4ac8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b2b3c29a-b103-479e-b944-9266340e4ac8 {
    width: 100%;
    height: auto;
  }

  #s-b2b3c29a-b103-479e-b944-9266340e4ac8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b2b3c29a-b103-479e-b944-9266340e4ac8.shogun-image {
    
    
  }


.s-b2b3c29a-b103-479e-b944-9266340e4ac8 .shogun-image-content {
  
    align-items: center;
  
}

.s-b2b3c29a-b103-479e-b944-9266340e4ac8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b2b3c29a-b103-479e-b944-9266340e4ac8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b2b3c29a-b103-479e-b944-9266340e4ac8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b2b3c29a-b103-479e-b944-9266340e4ac8 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-b2b3c29a-b103-479e-b944-9266340e4ac8.shogun-image-container {
      position: relative;
    }

    .s-b2b3c29a-b103-479e-b944-9266340e4ac8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b2b3c29a-b103-479e-b944-9266340e4ac8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b2b3c29a-b103-479e-b944-9266340e4ac8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-b2b3c29a-b103-479e-b944-9266340e4ac8 img.shogun-image,
  #s-b2b3c29a-b103-479e-b944-9266340e4ac8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b2b3c29a-b103-479e-b944-9266340e4ac8 {
    width: 100%;
    height: auto;
  }

  #s-b2b3c29a-b103-479e-b944-9266340e4ac8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b2b3c29a-b103-479e-b944-9266340e4ac8.shogun-image {
    
    
  }


.s-b2b3c29a-b103-479e-b944-9266340e4ac8 .shogun-image-content {
  
    align-items: center;
  
}

.s-b2b3c29a-b103-479e-b944-9266340e4ac8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b2b3c29a-b103-479e-b944-9266340e4ac8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b2b3c29a-b103-479e-b944-9266340e4ac8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b2b3c29a-b103-479e-b944-9266340e4ac8 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-b2b3c29a-b103-479e-b944-9266340e4ac8.shogun-image-container {
      position: relative;
    }

    .s-b2b3c29a-b103-479e-b944-9266340e4ac8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b2b3c29a-b103-479e-b944-9266340e4ac8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b2b3c29a-b103-479e-b944-9266340e4ac8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-b2b3c29a-b103-479e-b944-9266340e4ac8 img.shogun-image,
  #s-b2b3c29a-b103-479e-b944-9266340e4ac8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b2b3c29a-b103-479e-b944-9266340e4ac8 {
    width: 100%;
    height: auto;
  }

  #s-b2b3c29a-b103-479e-b944-9266340e4ac8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b2b3c29a-b103-479e-b944-9266340e4ac8.shogun-image {
    
    
  }


.s-b2b3c29a-b103-479e-b944-9266340e4ac8 .shogun-image-content {
  
    align-items: center;
  
}

.s-b2b3c29a-b103-479e-b944-9266340e4ac8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b2b3c29a-b103-479e-b944-9266340e4ac8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b2b3c29a-b103-479e-b944-9266340e4ac8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b2b3c29a-b103-479e-b944-9266340e4ac8 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-b2b3c29a-b103-479e-b944-9266340e4ac8.shogun-image-container {
      position: relative;
    }

    .s-b2b3c29a-b103-479e-b944-9266340e4ac8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b2b3c29a-b103-479e-b944-9266340e4ac8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b2b3c29a-b103-479e-b944-9266340e4ac8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-b2b3c29a-b103-479e-b944-9266340e4ac8 img.shogun-image,
  #s-b2b3c29a-b103-479e-b944-9266340e4ac8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b2b3c29a-b103-479e-b944-9266340e4ac8 {
    width: 100%;
    height: auto;
  }

  #s-b2b3c29a-b103-479e-b944-9266340e4ac8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b2b3c29a-b103-479e-b944-9266340e4ac8.shogun-image {
    
    
  }


.s-b2b3c29a-b103-479e-b944-9266340e4ac8 .shogun-image-content {
  
    align-items: center;
  
}

.s-b2b3c29a-b103-479e-b944-9266340e4ac8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b2b3c29a-b103-479e-b944-9266340e4ac8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b2b3c29a-b103-479e-b944-9266340e4ac8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b2b3c29a-b103-479e-b944-9266340e4ac8 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-b2b3c29a-b103-479e-b944-9266340e4ac8.shogun-image-container {
      position: relative;
    }

    .s-b2b3c29a-b103-479e-b944-9266340e4ac8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b2b3c29a-b103-479e-b944-9266340e4ac8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b2b3c29a-b103-479e-b944-9266340e4ac8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-b2b3c29a-b103-479e-b944-9266340e4ac8 img.shogun-image,
  #s-b2b3c29a-b103-479e-b944-9266340e4ac8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b2b3c29a-b103-479e-b944-9266340e4ac8 {
    width: 100%;
    height: auto;
  }

  #s-b2b3c29a-b103-479e-b944-9266340e4ac8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b2b3c29a-b103-479e-b944-9266340e4ac8.shogun-image {
    
    
  }


.s-b2b3c29a-b103-479e-b944-9266340e4ac8 .shogun-image-content {
  
    align-items: center;
  
}

.s-b2b3c29a-b103-479e-b944-9266340e4ac8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b2b3c29a-b103-479e-b944-9266340e4ac8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b2b3c29a-b103-479e-b944-9266340e4ac8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b2b3c29a-b103-479e-b944-9266340e4ac8 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-b2b3c29a-b103-479e-b944-9266340e4ac8.shogun-image-container {
      position: relative;
    }

    .s-b2b3c29a-b103-479e-b944-9266340e4ac8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b2b3c29a-b103-479e-b944-9266340e4ac8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b2b3c29a-b103-479e-b944-9266340e4ac8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-db2b5a9c-4cb0-4e6f-952b-c10fad28e006 {
  margin-top: -3%;
}

#s-db2b5a9c-4cb0-4e6f-952b-c10fad28e006 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(6, calc(100vw / 24));
}

#s-014eab46-8af9-44c7-825a-666945b1335d {
  margin-top: 3%;
margin-left: 0%;
margin-right: 20%;
aspect-ratio: 5/5;
text-align: center;
}

#s-014eab46-8af9-44c7-825a-666945b1335d-root {
  grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 2;
grid-row-end: 7;
z-index: 0;
}





  #s-014eab46-8af9-44c7-825a-666945b1335d img.shogun-image,
  #s-014eab46-8af9-44c7-825a-666945b1335d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-014eab46-8af9-44c7-825a-666945b1335d {
    width: 100%;
    height: auto;
  }

  #s-014eab46-8af9-44c7-825a-666945b1335d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-014eab46-8af9-44c7-825a-666945b1335d.shogun-image {
    
    
  }


.s-014eab46-8af9-44c7-825a-666945b1335d .shogun-image-content {
  
    align-items: center;
  
}

.s-014eab46-8af9-44c7-825a-666945b1335d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-014eab46-8af9-44c7-825a-666945b1335d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-014eab46-8af9-44c7-825a-666945b1335d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-014eab46-8af9-44c7-825a-666945b1335d {
      --shg-aspect-ratio: calc(5/5); 
    }

    .s-014eab46-8af9-44c7-825a-666945b1335d.shogun-image-container {
      position: relative;
    }

    .s-014eab46-8af9-44c7-825a-666945b1335d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-014eab46-8af9-44c7-825a-666945b1335d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-014eab46-8af9-44c7-825a-666945b1335d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-014eab46-8af9-44c7-825a-666945b1335d img.shogun-image,
  #s-014eab46-8af9-44c7-825a-666945b1335d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-014eab46-8af9-44c7-825a-666945b1335d {
    width: 100%;
    height: auto;
  }

  #s-014eab46-8af9-44c7-825a-666945b1335d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-014eab46-8af9-44c7-825a-666945b1335d.shogun-image {
    
    
  }


.s-014eab46-8af9-44c7-825a-666945b1335d .shogun-image-content {
  
    align-items: center;
  
}

.s-014eab46-8af9-44c7-825a-666945b1335d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-014eab46-8af9-44c7-825a-666945b1335d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-014eab46-8af9-44c7-825a-666945b1335d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-014eab46-8af9-44c7-825a-666945b1335d {
      --shg-aspect-ratio: calc(5/5); 
    }

    .s-014eab46-8af9-44c7-825a-666945b1335d.shogun-image-container {
      position: relative;
    }

    .s-014eab46-8af9-44c7-825a-666945b1335d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-014eab46-8af9-44c7-825a-666945b1335d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-014eab46-8af9-44c7-825a-666945b1335d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-014eab46-8af9-44c7-825a-666945b1335d img.shogun-image,
  #s-014eab46-8af9-44c7-825a-666945b1335d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-014eab46-8af9-44c7-825a-666945b1335d {
    width: 100%;
    height: auto;
  }

  #s-014eab46-8af9-44c7-825a-666945b1335d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-014eab46-8af9-44c7-825a-666945b1335d.shogun-image {
    
    
  }


.s-014eab46-8af9-44c7-825a-666945b1335d .shogun-image-content {
  
    align-items: center;
  
}

.s-014eab46-8af9-44c7-825a-666945b1335d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-014eab46-8af9-44c7-825a-666945b1335d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-014eab46-8af9-44c7-825a-666945b1335d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-014eab46-8af9-44c7-825a-666945b1335d {
      --shg-aspect-ratio: calc(5/5); 
    }

    .s-014eab46-8af9-44c7-825a-666945b1335d.shogun-image-container {
      position: relative;
    }

    .s-014eab46-8af9-44c7-825a-666945b1335d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-014eab46-8af9-44c7-825a-666945b1335d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-014eab46-8af9-44c7-825a-666945b1335d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-014eab46-8af9-44c7-825a-666945b1335d img.shogun-image,
  #s-014eab46-8af9-44c7-825a-666945b1335d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-014eab46-8af9-44c7-825a-666945b1335d {
    width: 100%;
    height: auto;
  }

  #s-014eab46-8af9-44c7-825a-666945b1335d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-014eab46-8af9-44c7-825a-666945b1335d.shogun-image {
    
    
  }


.s-014eab46-8af9-44c7-825a-666945b1335d .shogun-image-content {
  
    align-items: center;
  
}

.s-014eab46-8af9-44c7-825a-666945b1335d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-014eab46-8af9-44c7-825a-666945b1335d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-014eab46-8af9-44c7-825a-666945b1335d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-014eab46-8af9-44c7-825a-666945b1335d {
      --shg-aspect-ratio: calc(5/5); 
    }

    .s-014eab46-8af9-44c7-825a-666945b1335d.shogun-image-container {
      position: relative;
    }

    .s-014eab46-8af9-44c7-825a-666945b1335d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-014eab46-8af9-44c7-825a-666945b1335d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-014eab46-8af9-44c7-825a-666945b1335d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-014eab46-8af9-44c7-825a-666945b1335d img.shogun-image,
  #s-014eab46-8af9-44c7-825a-666945b1335d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-014eab46-8af9-44c7-825a-666945b1335d {
    width: 100%;
    height: auto;
  }

  #s-014eab46-8af9-44c7-825a-666945b1335d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-014eab46-8af9-44c7-825a-666945b1335d.shogun-image {
    
    
  }


.s-014eab46-8af9-44c7-825a-666945b1335d .shogun-image-content {
  
    align-items: center;
  
}

.s-014eab46-8af9-44c7-825a-666945b1335d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-014eab46-8af9-44c7-825a-666945b1335d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-014eab46-8af9-44c7-825a-666945b1335d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-014eab46-8af9-44c7-825a-666945b1335d {
      --shg-aspect-ratio: calc(5/5); 
    }

    .s-014eab46-8af9-44c7-825a-666945b1335d.shogun-image-container {
      position: relative;
    }

    .s-014eab46-8af9-44c7-825a-666945b1335d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-014eab46-8af9-44c7-825a-666945b1335d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-014eab46-8af9-44c7-825a-666945b1335d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-bf552acf-fcce-40cf-91e1-c14e6315fa7f {
  margin-top: 5%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-bf552acf-fcce-40cf-91e1-c14e6315fa7f {
  grid-column-start: 6;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 7;
z-index: 1;
}

#s-bf552acf-fcce-40cf-91e1-c14e6315fa7f .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 1px;
  text-align: left;
}



#s-a23fa2c1-e8fa-4319-8395-bc8a3b65b0ea {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-6401c32d-f722-4294-bb14-18be8199bda5 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}







  img.s-6401c32d-f722-4294-bb14-18be8199bda5.shogun-image {
    
    
  }


.s-6401c32d-f722-4294-bb14-18be8199bda5 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-6401c32d-f722-4294-bb14-18be8199bda5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6401c32d-f722-4294-bb14-18be8199bda5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6401c32d-f722-4294-bb14-18be8199bda5.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-6401c32d-f722-4294-bb14-18be8199bda5.shogun-image {
    
    
  }


.s-6401c32d-f722-4294-bb14-18be8199bda5 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-6401c32d-f722-4294-bb14-18be8199bda5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6401c32d-f722-4294-bb14-18be8199bda5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6401c32d-f722-4294-bb14-18be8199bda5.shogun-image {
  box-sizing: border-box;
}



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





  img.s-6401c32d-f722-4294-bb14-18be8199bda5.shogun-image {
    
    
  }


.s-6401c32d-f722-4294-bb14-18be8199bda5 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-6401c32d-f722-4294-bb14-18be8199bda5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6401c32d-f722-4294-bb14-18be8199bda5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6401c32d-f722-4294-bb14-18be8199bda5.shogun-image {
  box-sizing: border-box;
}



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





  img.s-6401c32d-f722-4294-bb14-18be8199bda5.shogun-image {
    
    
  }


.s-6401c32d-f722-4294-bb14-18be8199bda5 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-6401c32d-f722-4294-bb14-18be8199bda5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6401c32d-f722-4294-bb14-18be8199bda5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6401c32d-f722-4294-bb14-18be8199bda5.shogun-image {
  box-sizing: border-box;
}



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





  img.s-6401c32d-f722-4294-bb14-18be8199bda5.shogun-image {
    
    
  }


.s-6401c32d-f722-4294-bb14-18be8199bda5 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-6401c32d-f722-4294-bb14-18be8199bda5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6401c32d-f722-4294-bb14-18be8199bda5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6401c32d-f722-4294-bb14-18be8199bda5.shogun-image {
  box-sizing: border-box;
}



}
#s-cad897b2-2e18-45d7-992f-3f957bbf7194 {
  margin-top: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-cad897b2-2e18-45d7-992f-3f957bbf7194 .shogun-heading-component h5 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-d0a56d41-3728-4fd1-9834-5c57286d98ac {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-d0a56d41-3728-4fd1-9834-5c57286d98ac > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d0a56d41-3728-4fd1-9834-5c57286d98ac.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6615d29b-e711-4cad-8ee9-64f4de15da6c {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: rgba(255, 255, 255, 1);
border-radius: 3px;
max-width: 100%;
background-color: rgba(255, 255, 255, 0.5);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-6615d29b-e711-4cad-8ee9-64f4de15da6c:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: rgba(255, 255, 255, 0.36) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-6615d29b-e711-4cad-8ee9-64f4de15da6c:active {background-color: rgba(255, 255, 255, 0.51) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-6615d29b-e711-4cad-8ee9-64f4de15da6c-root {
    text-align: center;
  }


#s-6615d29b-e711-4cad-8ee9-64f4de15da6c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-6615d29b-e711-4cad-8ee9-64f4de15da6c-root {
    text-align: center;
  }


#s-6615d29b-e711-4cad-8ee9-64f4de15da6c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6615d29b-e711-4cad-8ee9-64f4de15da6c-root {
    text-align: center;
  }


#s-6615d29b-e711-4cad-8ee9-64f4de15da6c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6615d29b-e711-4cad-8ee9-64f4de15da6c-root {
    text-align: center;
  }


#s-6615d29b-e711-4cad-8ee9-64f4de15da6c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-6615d29b-e711-4cad-8ee9-64f4de15da6c-root {
    text-align: center;
  }


#s-6615d29b-e711-4cad-8ee9-64f4de15da6c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-6615d29b-e711-4cad-8ee9-64f4de15da6c-root {
    text-align: center;
  }


#s-6615d29b-e711-4cad-8ee9-64f4de15da6c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-9d328895-eb26-4fd4-b7a2-283444d2b912 {
  margin-top: 13%;
}

#s-9d328895-eb26-4fd4-b7a2-283444d2b912 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(14, calc(100vw / 24));
}

#s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff {
  aspect-ratio: 11/11;
text-align: center;
}

#s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff-root {
  grid-column-start: 1;
grid-column-end: 12;
grid-row-start: 4;
grid-row-end: 15;
z-index: 0;
}





  #s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff img.shogun-image,
  #s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff {
    width: 100%;
    height: auto;
  }

  #s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff.shogun-image {
    
    
  }


.s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff .shogun-image-content {
  
    align-items: center;
  
}

.s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff.shogun-image-container {
      position: relative;
    }

    .s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff img.shogun-image,
  #s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff {
    width: 100%;
    height: auto;
  }

  #s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff.shogun-image {
    
    
  }


.s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff .shogun-image-content {
  
    align-items: center;
  
}

.s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff.shogun-image-container {
      position: relative;
    }

    .s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff img.shogun-image,
  #s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff {
    width: 100%;
    height: auto;
  }

  #s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff.shogun-image {
    
    
  }


.s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff .shogun-image-content {
  
    align-items: center;
  
}

.s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff.shogun-image-container {
      position: relative;
    }

    .s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff img.shogun-image,
  #s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff {
    width: 100%;
    height: auto;
  }

  #s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff.shogun-image {
    
    
  }


.s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff .shogun-image-content {
  
    align-items: center;
  
}

.s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff.shogun-image-container {
      position: relative;
    }

    .s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff img.shogun-image,
  #s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff {
    width: 100%;
    height: auto;
  }

  #s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff.shogun-image {
    
    
  }


.s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff .shogun-image-content {
  
    align-items: center;
  
}

.s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff.shogun-image-container {
      position: relative;
    }

    .s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9e8acb8b-ccb7-4f3b-98a6-d765eb763fff img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-f338dc0a-06e3-4274-8765-91e0f7aa000e {
  aspect-ratio: 14/14;
text-align: center;
}

#s-f338dc0a-06e3-4274-8765-91e0f7aa000e-root {
  grid-column-start: 11;
grid-column-end: 25;
grid-row-start: 1;
grid-row-end: 15;
z-index: 1;
}





  #s-f338dc0a-06e3-4274-8765-91e0f7aa000e img.shogun-image,
  #s-f338dc0a-06e3-4274-8765-91e0f7aa000e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f338dc0a-06e3-4274-8765-91e0f7aa000e {
    width: 100%;
    height: auto;
  }

  #s-f338dc0a-06e3-4274-8765-91e0f7aa000e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f338dc0a-06e3-4274-8765-91e0f7aa000e.shogun-image {
    
    
  }


.s-f338dc0a-06e3-4274-8765-91e0f7aa000e .shogun-image-content {
  
    align-items: center;
  
}

.s-f338dc0a-06e3-4274-8765-91e0f7aa000e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f338dc0a-06e3-4274-8765-91e0f7aa000e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f338dc0a-06e3-4274-8765-91e0f7aa000e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f338dc0a-06e3-4274-8765-91e0f7aa000e {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-f338dc0a-06e3-4274-8765-91e0f7aa000e.shogun-image-container {
      position: relative;
    }

    .s-f338dc0a-06e3-4274-8765-91e0f7aa000e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f338dc0a-06e3-4274-8765-91e0f7aa000e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f338dc0a-06e3-4274-8765-91e0f7aa000e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-f338dc0a-06e3-4274-8765-91e0f7aa000e img.shogun-image,
  #s-f338dc0a-06e3-4274-8765-91e0f7aa000e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f338dc0a-06e3-4274-8765-91e0f7aa000e {
    width: 100%;
    height: auto;
  }

  #s-f338dc0a-06e3-4274-8765-91e0f7aa000e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f338dc0a-06e3-4274-8765-91e0f7aa000e.shogun-image {
    
    
  }


.s-f338dc0a-06e3-4274-8765-91e0f7aa000e .shogun-image-content {
  
    align-items: center;
  
}

.s-f338dc0a-06e3-4274-8765-91e0f7aa000e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f338dc0a-06e3-4274-8765-91e0f7aa000e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f338dc0a-06e3-4274-8765-91e0f7aa000e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f338dc0a-06e3-4274-8765-91e0f7aa000e {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-f338dc0a-06e3-4274-8765-91e0f7aa000e.shogun-image-container {
      position: relative;
    }

    .s-f338dc0a-06e3-4274-8765-91e0f7aa000e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f338dc0a-06e3-4274-8765-91e0f7aa000e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f338dc0a-06e3-4274-8765-91e0f7aa000e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-f338dc0a-06e3-4274-8765-91e0f7aa000e img.shogun-image,
  #s-f338dc0a-06e3-4274-8765-91e0f7aa000e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f338dc0a-06e3-4274-8765-91e0f7aa000e {
    width: 100%;
    height: auto;
  }

  #s-f338dc0a-06e3-4274-8765-91e0f7aa000e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f338dc0a-06e3-4274-8765-91e0f7aa000e.shogun-image {
    
    
  }


.s-f338dc0a-06e3-4274-8765-91e0f7aa000e .shogun-image-content {
  
    align-items: center;
  
}

.s-f338dc0a-06e3-4274-8765-91e0f7aa000e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f338dc0a-06e3-4274-8765-91e0f7aa000e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f338dc0a-06e3-4274-8765-91e0f7aa000e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f338dc0a-06e3-4274-8765-91e0f7aa000e {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-f338dc0a-06e3-4274-8765-91e0f7aa000e.shogun-image-container {
      position: relative;
    }

    .s-f338dc0a-06e3-4274-8765-91e0f7aa000e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f338dc0a-06e3-4274-8765-91e0f7aa000e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f338dc0a-06e3-4274-8765-91e0f7aa000e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-f338dc0a-06e3-4274-8765-91e0f7aa000e img.shogun-image,
  #s-f338dc0a-06e3-4274-8765-91e0f7aa000e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f338dc0a-06e3-4274-8765-91e0f7aa000e {
    width: 100%;
    height: auto;
  }

  #s-f338dc0a-06e3-4274-8765-91e0f7aa000e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f338dc0a-06e3-4274-8765-91e0f7aa000e.shogun-image {
    
    
  }


.s-f338dc0a-06e3-4274-8765-91e0f7aa000e .shogun-image-content {
  
    align-items: center;
  
}

.s-f338dc0a-06e3-4274-8765-91e0f7aa000e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f338dc0a-06e3-4274-8765-91e0f7aa000e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f338dc0a-06e3-4274-8765-91e0f7aa000e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f338dc0a-06e3-4274-8765-91e0f7aa000e {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-f338dc0a-06e3-4274-8765-91e0f7aa000e.shogun-image-container {
      position: relative;
    }

    .s-f338dc0a-06e3-4274-8765-91e0f7aa000e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f338dc0a-06e3-4274-8765-91e0f7aa000e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f338dc0a-06e3-4274-8765-91e0f7aa000e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-f338dc0a-06e3-4274-8765-91e0f7aa000e img.shogun-image,
  #s-f338dc0a-06e3-4274-8765-91e0f7aa000e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f338dc0a-06e3-4274-8765-91e0f7aa000e {
    width: 100%;
    height: auto;
  }

  #s-f338dc0a-06e3-4274-8765-91e0f7aa000e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f338dc0a-06e3-4274-8765-91e0f7aa000e.shogun-image {
    
    
  }


.s-f338dc0a-06e3-4274-8765-91e0f7aa000e .shogun-image-content {
  
    align-items: center;
  
}

.s-f338dc0a-06e3-4274-8765-91e0f7aa000e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f338dc0a-06e3-4274-8765-91e0f7aa000e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f338dc0a-06e3-4274-8765-91e0f7aa000e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f338dc0a-06e3-4274-8765-91e0f7aa000e {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-f338dc0a-06e3-4274-8765-91e0f7aa000e.shogun-image-container {
      position: relative;
    }

    .s-f338dc0a-06e3-4274-8765-91e0f7aa000e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f338dc0a-06e3-4274-8765-91e0f7aa000e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f338dc0a-06e3-4274-8765-91e0f7aa000e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-71a50006-42eb-45c6-8748-1317235b0bff {
  margin-top: -1%;
}

#s-71a50006-42eb-45c6-8748-1317235b0bff .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(5, calc(100vw / 24));
}

#s-6aef2332-7c8d-4aee-832e-68379e457e01 {
  margin-left: 0%;
margin-right: 20%;
text-align: center;
}

#s-6aef2332-7c8d-4aee-832e-68379e457e01-root {
  grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 2;
grid-row-end: 6;
z-index: 0;
}







  img.s-6aef2332-7c8d-4aee-832e-68379e457e01.shogun-image {
    
    
  }


.s-6aef2332-7c8d-4aee-832e-68379e457e01 .shogun-image-content {
  
    align-items: center;
  
}

.s-6aef2332-7c8d-4aee-832e-68379e457e01.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6aef2332-7c8d-4aee-832e-68379e457e01.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6aef2332-7c8d-4aee-832e-68379e457e01.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-6aef2332-7c8d-4aee-832e-68379e457e01.shogun-image {
    
    
  }


.s-6aef2332-7c8d-4aee-832e-68379e457e01 .shogun-image-content {
  
    align-items: center;
  
}

.s-6aef2332-7c8d-4aee-832e-68379e457e01.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6aef2332-7c8d-4aee-832e-68379e457e01.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6aef2332-7c8d-4aee-832e-68379e457e01.shogun-image {
  box-sizing: border-box;
}



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





  img.s-6aef2332-7c8d-4aee-832e-68379e457e01.shogun-image {
    
    
  }


.s-6aef2332-7c8d-4aee-832e-68379e457e01 .shogun-image-content {
  
    align-items: center;
  
}

.s-6aef2332-7c8d-4aee-832e-68379e457e01.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6aef2332-7c8d-4aee-832e-68379e457e01.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6aef2332-7c8d-4aee-832e-68379e457e01.shogun-image {
  box-sizing: border-box;
}



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





  img.s-6aef2332-7c8d-4aee-832e-68379e457e01.shogun-image {
    
    
  }


.s-6aef2332-7c8d-4aee-832e-68379e457e01 .shogun-image-content {
  
    align-items: center;
  
}

.s-6aef2332-7c8d-4aee-832e-68379e457e01.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6aef2332-7c8d-4aee-832e-68379e457e01.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6aef2332-7c8d-4aee-832e-68379e457e01.shogun-image {
  box-sizing: border-box;
}



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





  img.s-6aef2332-7c8d-4aee-832e-68379e457e01.shogun-image {
    
    
  }


.s-6aef2332-7c8d-4aee-832e-68379e457e01 .shogun-image-content {
  
    align-items: center;
  
}

.s-6aef2332-7c8d-4aee-832e-68379e457e01.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6aef2332-7c8d-4aee-832e-68379e457e01.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6aef2332-7c8d-4aee-832e-68379e457e01.shogun-image {
  box-sizing: border-box;
}



}
#s-6ae2fed2-d21c-494f-986d-2015d89ce1e9 {
  margin-top: 5%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6ae2fed2-d21c-494f-986d-2015d89ce1e9 {
  grid-column-start: 6;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 6;
z-index: 1;
}

#s-6ae2fed2-d21c-494f-986d-2015d89ce1e9 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 1px;
  text-align: left;
}



#s-b556c3c8-7cc7-41c7-8791-fe2e4b36d059 {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-e53b8315-bb6d-4b4e-9a96-3ed588f54590 {
  text-align: left;
}

#s-d38101aa-60cf-4c07-86c6-d51380bace48 {
  margin-top: 3%;
margin-left: 5%;
margin-bottom: 5%;
margin-right: 5%;
min-height: 50px;
}
@media (min-width: 1200px){#s-d38101aa-60cf-4c07-86c6-d51380bace48 {
  display: none;
}
#s-d38101aa-60cf-4c07-86c6-d51380bace48, #wrap-s-d38101aa-60cf-4c07-86c6-d51380bace48 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d38101aa-60cf-4c07-86c6-d51380bace48 {
  display: none;
}
#s-d38101aa-60cf-4c07-86c6-d51380bace48, #wrap-s-d38101aa-60cf-4c07-86c6-d51380bace48 { display: none !important; }}







#s-d38101aa-60cf-4c07-86c6-d51380bace48 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d38101aa-60cf-4c07-86c6-d51380bace48.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-82452d1b-ade6-4962-8c36-b6c1cf3159d5 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(13, calc(100vw / 24));
}

#s-cc58c6b1-e085-42dd-966f-9d76f407cda9 {
  aspect-ratio: 12/12;
text-align: center;
}

#s-cc58c6b1-e085-42dd-966f-9d76f407cda9-root {
  grid-column-start: 1;
grid-column-end: 13;
grid-row-start: 1;
grid-row-end: 13;
z-index: 0;
}





  #s-cc58c6b1-e085-42dd-966f-9d76f407cda9 img.shogun-image,
  #s-cc58c6b1-e085-42dd-966f-9d76f407cda9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cc58c6b1-e085-42dd-966f-9d76f407cda9 {
    width: 100%;
    height: auto;
  }

  #s-cc58c6b1-e085-42dd-966f-9d76f407cda9 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cc58c6b1-e085-42dd-966f-9d76f407cda9.shogun-image {
    
    
  }


.s-cc58c6b1-e085-42dd-966f-9d76f407cda9 .shogun-image-content {
  
    align-items: center;
  
}

.s-cc58c6b1-e085-42dd-966f-9d76f407cda9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc58c6b1-e085-42dd-966f-9d76f407cda9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc58c6b1-e085-42dd-966f-9d76f407cda9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cc58c6b1-e085-42dd-966f-9d76f407cda9 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-cc58c6b1-e085-42dd-966f-9d76f407cda9.shogun-image-container {
      position: relative;
    }

    .s-cc58c6b1-e085-42dd-966f-9d76f407cda9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cc58c6b1-e085-42dd-966f-9d76f407cda9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cc58c6b1-e085-42dd-966f-9d76f407cda9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-cc58c6b1-e085-42dd-966f-9d76f407cda9 img.shogun-image,
  #s-cc58c6b1-e085-42dd-966f-9d76f407cda9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cc58c6b1-e085-42dd-966f-9d76f407cda9 {
    width: 100%;
    height: auto;
  }

  #s-cc58c6b1-e085-42dd-966f-9d76f407cda9 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cc58c6b1-e085-42dd-966f-9d76f407cda9.shogun-image {
    
    
  }


.s-cc58c6b1-e085-42dd-966f-9d76f407cda9 .shogun-image-content {
  
    align-items: center;
  
}

.s-cc58c6b1-e085-42dd-966f-9d76f407cda9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc58c6b1-e085-42dd-966f-9d76f407cda9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc58c6b1-e085-42dd-966f-9d76f407cda9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cc58c6b1-e085-42dd-966f-9d76f407cda9 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-cc58c6b1-e085-42dd-966f-9d76f407cda9.shogun-image-container {
      position: relative;
    }

    .s-cc58c6b1-e085-42dd-966f-9d76f407cda9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cc58c6b1-e085-42dd-966f-9d76f407cda9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cc58c6b1-e085-42dd-966f-9d76f407cda9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-cc58c6b1-e085-42dd-966f-9d76f407cda9 img.shogun-image,
  #s-cc58c6b1-e085-42dd-966f-9d76f407cda9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cc58c6b1-e085-42dd-966f-9d76f407cda9 {
    width: 100%;
    height: auto;
  }

  #s-cc58c6b1-e085-42dd-966f-9d76f407cda9 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cc58c6b1-e085-42dd-966f-9d76f407cda9.shogun-image {
    
    
  }


.s-cc58c6b1-e085-42dd-966f-9d76f407cda9 .shogun-image-content {
  
    align-items: center;
  
}

.s-cc58c6b1-e085-42dd-966f-9d76f407cda9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc58c6b1-e085-42dd-966f-9d76f407cda9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc58c6b1-e085-42dd-966f-9d76f407cda9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cc58c6b1-e085-42dd-966f-9d76f407cda9 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-cc58c6b1-e085-42dd-966f-9d76f407cda9.shogun-image-container {
      position: relative;
    }

    .s-cc58c6b1-e085-42dd-966f-9d76f407cda9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cc58c6b1-e085-42dd-966f-9d76f407cda9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cc58c6b1-e085-42dd-966f-9d76f407cda9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-cc58c6b1-e085-42dd-966f-9d76f407cda9 img.shogun-image,
  #s-cc58c6b1-e085-42dd-966f-9d76f407cda9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cc58c6b1-e085-42dd-966f-9d76f407cda9 {
    width: 100%;
    height: auto;
  }

  #s-cc58c6b1-e085-42dd-966f-9d76f407cda9 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cc58c6b1-e085-42dd-966f-9d76f407cda9.shogun-image {
    
    
  }


.s-cc58c6b1-e085-42dd-966f-9d76f407cda9 .shogun-image-content {
  
    align-items: center;
  
}

.s-cc58c6b1-e085-42dd-966f-9d76f407cda9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc58c6b1-e085-42dd-966f-9d76f407cda9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc58c6b1-e085-42dd-966f-9d76f407cda9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cc58c6b1-e085-42dd-966f-9d76f407cda9 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-cc58c6b1-e085-42dd-966f-9d76f407cda9.shogun-image-container {
      position: relative;
    }

    .s-cc58c6b1-e085-42dd-966f-9d76f407cda9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cc58c6b1-e085-42dd-966f-9d76f407cda9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cc58c6b1-e085-42dd-966f-9d76f407cda9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-cc58c6b1-e085-42dd-966f-9d76f407cda9 img.shogun-image,
  #s-cc58c6b1-e085-42dd-966f-9d76f407cda9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cc58c6b1-e085-42dd-966f-9d76f407cda9 {
    width: 100%;
    height: auto;
  }

  #s-cc58c6b1-e085-42dd-966f-9d76f407cda9 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cc58c6b1-e085-42dd-966f-9d76f407cda9.shogun-image {
    
    
  }


.s-cc58c6b1-e085-42dd-966f-9d76f407cda9 .shogun-image-content {
  
    align-items: center;
  
}

.s-cc58c6b1-e085-42dd-966f-9d76f407cda9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc58c6b1-e085-42dd-966f-9d76f407cda9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc58c6b1-e085-42dd-966f-9d76f407cda9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cc58c6b1-e085-42dd-966f-9d76f407cda9 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-cc58c6b1-e085-42dd-966f-9d76f407cda9.shogun-image-container {
      position: relative;
    }

    .s-cc58c6b1-e085-42dd-966f-9d76f407cda9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cc58c6b1-e085-42dd-966f-9d76f407cda9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cc58c6b1-e085-42dd-966f-9d76f407cda9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-3fe93f4d-96e5-4541-b73b-88ff266e6086 {
  aspect-ratio: 12/12;
text-align: center;
}

#s-3fe93f4d-96e5-4541-b73b-88ff266e6086-root {
  grid-column-start: 12;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 14;
z-index: 1;
}





  #s-3fe93f4d-96e5-4541-b73b-88ff266e6086 img.shogun-image,
  #s-3fe93f4d-96e5-4541-b73b-88ff266e6086 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3fe93f4d-96e5-4541-b73b-88ff266e6086 {
    width: 100%;
    height: auto;
  }

  #s-3fe93f4d-96e5-4541-b73b-88ff266e6086 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3fe93f4d-96e5-4541-b73b-88ff266e6086.shogun-image {
    
    
  }


.s-3fe93f4d-96e5-4541-b73b-88ff266e6086 .shogun-image-content {
  
    align-items: center;
  
}

.s-3fe93f4d-96e5-4541-b73b-88ff266e6086.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3fe93f4d-96e5-4541-b73b-88ff266e6086.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3fe93f4d-96e5-4541-b73b-88ff266e6086.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3fe93f4d-96e5-4541-b73b-88ff266e6086 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-3fe93f4d-96e5-4541-b73b-88ff266e6086.shogun-image-container {
      position: relative;
    }

    .s-3fe93f4d-96e5-4541-b73b-88ff266e6086.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3fe93f4d-96e5-4541-b73b-88ff266e6086.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3fe93f4d-96e5-4541-b73b-88ff266e6086 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-3fe93f4d-96e5-4541-b73b-88ff266e6086 img.shogun-image,
  #s-3fe93f4d-96e5-4541-b73b-88ff266e6086 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3fe93f4d-96e5-4541-b73b-88ff266e6086 {
    width: 100%;
    height: auto;
  }

  #s-3fe93f4d-96e5-4541-b73b-88ff266e6086 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3fe93f4d-96e5-4541-b73b-88ff266e6086.shogun-image {
    
    
  }


.s-3fe93f4d-96e5-4541-b73b-88ff266e6086 .shogun-image-content {
  
    align-items: center;
  
}

.s-3fe93f4d-96e5-4541-b73b-88ff266e6086.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3fe93f4d-96e5-4541-b73b-88ff266e6086.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3fe93f4d-96e5-4541-b73b-88ff266e6086.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3fe93f4d-96e5-4541-b73b-88ff266e6086 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-3fe93f4d-96e5-4541-b73b-88ff266e6086.shogun-image-container {
      position: relative;
    }

    .s-3fe93f4d-96e5-4541-b73b-88ff266e6086.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3fe93f4d-96e5-4541-b73b-88ff266e6086.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3fe93f4d-96e5-4541-b73b-88ff266e6086 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-3fe93f4d-96e5-4541-b73b-88ff266e6086 img.shogun-image,
  #s-3fe93f4d-96e5-4541-b73b-88ff266e6086 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3fe93f4d-96e5-4541-b73b-88ff266e6086 {
    width: 100%;
    height: auto;
  }

  #s-3fe93f4d-96e5-4541-b73b-88ff266e6086 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3fe93f4d-96e5-4541-b73b-88ff266e6086.shogun-image {
    
    
  }


.s-3fe93f4d-96e5-4541-b73b-88ff266e6086 .shogun-image-content {
  
    align-items: center;
  
}

.s-3fe93f4d-96e5-4541-b73b-88ff266e6086.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3fe93f4d-96e5-4541-b73b-88ff266e6086.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3fe93f4d-96e5-4541-b73b-88ff266e6086.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3fe93f4d-96e5-4541-b73b-88ff266e6086 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-3fe93f4d-96e5-4541-b73b-88ff266e6086.shogun-image-container {
      position: relative;
    }

    .s-3fe93f4d-96e5-4541-b73b-88ff266e6086.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3fe93f4d-96e5-4541-b73b-88ff266e6086.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3fe93f4d-96e5-4541-b73b-88ff266e6086 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-3fe93f4d-96e5-4541-b73b-88ff266e6086 img.shogun-image,
  #s-3fe93f4d-96e5-4541-b73b-88ff266e6086 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3fe93f4d-96e5-4541-b73b-88ff266e6086 {
    width: 100%;
    height: auto;
  }

  #s-3fe93f4d-96e5-4541-b73b-88ff266e6086 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3fe93f4d-96e5-4541-b73b-88ff266e6086.shogun-image {
    
    
  }


.s-3fe93f4d-96e5-4541-b73b-88ff266e6086 .shogun-image-content {
  
    align-items: center;
  
}

.s-3fe93f4d-96e5-4541-b73b-88ff266e6086.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3fe93f4d-96e5-4541-b73b-88ff266e6086.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3fe93f4d-96e5-4541-b73b-88ff266e6086.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3fe93f4d-96e5-4541-b73b-88ff266e6086 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-3fe93f4d-96e5-4541-b73b-88ff266e6086.shogun-image-container {
      position: relative;
    }

    .s-3fe93f4d-96e5-4541-b73b-88ff266e6086.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3fe93f4d-96e5-4541-b73b-88ff266e6086.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3fe93f4d-96e5-4541-b73b-88ff266e6086 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-3fe93f4d-96e5-4541-b73b-88ff266e6086 img.shogun-image,
  #s-3fe93f4d-96e5-4541-b73b-88ff266e6086 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3fe93f4d-96e5-4541-b73b-88ff266e6086 {
    width: 100%;
    height: auto;
  }

  #s-3fe93f4d-96e5-4541-b73b-88ff266e6086 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3fe93f4d-96e5-4541-b73b-88ff266e6086.shogun-image {
    
    
  }


.s-3fe93f4d-96e5-4541-b73b-88ff266e6086 .shogun-image-content {
  
    align-items: center;
  
}

.s-3fe93f4d-96e5-4541-b73b-88ff266e6086.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3fe93f4d-96e5-4541-b73b-88ff266e6086.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3fe93f4d-96e5-4541-b73b-88ff266e6086.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3fe93f4d-96e5-4541-b73b-88ff266e6086 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-3fe93f4d-96e5-4541-b73b-88ff266e6086.shogun-image-container {
      position: relative;
    }

    .s-3fe93f4d-96e5-4541-b73b-88ff266e6086.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3fe93f4d-96e5-4541-b73b-88ff266e6086.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3fe93f4d-96e5-4541-b73b-88ff266e6086 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-9589ba09-4659-406e-b0d1-3c9f4403af4f {
  margin-top: -1%;
margin-bottom: 0%;
}

#s-9589ba09-4659-406e-b0d1-3c9f4403af4f .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(5, calc(100vw / 24));
}

#s-847d47e8-a0e0-4485-b43f-6eed1d68b7e6 {
  margin-left: 0%;
margin-right: 20%;
text-align: center;
}

#s-847d47e8-a0e0-4485-b43f-6eed1d68b7e6-root {
  grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 2;
grid-row-end: 6;
z-index: 0;
}







  img.s-847d47e8-a0e0-4485-b43f-6eed1d68b7e6.shogun-image {
    
    
  }


.s-847d47e8-a0e0-4485-b43f-6eed1d68b7e6 .shogun-image-content {
  
    align-items: center;
  
}

.s-847d47e8-a0e0-4485-b43f-6eed1d68b7e6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-847d47e8-a0e0-4485-b43f-6eed1d68b7e6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-847d47e8-a0e0-4485-b43f-6eed1d68b7e6.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-847d47e8-a0e0-4485-b43f-6eed1d68b7e6.shogun-image {
    
    
  }


.s-847d47e8-a0e0-4485-b43f-6eed1d68b7e6 .shogun-image-content {
  
    align-items: center;
  
}

.s-847d47e8-a0e0-4485-b43f-6eed1d68b7e6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-847d47e8-a0e0-4485-b43f-6eed1d68b7e6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-847d47e8-a0e0-4485-b43f-6eed1d68b7e6.shogun-image {
  box-sizing: border-box;
}



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





  img.s-847d47e8-a0e0-4485-b43f-6eed1d68b7e6.shogun-image {
    
    
  }


.s-847d47e8-a0e0-4485-b43f-6eed1d68b7e6 .shogun-image-content {
  
    align-items: center;
  
}

.s-847d47e8-a0e0-4485-b43f-6eed1d68b7e6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-847d47e8-a0e0-4485-b43f-6eed1d68b7e6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-847d47e8-a0e0-4485-b43f-6eed1d68b7e6.shogun-image {
  box-sizing: border-box;
}



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





  img.s-847d47e8-a0e0-4485-b43f-6eed1d68b7e6.shogun-image {
    
    
  }


.s-847d47e8-a0e0-4485-b43f-6eed1d68b7e6 .shogun-image-content {
  
    align-items: center;
  
}

.s-847d47e8-a0e0-4485-b43f-6eed1d68b7e6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-847d47e8-a0e0-4485-b43f-6eed1d68b7e6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-847d47e8-a0e0-4485-b43f-6eed1d68b7e6.shogun-image {
  box-sizing: border-box;
}



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





  img.s-847d47e8-a0e0-4485-b43f-6eed1d68b7e6.shogun-image {
    
    
  }


.s-847d47e8-a0e0-4485-b43f-6eed1d68b7e6 .shogun-image-content {
  
    align-items: center;
  
}

.s-847d47e8-a0e0-4485-b43f-6eed1d68b7e6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-847d47e8-a0e0-4485-b43f-6eed1d68b7e6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-847d47e8-a0e0-4485-b43f-6eed1d68b7e6.shogun-image {
  box-sizing: border-box;
}



}
#s-a9be52e0-9bba-4dde-b2f5-18a7d702d0f8 {
  margin-top: 6%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a9be52e0-9bba-4dde-b2f5-18a7d702d0f8 {
  grid-column-start: 6;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 6;
z-index: 1;
}

#s-a9be52e0-9bba-4dde-b2f5-18a7d702d0f8 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 1px;
  text-align: left;
}



#s-30f34603-45c0-4f5b-985e-aa529ba0d854 {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-855c834c-9407-496c-abef-cab913be56fd {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-855c834c-9407-496c-abef-cab913be56fd img.shogun-image,
  #s-855c834c-9407-496c-abef-cab913be56fd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-855c834c-9407-496c-abef-cab913be56fd {
    width: 100%;
    height: auto;
  }

  #s-855c834c-9407-496c-abef-cab913be56fd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-855c834c-9407-496c-abef-cab913be56fd.shogun-image {
    
    
  }


.s-855c834c-9407-496c-abef-cab913be56fd .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-855c834c-9407-496c-abef-cab913be56fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-855c834c-9407-496c-abef-cab913be56fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-855c834c-9407-496c-abef-cab913be56fd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-855c834c-9407-496c-abef-cab913be56fd {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-855c834c-9407-496c-abef-cab913be56fd.shogun-image-container {
      position: relative;
    }

    .s-855c834c-9407-496c-abef-cab913be56fd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-855c834c-9407-496c-abef-cab913be56fd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-855c834c-9407-496c-abef-cab913be56fd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-855c834c-9407-496c-abef-cab913be56fd img.shogun-image,
  #s-855c834c-9407-496c-abef-cab913be56fd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-855c834c-9407-496c-abef-cab913be56fd {
    width: 100%;
    height: auto;
  }

  #s-855c834c-9407-496c-abef-cab913be56fd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-855c834c-9407-496c-abef-cab913be56fd.shogun-image {
    
    
  }


.s-855c834c-9407-496c-abef-cab913be56fd .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-855c834c-9407-496c-abef-cab913be56fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-855c834c-9407-496c-abef-cab913be56fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-855c834c-9407-496c-abef-cab913be56fd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-855c834c-9407-496c-abef-cab913be56fd {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-855c834c-9407-496c-abef-cab913be56fd.shogun-image-container {
      position: relative;
    }

    .s-855c834c-9407-496c-abef-cab913be56fd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-855c834c-9407-496c-abef-cab913be56fd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-855c834c-9407-496c-abef-cab913be56fd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-855c834c-9407-496c-abef-cab913be56fd img.shogun-image,
  #s-855c834c-9407-496c-abef-cab913be56fd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-855c834c-9407-496c-abef-cab913be56fd {
    width: 100%;
    height: auto;
  }

  #s-855c834c-9407-496c-abef-cab913be56fd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-855c834c-9407-496c-abef-cab913be56fd.shogun-image {
    
    
  }


.s-855c834c-9407-496c-abef-cab913be56fd .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-855c834c-9407-496c-abef-cab913be56fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-855c834c-9407-496c-abef-cab913be56fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-855c834c-9407-496c-abef-cab913be56fd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-855c834c-9407-496c-abef-cab913be56fd {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-855c834c-9407-496c-abef-cab913be56fd.shogun-image-container {
      position: relative;
    }

    .s-855c834c-9407-496c-abef-cab913be56fd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-855c834c-9407-496c-abef-cab913be56fd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-855c834c-9407-496c-abef-cab913be56fd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-855c834c-9407-496c-abef-cab913be56fd img.shogun-image,
  #s-855c834c-9407-496c-abef-cab913be56fd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-855c834c-9407-496c-abef-cab913be56fd {
    width: 100%;
    height: auto;
  }

  #s-855c834c-9407-496c-abef-cab913be56fd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-855c834c-9407-496c-abef-cab913be56fd.shogun-image {
    
    
  }


.s-855c834c-9407-496c-abef-cab913be56fd .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-855c834c-9407-496c-abef-cab913be56fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-855c834c-9407-496c-abef-cab913be56fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-855c834c-9407-496c-abef-cab913be56fd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-855c834c-9407-496c-abef-cab913be56fd {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-855c834c-9407-496c-abef-cab913be56fd.shogun-image-container {
      position: relative;
    }

    .s-855c834c-9407-496c-abef-cab913be56fd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-855c834c-9407-496c-abef-cab913be56fd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-855c834c-9407-496c-abef-cab913be56fd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-855c834c-9407-496c-abef-cab913be56fd img.shogun-image,
  #s-855c834c-9407-496c-abef-cab913be56fd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-855c834c-9407-496c-abef-cab913be56fd {
    width: 100%;
    height: auto;
  }

  #s-855c834c-9407-496c-abef-cab913be56fd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-855c834c-9407-496c-abef-cab913be56fd.shogun-image {
    
    
  }


.s-855c834c-9407-496c-abef-cab913be56fd .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-855c834c-9407-496c-abef-cab913be56fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-855c834c-9407-496c-abef-cab913be56fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-855c834c-9407-496c-abef-cab913be56fd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-855c834c-9407-496c-abef-cab913be56fd {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-855c834c-9407-496c-abef-cab913be56fd.shogun-image-container {
      position: relative;
    }

    .s-855c834c-9407-496c-abef-cab913be56fd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-855c834c-9407-496c-abef-cab913be56fd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-855c834c-9407-496c-abef-cab913be56fd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-03d95eef-9505-44fc-a0f3-2892aab15bdc {
  margin-top: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-03d95eef-9505-44fc-a0f3-2892aab15bdc .shogun-heading-component h5 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-7ccf98ae-0723-40c6-a73f-ff7c8a5edf43 {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-7ccf98ae-0723-40c6-a73f-ff7c8a5edf43 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7ccf98ae-0723-40c6-a73f-ff7c8a5edf43.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6d10f9a4-c3e9-4134-b984-1e3d6dcf32c0 {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: rgba(29, 29, 29, 0);
border-radius: 3px;
max-width: 100%;
background-color: rgba(29, 29, 29, 0.9);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-6d10f9a4-c3e9-4134-b984-1e3d6dcf32c0:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 0) !important;
background-color: rgba(74, 74, 74, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-6d10f9a4-c3e9-4134-b984-1e3d6dcf32c0:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(155, 155, 155, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-6d10f9a4-c3e9-4134-b984-1e3d6dcf32c0-root {
    text-align: center;
  }


#s-6d10f9a4-c3e9-4134-b984-1e3d6dcf32c0.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-6d10f9a4-c3e9-4134-b984-1e3d6dcf32c0-root {
    text-align: center;
  }


#s-6d10f9a4-c3e9-4134-b984-1e3d6dcf32c0.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6d10f9a4-c3e9-4134-b984-1e3d6dcf32c0-root {
    text-align: center;
  }


#s-6d10f9a4-c3e9-4134-b984-1e3d6dcf32c0.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6d10f9a4-c3e9-4134-b984-1e3d6dcf32c0-root {
    text-align: center;
  }


#s-6d10f9a4-c3e9-4134-b984-1e3d6dcf32c0.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-6d10f9a4-c3e9-4134-b984-1e3d6dcf32c0-root {
    text-align: center;
  }


#s-6d10f9a4-c3e9-4134-b984-1e3d6dcf32c0.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-6d10f9a4-c3e9-4134-b984-1e3d6dcf32c0-root {
    text-align: center;
  }


#s-6d10f9a4-c3e9-4134-b984-1e3d6dcf32c0.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-24c5600f-34f0-4439-87b5-0dabb4c7f0a3 {
  margin-top: 13%;
margin-bottom: 0%;
}

#s-24c5600f-34f0-4439-87b5-0dabb4c7f0a3 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(14, calc(100vw / 24));
}

#s-2267feb7-eb71-4645-9560-5cff85e1ac21 {
  aspect-ratio: 13/13;
text-align: center;
}

#s-2267feb7-eb71-4645-9560-5cff85e1ac21-root {
  grid-column-start: 1;
grid-column-end: 14;
grid-row-start: 1;
grid-row-end: 14;
z-index: 0;
}





  #s-2267feb7-eb71-4645-9560-5cff85e1ac21 img.shogun-image,
  #s-2267feb7-eb71-4645-9560-5cff85e1ac21 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2267feb7-eb71-4645-9560-5cff85e1ac21 {
    width: 100%;
    height: auto;
  }

  #s-2267feb7-eb71-4645-9560-5cff85e1ac21 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2267feb7-eb71-4645-9560-5cff85e1ac21.shogun-image {
    
    
  }


.s-2267feb7-eb71-4645-9560-5cff85e1ac21 .shogun-image-content {
  
    align-items: center;
  
}

.s-2267feb7-eb71-4645-9560-5cff85e1ac21.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2267feb7-eb71-4645-9560-5cff85e1ac21.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2267feb7-eb71-4645-9560-5cff85e1ac21.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2267feb7-eb71-4645-9560-5cff85e1ac21 {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-2267feb7-eb71-4645-9560-5cff85e1ac21.shogun-image-container {
      position: relative;
    }

    .s-2267feb7-eb71-4645-9560-5cff85e1ac21.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2267feb7-eb71-4645-9560-5cff85e1ac21.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2267feb7-eb71-4645-9560-5cff85e1ac21 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-2267feb7-eb71-4645-9560-5cff85e1ac21 img.shogun-image,
  #s-2267feb7-eb71-4645-9560-5cff85e1ac21 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2267feb7-eb71-4645-9560-5cff85e1ac21 {
    width: 100%;
    height: auto;
  }

  #s-2267feb7-eb71-4645-9560-5cff85e1ac21 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2267feb7-eb71-4645-9560-5cff85e1ac21.shogun-image {
    
    
  }


.s-2267feb7-eb71-4645-9560-5cff85e1ac21 .shogun-image-content {
  
    align-items: center;
  
}

.s-2267feb7-eb71-4645-9560-5cff85e1ac21.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2267feb7-eb71-4645-9560-5cff85e1ac21.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2267feb7-eb71-4645-9560-5cff85e1ac21.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2267feb7-eb71-4645-9560-5cff85e1ac21 {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-2267feb7-eb71-4645-9560-5cff85e1ac21.shogun-image-container {
      position: relative;
    }

    .s-2267feb7-eb71-4645-9560-5cff85e1ac21.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2267feb7-eb71-4645-9560-5cff85e1ac21.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2267feb7-eb71-4645-9560-5cff85e1ac21 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-2267feb7-eb71-4645-9560-5cff85e1ac21 img.shogun-image,
  #s-2267feb7-eb71-4645-9560-5cff85e1ac21 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2267feb7-eb71-4645-9560-5cff85e1ac21 {
    width: 100%;
    height: auto;
  }

  #s-2267feb7-eb71-4645-9560-5cff85e1ac21 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2267feb7-eb71-4645-9560-5cff85e1ac21.shogun-image {
    
    
  }


.s-2267feb7-eb71-4645-9560-5cff85e1ac21 .shogun-image-content {
  
    align-items: center;
  
}

.s-2267feb7-eb71-4645-9560-5cff85e1ac21.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2267feb7-eb71-4645-9560-5cff85e1ac21.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2267feb7-eb71-4645-9560-5cff85e1ac21.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2267feb7-eb71-4645-9560-5cff85e1ac21 {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-2267feb7-eb71-4645-9560-5cff85e1ac21.shogun-image-container {
      position: relative;
    }

    .s-2267feb7-eb71-4645-9560-5cff85e1ac21.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2267feb7-eb71-4645-9560-5cff85e1ac21.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2267feb7-eb71-4645-9560-5cff85e1ac21 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-2267feb7-eb71-4645-9560-5cff85e1ac21 img.shogun-image,
  #s-2267feb7-eb71-4645-9560-5cff85e1ac21 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2267feb7-eb71-4645-9560-5cff85e1ac21 {
    width: 100%;
    height: auto;
  }

  #s-2267feb7-eb71-4645-9560-5cff85e1ac21 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2267feb7-eb71-4645-9560-5cff85e1ac21.shogun-image {
    
    
  }


.s-2267feb7-eb71-4645-9560-5cff85e1ac21 .shogun-image-content {
  
    align-items: center;
  
}

.s-2267feb7-eb71-4645-9560-5cff85e1ac21.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2267feb7-eb71-4645-9560-5cff85e1ac21.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2267feb7-eb71-4645-9560-5cff85e1ac21.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2267feb7-eb71-4645-9560-5cff85e1ac21 {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-2267feb7-eb71-4645-9560-5cff85e1ac21.shogun-image-container {
      position: relative;
    }

    .s-2267feb7-eb71-4645-9560-5cff85e1ac21.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2267feb7-eb71-4645-9560-5cff85e1ac21.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2267feb7-eb71-4645-9560-5cff85e1ac21 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-2267feb7-eb71-4645-9560-5cff85e1ac21 img.shogun-image,
  #s-2267feb7-eb71-4645-9560-5cff85e1ac21 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2267feb7-eb71-4645-9560-5cff85e1ac21 {
    width: 100%;
    height: auto;
  }

  #s-2267feb7-eb71-4645-9560-5cff85e1ac21 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2267feb7-eb71-4645-9560-5cff85e1ac21.shogun-image {
    
    
  }


.s-2267feb7-eb71-4645-9560-5cff85e1ac21 .shogun-image-content {
  
    align-items: center;
  
}

.s-2267feb7-eb71-4645-9560-5cff85e1ac21.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2267feb7-eb71-4645-9560-5cff85e1ac21.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2267feb7-eb71-4645-9560-5cff85e1ac21.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2267feb7-eb71-4645-9560-5cff85e1ac21 {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-2267feb7-eb71-4645-9560-5cff85e1ac21.shogun-image-container {
      position: relative;
    }

    .s-2267feb7-eb71-4645-9560-5cff85e1ac21.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2267feb7-eb71-4645-9560-5cff85e1ac21.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2267feb7-eb71-4645-9560-5cff85e1ac21 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-9f63caff-50b4-48f8-9789-ab810f4e324b {
  aspect-ratio: 12/12;
text-align: center;
}

#s-9f63caff-50b4-48f8-9789-ab810f4e324b-root {
  grid-column-start: 13;
grid-column-end: 25;
grid-row-start: 3;
grid-row-end: 15;
z-index: 1;
}





  #s-9f63caff-50b4-48f8-9789-ab810f4e324b img.shogun-image,
  #s-9f63caff-50b4-48f8-9789-ab810f4e324b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9f63caff-50b4-48f8-9789-ab810f4e324b {
    width: 100%;
    height: auto;
  }

  #s-9f63caff-50b4-48f8-9789-ab810f4e324b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9f63caff-50b4-48f8-9789-ab810f4e324b.shogun-image {
    
    
  }


.s-9f63caff-50b4-48f8-9789-ab810f4e324b .shogun-image-content {
  
    align-items: center;
  
}

.s-9f63caff-50b4-48f8-9789-ab810f4e324b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f63caff-50b4-48f8-9789-ab810f4e324b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f63caff-50b4-48f8-9789-ab810f4e324b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9f63caff-50b4-48f8-9789-ab810f4e324b {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-9f63caff-50b4-48f8-9789-ab810f4e324b.shogun-image-container {
      position: relative;
    }

    .s-9f63caff-50b4-48f8-9789-ab810f4e324b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9f63caff-50b4-48f8-9789-ab810f4e324b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9f63caff-50b4-48f8-9789-ab810f4e324b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-9f63caff-50b4-48f8-9789-ab810f4e324b img.shogun-image,
  #s-9f63caff-50b4-48f8-9789-ab810f4e324b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9f63caff-50b4-48f8-9789-ab810f4e324b {
    width: 100%;
    height: auto;
  }

  #s-9f63caff-50b4-48f8-9789-ab810f4e324b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9f63caff-50b4-48f8-9789-ab810f4e324b.shogun-image {
    
    
  }


.s-9f63caff-50b4-48f8-9789-ab810f4e324b .shogun-image-content {
  
    align-items: center;
  
}

.s-9f63caff-50b4-48f8-9789-ab810f4e324b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f63caff-50b4-48f8-9789-ab810f4e324b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f63caff-50b4-48f8-9789-ab810f4e324b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9f63caff-50b4-48f8-9789-ab810f4e324b {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-9f63caff-50b4-48f8-9789-ab810f4e324b.shogun-image-container {
      position: relative;
    }

    .s-9f63caff-50b4-48f8-9789-ab810f4e324b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9f63caff-50b4-48f8-9789-ab810f4e324b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9f63caff-50b4-48f8-9789-ab810f4e324b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-9f63caff-50b4-48f8-9789-ab810f4e324b img.shogun-image,
  #s-9f63caff-50b4-48f8-9789-ab810f4e324b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9f63caff-50b4-48f8-9789-ab810f4e324b {
    width: 100%;
    height: auto;
  }

  #s-9f63caff-50b4-48f8-9789-ab810f4e324b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9f63caff-50b4-48f8-9789-ab810f4e324b.shogun-image {
    
    
  }


.s-9f63caff-50b4-48f8-9789-ab810f4e324b .shogun-image-content {
  
    align-items: center;
  
}

.s-9f63caff-50b4-48f8-9789-ab810f4e324b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f63caff-50b4-48f8-9789-ab810f4e324b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f63caff-50b4-48f8-9789-ab810f4e324b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9f63caff-50b4-48f8-9789-ab810f4e324b {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-9f63caff-50b4-48f8-9789-ab810f4e324b.shogun-image-container {
      position: relative;
    }

    .s-9f63caff-50b4-48f8-9789-ab810f4e324b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9f63caff-50b4-48f8-9789-ab810f4e324b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9f63caff-50b4-48f8-9789-ab810f4e324b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-9f63caff-50b4-48f8-9789-ab810f4e324b img.shogun-image,
  #s-9f63caff-50b4-48f8-9789-ab810f4e324b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9f63caff-50b4-48f8-9789-ab810f4e324b {
    width: 100%;
    height: auto;
  }

  #s-9f63caff-50b4-48f8-9789-ab810f4e324b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9f63caff-50b4-48f8-9789-ab810f4e324b.shogun-image {
    
    
  }


.s-9f63caff-50b4-48f8-9789-ab810f4e324b .shogun-image-content {
  
    align-items: center;
  
}

.s-9f63caff-50b4-48f8-9789-ab810f4e324b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f63caff-50b4-48f8-9789-ab810f4e324b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f63caff-50b4-48f8-9789-ab810f4e324b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9f63caff-50b4-48f8-9789-ab810f4e324b {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-9f63caff-50b4-48f8-9789-ab810f4e324b.shogun-image-container {
      position: relative;
    }

    .s-9f63caff-50b4-48f8-9789-ab810f4e324b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9f63caff-50b4-48f8-9789-ab810f4e324b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9f63caff-50b4-48f8-9789-ab810f4e324b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-9f63caff-50b4-48f8-9789-ab810f4e324b img.shogun-image,
  #s-9f63caff-50b4-48f8-9789-ab810f4e324b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9f63caff-50b4-48f8-9789-ab810f4e324b {
    width: 100%;
    height: auto;
  }

  #s-9f63caff-50b4-48f8-9789-ab810f4e324b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9f63caff-50b4-48f8-9789-ab810f4e324b.shogun-image {
    
    
  }


.s-9f63caff-50b4-48f8-9789-ab810f4e324b .shogun-image-content {
  
    align-items: center;
  
}

.s-9f63caff-50b4-48f8-9789-ab810f4e324b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f63caff-50b4-48f8-9789-ab810f4e324b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f63caff-50b4-48f8-9789-ab810f4e324b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9f63caff-50b4-48f8-9789-ab810f4e324b {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-9f63caff-50b4-48f8-9789-ab810f4e324b.shogun-image-container {
      position: relative;
    }

    .s-9f63caff-50b4-48f8-9789-ab810f4e324b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9f63caff-50b4-48f8-9789-ab810f4e324b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9f63caff-50b4-48f8-9789-ab810f4e324b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-fc00fbc7-815b-4f28-b0ab-8115ee751e6d {
  margin-top: -1%;
}

#s-fc00fbc7-815b-4f28-b0ab-8115ee751e6d .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(5, calc(100vw / 24));
}

#s-b0aab9ad-53f4-4187-960c-7cdca1358a23 {
  margin-left: 0%;
margin-right: 20%;
text-align: center;
}

#s-b0aab9ad-53f4-4187-960c-7cdca1358a23-root {
  grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 2;
grid-row-end: 6;
z-index: 0;
}







  img.s-b0aab9ad-53f4-4187-960c-7cdca1358a23.shogun-image {
    
    
  }


.s-b0aab9ad-53f4-4187-960c-7cdca1358a23 .shogun-image-content {
  
    align-items: center;
  
}

.s-b0aab9ad-53f4-4187-960c-7cdca1358a23.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b0aab9ad-53f4-4187-960c-7cdca1358a23.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b0aab9ad-53f4-4187-960c-7cdca1358a23.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-b0aab9ad-53f4-4187-960c-7cdca1358a23.shogun-image {
    
    
  }


.s-b0aab9ad-53f4-4187-960c-7cdca1358a23 .shogun-image-content {
  
    align-items: center;
  
}

.s-b0aab9ad-53f4-4187-960c-7cdca1358a23.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b0aab9ad-53f4-4187-960c-7cdca1358a23.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b0aab9ad-53f4-4187-960c-7cdca1358a23.shogun-image {
  box-sizing: border-box;
}



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





  img.s-b0aab9ad-53f4-4187-960c-7cdca1358a23.shogun-image {
    
    
  }


.s-b0aab9ad-53f4-4187-960c-7cdca1358a23 .shogun-image-content {
  
    align-items: center;
  
}

.s-b0aab9ad-53f4-4187-960c-7cdca1358a23.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b0aab9ad-53f4-4187-960c-7cdca1358a23.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b0aab9ad-53f4-4187-960c-7cdca1358a23.shogun-image {
  box-sizing: border-box;
}



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





  img.s-b0aab9ad-53f4-4187-960c-7cdca1358a23.shogun-image {
    
    
  }


.s-b0aab9ad-53f4-4187-960c-7cdca1358a23 .shogun-image-content {
  
    align-items: center;
  
}

.s-b0aab9ad-53f4-4187-960c-7cdca1358a23.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b0aab9ad-53f4-4187-960c-7cdca1358a23.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b0aab9ad-53f4-4187-960c-7cdca1358a23.shogun-image {
  box-sizing: border-box;
}



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





  img.s-b0aab9ad-53f4-4187-960c-7cdca1358a23.shogun-image {
    
    
  }


.s-b0aab9ad-53f4-4187-960c-7cdca1358a23 .shogun-image-content {
  
    align-items: center;
  
}

.s-b0aab9ad-53f4-4187-960c-7cdca1358a23.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b0aab9ad-53f4-4187-960c-7cdca1358a23.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b0aab9ad-53f4-4187-960c-7cdca1358a23.shogun-image {
  box-sizing: border-box;
}



}
#s-bd8fc650-d83a-4ff9-ac9b-015a4153bcab {
  margin-top: 1%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-bd8fc650-d83a-4ff9-ac9b-015a4153bcab {
  grid-column-start: 6;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 6;
z-index: 1;
}

#s-bd8fc650-d83a-4ff9-ac9b-015a4153bcab .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-9251b5a0-1b8e-4641-8c52-683ed5dbed09 {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-68fe2532-4a4c-4a8f-b692-6d49a2e751c9 {
  text-align: left;
}

#s-3467f8d2-4e83-4edb-84f7-f192ed0e4b1c {
  margin-top: 13%;
}

#s-3467f8d2-4e83-4edb-84f7-f192ed0e4b1c .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(14, calc(100vw / 24));
}

#s-d86579ba-3f16-4007-946c-1469cd5ea0f2 {
  aspect-ratio: 11/11;
text-align: center;
}

#s-d86579ba-3f16-4007-946c-1469cd5ea0f2-root {
  grid-column-start: 1;
grid-column-end: 12;
grid-row-start: 3;
grid-row-end: 14;
z-index: 0;
}





  #s-d86579ba-3f16-4007-946c-1469cd5ea0f2 img.shogun-image,
  #s-d86579ba-3f16-4007-946c-1469cd5ea0f2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d86579ba-3f16-4007-946c-1469cd5ea0f2 {
    width: 100%;
    height: auto;
  }

  #s-d86579ba-3f16-4007-946c-1469cd5ea0f2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d86579ba-3f16-4007-946c-1469cd5ea0f2.shogun-image {
    
    
  }


.s-d86579ba-3f16-4007-946c-1469cd5ea0f2 .shogun-image-content {
  
    align-items: center;
  
}

.s-d86579ba-3f16-4007-946c-1469cd5ea0f2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d86579ba-3f16-4007-946c-1469cd5ea0f2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d86579ba-3f16-4007-946c-1469cd5ea0f2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d86579ba-3f16-4007-946c-1469cd5ea0f2 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-d86579ba-3f16-4007-946c-1469cd5ea0f2.shogun-image-container {
      position: relative;
    }

    .s-d86579ba-3f16-4007-946c-1469cd5ea0f2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d86579ba-3f16-4007-946c-1469cd5ea0f2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d86579ba-3f16-4007-946c-1469cd5ea0f2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-d86579ba-3f16-4007-946c-1469cd5ea0f2 img.shogun-image,
  #s-d86579ba-3f16-4007-946c-1469cd5ea0f2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d86579ba-3f16-4007-946c-1469cd5ea0f2 {
    width: 100%;
    height: auto;
  }

  #s-d86579ba-3f16-4007-946c-1469cd5ea0f2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d86579ba-3f16-4007-946c-1469cd5ea0f2.shogun-image {
    
    
  }


.s-d86579ba-3f16-4007-946c-1469cd5ea0f2 .shogun-image-content {
  
    align-items: center;
  
}

.s-d86579ba-3f16-4007-946c-1469cd5ea0f2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d86579ba-3f16-4007-946c-1469cd5ea0f2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d86579ba-3f16-4007-946c-1469cd5ea0f2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d86579ba-3f16-4007-946c-1469cd5ea0f2 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-d86579ba-3f16-4007-946c-1469cd5ea0f2.shogun-image-container {
      position: relative;
    }

    .s-d86579ba-3f16-4007-946c-1469cd5ea0f2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d86579ba-3f16-4007-946c-1469cd5ea0f2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d86579ba-3f16-4007-946c-1469cd5ea0f2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-d86579ba-3f16-4007-946c-1469cd5ea0f2 img.shogun-image,
  #s-d86579ba-3f16-4007-946c-1469cd5ea0f2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d86579ba-3f16-4007-946c-1469cd5ea0f2 {
    width: 100%;
    height: auto;
  }

  #s-d86579ba-3f16-4007-946c-1469cd5ea0f2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d86579ba-3f16-4007-946c-1469cd5ea0f2.shogun-image {
    
    
  }


.s-d86579ba-3f16-4007-946c-1469cd5ea0f2 .shogun-image-content {
  
    align-items: center;
  
}

.s-d86579ba-3f16-4007-946c-1469cd5ea0f2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d86579ba-3f16-4007-946c-1469cd5ea0f2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d86579ba-3f16-4007-946c-1469cd5ea0f2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d86579ba-3f16-4007-946c-1469cd5ea0f2 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-d86579ba-3f16-4007-946c-1469cd5ea0f2.shogun-image-container {
      position: relative;
    }

    .s-d86579ba-3f16-4007-946c-1469cd5ea0f2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d86579ba-3f16-4007-946c-1469cd5ea0f2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d86579ba-3f16-4007-946c-1469cd5ea0f2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-d86579ba-3f16-4007-946c-1469cd5ea0f2 img.shogun-image,
  #s-d86579ba-3f16-4007-946c-1469cd5ea0f2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d86579ba-3f16-4007-946c-1469cd5ea0f2 {
    width: 100%;
    height: auto;
  }

  #s-d86579ba-3f16-4007-946c-1469cd5ea0f2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d86579ba-3f16-4007-946c-1469cd5ea0f2.shogun-image {
    
    
  }


.s-d86579ba-3f16-4007-946c-1469cd5ea0f2 .shogun-image-content {
  
    align-items: center;
  
}

.s-d86579ba-3f16-4007-946c-1469cd5ea0f2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d86579ba-3f16-4007-946c-1469cd5ea0f2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d86579ba-3f16-4007-946c-1469cd5ea0f2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d86579ba-3f16-4007-946c-1469cd5ea0f2 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-d86579ba-3f16-4007-946c-1469cd5ea0f2.shogun-image-container {
      position: relative;
    }

    .s-d86579ba-3f16-4007-946c-1469cd5ea0f2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d86579ba-3f16-4007-946c-1469cd5ea0f2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d86579ba-3f16-4007-946c-1469cd5ea0f2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-d86579ba-3f16-4007-946c-1469cd5ea0f2 img.shogun-image,
  #s-d86579ba-3f16-4007-946c-1469cd5ea0f2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d86579ba-3f16-4007-946c-1469cd5ea0f2 {
    width: 100%;
    height: auto;
  }

  #s-d86579ba-3f16-4007-946c-1469cd5ea0f2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d86579ba-3f16-4007-946c-1469cd5ea0f2.shogun-image {
    
    
  }


.s-d86579ba-3f16-4007-946c-1469cd5ea0f2 .shogun-image-content {
  
    align-items: center;
  
}

.s-d86579ba-3f16-4007-946c-1469cd5ea0f2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d86579ba-3f16-4007-946c-1469cd5ea0f2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d86579ba-3f16-4007-946c-1469cd5ea0f2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d86579ba-3f16-4007-946c-1469cd5ea0f2 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-d86579ba-3f16-4007-946c-1469cd5ea0f2.shogun-image-container {
      position: relative;
    }

    .s-d86579ba-3f16-4007-946c-1469cd5ea0f2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d86579ba-3f16-4007-946c-1469cd5ea0f2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d86579ba-3f16-4007-946c-1469cd5ea0f2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-5c77e44c-25f3-4fd9-acd3-32bf3a477164 {
  aspect-ratio: 14/14;
text-align: center;
}

#s-5c77e44c-25f3-4fd9-acd3-32bf3a477164-root {
  grid-column-start: 11;
grid-column-end: 25;
grid-row-start: 1;
grid-row-end: 15;
z-index: 1;
}





  #s-5c77e44c-25f3-4fd9-acd3-32bf3a477164 img.shogun-image,
  #s-5c77e44c-25f3-4fd9-acd3-32bf3a477164 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5c77e44c-25f3-4fd9-acd3-32bf3a477164 {
    width: 100%;
    height: auto;
  }

  #s-5c77e44c-25f3-4fd9-acd3-32bf3a477164 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5c77e44c-25f3-4fd9-acd3-32bf3a477164.shogun-image {
    
    
  }


.s-5c77e44c-25f3-4fd9-acd3-32bf3a477164 .shogun-image-content {
  
    align-items: center;
  
}

.s-5c77e44c-25f3-4fd9-acd3-32bf3a477164.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5c77e44c-25f3-4fd9-acd3-32bf3a477164.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5c77e44c-25f3-4fd9-acd3-32bf3a477164.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5c77e44c-25f3-4fd9-acd3-32bf3a477164 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-5c77e44c-25f3-4fd9-acd3-32bf3a477164.shogun-image-container {
      position: relative;
    }

    .s-5c77e44c-25f3-4fd9-acd3-32bf3a477164.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5c77e44c-25f3-4fd9-acd3-32bf3a477164.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5c77e44c-25f3-4fd9-acd3-32bf3a477164 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-5c77e44c-25f3-4fd9-acd3-32bf3a477164 img.shogun-image,
  #s-5c77e44c-25f3-4fd9-acd3-32bf3a477164 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5c77e44c-25f3-4fd9-acd3-32bf3a477164 {
    width: 100%;
    height: auto;
  }

  #s-5c77e44c-25f3-4fd9-acd3-32bf3a477164 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5c77e44c-25f3-4fd9-acd3-32bf3a477164.shogun-image {
    
    
  }


.s-5c77e44c-25f3-4fd9-acd3-32bf3a477164 .shogun-image-content {
  
    align-items: center;
  
}

.s-5c77e44c-25f3-4fd9-acd3-32bf3a477164.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5c77e44c-25f3-4fd9-acd3-32bf3a477164.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5c77e44c-25f3-4fd9-acd3-32bf3a477164.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5c77e44c-25f3-4fd9-acd3-32bf3a477164 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-5c77e44c-25f3-4fd9-acd3-32bf3a477164.shogun-image-container {
      position: relative;
    }

    .s-5c77e44c-25f3-4fd9-acd3-32bf3a477164.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5c77e44c-25f3-4fd9-acd3-32bf3a477164.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5c77e44c-25f3-4fd9-acd3-32bf3a477164 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-5c77e44c-25f3-4fd9-acd3-32bf3a477164 img.shogun-image,
  #s-5c77e44c-25f3-4fd9-acd3-32bf3a477164 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5c77e44c-25f3-4fd9-acd3-32bf3a477164 {
    width: 100%;
    height: auto;
  }

  #s-5c77e44c-25f3-4fd9-acd3-32bf3a477164 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5c77e44c-25f3-4fd9-acd3-32bf3a477164.shogun-image {
    
    
  }


.s-5c77e44c-25f3-4fd9-acd3-32bf3a477164 .shogun-image-content {
  
    align-items: center;
  
}

.s-5c77e44c-25f3-4fd9-acd3-32bf3a477164.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5c77e44c-25f3-4fd9-acd3-32bf3a477164.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5c77e44c-25f3-4fd9-acd3-32bf3a477164.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5c77e44c-25f3-4fd9-acd3-32bf3a477164 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-5c77e44c-25f3-4fd9-acd3-32bf3a477164.shogun-image-container {
      position: relative;
    }

    .s-5c77e44c-25f3-4fd9-acd3-32bf3a477164.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5c77e44c-25f3-4fd9-acd3-32bf3a477164.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5c77e44c-25f3-4fd9-acd3-32bf3a477164 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-5c77e44c-25f3-4fd9-acd3-32bf3a477164 img.shogun-image,
  #s-5c77e44c-25f3-4fd9-acd3-32bf3a477164 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5c77e44c-25f3-4fd9-acd3-32bf3a477164 {
    width: 100%;
    height: auto;
  }

  #s-5c77e44c-25f3-4fd9-acd3-32bf3a477164 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5c77e44c-25f3-4fd9-acd3-32bf3a477164.shogun-image {
    
    
  }


.s-5c77e44c-25f3-4fd9-acd3-32bf3a477164 .shogun-image-content {
  
    align-items: center;
  
}

.s-5c77e44c-25f3-4fd9-acd3-32bf3a477164.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5c77e44c-25f3-4fd9-acd3-32bf3a477164.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5c77e44c-25f3-4fd9-acd3-32bf3a477164.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5c77e44c-25f3-4fd9-acd3-32bf3a477164 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-5c77e44c-25f3-4fd9-acd3-32bf3a477164.shogun-image-container {
      position: relative;
    }

    .s-5c77e44c-25f3-4fd9-acd3-32bf3a477164.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5c77e44c-25f3-4fd9-acd3-32bf3a477164.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5c77e44c-25f3-4fd9-acd3-32bf3a477164 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-5c77e44c-25f3-4fd9-acd3-32bf3a477164 img.shogun-image,
  #s-5c77e44c-25f3-4fd9-acd3-32bf3a477164 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5c77e44c-25f3-4fd9-acd3-32bf3a477164 {
    width: 100%;
    height: auto;
  }

  #s-5c77e44c-25f3-4fd9-acd3-32bf3a477164 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5c77e44c-25f3-4fd9-acd3-32bf3a477164.shogun-image {
    
    
  }


.s-5c77e44c-25f3-4fd9-acd3-32bf3a477164 .shogun-image-content {
  
    align-items: center;
  
}

.s-5c77e44c-25f3-4fd9-acd3-32bf3a477164.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5c77e44c-25f3-4fd9-acd3-32bf3a477164.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5c77e44c-25f3-4fd9-acd3-32bf3a477164.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5c77e44c-25f3-4fd9-acd3-32bf3a477164 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-5c77e44c-25f3-4fd9-acd3-32bf3a477164.shogun-image-container {
      position: relative;
    }

    .s-5c77e44c-25f3-4fd9-acd3-32bf3a477164.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5c77e44c-25f3-4fd9-acd3-32bf3a477164.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5c77e44c-25f3-4fd9-acd3-32bf3a477164 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-496ceefa-0dda-4b93-89bc-f05b8f1aeeb4 {
  margin-top: -1%;
}

#s-496ceefa-0dda-4b93-89bc-f05b8f1aeeb4 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(5, calc(100vw / 24));
}

#s-dfc3782f-6e6c-41b4-aba7-f4a2bf287e66 {
  margin-left: 0%;
margin-right: 20%;
text-align: center;
}

#s-dfc3782f-6e6c-41b4-aba7-f4a2bf287e66-root {
  grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 2;
grid-row-end: 6;
z-index: 0;
}







  img.s-dfc3782f-6e6c-41b4-aba7-f4a2bf287e66.shogun-image {
    
    
  }


.s-dfc3782f-6e6c-41b4-aba7-f4a2bf287e66 .shogun-image-content {
  
    align-items: center;
  
}

.s-dfc3782f-6e6c-41b4-aba7-f4a2bf287e66.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dfc3782f-6e6c-41b4-aba7-f4a2bf287e66.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dfc3782f-6e6c-41b4-aba7-f4a2bf287e66.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-dfc3782f-6e6c-41b4-aba7-f4a2bf287e66.shogun-image {
    
    
  }


.s-dfc3782f-6e6c-41b4-aba7-f4a2bf287e66 .shogun-image-content {
  
    align-items: center;
  
}

.s-dfc3782f-6e6c-41b4-aba7-f4a2bf287e66.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dfc3782f-6e6c-41b4-aba7-f4a2bf287e66.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dfc3782f-6e6c-41b4-aba7-f4a2bf287e66.shogun-image {
  box-sizing: border-box;
}



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





  img.s-dfc3782f-6e6c-41b4-aba7-f4a2bf287e66.shogun-image {
    
    
  }


.s-dfc3782f-6e6c-41b4-aba7-f4a2bf287e66 .shogun-image-content {
  
    align-items: center;
  
}

.s-dfc3782f-6e6c-41b4-aba7-f4a2bf287e66.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dfc3782f-6e6c-41b4-aba7-f4a2bf287e66.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dfc3782f-6e6c-41b4-aba7-f4a2bf287e66.shogun-image {
  box-sizing: border-box;
}



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





  img.s-dfc3782f-6e6c-41b4-aba7-f4a2bf287e66.shogun-image {
    
    
  }


.s-dfc3782f-6e6c-41b4-aba7-f4a2bf287e66 .shogun-image-content {
  
    align-items: center;
  
}

.s-dfc3782f-6e6c-41b4-aba7-f4a2bf287e66.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dfc3782f-6e6c-41b4-aba7-f4a2bf287e66.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dfc3782f-6e6c-41b4-aba7-f4a2bf287e66.shogun-image {
  box-sizing: border-box;
}



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





  img.s-dfc3782f-6e6c-41b4-aba7-f4a2bf287e66.shogun-image {
    
    
  }


.s-dfc3782f-6e6c-41b4-aba7-f4a2bf287e66 .shogun-image-content {
  
    align-items: center;
  
}

.s-dfc3782f-6e6c-41b4-aba7-f4a2bf287e66.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dfc3782f-6e6c-41b4-aba7-f4a2bf287e66.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dfc3782f-6e6c-41b4-aba7-f4a2bf287e66.shogun-image {
  box-sizing: border-box;
}



}
#s-5bea5d41-60d5-4f01-87f1-fbfaeb110b86 {
  margin-top: 1%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5bea5d41-60d5-4f01-87f1-fbfaeb110b86 {
  grid-column-start: 6;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 6;
z-index: 1;
}

#s-5bea5d41-60d5-4f01-87f1-fbfaeb110b86 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-30382e6f-63fc-4813-8213-60e21df6e796 {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
max-width: 1269px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2 img.shogun-image,
  #s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2 {
    width: 100%;
    height: auto;
  }

  #s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2.shogun-image {
    
    
  }


.s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2.shogun-image-container {
      position: relative;
    }

    .s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2 img.shogun-image,
  #s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2 {
    width: 100%;
    height: auto;
  }

  #s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2.shogun-image {
    
    
  }


.s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2.shogun-image-container {
      position: relative;
    }

    .s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2 img.shogun-image,
  #s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2 {
    width: 100%;
    height: auto;
  }

  #s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2.shogun-image {
    
    
  }


.s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2.shogun-image-container {
      position: relative;
    }

    .s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2 img.shogun-image,
  #s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2 {
    width: 100%;
    height: auto;
  }

  #s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2.shogun-image {
    
    
  }


.s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2.shogun-image-container {
      position: relative;
    }

    .s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2 img.shogun-image,
  #s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2 {
    width: 100%;
    height: auto;
  }

  #s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2.shogun-image {
    
    
  }


.s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2.shogun-image-container {
      position: relative;
    }

    .s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b1edb5b4-dd5b-4696-a17b-dc9fc4039bb2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-0c58a723-888e-4e48-b04b-1360eb6c3a7a {
  margin-top: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0c58a723-888e-4e48-b04b-1360eb6c3a7a .shogun-heading-component h5 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-bf74b49e-053c-4b41-b99a-5479e67cb5bd {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-bf74b49e-053c-4b41-b99a-5479e67cb5bd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bf74b49e-053c-4b41-b99a-5479e67cb5bd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e5828740-acc2-4b19-9a3f-3e5d48dc2f50 {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: rgba(29, 29, 29, 0);
border-radius: 3px;
max-width: 100%;
background-color: rgba(29, 29, 29, 0.9);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-e5828740-acc2-4b19-9a3f-3e5d48dc2f50:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 0) !important;
background-color: rgba(74, 74, 74, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-e5828740-acc2-4b19-9a3f-3e5d48dc2f50:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(155, 155, 155, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-e5828740-acc2-4b19-9a3f-3e5d48dc2f50-root {
    text-align: center;
  }


#s-e5828740-acc2-4b19-9a3f-3e5d48dc2f50.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-e5828740-acc2-4b19-9a3f-3e5d48dc2f50-root {
    text-align: center;
  }


#s-e5828740-acc2-4b19-9a3f-3e5d48dc2f50.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e5828740-acc2-4b19-9a3f-3e5d48dc2f50-root {
    text-align: center;
  }


#s-e5828740-acc2-4b19-9a3f-3e5d48dc2f50.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e5828740-acc2-4b19-9a3f-3e5d48dc2f50-root {
    text-align: center;
  }


#s-e5828740-acc2-4b19-9a3f-3e5d48dc2f50.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-e5828740-acc2-4b19-9a3f-3e5d48dc2f50-root {
    text-align: center;
  }


#s-e5828740-acc2-4b19-9a3f-3e5d48dc2f50.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-e5828740-acc2-4b19-9a3f-3e5d48dc2f50-root {
    text-align: center;
  }


#s-e5828740-acc2-4b19-9a3f-3e5d48dc2f50.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-aaefb7a1-347b-4cbc-af06-41f250940222 {
  margin-top: 13%;
}

#s-aaefb7a1-347b-4cbc-af06-41f250940222 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(15, calc(100vw / 24));
}

#s-43eea4fd-f2bc-4d78-ac18-39ef562d270c {
  aspect-ratio: 11/11;
text-align: center;
}

#s-43eea4fd-f2bc-4d78-ac18-39ef562d270c-root {
  grid-column-start: 1;
grid-column-end: 12;
grid-row-start: 1;
grid-row-end: 12;
z-index: 0;
}





  #s-43eea4fd-f2bc-4d78-ac18-39ef562d270c img.shogun-image,
  #s-43eea4fd-f2bc-4d78-ac18-39ef562d270c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-43eea4fd-f2bc-4d78-ac18-39ef562d270c {
    width: 100%;
    height: auto;
  }

  #s-43eea4fd-f2bc-4d78-ac18-39ef562d270c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-43eea4fd-f2bc-4d78-ac18-39ef562d270c.shogun-image {
    
    
  }


.s-43eea4fd-f2bc-4d78-ac18-39ef562d270c .shogun-image-content {
  
    align-items: center;
  
}

.s-43eea4fd-f2bc-4d78-ac18-39ef562d270c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-43eea4fd-f2bc-4d78-ac18-39ef562d270c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-43eea4fd-f2bc-4d78-ac18-39ef562d270c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-43eea4fd-f2bc-4d78-ac18-39ef562d270c {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-43eea4fd-f2bc-4d78-ac18-39ef562d270c.shogun-image-container {
      position: relative;
    }

    .s-43eea4fd-f2bc-4d78-ac18-39ef562d270c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-43eea4fd-f2bc-4d78-ac18-39ef562d270c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-43eea4fd-f2bc-4d78-ac18-39ef562d270c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-43eea4fd-f2bc-4d78-ac18-39ef562d270c img.shogun-image,
  #s-43eea4fd-f2bc-4d78-ac18-39ef562d270c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-43eea4fd-f2bc-4d78-ac18-39ef562d270c {
    width: 100%;
    height: auto;
  }

  #s-43eea4fd-f2bc-4d78-ac18-39ef562d270c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-43eea4fd-f2bc-4d78-ac18-39ef562d270c.shogun-image {
    
    
  }


.s-43eea4fd-f2bc-4d78-ac18-39ef562d270c .shogun-image-content {
  
    align-items: center;
  
}

.s-43eea4fd-f2bc-4d78-ac18-39ef562d270c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-43eea4fd-f2bc-4d78-ac18-39ef562d270c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-43eea4fd-f2bc-4d78-ac18-39ef562d270c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-43eea4fd-f2bc-4d78-ac18-39ef562d270c {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-43eea4fd-f2bc-4d78-ac18-39ef562d270c.shogun-image-container {
      position: relative;
    }

    .s-43eea4fd-f2bc-4d78-ac18-39ef562d270c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-43eea4fd-f2bc-4d78-ac18-39ef562d270c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-43eea4fd-f2bc-4d78-ac18-39ef562d270c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-43eea4fd-f2bc-4d78-ac18-39ef562d270c img.shogun-image,
  #s-43eea4fd-f2bc-4d78-ac18-39ef562d270c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-43eea4fd-f2bc-4d78-ac18-39ef562d270c {
    width: 100%;
    height: auto;
  }

  #s-43eea4fd-f2bc-4d78-ac18-39ef562d270c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-43eea4fd-f2bc-4d78-ac18-39ef562d270c.shogun-image {
    
    
  }


.s-43eea4fd-f2bc-4d78-ac18-39ef562d270c .shogun-image-content {
  
    align-items: center;
  
}

.s-43eea4fd-f2bc-4d78-ac18-39ef562d270c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-43eea4fd-f2bc-4d78-ac18-39ef562d270c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-43eea4fd-f2bc-4d78-ac18-39ef562d270c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-43eea4fd-f2bc-4d78-ac18-39ef562d270c {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-43eea4fd-f2bc-4d78-ac18-39ef562d270c.shogun-image-container {
      position: relative;
    }

    .s-43eea4fd-f2bc-4d78-ac18-39ef562d270c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-43eea4fd-f2bc-4d78-ac18-39ef562d270c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-43eea4fd-f2bc-4d78-ac18-39ef562d270c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-43eea4fd-f2bc-4d78-ac18-39ef562d270c img.shogun-image,
  #s-43eea4fd-f2bc-4d78-ac18-39ef562d270c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-43eea4fd-f2bc-4d78-ac18-39ef562d270c {
    width: 100%;
    height: auto;
  }

  #s-43eea4fd-f2bc-4d78-ac18-39ef562d270c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-43eea4fd-f2bc-4d78-ac18-39ef562d270c.shogun-image {
    
    
  }


.s-43eea4fd-f2bc-4d78-ac18-39ef562d270c .shogun-image-content {
  
    align-items: center;
  
}

.s-43eea4fd-f2bc-4d78-ac18-39ef562d270c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-43eea4fd-f2bc-4d78-ac18-39ef562d270c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-43eea4fd-f2bc-4d78-ac18-39ef562d270c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-43eea4fd-f2bc-4d78-ac18-39ef562d270c {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-43eea4fd-f2bc-4d78-ac18-39ef562d270c.shogun-image-container {
      position: relative;
    }

    .s-43eea4fd-f2bc-4d78-ac18-39ef562d270c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-43eea4fd-f2bc-4d78-ac18-39ef562d270c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-43eea4fd-f2bc-4d78-ac18-39ef562d270c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-43eea4fd-f2bc-4d78-ac18-39ef562d270c img.shogun-image,
  #s-43eea4fd-f2bc-4d78-ac18-39ef562d270c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-43eea4fd-f2bc-4d78-ac18-39ef562d270c {
    width: 100%;
    height: auto;
  }

  #s-43eea4fd-f2bc-4d78-ac18-39ef562d270c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-43eea4fd-f2bc-4d78-ac18-39ef562d270c.shogun-image {
    
    
  }


.s-43eea4fd-f2bc-4d78-ac18-39ef562d270c .shogun-image-content {
  
    align-items: center;
  
}

.s-43eea4fd-f2bc-4d78-ac18-39ef562d270c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-43eea4fd-f2bc-4d78-ac18-39ef562d270c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-43eea4fd-f2bc-4d78-ac18-39ef562d270c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-43eea4fd-f2bc-4d78-ac18-39ef562d270c {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-43eea4fd-f2bc-4d78-ac18-39ef562d270c.shogun-image-container {
      position: relative;
    }

    .s-43eea4fd-f2bc-4d78-ac18-39ef562d270c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-43eea4fd-f2bc-4d78-ac18-39ef562d270c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-43eea4fd-f2bc-4d78-ac18-39ef562d270c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be {
  aspect-ratio: 14/14;
text-align: center;
}

#s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be-root {
  grid-column-start: 11;
grid-column-end: 25;
grid-row-start: 2;
grid-row-end: 16;
z-index: 1;
}





  #s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be img.shogun-image,
  #s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be {
    width: 100%;
    height: auto;
  }

  #s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be.shogun-image {
    
    
  }


.s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be .shogun-image-content {
  
    align-items: center;
  
}

.s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be.shogun-image-container {
      position: relative;
    }

    .s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be img.shogun-image,
  #s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be {
    width: 100%;
    height: auto;
  }

  #s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be.shogun-image {
    
    
  }


.s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be .shogun-image-content {
  
    align-items: center;
  
}

.s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be.shogun-image-container {
      position: relative;
    }

    .s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be img.shogun-image,
  #s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be {
    width: 100%;
    height: auto;
  }

  #s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be.shogun-image {
    
    
  }


.s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be .shogun-image-content {
  
    align-items: center;
  
}

.s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be.shogun-image-container {
      position: relative;
    }

    .s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be img.shogun-image,
  #s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be {
    width: 100%;
    height: auto;
  }

  #s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be.shogun-image {
    
    
  }


.s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be .shogun-image-content {
  
    align-items: center;
  
}

.s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be.shogun-image-container {
      position: relative;
    }

    .s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be img.shogun-image,
  #s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be {
    width: 100%;
    height: auto;
  }

  #s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be.shogun-image {
    
    
  }


.s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be .shogun-image-content {
  
    align-items: center;
  
}

.s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be.shogun-image-container {
      position: relative;
    }

    .s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9554e2ab-8b9e-45ce-8e3b-ff54858f78be img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-81466a56-f757-4983-ad4d-a2f1858758cc {
  margin-top: -4%;
margin-bottom: -3%;
}

#s-81466a56-f757-4983-ad4d-a2f1858758cc .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(5, calc(100vw / 24));
}

#s-7bf74a90-d41c-44ac-be82-1b27ab53722b {
  margin-left: 0%;
margin-right: 20%;
text-align: center;
}

#s-7bf74a90-d41c-44ac-be82-1b27ab53722b-root {
  grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 2;
grid-row-end: 6;
z-index: 0;
}







  img.s-7bf74a90-d41c-44ac-be82-1b27ab53722b.shogun-image {
    
    
  }


.s-7bf74a90-d41c-44ac-be82-1b27ab53722b .shogun-image-content {
  
    align-items: center;
  
}

.s-7bf74a90-d41c-44ac-be82-1b27ab53722b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7bf74a90-d41c-44ac-be82-1b27ab53722b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7bf74a90-d41c-44ac-be82-1b27ab53722b.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-7bf74a90-d41c-44ac-be82-1b27ab53722b.shogun-image {
    
    
  }


.s-7bf74a90-d41c-44ac-be82-1b27ab53722b .shogun-image-content {
  
    align-items: center;
  
}

.s-7bf74a90-d41c-44ac-be82-1b27ab53722b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7bf74a90-d41c-44ac-be82-1b27ab53722b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7bf74a90-d41c-44ac-be82-1b27ab53722b.shogun-image {
  box-sizing: border-box;
}



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





  img.s-7bf74a90-d41c-44ac-be82-1b27ab53722b.shogun-image {
    
    
  }


.s-7bf74a90-d41c-44ac-be82-1b27ab53722b .shogun-image-content {
  
    align-items: center;
  
}

.s-7bf74a90-d41c-44ac-be82-1b27ab53722b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7bf74a90-d41c-44ac-be82-1b27ab53722b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7bf74a90-d41c-44ac-be82-1b27ab53722b.shogun-image {
  box-sizing: border-box;
}



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





  img.s-7bf74a90-d41c-44ac-be82-1b27ab53722b.shogun-image {
    
    
  }


.s-7bf74a90-d41c-44ac-be82-1b27ab53722b .shogun-image-content {
  
    align-items: center;
  
}

.s-7bf74a90-d41c-44ac-be82-1b27ab53722b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7bf74a90-d41c-44ac-be82-1b27ab53722b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7bf74a90-d41c-44ac-be82-1b27ab53722b.shogun-image {
  box-sizing: border-box;
}



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





  img.s-7bf74a90-d41c-44ac-be82-1b27ab53722b.shogun-image {
    
    
  }


.s-7bf74a90-d41c-44ac-be82-1b27ab53722b .shogun-image-content {
  
    align-items: center;
  
}

.s-7bf74a90-d41c-44ac-be82-1b27ab53722b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7bf74a90-d41c-44ac-be82-1b27ab53722b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7bf74a90-d41c-44ac-be82-1b27ab53722b.shogun-image {
  box-sizing: border-box;
}



}
#s-a73ded4c-7894-4540-bba9-c7ab8a5d6c95 {
  margin-top: 1%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a73ded4c-7894-4540-bba9-c7ab8a5d6c95 {
  grid-column-start: 6;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 6;
z-index: 1;
}

#s-a73ded4c-7894-4540-bba9-c7ab8a5d6c95 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-af904190-7a32-4eb5-9288-60905d60c1b6 {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-00b96923-d187-404b-bf52-ca3dd0c600a3 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
text-align: center;
}







  img.s-00b96923-d187-404b-bf52-ca3dd0c600a3.shogun-image {
    
    
  }


.s-00b96923-d187-404b-bf52-ca3dd0c600a3 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-00b96923-d187-404b-bf52-ca3dd0c600a3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-00b96923-d187-404b-bf52-ca3dd0c600a3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00b96923-d187-404b-bf52-ca3dd0c600a3.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-00b96923-d187-404b-bf52-ca3dd0c600a3.shogun-image {
    
    
  }


.s-00b96923-d187-404b-bf52-ca3dd0c600a3 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-00b96923-d187-404b-bf52-ca3dd0c600a3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-00b96923-d187-404b-bf52-ca3dd0c600a3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00b96923-d187-404b-bf52-ca3dd0c600a3.shogun-image {
  box-sizing: border-box;
}



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





  img.s-00b96923-d187-404b-bf52-ca3dd0c600a3.shogun-image {
    
    
  }


.s-00b96923-d187-404b-bf52-ca3dd0c600a3 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-00b96923-d187-404b-bf52-ca3dd0c600a3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-00b96923-d187-404b-bf52-ca3dd0c600a3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00b96923-d187-404b-bf52-ca3dd0c600a3.shogun-image {
  box-sizing: border-box;
}



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





  img.s-00b96923-d187-404b-bf52-ca3dd0c600a3.shogun-image {
    
    
  }


.s-00b96923-d187-404b-bf52-ca3dd0c600a3 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-00b96923-d187-404b-bf52-ca3dd0c600a3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-00b96923-d187-404b-bf52-ca3dd0c600a3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00b96923-d187-404b-bf52-ca3dd0c600a3.shogun-image {
  box-sizing: border-box;
}



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





  img.s-00b96923-d187-404b-bf52-ca3dd0c600a3.shogun-image {
    
    
  }


.s-00b96923-d187-404b-bf52-ca3dd0c600a3 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-00b96923-d187-404b-bf52-ca3dd0c600a3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-00b96923-d187-404b-bf52-ca3dd0c600a3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00b96923-d187-404b-bf52-ca3dd0c600a3.shogun-image {
  box-sizing: border-box;
}



}
#s-1845b3e0-51b3-4699-8eb7-b7374ea232cf {
  margin-top: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1845b3e0-51b3-4699-8eb7-b7374ea232cf .shogun-heading-component h5 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-21d56a7e-f363-4486-a64a-03dc279649a8 {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-21d56a7e-f363-4486-a64a-03dc279649a8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-21d56a7e-f363-4486-a64a-03dc279649a8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0251115b-6743-43dc-a457-c673dee6ebd2 {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: rgba(29, 29, 29, 0);
border-radius: 3px;
max-width: 100%;
background-color: rgba(29, 29, 29, 0.9);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-0251115b-6743-43dc-a457-c673dee6ebd2:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 0) !important;
background-color: rgba(74, 74, 74, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-0251115b-6743-43dc-a457-c673dee6ebd2:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(155, 155, 155, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-0251115b-6743-43dc-a457-c673dee6ebd2-root {
    text-align: center;
  }


#s-0251115b-6743-43dc-a457-c673dee6ebd2.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-0251115b-6743-43dc-a457-c673dee6ebd2-root {
    text-align: center;
  }


#s-0251115b-6743-43dc-a457-c673dee6ebd2.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-0251115b-6743-43dc-a457-c673dee6ebd2-root {
    text-align: center;
  }


#s-0251115b-6743-43dc-a457-c673dee6ebd2.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-0251115b-6743-43dc-a457-c673dee6ebd2-root {
    text-align: center;
  }


#s-0251115b-6743-43dc-a457-c673dee6ebd2.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-0251115b-6743-43dc-a457-c673dee6ebd2-root {
    text-align: center;
  }


#s-0251115b-6743-43dc-a457-c673dee6ebd2.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-0251115b-6743-43dc-a457-c673dee6ebd2-root {
    text-align: center;
  }


#s-0251115b-6743-43dc-a457-c673dee6ebd2.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-75da0fd4-a50a-49fb-8afc-eb1ed9bb8ff2 {
  margin-top: 13%;
margin-bottom: 0%;
}

#s-75da0fd4-a50a-49fb-8afc-eb1ed9bb8ff2 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(14, calc(100vw / 24));
}

#s-7f235801-0669-4355-9d4f-b3f9f4486eea {
  aspect-ratio: 11/11;
text-align: center;
}

#s-7f235801-0669-4355-9d4f-b3f9f4486eea-root {
  grid-column-start: 1;
grid-column-end: 12;
grid-row-start: 4;
grid-row-end: 15;
z-index: 0;
}





  #s-7f235801-0669-4355-9d4f-b3f9f4486eea img.shogun-image,
  #s-7f235801-0669-4355-9d4f-b3f9f4486eea .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7f235801-0669-4355-9d4f-b3f9f4486eea {
    width: 100%;
    height: auto;
  }

  #s-7f235801-0669-4355-9d4f-b3f9f4486eea img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7f235801-0669-4355-9d4f-b3f9f4486eea.shogun-image {
    
    
  }


.s-7f235801-0669-4355-9d4f-b3f9f4486eea .shogun-image-content {
  
    align-items: center;
  
}

.s-7f235801-0669-4355-9d4f-b3f9f4486eea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7f235801-0669-4355-9d4f-b3f9f4486eea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7f235801-0669-4355-9d4f-b3f9f4486eea.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7f235801-0669-4355-9d4f-b3f9f4486eea {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-7f235801-0669-4355-9d4f-b3f9f4486eea.shogun-image-container {
      position: relative;
    }

    .s-7f235801-0669-4355-9d4f-b3f9f4486eea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7f235801-0669-4355-9d4f-b3f9f4486eea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7f235801-0669-4355-9d4f-b3f9f4486eea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-7f235801-0669-4355-9d4f-b3f9f4486eea img.shogun-image,
  #s-7f235801-0669-4355-9d4f-b3f9f4486eea .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7f235801-0669-4355-9d4f-b3f9f4486eea {
    width: 100%;
    height: auto;
  }

  #s-7f235801-0669-4355-9d4f-b3f9f4486eea img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7f235801-0669-4355-9d4f-b3f9f4486eea.shogun-image {
    
    
  }


.s-7f235801-0669-4355-9d4f-b3f9f4486eea .shogun-image-content {
  
    align-items: center;
  
}

.s-7f235801-0669-4355-9d4f-b3f9f4486eea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7f235801-0669-4355-9d4f-b3f9f4486eea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7f235801-0669-4355-9d4f-b3f9f4486eea.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7f235801-0669-4355-9d4f-b3f9f4486eea {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-7f235801-0669-4355-9d4f-b3f9f4486eea.shogun-image-container {
      position: relative;
    }

    .s-7f235801-0669-4355-9d4f-b3f9f4486eea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7f235801-0669-4355-9d4f-b3f9f4486eea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7f235801-0669-4355-9d4f-b3f9f4486eea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-7f235801-0669-4355-9d4f-b3f9f4486eea img.shogun-image,
  #s-7f235801-0669-4355-9d4f-b3f9f4486eea .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7f235801-0669-4355-9d4f-b3f9f4486eea {
    width: 100%;
    height: auto;
  }

  #s-7f235801-0669-4355-9d4f-b3f9f4486eea img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7f235801-0669-4355-9d4f-b3f9f4486eea.shogun-image {
    
    
  }


.s-7f235801-0669-4355-9d4f-b3f9f4486eea .shogun-image-content {
  
    align-items: center;
  
}

.s-7f235801-0669-4355-9d4f-b3f9f4486eea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7f235801-0669-4355-9d4f-b3f9f4486eea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7f235801-0669-4355-9d4f-b3f9f4486eea.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7f235801-0669-4355-9d4f-b3f9f4486eea {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-7f235801-0669-4355-9d4f-b3f9f4486eea.shogun-image-container {
      position: relative;
    }

    .s-7f235801-0669-4355-9d4f-b3f9f4486eea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7f235801-0669-4355-9d4f-b3f9f4486eea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7f235801-0669-4355-9d4f-b3f9f4486eea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-7f235801-0669-4355-9d4f-b3f9f4486eea img.shogun-image,
  #s-7f235801-0669-4355-9d4f-b3f9f4486eea .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7f235801-0669-4355-9d4f-b3f9f4486eea {
    width: 100%;
    height: auto;
  }

  #s-7f235801-0669-4355-9d4f-b3f9f4486eea img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7f235801-0669-4355-9d4f-b3f9f4486eea.shogun-image {
    
    
  }


.s-7f235801-0669-4355-9d4f-b3f9f4486eea .shogun-image-content {
  
    align-items: center;
  
}

.s-7f235801-0669-4355-9d4f-b3f9f4486eea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7f235801-0669-4355-9d4f-b3f9f4486eea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7f235801-0669-4355-9d4f-b3f9f4486eea.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7f235801-0669-4355-9d4f-b3f9f4486eea {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-7f235801-0669-4355-9d4f-b3f9f4486eea.shogun-image-container {
      position: relative;
    }

    .s-7f235801-0669-4355-9d4f-b3f9f4486eea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7f235801-0669-4355-9d4f-b3f9f4486eea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7f235801-0669-4355-9d4f-b3f9f4486eea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-7f235801-0669-4355-9d4f-b3f9f4486eea img.shogun-image,
  #s-7f235801-0669-4355-9d4f-b3f9f4486eea .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7f235801-0669-4355-9d4f-b3f9f4486eea {
    width: 100%;
    height: auto;
  }

  #s-7f235801-0669-4355-9d4f-b3f9f4486eea img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7f235801-0669-4355-9d4f-b3f9f4486eea.shogun-image {
    
    
  }


.s-7f235801-0669-4355-9d4f-b3f9f4486eea .shogun-image-content {
  
    align-items: center;
  
}

.s-7f235801-0669-4355-9d4f-b3f9f4486eea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7f235801-0669-4355-9d4f-b3f9f4486eea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7f235801-0669-4355-9d4f-b3f9f4486eea.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7f235801-0669-4355-9d4f-b3f9f4486eea {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-7f235801-0669-4355-9d4f-b3f9f4486eea.shogun-image-container {
      position: relative;
    }

    .s-7f235801-0669-4355-9d4f-b3f9f4486eea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7f235801-0669-4355-9d4f-b3f9f4486eea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7f235801-0669-4355-9d4f-b3f9f4486eea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc {
  aspect-ratio: 14/14;
text-align: center;
}

#s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc-root {
  grid-column-start: 11;
grid-column-end: 25;
grid-row-start: 1;
grid-row-end: 15;
z-index: 1;
}





  #s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc img.shogun-image,
  #s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc {
    width: 100%;
    height: auto;
  }

  #s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc.shogun-image {
    
    
  }


.s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc .shogun-image-content {
  
    align-items: center;
  
}

.s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc.shogun-image-container {
      position: relative;
    }

    .s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc img.shogun-image,
  #s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc {
    width: 100%;
    height: auto;
  }

  #s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc.shogun-image {
    
    
  }


.s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc .shogun-image-content {
  
    align-items: center;
  
}

.s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc.shogun-image-container {
      position: relative;
    }

    .s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc img.shogun-image,
  #s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc {
    width: 100%;
    height: auto;
  }

  #s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc.shogun-image {
    
    
  }


.s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc .shogun-image-content {
  
    align-items: center;
  
}

.s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc.shogun-image-container {
      position: relative;
    }

    .s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc img.shogun-image,
  #s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc {
    width: 100%;
    height: auto;
  }

  #s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc.shogun-image {
    
    
  }


.s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc .shogun-image-content {
  
    align-items: center;
  
}

.s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc.shogun-image-container {
      position: relative;
    }

    .s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc img.shogun-image,
  #s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc {
    width: 100%;
    height: auto;
  }

  #s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc.shogun-image {
    
    
  }


.s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc .shogun-image-content {
  
    align-items: center;
  
}

.s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc.shogun-image-container {
      position: relative;
    }

    .s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-92c57d46-f038-48bf-8bd9-95f90e0b0fbc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-7d7d6de4-232f-4443-ad45-9acdbe51f040 {
  margin-top: -1%;
}

#s-7d7d6de4-232f-4443-ad45-9acdbe51f040 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(5, calc(100vw / 24));
}

#s-89b5319d-316f-45b0-a0bc-08d856fca2d8 {
  margin-left: 0%;
margin-right: 20%;
text-align: center;
}

#s-89b5319d-316f-45b0-a0bc-08d856fca2d8-root {
  grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 2;
grid-row-end: 6;
z-index: 0;
}







  img.s-89b5319d-316f-45b0-a0bc-08d856fca2d8.shogun-image {
    
    
  }


.s-89b5319d-316f-45b0-a0bc-08d856fca2d8 .shogun-image-content {
  
    align-items: center;
  
}

.s-89b5319d-316f-45b0-a0bc-08d856fca2d8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89b5319d-316f-45b0-a0bc-08d856fca2d8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89b5319d-316f-45b0-a0bc-08d856fca2d8.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-89b5319d-316f-45b0-a0bc-08d856fca2d8.shogun-image {
    
    
  }


.s-89b5319d-316f-45b0-a0bc-08d856fca2d8 .shogun-image-content {
  
    align-items: center;
  
}

.s-89b5319d-316f-45b0-a0bc-08d856fca2d8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89b5319d-316f-45b0-a0bc-08d856fca2d8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89b5319d-316f-45b0-a0bc-08d856fca2d8.shogun-image {
  box-sizing: border-box;
}



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





  img.s-89b5319d-316f-45b0-a0bc-08d856fca2d8.shogun-image {
    
    
  }


.s-89b5319d-316f-45b0-a0bc-08d856fca2d8 .shogun-image-content {
  
    align-items: center;
  
}

.s-89b5319d-316f-45b0-a0bc-08d856fca2d8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89b5319d-316f-45b0-a0bc-08d856fca2d8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89b5319d-316f-45b0-a0bc-08d856fca2d8.shogun-image {
  box-sizing: border-box;
}



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





  img.s-89b5319d-316f-45b0-a0bc-08d856fca2d8.shogun-image {
    
    
  }


.s-89b5319d-316f-45b0-a0bc-08d856fca2d8 .shogun-image-content {
  
    align-items: center;
  
}

.s-89b5319d-316f-45b0-a0bc-08d856fca2d8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89b5319d-316f-45b0-a0bc-08d856fca2d8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89b5319d-316f-45b0-a0bc-08d856fca2d8.shogun-image {
  box-sizing: border-box;
}



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





  img.s-89b5319d-316f-45b0-a0bc-08d856fca2d8.shogun-image {
    
    
  }


.s-89b5319d-316f-45b0-a0bc-08d856fca2d8 .shogun-image-content {
  
    align-items: center;
  
}

.s-89b5319d-316f-45b0-a0bc-08d856fca2d8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89b5319d-316f-45b0-a0bc-08d856fca2d8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89b5319d-316f-45b0-a0bc-08d856fca2d8.shogun-image {
  box-sizing: border-box;
}



}
#s-7bd92766-08ee-4dc6-ab4b-352637a1dee5 {
  margin-top: 5%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7bd92766-08ee-4dc6-ab4b-352637a1dee5 {
  grid-column-start: 6;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 6;
z-index: 1;
}

#s-7bd92766-08ee-4dc6-ab4b-352637a1dee5 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 1px;
  text-align: left;
}



#s-493dde36-8575-4f42-8281-7178d72525f6 {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-f0d638aa-83e6-484d-80e3-d027625a675e {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}







  img.s-f0d638aa-83e6-484d-80e3-d027625a675e.shogun-image {
    
    
  }


.s-f0d638aa-83e6-484d-80e3-d027625a675e .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-f0d638aa-83e6-484d-80e3-d027625a675e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f0d638aa-83e6-484d-80e3-d027625a675e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f0d638aa-83e6-484d-80e3-d027625a675e.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-f0d638aa-83e6-484d-80e3-d027625a675e.shogun-image {
    
    
  }


.s-f0d638aa-83e6-484d-80e3-d027625a675e .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-f0d638aa-83e6-484d-80e3-d027625a675e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f0d638aa-83e6-484d-80e3-d027625a675e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f0d638aa-83e6-484d-80e3-d027625a675e.shogun-image {
  box-sizing: border-box;
}



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





  img.s-f0d638aa-83e6-484d-80e3-d027625a675e.shogun-image {
    
    
  }


.s-f0d638aa-83e6-484d-80e3-d027625a675e .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-f0d638aa-83e6-484d-80e3-d027625a675e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f0d638aa-83e6-484d-80e3-d027625a675e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f0d638aa-83e6-484d-80e3-d027625a675e.shogun-image {
  box-sizing: border-box;
}



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





  img.s-f0d638aa-83e6-484d-80e3-d027625a675e.shogun-image {
    
    
  }


.s-f0d638aa-83e6-484d-80e3-d027625a675e .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-f0d638aa-83e6-484d-80e3-d027625a675e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f0d638aa-83e6-484d-80e3-d027625a675e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f0d638aa-83e6-484d-80e3-d027625a675e.shogun-image {
  box-sizing: border-box;
}



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





  img.s-f0d638aa-83e6-484d-80e3-d027625a675e.shogun-image {
    
    
  }


.s-f0d638aa-83e6-484d-80e3-d027625a675e .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-f0d638aa-83e6-484d-80e3-d027625a675e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f0d638aa-83e6-484d-80e3-d027625a675e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f0d638aa-83e6-484d-80e3-d027625a675e.shogun-image {
  box-sizing: border-box;
}



}
#s-9d2b3343-5b14-4c29-ad5c-e84ed224bf55 {
  margin-top: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9d2b3343-5b14-4c29-ad5c-e84ed224bf55 .shogun-heading-component h5 {
  color: rgba(31, 31, 31, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-f287f0a7-eadd-4d7f-8136-a7f06ab6ea39 {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-f287f0a7-eadd-4d7f-8136-a7f06ab6ea39 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f287f0a7-eadd-4d7f-8136-a7f06ab6ea39.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9267d146-cce1-4c80-9a84-0d54af4b668e {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: rgba(29, 29, 29, 0);
border-radius: 3px;
max-width: 100%;
background-color: rgba(29, 29, 29, 0.9);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-9267d146-cce1-4c80-9a84-0d54af4b668e:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 0) !important;
background-color: rgba(74, 74, 74, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-9267d146-cce1-4c80-9a84-0d54af4b668e:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(155, 155, 155, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-9267d146-cce1-4c80-9a84-0d54af4b668e-root {
    text-align: center;
  }


#s-9267d146-cce1-4c80-9a84-0d54af4b668e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-9267d146-cce1-4c80-9a84-0d54af4b668e-root {
    text-align: center;
  }


#s-9267d146-cce1-4c80-9a84-0d54af4b668e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9267d146-cce1-4c80-9a84-0d54af4b668e-root {
    text-align: center;
  }


#s-9267d146-cce1-4c80-9a84-0d54af4b668e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9267d146-cce1-4c80-9a84-0d54af4b668e-root {
    text-align: center;
  }


#s-9267d146-cce1-4c80-9a84-0d54af4b668e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-9267d146-cce1-4c80-9a84-0d54af4b668e-root {
    text-align: center;
  }


#s-9267d146-cce1-4c80-9a84-0d54af4b668e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-9267d146-cce1-4c80-9a84-0d54af4b668e-root {
    text-align: center;
  }


#s-9267d146-cce1-4c80-9a84-0d54af4b668e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-65358559-ae8f-4f57-8f42-f1426175b3a9 {
  margin-top: 13%;
margin-bottom: 0%;
}

#s-65358559-ae8f-4f57-8f42-f1426175b3a9 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(13, calc(100vw / 24));
}

#s-c17f1de6-5e06-48c8-9242-b99793e3e384 {
  aspect-ratio: 13/13;
text-align: center;
}

#s-c17f1de6-5e06-48c8-9242-b99793e3e384-root {
  grid-column-start: 1;
grid-column-end: 14;
grid-row-start: 1;
grid-row-end: 14;
z-index: 0;
}





  #s-c17f1de6-5e06-48c8-9242-b99793e3e384 img.shogun-image,
  #s-c17f1de6-5e06-48c8-9242-b99793e3e384 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c17f1de6-5e06-48c8-9242-b99793e3e384 {
    width: 100%;
    height: auto;
  }

  #s-c17f1de6-5e06-48c8-9242-b99793e3e384 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c17f1de6-5e06-48c8-9242-b99793e3e384.shogun-image {
    
    
  }


.s-c17f1de6-5e06-48c8-9242-b99793e3e384 .shogun-image-content {
  
    align-items: center;
  
}

.s-c17f1de6-5e06-48c8-9242-b99793e3e384.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c17f1de6-5e06-48c8-9242-b99793e3e384.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c17f1de6-5e06-48c8-9242-b99793e3e384.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c17f1de6-5e06-48c8-9242-b99793e3e384 {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-c17f1de6-5e06-48c8-9242-b99793e3e384.shogun-image-container {
      position: relative;
    }

    .s-c17f1de6-5e06-48c8-9242-b99793e3e384.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c17f1de6-5e06-48c8-9242-b99793e3e384.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c17f1de6-5e06-48c8-9242-b99793e3e384 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-c17f1de6-5e06-48c8-9242-b99793e3e384 img.shogun-image,
  #s-c17f1de6-5e06-48c8-9242-b99793e3e384 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c17f1de6-5e06-48c8-9242-b99793e3e384 {
    width: 100%;
    height: auto;
  }

  #s-c17f1de6-5e06-48c8-9242-b99793e3e384 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c17f1de6-5e06-48c8-9242-b99793e3e384.shogun-image {
    
    
  }


.s-c17f1de6-5e06-48c8-9242-b99793e3e384 .shogun-image-content {
  
    align-items: center;
  
}

.s-c17f1de6-5e06-48c8-9242-b99793e3e384.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c17f1de6-5e06-48c8-9242-b99793e3e384.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c17f1de6-5e06-48c8-9242-b99793e3e384.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c17f1de6-5e06-48c8-9242-b99793e3e384 {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-c17f1de6-5e06-48c8-9242-b99793e3e384.shogun-image-container {
      position: relative;
    }

    .s-c17f1de6-5e06-48c8-9242-b99793e3e384.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c17f1de6-5e06-48c8-9242-b99793e3e384.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c17f1de6-5e06-48c8-9242-b99793e3e384 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-c17f1de6-5e06-48c8-9242-b99793e3e384 img.shogun-image,
  #s-c17f1de6-5e06-48c8-9242-b99793e3e384 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c17f1de6-5e06-48c8-9242-b99793e3e384 {
    width: 100%;
    height: auto;
  }

  #s-c17f1de6-5e06-48c8-9242-b99793e3e384 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c17f1de6-5e06-48c8-9242-b99793e3e384.shogun-image {
    
    
  }


.s-c17f1de6-5e06-48c8-9242-b99793e3e384 .shogun-image-content {
  
    align-items: center;
  
}

.s-c17f1de6-5e06-48c8-9242-b99793e3e384.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c17f1de6-5e06-48c8-9242-b99793e3e384.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c17f1de6-5e06-48c8-9242-b99793e3e384.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c17f1de6-5e06-48c8-9242-b99793e3e384 {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-c17f1de6-5e06-48c8-9242-b99793e3e384.shogun-image-container {
      position: relative;
    }

    .s-c17f1de6-5e06-48c8-9242-b99793e3e384.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c17f1de6-5e06-48c8-9242-b99793e3e384.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c17f1de6-5e06-48c8-9242-b99793e3e384 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-c17f1de6-5e06-48c8-9242-b99793e3e384 img.shogun-image,
  #s-c17f1de6-5e06-48c8-9242-b99793e3e384 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c17f1de6-5e06-48c8-9242-b99793e3e384 {
    width: 100%;
    height: auto;
  }

  #s-c17f1de6-5e06-48c8-9242-b99793e3e384 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c17f1de6-5e06-48c8-9242-b99793e3e384.shogun-image {
    
    
  }


.s-c17f1de6-5e06-48c8-9242-b99793e3e384 .shogun-image-content {
  
    align-items: center;
  
}

.s-c17f1de6-5e06-48c8-9242-b99793e3e384.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c17f1de6-5e06-48c8-9242-b99793e3e384.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c17f1de6-5e06-48c8-9242-b99793e3e384.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c17f1de6-5e06-48c8-9242-b99793e3e384 {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-c17f1de6-5e06-48c8-9242-b99793e3e384.shogun-image-container {
      position: relative;
    }

    .s-c17f1de6-5e06-48c8-9242-b99793e3e384.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c17f1de6-5e06-48c8-9242-b99793e3e384.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c17f1de6-5e06-48c8-9242-b99793e3e384 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-c17f1de6-5e06-48c8-9242-b99793e3e384 img.shogun-image,
  #s-c17f1de6-5e06-48c8-9242-b99793e3e384 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c17f1de6-5e06-48c8-9242-b99793e3e384 {
    width: 100%;
    height: auto;
  }

  #s-c17f1de6-5e06-48c8-9242-b99793e3e384 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c17f1de6-5e06-48c8-9242-b99793e3e384.shogun-image {
    
    
  }


.s-c17f1de6-5e06-48c8-9242-b99793e3e384 .shogun-image-content {
  
    align-items: center;
  
}

.s-c17f1de6-5e06-48c8-9242-b99793e3e384.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c17f1de6-5e06-48c8-9242-b99793e3e384.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c17f1de6-5e06-48c8-9242-b99793e3e384.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c17f1de6-5e06-48c8-9242-b99793e3e384 {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-c17f1de6-5e06-48c8-9242-b99793e3e384.shogun-image-container {
      position: relative;
    }

    .s-c17f1de6-5e06-48c8-9242-b99793e3e384.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c17f1de6-5e06-48c8-9242-b99793e3e384.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c17f1de6-5e06-48c8-9242-b99793e3e384 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5 {
  aspect-ratio: 11/11;
text-align: center;
}

#s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5-root {
  grid-column-start: 14;
grid-column-end: 25;
grid-row-start: 1;
grid-row-end: 12;
z-index: 1;
}





  #s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5 img.shogun-image,
  #s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5 {
    width: 100%;
    height: auto;
  }

  #s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5.shogun-image {
    
    
  }


.s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5 .shogun-image-content {
  
    align-items: center;
  
}

.s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5.shogun-image-container {
      position: relative;
    }

    .s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5 img.shogun-image,
  #s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5 {
    width: 100%;
    height: auto;
  }

  #s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5.shogun-image {
    
    
  }


.s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5 .shogun-image-content {
  
    align-items: center;
  
}

.s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5.shogun-image-container {
      position: relative;
    }

    .s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5 img.shogun-image,
  #s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5 {
    width: 100%;
    height: auto;
  }

  #s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5.shogun-image {
    
    
  }


.s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5 .shogun-image-content {
  
    align-items: center;
  
}

.s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5.shogun-image-container {
      position: relative;
    }

    .s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5 img.shogun-image,
  #s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5 {
    width: 100%;
    height: auto;
  }

  #s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5.shogun-image {
    
    
  }


.s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5 .shogun-image-content {
  
    align-items: center;
  
}

.s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5.shogun-image-container {
      position: relative;
    }

    .s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5 img.shogun-image,
  #s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5 {
    width: 100%;
    height: auto;
  }

  #s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5.shogun-image {
    
    
  }


.s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5 .shogun-image-content {
  
    align-items: center;
  
}

.s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5.shogun-image-container {
      position: relative;
    }

    .s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dd1d04c8-c3ac-4013-b0e7-fa948fc466b5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-e625f07e-d83d-4596-adb0-698344ebf039 {
  margin-top: -3%;
}

#s-e625f07e-d83d-4596-adb0-698344ebf039 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(6, calc(100vw / 24));
}

#s-809e87a3-3ad6-4450-bd81-edf33449ae00 {
  margin-top: 3%;
margin-left: 0%;
margin-right: 20%;
aspect-ratio: 5/5;
text-align: center;
}

#s-809e87a3-3ad6-4450-bd81-edf33449ae00-root {
  grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 2;
grid-row-end: 7;
z-index: 0;
}





  #s-809e87a3-3ad6-4450-bd81-edf33449ae00 img.shogun-image,
  #s-809e87a3-3ad6-4450-bd81-edf33449ae00 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-809e87a3-3ad6-4450-bd81-edf33449ae00 {
    width: 100%;
    height: auto;
  }

  #s-809e87a3-3ad6-4450-bd81-edf33449ae00 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-809e87a3-3ad6-4450-bd81-edf33449ae00.shogun-image {
    
    
  }


.s-809e87a3-3ad6-4450-bd81-edf33449ae00 .shogun-image-content {
  
    align-items: center;
  
}

.s-809e87a3-3ad6-4450-bd81-edf33449ae00.shg-align-container {
  display: flex;
  justify-content: center
}

.s-809e87a3-3ad6-4450-bd81-edf33449ae00.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-809e87a3-3ad6-4450-bd81-edf33449ae00.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-809e87a3-3ad6-4450-bd81-edf33449ae00 {
      --shg-aspect-ratio: calc(5/5); 
    }

    .s-809e87a3-3ad6-4450-bd81-edf33449ae00.shogun-image-container {
      position: relative;
    }

    .s-809e87a3-3ad6-4450-bd81-edf33449ae00.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-809e87a3-3ad6-4450-bd81-edf33449ae00.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-809e87a3-3ad6-4450-bd81-edf33449ae00 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-809e87a3-3ad6-4450-bd81-edf33449ae00 img.shogun-image,
  #s-809e87a3-3ad6-4450-bd81-edf33449ae00 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-809e87a3-3ad6-4450-bd81-edf33449ae00 {
    width: 100%;
    height: auto;
  }

  #s-809e87a3-3ad6-4450-bd81-edf33449ae00 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-809e87a3-3ad6-4450-bd81-edf33449ae00.shogun-image {
    
    
  }


.s-809e87a3-3ad6-4450-bd81-edf33449ae00 .shogun-image-content {
  
    align-items: center;
  
}

.s-809e87a3-3ad6-4450-bd81-edf33449ae00.shg-align-container {
  display: flex;
  justify-content: center
}

.s-809e87a3-3ad6-4450-bd81-edf33449ae00.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-809e87a3-3ad6-4450-bd81-edf33449ae00.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-809e87a3-3ad6-4450-bd81-edf33449ae00 {
      --shg-aspect-ratio: calc(5/5); 
    }

    .s-809e87a3-3ad6-4450-bd81-edf33449ae00.shogun-image-container {
      position: relative;
    }

    .s-809e87a3-3ad6-4450-bd81-edf33449ae00.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-809e87a3-3ad6-4450-bd81-edf33449ae00.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-809e87a3-3ad6-4450-bd81-edf33449ae00 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-809e87a3-3ad6-4450-bd81-edf33449ae00 img.shogun-image,
  #s-809e87a3-3ad6-4450-bd81-edf33449ae00 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-809e87a3-3ad6-4450-bd81-edf33449ae00 {
    width: 100%;
    height: auto;
  }

  #s-809e87a3-3ad6-4450-bd81-edf33449ae00 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-809e87a3-3ad6-4450-bd81-edf33449ae00.shogun-image {
    
    
  }


.s-809e87a3-3ad6-4450-bd81-edf33449ae00 .shogun-image-content {
  
    align-items: center;
  
}

.s-809e87a3-3ad6-4450-bd81-edf33449ae00.shg-align-container {
  display: flex;
  justify-content: center
}

.s-809e87a3-3ad6-4450-bd81-edf33449ae00.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-809e87a3-3ad6-4450-bd81-edf33449ae00.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-809e87a3-3ad6-4450-bd81-edf33449ae00 {
      --shg-aspect-ratio: calc(5/5); 
    }

    .s-809e87a3-3ad6-4450-bd81-edf33449ae00.shogun-image-container {
      position: relative;
    }

    .s-809e87a3-3ad6-4450-bd81-edf33449ae00.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-809e87a3-3ad6-4450-bd81-edf33449ae00.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-809e87a3-3ad6-4450-bd81-edf33449ae00 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-809e87a3-3ad6-4450-bd81-edf33449ae00 img.shogun-image,
  #s-809e87a3-3ad6-4450-bd81-edf33449ae00 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-809e87a3-3ad6-4450-bd81-edf33449ae00 {
    width: 100%;
    height: auto;
  }

  #s-809e87a3-3ad6-4450-bd81-edf33449ae00 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-809e87a3-3ad6-4450-bd81-edf33449ae00.shogun-image {
    
    
  }


.s-809e87a3-3ad6-4450-bd81-edf33449ae00 .shogun-image-content {
  
    align-items: center;
  
}

.s-809e87a3-3ad6-4450-bd81-edf33449ae00.shg-align-container {
  display: flex;
  justify-content: center
}

.s-809e87a3-3ad6-4450-bd81-edf33449ae00.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-809e87a3-3ad6-4450-bd81-edf33449ae00.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-809e87a3-3ad6-4450-bd81-edf33449ae00 {
      --shg-aspect-ratio: calc(5/5); 
    }

    .s-809e87a3-3ad6-4450-bd81-edf33449ae00.shogun-image-container {
      position: relative;
    }

    .s-809e87a3-3ad6-4450-bd81-edf33449ae00.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-809e87a3-3ad6-4450-bd81-edf33449ae00.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-809e87a3-3ad6-4450-bd81-edf33449ae00 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-809e87a3-3ad6-4450-bd81-edf33449ae00 img.shogun-image,
  #s-809e87a3-3ad6-4450-bd81-edf33449ae00 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-809e87a3-3ad6-4450-bd81-edf33449ae00 {
    width: 100%;
    height: auto;
  }

  #s-809e87a3-3ad6-4450-bd81-edf33449ae00 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-809e87a3-3ad6-4450-bd81-edf33449ae00.shogun-image {
    
    
  }


.s-809e87a3-3ad6-4450-bd81-edf33449ae00 .shogun-image-content {
  
    align-items: center;
  
}

.s-809e87a3-3ad6-4450-bd81-edf33449ae00.shg-align-container {
  display: flex;
  justify-content: center
}

.s-809e87a3-3ad6-4450-bd81-edf33449ae00.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-809e87a3-3ad6-4450-bd81-edf33449ae00.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-809e87a3-3ad6-4450-bd81-edf33449ae00 {
      --shg-aspect-ratio: calc(5/5); 
    }

    .s-809e87a3-3ad6-4450-bd81-edf33449ae00.shogun-image-container {
      position: relative;
    }

    .s-809e87a3-3ad6-4450-bd81-edf33449ae00.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-809e87a3-3ad6-4450-bd81-edf33449ae00.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-809e87a3-3ad6-4450-bd81-edf33449ae00 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-bd7ddf88-9784-4a93-bed1-250afd16dd41 {
  margin-top: 5%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-bd7ddf88-9784-4a93-bed1-250afd16dd41 {
  grid-column-start: 6;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 7;
z-index: 1;
}

#s-bd7ddf88-9784-4a93-bed1-250afd16dd41 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 1px;
  text-align: left;
}



#s-d6a3ca93-b274-4e37-9ec3-85776aa80d48 {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-05149d69-24bd-4e28-88b3-d408cd18922b {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}







  img.s-05149d69-24bd-4e28-88b3-d408cd18922b.shogun-image {
    
    
  }


.s-05149d69-24bd-4e28-88b3-d408cd18922b .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-05149d69-24bd-4e28-88b3-d408cd18922b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-05149d69-24bd-4e28-88b3-d408cd18922b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-05149d69-24bd-4e28-88b3-d408cd18922b.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-05149d69-24bd-4e28-88b3-d408cd18922b.shogun-image {
    
    
  }


.s-05149d69-24bd-4e28-88b3-d408cd18922b .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-05149d69-24bd-4e28-88b3-d408cd18922b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-05149d69-24bd-4e28-88b3-d408cd18922b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-05149d69-24bd-4e28-88b3-d408cd18922b.shogun-image {
  box-sizing: border-box;
}



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





  img.s-05149d69-24bd-4e28-88b3-d408cd18922b.shogun-image {
    
    
  }


.s-05149d69-24bd-4e28-88b3-d408cd18922b .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-05149d69-24bd-4e28-88b3-d408cd18922b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-05149d69-24bd-4e28-88b3-d408cd18922b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-05149d69-24bd-4e28-88b3-d408cd18922b.shogun-image {
  box-sizing: border-box;
}



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





  img.s-05149d69-24bd-4e28-88b3-d408cd18922b.shogun-image {
    
    
  }


.s-05149d69-24bd-4e28-88b3-d408cd18922b .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-05149d69-24bd-4e28-88b3-d408cd18922b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-05149d69-24bd-4e28-88b3-d408cd18922b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-05149d69-24bd-4e28-88b3-d408cd18922b.shogun-image {
  box-sizing: border-box;
}



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





  img.s-05149d69-24bd-4e28-88b3-d408cd18922b.shogun-image {
    
    
  }


.s-05149d69-24bd-4e28-88b3-d408cd18922b .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-05149d69-24bd-4e28-88b3-d408cd18922b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-05149d69-24bd-4e28-88b3-d408cd18922b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-05149d69-24bd-4e28-88b3-d408cd18922b.shogun-image {
  box-sizing: border-box;
}



}
#s-87738d16-4635-43df-846c-dc3d7ed2c5cf {
  margin-top: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-87738d16-4635-43df-846c-dc3d7ed2c5cf .shogun-heading-component h5 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-0c15614b-ab89-4432-b0f2-e0cb8e3af009 {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-0c15614b-ab89-4432-b0f2-e0cb8e3af009 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0c15614b-ab89-4432-b0f2-e0cb8e3af009.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c40573e9-d5aa-48d3-a695-61fdc800439e {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: rgba(255, 255, 255, 1);
border-radius: 3px;
max-width: 100%;
background-color: rgba(255, 255, 255, 0.5);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-c40573e9-d5aa-48d3-a695-61fdc800439e:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: rgba(255, 255, 255, 0.36) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-c40573e9-d5aa-48d3-a695-61fdc800439e:active {background-color: rgba(255, 255, 255, 0.51) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-c40573e9-d5aa-48d3-a695-61fdc800439e-root {
    text-align: center;
  }


#s-c40573e9-d5aa-48d3-a695-61fdc800439e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-c40573e9-d5aa-48d3-a695-61fdc800439e-root {
    text-align: center;
  }


#s-c40573e9-d5aa-48d3-a695-61fdc800439e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c40573e9-d5aa-48d3-a695-61fdc800439e-root {
    text-align: center;
  }


#s-c40573e9-d5aa-48d3-a695-61fdc800439e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c40573e9-d5aa-48d3-a695-61fdc800439e-root {
    text-align: center;
  }


#s-c40573e9-d5aa-48d3-a695-61fdc800439e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-c40573e9-d5aa-48d3-a695-61fdc800439e-root {
    text-align: center;
  }


#s-c40573e9-d5aa-48d3-a695-61fdc800439e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-c40573e9-d5aa-48d3-a695-61fdc800439e-root {
    text-align: center;
  }


#s-c40573e9-d5aa-48d3-a695-61fdc800439e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-b0466370-08b9-4a29-8ba6-34907b26c93a {
  margin-top: 13%;
}

#s-b0466370-08b9-4a29-8ba6-34907b26c93a .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(14, calc(100vw / 24));
}

#s-f8c8e961-dabf-40de-9647-7530441a4619 {
  aspect-ratio: 11/11;
text-align: center;
}

#s-f8c8e961-dabf-40de-9647-7530441a4619-root {
  grid-column-start: 1;
grid-column-end: 12;
grid-row-start: 4;
grid-row-end: 15;
z-index: 0;
}





  #s-f8c8e961-dabf-40de-9647-7530441a4619 img.shogun-image,
  #s-f8c8e961-dabf-40de-9647-7530441a4619 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f8c8e961-dabf-40de-9647-7530441a4619 {
    width: 100%;
    height: auto;
  }

  #s-f8c8e961-dabf-40de-9647-7530441a4619 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f8c8e961-dabf-40de-9647-7530441a4619.shogun-image {
    
    
  }


.s-f8c8e961-dabf-40de-9647-7530441a4619 .shogun-image-content {
  
    align-items: center;
  
}

.s-f8c8e961-dabf-40de-9647-7530441a4619.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f8c8e961-dabf-40de-9647-7530441a4619.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f8c8e961-dabf-40de-9647-7530441a4619.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f8c8e961-dabf-40de-9647-7530441a4619 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-f8c8e961-dabf-40de-9647-7530441a4619.shogun-image-container {
      position: relative;
    }

    .s-f8c8e961-dabf-40de-9647-7530441a4619.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f8c8e961-dabf-40de-9647-7530441a4619.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f8c8e961-dabf-40de-9647-7530441a4619 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-f8c8e961-dabf-40de-9647-7530441a4619 img.shogun-image,
  #s-f8c8e961-dabf-40de-9647-7530441a4619 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f8c8e961-dabf-40de-9647-7530441a4619 {
    width: 100%;
    height: auto;
  }

  #s-f8c8e961-dabf-40de-9647-7530441a4619 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f8c8e961-dabf-40de-9647-7530441a4619.shogun-image {
    
    
  }


.s-f8c8e961-dabf-40de-9647-7530441a4619 .shogun-image-content {
  
    align-items: center;
  
}

.s-f8c8e961-dabf-40de-9647-7530441a4619.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f8c8e961-dabf-40de-9647-7530441a4619.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f8c8e961-dabf-40de-9647-7530441a4619.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f8c8e961-dabf-40de-9647-7530441a4619 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-f8c8e961-dabf-40de-9647-7530441a4619.shogun-image-container {
      position: relative;
    }

    .s-f8c8e961-dabf-40de-9647-7530441a4619.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f8c8e961-dabf-40de-9647-7530441a4619.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f8c8e961-dabf-40de-9647-7530441a4619 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-f8c8e961-dabf-40de-9647-7530441a4619 img.shogun-image,
  #s-f8c8e961-dabf-40de-9647-7530441a4619 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f8c8e961-dabf-40de-9647-7530441a4619 {
    width: 100%;
    height: auto;
  }

  #s-f8c8e961-dabf-40de-9647-7530441a4619 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f8c8e961-dabf-40de-9647-7530441a4619.shogun-image {
    
    
  }


.s-f8c8e961-dabf-40de-9647-7530441a4619 .shogun-image-content {
  
    align-items: center;
  
}

.s-f8c8e961-dabf-40de-9647-7530441a4619.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f8c8e961-dabf-40de-9647-7530441a4619.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f8c8e961-dabf-40de-9647-7530441a4619.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f8c8e961-dabf-40de-9647-7530441a4619 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-f8c8e961-dabf-40de-9647-7530441a4619.shogun-image-container {
      position: relative;
    }

    .s-f8c8e961-dabf-40de-9647-7530441a4619.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f8c8e961-dabf-40de-9647-7530441a4619.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f8c8e961-dabf-40de-9647-7530441a4619 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-f8c8e961-dabf-40de-9647-7530441a4619 img.shogun-image,
  #s-f8c8e961-dabf-40de-9647-7530441a4619 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f8c8e961-dabf-40de-9647-7530441a4619 {
    width: 100%;
    height: auto;
  }

  #s-f8c8e961-dabf-40de-9647-7530441a4619 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f8c8e961-dabf-40de-9647-7530441a4619.shogun-image {
    
    
  }


.s-f8c8e961-dabf-40de-9647-7530441a4619 .shogun-image-content {
  
    align-items: center;
  
}

.s-f8c8e961-dabf-40de-9647-7530441a4619.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f8c8e961-dabf-40de-9647-7530441a4619.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f8c8e961-dabf-40de-9647-7530441a4619.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f8c8e961-dabf-40de-9647-7530441a4619 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-f8c8e961-dabf-40de-9647-7530441a4619.shogun-image-container {
      position: relative;
    }

    .s-f8c8e961-dabf-40de-9647-7530441a4619.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f8c8e961-dabf-40de-9647-7530441a4619.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f8c8e961-dabf-40de-9647-7530441a4619 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-f8c8e961-dabf-40de-9647-7530441a4619 img.shogun-image,
  #s-f8c8e961-dabf-40de-9647-7530441a4619 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f8c8e961-dabf-40de-9647-7530441a4619 {
    width: 100%;
    height: auto;
  }

  #s-f8c8e961-dabf-40de-9647-7530441a4619 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f8c8e961-dabf-40de-9647-7530441a4619.shogun-image {
    
    
  }


.s-f8c8e961-dabf-40de-9647-7530441a4619 .shogun-image-content {
  
    align-items: center;
  
}

.s-f8c8e961-dabf-40de-9647-7530441a4619.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f8c8e961-dabf-40de-9647-7530441a4619.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f8c8e961-dabf-40de-9647-7530441a4619.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f8c8e961-dabf-40de-9647-7530441a4619 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-f8c8e961-dabf-40de-9647-7530441a4619.shogun-image-container {
      position: relative;
    }

    .s-f8c8e961-dabf-40de-9647-7530441a4619.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f8c8e961-dabf-40de-9647-7530441a4619.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f8c8e961-dabf-40de-9647-7530441a4619 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-be8032eb-4d00-49af-a5ae-d97b81fdb860 {
  aspect-ratio: 14/14;
text-align: center;
}

#s-be8032eb-4d00-49af-a5ae-d97b81fdb860-root {
  grid-column-start: 11;
grid-column-end: 25;
grid-row-start: 1;
grid-row-end: 15;
z-index: 1;
}





  #s-be8032eb-4d00-49af-a5ae-d97b81fdb860 img.shogun-image,
  #s-be8032eb-4d00-49af-a5ae-d97b81fdb860 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-be8032eb-4d00-49af-a5ae-d97b81fdb860 {
    width: 100%;
    height: auto;
  }

  #s-be8032eb-4d00-49af-a5ae-d97b81fdb860 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-be8032eb-4d00-49af-a5ae-d97b81fdb860.shogun-image {
    
    
  }


.s-be8032eb-4d00-49af-a5ae-d97b81fdb860 .shogun-image-content {
  
    align-items: center;
  
}

.s-be8032eb-4d00-49af-a5ae-d97b81fdb860.shg-align-container {
  display: flex;
  justify-content: center
}

.s-be8032eb-4d00-49af-a5ae-d97b81fdb860.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-be8032eb-4d00-49af-a5ae-d97b81fdb860.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-be8032eb-4d00-49af-a5ae-d97b81fdb860 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-be8032eb-4d00-49af-a5ae-d97b81fdb860.shogun-image-container {
      position: relative;
    }

    .s-be8032eb-4d00-49af-a5ae-d97b81fdb860.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-be8032eb-4d00-49af-a5ae-d97b81fdb860.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-be8032eb-4d00-49af-a5ae-d97b81fdb860 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-be8032eb-4d00-49af-a5ae-d97b81fdb860 img.shogun-image,
  #s-be8032eb-4d00-49af-a5ae-d97b81fdb860 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-be8032eb-4d00-49af-a5ae-d97b81fdb860 {
    width: 100%;
    height: auto;
  }

  #s-be8032eb-4d00-49af-a5ae-d97b81fdb860 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-be8032eb-4d00-49af-a5ae-d97b81fdb860.shogun-image {
    
    
  }


.s-be8032eb-4d00-49af-a5ae-d97b81fdb860 .shogun-image-content {
  
    align-items: center;
  
}

.s-be8032eb-4d00-49af-a5ae-d97b81fdb860.shg-align-container {
  display: flex;
  justify-content: center
}

.s-be8032eb-4d00-49af-a5ae-d97b81fdb860.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-be8032eb-4d00-49af-a5ae-d97b81fdb860.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-be8032eb-4d00-49af-a5ae-d97b81fdb860 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-be8032eb-4d00-49af-a5ae-d97b81fdb860.shogun-image-container {
      position: relative;
    }

    .s-be8032eb-4d00-49af-a5ae-d97b81fdb860.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-be8032eb-4d00-49af-a5ae-d97b81fdb860.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-be8032eb-4d00-49af-a5ae-d97b81fdb860 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-be8032eb-4d00-49af-a5ae-d97b81fdb860 img.shogun-image,
  #s-be8032eb-4d00-49af-a5ae-d97b81fdb860 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-be8032eb-4d00-49af-a5ae-d97b81fdb860 {
    width: 100%;
    height: auto;
  }

  #s-be8032eb-4d00-49af-a5ae-d97b81fdb860 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-be8032eb-4d00-49af-a5ae-d97b81fdb860.shogun-image {
    
    
  }


.s-be8032eb-4d00-49af-a5ae-d97b81fdb860 .shogun-image-content {
  
    align-items: center;
  
}

.s-be8032eb-4d00-49af-a5ae-d97b81fdb860.shg-align-container {
  display: flex;
  justify-content: center
}

.s-be8032eb-4d00-49af-a5ae-d97b81fdb860.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-be8032eb-4d00-49af-a5ae-d97b81fdb860.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-be8032eb-4d00-49af-a5ae-d97b81fdb860 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-be8032eb-4d00-49af-a5ae-d97b81fdb860.shogun-image-container {
      position: relative;
    }

    .s-be8032eb-4d00-49af-a5ae-d97b81fdb860.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-be8032eb-4d00-49af-a5ae-d97b81fdb860.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-be8032eb-4d00-49af-a5ae-d97b81fdb860 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-be8032eb-4d00-49af-a5ae-d97b81fdb860 img.shogun-image,
  #s-be8032eb-4d00-49af-a5ae-d97b81fdb860 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-be8032eb-4d00-49af-a5ae-d97b81fdb860 {
    width: 100%;
    height: auto;
  }

  #s-be8032eb-4d00-49af-a5ae-d97b81fdb860 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-be8032eb-4d00-49af-a5ae-d97b81fdb860.shogun-image {
    
    
  }


.s-be8032eb-4d00-49af-a5ae-d97b81fdb860 .shogun-image-content {
  
    align-items: center;
  
}

.s-be8032eb-4d00-49af-a5ae-d97b81fdb860.shg-align-container {
  display: flex;
  justify-content: center
}

.s-be8032eb-4d00-49af-a5ae-d97b81fdb860.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-be8032eb-4d00-49af-a5ae-d97b81fdb860.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-be8032eb-4d00-49af-a5ae-d97b81fdb860 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-be8032eb-4d00-49af-a5ae-d97b81fdb860.shogun-image-container {
      position: relative;
    }

    .s-be8032eb-4d00-49af-a5ae-d97b81fdb860.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-be8032eb-4d00-49af-a5ae-d97b81fdb860.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-be8032eb-4d00-49af-a5ae-d97b81fdb860 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-be8032eb-4d00-49af-a5ae-d97b81fdb860 img.shogun-image,
  #s-be8032eb-4d00-49af-a5ae-d97b81fdb860 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-be8032eb-4d00-49af-a5ae-d97b81fdb860 {
    width: 100%;
    height: auto;
  }

  #s-be8032eb-4d00-49af-a5ae-d97b81fdb860 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-be8032eb-4d00-49af-a5ae-d97b81fdb860.shogun-image {
    
    
  }


.s-be8032eb-4d00-49af-a5ae-d97b81fdb860 .shogun-image-content {
  
    align-items: center;
  
}

.s-be8032eb-4d00-49af-a5ae-d97b81fdb860.shg-align-container {
  display: flex;
  justify-content: center
}

.s-be8032eb-4d00-49af-a5ae-d97b81fdb860.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-be8032eb-4d00-49af-a5ae-d97b81fdb860.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-be8032eb-4d00-49af-a5ae-d97b81fdb860 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-be8032eb-4d00-49af-a5ae-d97b81fdb860.shogun-image-container {
      position: relative;
    }

    .s-be8032eb-4d00-49af-a5ae-d97b81fdb860.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-be8032eb-4d00-49af-a5ae-d97b81fdb860.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-be8032eb-4d00-49af-a5ae-d97b81fdb860 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-7980465c-075f-4fab-9eb7-a384a967e7b6 {
  margin-top: -1%;
}

#s-7980465c-075f-4fab-9eb7-a384a967e7b6 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(5, calc(100vw / 24));
}

#s-ec14367a-7379-4ef9-98ad-9bff10751d4d {
  margin-left: 0%;
margin-right: 20%;
text-align: center;
}

#s-ec14367a-7379-4ef9-98ad-9bff10751d4d-root {
  grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 2;
grid-row-end: 6;
z-index: 0;
}







  img.s-ec14367a-7379-4ef9-98ad-9bff10751d4d.shogun-image {
    
    
  }


.s-ec14367a-7379-4ef9-98ad-9bff10751d4d .shogun-image-content {
  
    align-items: center;
  
}

.s-ec14367a-7379-4ef9-98ad-9bff10751d4d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ec14367a-7379-4ef9-98ad-9bff10751d4d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ec14367a-7379-4ef9-98ad-9bff10751d4d.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-ec14367a-7379-4ef9-98ad-9bff10751d4d.shogun-image {
    
    
  }


.s-ec14367a-7379-4ef9-98ad-9bff10751d4d .shogun-image-content {
  
    align-items: center;
  
}

.s-ec14367a-7379-4ef9-98ad-9bff10751d4d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ec14367a-7379-4ef9-98ad-9bff10751d4d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ec14367a-7379-4ef9-98ad-9bff10751d4d.shogun-image {
  box-sizing: border-box;
}



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





  img.s-ec14367a-7379-4ef9-98ad-9bff10751d4d.shogun-image {
    
    
  }


.s-ec14367a-7379-4ef9-98ad-9bff10751d4d .shogun-image-content {
  
    align-items: center;
  
}

.s-ec14367a-7379-4ef9-98ad-9bff10751d4d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ec14367a-7379-4ef9-98ad-9bff10751d4d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ec14367a-7379-4ef9-98ad-9bff10751d4d.shogun-image {
  box-sizing: border-box;
}



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





  img.s-ec14367a-7379-4ef9-98ad-9bff10751d4d.shogun-image {
    
    
  }


.s-ec14367a-7379-4ef9-98ad-9bff10751d4d .shogun-image-content {
  
    align-items: center;
  
}

.s-ec14367a-7379-4ef9-98ad-9bff10751d4d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ec14367a-7379-4ef9-98ad-9bff10751d4d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ec14367a-7379-4ef9-98ad-9bff10751d4d.shogun-image {
  box-sizing: border-box;
}



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





  img.s-ec14367a-7379-4ef9-98ad-9bff10751d4d.shogun-image {
    
    
  }


.s-ec14367a-7379-4ef9-98ad-9bff10751d4d .shogun-image-content {
  
    align-items: center;
  
}

.s-ec14367a-7379-4ef9-98ad-9bff10751d4d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ec14367a-7379-4ef9-98ad-9bff10751d4d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ec14367a-7379-4ef9-98ad-9bff10751d4d.shogun-image {
  box-sizing: border-box;
}



}
#s-26211af0-1d6d-4a6c-9fad-50547981efa7 {
  margin-top: 5%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-26211af0-1d6d-4a6c-9fad-50547981efa7 {
  grid-column-start: 6;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 6;
z-index: 1;
}

#s-26211af0-1d6d-4a6c-9fad-50547981efa7 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 1px;
  text-align: left;
}



#s-d11abbc9-a83f-4c4a-a1d7-c094ec6b14c0 {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-1d57e782-774c-47f8-b405-ac2e65f97859 {
  text-align: left;
}

#s-8dd710d1-e3ef-4df4-abca-fda0de19aca5 {
  margin-top: 3%;
margin-left: 5%;
margin-bottom: 5%;
margin-right: 5%;
min-height: 50px;
}
@media (min-width: 1200px){#s-8dd710d1-e3ef-4df4-abca-fda0de19aca5 {
  display: none;
}
#s-8dd710d1-e3ef-4df4-abca-fda0de19aca5, #wrap-s-8dd710d1-e3ef-4df4-abca-fda0de19aca5 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8dd710d1-e3ef-4df4-abca-fda0de19aca5 {
  display: none;
}
#s-8dd710d1-e3ef-4df4-abca-fda0de19aca5, #wrap-s-8dd710d1-e3ef-4df4-abca-fda0de19aca5 { display: none !important; }}







#s-8dd710d1-e3ef-4df4-abca-fda0de19aca5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8dd710d1-e3ef-4df4-abca-fda0de19aca5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6352b7c0-77a6-409a-b4b1-1e108c094b68 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(13, calc(100vw / 24));
}

#s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc {
  aspect-ratio: 12/12;
text-align: center;
}

#s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc-root {
  grid-column-start: 1;
grid-column-end: 13;
grid-row-start: 1;
grid-row-end: 13;
z-index: 0;
}





  #s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc img.shogun-image,
  #s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc {
    width: 100%;
    height: auto;
  }

  #s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc.shogun-image {
    
    
  }


.s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc .shogun-image-content {
  
    align-items: center;
  
}

.s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc.shogun-image-container {
      position: relative;
    }

    .s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc img.shogun-image,
  #s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc {
    width: 100%;
    height: auto;
  }

  #s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc.shogun-image {
    
    
  }


.s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc .shogun-image-content {
  
    align-items: center;
  
}

.s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc.shogun-image-container {
      position: relative;
    }

    .s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc img.shogun-image,
  #s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc {
    width: 100%;
    height: auto;
  }

  #s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc.shogun-image {
    
    
  }


.s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc .shogun-image-content {
  
    align-items: center;
  
}

.s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc.shogun-image-container {
      position: relative;
    }

    .s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc img.shogun-image,
  #s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc {
    width: 100%;
    height: auto;
  }

  #s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc.shogun-image {
    
    
  }


.s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc .shogun-image-content {
  
    align-items: center;
  
}

.s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc.shogun-image-container {
      position: relative;
    }

    .s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc img.shogun-image,
  #s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc {
    width: 100%;
    height: auto;
  }

  #s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc.shogun-image {
    
    
  }


.s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc .shogun-image-content {
  
    align-items: center;
  
}

.s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc.shogun-image-container {
      position: relative;
    }

    .s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-04bc6dbd-cba9-441d-8d8b-653f327c2fbc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-bde01923-bef5-448b-ad84-52536e9eebd1 {
  aspect-ratio: 12/12;
text-align: center;
}

#s-bde01923-bef5-448b-ad84-52536e9eebd1-root {
  grid-column-start: 12;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 14;
z-index: 1;
}





  #s-bde01923-bef5-448b-ad84-52536e9eebd1 img.shogun-image,
  #s-bde01923-bef5-448b-ad84-52536e9eebd1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-bde01923-bef5-448b-ad84-52536e9eebd1 {
    width: 100%;
    height: auto;
  }

  #s-bde01923-bef5-448b-ad84-52536e9eebd1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bde01923-bef5-448b-ad84-52536e9eebd1.shogun-image {
    
    
  }


.s-bde01923-bef5-448b-ad84-52536e9eebd1 .shogun-image-content {
  
    align-items: center;
  
}

.s-bde01923-bef5-448b-ad84-52536e9eebd1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bde01923-bef5-448b-ad84-52536e9eebd1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bde01923-bef5-448b-ad84-52536e9eebd1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bde01923-bef5-448b-ad84-52536e9eebd1 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-bde01923-bef5-448b-ad84-52536e9eebd1.shogun-image-container {
      position: relative;
    }

    .s-bde01923-bef5-448b-ad84-52536e9eebd1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bde01923-bef5-448b-ad84-52536e9eebd1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bde01923-bef5-448b-ad84-52536e9eebd1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-bde01923-bef5-448b-ad84-52536e9eebd1 img.shogun-image,
  #s-bde01923-bef5-448b-ad84-52536e9eebd1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-bde01923-bef5-448b-ad84-52536e9eebd1 {
    width: 100%;
    height: auto;
  }

  #s-bde01923-bef5-448b-ad84-52536e9eebd1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bde01923-bef5-448b-ad84-52536e9eebd1.shogun-image {
    
    
  }


.s-bde01923-bef5-448b-ad84-52536e9eebd1 .shogun-image-content {
  
    align-items: center;
  
}

.s-bde01923-bef5-448b-ad84-52536e9eebd1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bde01923-bef5-448b-ad84-52536e9eebd1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bde01923-bef5-448b-ad84-52536e9eebd1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bde01923-bef5-448b-ad84-52536e9eebd1 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-bde01923-bef5-448b-ad84-52536e9eebd1.shogun-image-container {
      position: relative;
    }

    .s-bde01923-bef5-448b-ad84-52536e9eebd1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bde01923-bef5-448b-ad84-52536e9eebd1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bde01923-bef5-448b-ad84-52536e9eebd1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-bde01923-bef5-448b-ad84-52536e9eebd1 img.shogun-image,
  #s-bde01923-bef5-448b-ad84-52536e9eebd1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-bde01923-bef5-448b-ad84-52536e9eebd1 {
    width: 100%;
    height: auto;
  }

  #s-bde01923-bef5-448b-ad84-52536e9eebd1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bde01923-bef5-448b-ad84-52536e9eebd1.shogun-image {
    
    
  }


.s-bde01923-bef5-448b-ad84-52536e9eebd1 .shogun-image-content {
  
    align-items: center;
  
}

.s-bde01923-bef5-448b-ad84-52536e9eebd1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bde01923-bef5-448b-ad84-52536e9eebd1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bde01923-bef5-448b-ad84-52536e9eebd1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bde01923-bef5-448b-ad84-52536e9eebd1 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-bde01923-bef5-448b-ad84-52536e9eebd1.shogun-image-container {
      position: relative;
    }

    .s-bde01923-bef5-448b-ad84-52536e9eebd1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bde01923-bef5-448b-ad84-52536e9eebd1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bde01923-bef5-448b-ad84-52536e9eebd1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-bde01923-bef5-448b-ad84-52536e9eebd1 img.shogun-image,
  #s-bde01923-bef5-448b-ad84-52536e9eebd1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-bde01923-bef5-448b-ad84-52536e9eebd1 {
    width: 100%;
    height: auto;
  }

  #s-bde01923-bef5-448b-ad84-52536e9eebd1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bde01923-bef5-448b-ad84-52536e9eebd1.shogun-image {
    
    
  }


.s-bde01923-bef5-448b-ad84-52536e9eebd1 .shogun-image-content {
  
    align-items: center;
  
}

.s-bde01923-bef5-448b-ad84-52536e9eebd1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bde01923-bef5-448b-ad84-52536e9eebd1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bde01923-bef5-448b-ad84-52536e9eebd1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bde01923-bef5-448b-ad84-52536e9eebd1 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-bde01923-bef5-448b-ad84-52536e9eebd1.shogun-image-container {
      position: relative;
    }

    .s-bde01923-bef5-448b-ad84-52536e9eebd1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bde01923-bef5-448b-ad84-52536e9eebd1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bde01923-bef5-448b-ad84-52536e9eebd1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-bde01923-bef5-448b-ad84-52536e9eebd1 img.shogun-image,
  #s-bde01923-bef5-448b-ad84-52536e9eebd1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-bde01923-bef5-448b-ad84-52536e9eebd1 {
    width: 100%;
    height: auto;
  }

  #s-bde01923-bef5-448b-ad84-52536e9eebd1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bde01923-bef5-448b-ad84-52536e9eebd1.shogun-image {
    
    
  }


.s-bde01923-bef5-448b-ad84-52536e9eebd1 .shogun-image-content {
  
    align-items: center;
  
}

.s-bde01923-bef5-448b-ad84-52536e9eebd1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bde01923-bef5-448b-ad84-52536e9eebd1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bde01923-bef5-448b-ad84-52536e9eebd1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bde01923-bef5-448b-ad84-52536e9eebd1 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-bde01923-bef5-448b-ad84-52536e9eebd1.shogun-image-container {
      position: relative;
    }

    .s-bde01923-bef5-448b-ad84-52536e9eebd1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bde01923-bef5-448b-ad84-52536e9eebd1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bde01923-bef5-448b-ad84-52536e9eebd1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-50edaf30-d7d4-453c-921a-39b3263d3022 {
  margin-top: -1%;
margin-bottom: 0%;
}

#s-50edaf30-d7d4-453c-921a-39b3263d3022 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(5, calc(100vw / 24));
}

#s-18263ebb-8864-4163-9ecd-6cad81592359 {
  margin-left: 0%;
margin-right: 20%;
text-align: center;
}

#s-18263ebb-8864-4163-9ecd-6cad81592359-root {
  grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 2;
grid-row-end: 6;
z-index: 0;
}







  img.s-18263ebb-8864-4163-9ecd-6cad81592359.shogun-image {
    
    
  }


.s-18263ebb-8864-4163-9ecd-6cad81592359 .shogun-image-content {
  
    align-items: center;
  
}

.s-18263ebb-8864-4163-9ecd-6cad81592359.shg-align-container {
  display: flex;
  justify-content: center
}

.s-18263ebb-8864-4163-9ecd-6cad81592359.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18263ebb-8864-4163-9ecd-6cad81592359.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-18263ebb-8864-4163-9ecd-6cad81592359.shogun-image {
    
    
  }


.s-18263ebb-8864-4163-9ecd-6cad81592359 .shogun-image-content {
  
    align-items: center;
  
}

.s-18263ebb-8864-4163-9ecd-6cad81592359.shg-align-container {
  display: flex;
  justify-content: center
}

.s-18263ebb-8864-4163-9ecd-6cad81592359.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18263ebb-8864-4163-9ecd-6cad81592359.shogun-image {
  box-sizing: border-box;
}



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





  img.s-18263ebb-8864-4163-9ecd-6cad81592359.shogun-image {
    
    
  }


.s-18263ebb-8864-4163-9ecd-6cad81592359 .shogun-image-content {
  
    align-items: center;
  
}

.s-18263ebb-8864-4163-9ecd-6cad81592359.shg-align-container {
  display: flex;
  justify-content: center
}

.s-18263ebb-8864-4163-9ecd-6cad81592359.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18263ebb-8864-4163-9ecd-6cad81592359.shogun-image {
  box-sizing: border-box;
}



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





  img.s-18263ebb-8864-4163-9ecd-6cad81592359.shogun-image {
    
    
  }


.s-18263ebb-8864-4163-9ecd-6cad81592359 .shogun-image-content {
  
    align-items: center;
  
}

.s-18263ebb-8864-4163-9ecd-6cad81592359.shg-align-container {
  display: flex;
  justify-content: center
}

.s-18263ebb-8864-4163-9ecd-6cad81592359.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18263ebb-8864-4163-9ecd-6cad81592359.shogun-image {
  box-sizing: border-box;
}



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





  img.s-18263ebb-8864-4163-9ecd-6cad81592359.shogun-image {
    
    
  }


.s-18263ebb-8864-4163-9ecd-6cad81592359 .shogun-image-content {
  
    align-items: center;
  
}

.s-18263ebb-8864-4163-9ecd-6cad81592359.shg-align-container {
  display: flex;
  justify-content: center
}

.s-18263ebb-8864-4163-9ecd-6cad81592359.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18263ebb-8864-4163-9ecd-6cad81592359.shogun-image {
  box-sizing: border-box;
}



}
#s-9377d61e-1bb3-4c22-940b-60c969c96b0f {
  margin-top: 6%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9377d61e-1bb3-4c22-940b-60c969c96b0f {
  grid-column-start: 6;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 6;
z-index: 1;
}

#s-9377d61e-1bb3-4c22-940b-60c969c96b0f .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 1px;
  text-align: left;
}



#s-bacf1609-95c7-4c75-bed6-f3468e1ac236 {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-7c5a6837-7a81-472c-a178-c064101867f8 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-7c5a6837-7a81-472c-a178-c064101867f8 img.shogun-image,
  #s-7c5a6837-7a81-472c-a178-c064101867f8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7c5a6837-7a81-472c-a178-c064101867f8 {
    width: 100%;
    height: auto;
  }

  #s-7c5a6837-7a81-472c-a178-c064101867f8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7c5a6837-7a81-472c-a178-c064101867f8.shogun-image {
    
    
  }


.s-7c5a6837-7a81-472c-a178-c064101867f8 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-7c5a6837-7a81-472c-a178-c064101867f8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7c5a6837-7a81-472c-a178-c064101867f8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7c5a6837-7a81-472c-a178-c064101867f8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7c5a6837-7a81-472c-a178-c064101867f8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-7c5a6837-7a81-472c-a178-c064101867f8.shogun-image-container {
      position: relative;
    }

    .s-7c5a6837-7a81-472c-a178-c064101867f8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7c5a6837-7a81-472c-a178-c064101867f8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7c5a6837-7a81-472c-a178-c064101867f8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-7c5a6837-7a81-472c-a178-c064101867f8 img.shogun-image,
  #s-7c5a6837-7a81-472c-a178-c064101867f8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7c5a6837-7a81-472c-a178-c064101867f8 {
    width: 100%;
    height: auto;
  }

  #s-7c5a6837-7a81-472c-a178-c064101867f8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7c5a6837-7a81-472c-a178-c064101867f8.shogun-image {
    
    
  }


.s-7c5a6837-7a81-472c-a178-c064101867f8 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-7c5a6837-7a81-472c-a178-c064101867f8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7c5a6837-7a81-472c-a178-c064101867f8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7c5a6837-7a81-472c-a178-c064101867f8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7c5a6837-7a81-472c-a178-c064101867f8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-7c5a6837-7a81-472c-a178-c064101867f8.shogun-image-container {
      position: relative;
    }

    .s-7c5a6837-7a81-472c-a178-c064101867f8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7c5a6837-7a81-472c-a178-c064101867f8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7c5a6837-7a81-472c-a178-c064101867f8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-7c5a6837-7a81-472c-a178-c064101867f8 img.shogun-image,
  #s-7c5a6837-7a81-472c-a178-c064101867f8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7c5a6837-7a81-472c-a178-c064101867f8 {
    width: 100%;
    height: auto;
  }

  #s-7c5a6837-7a81-472c-a178-c064101867f8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7c5a6837-7a81-472c-a178-c064101867f8.shogun-image {
    
    
  }


.s-7c5a6837-7a81-472c-a178-c064101867f8 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-7c5a6837-7a81-472c-a178-c064101867f8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7c5a6837-7a81-472c-a178-c064101867f8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7c5a6837-7a81-472c-a178-c064101867f8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7c5a6837-7a81-472c-a178-c064101867f8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-7c5a6837-7a81-472c-a178-c064101867f8.shogun-image-container {
      position: relative;
    }

    .s-7c5a6837-7a81-472c-a178-c064101867f8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7c5a6837-7a81-472c-a178-c064101867f8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7c5a6837-7a81-472c-a178-c064101867f8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-7c5a6837-7a81-472c-a178-c064101867f8 img.shogun-image,
  #s-7c5a6837-7a81-472c-a178-c064101867f8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7c5a6837-7a81-472c-a178-c064101867f8 {
    width: 100%;
    height: auto;
  }

  #s-7c5a6837-7a81-472c-a178-c064101867f8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7c5a6837-7a81-472c-a178-c064101867f8.shogun-image {
    
    
  }


.s-7c5a6837-7a81-472c-a178-c064101867f8 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-7c5a6837-7a81-472c-a178-c064101867f8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7c5a6837-7a81-472c-a178-c064101867f8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7c5a6837-7a81-472c-a178-c064101867f8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7c5a6837-7a81-472c-a178-c064101867f8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-7c5a6837-7a81-472c-a178-c064101867f8.shogun-image-container {
      position: relative;
    }

    .s-7c5a6837-7a81-472c-a178-c064101867f8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7c5a6837-7a81-472c-a178-c064101867f8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7c5a6837-7a81-472c-a178-c064101867f8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-7c5a6837-7a81-472c-a178-c064101867f8 img.shogun-image,
  #s-7c5a6837-7a81-472c-a178-c064101867f8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7c5a6837-7a81-472c-a178-c064101867f8 {
    width: 100%;
    height: auto;
  }

  #s-7c5a6837-7a81-472c-a178-c064101867f8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7c5a6837-7a81-472c-a178-c064101867f8.shogun-image {
    
    
  }


.s-7c5a6837-7a81-472c-a178-c064101867f8 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-7c5a6837-7a81-472c-a178-c064101867f8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7c5a6837-7a81-472c-a178-c064101867f8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7c5a6837-7a81-472c-a178-c064101867f8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7c5a6837-7a81-472c-a178-c064101867f8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-7c5a6837-7a81-472c-a178-c064101867f8.shogun-image-container {
      position: relative;
    }

    .s-7c5a6837-7a81-472c-a178-c064101867f8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7c5a6837-7a81-472c-a178-c064101867f8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7c5a6837-7a81-472c-a178-c064101867f8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-0744b563-12b5-4a20-b15d-24d48b1ffe5d {
  margin-top: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0744b563-12b5-4a20-b15d-24d48b1ffe5d .shogun-heading-component h5 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-140962b0-b9d1-4b54-9ed1-de7c7c6362b2 {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-140962b0-b9d1-4b54-9ed1-de7c7c6362b2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-140962b0-b9d1-4b54-9ed1-de7c7c6362b2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7818c1f4-8bd7-4de8-93ac-caa14e3cf010 {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: rgba(29, 29, 29, 0);
border-radius: 3px;
max-width: 100%;
background-color: rgba(29, 29, 29, 0.9);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-7818c1f4-8bd7-4de8-93ac-caa14e3cf010:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 0) !important;
background-color: rgba(74, 74, 74, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-7818c1f4-8bd7-4de8-93ac-caa14e3cf010:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(155, 155, 155, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-7818c1f4-8bd7-4de8-93ac-caa14e3cf010-root {
    text-align: center;
  }


#s-7818c1f4-8bd7-4de8-93ac-caa14e3cf010.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-7818c1f4-8bd7-4de8-93ac-caa14e3cf010-root {
    text-align: center;
  }


#s-7818c1f4-8bd7-4de8-93ac-caa14e3cf010.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7818c1f4-8bd7-4de8-93ac-caa14e3cf010-root {
    text-align: center;
  }


#s-7818c1f4-8bd7-4de8-93ac-caa14e3cf010.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7818c1f4-8bd7-4de8-93ac-caa14e3cf010-root {
    text-align: center;
  }


#s-7818c1f4-8bd7-4de8-93ac-caa14e3cf010.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-7818c1f4-8bd7-4de8-93ac-caa14e3cf010-root {
    text-align: center;
  }


#s-7818c1f4-8bd7-4de8-93ac-caa14e3cf010.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-7818c1f4-8bd7-4de8-93ac-caa14e3cf010-root {
    text-align: center;
  }


#s-7818c1f4-8bd7-4de8-93ac-caa14e3cf010.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-4d0f07f0-6fb9-49ca-bf33-fbdf84185c11 {
  margin-top: 13%;
margin-bottom: 0%;
}

#s-4d0f07f0-6fb9-49ca-bf33-fbdf84185c11 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(14, calc(100vw / 24));
}

#s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4 {
  aspect-ratio: 13/13;
text-align: center;
}

#s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4-root {
  grid-column-start: 1;
grid-column-end: 14;
grid-row-start: 1;
grid-row-end: 14;
z-index: 0;
}





  #s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4 img.shogun-image,
  #s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4 {
    width: 100%;
    height: auto;
  }

  #s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4.shogun-image {
    
    
  }


.s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4 .shogun-image-content {
  
    align-items: center;
  
}

.s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4 {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4.shogun-image-container {
      position: relative;
    }

    .s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4 img.shogun-image,
  #s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4 {
    width: 100%;
    height: auto;
  }

  #s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4.shogun-image {
    
    
  }


.s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4 .shogun-image-content {
  
    align-items: center;
  
}

.s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4 {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4.shogun-image-container {
      position: relative;
    }

    .s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4 img.shogun-image,
  #s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4 {
    width: 100%;
    height: auto;
  }

  #s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4.shogun-image {
    
    
  }


.s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4 .shogun-image-content {
  
    align-items: center;
  
}

.s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4 {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4.shogun-image-container {
      position: relative;
    }

    .s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4 img.shogun-image,
  #s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4 {
    width: 100%;
    height: auto;
  }

  #s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4.shogun-image {
    
    
  }


.s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4 .shogun-image-content {
  
    align-items: center;
  
}

.s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4 {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4.shogun-image-container {
      position: relative;
    }

    .s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4 img.shogun-image,
  #s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4 {
    width: 100%;
    height: auto;
  }

  #s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4.shogun-image {
    
    
  }


.s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4 .shogun-image-content {
  
    align-items: center;
  
}

.s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4 {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4.shogun-image-container {
      position: relative;
    }

    .s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0401c5a8-a697-4f9d-a09a-b9baf1a8ecb4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-a45aaffa-274b-477d-9633-4079cb6113ef {
  aspect-ratio: 12/12;
text-align: center;
}

#s-a45aaffa-274b-477d-9633-4079cb6113ef-root {
  grid-column-start: 13;
grid-column-end: 25;
grid-row-start: 3;
grid-row-end: 15;
z-index: 1;
}





  #s-a45aaffa-274b-477d-9633-4079cb6113ef img.shogun-image,
  #s-a45aaffa-274b-477d-9633-4079cb6113ef .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a45aaffa-274b-477d-9633-4079cb6113ef {
    width: 100%;
    height: auto;
  }

  #s-a45aaffa-274b-477d-9633-4079cb6113ef img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a45aaffa-274b-477d-9633-4079cb6113ef.shogun-image {
    
    
  }


.s-a45aaffa-274b-477d-9633-4079cb6113ef .shogun-image-content {
  
    align-items: center;
  
}

.s-a45aaffa-274b-477d-9633-4079cb6113ef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a45aaffa-274b-477d-9633-4079cb6113ef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a45aaffa-274b-477d-9633-4079cb6113ef.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a45aaffa-274b-477d-9633-4079cb6113ef {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-a45aaffa-274b-477d-9633-4079cb6113ef.shogun-image-container {
      position: relative;
    }

    .s-a45aaffa-274b-477d-9633-4079cb6113ef.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a45aaffa-274b-477d-9633-4079cb6113ef.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a45aaffa-274b-477d-9633-4079cb6113ef img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-a45aaffa-274b-477d-9633-4079cb6113ef img.shogun-image,
  #s-a45aaffa-274b-477d-9633-4079cb6113ef .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a45aaffa-274b-477d-9633-4079cb6113ef {
    width: 100%;
    height: auto;
  }

  #s-a45aaffa-274b-477d-9633-4079cb6113ef img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a45aaffa-274b-477d-9633-4079cb6113ef.shogun-image {
    
    
  }


.s-a45aaffa-274b-477d-9633-4079cb6113ef .shogun-image-content {
  
    align-items: center;
  
}

.s-a45aaffa-274b-477d-9633-4079cb6113ef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a45aaffa-274b-477d-9633-4079cb6113ef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a45aaffa-274b-477d-9633-4079cb6113ef.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a45aaffa-274b-477d-9633-4079cb6113ef {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-a45aaffa-274b-477d-9633-4079cb6113ef.shogun-image-container {
      position: relative;
    }

    .s-a45aaffa-274b-477d-9633-4079cb6113ef.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a45aaffa-274b-477d-9633-4079cb6113ef.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a45aaffa-274b-477d-9633-4079cb6113ef img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-a45aaffa-274b-477d-9633-4079cb6113ef img.shogun-image,
  #s-a45aaffa-274b-477d-9633-4079cb6113ef .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a45aaffa-274b-477d-9633-4079cb6113ef {
    width: 100%;
    height: auto;
  }

  #s-a45aaffa-274b-477d-9633-4079cb6113ef img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a45aaffa-274b-477d-9633-4079cb6113ef.shogun-image {
    
    
  }


.s-a45aaffa-274b-477d-9633-4079cb6113ef .shogun-image-content {
  
    align-items: center;
  
}

.s-a45aaffa-274b-477d-9633-4079cb6113ef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a45aaffa-274b-477d-9633-4079cb6113ef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a45aaffa-274b-477d-9633-4079cb6113ef.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a45aaffa-274b-477d-9633-4079cb6113ef {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-a45aaffa-274b-477d-9633-4079cb6113ef.shogun-image-container {
      position: relative;
    }

    .s-a45aaffa-274b-477d-9633-4079cb6113ef.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a45aaffa-274b-477d-9633-4079cb6113ef.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a45aaffa-274b-477d-9633-4079cb6113ef img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-a45aaffa-274b-477d-9633-4079cb6113ef img.shogun-image,
  #s-a45aaffa-274b-477d-9633-4079cb6113ef .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a45aaffa-274b-477d-9633-4079cb6113ef {
    width: 100%;
    height: auto;
  }

  #s-a45aaffa-274b-477d-9633-4079cb6113ef img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a45aaffa-274b-477d-9633-4079cb6113ef.shogun-image {
    
    
  }


.s-a45aaffa-274b-477d-9633-4079cb6113ef .shogun-image-content {
  
    align-items: center;
  
}

.s-a45aaffa-274b-477d-9633-4079cb6113ef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a45aaffa-274b-477d-9633-4079cb6113ef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a45aaffa-274b-477d-9633-4079cb6113ef.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a45aaffa-274b-477d-9633-4079cb6113ef {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-a45aaffa-274b-477d-9633-4079cb6113ef.shogun-image-container {
      position: relative;
    }

    .s-a45aaffa-274b-477d-9633-4079cb6113ef.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a45aaffa-274b-477d-9633-4079cb6113ef.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a45aaffa-274b-477d-9633-4079cb6113ef img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-a45aaffa-274b-477d-9633-4079cb6113ef img.shogun-image,
  #s-a45aaffa-274b-477d-9633-4079cb6113ef .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a45aaffa-274b-477d-9633-4079cb6113ef {
    width: 100%;
    height: auto;
  }

  #s-a45aaffa-274b-477d-9633-4079cb6113ef img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a45aaffa-274b-477d-9633-4079cb6113ef.shogun-image {
    
    
  }


.s-a45aaffa-274b-477d-9633-4079cb6113ef .shogun-image-content {
  
    align-items: center;
  
}

.s-a45aaffa-274b-477d-9633-4079cb6113ef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a45aaffa-274b-477d-9633-4079cb6113ef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a45aaffa-274b-477d-9633-4079cb6113ef.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a45aaffa-274b-477d-9633-4079cb6113ef {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-a45aaffa-274b-477d-9633-4079cb6113ef.shogun-image-container {
      position: relative;
    }

    .s-a45aaffa-274b-477d-9633-4079cb6113ef.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a45aaffa-274b-477d-9633-4079cb6113ef.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a45aaffa-274b-477d-9633-4079cb6113ef img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-c76c3741-5e83-4e47-ae4e-95a0a3b1c2bf {
  margin-top: -1%;
}

#s-c76c3741-5e83-4e47-ae4e-95a0a3b1c2bf .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(5, calc(100vw / 24));
}

#s-926a0b61-e738-42de-922e-5c37518a366c {
  margin-left: 0%;
margin-right: 20%;
text-align: center;
}

#s-926a0b61-e738-42de-922e-5c37518a366c-root {
  grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 2;
grid-row-end: 6;
z-index: 0;
}







  img.s-926a0b61-e738-42de-922e-5c37518a366c.shogun-image {
    
    
  }


.s-926a0b61-e738-42de-922e-5c37518a366c .shogun-image-content {
  
    align-items: center;
  
}

.s-926a0b61-e738-42de-922e-5c37518a366c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-926a0b61-e738-42de-922e-5c37518a366c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-926a0b61-e738-42de-922e-5c37518a366c.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-926a0b61-e738-42de-922e-5c37518a366c.shogun-image {
    
    
  }


.s-926a0b61-e738-42de-922e-5c37518a366c .shogun-image-content {
  
    align-items: center;
  
}

.s-926a0b61-e738-42de-922e-5c37518a366c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-926a0b61-e738-42de-922e-5c37518a366c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-926a0b61-e738-42de-922e-5c37518a366c.shogun-image {
  box-sizing: border-box;
}



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





  img.s-926a0b61-e738-42de-922e-5c37518a366c.shogun-image {
    
    
  }


.s-926a0b61-e738-42de-922e-5c37518a366c .shogun-image-content {
  
    align-items: center;
  
}

.s-926a0b61-e738-42de-922e-5c37518a366c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-926a0b61-e738-42de-922e-5c37518a366c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-926a0b61-e738-42de-922e-5c37518a366c.shogun-image {
  box-sizing: border-box;
}



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





  img.s-926a0b61-e738-42de-922e-5c37518a366c.shogun-image {
    
    
  }


.s-926a0b61-e738-42de-922e-5c37518a366c .shogun-image-content {
  
    align-items: center;
  
}

.s-926a0b61-e738-42de-922e-5c37518a366c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-926a0b61-e738-42de-922e-5c37518a366c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-926a0b61-e738-42de-922e-5c37518a366c.shogun-image {
  box-sizing: border-box;
}



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





  img.s-926a0b61-e738-42de-922e-5c37518a366c.shogun-image {
    
    
  }


.s-926a0b61-e738-42de-922e-5c37518a366c .shogun-image-content {
  
    align-items: center;
  
}

.s-926a0b61-e738-42de-922e-5c37518a366c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-926a0b61-e738-42de-922e-5c37518a366c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-926a0b61-e738-42de-922e-5c37518a366c.shogun-image {
  box-sizing: border-box;
}



}
#s-5b9cc6aa-e6e5-415f-a0ff-91010554a3ff {
  margin-top: 1%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5b9cc6aa-e6e5-415f-a0ff-91010554a3ff {
  grid-column-start: 6;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 6;
z-index: 1;
}

#s-5b9cc6aa-e6e5-415f-a0ff-91010554a3ff .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-248b902a-4ee8-4df2-ad42-e71671184b09 {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-891b29f6-e591-4fe2-8caa-1c1460786ae3 {
  text-align: left;
}

#s-8e3f3e35-9343-431f-850b-b62bf025abe8 {
  margin-top: 13%;
}

#s-8e3f3e35-9343-431f-850b-b62bf025abe8 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(14, calc(100vw / 24));
}

#s-401d9b48-e033-4c6b-9f84-ee4d78533538 {
  aspect-ratio: 11/11;
text-align: center;
}

#s-401d9b48-e033-4c6b-9f84-ee4d78533538-root {
  grid-column-start: 1;
grid-column-end: 12;
grid-row-start: 3;
grid-row-end: 14;
z-index: 0;
}





  #s-401d9b48-e033-4c6b-9f84-ee4d78533538 img.shogun-image,
  #s-401d9b48-e033-4c6b-9f84-ee4d78533538 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-401d9b48-e033-4c6b-9f84-ee4d78533538 {
    width: 100%;
    height: auto;
  }

  #s-401d9b48-e033-4c6b-9f84-ee4d78533538 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-401d9b48-e033-4c6b-9f84-ee4d78533538.shogun-image {
    
    
  }


.s-401d9b48-e033-4c6b-9f84-ee4d78533538 .shogun-image-content {
  
    align-items: center;
  
}

.s-401d9b48-e033-4c6b-9f84-ee4d78533538.shg-align-container {
  display: flex;
  justify-content: center
}

.s-401d9b48-e033-4c6b-9f84-ee4d78533538.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-401d9b48-e033-4c6b-9f84-ee4d78533538.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-401d9b48-e033-4c6b-9f84-ee4d78533538 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-401d9b48-e033-4c6b-9f84-ee4d78533538.shogun-image-container {
      position: relative;
    }

    .s-401d9b48-e033-4c6b-9f84-ee4d78533538.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-401d9b48-e033-4c6b-9f84-ee4d78533538.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-401d9b48-e033-4c6b-9f84-ee4d78533538 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-401d9b48-e033-4c6b-9f84-ee4d78533538 img.shogun-image,
  #s-401d9b48-e033-4c6b-9f84-ee4d78533538 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-401d9b48-e033-4c6b-9f84-ee4d78533538 {
    width: 100%;
    height: auto;
  }

  #s-401d9b48-e033-4c6b-9f84-ee4d78533538 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-401d9b48-e033-4c6b-9f84-ee4d78533538.shogun-image {
    
    
  }


.s-401d9b48-e033-4c6b-9f84-ee4d78533538 .shogun-image-content {
  
    align-items: center;
  
}

.s-401d9b48-e033-4c6b-9f84-ee4d78533538.shg-align-container {
  display: flex;
  justify-content: center
}

.s-401d9b48-e033-4c6b-9f84-ee4d78533538.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-401d9b48-e033-4c6b-9f84-ee4d78533538.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-401d9b48-e033-4c6b-9f84-ee4d78533538 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-401d9b48-e033-4c6b-9f84-ee4d78533538.shogun-image-container {
      position: relative;
    }

    .s-401d9b48-e033-4c6b-9f84-ee4d78533538.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-401d9b48-e033-4c6b-9f84-ee4d78533538.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-401d9b48-e033-4c6b-9f84-ee4d78533538 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-401d9b48-e033-4c6b-9f84-ee4d78533538 img.shogun-image,
  #s-401d9b48-e033-4c6b-9f84-ee4d78533538 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-401d9b48-e033-4c6b-9f84-ee4d78533538 {
    width: 100%;
    height: auto;
  }

  #s-401d9b48-e033-4c6b-9f84-ee4d78533538 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-401d9b48-e033-4c6b-9f84-ee4d78533538.shogun-image {
    
    
  }


.s-401d9b48-e033-4c6b-9f84-ee4d78533538 .shogun-image-content {
  
    align-items: center;
  
}

.s-401d9b48-e033-4c6b-9f84-ee4d78533538.shg-align-container {
  display: flex;
  justify-content: center
}

.s-401d9b48-e033-4c6b-9f84-ee4d78533538.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-401d9b48-e033-4c6b-9f84-ee4d78533538.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-401d9b48-e033-4c6b-9f84-ee4d78533538 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-401d9b48-e033-4c6b-9f84-ee4d78533538.shogun-image-container {
      position: relative;
    }

    .s-401d9b48-e033-4c6b-9f84-ee4d78533538.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-401d9b48-e033-4c6b-9f84-ee4d78533538.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-401d9b48-e033-4c6b-9f84-ee4d78533538 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-401d9b48-e033-4c6b-9f84-ee4d78533538 img.shogun-image,
  #s-401d9b48-e033-4c6b-9f84-ee4d78533538 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-401d9b48-e033-4c6b-9f84-ee4d78533538 {
    width: 100%;
    height: auto;
  }

  #s-401d9b48-e033-4c6b-9f84-ee4d78533538 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-401d9b48-e033-4c6b-9f84-ee4d78533538.shogun-image {
    
    
  }


.s-401d9b48-e033-4c6b-9f84-ee4d78533538 .shogun-image-content {
  
    align-items: center;
  
}

.s-401d9b48-e033-4c6b-9f84-ee4d78533538.shg-align-container {
  display: flex;
  justify-content: center
}

.s-401d9b48-e033-4c6b-9f84-ee4d78533538.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-401d9b48-e033-4c6b-9f84-ee4d78533538.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-401d9b48-e033-4c6b-9f84-ee4d78533538 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-401d9b48-e033-4c6b-9f84-ee4d78533538.shogun-image-container {
      position: relative;
    }

    .s-401d9b48-e033-4c6b-9f84-ee4d78533538.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-401d9b48-e033-4c6b-9f84-ee4d78533538.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-401d9b48-e033-4c6b-9f84-ee4d78533538 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-401d9b48-e033-4c6b-9f84-ee4d78533538 img.shogun-image,
  #s-401d9b48-e033-4c6b-9f84-ee4d78533538 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-401d9b48-e033-4c6b-9f84-ee4d78533538 {
    width: 100%;
    height: auto;
  }

  #s-401d9b48-e033-4c6b-9f84-ee4d78533538 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-401d9b48-e033-4c6b-9f84-ee4d78533538.shogun-image {
    
    
  }


.s-401d9b48-e033-4c6b-9f84-ee4d78533538 .shogun-image-content {
  
    align-items: center;
  
}

.s-401d9b48-e033-4c6b-9f84-ee4d78533538.shg-align-container {
  display: flex;
  justify-content: center
}

.s-401d9b48-e033-4c6b-9f84-ee4d78533538.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-401d9b48-e033-4c6b-9f84-ee4d78533538.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-401d9b48-e033-4c6b-9f84-ee4d78533538 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-401d9b48-e033-4c6b-9f84-ee4d78533538.shogun-image-container {
      position: relative;
    }

    .s-401d9b48-e033-4c6b-9f84-ee4d78533538.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-401d9b48-e033-4c6b-9f84-ee4d78533538.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-401d9b48-e033-4c6b-9f84-ee4d78533538 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-b7fe7862-f07d-4039-90de-ba89bd5598ea {
  aspect-ratio: 14/14;
text-align: center;
}

#s-b7fe7862-f07d-4039-90de-ba89bd5598ea-root {
  grid-column-start: 11;
grid-column-end: 25;
grid-row-start: 1;
grid-row-end: 15;
z-index: 1;
}





  #s-b7fe7862-f07d-4039-90de-ba89bd5598ea img.shogun-image,
  #s-b7fe7862-f07d-4039-90de-ba89bd5598ea .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b7fe7862-f07d-4039-90de-ba89bd5598ea {
    width: 100%;
    height: auto;
  }

  #s-b7fe7862-f07d-4039-90de-ba89bd5598ea img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b7fe7862-f07d-4039-90de-ba89bd5598ea.shogun-image {
    
    
  }


.s-b7fe7862-f07d-4039-90de-ba89bd5598ea .shogun-image-content {
  
    align-items: center;
  
}

.s-b7fe7862-f07d-4039-90de-ba89bd5598ea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b7fe7862-f07d-4039-90de-ba89bd5598ea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b7fe7862-f07d-4039-90de-ba89bd5598ea.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b7fe7862-f07d-4039-90de-ba89bd5598ea {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-b7fe7862-f07d-4039-90de-ba89bd5598ea.shogun-image-container {
      position: relative;
    }

    .s-b7fe7862-f07d-4039-90de-ba89bd5598ea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b7fe7862-f07d-4039-90de-ba89bd5598ea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b7fe7862-f07d-4039-90de-ba89bd5598ea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-b7fe7862-f07d-4039-90de-ba89bd5598ea img.shogun-image,
  #s-b7fe7862-f07d-4039-90de-ba89bd5598ea .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b7fe7862-f07d-4039-90de-ba89bd5598ea {
    width: 100%;
    height: auto;
  }

  #s-b7fe7862-f07d-4039-90de-ba89bd5598ea img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b7fe7862-f07d-4039-90de-ba89bd5598ea.shogun-image {
    
    
  }


.s-b7fe7862-f07d-4039-90de-ba89bd5598ea .shogun-image-content {
  
    align-items: center;
  
}

.s-b7fe7862-f07d-4039-90de-ba89bd5598ea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b7fe7862-f07d-4039-90de-ba89bd5598ea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b7fe7862-f07d-4039-90de-ba89bd5598ea.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b7fe7862-f07d-4039-90de-ba89bd5598ea {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-b7fe7862-f07d-4039-90de-ba89bd5598ea.shogun-image-container {
      position: relative;
    }

    .s-b7fe7862-f07d-4039-90de-ba89bd5598ea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b7fe7862-f07d-4039-90de-ba89bd5598ea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b7fe7862-f07d-4039-90de-ba89bd5598ea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-b7fe7862-f07d-4039-90de-ba89bd5598ea img.shogun-image,
  #s-b7fe7862-f07d-4039-90de-ba89bd5598ea .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b7fe7862-f07d-4039-90de-ba89bd5598ea {
    width: 100%;
    height: auto;
  }

  #s-b7fe7862-f07d-4039-90de-ba89bd5598ea img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b7fe7862-f07d-4039-90de-ba89bd5598ea.shogun-image {
    
    
  }


.s-b7fe7862-f07d-4039-90de-ba89bd5598ea .shogun-image-content {
  
    align-items: center;
  
}

.s-b7fe7862-f07d-4039-90de-ba89bd5598ea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b7fe7862-f07d-4039-90de-ba89bd5598ea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b7fe7862-f07d-4039-90de-ba89bd5598ea.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b7fe7862-f07d-4039-90de-ba89bd5598ea {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-b7fe7862-f07d-4039-90de-ba89bd5598ea.shogun-image-container {
      position: relative;
    }

    .s-b7fe7862-f07d-4039-90de-ba89bd5598ea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b7fe7862-f07d-4039-90de-ba89bd5598ea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b7fe7862-f07d-4039-90de-ba89bd5598ea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-b7fe7862-f07d-4039-90de-ba89bd5598ea img.shogun-image,
  #s-b7fe7862-f07d-4039-90de-ba89bd5598ea .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b7fe7862-f07d-4039-90de-ba89bd5598ea {
    width: 100%;
    height: auto;
  }

  #s-b7fe7862-f07d-4039-90de-ba89bd5598ea img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b7fe7862-f07d-4039-90de-ba89bd5598ea.shogun-image {
    
    
  }


.s-b7fe7862-f07d-4039-90de-ba89bd5598ea .shogun-image-content {
  
    align-items: center;
  
}

.s-b7fe7862-f07d-4039-90de-ba89bd5598ea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b7fe7862-f07d-4039-90de-ba89bd5598ea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b7fe7862-f07d-4039-90de-ba89bd5598ea.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b7fe7862-f07d-4039-90de-ba89bd5598ea {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-b7fe7862-f07d-4039-90de-ba89bd5598ea.shogun-image-container {
      position: relative;
    }

    .s-b7fe7862-f07d-4039-90de-ba89bd5598ea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b7fe7862-f07d-4039-90de-ba89bd5598ea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b7fe7862-f07d-4039-90de-ba89bd5598ea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-b7fe7862-f07d-4039-90de-ba89bd5598ea img.shogun-image,
  #s-b7fe7862-f07d-4039-90de-ba89bd5598ea .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b7fe7862-f07d-4039-90de-ba89bd5598ea {
    width: 100%;
    height: auto;
  }

  #s-b7fe7862-f07d-4039-90de-ba89bd5598ea img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b7fe7862-f07d-4039-90de-ba89bd5598ea.shogun-image {
    
    
  }


.s-b7fe7862-f07d-4039-90de-ba89bd5598ea .shogun-image-content {
  
    align-items: center;
  
}

.s-b7fe7862-f07d-4039-90de-ba89bd5598ea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b7fe7862-f07d-4039-90de-ba89bd5598ea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b7fe7862-f07d-4039-90de-ba89bd5598ea.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b7fe7862-f07d-4039-90de-ba89bd5598ea {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-b7fe7862-f07d-4039-90de-ba89bd5598ea.shogun-image-container {
      position: relative;
    }

    .s-b7fe7862-f07d-4039-90de-ba89bd5598ea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b7fe7862-f07d-4039-90de-ba89bd5598ea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b7fe7862-f07d-4039-90de-ba89bd5598ea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-5f3086e6-84a5-4648-8bf2-91091f268b28 {
  margin-top: -1%;
}

#s-5f3086e6-84a5-4648-8bf2-91091f268b28 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(5, calc(100vw / 24));
}

#s-f6d3e4ff-b507-452b-a892-5be731cac744 {
  margin-left: 0%;
margin-right: 20%;
text-align: center;
}

#s-f6d3e4ff-b507-452b-a892-5be731cac744-root {
  grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 2;
grid-row-end: 6;
z-index: 0;
}







  img.s-f6d3e4ff-b507-452b-a892-5be731cac744.shogun-image {
    
    
  }


.s-f6d3e4ff-b507-452b-a892-5be731cac744 .shogun-image-content {
  
    align-items: center;
  
}

.s-f6d3e4ff-b507-452b-a892-5be731cac744.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f6d3e4ff-b507-452b-a892-5be731cac744.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f6d3e4ff-b507-452b-a892-5be731cac744.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-f6d3e4ff-b507-452b-a892-5be731cac744.shogun-image {
    
    
  }


.s-f6d3e4ff-b507-452b-a892-5be731cac744 .shogun-image-content {
  
    align-items: center;
  
}

.s-f6d3e4ff-b507-452b-a892-5be731cac744.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f6d3e4ff-b507-452b-a892-5be731cac744.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f6d3e4ff-b507-452b-a892-5be731cac744.shogun-image {
  box-sizing: border-box;
}



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





  img.s-f6d3e4ff-b507-452b-a892-5be731cac744.shogun-image {
    
    
  }


.s-f6d3e4ff-b507-452b-a892-5be731cac744 .shogun-image-content {
  
    align-items: center;
  
}

.s-f6d3e4ff-b507-452b-a892-5be731cac744.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f6d3e4ff-b507-452b-a892-5be731cac744.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f6d3e4ff-b507-452b-a892-5be731cac744.shogun-image {
  box-sizing: border-box;
}



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





  img.s-f6d3e4ff-b507-452b-a892-5be731cac744.shogun-image {
    
    
  }


.s-f6d3e4ff-b507-452b-a892-5be731cac744 .shogun-image-content {
  
    align-items: center;
  
}

.s-f6d3e4ff-b507-452b-a892-5be731cac744.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f6d3e4ff-b507-452b-a892-5be731cac744.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f6d3e4ff-b507-452b-a892-5be731cac744.shogun-image {
  box-sizing: border-box;
}



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





  img.s-f6d3e4ff-b507-452b-a892-5be731cac744.shogun-image {
    
    
  }


.s-f6d3e4ff-b507-452b-a892-5be731cac744 .shogun-image-content {
  
    align-items: center;
  
}

.s-f6d3e4ff-b507-452b-a892-5be731cac744.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f6d3e4ff-b507-452b-a892-5be731cac744.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f6d3e4ff-b507-452b-a892-5be731cac744.shogun-image {
  box-sizing: border-box;
}



}
#s-7516f634-d5fd-4b75-819d-ef3bd8178d85 {
  margin-top: 1%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7516f634-d5fd-4b75-819d-ef3bd8178d85 {
  grid-column-start: 6;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 6;
z-index: 1;
}

#s-7516f634-d5fd-4b75-819d-ef3bd8178d85 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-5c0426c1-ff8b-4b78-b163-3431613e4db7 {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
max-width: 1269px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6 img.shogun-image,
  #s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6 {
    width: 100%;
    height: auto;
  }

  #s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6.shogun-image {
    
    
  }


.s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6.shogun-image-container {
      position: relative;
    }

    .s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6 img.shogun-image,
  #s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6 {
    width: 100%;
    height: auto;
  }

  #s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6.shogun-image {
    
    
  }


.s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6.shogun-image-container {
      position: relative;
    }

    .s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6 img.shogun-image,
  #s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6 {
    width: 100%;
    height: auto;
  }

  #s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6.shogun-image {
    
    
  }


.s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6.shogun-image-container {
      position: relative;
    }

    .s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6 img.shogun-image,
  #s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6 {
    width: 100%;
    height: auto;
  }

  #s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6.shogun-image {
    
    
  }


.s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6.shogun-image-container {
      position: relative;
    }

    .s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6 img.shogun-image,
  #s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6 {
    width: 100%;
    height: auto;
  }

  #s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6.shogun-image {
    
    
  }


.s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6.shogun-image-container {
      position: relative;
    }

    .s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e4988c8a-ef37-4c6f-a153-e4bc371a22f6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-3da7b5d4-733e-4ee9-83cb-8a6824bd7615 {
  margin-top: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3da7b5d4-733e-4ee9-83cb-8a6824bd7615 .shogun-heading-component h5 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-4b153606-2e72-47bb-9f3a-aaedb0be9e16 {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-4b153606-2e72-47bb-9f3a-aaedb0be9e16 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4b153606-2e72-47bb-9f3a-aaedb0be9e16.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8dd776cd-0a19-4662-b04e-db2a756f1390 {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: rgba(29, 29, 29, 0);
border-radius: 3px;
max-width: 100%;
background-color: rgba(29, 29, 29, 0.9);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-8dd776cd-0a19-4662-b04e-db2a756f1390:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 0) !important;
background-color: rgba(74, 74, 74, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-8dd776cd-0a19-4662-b04e-db2a756f1390:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(155, 155, 155, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-8dd776cd-0a19-4662-b04e-db2a756f1390-root {
    text-align: center;
  }


#s-8dd776cd-0a19-4662-b04e-db2a756f1390.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-8dd776cd-0a19-4662-b04e-db2a756f1390-root {
    text-align: center;
  }


#s-8dd776cd-0a19-4662-b04e-db2a756f1390.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-8dd776cd-0a19-4662-b04e-db2a756f1390-root {
    text-align: center;
  }


#s-8dd776cd-0a19-4662-b04e-db2a756f1390.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-8dd776cd-0a19-4662-b04e-db2a756f1390-root {
    text-align: center;
  }


#s-8dd776cd-0a19-4662-b04e-db2a756f1390.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-8dd776cd-0a19-4662-b04e-db2a756f1390-root {
    text-align: center;
  }


#s-8dd776cd-0a19-4662-b04e-db2a756f1390.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-8dd776cd-0a19-4662-b04e-db2a756f1390-root {
    text-align: center;
  }


#s-8dd776cd-0a19-4662-b04e-db2a756f1390.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-64f3ab9e-a87c-455e-a065-ed8c357dc9e0 {
  margin-top: 13%;
}

#s-64f3ab9e-a87c-455e-a065-ed8c357dc9e0 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(15, calc(100vw / 24));
}

#s-8ccae0c0-ad8d-4341-a628-566110db8d87 {
  aspect-ratio: 11/11;
text-align: center;
}

#s-8ccae0c0-ad8d-4341-a628-566110db8d87-root {
  grid-column-start: 1;
grid-column-end: 12;
grid-row-start: 1;
grid-row-end: 12;
z-index: 0;
}





  #s-8ccae0c0-ad8d-4341-a628-566110db8d87 img.shogun-image,
  #s-8ccae0c0-ad8d-4341-a628-566110db8d87 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8ccae0c0-ad8d-4341-a628-566110db8d87 {
    width: 100%;
    height: auto;
  }

  #s-8ccae0c0-ad8d-4341-a628-566110db8d87 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8ccae0c0-ad8d-4341-a628-566110db8d87.shogun-image {
    
    
  }


.s-8ccae0c0-ad8d-4341-a628-566110db8d87 .shogun-image-content {
  
    align-items: center;
  
}

.s-8ccae0c0-ad8d-4341-a628-566110db8d87.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8ccae0c0-ad8d-4341-a628-566110db8d87.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ccae0c0-ad8d-4341-a628-566110db8d87.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8ccae0c0-ad8d-4341-a628-566110db8d87 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-8ccae0c0-ad8d-4341-a628-566110db8d87.shogun-image-container {
      position: relative;
    }

    .s-8ccae0c0-ad8d-4341-a628-566110db8d87.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8ccae0c0-ad8d-4341-a628-566110db8d87.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8ccae0c0-ad8d-4341-a628-566110db8d87 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-8ccae0c0-ad8d-4341-a628-566110db8d87 img.shogun-image,
  #s-8ccae0c0-ad8d-4341-a628-566110db8d87 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8ccae0c0-ad8d-4341-a628-566110db8d87 {
    width: 100%;
    height: auto;
  }

  #s-8ccae0c0-ad8d-4341-a628-566110db8d87 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8ccae0c0-ad8d-4341-a628-566110db8d87.shogun-image {
    
    
  }


.s-8ccae0c0-ad8d-4341-a628-566110db8d87 .shogun-image-content {
  
    align-items: center;
  
}

.s-8ccae0c0-ad8d-4341-a628-566110db8d87.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8ccae0c0-ad8d-4341-a628-566110db8d87.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ccae0c0-ad8d-4341-a628-566110db8d87.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8ccae0c0-ad8d-4341-a628-566110db8d87 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-8ccae0c0-ad8d-4341-a628-566110db8d87.shogun-image-container {
      position: relative;
    }

    .s-8ccae0c0-ad8d-4341-a628-566110db8d87.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8ccae0c0-ad8d-4341-a628-566110db8d87.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8ccae0c0-ad8d-4341-a628-566110db8d87 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-8ccae0c0-ad8d-4341-a628-566110db8d87 img.shogun-image,
  #s-8ccae0c0-ad8d-4341-a628-566110db8d87 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8ccae0c0-ad8d-4341-a628-566110db8d87 {
    width: 100%;
    height: auto;
  }

  #s-8ccae0c0-ad8d-4341-a628-566110db8d87 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8ccae0c0-ad8d-4341-a628-566110db8d87.shogun-image {
    
    
  }


.s-8ccae0c0-ad8d-4341-a628-566110db8d87 .shogun-image-content {
  
    align-items: center;
  
}

.s-8ccae0c0-ad8d-4341-a628-566110db8d87.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8ccae0c0-ad8d-4341-a628-566110db8d87.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ccae0c0-ad8d-4341-a628-566110db8d87.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8ccae0c0-ad8d-4341-a628-566110db8d87 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-8ccae0c0-ad8d-4341-a628-566110db8d87.shogun-image-container {
      position: relative;
    }

    .s-8ccae0c0-ad8d-4341-a628-566110db8d87.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8ccae0c0-ad8d-4341-a628-566110db8d87.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8ccae0c0-ad8d-4341-a628-566110db8d87 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-8ccae0c0-ad8d-4341-a628-566110db8d87 img.shogun-image,
  #s-8ccae0c0-ad8d-4341-a628-566110db8d87 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8ccae0c0-ad8d-4341-a628-566110db8d87 {
    width: 100%;
    height: auto;
  }

  #s-8ccae0c0-ad8d-4341-a628-566110db8d87 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8ccae0c0-ad8d-4341-a628-566110db8d87.shogun-image {
    
    
  }


.s-8ccae0c0-ad8d-4341-a628-566110db8d87 .shogun-image-content {
  
    align-items: center;
  
}

.s-8ccae0c0-ad8d-4341-a628-566110db8d87.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8ccae0c0-ad8d-4341-a628-566110db8d87.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ccae0c0-ad8d-4341-a628-566110db8d87.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8ccae0c0-ad8d-4341-a628-566110db8d87 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-8ccae0c0-ad8d-4341-a628-566110db8d87.shogun-image-container {
      position: relative;
    }

    .s-8ccae0c0-ad8d-4341-a628-566110db8d87.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8ccae0c0-ad8d-4341-a628-566110db8d87.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8ccae0c0-ad8d-4341-a628-566110db8d87 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-8ccae0c0-ad8d-4341-a628-566110db8d87 img.shogun-image,
  #s-8ccae0c0-ad8d-4341-a628-566110db8d87 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8ccae0c0-ad8d-4341-a628-566110db8d87 {
    width: 100%;
    height: auto;
  }

  #s-8ccae0c0-ad8d-4341-a628-566110db8d87 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8ccae0c0-ad8d-4341-a628-566110db8d87.shogun-image {
    
    
  }


.s-8ccae0c0-ad8d-4341-a628-566110db8d87 .shogun-image-content {
  
    align-items: center;
  
}

.s-8ccae0c0-ad8d-4341-a628-566110db8d87.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8ccae0c0-ad8d-4341-a628-566110db8d87.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ccae0c0-ad8d-4341-a628-566110db8d87.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8ccae0c0-ad8d-4341-a628-566110db8d87 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-8ccae0c0-ad8d-4341-a628-566110db8d87.shogun-image-container {
      position: relative;
    }

    .s-8ccae0c0-ad8d-4341-a628-566110db8d87.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8ccae0c0-ad8d-4341-a628-566110db8d87.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8ccae0c0-ad8d-4341-a628-566110db8d87 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7 {
  aspect-ratio: 14/14;
text-align: center;
}

#s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7-root {
  grid-column-start: 11;
grid-column-end: 25;
grid-row-start: 2;
grid-row-end: 16;
z-index: 1;
}





  #s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7 img.shogun-image,
  #s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7 {
    width: 100%;
    height: auto;
  }

  #s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7.shogun-image {
    
    
  }


.s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7 .shogun-image-content {
  
    align-items: center;
  
}

.s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7.shogun-image-container {
      position: relative;
    }

    .s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7 img.shogun-image,
  #s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7 {
    width: 100%;
    height: auto;
  }

  #s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7.shogun-image {
    
    
  }


.s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7 .shogun-image-content {
  
    align-items: center;
  
}

.s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7.shogun-image-container {
      position: relative;
    }

    .s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7 img.shogun-image,
  #s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7 {
    width: 100%;
    height: auto;
  }

  #s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7.shogun-image {
    
    
  }


.s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7 .shogun-image-content {
  
    align-items: center;
  
}

.s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7.shogun-image-container {
      position: relative;
    }

    .s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7 img.shogun-image,
  #s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7 {
    width: 100%;
    height: auto;
  }

  #s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7.shogun-image {
    
    
  }


.s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7 .shogun-image-content {
  
    align-items: center;
  
}

.s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7.shogun-image-container {
      position: relative;
    }

    .s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7 img.shogun-image,
  #s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7 {
    width: 100%;
    height: auto;
  }

  #s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7.shogun-image {
    
    
  }


.s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7 .shogun-image-content {
  
    align-items: center;
  
}

.s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7.shogun-image-container {
      position: relative;
    }

    .s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-738e138f-1ed2-41e0-94f5-c4e5c620e5d7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-c0c71059-adac-45ce-8ecf-b7eacc02396c {
  margin-top: -4%;
margin-bottom: -3%;
}

#s-c0c71059-adac-45ce-8ecf-b7eacc02396c .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(5, calc(100vw / 24));
}

#s-502c70c4-5aed-49cb-a397-bfcd816c6226 {
  margin-left: 0%;
margin-right: 20%;
text-align: center;
}

#s-502c70c4-5aed-49cb-a397-bfcd816c6226-root {
  grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 2;
grid-row-end: 6;
z-index: 0;
}







  img.s-502c70c4-5aed-49cb-a397-bfcd816c6226.shogun-image {
    
    
  }


.s-502c70c4-5aed-49cb-a397-bfcd816c6226 .shogun-image-content {
  
    align-items: center;
  
}

.s-502c70c4-5aed-49cb-a397-bfcd816c6226.shg-align-container {
  display: flex;
  justify-content: center
}

.s-502c70c4-5aed-49cb-a397-bfcd816c6226.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-502c70c4-5aed-49cb-a397-bfcd816c6226.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-502c70c4-5aed-49cb-a397-bfcd816c6226.shogun-image {
    
    
  }


.s-502c70c4-5aed-49cb-a397-bfcd816c6226 .shogun-image-content {
  
    align-items: center;
  
}

.s-502c70c4-5aed-49cb-a397-bfcd816c6226.shg-align-container {
  display: flex;
  justify-content: center
}

.s-502c70c4-5aed-49cb-a397-bfcd816c6226.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-502c70c4-5aed-49cb-a397-bfcd816c6226.shogun-image {
  box-sizing: border-box;
}



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





  img.s-502c70c4-5aed-49cb-a397-bfcd816c6226.shogun-image {
    
    
  }


.s-502c70c4-5aed-49cb-a397-bfcd816c6226 .shogun-image-content {
  
    align-items: center;
  
}

.s-502c70c4-5aed-49cb-a397-bfcd816c6226.shg-align-container {
  display: flex;
  justify-content: center
}

.s-502c70c4-5aed-49cb-a397-bfcd816c6226.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-502c70c4-5aed-49cb-a397-bfcd816c6226.shogun-image {
  box-sizing: border-box;
}



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





  img.s-502c70c4-5aed-49cb-a397-bfcd816c6226.shogun-image {
    
    
  }


.s-502c70c4-5aed-49cb-a397-bfcd816c6226 .shogun-image-content {
  
    align-items: center;
  
}

.s-502c70c4-5aed-49cb-a397-bfcd816c6226.shg-align-container {
  display: flex;
  justify-content: center
}

.s-502c70c4-5aed-49cb-a397-bfcd816c6226.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-502c70c4-5aed-49cb-a397-bfcd816c6226.shogun-image {
  box-sizing: border-box;
}



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





  img.s-502c70c4-5aed-49cb-a397-bfcd816c6226.shogun-image {
    
    
  }


.s-502c70c4-5aed-49cb-a397-bfcd816c6226 .shogun-image-content {
  
    align-items: center;
  
}

.s-502c70c4-5aed-49cb-a397-bfcd816c6226.shg-align-container {
  display: flex;
  justify-content: center
}

.s-502c70c4-5aed-49cb-a397-bfcd816c6226.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-502c70c4-5aed-49cb-a397-bfcd816c6226.shogun-image {
  box-sizing: border-box;
}



}
#s-f9e3e4de-5e28-45b4-bbc4-f3c49730d64d {
  margin-top: 1%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f9e3e4de-5e28-45b4-bbc4-f3c49730d64d {
  grid-column-start: 6;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 6;
z-index: 1;
}

#s-f9e3e4de-5e28-45b4-bbc4-f3c49730d64d .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-993de54f-6f3b-4ee1-8e00-5ec3763fad36 {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-d451153c-25bb-4f45-9523-adfd172297e0 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
text-align: center;
}







  img.s-d451153c-25bb-4f45-9523-adfd172297e0.shogun-image {
    
    
  }


.s-d451153c-25bb-4f45-9523-adfd172297e0 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-d451153c-25bb-4f45-9523-adfd172297e0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d451153c-25bb-4f45-9523-adfd172297e0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d451153c-25bb-4f45-9523-adfd172297e0.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-d451153c-25bb-4f45-9523-adfd172297e0.shogun-image {
    
    
  }


.s-d451153c-25bb-4f45-9523-adfd172297e0 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-d451153c-25bb-4f45-9523-adfd172297e0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d451153c-25bb-4f45-9523-adfd172297e0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d451153c-25bb-4f45-9523-adfd172297e0.shogun-image {
  box-sizing: border-box;
}



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





  img.s-d451153c-25bb-4f45-9523-adfd172297e0.shogun-image {
    
    
  }


.s-d451153c-25bb-4f45-9523-adfd172297e0 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-d451153c-25bb-4f45-9523-adfd172297e0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d451153c-25bb-4f45-9523-adfd172297e0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d451153c-25bb-4f45-9523-adfd172297e0.shogun-image {
  box-sizing: border-box;
}



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





  img.s-d451153c-25bb-4f45-9523-adfd172297e0.shogun-image {
    
    
  }


.s-d451153c-25bb-4f45-9523-adfd172297e0 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-d451153c-25bb-4f45-9523-adfd172297e0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d451153c-25bb-4f45-9523-adfd172297e0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d451153c-25bb-4f45-9523-adfd172297e0.shogun-image {
  box-sizing: border-box;
}



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





  img.s-d451153c-25bb-4f45-9523-adfd172297e0.shogun-image {
    
    
  }


.s-d451153c-25bb-4f45-9523-adfd172297e0 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-d451153c-25bb-4f45-9523-adfd172297e0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d451153c-25bb-4f45-9523-adfd172297e0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d451153c-25bb-4f45-9523-adfd172297e0.shogun-image {
  box-sizing: border-box;
}



}
#s-91a659b5-c3c8-4987-9ced-689295e9421b {
  margin-top: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-91a659b5-c3c8-4987-9ced-689295e9421b .shogun-heading-component h5 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-c376854b-051e-49df-a95a-928728d56a8a {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-c376854b-051e-49df-a95a-928728d56a8a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c376854b-051e-49df-a95a-928728d56a8a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-98c0b11f-34b0-4e41-a175-62ff60cf68a5 {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: rgba(29, 29, 29, 0);
border-radius: 3px;
max-width: 100%;
background-color: rgba(29, 29, 29, 0.9);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-98c0b11f-34b0-4e41-a175-62ff60cf68a5:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 0) !important;
background-color: rgba(74, 74, 74, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-98c0b11f-34b0-4e41-a175-62ff60cf68a5:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(155, 155, 155, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-98c0b11f-34b0-4e41-a175-62ff60cf68a5-root {
    text-align: center;
  }


#s-98c0b11f-34b0-4e41-a175-62ff60cf68a5.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-98c0b11f-34b0-4e41-a175-62ff60cf68a5-root {
    text-align: center;
  }


#s-98c0b11f-34b0-4e41-a175-62ff60cf68a5.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-98c0b11f-34b0-4e41-a175-62ff60cf68a5-root {
    text-align: center;
  }


#s-98c0b11f-34b0-4e41-a175-62ff60cf68a5.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-98c0b11f-34b0-4e41-a175-62ff60cf68a5-root {
    text-align: center;
  }


#s-98c0b11f-34b0-4e41-a175-62ff60cf68a5.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-98c0b11f-34b0-4e41-a175-62ff60cf68a5-root {
    text-align: center;
  }


#s-98c0b11f-34b0-4e41-a175-62ff60cf68a5.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-98c0b11f-34b0-4e41-a175-62ff60cf68a5-root {
    text-align: center;
  }


#s-98c0b11f-34b0-4e41-a175-62ff60cf68a5.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-fc28254c-da85-4d55-ab40-74e474f6b7b8 {
  margin-top: 13%;
margin-bottom: 0%;
}

#s-fc28254c-da85-4d55-ab40-74e474f6b7b8 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(14, calc(100vw / 24));
}

#s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac {
  aspect-ratio: 11/11;
text-align: center;
}

#s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac-root {
  grid-column-start: 1;
grid-column-end: 12;
grid-row-start: 4;
grid-row-end: 15;
z-index: 0;
}





  #s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac img.shogun-image,
  #s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac {
    width: 100%;
    height: auto;
  }

  #s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac.shogun-image {
    
    
  }


.s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac .shogun-image-content {
  
    align-items: center;
  
}

.s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac.shogun-image-container {
      position: relative;
    }

    .s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac img.shogun-image,
  #s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac {
    width: 100%;
    height: auto;
  }

  #s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac.shogun-image {
    
    
  }


.s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac .shogun-image-content {
  
    align-items: center;
  
}

.s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac.shogun-image-container {
      position: relative;
    }

    .s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac img.shogun-image,
  #s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac {
    width: 100%;
    height: auto;
  }

  #s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac.shogun-image {
    
    
  }


.s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac .shogun-image-content {
  
    align-items: center;
  
}

.s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac.shogun-image-container {
      position: relative;
    }

    .s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac img.shogun-image,
  #s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac {
    width: 100%;
    height: auto;
  }

  #s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac.shogun-image {
    
    
  }


.s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac .shogun-image-content {
  
    align-items: center;
  
}

.s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac.shogun-image-container {
      position: relative;
    }

    .s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac img.shogun-image,
  #s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac {
    width: 100%;
    height: auto;
  }

  #s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac.shogun-image {
    
    
  }


.s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac .shogun-image-content {
  
    align-items: center;
  
}

.s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac.shogun-image-container {
      position: relative;
    }

    .s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-376108c1-c0f0-4fc3-9d04-70aeacbeb0ac img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386 {
  aspect-ratio: 14/14;
text-align: center;
}

#s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386-root {
  grid-column-start: 11;
grid-column-end: 25;
grid-row-start: 1;
grid-row-end: 15;
z-index: 1;
}





  #s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386 img.shogun-image,
  #s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386 {
    width: 100%;
    height: auto;
  }

  #s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386.shogun-image {
    
    
  }


.s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386 .shogun-image-content {
  
    align-items: center;
  
}

.s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386.shogun-image-container {
      position: relative;
    }

    .s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386 img.shogun-image,
  #s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386 {
    width: 100%;
    height: auto;
  }

  #s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386.shogun-image {
    
    
  }


.s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386 .shogun-image-content {
  
    align-items: center;
  
}

.s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386.shogun-image-container {
      position: relative;
    }

    .s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386 img.shogun-image,
  #s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386 {
    width: 100%;
    height: auto;
  }

  #s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386.shogun-image {
    
    
  }


.s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386 .shogun-image-content {
  
    align-items: center;
  
}

.s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386.shogun-image-container {
      position: relative;
    }

    .s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386 img.shogun-image,
  #s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386 {
    width: 100%;
    height: auto;
  }

  #s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386.shogun-image {
    
    
  }


.s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386 .shogun-image-content {
  
    align-items: center;
  
}

.s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386.shogun-image-container {
      position: relative;
    }

    .s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386 img.shogun-image,
  #s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386 {
    width: 100%;
    height: auto;
  }

  #s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386.shogun-image {
    
    
  }


.s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386 .shogun-image-content {
  
    align-items: center;
  
}

.s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386.shogun-image-container {
      position: relative;
    }

    .s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd244cf0-e8f5-44cd-9a86-dfafd69fd386 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-fa9180bd-f2be-475a-9f4c-77e1cd2d98a3 {
  margin-top: -1%;
}

#s-fa9180bd-f2be-475a-9f4c-77e1cd2d98a3 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(5, calc(100vw / 24));
}

#s-cc45d50e-5d19-4cc0-9387-037356831b75 {
  margin-left: 0%;
margin-right: 20%;
text-align: center;
}

#s-cc45d50e-5d19-4cc0-9387-037356831b75-root {
  grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 2;
grid-row-end: 6;
z-index: 0;
}







  img.s-cc45d50e-5d19-4cc0-9387-037356831b75.shogun-image {
    
    
  }


.s-cc45d50e-5d19-4cc0-9387-037356831b75 .shogun-image-content {
  
    align-items: center;
  
}

.s-cc45d50e-5d19-4cc0-9387-037356831b75.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc45d50e-5d19-4cc0-9387-037356831b75.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc45d50e-5d19-4cc0-9387-037356831b75.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-cc45d50e-5d19-4cc0-9387-037356831b75.shogun-image {
    
    
  }


.s-cc45d50e-5d19-4cc0-9387-037356831b75 .shogun-image-content {
  
    align-items: center;
  
}

.s-cc45d50e-5d19-4cc0-9387-037356831b75.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc45d50e-5d19-4cc0-9387-037356831b75.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc45d50e-5d19-4cc0-9387-037356831b75.shogun-image {
  box-sizing: border-box;
}



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





  img.s-cc45d50e-5d19-4cc0-9387-037356831b75.shogun-image {
    
    
  }


.s-cc45d50e-5d19-4cc0-9387-037356831b75 .shogun-image-content {
  
    align-items: center;
  
}

.s-cc45d50e-5d19-4cc0-9387-037356831b75.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc45d50e-5d19-4cc0-9387-037356831b75.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc45d50e-5d19-4cc0-9387-037356831b75.shogun-image {
  box-sizing: border-box;
}



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





  img.s-cc45d50e-5d19-4cc0-9387-037356831b75.shogun-image {
    
    
  }


.s-cc45d50e-5d19-4cc0-9387-037356831b75 .shogun-image-content {
  
    align-items: center;
  
}

.s-cc45d50e-5d19-4cc0-9387-037356831b75.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc45d50e-5d19-4cc0-9387-037356831b75.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc45d50e-5d19-4cc0-9387-037356831b75.shogun-image {
  box-sizing: border-box;
}



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





  img.s-cc45d50e-5d19-4cc0-9387-037356831b75.shogun-image {
    
    
  }


.s-cc45d50e-5d19-4cc0-9387-037356831b75 .shogun-image-content {
  
    align-items: center;
  
}

.s-cc45d50e-5d19-4cc0-9387-037356831b75.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc45d50e-5d19-4cc0-9387-037356831b75.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc45d50e-5d19-4cc0-9387-037356831b75.shogun-image {
  box-sizing: border-box;
}



}
#s-b5c6b247-c474-4d2a-a0e6-253cc5263814 {
  margin-top: 5%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b5c6b247-c474-4d2a-a0e6-253cc5263814 {
  grid-column-start: 6;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 6;
z-index: 1;
}

#s-b5c6b247-c474-4d2a-a0e6-253cc5263814 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 1px;
  text-align: left;
}



#s-a6168243-a58f-4632-aa06-a9ebfd8356b9 {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-422a853f-4552-477c-b9e4-bb6d4b960943 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}







  img.s-422a853f-4552-477c-b9e4-bb6d4b960943.shogun-image {
    
    
  }


.s-422a853f-4552-477c-b9e4-bb6d4b960943 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-422a853f-4552-477c-b9e4-bb6d4b960943.shg-align-container {
  display: flex;
  justify-content: center
}

.s-422a853f-4552-477c-b9e4-bb6d4b960943.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-422a853f-4552-477c-b9e4-bb6d4b960943.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-422a853f-4552-477c-b9e4-bb6d4b960943.shogun-image {
    
    
  }


.s-422a853f-4552-477c-b9e4-bb6d4b960943 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-422a853f-4552-477c-b9e4-bb6d4b960943.shg-align-container {
  display: flex;
  justify-content: center
}

.s-422a853f-4552-477c-b9e4-bb6d4b960943.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-422a853f-4552-477c-b9e4-bb6d4b960943.shogun-image {
  box-sizing: border-box;
}



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





  img.s-422a853f-4552-477c-b9e4-bb6d4b960943.shogun-image {
    
    
  }


.s-422a853f-4552-477c-b9e4-bb6d4b960943 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-422a853f-4552-477c-b9e4-bb6d4b960943.shg-align-container {
  display: flex;
  justify-content: center
}

.s-422a853f-4552-477c-b9e4-bb6d4b960943.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-422a853f-4552-477c-b9e4-bb6d4b960943.shogun-image {
  box-sizing: border-box;
}



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





  img.s-422a853f-4552-477c-b9e4-bb6d4b960943.shogun-image {
    
    
  }


.s-422a853f-4552-477c-b9e4-bb6d4b960943 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-422a853f-4552-477c-b9e4-bb6d4b960943.shg-align-container {
  display: flex;
  justify-content: center
}

.s-422a853f-4552-477c-b9e4-bb6d4b960943.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-422a853f-4552-477c-b9e4-bb6d4b960943.shogun-image {
  box-sizing: border-box;
}



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





  img.s-422a853f-4552-477c-b9e4-bb6d4b960943.shogun-image {
    
    
  }


.s-422a853f-4552-477c-b9e4-bb6d4b960943 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-422a853f-4552-477c-b9e4-bb6d4b960943.shg-align-container {
  display: flex;
  justify-content: center
}

.s-422a853f-4552-477c-b9e4-bb6d4b960943.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-422a853f-4552-477c-b9e4-bb6d4b960943.shogun-image {
  box-sizing: border-box;
}



}
#s-d2d8759e-e7e3-45a7-a32a-9c473bb0bcb8 {
  margin-top: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d2d8759e-e7e3-45a7-a32a-9c473bb0bcb8 .shogun-heading-component h5 {
  color: rgba(31, 31, 31, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-f7cfc112-b37b-4c70-9fd5-27eac3ca121d {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-f7cfc112-b37b-4c70-9fd5-27eac3ca121d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f7cfc112-b37b-4c70-9fd5-27eac3ca121d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b340d26a-8e98-4a68-b9d5-4600a6847db5 {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: rgba(29, 29, 29, 0);
border-radius: 3px;
max-width: 100%;
background-color: rgba(29, 29, 29, 0.9);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-b340d26a-8e98-4a68-b9d5-4600a6847db5:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 0) !important;
background-color: rgba(74, 74, 74, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-b340d26a-8e98-4a68-b9d5-4600a6847db5:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(155, 155, 155, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-b340d26a-8e98-4a68-b9d5-4600a6847db5-root {
    text-align: center;
  }


#s-b340d26a-8e98-4a68-b9d5-4600a6847db5.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-b340d26a-8e98-4a68-b9d5-4600a6847db5-root {
    text-align: center;
  }


#s-b340d26a-8e98-4a68-b9d5-4600a6847db5.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b340d26a-8e98-4a68-b9d5-4600a6847db5-root {
    text-align: center;
  }


#s-b340d26a-8e98-4a68-b9d5-4600a6847db5.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b340d26a-8e98-4a68-b9d5-4600a6847db5-root {
    text-align: center;
  }


#s-b340d26a-8e98-4a68-b9d5-4600a6847db5.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-b340d26a-8e98-4a68-b9d5-4600a6847db5-root {
    text-align: center;
  }


#s-b340d26a-8e98-4a68-b9d5-4600a6847db5.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-b340d26a-8e98-4a68-b9d5-4600a6847db5-root {
    text-align: center;
  }


#s-b340d26a-8e98-4a68-b9d5-4600a6847db5.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-9a1ebce8-ae71-4baa-b387-f115b5e28ff2 {
  margin-top: 13%;
margin-bottom: 0%;
}

#s-9a1ebce8-ae71-4baa-b387-f115b5e28ff2 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(13, calc(100vw / 24));
}

#s-ff445d8c-908b-4365-941d-1e6f25680d5e {
  aspect-ratio: 13/13;
text-align: center;
}

#s-ff445d8c-908b-4365-941d-1e6f25680d5e-root {
  grid-column-start: 1;
grid-column-end: 14;
grid-row-start: 1;
grid-row-end: 14;
z-index: 0;
}





  #s-ff445d8c-908b-4365-941d-1e6f25680d5e img.shogun-image,
  #s-ff445d8c-908b-4365-941d-1e6f25680d5e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ff445d8c-908b-4365-941d-1e6f25680d5e {
    width: 100%;
    height: auto;
  }

  #s-ff445d8c-908b-4365-941d-1e6f25680d5e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ff445d8c-908b-4365-941d-1e6f25680d5e.shogun-image {
    
    
  }


.s-ff445d8c-908b-4365-941d-1e6f25680d5e .shogun-image-content {
  
    align-items: center;
  
}

.s-ff445d8c-908b-4365-941d-1e6f25680d5e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff445d8c-908b-4365-941d-1e6f25680d5e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff445d8c-908b-4365-941d-1e6f25680d5e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ff445d8c-908b-4365-941d-1e6f25680d5e {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-ff445d8c-908b-4365-941d-1e6f25680d5e.shogun-image-container {
      position: relative;
    }

    .s-ff445d8c-908b-4365-941d-1e6f25680d5e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ff445d8c-908b-4365-941d-1e6f25680d5e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ff445d8c-908b-4365-941d-1e6f25680d5e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-ff445d8c-908b-4365-941d-1e6f25680d5e img.shogun-image,
  #s-ff445d8c-908b-4365-941d-1e6f25680d5e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ff445d8c-908b-4365-941d-1e6f25680d5e {
    width: 100%;
    height: auto;
  }

  #s-ff445d8c-908b-4365-941d-1e6f25680d5e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ff445d8c-908b-4365-941d-1e6f25680d5e.shogun-image {
    
    
  }


.s-ff445d8c-908b-4365-941d-1e6f25680d5e .shogun-image-content {
  
    align-items: center;
  
}

.s-ff445d8c-908b-4365-941d-1e6f25680d5e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff445d8c-908b-4365-941d-1e6f25680d5e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff445d8c-908b-4365-941d-1e6f25680d5e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ff445d8c-908b-4365-941d-1e6f25680d5e {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-ff445d8c-908b-4365-941d-1e6f25680d5e.shogun-image-container {
      position: relative;
    }

    .s-ff445d8c-908b-4365-941d-1e6f25680d5e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ff445d8c-908b-4365-941d-1e6f25680d5e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ff445d8c-908b-4365-941d-1e6f25680d5e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-ff445d8c-908b-4365-941d-1e6f25680d5e img.shogun-image,
  #s-ff445d8c-908b-4365-941d-1e6f25680d5e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ff445d8c-908b-4365-941d-1e6f25680d5e {
    width: 100%;
    height: auto;
  }

  #s-ff445d8c-908b-4365-941d-1e6f25680d5e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ff445d8c-908b-4365-941d-1e6f25680d5e.shogun-image {
    
    
  }


.s-ff445d8c-908b-4365-941d-1e6f25680d5e .shogun-image-content {
  
    align-items: center;
  
}

.s-ff445d8c-908b-4365-941d-1e6f25680d5e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff445d8c-908b-4365-941d-1e6f25680d5e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff445d8c-908b-4365-941d-1e6f25680d5e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ff445d8c-908b-4365-941d-1e6f25680d5e {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-ff445d8c-908b-4365-941d-1e6f25680d5e.shogun-image-container {
      position: relative;
    }

    .s-ff445d8c-908b-4365-941d-1e6f25680d5e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ff445d8c-908b-4365-941d-1e6f25680d5e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ff445d8c-908b-4365-941d-1e6f25680d5e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-ff445d8c-908b-4365-941d-1e6f25680d5e img.shogun-image,
  #s-ff445d8c-908b-4365-941d-1e6f25680d5e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ff445d8c-908b-4365-941d-1e6f25680d5e {
    width: 100%;
    height: auto;
  }

  #s-ff445d8c-908b-4365-941d-1e6f25680d5e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ff445d8c-908b-4365-941d-1e6f25680d5e.shogun-image {
    
    
  }


.s-ff445d8c-908b-4365-941d-1e6f25680d5e .shogun-image-content {
  
    align-items: center;
  
}

.s-ff445d8c-908b-4365-941d-1e6f25680d5e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff445d8c-908b-4365-941d-1e6f25680d5e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff445d8c-908b-4365-941d-1e6f25680d5e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ff445d8c-908b-4365-941d-1e6f25680d5e {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-ff445d8c-908b-4365-941d-1e6f25680d5e.shogun-image-container {
      position: relative;
    }

    .s-ff445d8c-908b-4365-941d-1e6f25680d5e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ff445d8c-908b-4365-941d-1e6f25680d5e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ff445d8c-908b-4365-941d-1e6f25680d5e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-ff445d8c-908b-4365-941d-1e6f25680d5e img.shogun-image,
  #s-ff445d8c-908b-4365-941d-1e6f25680d5e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ff445d8c-908b-4365-941d-1e6f25680d5e {
    width: 100%;
    height: auto;
  }

  #s-ff445d8c-908b-4365-941d-1e6f25680d5e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ff445d8c-908b-4365-941d-1e6f25680d5e.shogun-image {
    
    
  }


.s-ff445d8c-908b-4365-941d-1e6f25680d5e .shogun-image-content {
  
    align-items: center;
  
}

.s-ff445d8c-908b-4365-941d-1e6f25680d5e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff445d8c-908b-4365-941d-1e6f25680d5e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff445d8c-908b-4365-941d-1e6f25680d5e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ff445d8c-908b-4365-941d-1e6f25680d5e {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-ff445d8c-908b-4365-941d-1e6f25680d5e.shogun-image-container {
      position: relative;
    }

    .s-ff445d8c-908b-4365-941d-1e6f25680d5e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ff445d8c-908b-4365-941d-1e6f25680d5e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ff445d8c-908b-4365-941d-1e6f25680d5e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-4383eec2-1658-4cfe-b2cf-d9b9ab627480 {
  aspect-ratio: 11/11;
text-align: center;
}

#s-4383eec2-1658-4cfe-b2cf-d9b9ab627480-root {
  grid-column-start: 14;
grid-column-end: 25;
grid-row-start: 1;
grid-row-end: 12;
z-index: 1;
}





  #s-4383eec2-1658-4cfe-b2cf-d9b9ab627480 img.shogun-image,
  #s-4383eec2-1658-4cfe-b2cf-d9b9ab627480 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4383eec2-1658-4cfe-b2cf-d9b9ab627480 {
    width: 100%;
    height: auto;
  }

  #s-4383eec2-1658-4cfe-b2cf-d9b9ab627480 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4383eec2-1658-4cfe-b2cf-d9b9ab627480.shogun-image {
    
    
  }


.s-4383eec2-1658-4cfe-b2cf-d9b9ab627480 .shogun-image-content {
  
    align-items: center;
  
}

.s-4383eec2-1658-4cfe-b2cf-d9b9ab627480.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4383eec2-1658-4cfe-b2cf-d9b9ab627480.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4383eec2-1658-4cfe-b2cf-d9b9ab627480.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4383eec2-1658-4cfe-b2cf-d9b9ab627480 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-4383eec2-1658-4cfe-b2cf-d9b9ab627480.shogun-image-container {
      position: relative;
    }

    .s-4383eec2-1658-4cfe-b2cf-d9b9ab627480.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4383eec2-1658-4cfe-b2cf-d9b9ab627480.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4383eec2-1658-4cfe-b2cf-d9b9ab627480 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-4383eec2-1658-4cfe-b2cf-d9b9ab627480 img.shogun-image,
  #s-4383eec2-1658-4cfe-b2cf-d9b9ab627480 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4383eec2-1658-4cfe-b2cf-d9b9ab627480 {
    width: 100%;
    height: auto;
  }

  #s-4383eec2-1658-4cfe-b2cf-d9b9ab627480 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4383eec2-1658-4cfe-b2cf-d9b9ab627480.shogun-image {
    
    
  }


.s-4383eec2-1658-4cfe-b2cf-d9b9ab627480 .shogun-image-content {
  
    align-items: center;
  
}

.s-4383eec2-1658-4cfe-b2cf-d9b9ab627480.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4383eec2-1658-4cfe-b2cf-d9b9ab627480.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4383eec2-1658-4cfe-b2cf-d9b9ab627480.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4383eec2-1658-4cfe-b2cf-d9b9ab627480 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-4383eec2-1658-4cfe-b2cf-d9b9ab627480.shogun-image-container {
      position: relative;
    }

    .s-4383eec2-1658-4cfe-b2cf-d9b9ab627480.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4383eec2-1658-4cfe-b2cf-d9b9ab627480.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4383eec2-1658-4cfe-b2cf-d9b9ab627480 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-4383eec2-1658-4cfe-b2cf-d9b9ab627480 img.shogun-image,
  #s-4383eec2-1658-4cfe-b2cf-d9b9ab627480 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4383eec2-1658-4cfe-b2cf-d9b9ab627480 {
    width: 100%;
    height: auto;
  }

  #s-4383eec2-1658-4cfe-b2cf-d9b9ab627480 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4383eec2-1658-4cfe-b2cf-d9b9ab627480.shogun-image {
    
    
  }


.s-4383eec2-1658-4cfe-b2cf-d9b9ab627480 .shogun-image-content {
  
    align-items: center;
  
}

.s-4383eec2-1658-4cfe-b2cf-d9b9ab627480.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4383eec2-1658-4cfe-b2cf-d9b9ab627480.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4383eec2-1658-4cfe-b2cf-d9b9ab627480.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4383eec2-1658-4cfe-b2cf-d9b9ab627480 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-4383eec2-1658-4cfe-b2cf-d9b9ab627480.shogun-image-container {
      position: relative;
    }

    .s-4383eec2-1658-4cfe-b2cf-d9b9ab627480.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4383eec2-1658-4cfe-b2cf-d9b9ab627480.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4383eec2-1658-4cfe-b2cf-d9b9ab627480 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-4383eec2-1658-4cfe-b2cf-d9b9ab627480 img.shogun-image,
  #s-4383eec2-1658-4cfe-b2cf-d9b9ab627480 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4383eec2-1658-4cfe-b2cf-d9b9ab627480 {
    width: 100%;
    height: auto;
  }

  #s-4383eec2-1658-4cfe-b2cf-d9b9ab627480 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4383eec2-1658-4cfe-b2cf-d9b9ab627480.shogun-image {
    
    
  }


.s-4383eec2-1658-4cfe-b2cf-d9b9ab627480 .shogun-image-content {
  
    align-items: center;
  
}

.s-4383eec2-1658-4cfe-b2cf-d9b9ab627480.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4383eec2-1658-4cfe-b2cf-d9b9ab627480.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4383eec2-1658-4cfe-b2cf-d9b9ab627480.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4383eec2-1658-4cfe-b2cf-d9b9ab627480 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-4383eec2-1658-4cfe-b2cf-d9b9ab627480.shogun-image-container {
      position: relative;
    }

    .s-4383eec2-1658-4cfe-b2cf-d9b9ab627480.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4383eec2-1658-4cfe-b2cf-d9b9ab627480.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4383eec2-1658-4cfe-b2cf-d9b9ab627480 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-4383eec2-1658-4cfe-b2cf-d9b9ab627480 img.shogun-image,
  #s-4383eec2-1658-4cfe-b2cf-d9b9ab627480 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4383eec2-1658-4cfe-b2cf-d9b9ab627480 {
    width: 100%;
    height: auto;
  }

  #s-4383eec2-1658-4cfe-b2cf-d9b9ab627480 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4383eec2-1658-4cfe-b2cf-d9b9ab627480.shogun-image {
    
    
  }


.s-4383eec2-1658-4cfe-b2cf-d9b9ab627480 .shogun-image-content {
  
    align-items: center;
  
}

.s-4383eec2-1658-4cfe-b2cf-d9b9ab627480.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4383eec2-1658-4cfe-b2cf-d9b9ab627480.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4383eec2-1658-4cfe-b2cf-d9b9ab627480.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4383eec2-1658-4cfe-b2cf-d9b9ab627480 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-4383eec2-1658-4cfe-b2cf-d9b9ab627480.shogun-image-container {
      position: relative;
    }

    .s-4383eec2-1658-4cfe-b2cf-d9b9ab627480.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4383eec2-1658-4cfe-b2cf-d9b9ab627480.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4383eec2-1658-4cfe-b2cf-d9b9ab627480 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-6cb14d2e-f14b-418f-8d13-818c81adea9f {
  margin-top: -3%;
}

#s-6cb14d2e-f14b-418f-8d13-818c81adea9f .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(6, calc(100vw / 24));
}

#s-ecffaa91-7552-4d2f-a928-ee30a157cd90 {
  margin-top: 3%;
margin-left: 0%;
margin-right: 20%;
aspect-ratio: 5/5;
text-align: center;
}

#s-ecffaa91-7552-4d2f-a928-ee30a157cd90-root {
  grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 2;
grid-row-end: 7;
z-index: 0;
}





  #s-ecffaa91-7552-4d2f-a928-ee30a157cd90 img.shogun-image,
  #s-ecffaa91-7552-4d2f-a928-ee30a157cd90 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ecffaa91-7552-4d2f-a928-ee30a157cd90 {
    width: 100%;
    height: auto;
  }

  #s-ecffaa91-7552-4d2f-a928-ee30a157cd90 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ecffaa91-7552-4d2f-a928-ee30a157cd90.shogun-image {
    
    
  }


.s-ecffaa91-7552-4d2f-a928-ee30a157cd90 .shogun-image-content {
  
    align-items: center;
  
}

.s-ecffaa91-7552-4d2f-a928-ee30a157cd90.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ecffaa91-7552-4d2f-a928-ee30a157cd90.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ecffaa91-7552-4d2f-a928-ee30a157cd90.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ecffaa91-7552-4d2f-a928-ee30a157cd90 {
      --shg-aspect-ratio: calc(5/5); 
    }

    .s-ecffaa91-7552-4d2f-a928-ee30a157cd90.shogun-image-container {
      position: relative;
    }

    .s-ecffaa91-7552-4d2f-a928-ee30a157cd90.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ecffaa91-7552-4d2f-a928-ee30a157cd90.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ecffaa91-7552-4d2f-a928-ee30a157cd90 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-ecffaa91-7552-4d2f-a928-ee30a157cd90 img.shogun-image,
  #s-ecffaa91-7552-4d2f-a928-ee30a157cd90 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ecffaa91-7552-4d2f-a928-ee30a157cd90 {
    width: 100%;
    height: auto;
  }

  #s-ecffaa91-7552-4d2f-a928-ee30a157cd90 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ecffaa91-7552-4d2f-a928-ee30a157cd90.shogun-image {
    
    
  }


.s-ecffaa91-7552-4d2f-a928-ee30a157cd90 .shogun-image-content {
  
    align-items: center;
  
}

.s-ecffaa91-7552-4d2f-a928-ee30a157cd90.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ecffaa91-7552-4d2f-a928-ee30a157cd90.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ecffaa91-7552-4d2f-a928-ee30a157cd90.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ecffaa91-7552-4d2f-a928-ee30a157cd90 {
      --shg-aspect-ratio: calc(5/5); 
    }

    .s-ecffaa91-7552-4d2f-a928-ee30a157cd90.shogun-image-container {
      position: relative;
    }

    .s-ecffaa91-7552-4d2f-a928-ee30a157cd90.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ecffaa91-7552-4d2f-a928-ee30a157cd90.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ecffaa91-7552-4d2f-a928-ee30a157cd90 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-ecffaa91-7552-4d2f-a928-ee30a157cd90 img.shogun-image,
  #s-ecffaa91-7552-4d2f-a928-ee30a157cd90 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ecffaa91-7552-4d2f-a928-ee30a157cd90 {
    width: 100%;
    height: auto;
  }

  #s-ecffaa91-7552-4d2f-a928-ee30a157cd90 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ecffaa91-7552-4d2f-a928-ee30a157cd90.shogun-image {
    
    
  }


.s-ecffaa91-7552-4d2f-a928-ee30a157cd90 .shogun-image-content {
  
    align-items: center;
  
}

.s-ecffaa91-7552-4d2f-a928-ee30a157cd90.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ecffaa91-7552-4d2f-a928-ee30a157cd90.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ecffaa91-7552-4d2f-a928-ee30a157cd90.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ecffaa91-7552-4d2f-a928-ee30a157cd90 {
      --shg-aspect-ratio: calc(5/5); 
    }

    .s-ecffaa91-7552-4d2f-a928-ee30a157cd90.shogun-image-container {
      position: relative;
    }

    .s-ecffaa91-7552-4d2f-a928-ee30a157cd90.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ecffaa91-7552-4d2f-a928-ee30a157cd90.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ecffaa91-7552-4d2f-a928-ee30a157cd90 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-ecffaa91-7552-4d2f-a928-ee30a157cd90 img.shogun-image,
  #s-ecffaa91-7552-4d2f-a928-ee30a157cd90 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ecffaa91-7552-4d2f-a928-ee30a157cd90 {
    width: 100%;
    height: auto;
  }

  #s-ecffaa91-7552-4d2f-a928-ee30a157cd90 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ecffaa91-7552-4d2f-a928-ee30a157cd90.shogun-image {
    
    
  }


.s-ecffaa91-7552-4d2f-a928-ee30a157cd90 .shogun-image-content {
  
    align-items: center;
  
}

.s-ecffaa91-7552-4d2f-a928-ee30a157cd90.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ecffaa91-7552-4d2f-a928-ee30a157cd90.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ecffaa91-7552-4d2f-a928-ee30a157cd90.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ecffaa91-7552-4d2f-a928-ee30a157cd90 {
      --shg-aspect-ratio: calc(5/5); 
    }

    .s-ecffaa91-7552-4d2f-a928-ee30a157cd90.shogun-image-container {
      position: relative;
    }

    .s-ecffaa91-7552-4d2f-a928-ee30a157cd90.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ecffaa91-7552-4d2f-a928-ee30a157cd90.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ecffaa91-7552-4d2f-a928-ee30a157cd90 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-ecffaa91-7552-4d2f-a928-ee30a157cd90 img.shogun-image,
  #s-ecffaa91-7552-4d2f-a928-ee30a157cd90 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ecffaa91-7552-4d2f-a928-ee30a157cd90 {
    width: 100%;
    height: auto;
  }

  #s-ecffaa91-7552-4d2f-a928-ee30a157cd90 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ecffaa91-7552-4d2f-a928-ee30a157cd90.shogun-image {
    
    
  }


.s-ecffaa91-7552-4d2f-a928-ee30a157cd90 .shogun-image-content {
  
    align-items: center;
  
}

.s-ecffaa91-7552-4d2f-a928-ee30a157cd90.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ecffaa91-7552-4d2f-a928-ee30a157cd90.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ecffaa91-7552-4d2f-a928-ee30a157cd90.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ecffaa91-7552-4d2f-a928-ee30a157cd90 {
      --shg-aspect-ratio: calc(5/5); 
    }

    .s-ecffaa91-7552-4d2f-a928-ee30a157cd90.shogun-image-container {
      position: relative;
    }

    .s-ecffaa91-7552-4d2f-a928-ee30a157cd90.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ecffaa91-7552-4d2f-a928-ee30a157cd90.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ecffaa91-7552-4d2f-a928-ee30a157cd90 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-e72aeb3d-bd27-400e-ba8a-559b32c6a2de {
  margin-top: 5%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e72aeb3d-bd27-400e-ba8a-559b32c6a2de {
  grid-column-start: 6;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 7;
z-index: 1;
}

#s-e72aeb3d-bd27-400e-ba8a-559b32c6a2de .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 1px;
  text-align: left;
}



#s-f3e9593b-e880-4178-9ebe-c52fc72257d9 {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-d0518ba6-71de-44d6-9e5b-d9548b6a8de8 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}







  img.s-d0518ba6-71de-44d6-9e5b-d9548b6a8de8.shogun-image {
    
    
  }


.s-d0518ba6-71de-44d6-9e5b-d9548b6a8de8 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-d0518ba6-71de-44d6-9e5b-d9548b6a8de8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d0518ba6-71de-44d6-9e5b-d9548b6a8de8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d0518ba6-71de-44d6-9e5b-d9548b6a8de8.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-d0518ba6-71de-44d6-9e5b-d9548b6a8de8.shogun-image {
    
    
  }


.s-d0518ba6-71de-44d6-9e5b-d9548b6a8de8 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-d0518ba6-71de-44d6-9e5b-d9548b6a8de8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d0518ba6-71de-44d6-9e5b-d9548b6a8de8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d0518ba6-71de-44d6-9e5b-d9548b6a8de8.shogun-image {
  box-sizing: border-box;
}



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





  img.s-d0518ba6-71de-44d6-9e5b-d9548b6a8de8.shogun-image {
    
    
  }


.s-d0518ba6-71de-44d6-9e5b-d9548b6a8de8 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-d0518ba6-71de-44d6-9e5b-d9548b6a8de8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d0518ba6-71de-44d6-9e5b-d9548b6a8de8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d0518ba6-71de-44d6-9e5b-d9548b6a8de8.shogun-image {
  box-sizing: border-box;
}



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





  img.s-d0518ba6-71de-44d6-9e5b-d9548b6a8de8.shogun-image {
    
    
  }


.s-d0518ba6-71de-44d6-9e5b-d9548b6a8de8 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-d0518ba6-71de-44d6-9e5b-d9548b6a8de8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d0518ba6-71de-44d6-9e5b-d9548b6a8de8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d0518ba6-71de-44d6-9e5b-d9548b6a8de8.shogun-image {
  box-sizing: border-box;
}



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





  img.s-d0518ba6-71de-44d6-9e5b-d9548b6a8de8.shogun-image {
    
    
  }


.s-d0518ba6-71de-44d6-9e5b-d9548b6a8de8 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-d0518ba6-71de-44d6-9e5b-d9548b6a8de8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d0518ba6-71de-44d6-9e5b-d9548b6a8de8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d0518ba6-71de-44d6-9e5b-d9548b6a8de8.shogun-image {
  box-sizing: border-box;
}



}
#s-3c335ab4-6b79-4b25-8724-1efa446dcb7f {
  margin-top: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3c335ab4-6b79-4b25-8724-1efa446dcb7f .shogun-heading-component h5 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-90c12485-a458-4d4f-bd86-34a69cb4bc2a {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-90c12485-a458-4d4f-bd86-34a69cb4bc2a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-90c12485-a458-4d4f-bd86-34a69cb4bc2a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fe3fa35e-0249-461a-b116-16839941d3e0 {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: rgba(255, 255, 255, 1);
border-radius: 3px;
max-width: 100%;
background-color: rgba(255, 255, 255, 0.5);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-fe3fa35e-0249-461a-b116-16839941d3e0:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: rgba(255, 255, 255, 0.36) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-fe3fa35e-0249-461a-b116-16839941d3e0:active {background-color: rgba(255, 255, 255, 0.51) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-fe3fa35e-0249-461a-b116-16839941d3e0-root {
    text-align: center;
  }


#s-fe3fa35e-0249-461a-b116-16839941d3e0.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-fe3fa35e-0249-461a-b116-16839941d3e0-root {
    text-align: center;
  }


#s-fe3fa35e-0249-461a-b116-16839941d3e0.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-fe3fa35e-0249-461a-b116-16839941d3e0-root {
    text-align: center;
  }


#s-fe3fa35e-0249-461a-b116-16839941d3e0.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-fe3fa35e-0249-461a-b116-16839941d3e0-root {
    text-align: center;
  }


#s-fe3fa35e-0249-461a-b116-16839941d3e0.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-fe3fa35e-0249-461a-b116-16839941d3e0-root {
    text-align: center;
  }


#s-fe3fa35e-0249-461a-b116-16839941d3e0.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-fe3fa35e-0249-461a-b116-16839941d3e0-root {
    text-align: center;
  }


#s-fe3fa35e-0249-461a-b116-16839941d3e0.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-d6e1bb09-f383-4311-a94c-89779f46f9ea {
  margin-top: 13%;
}

#s-d6e1bb09-f383-4311-a94c-89779f46f9ea .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(14, calc(100vw / 24));
}

#s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1 {
  aspect-ratio: 11/11;
text-align: center;
}

#s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1-root {
  grid-column-start: 1;
grid-column-end: 12;
grid-row-start: 4;
grid-row-end: 15;
z-index: 0;
}





  #s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1 img.shogun-image,
  #s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1 {
    width: 100%;
    height: auto;
  }

  #s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1.shogun-image {
    
    
  }


.s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1 .shogun-image-content {
  
    align-items: center;
  
}

.s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1.shogun-image-container {
      position: relative;
    }

    .s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1 img.shogun-image,
  #s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1 {
    width: 100%;
    height: auto;
  }

  #s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1.shogun-image {
    
    
  }


.s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1 .shogun-image-content {
  
    align-items: center;
  
}

.s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1.shogun-image-container {
      position: relative;
    }

    .s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1 img.shogun-image,
  #s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1 {
    width: 100%;
    height: auto;
  }

  #s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1.shogun-image {
    
    
  }


.s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1 .shogun-image-content {
  
    align-items: center;
  
}

.s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1.shogun-image-container {
      position: relative;
    }

    .s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1 img.shogun-image,
  #s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1 {
    width: 100%;
    height: auto;
  }

  #s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1.shogun-image {
    
    
  }


.s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1 .shogun-image-content {
  
    align-items: center;
  
}

.s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1.shogun-image-container {
      position: relative;
    }

    .s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1 img.shogun-image,
  #s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1 {
    width: 100%;
    height: auto;
  }

  #s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1.shogun-image {
    
    
  }


.s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1 .shogun-image-content {
  
    align-items: center;
  
}

.s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1.shogun-image-container {
      position: relative;
    }

    .s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-17a99d9e-8a10-4a96-a836-b5e70a7d6de1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-24255d8a-7b6a-4f89-800d-523506d09bbe {
  aspect-ratio: 14/14;
text-align: center;
}

#s-24255d8a-7b6a-4f89-800d-523506d09bbe-root {
  grid-column-start: 11;
grid-column-end: 25;
grid-row-start: 1;
grid-row-end: 15;
z-index: 1;
}





  #s-24255d8a-7b6a-4f89-800d-523506d09bbe img.shogun-image,
  #s-24255d8a-7b6a-4f89-800d-523506d09bbe .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-24255d8a-7b6a-4f89-800d-523506d09bbe {
    width: 100%;
    height: auto;
  }

  #s-24255d8a-7b6a-4f89-800d-523506d09bbe img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-24255d8a-7b6a-4f89-800d-523506d09bbe.shogun-image {
    
    
  }


.s-24255d8a-7b6a-4f89-800d-523506d09bbe .shogun-image-content {
  
    align-items: center;
  
}

.s-24255d8a-7b6a-4f89-800d-523506d09bbe.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24255d8a-7b6a-4f89-800d-523506d09bbe.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24255d8a-7b6a-4f89-800d-523506d09bbe.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-24255d8a-7b6a-4f89-800d-523506d09bbe {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-24255d8a-7b6a-4f89-800d-523506d09bbe.shogun-image-container {
      position: relative;
    }

    .s-24255d8a-7b6a-4f89-800d-523506d09bbe.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-24255d8a-7b6a-4f89-800d-523506d09bbe.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-24255d8a-7b6a-4f89-800d-523506d09bbe img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-24255d8a-7b6a-4f89-800d-523506d09bbe img.shogun-image,
  #s-24255d8a-7b6a-4f89-800d-523506d09bbe .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-24255d8a-7b6a-4f89-800d-523506d09bbe {
    width: 100%;
    height: auto;
  }

  #s-24255d8a-7b6a-4f89-800d-523506d09bbe img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-24255d8a-7b6a-4f89-800d-523506d09bbe.shogun-image {
    
    
  }


.s-24255d8a-7b6a-4f89-800d-523506d09bbe .shogun-image-content {
  
    align-items: center;
  
}

.s-24255d8a-7b6a-4f89-800d-523506d09bbe.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24255d8a-7b6a-4f89-800d-523506d09bbe.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24255d8a-7b6a-4f89-800d-523506d09bbe.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-24255d8a-7b6a-4f89-800d-523506d09bbe {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-24255d8a-7b6a-4f89-800d-523506d09bbe.shogun-image-container {
      position: relative;
    }

    .s-24255d8a-7b6a-4f89-800d-523506d09bbe.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-24255d8a-7b6a-4f89-800d-523506d09bbe.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-24255d8a-7b6a-4f89-800d-523506d09bbe img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-24255d8a-7b6a-4f89-800d-523506d09bbe img.shogun-image,
  #s-24255d8a-7b6a-4f89-800d-523506d09bbe .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-24255d8a-7b6a-4f89-800d-523506d09bbe {
    width: 100%;
    height: auto;
  }

  #s-24255d8a-7b6a-4f89-800d-523506d09bbe img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-24255d8a-7b6a-4f89-800d-523506d09bbe.shogun-image {
    
    
  }


.s-24255d8a-7b6a-4f89-800d-523506d09bbe .shogun-image-content {
  
    align-items: center;
  
}

.s-24255d8a-7b6a-4f89-800d-523506d09bbe.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24255d8a-7b6a-4f89-800d-523506d09bbe.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24255d8a-7b6a-4f89-800d-523506d09bbe.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-24255d8a-7b6a-4f89-800d-523506d09bbe {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-24255d8a-7b6a-4f89-800d-523506d09bbe.shogun-image-container {
      position: relative;
    }

    .s-24255d8a-7b6a-4f89-800d-523506d09bbe.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-24255d8a-7b6a-4f89-800d-523506d09bbe.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-24255d8a-7b6a-4f89-800d-523506d09bbe img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-24255d8a-7b6a-4f89-800d-523506d09bbe img.shogun-image,
  #s-24255d8a-7b6a-4f89-800d-523506d09bbe .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-24255d8a-7b6a-4f89-800d-523506d09bbe {
    width: 100%;
    height: auto;
  }

  #s-24255d8a-7b6a-4f89-800d-523506d09bbe img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-24255d8a-7b6a-4f89-800d-523506d09bbe.shogun-image {
    
    
  }


.s-24255d8a-7b6a-4f89-800d-523506d09bbe .shogun-image-content {
  
    align-items: center;
  
}

.s-24255d8a-7b6a-4f89-800d-523506d09bbe.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24255d8a-7b6a-4f89-800d-523506d09bbe.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24255d8a-7b6a-4f89-800d-523506d09bbe.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-24255d8a-7b6a-4f89-800d-523506d09bbe {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-24255d8a-7b6a-4f89-800d-523506d09bbe.shogun-image-container {
      position: relative;
    }

    .s-24255d8a-7b6a-4f89-800d-523506d09bbe.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-24255d8a-7b6a-4f89-800d-523506d09bbe.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-24255d8a-7b6a-4f89-800d-523506d09bbe img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-24255d8a-7b6a-4f89-800d-523506d09bbe img.shogun-image,
  #s-24255d8a-7b6a-4f89-800d-523506d09bbe .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-24255d8a-7b6a-4f89-800d-523506d09bbe {
    width: 100%;
    height: auto;
  }

  #s-24255d8a-7b6a-4f89-800d-523506d09bbe img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-24255d8a-7b6a-4f89-800d-523506d09bbe.shogun-image {
    
    
  }


.s-24255d8a-7b6a-4f89-800d-523506d09bbe .shogun-image-content {
  
    align-items: center;
  
}

.s-24255d8a-7b6a-4f89-800d-523506d09bbe.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24255d8a-7b6a-4f89-800d-523506d09bbe.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24255d8a-7b6a-4f89-800d-523506d09bbe.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-24255d8a-7b6a-4f89-800d-523506d09bbe {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-24255d8a-7b6a-4f89-800d-523506d09bbe.shogun-image-container {
      position: relative;
    }

    .s-24255d8a-7b6a-4f89-800d-523506d09bbe.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-24255d8a-7b6a-4f89-800d-523506d09bbe.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-24255d8a-7b6a-4f89-800d-523506d09bbe img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-9b42d39f-9a30-49d8-9f21-fed627af77b3 {
  margin-top: -1%;
}

#s-9b42d39f-9a30-49d8-9f21-fed627af77b3 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(5, calc(100vw / 24));
}

#s-bfbb19a6-20ed-4893-8847-1014ecfde690 {
  margin-left: 0%;
margin-right: 20%;
text-align: center;
}

#s-bfbb19a6-20ed-4893-8847-1014ecfde690-root {
  grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 2;
grid-row-end: 6;
z-index: 0;
}







  img.s-bfbb19a6-20ed-4893-8847-1014ecfde690.shogun-image {
    
    
  }


.s-bfbb19a6-20ed-4893-8847-1014ecfde690 .shogun-image-content {
  
    align-items: center;
  
}

.s-bfbb19a6-20ed-4893-8847-1014ecfde690.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bfbb19a6-20ed-4893-8847-1014ecfde690.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bfbb19a6-20ed-4893-8847-1014ecfde690.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-bfbb19a6-20ed-4893-8847-1014ecfde690.shogun-image {
    
    
  }


.s-bfbb19a6-20ed-4893-8847-1014ecfde690 .shogun-image-content {
  
    align-items: center;
  
}

.s-bfbb19a6-20ed-4893-8847-1014ecfde690.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bfbb19a6-20ed-4893-8847-1014ecfde690.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bfbb19a6-20ed-4893-8847-1014ecfde690.shogun-image {
  box-sizing: border-box;
}



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





  img.s-bfbb19a6-20ed-4893-8847-1014ecfde690.shogun-image {
    
    
  }


.s-bfbb19a6-20ed-4893-8847-1014ecfde690 .shogun-image-content {
  
    align-items: center;
  
}

.s-bfbb19a6-20ed-4893-8847-1014ecfde690.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bfbb19a6-20ed-4893-8847-1014ecfde690.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bfbb19a6-20ed-4893-8847-1014ecfde690.shogun-image {
  box-sizing: border-box;
}



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





  img.s-bfbb19a6-20ed-4893-8847-1014ecfde690.shogun-image {
    
    
  }


.s-bfbb19a6-20ed-4893-8847-1014ecfde690 .shogun-image-content {
  
    align-items: center;
  
}

.s-bfbb19a6-20ed-4893-8847-1014ecfde690.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bfbb19a6-20ed-4893-8847-1014ecfde690.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bfbb19a6-20ed-4893-8847-1014ecfde690.shogun-image {
  box-sizing: border-box;
}



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





  img.s-bfbb19a6-20ed-4893-8847-1014ecfde690.shogun-image {
    
    
  }


.s-bfbb19a6-20ed-4893-8847-1014ecfde690 .shogun-image-content {
  
    align-items: center;
  
}

.s-bfbb19a6-20ed-4893-8847-1014ecfde690.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bfbb19a6-20ed-4893-8847-1014ecfde690.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bfbb19a6-20ed-4893-8847-1014ecfde690.shogun-image {
  box-sizing: border-box;
}



}
#s-718d342c-8f2e-46cd-8862-ab3ad9c7abec {
  margin-top: 5%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-718d342c-8f2e-46cd-8862-ab3ad9c7abec {
  grid-column-start: 6;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 6;
z-index: 1;
}

#s-718d342c-8f2e-46cd-8862-ab3ad9c7abec .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 1px;
  text-align: left;
}



#s-94bdc35a-d60f-4418-87e1-e9d13acc5127 {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-61e8f81b-d3b6-4d44-8b90-4022856a0b79 {
  text-align: left;
}

#s-9d2d56e6-0e33-4b1f-b942-a0eb74a7afd7 {
  margin-top: -11%;
min-height: 50px;
}
@media (min-width: 1200px){#s-9d2d56e6-0e33-4b1f-b942-a0eb74a7afd7 {
  display: none;
}
#s-9d2d56e6-0e33-4b1f-b942-a0eb74a7afd7, #wrap-s-9d2d56e6-0e33-4b1f-b942-a0eb74a7afd7 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9d2d56e6-0e33-4b1f-b942-a0eb74a7afd7 {
  display: none;
}
#s-9d2d56e6-0e33-4b1f-b942-a0eb74a7afd7, #wrap-s-9d2d56e6-0e33-4b1f-b942-a0eb74a7afd7 { display: none !important; }}







#s-9d2d56e6-0e33-4b1f-b942-a0eb74a7afd7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9d2d56e6-0e33-4b1f-b942-a0eb74a7afd7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.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-1d9ae28c-b5b7-4742-a59d-eb928be3828b {
  margin-top: 5%;
padding-top: 0px;
padding-bottom: 0px;
}
@media (min-width: 1200px){#s-1d9ae28c-b5b7-4742-a59d-eb928be3828b {
  display: none;
}
#s-1d9ae28c-b5b7-4742-a59d-eb928be3828b, #wrap-s-1d9ae28c-b5b7-4742-a59d-eb928be3828b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1d9ae28c-b5b7-4742-a59d-eb928be3828b {
  display: none;
}
#s-1d9ae28c-b5b7-4742-a59d-eb928be3828b, #wrap-s-1d9ae28c-b5b7-4742-a59d-eb928be3828b { display: none !important; }}
#s-1d9ae28c-b5b7-4742-a59d-eb928be3828b .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-1d9ae28c-b5b7-4742-a59d-eb928be3828b .shg-sld-nav-button.shg-sld-left,
#s-1d9ae28c-b5b7-4742-a59d-eb928be3828b .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-e2fdb3ac-b578-4e86-9961-4b7cdfc8f4c7 {
  margin-top: -11%;
min-height: 50px;
}
@media (min-width: 1200px){#s-e2fdb3ac-b578-4e86-9961-4b7cdfc8f4c7 {
  display: none;
}
#s-e2fdb3ac-b578-4e86-9961-4b7cdfc8f4c7, #wrap-s-e2fdb3ac-b578-4e86-9961-4b7cdfc8f4c7 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e2fdb3ac-b578-4e86-9961-4b7cdfc8f4c7 {
  display: none;
}
#s-e2fdb3ac-b578-4e86-9961-4b7cdfc8f4c7, #wrap-s-e2fdb3ac-b578-4e86-9961-4b7cdfc8f4c7 { display: none !important; }}







#s-e2fdb3ac-b578-4e86-9961-4b7cdfc8f4c7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e2fdb3ac-b578-4e86-9961-4b7cdfc8f4c7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-00466f62-1b74-4b38-9074-4b52a59d82c1 {
  margin-top: -11%;
min-height: 50px;
}
@media (min-width: 1200px){#s-00466f62-1b74-4b38-9074-4b52a59d82c1 {
  display: none;
}
#s-00466f62-1b74-4b38-9074-4b52a59d82c1, #wrap-s-00466f62-1b74-4b38-9074-4b52a59d82c1 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-00466f62-1b74-4b38-9074-4b52a59d82c1 {
  display: none;
}
#s-00466f62-1b74-4b38-9074-4b52a59d82c1, #wrap-s-00466f62-1b74-4b38-9074-4b52a59d82c1 { display: none !important; }}







#s-00466f62-1b74-4b38-9074-4b52a59d82c1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-00466f62-1b74-4b38-9074-4b52a59d82c1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c463422d-57f7-4035-9128-ea34557780ea {
  max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-c463422d-57f7-4035-9128-ea34557780ea img.shogun-image,
  #s-c463422d-57f7-4035-9128-ea34557780ea .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c463422d-57f7-4035-9128-ea34557780ea {
    width: 100%;
    height: auto;
  }

  #s-c463422d-57f7-4035-9128-ea34557780ea img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c463422d-57f7-4035-9128-ea34557780ea.shogun-image {
    
    
  }


.s-c463422d-57f7-4035-9128-ea34557780ea .shogun-image-content {
  
    align-items: center;
  
}

.s-c463422d-57f7-4035-9128-ea34557780ea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c463422d-57f7-4035-9128-ea34557780ea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c463422d-57f7-4035-9128-ea34557780ea.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c463422d-57f7-4035-9128-ea34557780ea {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c463422d-57f7-4035-9128-ea34557780ea.shogun-image-container {
      position: relative;
    }

    .s-c463422d-57f7-4035-9128-ea34557780ea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c463422d-57f7-4035-9128-ea34557780ea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c463422d-57f7-4035-9128-ea34557780ea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-c463422d-57f7-4035-9128-ea34557780ea img.shogun-image,
  #s-c463422d-57f7-4035-9128-ea34557780ea .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c463422d-57f7-4035-9128-ea34557780ea {
    width: 100%;
    height: auto;
  }

  #s-c463422d-57f7-4035-9128-ea34557780ea img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c463422d-57f7-4035-9128-ea34557780ea.shogun-image {
    
    
  }


.s-c463422d-57f7-4035-9128-ea34557780ea .shogun-image-content {
  
    align-items: center;
  
}

.s-c463422d-57f7-4035-9128-ea34557780ea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c463422d-57f7-4035-9128-ea34557780ea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c463422d-57f7-4035-9128-ea34557780ea.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c463422d-57f7-4035-9128-ea34557780ea {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c463422d-57f7-4035-9128-ea34557780ea.shogun-image-container {
      position: relative;
    }

    .s-c463422d-57f7-4035-9128-ea34557780ea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c463422d-57f7-4035-9128-ea34557780ea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c463422d-57f7-4035-9128-ea34557780ea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-c463422d-57f7-4035-9128-ea34557780ea img.shogun-image,
  #s-c463422d-57f7-4035-9128-ea34557780ea .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c463422d-57f7-4035-9128-ea34557780ea {
    width: 100%;
    height: auto;
  }

  #s-c463422d-57f7-4035-9128-ea34557780ea img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c463422d-57f7-4035-9128-ea34557780ea.shogun-image {
    
    
  }


.s-c463422d-57f7-4035-9128-ea34557780ea .shogun-image-content {
  
    align-items: center;
  
}

.s-c463422d-57f7-4035-9128-ea34557780ea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c463422d-57f7-4035-9128-ea34557780ea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c463422d-57f7-4035-9128-ea34557780ea.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c463422d-57f7-4035-9128-ea34557780ea {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c463422d-57f7-4035-9128-ea34557780ea.shogun-image-container {
      position: relative;
    }

    .s-c463422d-57f7-4035-9128-ea34557780ea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c463422d-57f7-4035-9128-ea34557780ea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c463422d-57f7-4035-9128-ea34557780ea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-c463422d-57f7-4035-9128-ea34557780ea img.shogun-image,
  #s-c463422d-57f7-4035-9128-ea34557780ea .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c463422d-57f7-4035-9128-ea34557780ea {
    width: 100%;
    height: auto;
  }

  #s-c463422d-57f7-4035-9128-ea34557780ea img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c463422d-57f7-4035-9128-ea34557780ea.shogun-image {
    
    
  }


.s-c463422d-57f7-4035-9128-ea34557780ea .shogun-image-content {
  
    align-items: center;
  
}

.s-c463422d-57f7-4035-9128-ea34557780ea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c463422d-57f7-4035-9128-ea34557780ea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c463422d-57f7-4035-9128-ea34557780ea.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c463422d-57f7-4035-9128-ea34557780ea {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c463422d-57f7-4035-9128-ea34557780ea.shogun-image-container {
      position: relative;
    }

    .s-c463422d-57f7-4035-9128-ea34557780ea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c463422d-57f7-4035-9128-ea34557780ea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c463422d-57f7-4035-9128-ea34557780ea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-c463422d-57f7-4035-9128-ea34557780ea img.shogun-image,
  #s-c463422d-57f7-4035-9128-ea34557780ea .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c463422d-57f7-4035-9128-ea34557780ea {
    width: 100%;
    height: auto;
  }

  #s-c463422d-57f7-4035-9128-ea34557780ea img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c463422d-57f7-4035-9128-ea34557780ea.shogun-image {
    
    
  }


.s-c463422d-57f7-4035-9128-ea34557780ea .shogun-image-content {
  
    align-items: center;
  
}

.s-c463422d-57f7-4035-9128-ea34557780ea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c463422d-57f7-4035-9128-ea34557780ea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c463422d-57f7-4035-9128-ea34557780ea.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c463422d-57f7-4035-9128-ea34557780ea {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c463422d-57f7-4035-9128-ea34557780ea.shogun-image-container {
      position: relative;
    }

    .s-c463422d-57f7-4035-9128-ea34557780ea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c463422d-57f7-4035-9128-ea34557780ea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c463422d-57f7-4035-9128-ea34557780ea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-fc4babc4-6aa2-499a-90b3-cb54bcf8c6e9 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-fc4babc4-6aa2-499a-90b3-cb54bcf8c6e9 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 38px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-482dabc6-cd8a-4d06-a73a-8fb876e74a11 {
  margin-top: 6%;
margin-left: 5%;
margin-bottom: 2%;
margin-right: 5%;
}

#s-5b7182b4-676d-4f34-a6cc-56aed9610ead {
  margin-top: 3%;
margin-left: 5%;
margin-bottom: 5%;
margin-right: 5%;
min-height: 50px;
}
@media (min-width: 1200px){#s-5b7182b4-676d-4f34-a6cc-56aed9610ead {
  display: none;
}
#s-5b7182b4-676d-4f34-a6cc-56aed9610ead, #wrap-s-5b7182b4-676d-4f34-a6cc-56aed9610ead { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5b7182b4-676d-4f34-a6cc-56aed9610ead {
  display: none;
}
#s-5b7182b4-676d-4f34-a6cc-56aed9610ead, #wrap-s-5b7182b4-676d-4f34-a6cc-56aed9610ead { display: none !important; }}







#s-5b7182b4-676d-4f34-a6cc-56aed9610ead > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5b7182b4-676d-4f34-a6cc-56aed9610ead.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2ad146d4-1d75-493b-bfa2-03a72c0821e4 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(13, calc(100vw / 24));
}

#s-3782d9b1-9543-49fe-87e9-766ea9179f62 {
  aspect-ratio: 12/12;
text-align: center;
}

#s-3782d9b1-9543-49fe-87e9-766ea9179f62-root {
  grid-column-start: 1;
grid-column-end: 13;
grid-row-start: 1;
grid-row-end: 13;
z-index: 0;
}





  #s-3782d9b1-9543-49fe-87e9-766ea9179f62 img.shogun-image,
  #s-3782d9b1-9543-49fe-87e9-766ea9179f62 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3782d9b1-9543-49fe-87e9-766ea9179f62 {
    width: 100%;
    height: auto;
  }

  #s-3782d9b1-9543-49fe-87e9-766ea9179f62 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3782d9b1-9543-49fe-87e9-766ea9179f62.shogun-image {
    
    
  }


.s-3782d9b1-9543-49fe-87e9-766ea9179f62 .shogun-image-content {
  
    align-items: center;
  
}

.s-3782d9b1-9543-49fe-87e9-766ea9179f62.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3782d9b1-9543-49fe-87e9-766ea9179f62.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3782d9b1-9543-49fe-87e9-766ea9179f62.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3782d9b1-9543-49fe-87e9-766ea9179f62 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-3782d9b1-9543-49fe-87e9-766ea9179f62.shogun-image-container {
      position: relative;
    }

    .s-3782d9b1-9543-49fe-87e9-766ea9179f62.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3782d9b1-9543-49fe-87e9-766ea9179f62.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3782d9b1-9543-49fe-87e9-766ea9179f62 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-3782d9b1-9543-49fe-87e9-766ea9179f62 img.shogun-image,
  #s-3782d9b1-9543-49fe-87e9-766ea9179f62 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3782d9b1-9543-49fe-87e9-766ea9179f62 {
    width: 100%;
    height: auto;
  }

  #s-3782d9b1-9543-49fe-87e9-766ea9179f62 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3782d9b1-9543-49fe-87e9-766ea9179f62.shogun-image {
    
    
  }


.s-3782d9b1-9543-49fe-87e9-766ea9179f62 .shogun-image-content {
  
    align-items: center;
  
}

.s-3782d9b1-9543-49fe-87e9-766ea9179f62.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3782d9b1-9543-49fe-87e9-766ea9179f62.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3782d9b1-9543-49fe-87e9-766ea9179f62.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3782d9b1-9543-49fe-87e9-766ea9179f62 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-3782d9b1-9543-49fe-87e9-766ea9179f62.shogun-image-container {
      position: relative;
    }

    .s-3782d9b1-9543-49fe-87e9-766ea9179f62.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3782d9b1-9543-49fe-87e9-766ea9179f62.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3782d9b1-9543-49fe-87e9-766ea9179f62 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-3782d9b1-9543-49fe-87e9-766ea9179f62 img.shogun-image,
  #s-3782d9b1-9543-49fe-87e9-766ea9179f62 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3782d9b1-9543-49fe-87e9-766ea9179f62 {
    width: 100%;
    height: auto;
  }

  #s-3782d9b1-9543-49fe-87e9-766ea9179f62 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3782d9b1-9543-49fe-87e9-766ea9179f62.shogun-image {
    
    
  }


.s-3782d9b1-9543-49fe-87e9-766ea9179f62 .shogun-image-content {
  
    align-items: center;
  
}

.s-3782d9b1-9543-49fe-87e9-766ea9179f62.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3782d9b1-9543-49fe-87e9-766ea9179f62.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3782d9b1-9543-49fe-87e9-766ea9179f62.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3782d9b1-9543-49fe-87e9-766ea9179f62 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-3782d9b1-9543-49fe-87e9-766ea9179f62.shogun-image-container {
      position: relative;
    }

    .s-3782d9b1-9543-49fe-87e9-766ea9179f62.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3782d9b1-9543-49fe-87e9-766ea9179f62.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3782d9b1-9543-49fe-87e9-766ea9179f62 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-3782d9b1-9543-49fe-87e9-766ea9179f62 img.shogun-image,
  #s-3782d9b1-9543-49fe-87e9-766ea9179f62 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3782d9b1-9543-49fe-87e9-766ea9179f62 {
    width: 100%;
    height: auto;
  }

  #s-3782d9b1-9543-49fe-87e9-766ea9179f62 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3782d9b1-9543-49fe-87e9-766ea9179f62.shogun-image {
    
    
  }


.s-3782d9b1-9543-49fe-87e9-766ea9179f62 .shogun-image-content {
  
    align-items: center;
  
}

.s-3782d9b1-9543-49fe-87e9-766ea9179f62.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3782d9b1-9543-49fe-87e9-766ea9179f62.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3782d9b1-9543-49fe-87e9-766ea9179f62.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3782d9b1-9543-49fe-87e9-766ea9179f62 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-3782d9b1-9543-49fe-87e9-766ea9179f62.shogun-image-container {
      position: relative;
    }

    .s-3782d9b1-9543-49fe-87e9-766ea9179f62.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3782d9b1-9543-49fe-87e9-766ea9179f62.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3782d9b1-9543-49fe-87e9-766ea9179f62 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-3782d9b1-9543-49fe-87e9-766ea9179f62 img.shogun-image,
  #s-3782d9b1-9543-49fe-87e9-766ea9179f62 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3782d9b1-9543-49fe-87e9-766ea9179f62 {
    width: 100%;
    height: auto;
  }

  #s-3782d9b1-9543-49fe-87e9-766ea9179f62 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3782d9b1-9543-49fe-87e9-766ea9179f62.shogun-image {
    
    
  }


.s-3782d9b1-9543-49fe-87e9-766ea9179f62 .shogun-image-content {
  
    align-items: center;
  
}

.s-3782d9b1-9543-49fe-87e9-766ea9179f62.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3782d9b1-9543-49fe-87e9-766ea9179f62.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3782d9b1-9543-49fe-87e9-766ea9179f62.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3782d9b1-9543-49fe-87e9-766ea9179f62 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-3782d9b1-9543-49fe-87e9-766ea9179f62.shogun-image-container {
      position: relative;
    }

    .s-3782d9b1-9543-49fe-87e9-766ea9179f62.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3782d9b1-9543-49fe-87e9-766ea9179f62.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3782d9b1-9543-49fe-87e9-766ea9179f62 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e {
  aspect-ratio: 12/12;
text-align: center;
}

#s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e-root {
  grid-column-start: 12;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 14;
z-index: 1;
}





  #s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e img.shogun-image,
  #s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e {
    width: 100%;
    height: auto;
  }

  #s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e.shogun-image {
    
    
  }


.s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e .shogun-image-content {
  
    align-items: center;
  
}

.s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e.shogun-image-container {
      position: relative;
    }

    .s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e img.shogun-image,
  #s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e {
    width: 100%;
    height: auto;
  }

  #s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e.shogun-image {
    
    
  }


.s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e .shogun-image-content {
  
    align-items: center;
  
}

.s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e.shogun-image-container {
      position: relative;
    }

    .s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e img.shogun-image,
  #s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e {
    width: 100%;
    height: auto;
  }

  #s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e.shogun-image {
    
    
  }


.s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e .shogun-image-content {
  
    align-items: center;
  
}

.s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e.shogun-image-container {
      position: relative;
    }

    .s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e img.shogun-image,
  #s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e {
    width: 100%;
    height: auto;
  }

  #s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e.shogun-image {
    
    
  }


.s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e .shogun-image-content {
  
    align-items: center;
  
}

.s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e.shogun-image-container {
      position: relative;
    }

    .s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e img.shogun-image,
  #s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e {
    width: 100%;
    height: auto;
  }

  #s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e.shogun-image {
    
    
  }


.s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e .shogun-image-content {
  
    align-items: center;
  
}

.s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e.shogun-image-container {
      position: relative;
    }

    .s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-38621e01-df89-4f2a-ad3d-5c91d5b35d8e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-ac8acfab-cc4b-4449-b057-d7de9217581c {
  margin-top: -1%;
margin-bottom: 0%;
}

#s-ac8acfab-cc4b-4449-b057-d7de9217581c .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(5, calc(100vw / 24));
}

#s-a03ae860-ed8a-47e7-8526-ce40f3c4449d {
  margin-left: 0%;
margin-right: 20%;
text-align: center;
}

#s-a03ae860-ed8a-47e7-8526-ce40f3c4449d-root {
  grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 2;
grid-row-end: 6;
z-index: 0;
}







  img.s-a03ae860-ed8a-47e7-8526-ce40f3c4449d.shogun-image {
    
    
  }


.s-a03ae860-ed8a-47e7-8526-ce40f3c4449d .shogun-image-content {
  
    align-items: center;
  
}

.s-a03ae860-ed8a-47e7-8526-ce40f3c4449d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a03ae860-ed8a-47e7-8526-ce40f3c4449d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a03ae860-ed8a-47e7-8526-ce40f3c4449d.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-a03ae860-ed8a-47e7-8526-ce40f3c4449d.shogun-image {
    
    
  }


.s-a03ae860-ed8a-47e7-8526-ce40f3c4449d .shogun-image-content {
  
    align-items: center;
  
}

.s-a03ae860-ed8a-47e7-8526-ce40f3c4449d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a03ae860-ed8a-47e7-8526-ce40f3c4449d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a03ae860-ed8a-47e7-8526-ce40f3c4449d.shogun-image {
  box-sizing: border-box;
}



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





  img.s-a03ae860-ed8a-47e7-8526-ce40f3c4449d.shogun-image {
    
    
  }


.s-a03ae860-ed8a-47e7-8526-ce40f3c4449d .shogun-image-content {
  
    align-items: center;
  
}

.s-a03ae860-ed8a-47e7-8526-ce40f3c4449d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a03ae860-ed8a-47e7-8526-ce40f3c4449d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a03ae860-ed8a-47e7-8526-ce40f3c4449d.shogun-image {
  box-sizing: border-box;
}



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





  img.s-a03ae860-ed8a-47e7-8526-ce40f3c4449d.shogun-image {
    
    
  }


.s-a03ae860-ed8a-47e7-8526-ce40f3c4449d .shogun-image-content {
  
    align-items: center;
  
}

.s-a03ae860-ed8a-47e7-8526-ce40f3c4449d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a03ae860-ed8a-47e7-8526-ce40f3c4449d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a03ae860-ed8a-47e7-8526-ce40f3c4449d.shogun-image {
  box-sizing: border-box;
}



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





  img.s-a03ae860-ed8a-47e7-8526-ce40f3c4449d.shogun-image {
    
    
  }


.s-a03ae860-ed8a-47e7-8526-ce40f3c4449d .shogun-image-content {
  
    align-items: center;
  
}

.s-a03ae860-ed8a-47e7-8526-ce40f3c4449d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a03ae860-ed8a-47e7-8526-ce40f3c4449d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a03ae860-ed8a-47e7-8526-ce40f3c4449d.shogun-image {
  box-sizing: border-box;
}



}
#s-4277390b-2381-46d7-9075-44108497043c {
  margin-top: 6%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4277390b-2381-46d7-9075-44108497043c {
  grid-column-start: 6;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 6;
z-index: 1;
}

#s-4277390b-2381-46d7-9075-44108497043c .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 1px;
  text-align: left;
}



#s-7ef2bbb4-e03e-442c-bad5-03890fa737a3 {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-15e68141-65cb-4b48-93da-59f467e99923 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-15e68141-65cb-4b48-93da-59f467e99923 img.shogun-image,
  #s-15e68141-65cb-4b48-93da-59f467e99923 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-15e68141-65cb-4b48-93da-59f467e99923 {
    width: 100%;
    height: auto;
  }

  #s-15e68141-65cb-4b48-93da-59f467e99923 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-15e68141-65cb-4b48-93da-59f467e99923.shogun-image {
    
    
  }


.s-15e68141-65cb-4b48-93da-59f467e99923 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-15e68141-65cb-4b48-93da-59f467e99923.shg-align-container {
  display: flex;
  justify-content: center
}

.s-15e68141-65cb-4b48-93da-59f467e99923.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15e68141-65cb-4b48-93da-59f467e99923.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-15e68141-65cb-4b48-93da-59f467e99923 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-15e68141-65cb-4b48-93da-59f467e99923.shogun-image-container {
      position: relative;
    }

    .s-15e68141-65cb-4b48-93da-59f467e99923.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-15e68141-65cb-4b48-93da-59f467e99923.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-15e68141-65cb-4b48-93da-59f467e99923 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-15e68141-65cb-4b48-93da-59f467e99923 img.shogun-image,
  #s-15e68141-65cb-4b48-93da-59f467e99923 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-15e68141-65cb-4b48-93da-59f467e99923 {
    width: 100%;
    height: auto;
  }

  #s-15e68141-65cb-4b48-93da-59f467e99923 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-15e68141-65cb-4b48-93da-59f467e99923.shogun-image {
    
    
  }


.s-15e68141-65cb-4b48-93da-59f467e99923 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-15e68141-65cb-4b48-93da-59f467e99923.shg-align-container {
  display: flex;
  justify-content: center
}

.s-15e68141-65cb-4b48-93da-59f467e99923.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15e68141-65cb-4b48-93da-59f467e99923.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-15e68141-65cb-4b48-93da-59f467e99923 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-15e68141-65cb-4b48-93da-59f467e99923.shogun-image-container {
      position: relative;
    }

    .s-15e68141-65cb-4b48-93da-59f467e99923.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-15e68141-65cb-4b48-93da-59f467e99923.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-15e68141-65cb-4b48-93da-59f467e99923 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-15e68141-65cb-4b48-93da-59f467e99923 img.shogun-image,
  #s-15e68141-65cb-4b48-93da-59f467e99923 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-15e68141-65cb-4b48-93da-59f467e99923 {
    width: 100%;
    height: auto;
  }

  #s-15e68141-65cb-4b48-93da-59f467e99923 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-15e68141-65cb-4b48-93da-59f467e99923.shogun-image {
    
    
  }


.s-15e68141-65cb-4b48-93da-59f467e99923 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-15e68141-65cb-4b48-93da-59f467e99923.shg-align-container {
  display: flex;
  justify-content: center
}

.s-15e68141-65cb-4b48-93da-59f467e99923.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15e68141-65cb-4b48-93da-59f467e99923.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-15e68141-65cb-4b48-93da-59f467e99923 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-15e68141-65cb-4b48-93da-59f467e99923.shogun-image-container {
      position: relative;
    }

    .s-15e68141-65cb-4b48-93da-59f467e99923.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-15e68141-65cb-4b48-93da-59f467e99923.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-15e68141-65cb-4b48-93da-59f467e99923 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-15e68141-65cb-4b48-93da-59f467e99923 img.shogun-image,
  #s-15e68141-65cb-4b48-93da-59f467e99923 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-15e68141-65cb-4b48-93da-59f467e99923 {
    width: 100%;
    height: auto;
  }

  #s-15e68141-65cb-4b48-93da-59f467e99923 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-15e68141-65cb-4b48-93da-59f467e99923.shogun-image {
    
    
  }


.s-15e68141-65cb-4b48-93da-59f467e99923 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-15e68141-65cb-4b48-93da-59f467e99923.shg-align-container {
  display: flex;
  justify-content: center
}

.s-15e68141-65cb-4b48-93da-59f467e99923.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15e68141-65cb-4b48-93da-59f467e99923.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-15e68141-65cb-4b48-93da-59f467e99923 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-15e68141-65cb-4b48-93da-59f467e99923.shogun-image-container {
      position: relative;
    }

    .s-15e68141-65cb-4b48-93da-59f467e99923.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-15e68141-65cb-4b48-93da-59f467e99923.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-15e68141-65cb-4b48-93da-59f467e99923 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-15e68141-65cb-4b48-93da-59f467e99923 img.shogun-image,
  #s-15e68141-65cb-4b48-93da-59f467e99923 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-15e68141-65cb-4b48-93da-59f467e99923 {
    width: 100%;
    height: auto;
  }

  #s-15e68141-65cb-4b48-93da-59f467e99923 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-15e68141-65cb-4b48-93da-59f467e99923.shogun-image {
    
    
  }


.s-15e68141-65cb-4b48-93da-59f467e99923 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-15e68141-65cb-4b48-93da-59f467e99923.shg-align-container {
  display: flex;
  justify-content: center
}

.s-15e68141-65cb-4b48-93da-59f467e99923.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15e68141-65cb-4b48-93da-59f467e99923.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-15e68141-65cb-4b48-93da-59f467e99923 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-15e68141-65cb-4b48-93da-59f467e99923.shogun-image-container {
      position: relative;
    }

    .s-15e68141-65cb-4b48-93da-59f467e99923.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-15e68141-65cb-4b48-93da-59f467e99923.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-15e68141-65cb-4b48-93da-59f467e99923 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-3375ff48-0b3a-417e-8da7-9c9fd899cbfd {
  margin-top: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3375ff48-0b3a-417e-8da7-9c9fd899cbfd .shogun-heading-component h5 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-3dd147b7-cd9c-49df-a2f1-1b15048d7c09 {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-3dd147b7-cd9c-49df-a2f1-1b15048d7c09 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3dd147b7-cd9c-49df-a2f1-1b15048d7c09.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bfbfa02f-2700-44a2-9b05-1f90595572aa {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: rgba(29, 29, 29, 0);
border-radius: 3px;
max-width: 100%;
background-color: rgba(29, 29, 29, 0.9);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-bfbfa02f-2700-44a2-9b05-1f90595572aa:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 0) !important;
background-color: rgba(74, 74, 74, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-bfbfa02f-2700-44a2-9b05-1f90595572aa:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(155, 155, 155, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-bfbfa02f-2700-44a2-9b05-1f90595572aa-root {
    text-align: center;
  }


#s-bfbfa02f-2700-44a2-9b05-1f90595572aa.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-bfbfa02f-2700-44a2-9b05-1f90595572aa-root {
    text-align: center;
  }


#s-bfbfa02f-2700-44a2-9b05-1f90595572aa.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-bfbfa02f-2700-44a2-9b05-1f90595572aa-root {
    text-align: center;
  }


#s-bfbfa02f-2700-44a2-9b05-1f90595572aa.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-bfbfa02f-2700-44a2-9b05-1f90595572aa-root {
    text-align: center;
  }


#s-bfbfa02f-2700-44a2-9b05-1f90595572aa.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-bfbfa02f-2700-44a2-9b05-1f90595572aa-root {
    text-align: center;
  }


#s-bfbfa02f-2700-44a2-9b05-1f90595572aa.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-bfbfa02f-2700-44a2-9b05-1f90595572aa-root {
    text-align: center;
  }


#s-bfbfa02f-2700-44a2-9b05-1f90595572aa.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-026f33e5-f950-4b3f-87b2-5c497dc5386a {
  margin-top: 13%;
margin-bottom: 0%;
}

#s-026f33e5-f950-4b3f-87b2-5c497dc5386a .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(14, calc(100vw / 24));
}

#s-fd106abb-5402-4845-a9a6-14ffe6e31cbd {
  aspect-ratio: 13/13;
text-align: center;
}

#s-fd106abb-5402-4845-a9a6-14ffe6e31cbd-root {
  grid-column-start: 1;
grid-column-end: 14;
grid-row-start: 1;
grid-row-end: 14;
z-index: 0;
}





  #s-fd106abb-5402-4845-a9a6-14ffe6e31cbd img.shogun-image,
  #s-fd106abb-5402-4845-a9a6-14ffe6e31cbd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fd106abb-5402-4845-a9a6-14ffe6e31cbd {
    width: 100%;
    height: auto;
  }

  #s-fd106abb-5402-4845-a9a6-14ffe6e31cbd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fd106abb-5402-4845-a9a6-14ffe6e31cbd.shogun-image {
    
    
  }


.s-fd106abb-5402-4845-a9a6-14ffe6e31cbd .shogun-image-content {
  
    align-items: center;
  
}

.s-fd106abb-5402-4845-a9a6-14ffe6e31cbd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd106abb-5402-4845-a9a6-14ffe6e31cbd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd106abb-5402-4845-a9a6-14ffe6e31cbd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fd106abb-5402-4845-a9a6-14ffe6e31cbd {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-fd106abb-5402-4845-a9a6-14ffe6e31cbd.shogun-image-container {
      position: relative;
    }

    .s-fd106abb-5402-4845-a9a6-14ffe6e31cbd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd106abb-5402-4845-a9a6-14ffe6e31cbd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd106abb-5402-4845-a9a6-14ffe6e31cbd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-fd106abb-5402-4845-a9a6-14ffe6e31cbd img.shogun-image,
  #s-fd106abb-5402-4845-a9a6-14ffe6e31cbd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fd106abb-5402-4845-a9a6-14ffe6e31cbd {
    width: 100%;
    height: auto;
  }

  #s-fd106abb-5402-4845-a9a6-14ffe6e31cbd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fd106abb-5402-4845-a9a6-14ffe6e31cbd.shogun-image {
    
    
  }


.s-fd106abb-5402-4845-a9a6-14ffe6e31cbd .shogun-image-content {
  
    align-items: center;
  
}

.s-fd106abb-5402-4845-a9a6-14ffe6e31cbd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd106abb-5402-4845-a9a6-14ffe6e31cbd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd106abb-5402-4845-a9a6-14ffe6e31cbd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fd106abb-5402-4845-a9a6-14ffe6e31cbd {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-fd106abb-5402-4845-a9a6-14ffe6e31cbd.shogun-image-container {
      position: relative;
    }

    .s-fd106abb-5402-4845-a9a6-14ffe6e31cbd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd106abb-5402-4845-a9a6-14ffe6e31cbd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd106abb-5402-4845-a9a6-14ffe6e31cbd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-fd106abb-5402-4845-a9a6-14ffe6e31cbd img.shogun-image,
  #s-fd106abb-5402-4845-a9a6-14ffe6e31cbd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fd106abb-5402-4845-a9a6-14ffe6e31cbd {
    width: 100%;
    height: auto;
  }

  #s-fd106abb-5402-4845-a9a6-14ffe6e31cbd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fd106abb-5402-4845-a9a6-14ffe6e31cbd.shogun-image {
    
    
  }


.s-fd106abb-5402-4845-a9a6-14ffe6e31cbd .shogun-image-content {
  
    align-items: center;
  
}

.s-fd106abb-5402-4845-a9a6-14ffe6e31cbd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd106abb-5402-4845-a9a6-14ffe6e31cbd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd106abb-5402-4845-a9a6-14ffe6e31cbd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fd106abb-5402-4845-a9a6-14ffe6e31cbd {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-fd106abb-5402-4845-a9a6-14ffe6e31cbd.shogun-image-container {
      position: relative;
    }

    .s-fd106abb-5402-4845-a9a6-14ffe6e31cbd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd106abb-5402-4845-a9a6-14ffe6e31cbd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd106abb-5402-4845-a9a6-14ffe6e31cbd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-fd106abb-5402-4845-a9a6-14ffe6e31cbd img.shogun-image,
  #s-fd106abb-5402-4845-a9a6-14ffe6e31cbd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fd106abb-5402-4845-a9a6-14ffe6e31cbd {
    width: 100%;
    height: auto;
  }

  #s-fd106abb-5402-4845-a9a6-14ffe6e31cbd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fd106abb-5402-4845-a9a6-14ffe6e31cbd.shogun-image {
    
    
  }


.s-fd106abb-5402-4845-a9a6-14ffe6e31cbd .shogun-image-content {
  
    align-items: center;
  
}

.s-fd106abb-5402-4845-a9a6-14ffe6e31cbd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd106abb-5402-4845-a9a6-14ffe6e31cbd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd106abb-5402-4845-a9a6-14ffe6e31cbd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fd106abb-5402-4845-a9a6-14ffe6e31cbd {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-fd106abb-5402-4845-a9a6-14ffe6e31cbd.shogun-image-container {
      position: relative;
    }

    .s-fd106abb-5402-4845-a9a6-14ffe6e31cbd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd106abb-5402-4845-a9a6-14ffe6e31cbd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd106abb-5402-4845-a9a6-14ffe6e31cbd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-fd106abb-5402-4845-a9a6-14ffe6e31cbd img.shogun-image,
  #s-fd106abb-5402-4845-a9a6-14ffe6e31cbd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fd106abb-5402-4845-a9a6-14ffe6e31cbd {
    width: 100%;
    height: auto;
  }

  #s-fd106abb-5402-4845-a9a6-14ffe6e31cbd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fd106abb-5402-4845-a9a6-14ffe6e31cbd.shogun-image {
    
    
  }


.s-fd106abb-5402-4845-a9a6-14ffe6e31cbd .shogun-image-content {
  
    align-items: center;
  
}

.s-fd106abb-5402-4845-a9a6-14ffe6e31cbd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd106abb-5402-4845-a9a6-14ffe6e31cbd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd106abb-5402-4845-a9a6-14ffe6e31cbd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fd106abb-5402-4845-a9a6-14ffe6e31cbd {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-fd106abb-5402-4845-a9a6-14ffe6e31cbd.shogun-image-container {
      position: relative;
    }

    .s-fd106abb-5402-4845-a9a6-14ffe6e31cbd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd106abb-5402-4845-a9a6-14ffe6e31cbd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd106abb-5402-4845-a9a6-14ffe6e31cbd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-89bc5902-824d-43ed-9f0d-e880080f7786 {
  aspect-ratio: 12/12;
text-align: center;
}

#s-89bc5902-824d-43ed-9f0d-e880080f7786-root {
  grid-column-start: 13;
grid-column-end: 25;
grid-row-start: 3;
grid-row-end: 15;
z-index: 1;
}





  #s-89bc5902-824d-43ed-9f0d-e880080f7786 img.shogun-image,
  #s-89bc5902-824d-43ed-9f0d-e880080f7786 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-89bc5902-824d-43ed-9f0d-e880080f7786 {
    width: 100%;
    height: auto;
  }

  #s-89bc5902-824d-43ed-9f0d-e880080f7786 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-89bc5902-824d-43ed-9f0d-e880080f7786.shogun-image {
    
    
  }


.s-89bc5902-824d-43ed-9f0d-e880080f7786 .shogun-image-content {
  
    align-items: center;
  
}

.s-89bc5902-824d-43ed-9f0d-e880080f7786.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89bc5902-824d-43ed-9f0d-e880080f7786.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89bc5902-824d-43ed-9f0d-e880080f7786.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-89bc5902-824d-43ed-9f0d-e880080f7786 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-89bc5902-824d-43ed-9f0d-e880080f7786.shogun-image-container {
      position: relative;
    }

    .s-89bc5902-824d-43ed-9f0d-e880080f7786.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-89bc5902-824d-43ed-9f0d-e880080f7786.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-89bc5902-824d-43ed-9f0d-e880080f7786 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-89bc5902-824d-43ed-9f0d-e880080f7786 img.shogun-image,
  #s-89bc5902-824d-43ed-9f0d-e880080f7786 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-89bc5902-824d-43ed-9f0d-e880080f7786 {
    width: 100%;
    height: auto;
  }

  #s-89bc5902-824d-43ed-9f0d-e880080f7786 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-89bc5902-824d-43ed-9f0d-e880080f7786.shogun-image {
    
    
  }


.s-89bc5902-824d-43ed-9f0d-e880080f7786 .shogun-image-content {
  
    align-items: center;
  
}

.s-89bc5902-824d-43ed-9f0d-e880080f7786.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89bc5902-824d-43ed-9f0d-e880080f7786.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89bc5902-824d-43ed-9f0d-e880080f7786.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-89bc5902-824d-43ed-9f0d-e880080f7786 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-89bc5902-824d-43ed-9f0d-e880080f7786.shogun-image-container {
      position: relative;
    }

    .s-89bc5902-824d-43ed-9f0d-e880080f7786.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-89bc5902-824d-43ed-9f0d-e880080f7786.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-89bc5902-824d-43ed-9f0d-e880080f7786 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-89bc5902-824d-43ed-9f0d-e880080f7786 img.shogun-image,
  #s-89bc5902-824d-43ed-9f0d-e880080f7786 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-89bc5902-824d-43ed-9f0d-e880080f7786 {
    width: 100%;
    height: auto;
  }

  #s-89bc5902-824d-43ed-9f0d-e880080f7786 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-89bc5902-824d-43ed-9f0d-e880080f7786.shogun-image {
    
    
  }


.s-89bc5902-824d-43ed-9f0d-e880080f7786 .shogun-image-content {
  
    align-items: center;
  
}

.s-89bc5902-824d-43ed-9f0d-e880080f7786.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89bc5902-824d-43ed-9f0d-e880080f7786.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89bc5902-824d-43ed-9f0d-e880080f7786.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-89bc5902-824d-43ed-9f0d-e880080f7786 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-89bc5902-824d-43ed-9f0d-e880080f7786.shogun-image-container {
      position: relative;
    }

    .s-89bc5902-824d-43ed-9f0d-e880080f7786.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-89bc5902-824d-43ed-9f0d-e880080f7786.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-89bc5902-824d-43ed-9f0d-e880080f7786 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-89bc5902-824d-43ed-9f0d-e880080f7786 img.shogun-image,
  #s-89bc5902-824d-43ed-9f0d-e880080f7786 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-89bc5902-824d-43ed-9f0d-e880080f7786 {
    width: 100%;
    height: auto;
  }

  #s-89bc5902-824d-43ed-9f0d-e880080f7786 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-89bc5902-824d-43ed-9f0d-e880080f7786.shogun-image {
    
    
  }


.s-89bc5902-824d-43ed-9f0d-e880080f7786 .shogun-image-content {
  
    align-items: center;
  
}

.s-89bc5902-824d-43ed-9f0d-e880080f7786.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89bc5902-824d-43ed-9f0d-e880080f7786.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89bc5902-824d-43ed-9f0d-e880080f7786.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-89bc5902-824d-43ed-9f0d-e880080f7786 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-89bc5902-824d-43ed-9f0d-e880080f7786.shogun-image-container {
      position: relative;
    }

    .s-89bc5902-824d-43ed-9f0d-e880080f7786.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-89bc5902-824d-43ed-9f0d-e880080f7786.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-89bc5902-824d-43ed-9f0d-e880080f7786 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-89bc5902-824d-43ed-9f0d-e880080f7786 img.shogun-image,
  #s-89bc5902-824d-43ed-9f0d-e880080f7786 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-89bc5902-824d-43ed-9f0d-e880080f7786 {
    width: 100%;
    height: auto;
  }

  #s-89bc5902-824d-43ed-9f0d-e880080f7786 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-89bc5902-824d-43ed-9f0d-e880080f7786.shogun-image {
    
    
  }


.s-89bc5902-824d-43ed-9f0d-e880080f7786 .shogun-image-content {
  
    align-items: center;
  
}

.s-89bc5902-824d-43ed-9f0d-e880080f7786.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89bc5902-824d-43ed-9f0d-e880080f7786.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89bc5902-824d-43ed-9f0d-e880080f7786.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-89bc5902-824d-43ed-9f0d-e880080f7786 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-89bc5902-824d-43ed-9f0d-e880080f7786.shogun-image-container {
      position: relative;
    }

    .s-89bc5902-824d-43ed-9f0d-e880080f7786.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-89bc5902-824d-43ed-9f0d-e880080f7786.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-89bc5902-824d-43ed-9f0d-e880080f7786 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-913b6b87-8ff3-42cf-be87-f7b44f5386a5 {
  margin-top: -1%;
}

#s-913b6b87-8ff3-42cf-be87-f7b44f5386a5 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(5, calc(100vw / 24));
}

#s-af0d2a08-d1ee-4f63-8f7a-506cbc166146 {
  margin-left: 0%;
margin-right: 20%;
text-align: center;
}

#s-af0d2a08-d1ee-4f63-8f7a-506cbc166146-root {
  grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 2;
grid-row-end: 6;
z-index: 0;
}







  img.s-af0d2a08-d1ee-4f63-8f7a-506cbc166146.shogun-image {
    
    
  }


.s-af0d2a08-d1ee-4f63-8f7a-506cbc166146 .shogun-image-content {
  
    align-items: center;
  
}

.s-af0d2a08-d1ee-4f63-8f7a-506cbc166146.shg-align-container {
  display: flex;
  justify-content: center
}

.s-af0d2a08-d1ee-4f63-8f7a-506cbc166146.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af0d2a08-d1ee-4f63-8f7a-506cbc166146.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-af0d2a08-d1ee-4f63-8f7a-506cbc166146.shogun-image {
    
    
  }


.s-af0d2a08-d1ee-4f63-8f7a-506cbc166146 .shogun-image-content {
  
    align-items: center;
  
}

.s-af0d2a08-d1ee-4f63-8f7a-506cbc166146.shg-align-container {
  display: flex;
  justify-content: center
}

.s-af0d2a08-d1ee-4f63-8f7a-506cbc166146.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af0d2a08-d1ee-4f63-8f7a-506cbc166146.shogun-image {
  box-sizing: border-box;
}



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





  img.s-af0d2a08-d1ee-4f63-8f7a-506cbc166146.shogun-image {
    
    
  }


.s-af0d2a08-d1ee-4f63-8f7a-506cbc166146 .shogun-image-content {
  
    align-items: center;
  
}

.s-af0d2a08-d1ee-4f63-8f7a-506cbc166146.shg-align-container {
  display: flex;
  justify-content: center
}

.s-af0d2a08-d1ee-4f63-8f7a-506cbc166146.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af0d2a08-d1ee-4f63-8f7a-506cbc166146.shogun-image {
  box-sizing: border-box;
}



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





  img.s-af0d2a08-d1ee-4f63-8f7a-506cbc166146.shogun-image {
    
    
  }


.s-af0d2a08-d1ee-4f63-8f7a-506cbc166146 .shogun-image-content {
  
    align-items: center;
  
}

.s-af0d2a08-d1ee-4f63-8f7a-506cbc166146.shg-align-container {
  display: flex;
  justify-content: center
}

.s-af0d2a08-d1ee-4f63-8f7a-506cbc166146.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af0d2a08-d1ee-4f63-8f7a-506cbc166146.shogun-image {
  box-sizing: border-box;
}



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





  img.s-af0d2a08-d1ee-4f63-8f7a-506cbc166146.shogun-image {
    
    
  }


.s-af0d2a08-d1ee-4f63-8f7a-506cbc166146 .shogun-image-content {
  
    align-items: center;
  
}

.s-af0d2a08-d1ee-4f63-8f7a-506cbc166146.shg-align-container {
  display: flex;
  justify-content: center
}

.s-af0d2a08-d1ee-4f63-8f7a-506cbc166146.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af0d2a08-d1ee-4f63-8f7a-506cbc166146.shogun-image {
  box-sizing: border-box;
}



}
#s-48fb9c18-2588-431e-87f8-c886c9d9bc4c {
  margin-top: 1%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-48fb9c18-2588-431e-87f8-c886c9d9bc4c {
  grid-column-start: 6;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 6;
z-index: 1;
}

#s-48fb9c18-2588-431e-87f8-c886c9d9bc4c .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-ab67547b-17b8-4f77-8fbe-5618590a4754 {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-35233eff-26c5-4d20-9920-8a394720b715 {
  text-align: left;
}

#s-ba0bfbe3-84a5-4c1d-9adf-a74109e514e8 {
  margin-top: 13%;
}

#s-ba0bfbe3-84a5-4c1d-9adf-a74109e514e8 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(14, calc(100vw / 24));
}

#s-2e504e03-380d-4561-bc6b-617ce01887fd {
  aspect-ratio: 11/11;
text-align: center;
}

#s-2e504e03-380d-4561-bc6b-617ce01887fd-root {
  grid-column-start: 1;
grid-column-end: 12;
grid-row-start: 3;
grid-row-end: 14;
z-index: 0;
}





  #s-2e504e03-380d-4561-bc6b-617ce01887fd img.shogun-image,
  #s-2e504e03-380d-4561-bc6b-617ce01887fd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2e504e03-380d-4561-bc6b-617ce01887fd {
    width: 100%;
    height: auto;
  }

  #s-2e504e03-380d-4561-bc6b-617ce01887fd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2e504e03-380d-4561-bc6b-617ce01887fd.shogun-image {
    
    
  }


.s-2e504e03-380d-4561-bc6b-617ce01887fd .shogun-image-content {
  
    align-items: center;
  
}

.s-2e504e03-380d-4561-bc6b-617ce01887fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e504e03-380d-4561-bc6b-617ce01887fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e504e03-380d-4561-bc6b-617ce01887fd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2e504e03-380d-4561-bc6b-617ce01887fd {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-2e504e03-380d-4561-bc6b-617ce01887fd.shogun-image-container {
      position: relative;
    }

    .s-2e504e03-380d-4561-bc6b-617ce01887fd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2e504e03-380d-4561-bc6b-617ce01887fd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2e504e03-380d-4561-bc6b-617ce01887fd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-2e504e03-380d-4561-bc6b-617ce01887fd img.shogun-image,
  #s-2e504e03-380d-4561-bc6b-617ce01887fd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2e504e03-380d-4561-bc6b-617ce01887fd {
    width: 100%;
    height: auto;
  }

  #s-2e504e03-380d-4561-bc6b-617ce01887fd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2e504e03-380d-4561-bc6b-617ce01887fd.shogun-image {
    
    
  }


.s-2e504e03-380d-4561-bc6b-617ce01887fd .shogun-image-content {
  
    align-items: center;
  
}

.s-2e504e03-380d-4561-bc6b-617ce01887fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e504e03-380d-4561-bc6b-617ce01887fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e504e03-380d-4561-bc6b-617ce01887fd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2e504e03-380d-4561-bc6b-617ce01887fd {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-2e504e03-380d-4561-bc6b-617ce01887fd.shogun-image-container {
      position: relative;
    }

    .s-2e504e03-380d-4561-bc6b-617ce01887fd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2e504e03-380d-4561-bc6b-617ce01887fd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2e504e03-380d-4561-bc6b-617ce01887fd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-2e504e03-380d-4561-bc6b-617ce01887fd img.shogun-image,
  #s-2e504e03-380d-4561-bc6b-617ce01887fd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2e504e03-380d-4561-bc6b-617ce01887fd {
    width: 100%;
    height: auto;
  }

  #s-2e504e03-380d-4561-bc6b-617ce01887fd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2e504e03-380d-4561-bc6b-617ce01887fd.shogun-image {
    
    
  }


.s-2e504e03-380d-4561-bc6b-617ce01887fd .shogun-image-content {
  
    align-items: center;
  
}

.s-2e504e03-380d-4561-bc6b-617ce01887fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e504e03-380d-4561-bc6b-617ce01887fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e504e03-380d-4561-bc6b-617ce01887fd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2e504e03-380d-4561-bc6b-617ce01887fd {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-2e504e03-380d-4561-bc6b-617ce01887fd.shogun-image-container {
      position: relative;
    }

    .s-2e504e03-380d-4561-bc6b-617ce01887fd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2e504e03-380d-4561-bc6b-617ce01887fd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2e504e03-380d-4561-bc6b-617ce01887fd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-2e504e03-380d-4561-bc6b-617ce01887fd img.shogun-image,
  #s-2e504e03-380d-4561-bc6b-617ce01887fd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2e504e03-380d-4561-bc6b-617ce01887fd {
    width: 100%;
    height: auto;
  }

  #s-2e504e03-380d-4561-bc6b-617ce01887fd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2e504e03-380d-4561-bc6b-617ce01887fd.shogun-image {
    
    
  }


.s-2e504e03-380d-4561-bc6b-617ce01887fd .shogun-image-content {
  
    align-items: center;
  
}

.s-2e504e03-380d-4561-bc6b-617ce01887fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e504e03-380d-4561-bc6b-617ce01887fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e504e03-380d-4561-bc6b-617ce01887fd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2e504e03-380d-4561-bc6b-617ce01887fd {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-2e504e03-380d-4561-bc6b-617ce01887fd.shogun-image-container {
      position: relative;
    }

    .s-2e504e03-380d-4561-bc6b-617ce01887fd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2e504e03-380d-4561-bc6b-617ce01887fd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2e504e03-380d-4561-bc6b-617ce01887fd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-2e504e03-380d-4561-bc6b-617ce01887fd img.shogun-image,
  #s-2e504e03-380d-4561-bc6b-617ce01887fd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2e504e03-380d-4561-bc6b-617ce01887fd {
    width: 100%;
    height: auto;
  }

  #s-2e504e03-380d-4561-bc6b-617ce01887fd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2e504e03-380d-4561-bc6b-617ce01887fd.shogun-image {
    
    
  }


.s-2e504e03-380d-4561-bc6b-617ce01887fd .shogun-image-content {
  
    align-items: center;
  
}

.s-2e504e03-380d-4561-bc6b-617ce01887fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e504e03-380d-4561-bc6b-617ce01887fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e504e03-380d-4561-bc6b-617ce01887fd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2e504e03-380d-4561-bc6b-617ce01887fd {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-2e504e03-380d-4561-bc6b-617ce01887fd.shogun-image-container {
      position: relative;
    }

    .s-2e504e03-380d-4561-bc6b-617ce01887fd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2e504e03-380d-4561-bc6b-617ce01887fd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2e504e03-380d-4561-bc6b-617ce01887fd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-6009efd9-d417-4566-a250-f25e78f5d737 {
  aspect-ratio: 14/14;
text-align: center;
}

#s-6009efd9-d417-4566-a250-f25e78f5d737-root {
  grid-column-start: 11;
grid-column-end: 25;
grid-row-start: 1;
grid-row-end: 15;
z-index: 1;
}





  #s-6009efd9-d417-4566-a250-f25e78f5d737 img.shogun-image,
  #s-6009efd9-d417-4566-a250-f25e78f5d737 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6009efd9-d417-4566-a250-f25e78f5d737 {
    width: 100%;
    height: auto;
  }

  #s-6009efd9-d417-4566-a250-f25e78f5d737 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6009efd9-d417-4566-a250-f25e78f5d737.shogun-image {
    
    
  }


.s-6009efd9-d417-4566-a250-f25e78f5d737 .shogun-image-content {
  
    align-items: center;
  
}

.s-6009efd9-d417-4566-a250-f25e78f5d737.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6009efd9-d417-4566-a250-f25e78f5d737.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6009efd9-d417-4566-a250-f25e78f5d737.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6009efd9-d417-4566-a250-f25e78f5d737 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-6009efd9-d417-4566-a250-f25e78f5d737.shogun-image-container {
      position: relative;
    }

    .s-6009efd9-d417-4566-a250-f25e78f5d737.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6009efd9-d417-4566-a250-f25e78f5d737.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6009efd9-d417-4566-a250-f25e78f5d737 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-6009efd9-d417-4566-a250-f25e78f5d737 img.shogun-image,
  #s-6009efd9-d417-4566-a250-f25e78f5d737 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6009efd9-d417-4566-a250-f25e78f5d737 {
    width: 100%;
    height: auto;
  }

  #s-6009efd9-d417-4566-a250-f25e78f5d737 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6009efd9-d417-4566-a250-f25e78f5d737.shogun-image {
    
    
  }


.s-6009efd9-d417-4566-a250-f25e78f5d737 .shogun-image-content {
  
    align-items: center;
  
}

.s-6009efd9-d417-4566-a250-f25e78f5d737.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6009efd9-d417-4566-a250-f25e78f5d737.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6009efd9-d417-4566-a250-f25e78f5d737.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6009efd9-d417-4566-a250-f25e78f5d737 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-6009efd9-d417-4566-a250-f25e78f5d737.shogun-image-container {
      position: relative;
    }

    .s-6009efd9-d417-4566-a250-f25e78f5d737.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6009efd9-d417-4566-a250-f25e78f5d737.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6009efd9-d417-4566-a250-f25e78f5d737 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-6009efd9-d417-4566-a250-f25e78f5d737 img.shogun-image,
  #s-6009efd9-d417-4566-a250-f25e78f5d737 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6009efd9-d417-4566-a250-f25e78f5d737 {
    width: 100%;
    height: auto;
  }

  #s-6009efd9-d417-4566-a250-f25e78f5d737 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6009efd9-d417-4566-a250-f25e78f5d737.shogun-image {
    
    
  }


.s-6009efd9-d417-4566-a250-f25e78f5d737 .shogun-image-content {
  
    align-items: center;
  
}

.s-6009efd9-d417-4566-a250-f25e78f5d737.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6009efd9-d417-4566-a250-f25e78f5d737.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6009efd9-d417-4566-a250-f25e78f5d737.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6009efd9-d417-4566-a250-f25e78f5d737 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-6009efd9-d417-4566-a250-f25e78f5d737.shogun-image-container {
      position: relative;
    }

    .s-6009efd9-d417-4566-a250-f25e78f5d737.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6009efd9-d417-4566-a250-f25e78f5d737.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6009efd9-d417-4566-a250-f25e78f5d737 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-6009efd9-d417-4566-a250-f25e78f5d737 img.shogun-image,
  #s-6009efd9-d417-4566-a250-f25e78f5d737 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6009efd9-d417-4566-a250-f25e78f5d737 {
    width: 100%;
    height: auto;
  }

  #s-6009efd9-d417-4566-a250-f25e78f5d737 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6009efd9-d417-4566-a250-f25e78f5d737.shogun-image {
    
    
  }


.s-6009efd9-d417-4566-a250-f25e78f5d737 .shogun-image-content {
  
    align-items: center;
  
}

.s-6009efd9-d417-4566-a250-f25e78f5d737.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6009efd9-d417-4566-a250-f25e78f5d737.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6009efd9-d417-4566-a250-f25e78f5d737.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6009efd9-d417-4566-a250-f25e78f5d737 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-6009efd9-d417-4566-a250-f25e78f5d737.shogun-image-container {
      position: relative;
    }

    .s-6009efd9-d417-4566-a250-f25e78f5d737.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6009efd9-d417-4566-a250-f25e78f5d737.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6009efd9-d417-4566-a250-f25e78f5d737 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-6009efd9-d417-4566-a250-f25e78f5d737 img.shogun-image,
  #s-6009efd9-d417-4566-a250-f25e78f5d737 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6009efd9-d417-4566-a250-f25e78f5d737 {
    width: 100%;
    height: auto;
  }

  #s-6009efd9-d417-4566-a250-f25e78f5d737 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6009efd9-d417-4566-a250-f25e78f5d737.shogun-image {
    
    
  }


.s-6009efd9-d417-4566-a250-f25e78f5d737 .shogun-image-content {
  
    align-items: center;
  
}

.s-6009efd9-d417-4566-a250-f25e78f5d737.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6009efd9-d417-4566-a250-f25e78f5d737.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6009efd9-d417-4566-a250-f25e78f5d737.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6009efd9-d417-4566-a250-f25e78f5d737 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-6009efd9-d417-4566-a250-f25e78f5d737.shogun-image-container {
      position: relative;
    }

    .s-6009efd9-d417-4566-a250-f25e78f5d737.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6009efd9-d417-4566-a250-f25e78f5d737.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6009efd9-d417-4566-a250-f25e78f5d737 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-4464af85-de8c-4442-9889-87713ed819f3 {
  margin-top: -1%;
}

#s-4464af85-de8c-4442-9889-87713ed819f3 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(5, calc(100vw / 24));
}

#s-3e9d7265-5613-41f1-90d5-7404ee114701 {
  margin-left: 0%;
margin-right: 20%;
text-align: center;
}

#s-3e9d7265-5613-41f1-90d5-7404ee114701-root {
  grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 2;
grid-row-end: 6;
z-index: 0;
}







  img.s-3e9d7265-5613-41f1-90d5-7404ee114701.shogun-image {
    
    
  }


.s-3e9d7265-5613-41f1-90d5-7404ee114701 .shogun-image-content {
  
    align-items: center;
  
}

.s-3e9d7265-5613-41f1-90d5-7404ee114701.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e9d7265-5613-41f1-90d5-7404ee114701.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e9d7265-5613-41f1-90d5-7404ee114701.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-3e9d7265-5613-41f1-90d5-7404ee114701.shogun-image {
    
    
  }


.s-3e9d7265-5613-41f1-90d5-7404ee114701 .shogun-image-content {
  
    align-items: center;
  
}

.s-3e9d7265-5613-41f1-90d5-7404ee114701.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e9d7265-5613-41f1-90d5-7404ee114701.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e9d7265-5613-41f1-90d5-7404ee114701.shogun-image {
  box-sizing: border-box;
}



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





  img.s-3e9d7265-5613-41f1-90d5-7404ee114701.shogun-image {
    
    
  }


.s-3e9d7265-5613-41f1-90d5-7404ee114701 .shogun-image-content {
  
    align-items: center;
  
}

.s-3e9d7265-5613-41f1-90d5-7404ee114701.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e9d7265-5613-41f1-90d5-7404ee114701.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e9d7265-5613-41f1-90d5-7404ee114701.shogun-image {
  box-sizing: border-box;
}



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





  img.s-3e9d7265-5613-41f1-90d5-7404ee114701.shogun-image {
    
    
  }


.s-3e9d7265-5613-41f1-90d5-7404ee114701 .shogun-image-content {
  
    align-items: center;
  
}

.s-3e9d7265-5613-41f1-90d5-7404ee114701.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e9d7265-5613-41f1-90d5-7404ee114701.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e9d7265-5613-41f1-90d5-7404ee114701.shogun-image {
  box-sizing: border-box;
}



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





  img.s-3e9d7265-5613-41f1-90d5-7404ee114701.shogun-image {
    
    
  }


.s-3e9d7265-5613-41f1-90d5-7404ee114701 .shogun-image-content {
  
    align-items: center;
  
}

.s-3e9d7265-5613-41f1-90d5-7404ee114701.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e9d7265-5613-41f1-90d5-7404ee114701.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e9d7265-5613-41f1-90d5-7404ee114701.shogun-image {
  box-sizing: border-box;
}



}
#s-34a4df24-c7f0-44f1-8581-376cde479911 {
  margin-top: 1%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-34a4df24-c7f0-44f1-8581-376cde479911 {
  grid-column-start: 6;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 6;
z-index: 1;
}

#s-34a4df24-c7f0-44f1-8581-376cde479911 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-bb7f801a-5b6f-45cd-afc7-de4a817be7c9 {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
max-width: 1269px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16 img.shogun-image,
  #s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16 {
    width: 100%;
    height: auto;
  }

  #s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16.shogun-image {
    
    
  }


.s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16.shogun-image-container {
      position: relative;
    }

    .s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16 img.shogun-image,
  #s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16 {
    width: 100%;
    height: auto;
  }

  #s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16.shogun-image {
    
    
  }


.s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16.shogun-image-container {
      position: relative;
    }

    .s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16 img.shogun-image,
  #s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16 {
    width: 100%;
    height: auto;
  }

  #s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16.shogun-image {
    
    
  }


.s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16.shogun-image-container {
      position: relative;
    }

    .s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16 img.shogun-image,
  #s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16 {
    width: 100%;
    height: auto;
  }

  #s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16.shogun-image {
    
    
  }


.s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16.shogun-image-container {
      position: relative;
    }

    .s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16 img.shogun-image,
  #s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16 {
    width: 100%;
    height: auto;
  }

  #s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16.shogun-image {
    
    
  }


.s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16.shogun-image-container {
      position: relative;
    }

    .s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a8ac8b8c-0f63-4002-9cd5-51ee12794f16 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-207ad069-c5aa-4d84-9669-499ee7e9dc32 {
  margin-top: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-207ad069-c5aa-4d84-9669-499ee7e9dc32 .shogun-heading-component h5 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-234a5b14-9e25-45d7-9269-17bdfb093a55 {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-234a5b14-9e25-45d7-9269-17bdfb093a55 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-234a5b14-9e25-45d7-9269-17bdfb093a55.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-78d1c634-2167-4775-b68c-2b925eff0bb9 {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: rgba(29, 29, 29, 0);
border-radius: 3px;
max-width: 100%;
background-color: rgba(29, 29, 29, 0.9);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-78d1c634-2167-4775-b68c-2b925eff0bb9:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 0) !important;
background-color: rgba(74, 74, 74, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-78d1c634-2167-4775-b68c-2b925eff0bb9:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(155, 155, 155, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-78d1c634-2167-4775-b68c-2b925eff0bb9-root {
    text-align: center;
  }


#s-78d1c634-2167-4775-b68c-2b925eff0bb9.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-78d1c634-2167-4775-b68c-2b925eff0bb9-root {
    text-align: center;
  }


#s-78d1c634-2167-4775-b68c-2b925eff0bb9.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-78d1c634-2167-4775-b68c-2b925eff0bb9-root {
    text-align: center;
  }


#s-78d1c634-2167-4775-b68c-2b925eff0bb9.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-78d1c634-2167-4775-b68c-2b925eff0bb9-root {
    text-align: center;
  }


#s-78d1c634-2167-4775-b68c-2b925eff0bb9.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-78d1c634-2167-4775-b68c-2b925eff0bb9-root {
    text-align: center;
  }


#s-78d1c634-2167-4775-b68c-2b925eff0bb9.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-78d1c634-2167-4775-b68c-2b925eff0bb9-root {
    text-align: center;
  }


#s-78d1c634-2167-4775-b68c-2b925eff0bb9.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-6111800f-8839-42e5-868e-2a9240896640 {
  margin-top: 13%;
}

#s-6111800f-8839-42e5-868e-2a9240896640 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(15, calc(100vw / 24));
}

#s-22517230-990c-46d5-8633-8528835055c7 {
  aspect-ratio: 11/11;
text-align: center;
}

#s-22517230-990c-46d5-8633-8528835055c7-root {
  grid-column-start: 1;
grid-column-end: 12;
grid-row-start: 1;
grid-row-end: 12;
z-index: 0;
}





  #s-22517230-990c-46d5-8633-8528835055c7 img.shogun-image,
  #s-22517230-990c-46d5-8633-8528835055c7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-22517230-990c-46d5-8633-8528835055c7 {
    width: 100%;
    height: auto;
  }

  #s-22517230-990c-46d5-8633-8528835055c7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-22517230-990c-46d5-8633-8528835055c7.shogun-image {
    
    
  }


.s-22517230-990c-46d5-8633-8528835055c7 .shogun-image-content {
  
    align-items: center;
  
}

.s-22517230-990c-46d5-8633-8528835055c7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-22517230-990c-46d5-8633-8528835055c7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-22517230-990c-46d5-8633-8528835055c7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-22517230-990c-46d5-8633-8528835055c7 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-22517230-990c-46d5-8633-8528835055c7.shogun-image-container {
      position: relative;
    }

    .s-22517230-990c-46d5-8633-8528835055c7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-22517230-990c-46d5-8633-8528835055c7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-22517230-990c-46d5-8633-8528835055c7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-22517230-990c-46d5-8633-8528835055c7 img.shogun-image,
  #s-22517230-990c-46d5-8633-8528835055c7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-22517230-990c-46d5-8633-8528835055c7 {
    width: 100%;
    height: auto;
  }

  #s-22517230-990c-46d5-8633-8528835055c7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-22517230-990c-46d5-8633-8528835055c7.shogun-image {
    
    
  }


.s-22517230-990c-46d5-8633-8528835055c7 .shogun-image-content {
  
    align-items: center;
  
}

.s-22517230-990c-46d5-8633-8528835055c7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-22517230-990c-46d5-8633-8528835055c7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-22517230-990c-46d5-8633-8528835055c7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-22517230-990c-46d5-8633-8528835055c7 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-22517230-990c-46d5-8633-8528835055c7.shogun-image-container {
      position: relative;
    }

    .s-22517230-990c-46d5-8633-8528835055c7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-22517230-990c-46d5-8633-8528835055c7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-22517230-990c-46d5-8633-8528835055c7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-22517230-990c-46d5-8633-8528835055c7 img.shogun-image,
  #s-22517230-990c-46d5-8633-8528835055c7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-22517230-990c-46d5-8633-8528835055c7 {
    width: 100%;
    height: auto;
  }

  #s-22517230-990c-46d5-8633-8528835055c7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-22517230-990c-46d5-8633-8528835055c7.shogun-image {
    
    
  }


.s-22517230-990c-46d5-8633-8528835055c7 .shogun-image-content {
  
    align-items: center;
  
}

.s-22517230-990c-46d5-8633-8528835055c7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-22517230-990c-46d5-8633-8528835055c7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-22517230-990c-46d5-8633-8528835055c7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-22517230-990c-46d5-8633-8528835055c7 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-22517230-990c-46d5-8633-8528835055c7.shogun-image-container {
      position: relative;
    }

    .s-22517230-990c-46d5-8633-8528835055c7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-22517230-990c-46d5-8633-8528835055c7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-22517230-990c-46d5-8633-8528835055c7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-22517230-990c-46d5-8633-8528835055c7 img.shogun-image,
  #s-22517230-990c-46d5-8633-8528835055c7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-22517230-990c-46d5-8633-8528835055c7 {
    width: 100%;
    height: auto;
  }

  #s-22517230-990c-46d5-8633-8528835055c7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-22517230-990c-46d5-8633-8528835055c7.shogun-image {
    
    
  }


.s-22517230-990c-46d5-8633-8528835055c7 .shogun-image-content {
  
    align-items: center;
  
}

.s-22517230-990c-46d5-8633-8528835055c7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-22517230-990c-46d5-8633-8528835055c7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-22517230-990c-46d5-8633-8528835055c7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-22517230-990c-46d5-8633-8528835055c7 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-22517230-990c-46d5-8633-8528835055c7.shogun-image-container {
      position: relative;
    }

    .s-22517230-990c-46d5-8633-8528835055c7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-22517230-990c-46d5-8633-8528835055c7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-22517230-990c-46d5-8633-8528835055c7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-22517230-990c-46d5-8633-8528835055c7 img.shogun-image,
  #s-22517230-990c-46d5-8633-8528835055c7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-22517230-990c-46d5-8633-8528835055c7 {
    width: 100%;
    height: auto;
  }

  #s-22517230-990c-46d5-8633-8528835055c7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-22517230-990c-46d5-8633-8528835055c7.shogun-image {
    
    
  }


.s-22517230-990c-46d5-8633-8528835055c7 .shogun-image-content {
  
    align-items: center;
  
}

.s-22517230-990c-46d5-8633-8528835055c7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-22517230-990c-46d5-8633-8528835055c7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-22517230-990c-46d5-8633-8528835055c7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-22517230-990c-46d5-8633-8528835055c7 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-22517230-990c-46d5-8633-8528835055c7.shogun-image-container {
      position: relative;
    }

    .s-22517230-990c-46d5-8633-8528835055c7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-22517230-990c-46d5-8633-8528835055c7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-22517230-990c-46d5-8633-8528835055c7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-190b2c9c-1e35-4292-91f8-040b76c8ea3a {
  aspect-ratio: 14/14;
text-align: center;
}

#s-190b2c9c-1e35-4292-91f8-040b76c8ea3a-root {
  grid-column-start: 11;
grid-column-end: 25;
grid-row-start: 2;
grid-row-end: 16;
z-index: 1;
}





  #s-190b2c9c-1e35-4292-91f8-040b76c8ea3a img.shogun-image,
  #s-190b2c9c-1e35-4292-91f8-040b76c8ea3a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-190b2c9c-1e35-4292-91f8-040b76c8ea3a {
    width: 100%;
    height: auto;
  }

  #s-190b2c9c-1e35-4292-91f8-040b76c8ea3a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-190b2c9c-1e35-4292-91f8-040b76c8ea3a.shogun-image {
    
    
  }


.s-190b2c9c-1e35-4292-91f8-040b76c8ea3a .shogun-image-content {
  
    align-items: center;
  
}

.s-190b2c9c-1e35-4292-91f8-040b76c8ea3a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-190b2c9c-1e35-4292-91f8-040b76c8ea3a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-190b2c9c-1e35-4292-91f8-040b76c8ea3a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-190b2c9c-1e35-4292-91f8-040b76c8ea3a {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-190b2c9c-1e35-4292-91f8-040b76c8ea3a.shogun-image-container {
      position: relative;
    }

    .s-190b2c9c-1e35-4292-91f8-040b76c8ea3a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-190b2c9c-1e35-4292-91f8-040b76c8ea3a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-190b2c9c-1e35-4292-91f8-040b76c8ea3a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-190b2c9c-1e35-4292-91f8-040b76c8ea3a img.shogun-image,
  #s-190b2c9c-1e35-4292-91f8-040b76c8ea3a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-190b2c9c-1e35-4292-91f8-040b76c8ea3a {
    width: 100%;
    height: auto;
  }

  #s-190b2c9c-1e35-4292-91f8-040b76c8ea3a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-190b2c9c-1e35-4292-91f8-040b76c8ea3a.shogun-image {
    
    
  }


.s-190b2c9c-1e35-4292-91f8-040b76c8ea3a .shogun-image-content {
  
    align-items: center;
  
}

.s-190b2c9c-1e35-4292-91f8-040b76c8ea3a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-190b2c9c-1e35-4292-91f8-040b76c8ea3a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-190b2c9c-1e35-4292-91f8-040b76c8ea3a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-190b2c9c-1e35-4292-91f8-040b76c8ea3a {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-190b2c9c-1e35-4292-91f8-040b76c8ea3a.shogun-image-container {
      position: relative;
    }

    .s-190b2c9c-1e35-4292-91f8-040b76c8ea3a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-190b2c9c-1e35-4292-91f8-040b76c8ea3a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-190b2c9c-1e35-4292-91f8-040b76c8ea3a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-190b2c9c-1e35-4292-91f8-040b76c8ea3a img.shogun-image,
  #s-190b2c9c-1e35-4292-91f8-040b76c8ea3a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-190b2c9c-1e35-4292-91f8-040b76c8ea3a {
    width: 100%;
    height: auto;
  }

  #s-190b2c9c-1e35-4292-91f8-040b76c8ea3a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-190b2c9c-1e35-4292-91f8-040b76c8ea3a.shogun-image {
    
    
  }


.s-190b2c9c-1e35-4292-91f8-040b76c8ea3a .shogun-image-content {
  
    align-items: center;
  
}

.s-190b2c9c-1e35-4292-91f8-040b76c8ea3a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-190b2c9c-1e35-4292-91f8-040b76c8ea3a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-190b2c9c-1e35-4292-91f8-040b76c8ea3a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-190b2c9c-1e35-4292-91f8-040b76c8ea3a {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-190b2c9c-1e35-4292-91f8-040b76c8ea3a.shogun-image-container {
      position: relative;
    }

    .s-190b2c9c-1e35-4292-91f8-040b76c8ea3a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-190b2c9c-1e35-4292-91f8-040b76c8ea3a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-190b2c9c-1e35-4292-91f8-040b76c8ea3a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-190b2c9c-1e35-4292-91f8-040b76c8ea3a img.shogun-image,
  #s-190b2c9c-1e35-4292-91f8-040b76c8ea3a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-190b2c9c-1e35-4292-91f8-040b76c8ea3a {
    width: 100%;
    height: auto;
  }

  #s-190b2c9c-1e35-4292-91f8-040b76c8ea3a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-190b2c9c-1e35-4292-91f8-040b76c8ea3a.shogun-image {
    
    
  }


.s-190b2c9c-1e35-4292-91f8-040b76c8ea3a .shogun-image-content {
  
    align-items: center;
  
}

.s-190b2c9c-1e35-4292-91f8-040b76c8ea3a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-190b2c9c-1e35-4292-91f8-040b76c8ea3a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-190b2c9c-1e35-4292-91f8-040b76c8ea3a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-190b2c9c-1e35-4292-91f8-040b76c8ea3a {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-190b2c9c-1e35-4292-91f8-040b76c8ea3a.shogun-image-container {
      position: relative;
    }

    .s-190b2c9c-1e35-4292-91f8-040b76c8ea3a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-190b2c9c-1e35-4292-91f8-040b76c8ea3a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-190b2c9c-1e35-4292-91f8-040b76c8ea3a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-190b2c9c-1e35-4292-91f8-040b76c8ea3a img.shogun-image,
  #s-190b2c9c-1e35-4292-91f8-040b76c8ea3a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-190b2c9c-1e35-4292-91f8-040b76c8ea3a {
    width: 100%;
    height: auto;
  }

  #s-190b2c9c-1e35-4292-91f8-040b76c8ea3a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-190b2c9c-1e35-4292-91f8-040b76c8ea3a.shogun-image {
    
    
  }


.s-190b2c9c-1e35-4292-91f8-040b76c8ea3a .shogun-image-content {
  
    align-items: center;
  
}

.s-190b2c9c-1e35-4292-91f8-040b76c8ea3a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-190b2c9c-1e35-4292-91f8-040b76c8ea3a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-190b2c9c-1e35-4292-91f8-040b76c8ea3a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-190b2c9c-1e35-4292-91f8-040b76c8ea3a {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-190b2c9c-1e35-4292-91f8-040b76c8ea3a.shogun-image-container {
      position: relative;
    }

    .s-190b2c9c-1e35-4292-91f8-040b76c8ea3a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-190b2c9c-1e35-4292-91f8-040b76c8ea3a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-190b2c9c-1e35-4292-91f8-040b76c8ea3a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-530e87f7-b3ad-4b8e-b956-a7e514e15ab4 {
  margin-top: -4%;
margin-bottom: -3%;
}

#s-530e87f7-b3ad-4b8e-b956-a7e514e15ab4 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(5, calc(100vw / 24));
}

#s-ef8b901b-f1c5-44c2-b020-732435e44e3e {
  margin-left: 0%;
margin-right: 20%;
text-align: center;
}

#s-ef8b901b-f1c5-44c2-b020-732435e44e3e-root {
  grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 2;
grid-row-end: 6;
z-index: 0;
}







  img.s-ef8b901b-f1c5-44c2-b020-732435e44e3e.shogun-image {
    
    
  }


.s-ef8b901b-f1c5-44c2-b020-732435e44e3e .shogun-image-content {
  
    align-items: center;
  
}

.s-ef8b901b-f1c5-44c2-b020-732435e44e3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef8b901b-f1c5-44c2-b020-732435e44e3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef8b901b-f1c5-44c2-b020-732435e44e3e.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-ef8b901b-f1c5-44c2-b020-732435e44e3e.shogun-image {
    
    
  }


.s-ef8b901b-f1c5-44c2-b020-732435e44e3e .shogun-image-content {
  
    align-items: center;
  
}

.s-ef8b901b-f1c5-44c2-b020-732435e44e3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef8b901b-f1c5-44c2-b020-732435e44e3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef8b901b-f1c5-44c2-b020-732435e44e3e.shogun-image {
  box-sizing: border-box;
}



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





  img.s-ef8b901b-f1c5-44c2-b020-732435e44e3e.shogun-image {
    
    
  }


.s-ef8b901b-f1c5-44c2-b020-732435e44e3e .shogun-image-content {
  
    align-items: center;
  
}

.s-ef8b901b-f1c5-44c2-b020-732435e44e3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef8b901b-f1c5-44c2-b020-732435e44e3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef8b901b-f1c5-44c2-b020-732435e44e3e.shogun-image {
  box-sizing: border-box;
}



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





  img.s-ef8b901b-f1c5-44c2-b020-732435e44e3e.shogun-image {
    
    
  }


.s-ef8b901b-f1c5-44c2-b020-732435e44e3e .shogun-image-content {
  
    align-items: center;
  
}

.s-ef8b901b-f1c5-44c2-b020-732435e44e3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef8b901b-f1c5-44c2-b020-732435e44e3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef8b901b-f1c5-44c2-b020-732435e44e3e.shogun-image {
  box-sizing: border-box;
}



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





  img.s-ef8b901b-f1c5-44c2-b020-732435e44e3e.shogun-image {
    
    
  }


.s-ef8b901b-f1c5-44c2-b020-732435e44e3e .shogun-image-content {
  
    align-items: center;
  
}

.s-ef8b901b-f1c5-44c2-b020-732435e44e3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef8b901b-f1c5-44c2-b020-732435e44e3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef8b901b-f1c5-44c2-b020-732435e44e3e.shogun-image {
  box-sizing: border-box;
}



}
#s-4cc48949-ba50-422f-bb42-48578cdba9fd {
  margin-top: 1%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4cc48949-ba50-422f-bb42-48578cdba9fd {
  grid-column-start: 6;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 6;
z-index: 1;
}

#s-4cc48949-ba50-422f-bb42-48578cdba9fd .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-be80ac41-4248-4bdb-b721-b4acff4604d9 {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-9f7df062-aa64-4e2e-b6f7-40d305e6635e {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
text-align: center;
}







  img.s-9f7df062-aa64-4e2e-b6f7-40d305e6635e.shogun-image {
    
    
  }


.s-9f7df062-aa64-4e2e-b6f7-40d305e6635e .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-9f7df062-aa64-4e2e-b6f7-40d305e6635e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f7df062-aa64-4e2e-b6f7-40d305e6635e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f7df062-aa64-4e2e-b6f7-40d305e6635e.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-9f7df062-aa64-4e2e-b6f7-40d305e6635e.shogun-image {
    
    
  }


.s-9f7df062-aa64-4e2e-b6f7-40d305e6635e .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-9f7df062-aa64-4e2e-b6f7-40d305e6635e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f7df062-aa64-4e2e-b6f7-40d305e6635e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f7df062-aa64-4e2e-b6f7-40d305e6635e.shogun-image {
  box-sizing: border-box;
}



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





  img.s-9f7df062-aa64-4e2e-b6f7-40d305e6635e.shogun-image {
    
    
  }


.s-9f7df062-aa64-4e2e-b6f7-40d305e6635e .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-9f7df062-aa64-4e2e-b6f7-40d305e6635e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f7df062-aa64-4e2e-b6f7-40d305e6635e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f7df062-aa64-4e2e-b6f7-40d305e6635e.shogun-image {
  box-sizing: border-box;
}



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





  img.s-9f7df062-aa64-4e2e-b6f7-40d305e6635e.shogun-image {
    
    
  }


.s-9f7df062-aa64-4e2e-b6f7-40d305e6635e .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-9f7df062-aa64-4e2e-b6f7-40d305e6635e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f7df062-aa64-4e2e-b6f7-40d305e6635e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f7df062-aa64-4e2e-b6f7-40d305e6635e.shogun-image {
  box-sizing: border-box;
}



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





  img.s-9f7df062-aa64-4e2e-b6f7-40d305e6635e.shogun-image {
    
    
  }


.s-9f7df062-aa64-4e2e-b6f7-40d305e6635e .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-9f7df062-aa64-4e2e-b6f7-40d305e6635e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f7df062-aa64-4e2e-b6f7-40d305e6635e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f7df062-aa64-4e2e-b6f7-40d305e6635e.shogun-image {
  box-sizing: border-box;
}



}
#s-269049a3-2b62-4475-b754-8d33765257b9 {
  margin-top: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-269049a3-2b62-4475-b754-8d33765257b9 .shogun-heading-component h5 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-dbcc1e5f-99fa-4072-86f3-a1bb883e3bd3 {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-dbcc1e5f-99fa-4072-86f3-a1bb883e3bd3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dbcc1e5f-99fa-4072-86f3-a1bb883e3bd3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-60a574ec-c0df-4c39-b7fb-93fd1fc54300 {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: rgba(29, 29, 29, 0);
border-radius: 3px;
max-width: 100%;
background-color: rgba(29, 29, 29, 0.9);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-60a574ec-c0df-4c39-b7fb-93fd1fc54300:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 0) !important;
background-color: rgba(74, 74, 74, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-60a574ec-c0df-4c39-b7fb-93fd1fc54300:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(155, 155, 155, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-60a574ec-c0df-4c39-b7fb-93fd1fc54300-root {
    text-align: center;
  }


#s-60a574ec-c0df-4c39-b7fb-93fd1fc54300.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-60a574ec-c0df-4c39-b7fb-93fd1fc54300-root {
    text-align: center;
  }


#s-60a574ec-c0df-4c39-b7fb-93fd1fc54300.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-60a574ec-c0df-4c39-b7fb-93fd1fc54300-root {
    text-align: center;
  }


#s-60a574ec-c0df-4c39-b7fb-93fd1fc54300.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-60a574ec-c0df-4c39-b7fb-93fd1fc54300-root {
    text-align: center;
  }


#s-60a574ec-c0df-4c39-b7fb-93fd1fc54300.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-60a574ec-c0df-4c39-b7fb-93fd1fc54300-root {
    text-align: center;
  }


#s-60a574ec-c0df-4c39-b7fb-93fd1fc54300.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-60a574ec-c0df-4c39-b7fb-93fd1fc54300-root {
    text-align: center;
  }


#s-60a574ec-c0df-4c39-b7fb-93fd1fc54300.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-f82f36c0-6526-4f5f-b842-62a6518dafc5 {
  margin-top: 13%;
margin-bottom: 0%;
}

#s-f82f36c0-6526-4f5f-b842-62a6518dafc5 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(14, calc(100vw / 24));
}

#s-d91d468f-cd1b-4352-9f53-f00e780105ce {
  aspect-ratio: 11/11;
text-align: center;
}

#s-d91d468f-cd1b-4352-9f53-f00e780105ce-root {
  grid-column-start: 1;
grid-column-end: 12;
grid-row-start: 4;
grid-row-end: 15;
z-index: 0;
}





  #s-d91d468f-cd1b-4352-9f53-f00e780105ce img.shogun-image,
  #s-d91d468f-cd1b-4352-9f53-f00e780105ce .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d91d468f-cd1b-4352-9f53-f00e780105ce {
    width: 100%;
    height: auto;
  }

  #s-d91d468f-cd1b-4352-9f53-f00e780105ce img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d91d468f-cd1b-4352-9f53-f00e780105ce.shogun-image {
    
    
  }


.s-d91d468f-cd1b-4352-9f53-f00e780105ce .shogun-image-content {
  
    align-items: center;
  
}

.s-d91d468f-cd1b-4352-9f53-f00e780105ce.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d91d468f-cd1b-4352-9f53-f00e780105ce.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d91d468f-cd1b-4352-9f53-f00e780105ce.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d91d468f-cd1b-4352-9f53-f00e780105ce {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-d91d468f-cd1b-4352-9f53-f00e780105ce.shogun-image-container {
      position: relative;
    }

    .s-d91d468f-cd1b-4352-9f53-f00e780105ce.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d91d468f-cd1b-4352-9f53-f00e780105ce.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d91d468f-cd1b-4352-9f53-f00e780105ce img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-d91d468f-cd1b-4352-9f53-f00e780105ce img.shogun-image,
  #s-d91d468f-cd1b-4352-9f53-f00e780105ce .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d91d468f-cd1b-4352-9f53-f00e780105ce {
    width: 100%;
    height: auto;
  }

  #s-d91d468f-cd1b-4352-9f53-f00e780105ce img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d91d468f-cd1b-4352-9f53-f00e780105ce.shogun-image {
    
    
  }


.s-d91d468f-cd1b-4352-9f53-f00e780105ce .shogun-image-content {
  
    align-items: center;
  
}

.s-d91d468f-cd1b-4352-9f53-f00e780105ce.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d91d468f-cd1b-4352-9f53-f00e780105ce.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d91d468f-cd1b-4352-9f53-f00e780105ce.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d91d468f-cd1b-4352-9f53-f00e780105ce {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-d91d468f-cd1b-4352-9f53-f00e780105ce.shogun-image-container {
      position: relative;
    }

    .s-d91d468f-cd1b-4352-9f53-f00e780105ce.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d91d468f-cd1b-4352-9f53-f00e780105ce.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d91d468f-cd1b-4352-9f53-f00e780105ce img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-d91d468f-cd1b-4352-9f53-f00e780105ce img.shogun-image,
  #s-d91d468f-cd1b-4352-9f53-f00e780105ce .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d91d468f-cd1b-4352-9f53-f00e780105ce {
    width: 100%;
    height: auto;
  }

  #s-d91d468f-cd1b-4352-9f53-f00e780105ce img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d91d468f-cd1b-4352-9f53-f00e780105ce.shogun-image {
    
    
  }


.s-d91d468f-cd1b-4352-9f53-f00e780105ce .shogun-image-content {
  
    align-items: center;
  
}

.s-d91d468f-cd1b-4352-9f53-f00e780105ce.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d91d468f-cd1b-4352-9f53-f00e780105ce.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d91d468f-cd1b-4352-9f53-f00e780105ce.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d91d468f-cd1b-4352-9f53-f00e780105ce {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-d91d468f-cd1b-4352-9f53-f00e780105ce.shogun-image-container {
      position: relative;
    }

    .s-d91d468f-cd1b-4352-9f53-f00e780105ce.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d91d468f-cd1b-4352-9f53-f00e780105ce.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d91d468f-cd1b-4352-9f53-f00e780105ce img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-d91d468f-cd1b-4352-9f53-f00e780105ce img.shogun-image,
  #s-d91d468f-cd1b-4352-9f53-f00e780105ce .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d91d468f-cd1b-4352-9f53-f00e780105ce {
    width: 100%;
    height: auto;
  }

  #s-d91d468f-cd1b-4352-9f53-f00e780105ce img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d91d468f-cd1b-4352-9f53-f00e780105ce.shogun-image {
    
    
  }


.s-d91d468f-cd1b-4352-9f53-f00e780105ce .shogun-image-content {
  
    align-items: center;
  
}

.s-d91d468f-cd1b-4352-9f53-f00e780105ce.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d91d468f-cd1b-4352-9f53-f00e780105ce.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d91d468f-cd1b-4352-9f53-f00e780105ce.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d91d468f-cd1b-4352-9f53-f00e780105ce {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-d91d468f-cd1b-4352-9f53-f00e780105ce.shogun-image-container {
      position: relative;
    }

    .s-d91d468f-cd1b-4352-9f53-f00e780105ce.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d91d468f-cd1b-4352-9f53-f00e780105ce.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d91d468f-cd1b-4352-9f53-f00e780105ce img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-d91d468f-cd1b-4352-9f53-f00e780105ce img.shogun-image,
  #s-d91d468f-cd1b-4352-9f53-f00e780105ce .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d91d468f-cd1b-4352-9f53-f00e780105ce {
    width: 100%;
    height: auto;
  }

  #s-d91d468f-cd1b-4352-9f53-f00e780105ce img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d91d468f-cd1b-4352-9f53-f00e780105ce.shogun-image {
    
    
  }


.s-d91d468f-cd1b-4352-9f53-f00e780105ce .shogun-image-content {
  
    align-items: center;
  
}

.s-d91d468f-cd1b-4352-9f53-f00e780105ce.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d91d468f-cd1b-4352-9f53-f00e780105ce.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d91d468f-cd1b-4352-9f53-f00e780105ce.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d91d468f-cd1b-4352-9f53-f00e780105ce {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-d91d468f-cd1b-4352-9f53-f00e780105ce.shogun-image-container {
      position: relative;
    }

    .s-d91d468f-cd1b-4352-9f53-f00e780105ce.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d91d468f-cd1b-4352-9f53-f00e780105ce.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d91d468f-cd1b-4352-9f53-f00e780105ce img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-6de463df-0eee-48c3-8457-f1e4ef15c6ca {
  aspect-ratio: 14/14;
text-align: center;
}

#s-6de463df-0eee-48c3-8457-f1e4ef15c6ca-root {
  grid-column-start: 11;
grid-column-end: 25;
grid-row-start: 1;
grid-row-end: 15;
z-index: 1;
}





  #s-6de463df-0eee-48c3-8457-f1e4ef15c6ca img.shogun-image,
  #s-6de463df-0eee-48c3-8457-f1e4ef15c6ca .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6de463df-0eee-48c3-8457-f1e4ef15c6ca {
    width: 100%;
    height: auto;
  }

  #s-6de463df-0eee-48c3-8457-f1e4ef15c6ca img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6de463df-0eee-48c3-8457-f1e4ef15c6ca.shogun-image {
    
    
  }


.s-6de463df-0eee-48c3-8457-f1e4ef15c6ca .shogun-image-content {
  
    align-items: center;
  
}

.s-6de463df-0eee-48c3-8457-f1e4ef15c6ca.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6de463df-0eee-48c3-8457-f1e4ef15c6ca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6de463df-0eee-48c3-8457-f1e4ef15c6ca.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6de463df-0eee-48c3-8457-f1e4ef15c6ca {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-6de463df-0eee-48c3-8457-f1e4ef15c6ca.shogun-image-container {
      position: relative;
    }

    .s-6de463df-0eee-48c3-8457-f1e4ef15c6ca.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6de463df-0eee-48c3-8457-f1e4ef15c6ca.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6de463df-0eee-48c3-8457-f1e4ef15c6ca img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-6de463df-0eee-48c3-8457-f1e4ef15c6ca img.shogun-image,
  #s-6de463df-0eee-48c3-8457-f1e4ef15c6ca .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6de463df-0eee-48c3-8457-f1e4ef15c6ca {
    width: 100%;
    height: auto;
  }

  #s-6de463df-0eee-48c3-8457-f1e4ef15c6ca img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6de463df-0eee-48c3-8457-f1e4ef15c6ca.shogun-image {
    
    
  }


.s-6de463df-0eee-48c3-8457-f1e4ef15c6ca .shogun-image-content {
  
    align-items: center;
  
}

.s-6de463df-0eee-48c3-8457-f1e4ef15c6ca.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6de463df-0eee-48c3-8457-f1e4ef15c6ca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6de463df-0eee-48c3-8457-f1e4ef15c6ca.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6de463df-0eee-48c3-8457-f1e4ef15c6ca {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-6de463df-0eee-48c3-8457-f1e4ef15c6ca.shogun-image-container {
      position: relative;
    }

    .s-6de463df-0eee-48c3-8457-f1e4ef15c6ca.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6de463df-0eee-48c3-8457-f1e4ef15c6ca.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6de463df-0eee-48c3-8457-f1e4ef15c6ca img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-6de463df-0eee-48c3-8457-f1e4ef15c6ca img.shogun-image,
  #s-6de463df-0eee-48c3-8457-f1e4ef15c6ca .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6de463df-0eee-48c3-8457-f1e4ef15c6ca {
    width: 100%;
    height: auto;
  }

  #s-6de463df-0eee-48c3-8457-f1e4ef15c6ca img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6de463df-0eee-48c3-8457-f1e4ef15c6ca.shogun-image {
    
    
  }


.s-6de463df-0eee-48c3-8457-f1e4ef15c6ca .shogun-image-content {
  
    align-items: center;
  
}

.s-6de463df-0eee-48c3-8457-f1e4ef15c6ca.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6de463df-0eee-48c3-8457-f1e4ef15c6ca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6de463df-0eee-48c3-8457-f1e4ef15c6ca.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6de463df-0eee-48c3-8457-f1e4ef15c6ca {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-6de463df-0eee-48c3-8457-f1e4ef15c6ca.shogun-image-container {
      position: relative;
    }

    .s-6de463df-0eee-48c3-8457-f1e4ef15c6ca.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6de463df-0eee-48c3-8457-f1e4ef15c6ca.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6de463df-0eee-48c3-8457-f1e4ef15c6ca img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-6de463df-0eee-48c3-8457-f1e4ef15c6ca img.shogun-image,
  #s-6de463df-0eee-48c3-8457-f1e4ef15c6ca .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6de463df-0eee-48c3-8457-f1e4ef15c6ca {
    width: 100%;
    height: auto;
  }

  #s-6de463df-0eee-48c3-8457-f1e4ef15c6ca img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6de463df-0eee-48c3-8457-f1e4ef15c6ca.shogun-image {
    
    
  }


.s-6de463df-0eee-48c3-8457-f1e4ef15c6ca .shogun-image-content {
  
    align-items: center;
  
}

.s-6de463df-0eee-48c3-8457-f1e4ef15c6ca.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6de463df-0eee-48c3-8457-f1e4ef15c6ca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6de463df-0eee-48c3-8457-f1e4ef15c6ca.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6de463df-0eee-48c3-8457-f1e4ef15c6ca {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-6de463df-0eee-48c3-8457-f1e4ef15c6ca.shogun-image-container {
      position: relative;
    }

    .s-6de463df-0eee-48c3-8457-f1e4ef15c6ca.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6de463df-0eee-48c3-8457-f1e4ef15c6ca.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6de463df-0eee-48c3-8457-f1e4ef15c6ca img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-6de463df-0eee-48c3-8457-f1e4ef15c6ca img.shogun-image,
  #s-6de463df-0eee-48c3-8457-f1e4ef15c6ca .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6de463df-0eee-48c3-8457-f1e4ef15c6ca {
    width: 100%;
    height: auto;
  }

  #s-6de463df-0eee-48c3-8457-f1e4ef15c6ca img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6de463df-0eee-48c3-8457-f1e4ef15c6ca.shogun-image {
    
    
  }


.s-6de463df-0eee-48c3-8457-f1e4ef15c6ca .shogun-image-content {
  
    align-items: center;
  
}

.s-6de463df-0eee-48c3-8457-f1e4ef15c6ca.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6de463df-0eee-48c3-8457-f1e4ef15c6ca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6de463df-0eee-48c3-8457-f1e4ef15c6ca.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6de463df-0eee-48c3-8457-f1e4ef15c6ca {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-6de463df-0eee-48c3-8457-f1e4ef15c6ca.shogun-image-container {
      position: relative;
    }

    .s-6de463df-0eee-48c3-8457-f1e4ef15c6ca.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6de463df-0eee-48c3-8457-f1e4ef15c6ca.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6de463df-0eee-48c3-8457-f1e4ef15c6ca img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-34e4b334-65ca-428a-9a00-71f6c2464d24 {
  margin-top: -1%;
}

#s-34e4b334-65ca-428a-9a00-71f6c2464d24 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(5, calc(100vw / 24));
}

#s-17ef6c34-a99e-45d2-9ade-60b691abb502 {
  margin-left: 0%;
margin-right: 20%;
text-align: center;
}

#s-17ef6c34-a99e-45d2-9ade-60b691abb502-root {
  grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 2;
grid-row-end: 6;
z-index: 0;
}







  img.s-17ef6c34-a99e-45d2-9ade-60b691abb502.shogun-image {
    
    
  }


.s-17ef6c34-a99e-45d2-9ade-60b691abb502 .shogun-image-content {
  
    align-items: center;
  
}

.s-17ef6c34-a99e-45d2-9ade-60b691abb502.shg-align-container {
  display: flex;
  justify-content: center
}

.s-17ef6c34-a99e-45d2-9ade-60b691abb502.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-17ef6c34-a99e-45d2-9ade-60b691abb502.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-17ef6c34-a99e-45d2-9ade-60b691abb502.shogun-image {
    
    
  }


.s-17ef6c34-a99e-45d2-9ade-60b691abb502 .shogun-image-content {
  
    align-items: center;
  
}

.s-17ef6c34-a99e-45d2-9ade-60b691abb502.shg-align-container {
  display: flex;
  justify-content: center
}

.s-17ef6c34-a99e-45d2-9ade-60b691abb502.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-17ef6c34-a99e-45d2-9ade-60b691abb502.shogun-image {
  box-sizing: border-box;
}



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





  img.s-17ef6c34-a99e-45d2-9ade-60b691abb502.shogun-image {
    
    
  }


.s-17ef6c34-a99e-45d2-9ade-60b691abb502 .shogun-image-content {
  
    align-items: center;
  
}

.s-17ef6c34-a99e-45d2-9ade-60b691abb502.shg-align-container {
  display: flex;
  justify-content: center
}

.s-17ef6c34-a99e-45d2-9ade-60b691abb502.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-17ef6c34-a99e-45d2-9ade-60b691abb502.shogun-image {
  box-sizing: border-box;
}



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





  img.s-17ef6c34-a99e-45d2-9ade-60b691abb502.shogun-image {
    
    
  }


.s-17ef6c34-a99e-45d2-9ade-60b691abb502 .shogun-image-content {
  
    align-items: center;
  
}

.s-17ef6c34-a99e-45d2-9ade-60b691abb502.shg-align-container {
  display: flex;
  justify-content: center
}

.s-17ef6c34-a99e-45d2-9ade-60b691abb502.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-17ef6c34-a99e-45d2-9ade-60b691abb502.shogun-image {
  box-sizing: border-box;
}



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





  img.s-17ef6c34-a99e-45d2-9ade-60b691abb502.shogun-image {
    
    
  }


.s-17ef6c34-a99e-45d2-9ade-60b691abb502 .shogun-image-content {
  
    align-items: center;
  
}

.s-17ef6c34-a99e-45d2-9ade-60b691abb502.shg-align-container {
  display: flex;
  justify-content: center
}

.s-17ef6c34-a99e-45d2-9ade-60b691abb502.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-17ef6c34-a99e-45d2-9ade-60b691abb502.shogun-image {
  box-sizing: border-box;
}



}
#s-9a055214-4463-4d95-bac1-f462bdc15692 {
  margin-top: 5%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9a055214-4463-4d95-bac1-f462bdc15692 {
  grid-column-start: 6;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 6;
z-index: 1;
}

#s-9a055214-4463-4d95-bac1-f462bdc15692 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 1px;
  text-align: left;
}



#s-598edab3-4968-457a-974c-71ad9fd9fb65 {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-c55f8f79-5575-4345-bd0a-e34c51b93fe2 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}







  img.s-c55f8f79-5575-4345-bd0a-e34c51b93fe2.shogun-image {
    
    
  }


.s-c55f8f79-5575-4345-bd0a-e34c51b93fe2 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-c55f8f79-5575-4345-bd0a-e34c51b93fe2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c55f8f79-5575-4345-bd0a-e34c51b93fe2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c55f8f79-5575-4345-bd0a-e34c51b93fe2.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-c55f8f79-5575-4345-bd0a-e34c51b93fe2.shogun-image {
    
    
  }


.s-c55f8f79-5575-4345-bd0a-e34c51b93fe2 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-c55f8f79-5575-4345-bd0a-e34c51b93fe2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c55f8f79-5575-4345-bd0a-e34c51b93fe2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c55f8f79-5575-4345-bd0a-e34c51b93fe2.shogun-image {
  box-sizing: border-box;
}



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





  img.s-c55f8f79-5575-4345-bd0a-e34c51b93fe2.shogun-image {
    
    
  }


.s-c55f8f79-5575-4345-bd0a-e34c51b93fe2 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-c55f8f79-5575-4345-bd0a-e34c51b93fe2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c55f8f79-5575-4345-bd0a-e34c51b93fe2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c55f8f79-5575-4345-bd0a-e34c51b93fe2.shogun-image {
  box-sizing: border-box;
}



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





  img.s-c55f8f79-5575-4345-bd0a-e34c51b93fe2.shogun-image {
    
    
  }


.s-c55f8f79-5575-4345-bd0a-e34c51b93fe2 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-c55f8f79-5575-4345-bd0a-e34c51b93fe2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c55f8f79-5575-4345-bd0a-e34c51b93fe2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c55f8f79-5575-4345-bd0a-e34c51b93fe2.shogun-image {
  box-sizing: border-box;
}



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





  img.s-c55f8f79-5575-4345-bd0a-e34c51b93fe2.shogun-image {
    
    
  }


.s-c55f8f79-5575-4345-bd0a-e34c51b93fe2 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-c55f8f79-5575-4345-bd0a-e34c51b93fe2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c55f8f79-5575-4345-bd0a-e34c51b93fe2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c55f8f79-5575-4345-bd0a-e34c51b93fe2.shogun-image {
  box-sizing: border-box;
}



}
#s-d4204460-41e9-4dd6-abd7-d90d6fce5f9e {
  margin-top: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d4204460-41e9-4dd6-abd7-d90d6fce5f9e .shogun-heading-component h5 {
  color: rgba(31, 31, 31, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-f4e275e9-597c-4079-b90a-2ab51492a841 {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-f4e275e9-597c-4079-b90a-2ab51492a841 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f4e275e9-597c-4079-b90a-2ab51492a841.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f732065b-ced3-47a7-8d3e-7c61915be9bc {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: rgba(29, 29, 29, 0);
border-radius: 3px;
max-width: 100%;
background-color: rgba(29, 29, 29, 0.9);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-f732065b-ced3-47a7-8d3e-7c61915be9bc:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 0) !important;
background-color: rgba(74, 74, 74, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-f732065b-ced3-47a7-8d3e-7c61915be9bc:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(155, 155, 155, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-f732065b-ced3-47a7-8d3e-7c61915be9bc-root {
    text-align: center;
  }


#s-f732065b-ced3-47a7-8d3e-7c61915be9bc.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-f732065b-ced3-47a7-8d3e-7c61915be9bc-root {
    text-align: center;
  }


#s-f732065b-ced3-47a7-8d3e-7c61915be9bc.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f732065b-ced3-47a7-8d3e-7c61915be9bc-root {
    text-align: center;
  }


#s-f732065b-ced3-47a7-8d3e-7c61915be9bc.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f732065b-ced3-47a7-8d3e-7c61915be9bc-root {
    text-align: center;
  }


#s-f732065b-ced3-47a7-8d3e-7c61915be9bc.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-f732065b-ced3-47a7-8d3e-7c61915be9bc-root {
    text-align: center;
  }


#s-f732065b-ced3-47a7-8d3e-7c61915be9bc.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-f732065b-ced3-47a7-8d3e-7c61915be9bc-root {
    text-align: center;
  }


#s-f732065b-ced3-47a7-8d3e-7c61915be9bc.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-cbafc8d7-b948-4120-aad7-557c554ee332 {
  margin-top: 13%;
margin-bottom: 0%;
}

#s-cbafc8d7-b948-4120-aad7-557c554ee332 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(13, calc(100vw / 24));
}

#s-badd3e7a-383a-4682-8484-4fd60278f6ff {
  aspect-ratio: 13/13;
text-align: center;
}

#s-badd3e7a-383a-4682-8484-4fd60278f6ff-root {
  grid-column-start: 1;
grid-column-end: 14;
grid-row-start: 1;
grid-row-end: 14;
z-index: 0;
}





  #s-badd3e7a-383a-4682-8484-4fd60278f6ff img.shogun-image,
  #s-badd3e7a-383a-4682-8484-4fd60278f6ff .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-badd3e7a-383a-4682-8484-4fd60278f6ff {
    width: 100%;
    height: auto;
  }

  #s-badd3e7a-383a-4682-8484-4fd60278f6ff img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-badd3e7a-383a-4682-8484-4fd60278f6ff.shogun-image {
    
    
  }


.s-badd3e7a-383a-4682-8484-4fd60278f6ff .shogun-image-content {
  
    align-items: center;
  
}

.s-badd3e7a-383a-4682-8484-4fd60278f6ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-badd3e7a-383a-4682-8484-4fd60278f6ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-badd3e7a-383a-4682-8484-4fd60278f6ff.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-badd3e7a-383a-4682-8484-4fd60278f6ff {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-badd3e7a-383a-4682-8484-4fd60278f6ff.shogun-image-container {
      position: relative;
    }

    .s-badd3e7a-383a-4682-8484-4fd60278f6ff.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-badd3e7a-383a-4682-8484-4fd60278f6ff.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-badd3e7a-383a-4682-8484-4fd60278f6ff img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-badd3e7a-383a-4682-8484-4fd60278f6ff img.shogun-image,
  #s-badd3e7a-383a-4682-8484-4fd60278f6ff .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-badd3e7a-383a-4682-8484-4fd60278f6ff {
    width: 100%;
    height: auto;
  }

  #s-badd3e7a-383a-4682-8484-4fd60278f6ff img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-badd3e7a-383a-4682-8484-4fd60278f6ff.shogun-image {
    
    
  }


.s-badd3e7a-383a-4682-8484-4fd60278f6ff .shogun-image-content {
  
    align-items: center;
  
}

.s-badd3e7a-383a-4682-8484-4fd60278f6ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-badd3e7a-383a-4682-8484-4fd60278f6ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-badd3e7a-383a-4682-8484-4fd60278f6ff.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-badd3e7a-383a-4682-8484-4fd60278f6ff {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-badd3e7a-383a-4682-8484-4fd60278f6ff.shogun-image-container {
      position: relative;
    }

    .s-badd3e7a-383a-4682-8484-4fd60278f6ff.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-badd3e7a-383a-4682-8484-4fd60278f6ff.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-badd3e7a-383a-4682-8484-4fd60278f6ff img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-badd3e7a-383a-4682-8484-4fd60278f6ff img.shogun-image,
  #s-badd3e7a-383a-4682-8484-4fd60278f6ff .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-badd3e7a-383a-4682-8484-4fd60278f6ff {
    width: 100%;
    height: auto;
  }

  #s-badd3e7a-383a-4682-8484-4fd60278f6ff img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-badd3e7a-383a-4682-8484-4fd60278f6ff.shogun-image {
    
    
  }


.s-badd3e7a-383a-4682-8484-4fd60278f6ff .shogun-image-content {
  
    align-items: center;
  
}

.s-badd3e7a-383a-4682-8484-4fd60278f6ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-badd3e7a-383a-4682-8484-4fd60278f6ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-badd3e7a-383a-4682-8484-4fd60278f6ff.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-badd3e7a-383a-4682-8484-4fd60278f6ff {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-badd3e7a-383a-4682-8484-4fd60278f6ff.shogun-image-container {
      position: relative;
    }

    .s-badd3e7a-383a-4682-8484-4fd60278f6ff.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-badd3e7a-383a-4682-8484-4fd60278f6ff.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-badd3e7a-383a-4682-8484-4fd60278f6ff img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-badd3e7a-383a-4682-8484-4fd60278f6ff img.shogun-image,
  #s-badd3e7a-383a-4682-8484-4fd60278f6ff .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-badd3e7a-383a-4682-8484-4fd60278f6ff {
    width: 100%;
    height: auto;
  }

  #s-badd3e7a-383a-4682-8484-4fd60278f6ff img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-badd3e7a-383a-4682-8484-4fd60278f6ff.shogun-image {
    
    
  }


.s-badd3e7a-383a-4682-8484-4fd60278f6ff .shogun-image-content {
  
    align-items: center;
  
}

.s-badd3e7a-383a-4682-8484-4fd60278f6ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-badd3e7a-383a-4682-8484-4fd60278f6ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-badd3e7a-383a-4682-8484-4fd60278f6ff.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-badd3e7a-383a-4682-8484-4fd60278f6ff {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-badd3e7a-383a-4682-8484-4fd60278f6ff.shogun-image-container {
      position: relative;
    }

    .s-badd3e7a-383a-4682-8484-4fd60278f6ff.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-badd3e7a-383a-4682-8484-4fd60278f6ff.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-badd3e7a-383a-4682-8484-4fd60278f6ff img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-badd3e7a-383a-4682-8484-4fd60278f6ff img.shogun-image,
  #s-badd3e7a-383a-4682-8484-4fd60278f6ff .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-badd3e7a-383a-4682-8484-4fd60278f6ff {
    width: 100%;
    height: auto;
  }

  #s-badd3e7a-383a-4682-8484-4fd60278f6ff img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-badd3e7a-383a-4682-8484-4fd60278f6ff.shogun-image {
    
    
  }


.s-badd3e7a-383a-4682-8484-4fd60278f6ff .shogun-image-content {
  
    align-items: center;
  
}

.s-badd3e7a-383a-4682-8484-4fd60278f6ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-badd3e7a-383a-4682-8484-4fd60278f6ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-badd3e7a-383a-4682-8484-4fd60278f6ff.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-badd3e7a-383a-4682-8484-4fd60278f6ff {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-badd3e7a-383a-4682-8484-4fd60278f6ff.shogun-image-container {
      position: relative;
    }

    .s-badd3e7a-383a-4682-8484-4fd60278f6ff.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-badd3e7a-383a-4682-8484-4fd60278f6ff.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-badd3e7a-383a-4682-8484-4fd60278f6ff img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-f83920ff-bee1-4cac-87bb-14cdcc06764c {
  aspect-ratio: 11/11;
text-align: center;
}

#s-f83920ff-bee1-4cac-87bb-14cdcc06764c-root {
  grid-column-start: 14;
grid-column-end: 25;
grid-row-start: 1;
grid-row-end: 12;
z-index: 1;
}





  #s-f83920ff-bee1-4cac-87bb-14cdcc06764c img.shogun-image,
  #s-f83920ff-bee1-4cac-87bb-14cdcc06764c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f83920ff-bee1-4cac-87bb-14cdcc06764c {
    width: 100%;
    height: auto;
  }

  #s-f83920ff-bee1-4cac-87bb-14cdcc06764c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f83920ff-bee1-4cac-87bb-14cdcc06764c.shogun-image {
    
    
  }


.s-f83920ff-bee1-4cac-87bb-14cdcc06764c .shogun-image-content {
  
    align-items: center;
  
}

.s-f83920ff-bee1-4cac-87bb-14cdcc06764c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f83920ff-bee1-4cac-87bb-14cdcc06764c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f83920ff-bee1-4cac-87bb-14cdcc06764c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f83920ff-bee1-4cac-87bb-14cdcc06764c {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-f83920ff-bee1-4cac-87bb-14cdcc06764c.shogun-image-container {
      position: relative;
    }

    .s-f83920ff-bee1-4cac-87bb-14cdcc06764c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f83920ff-bee1-4cac-87bb-14cdcc06764c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f83920ff-bee1-4cac-87bb-14cdcc06764c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-f83920ff-bee1-4cac-87bb-14cdcc06764c img.shogun-image,
  #s-f83920ff-bee1-4cac-87bb-14cdcc06764c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f83920ff-bee1-4cac-87bb-14cdcc06764c {
    width: 100%;
    height: auto;
  }

  #s-f83920ff-bee1-4cac-87bb-14cdcc06764c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f83920ff-bee1-4cac-87bb-14cdcc06764c.shogun-image {
    
    
  }


.s-f83920ff-bee1-4cac-87bb-14cdcc06764c .shogun-image-content {
  
    align-items: center;
  
}

.s-f83920ff-bee1-4cac-87bb-14cdcc06764c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f83920ff-bee1-4cac-87bb-14cdcc06764c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f83920ff-bee1-4cac-87bb-14cdcc06764c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f83920ff-bee1-4cac-87bb-14cdcc06764c {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-f83920ff-bee1-4cac-87bb-14cdcc06764c.shogun-image-container {
      position: relative;
    }

    .s-f83920ff-bee1-4cac-87bb-14cdcc06764c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f83920ff-bee1-4cac-87bb-14cdcc06764c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f83920ff-bee1-4cac-87bb-14cdcc06764c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-f83920ff-bee1-4cac-87bb-14cdcc06764c img.shogun-image,
  #s-f83920ff-bee1-4cac-87bb-14cdcc06764c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f83920ff-bee1-4cac-87bb-14cdcc06764c {
    width: 100%;
    height: auto;
  }

  #s-f83920ff-bee1-4cac-87bb-14cdcc06764c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f83920ff-bee1-4cac-87bb-14cdcc06764c.shogun-image {
    
    
  }


.s-f83920ff-bee1-4cac-87bb-14cdcc06764c .shogun-image-content {
  
    align-items: center;
  
}

.s-f83920ff-bee1-4cac-87bb-14cdcc06764c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f83920ff-bee1-4cac-87bb-14cdcc06764c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f83920ff-bee1-4cac-87bb-14cdcc06764c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f83920ff-bee1-4cac-87bb-14cdcc06764c {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-f83920ff-bee1-4cac-87bb-14cdcc06764c.shogun-image-container {
      position: relative;
    }

    .s-f83920ff-bee1-4cac-87bb-14cdcc06764c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f83920ff-bee1-4cac-87bb-14cdcc06764c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f83920ff-bee1-4cac-87bb-14cdcc06764c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-f83920ff-bee1-4cac-87bb-14cdcc06764c img.shogun-image,
  #s-f83920ff-bee1-4cac-87bb-14cdcc06764c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f83920ff-bee1-4cac-87bb-14cdcc06764c {
    width: 100%;
    height: auto;
  }

  #s-f83920ff-bee1-4cac-87bb-14cdcc06764c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f83920ff-bee1-4cac-87bb-14cdcc06764c.shogun-image {
    
    
  }


.s-f83920ff-bee1-4cac-87bb-14cdcc06764c .shogun-image-content {
  
    align-items: center;
  
}

.s-f83920ff-bee1-4cac-87bb-14cdcc06764c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f83920ff-bee1-4cac-87bb-14cdcc06764c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f83920ff-bee1-4cac-87bb-14cdcc06764c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f83920ff-bee1-4cac-87bb-14cdcc06764c {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-f83920ff-bee1-4cac-87bb-14cdcc06764c.shogun-image-container {
      position: relative;
    }

    .s-f83920ff-bee1-4cac-87bb-14cdcc06764c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f83920ff-bee1-4cac-87bb-14cdcc06764c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f83920ff-bee1-4cac-87bb-14cdcc06764c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-f83920ff-bee1-4cac-87bb-14cdcc06764c img.shogun-image,
  #s-f83920ff-bee1-4cac-87bb-14cdcc06764c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f83920ff-bee1-4cac-87bb-14cdcc06764c {
    width: 100%;
    height: auto;
  }

  #s-f83920ff-bee1-4cac-87bb-14cdcc06764c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f83920ff-bee1-4cac-87bb-14cdcc06764c.shogun-image {
    
    
  }


.s-f83920ff-bee1-4cac-87bb-14cdcc06764c .shogun-image-content {
  
    align-items: center;
  
}

.s-f83920ff-bee1-4cac-87bb-14cdcc06764c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f83920ff-bee1-4cac-87bb-14cdcc06764c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f83920ff-bee1-4cac-87bb-14cdcc06764c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f83920ff-bee1-4cac-87bb-14cdcc06764c {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-f83920ff-bee1-4cac-87bb-14cdcc06764c.shogun-image-container {
      position: relative;
    }

    .s-f83920ff-bee1-4cac-87bb-14cdcc06764c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f83920ff-bee1-4cac-87bb-14cdcc06764c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f83920ff-bee1-4cac-87bb-14cdcc06764c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-f602bdf7-4c28-406c-89d5-5e0264ea15d5 {
  margin-top: -3%;
}

#s-f602bdf7-4c28-406c-89d5-5e0264ea15d5 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(6, calc(100vw / 24));
}

#s-18b19a1f-4c6b-4660-867d-010d5541f0dc {
  margin-top: 3%;
margin-left: 0%;
margin-right: 20%;
aspect-ratio: 5/5;
text-align: center;
}

#s-18b19a1f-4c6b-4660-867d-010d5541f0dc-root {
  grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 2;
grid-row-end: 7;
z-index: 0;
}





  #s-18b19a1f-4c6b-4660-867d-010d5541f0dc img.shogun-image,
  #s-18b19a1f-4c6b-4660-867d-010d5541f0dc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-18b19a1f-4c6b-4660-867d-010d5541f0dc {
    width: 100%;
    height: auto;
  }

  #s-18b19a1f-4c6b-4660-867d-010d5541f0dc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-18b19a1f-4c6b-4660-867d-010d5541f0dc.shogun-image {
    
    
  }


.s-18b19a1f-4c6b-4660-867d-010d5541f0dc .shogun-image-content {
  
    align-items: center;
  
}

.s-18b19a1f-4c6b-4660-867d-010d5541f0dc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-18b19a1f-4c6b-4660-867d-010d5541f0dc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18b19a1f-4c6b-4660-867d-010d5541f0dc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-18b19a1f-4c6b-4660-867d-010d5541f0dc {
      --shg-aspect-ratio: calc(5/5); 
    }

    .s-18b19a1f-4c6b-4660-867d-010d5541f0dc.shogun-image-container {
      position: relative;
    }

    .s-18b19a1f-4c6b-4660-867d-010d5541f0dc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-18b19a1f-4c6b-4660-867d-010d5541f0dc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-18b19a1f-4c6b-4660-867d-010d5541f0dc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-18b19a1f-4c6b-4660-867d-010d5541f0dc img.shogun-image,
  #s-18b19a1f-4c6b-4660-867d-010d5541f0dc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-18b19a1f-4c6b-4660-867d-010d5541f0dc {
    width: 100%;
    height: auto;
  }

  #s-18b19a1f-4c6b-4660-867d-010d5541f0dc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-18b19a1f-4c6b-4660-867d-010d5541f0dc.shogun-image {
    
    
  }


.s-18b19a1f-4c6b-4660-867d-010d5541f0dc .shogun-image-content {
  
    align-items: center;
  
}

.s-18b19a1f-4c6b-4660-867d-010d5541f0dc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-18b19a1f-4c6b-4660-867d-010d5541f0dc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18b19a1f-4c6b-4660-867d-010d5541f0dc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-18b19a1f-4c6b-4660-867d-010d5541f0dc {
      --shg-aspect-ratio: calc(5/5); 
    }

    .s-18b19a1f-4c6b-4660-867d-010d5541f0dc.shogun-image-container {
      position: relative;
    }

    .s-18b19a1f-4c6b-4660-867d-010d5541f0dc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-18b19a1f-4c6b-4660-867d-010d5541f0dc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-18b19a1f-4c6b-4660-867d-010d5541f0dc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-18b19a1f-4c6b-4660-867d-010d5541f0dc img.shogun-image,
  #s-18b19a1f-4c6b-4660-867d-010d5541f0dc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-18b19a1f-4c6b-4660-867d-010d5541f0dc {
    width: 100%;
    height: auto;
  }

  #s-18b19a1f-4c6b-4660-867d-010d5541f0dc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-18b19a1f-4c6b-4660-867d-010d5541f0dc.shogun-image {
    
    
  }


.s-18b19a1f-4c6b-4660-867d-010d5541f0dc .shogun-image-content {
  
    align-items: center;
  
}

.s-18b19a1f-4c6b-4660-867d-010d5541f0dc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-18b19a1f-4c6b-4660-867d-010d5541f0dc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18b19a1f-4c6b-4660-867d-010d5541f0dc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-18b19a1f-4c6b-4660-867d-010d5541f0dc {
      --shg-aspect-ratio: calc(5/5); 
    }

    .s-18b19a1f-4c6b-4660-867d-010d5541f0dc.shogun-image-container {
      position: relative;
    }

    .s-18b19a1f-4c6b-4660-867d-010d5541f0dc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-18b19a1f-4c6b-4660-867d-010d5541f0dc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-18b19a1f-4c6b-4660-867d-010d5541f0dc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-18b19a1f-4c6b-4660-867d-010d5541f0dc img.shogun-image,
  #s-18b19a1f-4c6b-4660-867d-010d5541f0dc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-18b19a1f-4c6b-4660-867d-010d5541f0dc {
    width: 100%;
    height: auto;
  }

  #s-18b19a1f-4c6b-4660-867d-010d5541f0dc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-18b19a1f-4c6b-4660-867d-010d5541f0dc.shogun-image {
    
    
  }


.s-18b19a1f-4c6b-4660-867d-010d5541f0dc .shogun-image-content {
  
    align-items: center;
  
}

.s-18b19a1f-4c6b-4660-867d-010d5541f0dc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-18b19a1f-4c6b-4660-867d-010d5541f0dc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18b19a1f-4c6b-4660-867d-010d5541f0dc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-18b19a1f-4c6b-4660-867d-010d5541f0dc {
      --shg-aspect-ratio: calc(5/5); 
    }

    .s-18b19a1f-4c6b-4660-867d-010d5541f0dc.shogun-image-container {
      position: relative;
    }

    .s-18b19a1f-4c6b-4660-867d-010d5541f0dc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-18b19a1f-4c6b-4660-867d-010d5541f0dc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-18b19a1f-4c6b-4660-867d-010d5541f0dc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-18b19a1f-4c6b-4660-867d-010d5541f0dc img.shogun-image,
  #s-18b19a1f-4c6b-4660-867d-010d5541f0dc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-18b19a1f-4c6b-4660-867d-010d5541f0dc {
    width: 100%;
    height: auto;
  }

  #s-18b19a1f-4c6b-4660-867d-010d5541f0dc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-18b19a1f-4c6b-4660-867d-010d5541f0dc.shogun-image {
    
    
  }


.s-18b19a1f-4c6b-4660-867d-010d5541f0dc .shogun-image-content {
  
    align-items: center;
  
}

.s-18b19a1f-4c6b-4660-867d-010d5541f0dc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-18b19a1f-4c6b-4660-867d-010d5541f0dc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18b19a1f-4c6b-4660-867d-010d5541f0dc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-18b19a1f-4c6b-4660-867d-010d5541f0dc {
      --shg-aspect-ratio: calc(5/5); 
    }

    .s-18b19a1f-4c6b-4660-867d-010d5541f0dc.shogun-image-container {
      position: relative;
    }

    .s-18b19a1f-4c6b-4660-867d-010d5541f0dc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-18b19a1f-4c6b-4660-867d-010d5541f0dc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-18b19a1f-4c6b-4660-867d-010d5541f0dc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-ad537a98-d430-4618-9788-4cda4f4083e1 {
  margin-top: 5%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ad537a98-d430-4618-9788-4cda4f4083e1 {
  grid-column-start: 6;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 7;
z-index: 1;
}

#s-ad537a98-d430-4618-9788-4cda4f4083e1 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 1px;
  text-align: left;
}



#s-79511bc5-15c9-4b0b-aff8-5c94c43ef90f {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-08d4221e-7c1f-40ea-8c42-2a211b8c5332 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}







  img.s-08d4221e-7c1f-40ea-8c42-2a211b8c5332.shogun-image {
    
    
  }


.s-08d4221e-7c1f-40ea-8c42-2a211b8c5332 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-08d4221e-7c1f-40ea-8c42-2a211b8c5332.shg-align-container {
  display: flex;
  justify-content: center
}

.s-08d4221e-7c1f-40ea-8c42-2a211b8c5332.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-08d4221e-7c1f-40ea-8c42-2a211b8c5332.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-08d4221e-7c1f-40ea-8c42-2a211b8c5332.shogun-image {
    
    
  }


.s-08d4221e-7c1f-40ea-8c42-2a211b8c5332 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-08d4221e-7c1f-40ea-8c42-2a211b8c5332.shg-align-container {
  display: flex;
  justify-content: center
}

.s-08d4221e-7c1f-40ea-8c42-2a211b8c5332.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-08d4221e-7c1f-40ea-8c42-2a211b8c5332.shogun-image {
  box-sizing: border-box;
}



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





  img.s-08d4221e-7c1f-40ea-8c42-2a211b8c5332.shogun-image {
    
    
  }


.s-08d4221e-7c1f-40ea-8c42-2a211b8c5332 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-08d4221e-7c1f-40ea-8c42-2a211b8c5332.shg-align-container {
  display: flex;
  justify-content: center
}

.s-08d4221e-7c1f-40ea-8c42-2a211b8c5332.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-08d4221e-7c1f-40ea-8c42-2a211b8c5332.shogun-image {
  box-sizing: border-box;
}



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





  img.s-08d4221e-7c1f-40ea-8c42-2a211b8c5332.shogun-image {
    
    
  }


.s-08d4221e-7c1f-40ea-8c42-2a211b8c5332 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-08d4221e-7c1f-40ea-8c42-2a211b8c5332.shg-align-container {
  display: flex;
  justify-content: center
}

.s-08d4221e-7c1f-40ea-8c42-2a211b8c5332.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-08d4221e-7c1f-40ea-8c42-2a211b8c5332.shogun-image {
  box-sizing: border-box;
}



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





  img.s-08d4221e-7c1f-40ea-8c42-2a211b8c5332.shogun-image {
    
    
  }


.s-08d4221e-7c1f-40ea-8c42-2a211b8c5332 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-08d4221e-7c1f-40ea-8c42-2a211b8c5332.shg-align-container {
  display: flex;
  justify-content: center
}

.s-08d4221e-7c1f-40ea-8c42-2a211b8c5332.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-08d4221e-7c1f-40ea-8c42-2a211b8c5332.shogun-image {
  box-sizing: border-box;
}



}
#s-9d17d300-31ec-4de6-b300-93705373eb8e {
  margin-top: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9d17d300-31ec-4de6-b300-93705373eb8e .shogun-heading-component h5 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-5c92d0b3-9a94-4b0c-af3d-4a358051fbf1 {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-5c92d0b3-9a94-4b0c-af3d-4a358051fbf1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5c92d0b3-9a94-4b0c-af3d-4a358051fbf1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cb05ef86-eb89-4f37-ab2f-ff053e637e90 {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: rgba(255, 255, 255, 1);
border-radius: 3px;
max-width: 100%;
background-color: rgba(255, 255, 255, 0.5);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-cb05ef86-eb89-4f37-ab2f-ff053e637e90:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: rgba(255, 255, 255, 0.36) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-cb05ef86-eb89-4f37-ab2f-ff053e637e90:active {background-color: rgba(255, 255, 255, 0.51) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-cb05ef86-eb89-4f37-ab2f-ff053e637e90-root {
    text-align: center;
  }


#s-cb05ef86-eb89-4f37-ab2f-ff053e637e90.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-cb05ef86-eb89-4f37-ab2f-ff053e637e90-root {
    text-align: center;
  }


#s-cb05ef86-eb89-4f37-ab2f-ff053e637e90.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-cb05ef86-eb89-4f37-ab2f-ff053e637e90-root {
    text-align: center;
  }


#s-cb05ef86-eb89-4f37-ab2f-ff053e637e90.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-cb05ef86-eb89-4f37-ab2f-ff053e637e90-root {
    text-align: center;
  }


#s-cb05ef86-eb89-4f37-ab2f-ff053e637e90.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-cb05ef86-eb89-4f37-ab2f-ff053e637e90-root {
    text-align: center;
  }


#s-cb05ef86-eb89-4f37-ab2f-ff053e637e90.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-cb05ef86-eb89-4f37-ab2f-ff053e637e90-root {
    text-align: center;
  }


#s-cb05ef86-eb89-4f37-ab2f-ff053e637e90.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-da86528d-9347-49f6-a406-367bc6ea2923 {
  margin-top: 13%;
}

#s-da86528d-9347-49f6-a406-367bc6ea2923 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(14, calc(100vw / 24));
}

#s-44cfd076-e9d7-458b-b3ed-aaae65facb2e {
  aspect-ratio: 11/11;
text-align: center;
}

#s-44cfd076-e9d7-458b-b3ed-aaae65facb2e-root {
  grid-column-start: 1;
grid-column-end: 12;
grid-row-start: 4;
grid-row-end: 15;
z-index: 0;
}





  #s-44cfd076-e9d7-458b-b3ed-aaae65facb2e img.shogun-image,
  #s-44cfd076-e9d7-458b-b3ed-aaae65facb2e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-44cfd076-e9d7-458b-b3ed-aaae65facb2e {
    width: 100%;
    height: auto;
  }

  #s-44cfd076-e9d7-458b-b3ed-aaae65facb2e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-44cfd076-e9d7-458b-b3ed-aaae65facb2e.shogun-image {
    
    
  }


.s-44cfd076-e9d7-458b-b3ed-aaae65facb2e .shogun-image-content {
  
    align-items: center;
  
}

.s-44cfd076-e9d7-458b-b3ed-aaae65facb2e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44cfd076-e9d7-458b-b3ed-aaae65facb2e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44cfd076-e9d7-458b-b3ed-aaae65facb2e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-44cfd076-e9d7-458b-b3ed-aaae65facb2e {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-44cfd076-e9d7-458b-b3ed-aaae65facb2e.shogun-image-container {
      position: relative;
    }

    .s-44cfd076-e9d7-458b-b3ed-aaae65facb2e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-44cfd076-e9d7-458b-b3ed-aaae65facb2e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-44cfd076-e9d7-458b-b3ed-aaae65facb2e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-44cfd076-e9d7-458b-b3ed-aaae65facb2e img.shogun-image,
  #s-44cfd076-e9d7-458b-b3ed-aaae65facb2e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-44cfd076-e9d7-458b-b3ed-aaae65facb2e {
    width: 100%;
    height: auto;
  }

  #s-44cfd076-e9d7-458b-b3ed-aaae65facb2e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-44cfd076-e9d7-458b-b3ed-aaae65facb2e.shogun-image {
    
    
  }


.s-44cfd076-e9d7-458b-b3ed-aaae65facb2e .shogun-image-content {
  
    align-items: center;
  
}

.s-44cfd076-e9d7-458b-b3ed-aaae65facb2e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44cfd076-e9d7-458b-b3ed-aaae65facb2e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44cfd076-e9d7-458b-b3ed-aaae65facb2e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-44cfd076-e9d7-458b-b3ed-aaae65facb2e {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-44cfd076-e9d7-458b-b3ed-aaae65facb2e.shogun-image-container {
      position: relative;
    }

    .s-44cfd076-e9d7-458b-b3ed-aaae65facb2e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-44cfd076-e9d7-458b-b3ed-aaae65facb2e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-44cfd076-e9d7-458b-b3ed-aaae65facb2e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-44cfd076-e9d7-458b-b3ed-aaae65facb2e img.shogun-image,
  #s-44cfd076-e9d7-458b-b3ed-aaae65facb2e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-44cfd076-e9d7-458b-b3ed-aaae65facb2e {
    width: 100%;
    height: auto;
  }

  #s-44cfd076-e9d7-458b-b3ed-aaae65facb2e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-44cfd076-e9d7-458b-b3ed-aaae65facb2e.shogun-image {
    
    
  }


.s-44cfd076-e9d7-458b-b3ed-aaae65facb2e .shogun-image-content {
  
    align-items: center;
  
}

.s-44cfd076-e9d7-458b-b3ed-aaae65facb2e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44cfd076-e9d7-458b-b3ed-aaae65facb2e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44cfd076-e9d7-458b-b3ed-aaae65facb2e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-44cfd076-e9d7-458b-b3ed-aaae65facb2e {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-44cfd076-e9d7-458b-b3ed-aaae65facb2e.shogun-image-container {
      position: relative;
    }

    .s-44cfd076-e9d7-458b-b3ed-aaae65facb2e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-44cfd076-e9d7-458b-b3ed-aaae65facb2e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-44cfd076-e9d7-458b-b3ed-aaae65facb2e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-44cfd076-e9d7-458b-b3ed-aaae65facb2e img.shogun-image,
  #s-44cfd076-e9d7-458b-b3ed-aaae65facb2e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-44cfd076-e9d7-458b-b3ed-aaae65facb2e {
    width: 100%;
    height: auto;
  }

  #s-44cfd076-e9d7-458b-b3ed-aaae65facb2e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-44cfd076-e9d7-458b-b3ed-aaae65facb2e.shogun-image {
    
    
  }


.s-44cfd076-e9d7-458b-b3ed-aaae65facb2e .shogun-image-content {
  
    align-items: center;
  
}

.s-44cfd076-e9d7-458b-b3ed-aaae65facb2e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44cfd076-e9d7-458b-b3ed-aaae65facb2e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44cfd076-e9d7-458b-b3ed-aaae65facb2e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-44cfd076-e9d7-458b-b3ed-aaae65facb2e {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-44cfd076-e9d7-458b-b3ed-aaae65facb2e.shogun-image-container {
      position: relative;
    }

    .s-44cfd076-e9d7-458b-b3ed-aaae65facb2e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-44cfd076-e9d7-458b-b3ed-aaae65facb2e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-44cfd076-e9d7-458b-b3ed-aaae65facb2e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-44cfd076-e9d7-458b-b3ed-aaae65facb2e img.shogun-image,
  #s-44cfd076-e9d7-458b-b3ed-aaae65facb2e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-44cfd076-e9d7-458b-b3ed-aaae65facb2e {
    width: 100%;
    height: auto;
  }

  #s-44cfd076-e9d7-458b-b3ed-aaae65facb2e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-44cfd076-e9d7-458b-b3ed-aaae65facb2e.shogun-image {
    
    
  }


.s-44cfd076-e9d7-458b-b3ed-aaae65facb2e .shogun-image-content {
  
    align-items: center;
  
}

.s-44cfd076-e9d7-458b-b3ed-aaae65facb2e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44cfd076-e9d7-458b-b3ed-aaae65facb2e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44cfd076-e9d7-458b-b3ed-aaae65facb2e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-44cfd076-e9d7-458b-b3ed-aaae65facb2e {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-44cfd076-e9d7-458b-b3ed-aaae65facb2e.shogun-image-container {
      position: relative;
    }

    .s-44cfd076-e9d7-458b-b3ed-aaae65facb2e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-44cfd076-e9d7-458b-b3ed-aaae65facb2e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-44cfd076-e9d7-458b-b3ed-aaae65facb2e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-959cfac1-d25d-4a7d-8cd4-77385f1797b2 {
  aspect-ratio: 14/14;
text-align: center;
}

#s-959cfac1-d25d-4a7d-8cd4-77385f1797b2-root {
  grid-column-start: 11;
grid-column-end: 25;
grid-row-start: 1;
grid-row-end: 15;
z-index: 1;
}





  #s-959cfac1-d25d-4a7d-8cd4-77385f1797b2 img.shogun-image,
  #s-959cfac1-d25d-4a7d-8cd4-77385f1797b2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-959cfac1-d25d-4a7d-8cd4-77385f1797b2 {
    width: 100%;
    height: auto;
  }

  #s-959cfac1-d25d-4a7d-8cd4-77385f1797b2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-959cfac1-d25d-4a7d-8cd4-77385f1797b2.shogun-image {
    
    
  }


.s-959cfac1-d25d-4a7d-8cd4-77385f1797b2 .shogun-image-content {
  
    align-items: center;
  
}

.s-959cfac1-d25d-4a7d-8cd4-77385f1797b2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-959cfac1-d25d-4a7d-8cd4-77385f1797b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-959cfac1-d25d-4a7d-8cd4-77385f1797b2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-959cfac1-d25d-4a7d-8cd4-77385f1797b2 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-959cfac1-d25d-4a7d-8cd4-77385f1797b2.shogun-image-container {
      position: relative;
    }

    .s-959cfac1-d25d-4a7d-8cd4-77385f1797b2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-959cfac1-d25d-4a7d-8cd4-77385f1797b2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-959cfac1-d25d-4a7d-8cd4-77385f1797b2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-959cfac1-d25d-4a7d-8cd4-77385f1797b2 img.shogun-image,
  #s-959cfac1-d25d-4a7d-8cd4-77385f1797b2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-959cfac1-d25d-4a7d-8cd4-77385f1797b2 {
    width: 100%;
    height: auto;
  }

  #s-959cfac1-d25d-4a7d-8cd4-77385f1797b2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-959cfac1-d25d-4a7d-8cd4-77385f1797b2.shogun-image {
    
    
  }


.s-959cfac1-d25d-4a7d-8cd4-77385f1797b2 .shogun-image-content {
  
    align-items: center;
  
}

.s-959cfac1-d25d-4a7d-8cd4-77385f1797b2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-959cfac1-d25d-4a7d-8cd4-77385f1797b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-959cfac1-d25d-4a7d-8cd4-77385f1797b2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-959cfac1-d25d-4a7d-8cd4-77385f1797b2 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-959cfac1-d25d-4a7d-8cd4-77385f1797b2.shogun-image-container {
      position: relative;
    }

    .s-959cfac1-d25d-4a7d-8cd4-77385f1797b2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-959cfac1-d25d-4a7d-8cd4-77385f1797b2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-959cfac1-d25d-4a7d-8cd4-77385f1797b2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-959cfac1-d25d-4a7d-8cd4-77385f1797b2 img.shogun-image,
  #s-959cfac1-d25d-4a7d-8cd4-77385f1797b2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-959cfac1-d25d-4a7d-8cd4-77385f1797b2 {
    width: 100%;
    height: auto;
  }

  #s-959cfac1-d25d-4a7d-8cd4-77385f1797b2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-959cfac1-d25d-4a7d-8cd4-77385f1797b2.shogun-image {
    
    
  }


.s-959cfac1-d25d-4a7d-8cd4-77385f1797b2 .shogun-image-content {
  
    align-items: center;
  
}

.s-959cfac1-d25d-4a7d-8cd4-77385f1797b2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-959cfac1-d25d-4a7d-8cd4-77385f1797b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-959cfac1-d25d-4a7d-8cd4-77385f1797b2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-959cfac1-d25d-4a7d-8cd4-77385f1797b2 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-959cfac1-d25d-4a7d-8cd4-77385f1797b2.shogun-image-container {
      position: relative;
    }

    .s-959cfac1-d25d-4a7d-8cd4-77385f1797b2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-959cfac1-d25d-4a7d-8cd4-77385f1797b2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-959cfac1-d25d-4a7d-8cd4-77385f1797b2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-959cfac1-d25d-4a7d-8cd4-77385f1797b2 img.shogun-image,
  #s-959cfac1-d25d-4a7d-8cd4-77385f1797b2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-959cfac1-d25d-4a7d-8cd4-77385f1797b2 {
    width: 100%;
    height: auto;
  }

  #s-959cfac1-d25d-4a7d-8cd4-77385f1797b2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-959cfac1-d25d-4a7d-8cd4-77385f1797b2.shogun-image {
    
    
  }


.s-959cfac1-d25d-4a7d-8cd4-77385f1797b2 .shogun-image-content {
  
    align-items: center;
  
}

.s-959cfac1-d25d-4a7d-8cd4-77385f1797b2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-959cfac1-d25d-4a7d-8cd4-77385f1797b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-959cfac1-d25d-4a7d-8cd4-77385f1797b2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-959cfac1-d25d-4a7d-8cd4-77385f1797b2 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-959cfac1-d25d-4a7d-8cd4-77385f1797b2.shogun-image-container {
      position: relative;
    }

    .s-959cfac1-d25d-4a7d-8cd4-77385f1797b2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-959cfac1-d25d-4a7d-8cd4-77385f1797b2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-959cfac1-d25d-4a7d-8cd4-77385f1797b2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-959cfac1-d25d-4a7d-8cd4-77385f1797b2 img.shogun-image,
  #s-959cfac1-d25d-4a7d-8cd4-77385f1797b2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-959cfac1-d25d-4a7d-8cd4-77385f1797b2 {
    width: 100%;
    height: auto;
  }

  #s-959cfac1-d25d-4a7d-8cd4-77385f1797b2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-959cfac1-d25d-4a7d-8cd4-77385f1797b2.shogun-image {
    
    
  }


.s-959cfac1-d25d-4a7d-8cd4-77385f1797b2 .shogun-image-content {
  
    align-items: center;
  
}

.s-959cfac1-d25d-4a7d-8cd4-77385f1797b2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-959cfac1-d25d-4a7d-8cd4-77385f1797b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-959cfac1-d25d-4a7d-8cd4-77385f1797b2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-959cfac1-d25d-4a7d-8cd4-77385f1797b2 {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-959cfac1-d25d-4a7d-8cd4-77385f1797b2.shogun-image-container {
      position: relative;
    }

    .s-959cfac1-d25d-4a7d-8cd4-77385f1797b2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-959cfac1-d25d-4a7d-8cd4-77385f1797b2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-959cfac1-d25d-4a7d-8cd4-77385f1797b2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-bbc76a96-bc75-43c1-bd94-9601e3801756 {
  margin-top: -1%;
}

#s-bbc76a96-bc75-43c1-bd94-9601e3801756 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(5, calc(100vw / 24));
}

#s-3902c914-673c-463b-a8ce-4098a5bc326e {
  margin-left: 0%;
margin-right: 20%;
text-align: center;
}

#s-3902c914-673c-463b-a8ce-4098a5bc326e-root {
  grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 2;
grid-row-end: 6;
z-index: 0;
}







  img.s-3902c914-673c-463b-a8ce-4098a5bc326e.shogun-image {
    
    
  }


.s-3902c914-673c-463b-a8ce-4098a5bc326e .shogun-image-content {
  
    align-items: center;
  
}

.s-3902c914-673c-463b-a8ce-4098a5bc326e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3902c914-673c-463b-a8ce-4098a5bc326e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3902c914-673c-463b-a8ce-4098a5bc326e.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-3902c914-673c-463b-a8ce-4098a5bc326e.shogun-image {
    
    
  }


.s-3902c914-673c-463b-a8ce-4098a5bc326e .shogun-image-content {
  
    align-items: center;
  
}

.s-3902c914-673c-463b-a8ce-4098a5bc326e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3902c914-673c-463b-a8ce-4098a5bc326e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3902c914-673c-463b-a8ce-4098a5bc326e.shogun-image {
  box-sizing: border-box;
}



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





  img.s-3902c914-673c-463b-a8ce-4098a5bc326e.shogun-image {
    
    
  }


.s-3902c914-673c-463b-a8ce-4098a5bc326e .shogun-image-content {
  
    align-items: center;
  
}

.s-3902c914-673c-463b-a8ce-4098a5bc326e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3902c914-673c-463b-a8ce-4098a5bc326e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3902c914-673c-463b-a8ce-4098a5bc326e.shogun-image {
  box-sizing: border-box;
}



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





  img.s-3902c914-673c-463b-a8ce-4098a5bc326e.shogun-image {
    
    
  }


.s-3902c914-673c-463b-a8ce-4098a5bc326e .shogun-image-content {
  
    align-items: center;
  
}

.s-3902c914-673c-463b-a8ce-4098a5bc326e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3902c914-673c-463b-a8ce-4098a5bc326e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3902c914-673c-463b-a8ce-4098a5bc326e.shogun-image {
  box-sizing: border-box;
}



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





  img.s-3902c914-673c-463b-a8ce-4098a5bc326e.shogun-image {
    
    
  }


.s-3902c914-673c-463b-a8ce-4098a5bc326e .shogun-image-content {
  
    align-items: center;
  
}

.s-3902c914-673c-463b-a8ce-4098a5bc326e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3902c914-673c-463b-a8ce-4098a5bc326e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3902c914-673c-463b-a8ce-4098a5bc326e.shogun-image {
  box-sizing: border-box;
}



}
#s-b4607bb1-6236-47fc-abd4-84ef5d8641be {
  margin-top: 5%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b4607bb1-6236-47fc-abd4-84ef5d8641be {
  grid-column-start: 6;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 6;
z-index: 1;
}

#s-b4607bb1-6236-47fc-abd4-84ef5d8641be .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 1px;
  text-align: left;
}



#s-99cfa420-de18-4cbe-ac82-d18a70bbcad9 {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-04f0f21b-c94e-4abe-b051-dedd08c5014e {
  text-align: left;
}

#s-84540e45-2edc-48b2-b727-c1fcde6e78a5 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
max-width: 1500px;
aspect-ratio: 1/1;
text-align: center;
opacity: 1;
background-color: rgba(0, 0, 0, 1);
}





  #s-84540e45-2edc-48b2-b727-c1fcde6e78a5 img.shogun-image,
  #s-84540e45-2edc-48b2-b727-c1fcde6e78a5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-84540e45-2edc-48b2-b727-c1fcde6e78a5 {
    width: 100%;
    height: auto;
  }

  #s-84540e45-2edc-48b2-b727-c1fcde6e78a5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-84540e45-2edc-48b2-b727-c1fcde6e78a5.shogun-image {
    
    
  }


.s-84540e45-2edc-48b2-b727-c1fcde6e78a5 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-84540e45-2edc-48b2-b727-c1fcde6e78a5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-84540e45-2edc-48b2-b727-c1fcde6e78a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-84540e45-2edc-48b2-b727-c1fcde6e78a5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-84540e45-2edc-48b2-b727-c1fcde6e78a5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-84540e45-2edc-48b2-b727-c1fcde6e78a5.shogun-image-container {
      position: relative;
    }

    .s-84540e45-2edc-48b2-b727-c1fcde6e78a5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-84540e45-2edc-48b2-b727-c1fcde6e78a5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-84540e45-2edc-48b2-b727-c1fcde6e78a5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-84540e45-2edc-48b2-b727-c1fcde6e78a5 img.shogun-image,
  #s-84540e45-2edc-48b2-b727-c1fcde6e78a5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-84540e45-2edc-48b2-b727-c1fcde6e78a5 {
    width: 100%;
    height: auto;
  }

  #s-84540e45-2edc-48b2-b727-c1fcde6e78a5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-84540e45-2edc-48b2-b727-c1fcde6e78a5.shogun-image {
    
    
  }


.s-84540e45-2edc-48b2-b727-c1fcde6e78a5 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-84540e45-2edc-48b2-b727-c1fcde6e78a5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-84540e45-2edc-48b2-b727-c1fcde6e78a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-84540e45-2edc-48b2-b727-c1fcde6e78a5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-84540e45-2edc-48b2-b727-c1fcde6e78a5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-84540e45-2edc-48b2-b727-c1fcde6e78a5.shogun-image-container {
      position: relative;
    }

    .s-84540e45-2edc-48b2-b727-c1fcde6e78a5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-84540e45-2edc-48b2-b727-c1fcde6e78a5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-84540e45-2edc-48b2-b727-c1fcde6e78a5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-84540e45-2edc-48b2-b727-c1fcde6e78a5 img.shogun-image,
  #s-84540e45-2edc-48b2-b727-c1fcde6e78a5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-84540e45-2edc-48b2-b727-c1fcde6e78a5 {
    width: 100%;
    height: auto;
  }

  #s-84540e45-2edc-48b2-b727-c1fcde6e78a5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-84540e45-2edc-48b2-b727-c1fcde6e78a5.shogun-image {
    
    
  }


.s-84540e45-2edc-48b2-b727-c1fcde6e78a5 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-84540e45-2edc-48b2-b727-c1fcde6e78a5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-84540e45-2edc-48b2-b727-c1fcde6e78a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-84540e45-2edc-48b2-b727-c1fcde6e78a5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-84540e45-2edc-48b2-b727-c1fcde6e78a5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-84540e45-2edc-48b2-b727-c1fcde6e78a5.shogun-image-container {
      position: relative;
    }

    .s-84540e45-2edc-48b2-b727-c1fcde6e78a5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-84540e45-2edc-48b2-b727-c1fcde6e78a5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-84540e45-2edc-48b2-b727-c1fcde6e78a5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-84540e45-2edc-48b2-b727-c1fcde6e78a5 img.shogun-image,
  #s-84540e45-2edc-48b2-b727-c1fcde6e78a5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-84540e45-2edc-48b2-b727-c1fcde6e78a5 {
    width: 100%;
    height: auto;
  }

  #s-84540e45-2edc-48b2-b727-c1fcde6e78a5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-84540e45-2edc-48b2-b727-c1fcde6e78a5.shogun-image {
    
    
  }


.s-84540e45-2edc-48b2-b727-c1fcde6e78a5 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-84540e45-2edc-48b2-b727-c1fcde6e78a5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-84540e45-2edc-48b2-b727-c1fcde6e78a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-84540e45-2edc-48b2-b727-c1fcde6e78a5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-84540e45-2edc-48b2-b727-c1fcde6e78a5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-84540e45-2edc-48b2-b727-c1fcde6e78a5.shogun-image-container {
      position: relative;
    }

    .s-84540e45-2edc-48b2-b727-c1fcde6e78a5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-84540e45-2edc-48b2-b727-c1fcde6e78a5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-84540e45-2edc-48b2-b727-c1fcde6e78a5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-84540e45-2edc-48b2-b727-c1fcde6e78a5 img.shogun-image,
  #s-84540e45-2edc-48b2-b727-c1fcde6e78a5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-84540e45-2edc-48b2-b727-c1fcde6e78a5 {
    width: 100%;
    height: auto;
  }

  #s-84540e45-2edc-48b2-b727-c1fcde6e78a5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-84540e45-2edc-48b2-b727-c1fcde6e78a5.shogun-image {
    
    
  }


.s-84540e45-2edc-48b2-b727-c1fcde6e78a5 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-84540e45-2edc-48b2-b727-c1fcde6e78a5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-84540e45-2edc-48b2-b727-c1fcde6e78a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-84540e45-2edc-48b2-b727-c1fcde6e78a5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-84540e45-2edc-48b2-b727-c1fcde6e78a5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-84540e45-2edc-48b2-b727-c1fcde6e78a5.shogun-image-container {
      position: relative;
    }

    .s-84540e45-2edc-48b2-b727-c1fcde6e78a5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-84540e45-2edc-48b2-b727-c1fcde6e78a5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-84540e45-2edc-48b2-b727-c1fcde6e78a5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-35bb20cb-c908-4517-a10a-fe50883318e0 {
  border-style: solid;
margin-top: 40%;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 5px;
padding-bottom: 5px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-35bb20cb-c908-4517-a10a-fe50883318e0:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 0.6) !important;
background-image: none !important;
hover-type: color !important;}#s-35bb20cb-c908-4517-a10a-fe50883318e0:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-35bb20cb-c908-4517-a10a-fe50883318e0-root {
    text-align: center;
  }


#s-35bb20cb-c908-4517-a10a-fe50883318e0.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 26px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-35bb20cb-c908-4517-a10a-fe50883318e0-root {
    text-align: center;
  }


#s-35bb20cb-c908-4517-a10a-fe50883318e0.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 26px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-35bb20cb-c908-4517-a10a-fe50883318e0-root {
    text-align: center;
  }


#s-35bb20cb-c908-4517-a10a-fe50883318e0.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 26px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-35bb20cb-c908-4517-a10a-fe50883318e0-root {
    text-align: center;
  }


#s-35bb20cb-c908-4517-a10a-fe50883318e0.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 26px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-35bb20cb-c908-4517-a10a-fe50883318e0-root {
    text-align: center;
  }


#s-35bb20cb-c908-4517-a10a-fe50883318e0.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 26px;
  
  
  
  display:  block ;
}
}
  #s-35bb20cb-c908-4517-a10a-fe50883318e0-root {
    text-align: center;
  }


#s-35bb20cb-c908-4517-a10a-fe50883318e0.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 26px;
  
  
  
  display:  block ;
}

#s-7db1a2cb-f8ef-4a1f-9962-396002ad18d2 {
  margin-left: 15%;
margin-right: 15%;
}

#s-7ee88583-3c81-4506-8cf7-f888f17a4cad {
  border-style: solid;
margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 5px;
padding-bottom: 5px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
background-image: none;
hover-type: color;
color: rgba(254, 254, 254, 1);
}
#s-7ee88583-3c81-4506-8cf7-f888f17a4cad:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 0.87) !important;
background-image: none !important;
hover-type: color !important;}#s-7ee88583-3c81-4506-8cf7-f888f17a4cad:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 0.69) !important;
background-image: none !important;
hover-type: color !important;}

  #s-7ee88583-3c81-4506-8cf7-f888f17a4cad-root {
    text-align: center;
  }


#s-7ee88583-3c81-4506-8cf7-f888f17a4cad.shg-btn {
  color: rgba(254, 254, 254, 1);
  font-size: 16px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-7ee88583-3c81-4506-8cf7-f888f17a4cad-root {
    text-align: center;
  }


#s-7ee88583-3c81-4506-8cf7-f888f17a4cad.shg-btn {
  color: rgba(254, 254, 254, 1);
  font-size: 16px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7ee88583-3c81-4506-8cf7-f888f17a4cad-root {
    text-align: center;
  }


#s-7ee88583-3c81-4506-8cf7-f888f17a4cad.shg-btn {
  color: rgba(254, 254, 254, 1);
  font-size: 16px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7ee88583-3c81-4506-8cf7-f888f17a4cad-root {
    text-align: center;
  }


#s-7ee88583-3c81-4506-8cf7-f888f17a4cad.shg-btn {
  color: rgba(254, 254, 254, 1);
  font-size: 16px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-7ee88583-3c81-4506-8cf7-f888f17a4cad-root {
    text-align: center;
  }


#s-7ee88583-3c81-4506-8cf7-f888f17a4cad.shg-btn {
  color: rgba(254, 254, 254, 1);
  font-size: 16px;
  
  
  
  display:  block ;
}
}
  #s-7ee88583-3c81-4506-8cf7-f888f17a4cad-root {
    text-align: center;
  }


#s-7ee88583-3c81-4506-8cf7-f888f17a4cad.shg-btn {
  color: rgba(254, 254, 254, 1);
  font-size: 16px;
  
  
  
  display:  block ;
}

#s-84078d2d-87e1-4672-a88b-20d0687d458b {
  margin-left: 0%;
margin-right: 0%;
max-width: 1500px;
aspect-ratio: 1/1;
text-align: center;
opacity: 1;
background-color: rgba(0, 0, 0, 1);
}





  #s-84078d2d-87e1-4672-a88b-20d0687d458b img.shogun-image,
  #s-84078d2d-87e1-4672-a88b-20d0687d458b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-84078d2d-87e1-4672-a88b-20d0687d458b {
    width: 100%;
    height: auto;
  }

  #s-84078d2d-87e1-4672-a88b-20d0687d458b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-84078d2d-87e1-4672-a88b-20d0687d458b.shogun-image {
    
    
  }


.s-84078d2d-87e1-4672-a88b-20d0687d458b .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-84078d2d-87e1-4672-a88b-20d0687d458b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-84078d2d-87e1-4672-a88b-20d0687d458b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-84078d2d-87e1-4672-a88b-20d0687d458b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-84078d2d-87e1-4672-a88b-20d0687d458b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-84078d2d-87e1-4672-a88b-20d0687d458b.shogun-image-container {
      position: relative;
    }

    .s-84078d2d-87e1-4672-a88b-20d0687d458b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-84078d2d-87e1-4672-a88b-20d0687d458b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-84078d2d-87e1-4672-a88b-20d0687d458b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-84078d2d-87e1-4672-a88b-20d0687d458b img.shogun-image,
  #s-84078d2d-87e1-4672-a88b-20d0687d458b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-84078d2d-87e1-4672-a88b-20d0687d458b {
    width: 100%;
    height: auto;
  }

  #s-84078d2d-87e1-4672-a88b-20d0687d458b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-84078d2d-87e1-4672-a88b-20d0687d458b.shogun-image {
    
    
  }


.s-84078d2d-87e1-4672-a88b-20d0687d458b .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-84078d2d-87e1-4672-a88b-20d0687d458b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-84078d2d-87e1-4672-a88b-20d0687d458b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-84078d2d-87e1-4672-a88b-20d0687d458b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-84078d2d-87e1-4672-a88b-20d0687d458b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-84078d2d-87e1-4672-a88b-20d0687d458b.shogun-image-container {
      position: relative;
    }

    .s-84078d2d-87e1-4672-a88b-20d0687d458b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-84078d2d-87e1-4672-a88b-20d0687d458b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-84078d2d-87e1-4672-a88b-20d0687d458b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-84078d2d-87e1-4672-a88b-20d0687d458b img.shogun-image,
  #s-84078d2d-87e1-4672-a88b-20d0687d458b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-84078d2d-87e1-4672-a88b-20d0687d458b {
    width: 100%;
    height: auto;
  }

  #s-84078d2d-87e1-4672-a88b-20d0687d458b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-84078d2d-87e1-4672-a88b-20d0687d458b.shogun-image {
    
    
  }


.s-84078d2d-87e1-4672-a88b-20d0687d458b .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-84078d2d-87e1-4672-a88b-20d0687d458b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-84078d2d-87e1-4672-a88b-20d0687d458b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-84078d2d-87e1-4672-a88b-20d0687d458b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-84078d2d-87e1-4672-a88b-20d0687d458b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-84078d2d-87e1-4672-a88b-20d0687d458b.shogun-image-container {
      position: relative;
    }

    .s-84078d2d-87e1-4672-a88b-20d0687d458b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-84078d2d-87e1-4672-a88b-20d0687d458b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-84078d2d-87e1-4672-a88b-20d0687d458b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-84078d2d-87e1-4672-a88b-20d0687d458b img.shogun-image,
  #s-84078d2d-87e1-4672-a88b-20d0687d458b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-84078d2d-87e1-4672-a88b-20d0687d458b {
    width: 100%;
    height: auto;
  }

  #s-84078d2d-87e1-4672-a88b-20d0687d458b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-84078d2d-87e1-4672-a88b-20d0687d458b.shogun-image {
    
    
  }


.s-84078d2d-87e1-4672-a88b-20d0687d458b .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-84078d2d-87e1-4672-a88b-20d0687d458b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-84078d2d-87e1-4672-a88b-20d0687d458b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-84078d2d-87e1-4672-a88b-20d0687d458b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-84078d2d-87e1-4672-a88b-20d0687d458b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-84078d2d-87e1-4672-a88b-20d0687d458b.shogun-image-container {
      position: relative;
    }

    .s-84078d2d-87e1-4672-a88b-20d0687d458b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-84078d2d-87e1-4672-a88b-20d0687d458b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-84078d2d-87e1-4672-a88b-20d0687d458b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-84078d2d-87e1-4672-a88b-20d0687d458b img.shogun-image,
  #s-84078d2d-87e1-4672-a88b-20d0687d458b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-84078d2d-87e1-4672-a88b-20d0687d458b {
    width: 100%;
    height: auto;
  }

  #s-84078d2d-87e1-4672-a88b-20d0687d458b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-84078d2d-87e1-4672-a88b-20d0687d458b.shogun-image {
    
    
  }


.s-84078d2d-87e1-4672-a88b-20d0687d458b .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-84078d2d-87e1-4672-a88b-20d0687d458b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-84078d2d-87e1-4672-a88b-20d0687d458b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-84078d2d-87e1-4672-a88b-20d0687d458b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-84078d2d-87e1-4672-a88b-20d0687d458b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-84078d2d-87e1-4672-a88b-20d0687d458b.shogun-image-container {
      position: relative;
    }

    .s-84078d2d-87e1-4672-a88b-20d0687d458b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-84078d2d-87e1-4672-a88b-20d0687d458b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-84078d2d-87e1-4672-a88b-20d0687d458b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-ae79b1ab-ce02-413f-b032-f5878197ea5a {
  border-style: solid;
margin-top: 30%;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 5px;
padding-bottom: 5px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-ae79b1ab-ce02-413f-b032-f5878197ea5a:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 0.6) !important;
background-image: none !important;
hover-type: color !important;}#s-ae79b1ab-ce02-413f-b032-f5878197ea5a:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-ae79b1ab-ce02-413f-b032-f5878197ea5a-root {
    text-align: center;
  }


#s-ae79b1ab-ce02-413f-b032-f5878197ea5a.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 26px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-ae79b1ab-ce02-413f-b032-f5878197ea5a-root {
    text-align: center;
  }


#s-ae79b1ab-ce02-413f-b032-f5878197ea5a.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 26px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ae79b1ab-ce02-413f-b032-f5878197ea5a-root {
    text-align: center;
  }


#s-ae79b1ab-ce02-413f-b032-f5878197ea5a.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 26px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ae79b1ab-ce02-413f-b032-f5878197ea5a-root {
    text-align: center;
  }


#s-ae79b1ab-ce02-413f-b032-f5878197ea5a.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 26px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-ae79b1ab-ce02-413f-b032-f5878197ea5a-root {
    text-align: center;
  }


#s-ae79b1ab-ce02-413f-b032-f5878197ea5a.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 26px;
  
  
  
  display:  block ;
}
}
  #s-ae79b1ab-ce02-413f-b032-f5878197ea5a-root {
    text-align: center;
  }


#s-ae79b1ab-ce02-413f-b032-f5878197ea5a.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 26px;
  
  
  
  display:  block ;
}

#s-8431a842-3244-4f9b-91e3-2f0fba501457 {
  margin-left: 15%;
margin-right: 15%;
}

#s-db54312f-fb95-48eb-b207-48fa893591a4 {
  border-style: solid;
margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 5px;
padding-bottom: 5px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
background-image: none;
hover-type: color;
color: rgba(254, 254, 254, 1);
}
#s-db54312f-fb95-48eb-b207-48fa893591a4:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 0.87) !important;
background-image: none !important;
hover-type: color !important;}#s-db54312f-fb95-48eb-b207-48fa893591a4:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 0.69) !important;
background-image: none !important;
hover-type: color !important;}

  #s-db54312f-fb95-48eb-b207-48fa893591a4-root {
    text-align: center;
  }


#s-db54312f-fb95-48eb-b207-48fa893591a4.shg-btn {
  color: rgba(254, 254, 254, 1);
  font-size: 16px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-db54312f-fb95-48eb-b207-48fa893591a4-root {
    text-align: center;
  }


#s-db54312f-fb95-48eb-b207-48fa893591a4.shg-btn {
  color: rgba(254, 254, 254, 1);
  font-size: 16px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-db54312f-fb95-48eb-b207-48fa893591a4-root {
    text-align: center;
  }


#s-db54312f-fb95-48eb-b207-48fa893591a4.shg-btn {
  color: rgba(254, 254, 254, 1);
  font-size: 16px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-db54312f-fb95-48eb-b207-48fa893591a4-root {
    text-align: center;
  }


#s-db54312f-fb95-48eb-b207-48fa893591a4.shg-btn {
  color: rgba(254, 254, 254, 1);
  font-size: 16px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-db54312f-fb95-48eb-b207-48fa893591a4-root {
    text-align: center;
  }


#s-db54312f-fb95-48eb-b207-48fa893591a4.shg-btn {
  color: rgba(254, 254, 254, 1);
  font-size: 16px;
  
  
  
  display:  block ;
}
}
  #s-db54312f-fb95-48eb-b207-48fa893591a4-root {
    text-align: center;
  }


#s-db54312f-fb95-48eb-b207-48fa893591a4.shg-btn {
  color: rgba(254, 254, 254, 1);
  font-size: 16px;
  
  
  
  display:  block ;
}

#s-d1b5cf05-2655-45f8-be77-fe4708d07f1d {
  margin-top: 4%;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d1b5cf05-2655-45f8-be77-fe4708d07f1d .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 23px;
  
  letter-spacing: 1px;
  
}



#s-b57b3fa9-9c29-46a3-85f1-2f6d93c00cab {
  max-width: 1500px;
text-align: center;
background-color: rgba(0, 0, 0, 1);
opacity: 1;
}







  img.s-b57b3fa9-9c29-46a3-85f1-2f6d93c00cab.shogun-image {
    
    
  }


.s-b57b3fa9-9c29-46a3-85f1-2f6d93c00cab .shogun-image-content {
  
    align-items: center;
  
}

.s-b57b3fa9-9c29-46a3-85f1-2f6d93c00cab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b57b3fa9-9c29-46a3-85f1-2f6d93c00cab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b57b3fa9-9c29-46a3-85f1-2f6d93c00cab.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-b57b3fa9-9c29-46a3-85f1-2f6d93c00cab.shogun-image {
    
    
  }


.s-b57b3fa9-9c29-46a3-85f1-2f6d93c00cab .shogun-image-content {
  
    align-items: center;
  
}

.s-b57b3fa9-9c29-46a3-85f1-2f6d93c00cab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b57b3fa9-9c29-46a3-85f1-2f6d93c00cab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b57b3fa9-9c29-46a3-85f1-2f6d93c00cab.shogun-image {
  box-sizing: border-box;
}



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





  img.s-b57b3fa9-9c29-46a3-85f1-2f6d93c00cab.shogun-image {
    
    
  }


.s-b57b3fa9-9c29-46a3-85f1-2f6d93c00cab .shogun-image-content {
  
    align-items: center;
  
}

.s-b57b3fa9-9c29-46a3-85f1-2f6d93c00cab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b57b3fa9-9c29-46a3-85f1-2f6d93c00cab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b57b3fa9-9c29-46a3-85f1-2f6d93c00cab.shogun-image {
  box-sizing: border-box;
}



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





  img.s-b57b3fa9-9c29-46a3-85f1-2f6d93c00cab.shogun-image {
    
    
  }


.s-b57b3fa9-9c29-46a3-85f1-2f6d93c00cab .shogun-image-content {
  
    align-items: center;
  
}

.s-b57b3fa9-9c29-46a3-85f1-2f6d93c00cab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b57b3fa9-9c29-46a3-85f1-2f6d93c00cab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b57b3fa9-9c29-46a3-85f1-2f6d93c00cab.shogun-image {
  box-sizing: border-box;
}



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





  img.s-b57b3fa9-9c29-46a3-85f1-2f6d93c00cab.shogun-image {
    
    
  }


.s-b57b3fa9-9c29-46a3-85f1-2f6d93c00cab .shogun-image-content {
  
    align-items: center;
  
}

.s-b57b3fa9-9c29-46a3-85f1-2f6d93c00cab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b57b3fa9-9c29-46a3-85f1-2f6d93c00cab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b57b3fa9-9c29-46a3-85f1-2f6d93c00cab.shogun-image {
  box-sizing: border-box;
}



}
#s-c490feee-dacc-4e23-bf74-950ef42e7a79 {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 5px;
padding-bottom: 5px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-c490feee-dacc-4e23-bf74-950ef42e7a79:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 0.6) !important;
background-image: none !important;
hover-type: color !important;}#s-c490feee-dacc-4e23-bf74-950ef42e7a79:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-c490feee-dacc-4e23-bf74-950ef42e7a79-root {
    text-align: center;
  }


#s-c490feee-dacc-4e23-bf74-950ef42e7a79.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 26px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-c490feee-dacc-4e23-bf74-950ef42e7a79-root {
    text-align: center;
  }


#s-c490feee-dacc-4e23-bf74-950ef42e7a79.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 26px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c490feee-dacc-4e23-bf74-950ef42e7a79-root {
    text-align: center;
  }


#s-c490feee-dacc-4e23-bf74-950ef42e7a79.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 26px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c490feee-dacc-4e23-bf74-950ef42e7a79-root {
    text-align: center;
  }


#s-c490feee-dacc-4e23-bf74-950ef42e7a79.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 26px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-c490feee-dacc-4e23-bf74-950ef42e7a79-root {
    text-align: center;
  }


#s-c490feee-dacc-4e23-bf74-950ef42e7a79.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 26px;
  
  
  
  display:  block ;
}
}
  #s-c490feee-dacc-4e23-bf74-950ef42e7a79-root {
    text-align: center;
  }


#s-c490feee-dacc-4e23-bf74-950ef42e7a79.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 26px;
  
  
  
  display:  block ;
}

#s-c754d761-3a84-4952-b474-764d4a007a51 {
  margin-left: 15%;
margin-right: 15%;
}

#s-7380ada2-1964-490b-ad19-9189544d5fb8 {
  border-style: solid;
margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 5px;
padding-bottom: 5px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
background-image: none;
hover-type: color;
color: rgba(254, 254, 254, 1);
}
#s-7380ada2-1964-490b-ad19-9189544d5fb8:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 0.87) !important;
background-image: none !important;
hover-type: color !important;}#s-7380ada2-1964-490b-ad19-9189544d5fb8:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 0.69) !important;
background-image: none !important;
hover-type: color !important;}

  #s-7380ada2-1964-490b-ad19-9189544d5fb8-root {
    text-align: center;
  }


#s-7380ada2-1964-490b-ad19-9189544d5fb8.shg-btn {
  color: rgba(254, 254, 254, 1);
  font-size: 16px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-7380ada2-1964-490b-ad19-9189544d5fb8-root {
    text-align: center;
  }


#s-7380ada2-1964-490b-ad19-9189544d5fb8.shg-btn {
  color: rgba(254, 254, 254, 1);
  font-size: 16px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7380ada2-1964-490b-ad19-9189544d5fb8-root {
    text-align: center;
  }


#s-7380ada2-1964-490b-ad19-9189544d5fb8.shg-btn {
  color: rgba(254, 254, 254, 1);
  font-size: 16px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7380ada2-1964-490b-ad19-9189544d5fb8-root {
    text-align: center;
  }


#s-7380ada2-1964-490b-ad19-9189544d5fb8.shg-btn {
  color: rgba(254, 254, 254, 1);
  font-size: 16px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-7380ada2-1964-490b-ad19-9189544d5fb8-root {
    text-align: center;
  }


#s-7380ada2-1964-490b-ad19-9189544d5fb8.shg-btn {
  color: rgba(254, 254, 254, 1);
  font-size: 16px;
  
  
  
  display:  block ;
}
}
  #s-7380ada2-1964-490b-ad19-9189544d5fb8-root {
    text-align: center;
  }


#s-7380ada2-1964-490b-ad19-9189544d5fb8.shg-btn {
  color: rgba(254, 254, 254, 1);
  font-size: 16px;
  
  
  
  display:  block ;
}

#s-282ba8dd-2c7d-4fc7-986e-e830fb8b528a {
  margin-top: 7%;
margin-left: 5%;
margin-bottom: 7%;
margin-right: 5%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-282ba8dd-2c7d-4fc7-986e-e830fb8b528a {
  display: none;
}
#s-282ba8dd-2c7d-4fc7-986e-e830fb8b528a, #wrap-s-282ba8dd-2c7d-4fc7-986e-e830fb8b528a { display: none !important; }}@media (max-width: 767px){#s-282ba8dd-2c7d-4fc7-986e-e830fb8b528a {
  display: none;
}
#s-282ba8dd-2c7d-4fc7-986e-e830fb8b528a, #wrap-s-282ba8dd-2c7d-4fc7-986e-e830fb8b528a { display: none !important; }}







#s-282ba8dd-2c7d-4fc7-986e-e830fb8b528a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-282ba8dd-2c7d-4fc7-986e-e830fb8b528a.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-6cd20a8a-0b96-4a6e-9a96-6ffd8ba7c731"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6cd20a8a-0b96-4a6e-9a96-6ffd8ba7c731"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-6cd20a8a-0b96-4a6e-9a96-6ffd8ba7c731"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6cd20a8a-0b96-4a6e-9a96-6ffd8ba7c731"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-6cd20a8a-0b96-4a6e-9a96-6ffd8ba7c731"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6cd20a8a-0b96-4a6e-9a96-6ffd8ba7c731"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-6cd20a8a-0b96-4a6e-9a96-6ffd8ba7c731"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-5e010b56-6cd8-45b5-97bc-db4de81e94ad"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5e010b56-6cd8-45b5-97bc-db4de81e94ad"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-5e010b56-6cd8-45b5-97bc-db4de81e94ad"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-5e010b56-6cd8-45b5-97bc-db4de81e94ad"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-5e010b56-6cd8-45b5-97bc-db4de81e94ad"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-5e010b56-6cd8-45b5-97bc-db4de81e94ad"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-5e010b56-6cd8-45b5-97bc-db4de81e94ad"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-2d6bea35-18ff-4369-8866-cc192171281f {
  margin-top: 29%;
margin-left: 0%;
margin-right: 20%;
max-width: 512px;
aspect-ratio: 1/1;
text-align: center;
}







  img.s-2d6bea35-18ff-4369-8866-cc192171281f.shogun-image {
    
    
  }


.s-2d6bea35-18ff-4369-8866-cc192171281f .shogun-image-content {
  
    align-items: center;
  
}

.s-2d6bea35-18ff-4369-8866-cc192171281f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2d6bea35-18ff-4369-8866-cc192171281f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2d6bea35-18ff-4369-8866-cc192171281f.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-2d6bea35-18ff-4369-8866-cc192171281f.shogun-image {
    
    
  }


.s-2d6bea35-18ff-4369-8866-cc192171281f .shogun-image-content {
  
    align-items: center;
  
}

.s-2d6bea35-18ff-4369-8866-cc192171281f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2d6bea35-18ff-4369-8866-cc192171281f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2d6bea35-18ff-4369-8866-cc192171281f.shogun-image {
  box-sizing: border-box;
}



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





  img.s-2d6bea35-18ff-4369-8866-cc192171281f.shogun-image {
    
    
  }


.s-2d6bea35-18ff-4369-8866-cc192171281f .shogun-image-content {
  
    align-items: center;
  
}

.s-2d6bea35-18ff-4369-8866-cc192171281f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2d6bea35-18ff-4369-8866-cc192171281f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2d6bea35-18ff-4369-8866-cc192171281f.shogun-image {
  box-sizing: border-box;
}



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





  img.s-2d6bea35-18ff-4369-8866-cc192171281f.shogun-image {
    
    
  }


.s-2d6bea35-18ff-4369-8866-cc192171281f .shogun-image-content {
  
    align-items: center;
  
}

.s-2d6bea35-18ff-4369-8866-cc192171281f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2d6bea35-18ff-4369-8866-cc192171281f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2d6bea35-18ff-4369-8866-cc192171281f.shogun-image {
  box-sizing: border-box;
}



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





  img.s-2d6bea35-18ff-4369-8866-cc192171281f.shogun-image {
    
    
  }


.s-2d6bea35-18ff-4369-8866-cc192171281f .shogun-image-content {
  
    align-items: center;
  
}

.s-2d6bea35-18ff-4369-8866-cc192171281f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2d6bea35-18ff-4369-8866-cc192171281f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2d6bea35-18ff-4369-8866-cc192171281f.shogun-image {
  box-sizing: border-box;
}



}
#s-412daba2-b212-495b-81f6-4eacefd77fce {
  margin-top: 10%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-412daba2-b212-495b-81f6-4eacefd77fce .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-219d1a5a-b06a-4c88-a77f-0b541b85a114 {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-adacbc54-83d6-4812-8a5e-3272629b8b8a .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(15, calc(100vw / 24));
}

#s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48 {
  aspect-ratio: 10/10;
text-align: center;
}

#s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48-root {
  grid-column-start: 1;
grid-column-end: 11;
grid-row-start: 1;
grid-row-end: 11;
z-index: 0;
}





  #s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48 img.shogun-image,
  #s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48 {
    width: 100%;
    height: auto;
  }

  #s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48.shogun-image {
    
    
  }


.s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48 .shogun-image-content {
  
    align-items: center;
  
}

.s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48.shg-align-container {
  display: flex;
  justify-content: center
}

.s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48 {
      --shg-aspect-ratio: calc(10/10); 
    }

    .s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48.shogun-image-container {
      position: relative;
    }

    .s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48 img.shogun-image,
  #s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48 {
    width: 100%;
    height: auto;
  }

  #s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48.shogun-image {
    
    
  }


.s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48 .shogun-image-content {
  
    align-items: center;
  
}

.s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48.shg-align-container {
  display: flex;
  justify-content: center
}

.s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48 {
      --shg-aspect-ratio: calc(10/10); 
    }

    .s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48.shogun-image-container {
      position: relative;
    }

    .s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48 img.shogun-image,
  #s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48 {
    width: 100%;
    height: auto;
  }

  #s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48.shogun-image {
    
    
  }


.s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48 .shogun-image-content {
  
    align-items: center;
  
}

.s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48.shg-align-container {
  display: flex;
  justify-content: center
}

.s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48 {
      --shg-aspect-ratio: calc(10/10); 
    }

    .s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48.shogun-image-container {
      position: relative;
    }

    .s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48 img.shogun-image,
  #s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48 {
    width: 100%;
    height: auto;
  }

  #s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48.shogun-image {
    
    
  }


.s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48 .shogun-image-content {
  
    align-items: center;
  
}

.s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48.shg-align-container {
  display: flex;
  justify-content: center
}

.s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48 {
      --shg-aspect-ratio: calc(10/10); 
    }

    .s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48.shogun-image-container {
      position: relative;
    }

    .s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48 img.shogun-image,
  #s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48 {
    width: 100%;
    height: auto;
  }

  #s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48.shogun-image {
    
    
  }


.s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48 .shogun-image-content {
  
    align-items: center;
  
}

.s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48.shg-align-container {
  display: flex;
  justify-content: center
}

.s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48 {
      --shg-aspect-ratio: calc(10/10); 
    }

    .s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48.shogun-image-container {
      position: relative;
    }

    .s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-46ee7f1e-5878-4dbb-a5b1-eb6f09951c48 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-f452cc7e-d838-488f-a318-6d07f1d3396c {
  aspect-ratio: 14/14;
text-align: center;
}

#s-f452cc7e-d838-488f-a318-6d07f1d3396c-root {
  grid-column-start: 11;
grid-column-end: 25;
grid-row-start: 1;
grid-row-end: 15;
z-index: 1;
}





  #s-f452cc7e-d838-488f-a318-6d07f1d3396c img.shogun-image,
  #s-f452cc7e-d838-488f-a318-6d07f1d3396c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f452cc7e-d838-488f-a318-6d07f1d3396c {
    width: 100%;
    height: auto;
  }

  #s-f452cc7e-d838-488f-a318-6d07f1d3396c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f452cc7e-d838-488f-a318-6d07f1d3396c.shogun-image {
    
    
  }


.s-f452cc7e-d838-488f-a318-6d07f1d3396c .shogun-image-content {
  
    align-items: center;
  
}

.s-f452cc7e-d838-488f-a318-6d07f1d3396c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f452cc7e-d838-488f-a318-6d07f1d3396c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f452cc7e-d838-488f-a318-6d07f1d3396c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f452cc7e-d838-488f-a318-6d07f1d3396c {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-f452cc7e-d838-488f-a318-6d07f1d3396c.shogun-image-container {
      position: relative;
    }

    .s-f452cc7e-d838-488f-a318-6d07f1d3396c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f452cc7e-d838-488f-a318-6d07f1d3396c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f452cc7e-d838-488f-a318-6d07f1d3396c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-f452cc7e-d838-488f-a318-6d07f1d3396c img.shogun-image,
  #s-f452cc7e-d838-488f-a318-6d07f1d3396c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f452cc7e-d838-488f-a318-6d07f1d3396c {
    width: 100%;
    height: auto;
  }

  #s-f452cc7e-d838-488f-a318-6d07f1d3396c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f452cc7e-d838-488f-a318-6d07f1d3396c.shogun-image {
    
    
  }


.s-f452cc7e-d838-488f-a318-6d07f1d3396c .shogun-image-content {
  
    align-items: center;
  
}

.s-f452cc7e-d838-488f-a318-6d07f1d3396c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f452cc7e-d838-488f-a318-6d07f1d3396c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f452cc7e-d838-488f-a318-6d07f1d3396c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f452cc7e-d838-488f-a318-6d07f1d3396c {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-f452cc7e-d838-488f-a318-6d07f1d3396c.shogun-image-container {
      position: relative;
    }

    .s-f452cc7e-d838-488f-a318-6d07f1d3396c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f452cc7e-d838-488f-a318-6d07f1d3396c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f452cc7e-d838-488f-a318-6d07f1d3396c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-f452cc7e-d838-488f-a318-6d07f1d3396c img.shogun-image,
  #s-f452cc7e-d838-488f-a318-6d07f1d3396c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f452cc7e-d838-488f-a318-6d07f1d3396c {
    width: 100%;
    height: auto;
  }

  #s-f452cc7e-d838-488f-a318-6d07f1d3396c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f452cc7e-d838-488f-a318-6d07f1d3396c.shogun-image {
    
    
  }


.s-f452cc7e-d838-488f-a318-6d07f1d3396c .shogun-image-content {
  
    align-items: center;
  
}

.s-f452cc7e-d838-488f-a318-6d07f1d3396c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f452cc7e-d838-488f-a318-6d07f1d3396c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f452cc7e-d838-488f-a318-6d07f1d3396c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f452cc7e-d838-488f-a318-6d07f1d3396c {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-f452cc7e-d838-488f-a318-6d07f1d3396c.shogun-image-container {
      position: relative;
    }

    .s-f452cc7e-d838-488f-a318-6d07f1d3396c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f452cc7e-d838-488f-a318-6d07f1d3396c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f452cc7e-d838-488f-a318-6d07f1d3396c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-f452cc7e-d838-488f-a318-6d07f1d3396c img.shogun-image,
  #s-f452cc7e-d838-488f-a318-6d07f1d3396c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f452cc7e-d838-488f-a318-6d07f1d3396c {
    width: 100%;
    height: auto;
  }

  #s-f452cc7e-d838-488f-a318-6d07f1d3396c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f452cc7e-d838-488f-a318-6d07f1d3396c.shogun-image {
    
    
  }


.s-f452cc7e-d838-488f-a318-6d07f1d3396c .shogun-image-content {
  
    align-items: center;
  
}

.s-f452cc7e-d838-488f-a318-6d07f1d3396c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f452cc7e-d838-488f-a318-6d07f1d3396c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f452cc7e-d838-488f-a318-6d07f1d3396c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f452cc7e-d838-488f-a318-6d07f1d3396c {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-f452cc7e-d838-488f-a318-6d07f1d3396c.shogun-image-container {
      position: relative;
    }

    .s-f452cc7e-d838-488f-a318-6d07f1d3396c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f452cc7e-d838-488f-a318-6d07f1d3396c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f452cc7e-d838-488f-a318-6d07f1d3396c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-f452cc7e-d838-488f-a318-6d07f1d3396c img.shogun-image,
  #s-f452cc7e-d838-488f-a318-6d07f1d3396c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f452cc7e-d838-488f-a318-6d07f1d3396c {
    width: 100%;
    height: auto;
  }

  #s-f452cc7e-d838-488f-a318-6d07f1d3396c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f452cc7e-d838-488f-a318-6d07f1d3396c.shogun-image {
    
    
  }


.s-f452cc7e-d838-488f-a318-6d07f1d3396c .shogun-image-content {
  
    align-items: center;
  
}

.s-f452cc7e-d838-488f-a318-6d07f1d3396c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f452cc7e-d838-488f-a318-6d07f1d3396c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f452cc7e-d838-488f-a318-6d07f1d3396c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f452cc7e-d838-488f-a318-6d07f1d3396c {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-f452cc7e-d838-488f-a318-6d07f1d3396c.shogun-image-container {
      position: relative;
    }

    .s-f452cc7e-d838-488f-a318-6d07f1d3396c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f452cc7e-d838-488f-a318-6d07f1d3396c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f452cc7e-d838-488f-a318-6d07f1d3396c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-751255e1-26be-4962-9df4-d67e067b443a {
  margin-top: 10%;
margin-left: 5%;
margin-bottom: 0%;
max-width: 1311px;
aspect-ratio: 1311/1800;
text-align: center;
}







  img.s-751255e1-26be-4962-9df4-d67e067b443a.shogun-image {
    
    
  }


.s-751255e1-26be-4962-9df4-d67e067b443a .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-751255e1-26be-4962-9df4-d67e067b443a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-751255e1-26be-4962-9df4-d67e067b443a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-751255e1-26be-4962-9df4-d67e067b443a.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-751255e1-26be-4962-9df4-d67e067b443a.shogun-image {
    
    
  }


.s-751255e1-26be-4962-9df4-d67e067b443a .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-751255e1-26be-4962-9df4-d67e067b443a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-751255e1-26be-4962-9df4-d67e067b443a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-751255e1-26be-4962-9df4-d67e067b443a.shogun-image {
  box-sizing: border-box;
}



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





  img.s-751255e1-26be-4962-9df4-d67e067b443a.shogun-image {
    
    
  }


.s-751255e1-26be-4962-9df4-d67e067b443a .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-751255e1-26be-4962-9df4-d67e067b443a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-751255e1-26be-4962-9df4-d67e067b443a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-751255e1-26be-4962-9df4-d67e067b443a.shogun-image {
  box-sizing: border-box;
}



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





  img.s-751255e1-26be-4962-9df4-d67e067b443a.shogun-image {
    
    
  }


.s-751255e1-26be-4962-9df4-d67e067b443a .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-751255e1-26be-4962-9df4-d67e067b443a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-751255e1-26be-4962-9df4-d67e067b443a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-751255e1-26be-4962-9df4-d67e067b443a.shogun-image {
  box-sizing: border-box;
}



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





  img.s-751255e1-26be-4962-9df4-d67e067b443a.shogun-image {
    
    
  }


.s-751255e1-26be-4962-9df4-d67e067b443a .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-751255e1-26be-4962-9df4-d67e067b443a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-751255e1-26be-4962-9df4-d67e067b443a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-751255e1-26be-4962-9df4-d67e067b443a.shogun-image {
  box-sizing: border-box;
}



}
#s-307f1d3e-d3cf-4009-9d8c-840c9c6b28f9 {
  margin-top: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-307f1d3e-d3cf-4009-9d8c-840c9c6b28f9 .shogun-heading-component h5 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 22px;
  line-height: 1.5em;
  letter-spacing: 1px;
  
}



#s-6bca6287-c9a3-417d-8b75-383731fa29c2 {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-6bca6287-c9a3-417d-8b75-383731fa29c2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6bca6287-c9a3-417d-8b75-383731fa29c2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-252e3e94-73f6-4bab-bf6e-4e7f56e33d0b {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 15px;
padding-left: 0%;
padding-bottom: 15px;
padding-right: 0%;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: rgba(29, 29, 29, 0);
border-radius: 3px;
max-width: 100%;
background-color: rgba(29, 29, 29, 0.9);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-252e3e94-73f6-4bab-bf6e-4e7f56e33d0b:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 0) !important;
background-color: rgba(74, 74, 74, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-252e3e94-73f6-4bab-bf6e-4e7f56e33d0b:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(155, 155, 155, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-252e3e94-73f6-4bab-bf6e-4e7f56e33d0b-root {
    text-align: center;
  }


#s-252e3e94-73f6-4bab-bf6e-4e7f56e33d0b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-252e3e94-73f6-4bab-bf6e-4e7f56e33d0b-root {
    text-align: center;
  }


#s-252e3e94-73f6-4bab-bf6e-4e7f56e33d0b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-252e3e94-73f6-4bab-bf6e-4e7f56e33d0b-root {
    text-align: center;
  }


#s-252e3e94-73f6-4bab-bf6e-4e7f56e33d0b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-252e3e94-73f6-4bab-bf6e-4e7f56e33d0b-root {
    text-align: center;
  }


#s-252e3e94-73f6-4bab-bf6e-4e7f56e33d0b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-252e3e94-73f6-4bab-bf6e-4e7f56e33d0b-root {
    text-align: center;
  }


#s-252e3e94-73f6-4bab-bf6e-4e7f56e33d0b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-252e3e94-73f6-4bab-bf6e-4e7f56e33d0b-root {
    text-align: center;
  }


#s-252e3e94-73f6-4bab-bf6e-4e7f56e33d0b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-889a8e07-0c2e-4d15-a9d9-68fb0cf7c8b6 {
  text-align: left;
}

#s-2934e8fc-8f1a-4b4e-8182-0d4fb6bb43b1 {
  margin-top: 7%;
}

@media (min-width: 0px) {
[id="s-2934e8fc-8f1a-4b4e-8182-0d4fb6bb43b1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2934e8fc-8f1a-4b4e-8182-0d4fb6bb43b1"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-2934e8fc-8f1a-4b4e-8182-0d4fb6bb43b1"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2934e8fc-8f1a-4b4e-8182-0d4fb6bb43b1"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-2934e8fc-8f1a-4b4e-8182-0d4fb6bb43b1"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2934e8fc-8f1a-4b4e-8182-0d4fb6bb43b1"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-2934e8fc-8f1a-4b4e-8182-0d4fb6bb43b1"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

#s-6b2defc0-33ca-4241-ad6d-45714dcc229b {
  text-align: left;
}

@media (min-width: 0px) {
[id="s-c0b3c49f-ec08-450f-b7bf-86813156c5d6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c0b3c49f-ec08-450f-b7bf-86813156c5d6"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-c0b3c49f-ec08-450f-b7bf-86813156c5d6"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-c0b3c49f-ec08-450f-b7bf-86813156c5d6"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-c0b3c49f-ec08-450f-b7bf-86813156c5d6"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-c0b3c49f-ec08-450f-b7bf-86813156c5d6"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-c0b3c49f-ec08-450f-b7bf-86813156c5d6"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-b462df27-2c44-4172-8362-34cc9cebe61a {
  margin-top: 0%;
margin-left: 0%;
margin-right: 20%;
max-width: 512px;
aspect-ratio: 1/1;
text-align: center;
}







  img.s-b462df27-2c44-4172-8362-34cc9cebe61a.shogun-image {
    
    
  }


.s-b462df27-2c44-4172-8362-34cc9cebe61a .shogun-image-content {
  
    align-items: center;
  
}

.s-b462df27-2c44-4172-8362-34cc9cebe61a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b462df27-2c44-4172-8362-34cc9cebe61a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b462df27-2c44-4172-8362-34cc9cebe61a.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-b462df27-2c44-4172-8362-34cc9cebe61a.shogun-image {
    
    
  }


.s-b462df27-2c44-4172-8362-34cc9cebe61a .shogun-image-content {
  
    align-items: center;
  
}

.s-b462df27-2c44-4172-8362-34cc9cebe61a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b462df27-2c44-4172-8362-34cc9cebe61a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b462df27-2c44-4172-8362-34cc9cebe61a.shogun-image {
  box-sizing: border-box;
}



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





  img.s-b462df27-2c44-4172-8362-34cc9cebe61a.shogun-image {
    
    
  }


.s-b462df27-2c44-4172-8362-34cc9cebe61a .shogun-image-content {
  
    align-items: center;
  
}

.s-b462df27-2c44-4172-8362-34cc9cebe61a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b462df27-2c44-4172-8362-34cc9cebe61a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b462df27-2c44-4172-8362-34cc9cebe61a.shogun-image {
  box-sizing: border-box;
}



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





  img.s-b462df27-2c44-4172-8362-34cc9cebe61a.shogun-image {
    
    
  }


.s-b462df27-2c44-4172-8362-34cc9cebe61a .shogun-image-content {
  
    align-items: center;
  
}

.s-b462df27-2c44-4172-8362-34cc9cebe61a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b462df27-2c44-4172-8362-34cc9cebe61a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b462df27-2c44-4172-8362-34cc9cebe61a.shogun-image {
  box-sizing: border-box;
}



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





  img.s-b462df27-2c44-4172-8362-34cc9cebe61a.shogun-image {
    
    
  }


.s-b462df27-2c44-4172-8362-34cc9cebe61a .shogun-image-content {
  
    align-items: center;
  
}

.s-b462df27-2c44-4172-8362-34cc9cebe61a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b462df27-2c44-4172-8362-34cc9cebe61a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b462df27-2c44-4172-8362-34cc9cebe61a.shogun-image {
  box-sizing: border-box;
}



}
#s-ea2219f8-e5e9-4a61-b351-c50ca5805abe {
  margin-top: 1%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ea2219f8-e5e9-4a61-b351-c50ca5805abe .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-ace4400f-d497-4bc3-a10f-da99bae35ca1 {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-def5c0f8-fa2c-417c-9456-7eb1a3d5be3a .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(14, calc(100vw / 24));
}

#s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6 {
  max-width: 1500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6-root {
  grid-column-start: 1;
grid-column-end: 14;
grid-row-start: 1;
grid-row-end: 14;
z-index: 0;
}





  #s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6 img.shogun-image,
  #s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6 {
    width: 100%;
    height: auto;
  }

  #s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6.shogun-image {
    
    
  }


.s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6 {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6.shogun-image-container {
      position: relative;
    }

    .s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6 img.shogun-image,
  #s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6 {
    width: 100%;
    height: auto;
  }

  #s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6.shogun-image {
    
    
  }


.s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6 {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6.shogun-image-container {
      position: relative;
    }

    .s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6 img.shogun-image,
  #s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6 {
    width: 100%;
    height: auto;
  }

  #s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6.shogun-image {
    
    
  }


.s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6 {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6.shogun-image-container {
      position: relative;
    }

    .s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6 img.shogun-image,
  #s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6 {
    width: 100%;
    height: auto;
  }

  #s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6.shogun-image {
    
    
  }


.s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6 {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6.shogun-image-container {
      position: relative;
    }

    .s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6 img.shogun-image,
  #s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6 {
    width: 100%;
    height: auto;
  }

  #s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6.shogun-image {
    
    
  }


.s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6 {
      --shg-aspect-ratio: calc(13/13); 
    }

    .s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6.shogun-image-container {
      position: relative;
    }

    .s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fc1c6fb2-0b10-4e2b-8499-92de3fcd95c6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-fc07d938-baa2-4400-b79f-3cbde95d8f92 {
  aspect-ratio: 12/12;
text-align: center;
}

#s-fc07d938-baa2-4400-b79f-3cbde95d8f92-root {
  grid-column-start: 13;
grid-column-end: 25;
grid-row-start: 3;
grid-row-end: 15;
z-index: 1;
}





  #s-fc07d938-baa2-4400-b79f-3cbde95d8f92 img.shogun-image,
  #s-fc07d938-baa2-4400-b79f-3cbde95d8f92 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fc07d938-baa2-4400-b79f-3cbde95d8f92 {
    width: 100%;
    height: auto;
  }

  #s-fc07d938-baa2-4400-b79f-3cbde95d8f92 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fc07d938-baa2-4400-b79f-3cbde95d8f92.shogun-image {
    
    
  }


.s-fc07d938-baa2-4400-b79f-3cbde95d8f92 .shogun-image-content {
  
    align-items: center;
  
}

.s-fc07d938-baa2-4400-b79f-3cbde95d8f92.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc07d938-baa2-4400-b79f-3cbde95d8f92.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc07d938-baa2-4400-b79f-3cbde95d8f92.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fc07d938-baa2-4400-b79f-3cbde95d8f92 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-fc07d938-baa2-4400-b79f-3cbde95d8f92.shogun-image-container {
      position: relative;
    }

    .s-fc07d938-baa2-4400-b79f-3cbde95d8f92.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fc07d938-baa2-4400-b79f-3cbde95d8f92.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fc07d938-baa2-4400-b79f-3cbde95d8f92 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-fc07d938-baa2-4400-b79f-3cbde95d8f92 img.shogun-image,
  #s-fc07d938-baa2-4400-b79f-3cbde95d8f92 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fc07d938-baa2-4400-b79f-3cbde95d8f92 {
    width: 100%;
    height: auto;
  }

  #s-fc07d938-baa2-4400-b79f-3cbde95d8f92 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fc07d938-baa2-4400-b79f-3cbde95d8f92.shogun-image {
    
    
  }


.s-fc07d938-baa2-4400-b79f-3cbde95d8f92 .shogun-image-content {
  
    align-items: center;
  
}

.s-fc07d938-baa2-4400-b79f-3cbde95d8f92.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc07d938-baa2-4400-b79f-3cbde95d8f92.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc07d938-baa2-4400-b79f-3cbde95d8f92.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fc07d938-baa2-4400-b79f-3cbde95d8f92 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-fc07d938-baa2-4400-b79f-3cbde95d8f92.shogun-image-container {
      position: relative;
    }

    .s-fc07d938-baa2-4400-b79f-3cbde95d8f92.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fc07d938-baa2-4400-b79f-3cbde95d8f92.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fc07d938-baa2-4400-b79f-3cbde95d8f92 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-fc07d938-baa2-4400-b79f-3cbde95d8f92 img.shogun-image,
  #s-fc07d938-baa2-4400-b79f-3cbde95d8f92 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fc07d938-baa2-4400-b79f-3cbde95d8f92 {
    width: 100%;
    height: auto;
  }

  #s-fc07d938-baa2-4400-b79f-3cbde95d8f92 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fc07d938-baa2-4400-b79f-3cbde95d8f92.shogun-image {
    
    
  }


.s-fc07d938-baa2-4400-b79f-3cbde95d8f92 .shogun-image-content {
  
    align-items: center;
  
}

.s-fc07d938-baa2-4400-b79f-3cbde95d8f92.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc07d938-baa2-4400-b79f-3cbde95d8f92.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc07d938-baa2-4400-b79f-3cbde95d8f92.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fc07d938-baa2-4400-b79f-3cbde95d8f92 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-fc07d938-baa2-4400-b79f-3cbde95d8f92.shogun-image-container {
      position: relative;
    }

    .s-fc07d938-baa2-4400-b79f-3cbde95d8f92.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fc07d938-baa2-4400-b79f-3cbde95d8f92.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fc07d938-baa2-4400-b79f-3cbde95d8f92 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-fc07d938-baa2-4400-b79f-3cbde95d8f92 img.shogun-image,
  #s-fc07d938-baa2-4400-b79f-3cbde95d8f92 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fc07d938-baa2-4400-b79f-3cbde95d8f92 {
    width: 100%;
    height: auto;
  }

  #s-fc07d938-baa2-4400-b79f-3cbde95d8f92 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fc07d938-baa2-4400-b79f-3cbde95d8f92.shogun-image {
    
    
  }


.s-fc07d938-baa2-4400-b79f-3cbde95d8f92 .shogun-image-content {
  
    align-items: center;
  
}

.s-fc07d938-baa2-4400-b79f-3cbde95d8f92.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc07d938-baa2-4400-b79f-3cbde95d8f92.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc07d938-baa2-4400-b79f-3cbde95d8f92.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fc07d938-baa2-4400-b79f-3cbde95d8f92 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-fc07d938-baa2-4400-b79f-3cbde95d8f92.shogun-image-container {
      position: relative;
    }

    .s-fc07d938-baa2-4400-b79f-3cbde95d8f92.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fc07d938-baa2-4400-b79f-3cbde95d8f92.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fc07d938-baa2-4400-b79f-3cbde95d8f92 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-fc07d938-baa2-4400-b79f-3cbde95d8f92 img.shogun-image,
  #s-fc07d938-baa2-4400-b79f-3cbde95d8f92 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fc07d938-baa2-4400-b79f-3cbde95d8f92 {
    width: 100%;
    height: auto;
  }

  #s-fc07d938-baa2-4400-b79f-3cbde95d8f92 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fc07d938-baa2-4400-b79f-3cbde95d8f92.shogun-image {
    
    
  }


.s-fc07d938-baa2-4400-b79f-3cbde95d8f92 .shogun-image-content {
  
    align-items: center;
  
}

.s-fc07d938-baa2-4400-b79f-3cbde95d8f92.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc07d938-baa2-4400-b79f-3cbde95d8f92.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc07d938-baa2-4400-b79f-3cbde95d8f92.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fc07d938-baa2-4400-b79f-3cbde95d8f92 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-fc07d938-baa2-4400-b79f-3cbde95d8f92.shogun-image-container {
      position: relative;
    }

    .s-fc07d938-baa2-4400-b79f-3cbde95d8f92.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fc07d938-baa2-4400-b79f-3cbde95d8f92.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fc07d938-baa2-4400-b79f-3cbde95d8f92 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-76d033dc-5446-41c1-909c-601baffdf9a0 {
  margin-top: 6%;
}

@media (min-width: 0px) {
[id="s-76d033dc-5446-41c1-909c-601baffdf9a0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-76d033dc-5446-41c1-909c-601baffdf9a0"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-76d033dc-5446-41c1-909c-601baffdf9a0"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-76d033dc-5446-41c1-909c-601baffdf9a0"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-76d033dc-5446-41c1-909c-601baffdf9a0"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-76d033dc-5446-41c1-909c-601baffdf9a0"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-76d033dc-5446-41c1-909c-601baffdf9a0"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

#s-44a96842-b6f8-4f5d-b176-1938faa287cc {
  margin-top: 2%;
}

@media (min-width: 0px) {
[id="s-44a96842-b6f8-4f5d-b176-1938faa287cc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-44a96842-b6f8-4f5d-b176-1938faa287cc"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-44a96842-b6f8-4f5d-b176-1938faa287cc"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-44a96842-b6f8-4f5d-b176-1938faa287cc"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-44a96842-b6f8-4f5d-b176-1938faa287cc"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-44a96842-b6f8-4f5d-b176-1938faa287cc"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-44a96842-b6f8-4f5d-b176-1938faa287cc"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-8aa0c315-bb84-47fb-a639-580831c446e4 {
  margin-top: 12%;
margin-left: 0%;
margin-right: 20%;
max-width: 512px;
aspect-ratio: 1/1;
text-align: center;
}







  img.s-8aa0c315-bb84-47fb-a639-580831c446e4.shogun-image {
    
    
  }


.s-8aa0c315-bb84-47fb-a639-580831c446e4 .shogun-image-content {
  
    align-items: center;
  
}

.s-8aa0c315-bb84-47fb-a639-580831c446e4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8aa0c315-bb84-47fb-a639-580831c446e4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8aa0c315-bb84-47fb-a639-580831c446e4.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-8aa0c315-bb84-47fb-a639-580831c446e4.shogun-image {
    
    
  }


.s-8aa0c315-bb84-47fb-a639-580831c446e4 .shogun-image-content {
  
    align-items: center;
  
}

.s-8aa0c315-bb84-47fb-a639-580831c446e4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8aa0c315-bb84-47fb-a639-580831c446e4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8aa0c315-bb84-47fb-a639-580831c446e4.shogun-image {
  box-sizing: border-box;
}



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





  img.s-8aa0c315-bb84-47fb-a639-580831c446e4.shogun-image {
    
    
  }


.s-8aa0c315-bb84-47fb-a639-580831c446e4 .shogun-image-content {
  
    align-items: center;
  
}

.s-8aa0c315-bb84-47fb-a639-580831c446e4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8aa0c315-bb84-47fb-a639-580831c446e4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8aa0c315-bb84-47fb-a639-580831c446e4.shogun-image {
  box-sizing: border-box;
}



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





  img.s-8aa0c315-bb84-47fb-a639-580831c446e4.shogun-image {
    
    
  }


.s-8aa0c315-bb84-47fb-a639-580831c446e4 .shogun-image-content {
  
    align-items: center;
  
}

.s-8aa0c315-bb84-47fb-a639-580831c446e4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8aa0c315-bb84-47fb-a639-580831c446e4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8aa0c315-bb84-47fb-a639-580831c446e4.shogun-image {
  box-sizing: border-box;
}



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





  img.s-8aa0c315-bb84-47fb-a639-580831c446e4.shogun-image {
    
    
  }


.s-8aa0c315-bb84-47fb-a639-580831c446e4 .shogun-image-content {
  
    align-items: center;
  
}

.s-8aa0c315-bb84-47fb-a639-580831c446e4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8aa0c315-bb84-47fb-a639-580831c446e4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8aa0c315-bb84-47fb-a639-580831c446e4.shogun-image {
  box-sizing: border-box;
}



}
#s-d7311578-0dff-491f-9225-ee9fe330b7c4 {
  margin-top: 7%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d7311578-0dff-491f-9225-ee9fe330b7c4 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-85ebf5bc-1f6a-41ca-a51d-34a2074e7b30 {
  margin-top: 3%;
margin-left: 0%;
margin-right: 10%;
}

#s-0ae9c6f1-afcc-4f98-80e7-f2e823202bc2 {
  margin-top: -2%;
margin-bottom: -2%;
}

#s-0ae9c6f1-afcc-4f98-80e7-f2e823202bc2 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(13, calc(100vw / 24));
}

#s-0515558c-c147-4f7a-be40-4833f9d8fd30 {
  max-width: 1500px;
aspect-ratio: 11/11;
text-align: center;
}

#s-0515558c-c147-4f7a-be40-4833f9d8fd30-root {
  grid-column-start: 1;
grid-column-end: 12;
grid-row-start: 3;
grid-row-end: 14;
z-index: 0;
}





  #s-0515558c-c147-4f7a-be40-4833f9d8fd30 img.shogun-image,
  #s-0515558c-c147-4f7a-be40-4833f9d8fd30 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0515558c-c147-4f7a-be40-4833f9d8fd30 {
    width: 100%;
    height: auto;
  }

  #s-0515558c-c147-4f7a-be40-4833f9d8fd30 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0515558c-c147-4f7a-be40-4833f9d8fd30.shogun-image {
    
    
  }


.s-0515558c-c147-4f7a-be40-4833f9d8fd30 .shogun-image-content {
  
    align-items: center;
  
}

.s-0515558c-c147-4f7a-be40-4833f9d8fd30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0515558c-c147-4f7a-be40-4833f9d8fd30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0515558c-c147-4f7a-be40-4833f9d8fd30.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0515558c-c147-4f7a-be40-4833f9d8fd30 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-0515558c-c147-4f7a-be40-4833f9d8fd30.shogun-image-container {
      position: relative;
    }

    .s-0515558c-c147-4f7a-be40-4833f9d8fd30.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0515558c-c147-4f7a-be40-4833f9d8fd30.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0515558c-c147-4f7a-be40-4833f9d8fd30 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-0515558c-c147-4f7a-be40-4833f9d8fd30 img.shogun-image,
  #s-0515558c-c147-4f7a-be40-4833f9d8fd30 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0515558c-c147-4f7a-be40-4833f9d8fd30 {
    width: 100%;
    height: auto;
  }

  #s-0515558c-c147-4f7a-be40-4833f9d8fd30 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0515558c-c147-4f7a-be40-4833f9d8fd30.shogun-image {
    
    
  }


.s-0515558c-c147-4f7a-be40-4833f9d8fd30 .shogun-image-content {
  
    align-items: center;
  
}

.s-0515558c-c147-4f7a-be40-4833f9d8fd30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0515558c-c147-4f7a-be40-4833f9d8fd30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0515558c-c147-4f7a-be40-4833f9d8fd30.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0515558c-c147-4f7a-be40-4833f9d8fd30 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-0515558c-c147-4f7a-be40-4833f9d8fd30.shogun-image-container {
      position: relative;
    }

    .s-0515558c-c147-4f7a-be40-4833f9d8fd30.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0515558c-c147-4f7a-be40-4833f9d8fd30.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0515558c-c147-4f7a-be40-4833f9d8fd30 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-0515558c-c147-4f7a-be40-4833f9d8fd30 img.shogun-image,
  #s-0515558c-c147-4f7a-be40-4833f9d8fd30 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0515558c-c147-4f7a-be40-4833f9d8fd30 {
    width: 100%;
    height: auto;
  }

  #s-0515558c-c147-4f7a-be40-4833f9d8fd30 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0515558c-c147-4f7a-be40-4833f9d8fd30.shogun-image {
    
    
  }


.s-0515558c-c147-4f7a-be40-4833f9d8fd30 .shogun-image-content {
  
    align-items: center;
  
}

.s-0515558c-c147-4f7a-be40-4833f9d8fd30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0515558c-c147-4f7a-be40-4833f9d8fd30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0515558c-c147-4f7a-be40-4833f9d8fd30.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0515558c-c147-4f7a-be40-4833f9d8fd30 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-0515558c-c147-4f7a-be40-4833f9d8fd30.shogun-image-container {
      position: relative;
    }

    .s-0515558c-c147-4f7a-be40-4833f9d8fd30.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0515558c-c147-4f7a-be40-4833f9d8fd30.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0515558c-c147-4f7a-be40-4833f9d8fd30 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-0515558c-c147-4f7a-be40-4833f9d8fd30 img.shogun-image,
  #s-0515558c-c147-4f7a-be40-4833f9d8fd30 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0515558c-c147-4f7a-be40-4833f9d8fd30 {
    width: 100%;
    height: auto;
  }

  #s-0515558c-c147-4f7a-be40-4833f9d8fd30 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0515558c-c147-4f7a-be40-4833f9d8fd30.shogun-image {
    
    
  }


.s-0515558c-c147-4f7a-be40-4833f9d8fd30 .shogun-image-content {
  
    align-items: center;
  
}

.s-0515558c-c147-4f7a-be40-4833f9d8fd30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0515558c-c147-4f7a-be40-4833f9d8fd30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0515558c-c147-4f7a-be40-4833f9d8fd30.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0515558c-c147-4f7a-be40-4833f9d8fd30 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-0515558c-c147-4f7a-be40-4833f9d8fd30.shogun-image-container {
      position: relative;
    }

    .s-0515558c-c147-4f7a-be40-4833f9d8fd30.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0515558c-c147-4f7a-be40-4833f9d8fd30.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0515558c-c147-4f7a-be40-4833f9d8fd30 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-0515558c-c147-4f7a-be40-4833f9d8fd30 img.shogun-image,
  #s-0515558c-c147-4f7a-be40-4833f9d8fd30 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0515558c-c147-4f7a-be40-4833f9d8fd30 {
    width: 100%;
    height: auto;
  }

  #s-0515558c-c147-4f7a-be40-4833f9d8fd30 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0515558c-c147-4f7a-be40-4833f9d8fd30.shogun-image {
    
    
  }


.s-0515558c-c147-4f7a-be40-4833f9d8fd30 .shogun-image-content {
  
    align-items: center;
  
}

.s-0515558c-c147-4f7a-be40-4833f9d8fd30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0515558c-c147-4f7a-be40-4833f9d8fd30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0515558c-c147-4f7a-be40-4833f9d8fd30.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0515558c-c147-4f7a-be40-4833f9d8fd30 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-0515558c-c147-4f7a-be40-4833f9d8fd30.shogun-image-container {
      position: relative;
    }

    .s-0515558c-c147-4f7a-be40-4833f9d8fd30.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0515558c-c147-4f7a-be40-4833f9d8fd30.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0515558c-c147-4f7a-be40-4833f9d8fd30 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70 {
  max-width: 1500px;
aspect-ratio: 10/10;
text-align: center;
}

#s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70-root {
  grid-column-start: 12;
grid-column-end: 22;
grid-row-start: 1;
grid-row-end: 11;
z-index: 1;
}





  #s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70 img.shogun-image,
  #s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70 {
    width: 100%;
    height: auto;
  }

  #s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70.shogun-image {
    
    
  }


.s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70 .shogun-image-content {
  
    align-items: center;
  
}

.s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70 {
      --shg-aspect-ratio: calc(10/10); 
    }

    .s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70.shogun-image-container {
      position: relative;
    }

    .s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70 img.shogun-image,
  #s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70 {
    width: 100%;
    height: auto;
  }

  #s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70.shogun-image {
    
    
  }


.s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70 .shogun-image-content {
  
    align-items: center;
  
}

.s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70 {
      --shg-aspect-ratio: calc(10/10); 
    }

    .s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70.shogun-image-container {
      position: relative;
    }

    .s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70 img.shogun-image,
  #s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70 {
    width: 100%;
    height: auto;
  }

  #s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70.shogun-image {
    
    
  }


.s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70 .shogun-image-content {
  
    align-items: center;
  
}

.s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70 {
      --shg-aspect-ratio: calc(10/10); 
    }

    .s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70.shogun-image-container {
      position: relative;
    }

    .s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70 img.shogun-image,
  #s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70 {
    width: 100%;
    height: auto;
  }

  #s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70.shogun-image {
    
    
  }


.s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70 .shogun-image-content {
  
    align-items: center;
  
}

.s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70 {
      --shg-aspect-ratio: calc(10/10); 
    }

    .s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70.shogun-image-container {
      position: relative;
    }

    .s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70 img.shogun-image,
  #s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70 {
    width: 100%;
    height: auto;
  }

  #s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70.shogun-image {
    
    
  }


.s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70 .shogun-image-content {
  
    align-items: center;
  
}

.s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70 {
      --shg-aspect-ratio: calc(10/10); 
    }

    .s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70.shogun-image-container {
      position: relative;
    }

    .s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1598de9e-17c8-46cd-b7b0-c0b7b4aabc70 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-dfd7b090-1aef-47af-98ec-910ab31941c2 {
  margin-top: 10%;
margin-left: 5%;
margin-bottom: 0%;
max-width: 1311px;
aspect-ratio: 1311/1800;
text-align: center;
}







  img.s-dfd7b090-1aef-47af-98ec-910ab31941c2.shogun-image {
    
    
  }


.s-dfd7b090-1aef-47af-98ec-910ab31941c2 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-dfd7b090-1aef-47af-98ec-910ab31941c2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dfd7b090-1aef-47af-98ec-910ab31941c2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dfd7b090-1aef-47af-98ec-910ab31941c2.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-dfd7b090-1aef-47af-98ec-910ab31941c2.shogun-image {
    
    
  }


.s-dfd7b090-1aef-47af-98ec-910ab31941c2 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-dfd7b090-1aef-47af-98ec-910ab31941c2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dfd7b090-1aef-47af-98ec-910ab31941c2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dfd7b090-1aef-47af-98ec-910ab31941c2.shogun-image {
  box-sizing: border-box;
}



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





  img.s-dfd7b090-1aef-47af-98ec-910ab31941c2.shogun-image {
    
    
  }


.s-dfd7b090-1aef-47af-98ec-910ab31941c2 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-dfd7b090-1aef-47af-98ec-910ab31941c2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dfd7b090-1aef-47af-98ec-910ab31941c2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dfd7b090-1aef-47af-98ec-910ab31941c2.shogun-image {
  box-sizing: border-box;
}



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





  img.s-dfd7b090-1aef-47af-98ec-910ab31941c2.shogun-image {
    
    
  }


.s-dfd7b090-1aef-47af-98ec-910ab31941c2 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-dfd7b090-1aef-47af-98ec-910ab31941c2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dfd7b090-1aef-47af-98ec-910ab31941c2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dfd7b090-1aef-47af-98ec-910ab31941c2.shogun-image {
  box-sizing: border-box;
}



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





  img.s-dfd7b090-1aef-47af-98ec-910ab31941c2.shogun-image {
    
    
  }


.s-dfd7b090-1aef-47af-98ec-910ab31941c2 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-dfd7b090-1aef-47af-98ec-910ab31941c2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dfd7b090-1aef-47af-98ec-910ab31941c2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dfd7b090-1aef-47af-98ec-910ab31941c2.shogun-image {
  box-sizing: border-box;
}



}
#s-dd11efdf-2129-44fc-9f6a-eb2c16de7917 {
  margin-top: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-dd11efdf-2129-44fc-9f6a-eb2c16de7917 .shogun-heading-component h5 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 22px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-a15f46da-df2a-4cb3-ae40-d526fc4a99f8 {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-a15f46da-df2a-4cb3-ae40-d526fc4a99f8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a15f46da-df2a-4cb3-ae40-d526fc4a99f8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-947a172b-4763-49e1-bbed-7badc087d4ee {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 15px;
padding-left: 0%;
padding-bottom: 15px;
padding-right: 0%;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: rgba(29, 29, 29, 0);
border-radius: 3px;
max-width: 100%;
background-color: rgba(29, 29, 29, 0.9);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-947a172b-4763-49e1-bbed-7badc087d4ee:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 0) !important;
background-color: rgba(74, 74, 74, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-947a172b-4763-49e1-bbed-7badc087d4ee:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(155, 155, 155, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-947a172b-4763-49e1-bbed-7badc087d4ee-root {
    text-align: center;
  }


#s-947a172b-4763-49e1-bbed-7badc087d4ee.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-947a172b-4763-49e1-bbed-7badc087d4ee-root {
    text-align: center;
  }


#s-947a172b-4763-49e1-bbed-7badc087d4ee.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-947a172b-4763-49e1-bbed-7badc087d4ee-root {
    text-align: center;
  }


#s-947a172b-4763-49e1-bbed-7badc087d4ee.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-947a172b-4763-49e1-bbed-7badc087d4ee-root {
    text-align: center;
  }


#s-947a172b-4763-49e1-bbed-7badc087d4ee.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-947a172b-4763-49e1-bbed-7badc087d4ee-root {
    text-align: center;
  }


#s-947a172b-4763-49e1-bbed-7badc087d4ee.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-947a172b-4763-49e1-bbed-7badc087d4ee-root {
    text-align: center;
  }


#s-947a172b-4763-49e1-bbed-7badc087d4ee.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-56273ce9-28c6-4a0c-8bc4-5012bb62a459 {
  margin-top: 6%;
}

@media (min-width: 0px) {
[id="s-56273ce9-28c6-4a0c-8bc4-5012bb62a459"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-56273ce9-28c6-4a0c-8bc4-5012bb62a459"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-56273ce9-28c6-4a0c-8bc4-5012bb62a459"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-56273ce9-28c6-4a0c-8bc4-5012bb62a459"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-56273ce9-28c6-4a0c-8bc4-5012bb62a459"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-56273ce9-28c6-4a0c-8bc4-5012bb62a459"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-56273ce9-28c6-4a0c-8bc4-5012bb62a459"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

#s-fafd8a83-d692-4fba-bdb4-bdb21341cc51 {
  margin-top: 2%;
margin-left: 5%;
margin-bottom: 0%;
max-width: 1311px;
aspect-ratio: 1311/1800;
text-align: center;
}







  img.s-fafd8a83-d692-4fba-bdb4-bdb21341cc51.shogun-image {
    
    
  }


.s-fafd8a83-d692-4fba-bdb4-bdb21341cc51 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-fafd8a83-d692-4fba-bdb4-bdb21341cc51.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fafd8a83-d692-4fba-bdb4-bdb21341cc51.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fafd8a83-d692-4fba-bdb4-bdb21341cc51.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-fafd8a83-d692-4fba-bdb4-bdb21341cc51.shogun-image {
    
    
  }


.s-fafd8a83-d692-4fba-bdb4-bdb21341cc51 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-fafd8a83-d692-4fba-bdb4-bdb21341cc51.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fafd8a83-d692-4fba-bdb4-bdb21341cc51.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fafd8a83-d692-4fba-bdb4-bdb21341cc51.shogun-image {
  box-sizing: border-box;
}



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





  img.s-fafd8a83-d692-4fba-bdb4-bdb21341cc51.shogun-image {
    
    
  }


.s-fafd8a83-d692-4fba-bdb4-bdb21341cc51 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-fafd8a83-d692-4fba-bdb4-bdb21341cc51.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fafd8a83-d692-4fba-bdb4-bdb21341cc51.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fafd8a83-d692-4fba-bdb4-bdb21341cc51.shogun-image {
  box-sizing: border-box;
}



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





  img.s-fafd8a83-d692-4fba-bdb4-bdb21341cc51.shogun-image {
    
    
  }


.s-fafd8a83-d692-4fba-bdb4-bdb21341cc51 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-fafd8a83-d692-4fba-bdb4-bdb21341cc51.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fafd8a83-d692-4fba-bdb4-bdb21341cc51.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fafd8a83-d692-4fba-bdb4-bdb21341cc51.shogun-image {
  box-sizing: border-box;
}



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





  img.s-fafd8a83-d692-4fba-bdb4-bdb21341cc51.shogun-image {
    
    
  }


.s-fafd8a83-d692-4fba-bdb4-bdb21341cc51 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-fafd8a83-d692-4fba-bdb4-bdb21341cc51.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fafd8a83-d692-4fba-bdb4-bdb21341cc51.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fafd8a83-d692-4fba-bdb4-bdb21341cc51.shogun-image {
  box-sizing: border-box;
}



}
#s-5a5f497b-8453-4760-b46b-7569bacb112b {
  margin-top: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5a5f497b-8453-4760-b46b-7569bacb112b .shogun-heading-component h5 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 22px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-ca4b530c-f470-4326-854b-f12995d30912 {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-ca4b530c-f470-4326-854b-f12995d30912 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ca4b530c-f470-4326-854b-f12995d30912.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-83419639-2589-4fc5-a059-266701a50bdf {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 15px;
padding-left: 0%;
padding-bottom: 15px;
padding-right: 0%;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: rgba(29, 29, 29, 0);
border-radius: 3px;
max-width: 100%;
background-color: rgba(29, 29, 29, 0.9);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-83419639-2589-4fc5-a059-266701a50bdf:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 0) !important;
background-color: rgba(74, 74, 74, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-83419639-2589-4fc5-a059-266701a50bdf:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(155, 155, 155, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-83419639-2589-4fc5-a059-266701a50bdf-root {
    text-align: center;
  }


#s-83419639-2589-4fc5-a059-266701a50bdf.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-83419639-2589-4fc5-a059-266701a50bdf-root {
    text-align: center;
  }


#s-83419639-2589-4fc5-a059-266701a50bdf.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-83419639-2589-4fc5-a059-266701a50bdf-root {
    text-align: center;
  }


#s-83419639-2589-4fc5-a059-266701a50bdf.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-83419639-2589-4fc5-a059-266701a50bdf-root {
    text-align: center;
  }


#s-83419639-2589-4fc5-a059-266701a50bdf.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-83419639-2589-4fc5-a059-266701a50bdf-root {
    text-align: center;
  }


#s-83419639-2589-4fc5-a059-266701a50bdf.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-83419639-2589-4fc5-a059-266701a50bdf-root {
    text-align: center;
  }


#s-83419639-2589-4fc5-a059-266701a50bdf.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-67958556-e20d-40a0-8143-e90af811400d {
  border-style: solid;
margin-top: 0px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-67958556-e20d-40a0-8143-e90af811400d:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-67958556-e20d-40a0-8143-e90af811400d:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-67958556-e20d-40a0-8143-e90af811400d-root {
    text-align: center;
  }


#s-67958556-e20d-40a0-8143-e90af811400d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-67958556-e20d-40a0-8143-e90af811400d-root {
    text-align: center;
  }


#s-67958556-e20d-40a0-8143-e90af811400d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-67958556-e20d-40a0-8143-e90af811400d-root {
    text-align: center;
  }


#s-67958556-e20d-40a0-8143-e90af811400d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-67958556-e20d-40a0-8143-e90af811400d-root {
    text-align: center;
  }


#s-67958556-e20d-40a0-8143-e90af811400d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-67958556-e20d-40a0-8143-e90af811400d-root {
    text-align: center;
  }


#s-67958556-e20d-40a0-8143-e90af811400d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-67958556-e20d-40a0-8143-e90af811400d-root {
    text-align: center;
  }


#s-67958556-e20d-40a0-8143-e90af811400d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

@media (min-width: 0px) {
[id="s-e23fbb7c-50c6-43a0-8c4e-d05d6dbbffdf"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e23fbb7c-50c6-43a0-8c4e-d05d6dbbffdf"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-e23fbb7c-50c6-43a0-8c4e-d05d6dbbffdf"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-e23fbb7c-50c6-43a0-8c4e-d05d6dbbffdf"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-e23fbb7c-50c6-43a0-8c4e-d05d6dbbffdf"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-e23fbb7c-50c6-43a0-8c4e-d05d6dbbffdf"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-e23fbb7c-50c6-43a0-8c4e-d05d6dbbffdf"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-acfcc3b3-29ce-42c7-b63e-37cd43028cc5 {
  margin-left: 0%;
margin-right: 20%;
max-width: 512px;
aspect-ratio: 1/1;
text-align: center;
}







  img.s-acfcc3b3-29ce-42c7-b63e-37cd43028cc5.shogun-image {
    
    
  }


.s-acfcc3b3-29ce-42c7-b63e-37cd43028cc5 .shogun-image-content {
  
    align-items: center;
  
}

.s-acfcc3b3-29ce-42c7-b63e-37cd43028cc5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-acfcc3b3-29ce-42c7-b63e-37cd43028cc5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-acfcc3b3-29ce-42c7-b63e-37cd43028cc5.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-acfcc3b3-29ce-42c7-b63e-37cd43028cc5.shogun-image {
    
    
  }


.s-acfcc3b3-29ce-42c7-b63e-37cd43028cc5 .shogun-image-content {
  
    align-items: center;
  
}

.s-acfcc3b3-29ce-42c7-b63e-37cd43028cc5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-acfcc3b3-29ce-42c7-b63e-37cd43028cc5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-acfcc3b3-29ce-42c7-b63e-37cd43028cc5.shogun-image {
  box-sizing: border-box;
}



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





  img.s-acfcc3b3-29ce-42c7-b63e-37cd43028cc5.shogun-image {
    
    
  }


.s-acfcc3b3-29ce-42c7-b63e-37cd43028cc5 .shogun-image-content {
  
    align-items: center;
  
}

.s-acfcc3b3-29ce-42c7-b63e-37cd43028cc5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-acfcc3b3-29ce-42c7-b63e-37cd43028cc5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-acfcc3b3-29ce-42c7-b63e-37cd43028cc5.shogun-image {
  box-sizing: border-box;
}



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





  img.s-acfcc3b3-29ce-42c7-b63e-37cd43028cc5.shogun-image {
    
    
  }


.s-acfcc3b3-29ce-42c7-b63e-37cd43028cc5 .shogun-image-content {
  
    align-items: center;
  
}

.s-acfcc3b3-29ce-42c7-b63e-37cd43028cc5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-acfcc3b3-29ce-42c7-b63e-37cd43028cc5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-acfcc3b3-29ce-42c7-b63e-37cd43028cc5.shogun-image {
  box-sizing: border-box;
}



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





  img.s-acfcc3b3-29ce-42c7-b63e-37cd43028cc5.shogun-image {
    
    
  }


.s-acfcc3b3-29ce-42c7-b63e-37cd43028cc5 .shogun-image-content {
  
    align-items: center;
  
}

.s-acfcc3b3-29ce-42c7-b63e-37cd43028cc5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-acfcc3b3-29ce-42c7-b63e-37cd43028cc5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-acfcc3b3-29ce-42c7-b63e-37cd43028cc5.shogun-image {
  box-sizing: border-box;
}



}
#s-cf9f7aea-afb2-4c5f-a652-286abec04795 {
  margin-top: 2%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-cf9f7aea-afb2-4c5f-a652-286abec04795 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-2f82fddb-a007-4d0e-8b03-af1fd6f3e07e {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-574344fa-0575-4cca-b1b4-54d1f66f2ce4 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(15, calc(100vw / 24));
}

#s-193cd167-1dd8-4686-8894-87d6aefbaa3b {
  max-width: 1500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-193cd167-1dd8-4686-8894-87d6aefbaa3b-root {
  grid-column-start: 1;
grid-column-end: 12;
grid-row-start: 1;
grid-row-end: 12;
z-index: 0;
}





  #s-193cd167-1dd8-4686-8894-87d6aefbaa3b img.shogun-image,
  #s-193cd167-1dd8-4686-8894-87d6aefbaa3b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-193cd167-1dd8-4686-8894-87d6aefbaa3b {
    width: 100%;
    height: auto;
  }

  #s-193cd167-1dd8-4686-8894-87d6aefbaa3b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-193cd167-1dd8-4686-8894-87d6aefbaa3b.shogun-image {
    
    
  }


.s-193cd167-1dd8-4686-8894-87d6aefbaa3b .shogun-image-content {
  
    align-items: center;
  
}

.s-193cd167-1dd8-4686-8894-87d6aefbaa3b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-193cd167-1dd8-4686-8894-87d6aefbaa3b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-193cd167-1dd8-4686-8894-87d6aefbaa3b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-193cd167-1dd8-4686-8894-87d6aefbaa3b {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-193cd167-1dd8-4686-8894-87d6aefbaa3b.shogun-image-container {
      position: relative;
    }

    .s-193cd167-1dd8-4686-8894-87d6aefbaa3b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-193cd167-1dd8-4686-8894-87d6aefbaa3b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-193cd167-1dd8-4686-8894-87d6aefbaa3b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-193cd167-1dd8-4686-8894-87d6aefbaa3b img.shogun-image,
  #s-193cd167-1dd8-4686-8894-87d6aefbaa3b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-193cd167-1dd8-4686-8894-87d6aefbaa3b {
    width: 100%;
    height: auto;
  }

  #s-193cd167-1dd8-4686-8894-87d6aefbaa3b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-193cd167-1dd8-4686-8894-87d6aefbaa3b.shogun-image {
    
    
  }


.s-193cd167-1dd8-4686-8894-87d6aefbaa3b .shogun-image-content {
  
    align-items: center;
  
}

.s-193cd167-1dd8-4686-8894-87d6aefbaa3b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-193cd167-1dd8-4686-8894-87d6aefbaa3b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-193cd167-1dd8-4686-8894-87d6aefbaa3b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-193cd167-1dd8-4686-8894-87d6aefbaa3b {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-193cd167-1dd8-4686-8894-87d6aefbaa3b.shogun-image-container {
      position: relative;
    }

    .s-193cd167-1dd8-4686-8894-87d6aefbaa3b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-193cd167-1dd8-4686-8894-87d6aefbaa3b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-193cd167-1dd8-4686-8894-87d6aefbaa3b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-193cd167-1dd8-4686-8894-87d6aefbaa3b img.shogun-image,
  #s-193cd167-1dd8-4686-8894-87d6aefbaa3b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-193cd167-1dd8-4686-8894-87d6aefbaa3b {
    width: 100%;
    height: auto;
  }

  #s-193cd167-1dd8-4686-8894-87d6aefbaa3b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-193cd167-1dd8-4686-8894-87d6aefbaa3b.shogun-image {
    
    
  }


.s-193cd167-1dd8-4686-8894-87d6aefbaa3b .shogun-image-content {
  
    align-items: center;
  
}

.s-193cd167-1dd8-4686-8894-87d6aefbaa3b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-193cd167-1dd8-4686-8894-87d6aefbaa3b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-193cd167-1dd8-4686-8894-87d6aefbaa3b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-193cd167-1dd8-4686-8894-87d6aefbaa3b {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-193cd167-1dd8-4686-8894-87d6aefbaa3b.shogun-image-container {
      position: relative;
    }

    .s-193cd167-1dd8-4686-8894-87d6aefbaa3b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-193cd167-1dd8-4686-8894-87d6aefbaa3b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-193cd167-1dd8-4686-8894-87d6aefbaa3b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-193cd167-1dd8-4686-8894-87d6aefbaa3b img.shogun-image,
  #s-193cd167-1dd8-4686-8894-87d6aefbaa3b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-193cd167-1dd8-4686-8894-87d6aefbaa3b {
    width: 100%;
    height: auto;
  }

  #s-193cd167-1dd8-4686-8894-87d6aefbaa3b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-193cd167-1dd8-4686-8894-87d6aefbaa3b.shogun-image {
    
    
  }


.s-193cd167-1dd8-4686-8894-87d6aefbaa3b .shogun-image-content {
  
    align-items: center;
  
}

.s-193cd167-1dd8-4686-8894-87d6aefbaa3b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-193cd167-1dd8-4686-8894-87d6aefbaa3b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-193cd167-1dd8-4686-8894-87d6aefbaa3b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-193cd167-1dd8-4686-8894-87d6aefbaa3b {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-193cd167-1dd8-4686-8894-87d6aefbaa3b.shogun-image-container {
      position: relative;
    }

    .s-193cd167-1dd8-4686-8894-87d6aefbaa3b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-193cd167-1dd8-4686-8894-87d6aefbaa3b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-193cd167-1dd8-4686-8894-87d6aefbaa3b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-193cd167-1dd8-4686-8894-87d6aefbaa3b img.shogun-image,
  #s-193cd167-1dd8-4686-8894-87d6aefbaa3b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-193cd167-1dd8-4686-8894-87d6aefbaa3b {
    width: 100%;
    height: auto;
  }

  #s-193cd167-1dd8-4686-8894-87d6aefbaa3b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-193cd167-1dd8-4686-8894-87d6aefbaa3b.shogun-image {
    
    
  }


.s-193cd167-1dd8-4686-8894-87d6aefbaa3b .shogun-image-content {
  
    align-items: center;
  
}

.s-193cd167-1dd8-4686-8894-87d6aefbaa3b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-193cd167-1dd8-4686-8894-87d6aefbaa3b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-193cd167-1dd8-4686-8894-87d6aefbaa3b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-193cd167-1dd8-4686-8894-87d6aefbaa3b {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-193cd167-1dd8-4686-8894-87d6aefbaa3b.shogun-image-container {
      position: relative;
    }

    .s-193cd167-1dd8-4686-8894-87d6aefbaa3b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-193cd167-1dd8-4686-8894-87d6aefbaa3b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-193cd167-1dd8-4686-8894-87d6aefbaa3b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b {
  max-width: 1500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b-root {
  grid-column-start: 11;
grid-column-end: 25;
grid-row-start: 2;
grid-row-end: 16;
z-index: 1;
}





  #s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b img.shogun-image,
  #s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b {
    width: 100%;
    height: auto;
  }

  #s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b.shogun-image {
    
    
  }


.s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b .shogun-image-content {
  
    align-items: center;
  
}

.s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b.shogun-image-container {
      position: relative;
    }

    .s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b img.shogun-image,
  #s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b {
    width: 100%;
    height: auto;
  }

  #s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b.shogun-image {
    
    
  }


.s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b .shogun-image-content {
  
    align-items: center;
  
}

.s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b.shogun-image-container {
      position: relative;
    }

    .s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b img.shogun-image,
  #s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b {
    width: 100%;
    height: auto;
  }

  #s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b.shogun-image {
    
    
  }


.s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b .shogun-image-content {
  
    align-items: center;
  
}

.s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b.shogun-image-container {
      position: relative;
    }

    .s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b img.shogun-image,
  #s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b {
    width: 100%;
    height: auto;
  }

  #s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b.shogun-image {
    
    
  }


.s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b .shogun-image-content {
  
    align-items: center;
  
}

.s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b.shogun-image-container {
      position: relative;
    }

    .s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b img.shogun-image,
  #s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b {
    width: 100%;
    height: auto;
  }

  #s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b.shogun-image {
    
    
  }


.s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b .shogun-image-content {
  
    align-items: center;
  
}

.s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b {
      --shg-aspect-ratio: calc(14/14); 
    }

    .s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b.shogun-image-container {
      position: relative;
    }

    .s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f93e7094-28a5-4f76-a5b4-1d5d5b7e362b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-15200aff-7ec9-4b1a-87df-1eb747973866 {
  margin-top: 6%;
}

@media (min-width: 0px) {
[id="s-15200aff-7ec9-4b1a-87df-1eb747973866"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-15200aff-7ec9-4b1a-87df-1eb747973866"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-15200aff-7ec9-4b1a-87df-1eb747973866"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-15200aff-7ec9-4b1a-87df-1eb747973866"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-15200aff-7ec9-4b1a-87df-1eb747973866"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-15200aff-7ec9-4b1a-87df-1eb747973866"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-15200aff-7ec9-4b1a-87df-1eb747973866"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

#s-76ae0b1f-20ee-4b6b-80dc-4952d8a37e84 {
  margin-top: 5%;
}

@media (min-width: 0px) {
[id="s-76ae0b1f-20ee-4b6b-80dc-4952d8a37e84"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-76ae0b1f-20ee-4b6b-80dc-4952d8a37e84"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-76ae0b1f-20ee-4b6b-80dc-4952d8a37e84"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-76ae0b1f-20ee-4b6b-80dc-4952d8a37e84"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-76ae0b1f-20ee-4b6b-80dc-4952d8a37e84"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-76ae0b1f-20ee-4b6b-80dc-4952d8a37e84"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-76ae0b1f-20ee-4b6b-80dc-4952d8a37e84"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-db214bd1-7bb2-4a1a-96bf-1de5e7e03d34 {
  margin-left: 0%;
margin-right: 20%;
max-width: 512px;
aspect-ratio: 1/1;
text-align: center;
}







  img.s-db214bd1-7bb2-4a1a-96bf-1de5e7e03d34.shogun-image {
    
    
  }


.s-db214bd1-7bb2-4a1a-96bf-1de5e7e03d34 .shogun-image-content {
  
    align-items: center;
  
}

.s-db214bd1-7bb2-4a1a-96bf-1de5e7e03d34.shg-align-container {
  display: flex;
  justify-content: center
}

.s-db214bd1-7bb2-4a1a-96bf-1de5e7e03d34.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-db214bd1-7bb2-4a1a-96bf-1de5e7e03d34.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-db214bd1-7bb2-4a1a-96bf-1de5e7e03d34.shogun-image {
    
    
  }


.s-db214bd1-7bb2-4a1a-96bf-1de5e7e03d34 .shogun-image-content {
  
    align-items: center;
  
}

.s-db214bd1-7bb2-4a1a-96bf-1de5e7e03d34.shg-align-container {
  display: flex;
  justify-content: center
}

.s-db214bd1-7bb2-4a1a-96bf-1de5e7e03d34.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-db214bd1-7bb2-4a1a-96bf-1de5e7e03d34.shogun-image {
  box-sizing: border-box;
}



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





  img.s-db214bd1-7bb2-4a1a-96bf-1de5e7e03d34.shogun-image {
    
    
  }


.s-db214bd1-7bb2-4a1a-96bf-1de5e7e03d34 .shogun-image-content {
  
    align-items: center;
  
}

.s-db214bd1-7bb2-4a1a-96bf-1de5e7e03d34.shg-align-container {
  display: flex;
  justify-content: center
}

.s-db214bd1-7bb2-4a1a-96bf-1de5e7e03d34.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-db214bd1-7bb2-4a1a-96bf-1de5e7e03d34.shogun-image {
  box-sizing: border-box;
}



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





  img.s-db214bd1-7bb2-4a1a-96bf-1de5e7e03d34.shogun-image {
    
    
  }


.s-db214bd1-7bb2-4a1a-96bf-1de5e7e03d34 .shogun-image-content {
  
    align-items: center;
  
}

.s-db214bd1-7bb2-4a1a-96bf-1de5e7e03d34.shg-align-container {
  display: flex;
  justify-content: center
}

.s-db214bd1-7bb2-4a1a-96bf-1de5e7e03d34.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-db214bd1-7bb2-4a1a-96bf-1de5e7e03d34.shogun-image {
  box-sizing: border-box;
}



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





  img.s-db214bd1-7bb2-4a1a-96bf-1de5e7e03d34.shogun-image {
    
    
  }


.s-db214bd1-7bb2-4a1a-96bf-1de5e7e03d34 .shogun-image-content {
  
    align-items: center;
  
}

.s-db214bd1-7bb2-4a1a-96bf-1de5e7e03d34.shg-align-container {
  display: flex;
  justify-content: center
}

.s-db214bd1-7bb2-4a1a-96bf-1de5e7e03d34.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-db214bd1-7bb2-4a1a-96bf-1de5e7e03d34.shogun-image {
  box-sizing: border-box;
}



}
#s-615cd1e0-5af1-4785-9ea3-8f5221a9d586 {
  margin-top: 5%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-615cd1e0-5af1-4785-9ea3-8f5221a9d586 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-570343ff-6bc0-4624-8c4c-256a556e576b {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-d7a2c4c4-f004-40fc-856a-5b84181de131 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(12, calc(100vw / 24));
}

#s-764bf90a-26e3-4691-b8ac-0409079e6b3b {
  max-width: 1500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-764bf90a-26e3-4691-b8ac-0409079e6b3b-root {
  grid-column-start: 1;
grid-column-end: 11;
grid-row-start: 3;
grid-row-end: 13;
z-index: 0;
}





  #s-764bf90a-26e3-4691-b8ac-0409079e6b3b img.shogun-image,
  #s-764bf90a-26e3-4691-b8ac-0409079e6b3b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-764bf90a-26e3-4691-b8ac-0409079e6b3b {
    width: 100%;
    height: auto;
  }

  #s-764bf90a-26e3-4691-b8ac-0409079e6b3b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-764bf90a-26e3-4691-b8ac-0409079e6b3b.shogun-image {
    
    
  }


.s-764bf90a-26e3-4691-b8ac-0409079e6b3b .shogun-image-content {
  
    align-items: center;
  
}

.s-764bf90a-26e3-4691-b8ac-0409079e6b3b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-764bf90a-26e3-4691-b8ac-0409079e6b3b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-764bf90a-26e3-4691-b8ac-0409079e6b3b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-764bf90a-26e3-4691-b8ac-0409079e6b3b {
      --shg-aspect-ratio: calc(10/10); 
    }

    .s-764bf90a-26e3-4691-b8ac-0409079e6b3b.shogun-image-container {
      position: relative;
    }

    .s-764bf90a-26e3-4691-b8ac-0409079e6b3b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-764bf90a-26e3-4691-b8ac-0409079e6b3b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-764bf90a-26e3-4691-b8ac-0409079e6b3b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-764bf90a-26e3-4691-b8ac-0409079e6b3b img.shogun-image,
  #s-764bf90a-26e3-4691-b8ac-0409079e6b3b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-764bf90a-26e3-4691-b8ac-0409079e6b3b {
    width: 100%;
    height: auto;
  }

  #s-764bf90a-26e3-4691-b8ac-0409079e6b3b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-764bf90a-26e3-4691-b8ac-0409079e6b3b.shogun-image {
    
    
  }


.s-764bf90a-26e3-4691-b8ac-0409079e6b3b .shogun-image-content {
  
    align-items: center;
  
}

.s-764bf90a-26e3-4691-b8ac-0409079e6b3b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-764bf90a-26e3-4691-b8ac-0409079e6b3b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-764bf90a-26e3-4691-b8ac-0409079e6b3b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-764bf90a-26e3-4691-b8ac-0409079e6b3b {
      --shg-aspect-ratio: calc(10/10); 
    }

    .s-764bf90a-26e3-4691-b8ac-0409079e6b3b.shogun-image-container {
      position: relative;
    }

    .s-764bf90a-26e3-4691-b8ac-0409079e6b3b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-764bf90a-26e3-4691-b8ac-0409079e6b3b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-764bf90a-26e3-4691-b8ac-0409079e6b3b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-764bf90a-26e3-4691-b8ac-0409079e6b3b img.shogun-image,
  #s-764bf90a-26e3-4691-b8ac-0409079e6b3b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-764bf90a-26e3-4691-b8ac-0409079e6b3b {
    width: 100%;
    height: auto;
  }

  #s-764bf90a-26e3-4691-b8ac-0409079e6b3b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-764bf90a-26e3-4691-b8ac-0409079e6b3b.shogun-image {
    
    
  }


.s-764bf90a-26e3-4691-b8ac-0409079e6b3b .shogun-image-content {
  
    align-items: center;
  
}

.s-764bf90a-26e3-4691-b8ac-0409079e6b3b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-764bf90a-26e3-4691-b8ac-0409079e6b3b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-764bf90a-26e3-4691-b8ac-0409079e6b3b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-764bf90a-26e3-4691-b8ac-0409079e6b3b {
      --shg-aspect-ratio: calc(10/10); 
    }

    .s-764bf90a-26e3-4691-b8ac-0409079e6b3b.shogun-image-container {
      position: relative;
    }

    .s-764bf90a-26e3-4691-b8ac-0409079e6b3b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-764bf90a-26e3-4691-b8ac-0409079e6b3b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-764bf90a-26e3-4691-b8ac-0409079e6b3b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-764bf90a-26e3-4691-b8ac-0409079e6b3b img.shogun-image,
  #s-764bf90a-26e3-4691-b8ac-0409079e6b3b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-764bf90a-26e3-4691-b8ac-0409079e6b3b {
    width: 100%;
    height: auto;
  }

  #s-764bf90a-26e3-4691-b8ac-0409079e6b3b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-764bf90a-26e3-4691-b8ac-0409079e6b3b.shogun-image {
    
    
  }


.s-764bf90a-26e3-4691-b8ac-0409079e6b3b .shogun-image-content {
  
    align-items: center;
  
}

.s-764bf90a-26e3-4691-b8ac-0409079e6b3b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-764bf90a-26e3-4691-b8ac-0409079e6b3b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-764bf90a-26e3-4691-b8ac-0409079e6b3b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-764bf90a-26e3-4691-b8ac-0409079e6b3b {
      --shg-aspect-ratio: calc(10/10); 
    }

    .s-764bf90a-26e3-4691-b8ac-0409079e6b3b.shogun-image-container {
      position: relative;
    }

    .s-764bf90a-26e3-4691-b8ac-0409079e6b3b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-764bf90a-26e3-4691-b8ac-0409079e6b3b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-764bf90a-26e3-4691-b8ac-0409079e6b3b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-764bf90a-26e3-4691-b8ac-0409079e6b3b img.shogun-image,
  #s-764bf90a-26e3-4691-b8ac-0409079e6b3b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-764bf90a-26e3-4691-b8ac-0409079e6b3b {
    width: 100%;
    height: auto;
  }

  #s-764bf90a-26e3-4691-b8ac-0409079e6b3b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-764bf90a-26e3-4691-b8ac-0409079e6b3b.shogun-image {
    
    
  }


.s-764bf90a-26e3-4691-b8ac-0409079e6b3b .shogun-image-content {
  
    align-items: center;
  
}

.s-764bf90a-26e3-4691-b8ac-0409079e6b3b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-764bf90a-26e3-4691-b8ac-0409079e6b3b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-764bf90a-26e3-4691-b8ac-0409079e6b3b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-764bf90a-26e3-4691-b8ac-0409079e6b3b {
      --shg-aspect-ratio: calc(10/10); 
    }

    .s-764bf90a-26e3-4691-b8ac-0409079e6b3b.shogun-image-container {
      position: relative;
    }

    .s-764bf90a-26e3-4691-b8ac-0409079e6b3b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-764bf90a-26e3-4691-b8ac-0409079e6b3b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-764bf90a-26e3-4691-b8ac-0409079e6b3b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-60889075-b201-4cd4-a17c-933028313e52 {
  max-width: 1500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-60889075-b201-4cd4-a17c-933028313e52-root {
  grid-column-start: 11;
grid-column-end: 23;
grid-row-start: 1;
grid-row-end: 13;
z-index: 1;
}





  #s-60889075-b201-4cd4-a17c-933028313e52 img.shogun-image,
  #s-60889075-b201-4cd4-a17c-933028313e52 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-60889075-b201-4cd4-a17c-933028313e52 {
    width: 100%;
    height: auto;
  }

  #s-60889075-b201-4cd4-a17c-933028313e52 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-60889075-b201-4cd4-a17c-933028313e52.shogun-image {
    
    
  }


.s-60889075-b201-4cd4-a17c-933028313e52 .shogun-image-content {
  
    align-items: center;
  
}

.s-60889075-b201-4cd4-a17c-933028313e52.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60889075-b201-4cd4-a17c-933028313e52.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60889075-b201-4cd4-a17c-933028313e52.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-60889075-b201-4cd4-a17c-933028313e52 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-60889075-b201-4cd4-a17c-933028313e52.shogun-image-container {
      position: relative;
    }

    .s-60889075-b201-4cd4-a17c-933028313e52.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-60889075-b201-4cd4-a17c-933028313e52.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-60889075-b201-4cd4-a17c-933028313e52 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-60889075-b201-4cd4-a17c-933028313e52 img.shogun-image,
  #s-60889075-b201-4cd4-a17c-933028313e52 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-60889075-b201-4cd4-a17c-933028313e52 {
    width: 100%;
    height: auto;
  }

  #s-60889075-b201-4cd4-a17c-933028313e52 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-60889075-b201-4cd4-a17c-933028313e52.shogun-image {
    
    
  }


.s-60889075-b201-4cd4-a17c-933028313e52 .shogun-image-content {
  
    align-items: center;
  
}

.s-60889075-b201-4cd4-a17c-933028313e52.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60889075-b201-4cd4-a17c-933028313e52.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60889075-b201-4cd4-a17c-933028313e52.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-60889075-b201-4cd4-a17c-933028313e52 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-60889075-b201-4cd4-a17c-933028313e52.shogun-image-container {
      position: relative;
    }

    .s-60889075-b201-4cd4-a17c-933028313e52.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-60889075-b201-4cd4-a17c-933028313e52.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-60889075-b201-4cd4-a17c-933028313e52 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-60889075-b201-4cd4-a17c-933028313e52 img.shogun-image,
  #s-60889075-b201-4cd4-a17c-933028313e52 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-60889075-b201-4cd4-a17c-933028313e52 {
    width: 100%;
    height: auto;
  }

  #s-60889075-b201-4cd4-a17c-933028313e52 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-60889075-b201-4cd4-a17c-933028313e52.shogun-image {
    
    
  }


.s-60889075-b201-4cd4-a17c-933028313e52 .shogun-image-content {
  
    align-items: center;
  
}

.s-60889075-b201-4cd4-a17c-933028313e52.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60889075-b201-4cd4-a17c-933028313e52.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60889075-b201-4cd4-a17c-933028313e52.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-60889075-b201-4cd4-a17c-933028313e52 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-60889075-b201-4cd4-a17c-933028313e52.shogun-image-container {
      position: relative;
    }

    .s-60889075-b201-4cd4-a17c-933028313e52.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-60889075-b201-4cd4-a17c-933028313e52.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-60889075-b201-4cd4-a17c-933028313e52 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-60889075-b201-4cd4-a17c-933028313e52 img.shogun-image,
  #s-60889075-b201-4cd4-a17c-933028313e52 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-60889075-b201-4cd4-a17c-933028313e52 {
    width: 100%;
    height: auto;
  }

  #s-60889075-b201-4cd4-a17c-933028313e52 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-60889075-b201-4cd4-a17c-933028313e52.shogun-image {
    
    
  }


.s-60889075-b201-4cd4-a17c-933028313e52 .shogun-image-content {
  
    align-items: center;
  
}

.s-60889075-b201-4cd4-a17c-933028313e52.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60889075-b201-4cd4-a17c-933028313e52.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60889075-b201-4cd4-a17c-933028313e52.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-60889075-b201-4cd4-a17c-933028313e52 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-60889075-b201-4cd4-a17c-933028313e52.shogun-image-container {
      position: relative;
    }

    .s-60889075-b201-4cd4-a17c-933028313e52.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-60889075-b201-4cd4-a17c-933028313e52.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-60889075-b201-4cd4-a17c-933028313e52 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-60889075-b201-4cd4-a17c-933028313e52 img.shogun-image,
  #s-60889075-b201-4cd4-a17c-933028313e52 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-60889075-b201-4cd4-a17c-933028313e52 {
    width: 100%;
    height: auto;
  }

  #s-60889075-b201-4cd4-a17c-933028313e52 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-60889075-b201-4cd4-a17c-933028313e52.shogun-image {
    
    
  }


.s-60889075-b201-4cd4-a17c-933028313e52 .shogun-image-content {
  
    align-items: center;
  
}

.s-60889075-b201-4cd4-a17c-933028313e52.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60889075-b201-4cd4-a17c-933028313e52.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60889075-b201-4cd4-a17c-933028313e52.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-60889075-b201-4cd4-a17c-933028313e52 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-60889075-b201-4cd4-a17c-933028313e52.shogun-image-container {
      position: relative;
    }

    .s-60889075-b201-4cd4-a17c-933028313e52.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-60889075-b201-4cd4-a17c-933028313e52.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-60889075-b201-4cd4-a17c-933028313e52 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-cbb51bf3-5f7a-44c7-8dfe-6e88ae4c8139 {
  margin-top: 8%;
margin-left: 5%;
margin-bottom: 0%;
max-width: 1200px;
aspect-ratio: 2/3;
text-align: center;
}







  img.s-cbb51bf3-5f7a-44c7-8dfe-6e88ae4c8139.shogun-image {
    
    
  }


.s-cbb51bf3-5f7a-44c7-8dfe-6e88ae4c8139 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-cbb51bf3-5f7a-44c7-8dfe-6e88ae4c8139.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cbb51bf3-5f7a-44c7-8dfe-6e88ae4c8139.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cbb51bf3-5f7a-44c7-8dfe-6e88ae4c8139.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-cbb51bf3-5f7a-44c7-8dfe-6e88ae4c8139.shogun-image {
    
    
  }


.s-cbb51bf3-5f7a-44c7-8dfe-6e88ae4c8139 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-cbb51bf3-5f7a-44c7-8dfe-6e88ae4c8139.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cbb51bf3-5f7a-44c7-8dfe-6e88ae4c8139.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cbb51bf3-5f7a-44c7-8dfe-6e88ae4c8139.shogun-image {
  box-sizing: border-box;
}



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





  img.s-cbb51bf3-5f7a-44c7-8dfe-6e88ae4c8139.shogun-image {
    
    
  }


.s-cbb51bf3-5f7a-44c7-8dfe-6e88ae4c8139 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-cbb51bf3-5f7a-44c7-8dfe-6e88ae4c8139.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cbb51bf3-5f7a-44c7-8dfe-6e88ae4c8139.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cbb51bf3-5f7a-44c7-8dfe-6e88ae4c8139.shogun-image {
  box-sizing: border-box;
}



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





  img.s-cbb51bf3-5f7a-44c7-8dfe-6e88ae4c8139.shogun-image {
    
    
  }


.s-cbb51bf3-5f7a-44c7-8dfe-6e88ae4c8139 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-cbb51bf3-5f7a-44c7-8dfe-6e88ae4c8139.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cbb51bf3-5f7a-44c7-8dfe-6e88ae4c8139.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cbb51bf3-5f7a-44c7-8dfe-6e88ae4c8139.shogun-image {
  box-sizing: border-box;
}



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





  img.s-cbb51bf3-5f7a-44c7-8dfe-6e88ae4c8139.shogun-image {
    
    
  }


.s-cbb51bf3-5f7a-44c7-8dfe-6e88ae4c8139 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-cbb51bf3-5f7a-44c7-8dfe-6e88ae4c8139.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cbb51bf3-5f7a-44c7-8dfe-6e88ae4c8139.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cbb51bf3-5f7a-44c7-8dfe-6e88ae4c8139.shogun-image {
  box-sizing: border-box;
}



}
#s-d9a78c17-7acc-47b8-9d04-d92fbd3ed6c4 {
  margin-top: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d9a78c17-7acc-47b8-9d04-d92fbd3ed6c4 .shogun-heading-component h5 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 22px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-e5ab5096-4a20-4f8f-b6ec-51ef4d5b2ef1 {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-e5ab5096-4a20-4f8f-b6ec-51ef4d5b2ef1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e5ab5096-4a20-4f8f-b6ec-51ef4d5b2ef1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1bb432bf-bc99-40ca-a042-8f213ec0e12a {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 15px;
padding-left: 0%;
padding-bottom: 15px;
padding-right: 0%;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: rgba(29, 29, 29, 0);
border-radius: 3px;
max-width: 100%;
background-color: rgba(29, 29, 29, 0.9);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-1bb432bf-bc99-40ca-a042-8f213ec0e12a:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 0) !important;
background-color: rgba(74, 74, 74, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-1bb432bf-bc99-40ca-a042-8f213ec0e12a:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(155, 155, 155, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-1bb432bf-bc99-40ca-a042-8f213ec0e12a-root {
    text-align: center;
  }


#s-1bb432bf-bc99-40ca-a042-8f213ec0e12a.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-1bb432bf-bc99-40ca-a042-8f213ec0e12a-root {
    text-align: center;
  }


#s-1bb432bf-bc99-40ca-a042-8f213ec0e12a.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-1bb432bf-bc99-40ca-a042-8f213ec0e12a-root {
    text-align: center;
  }


#s-1bb432bf-bc99-40ca-a042-8f213ec0e12a.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-1bb432bf-bc99-40ca-a042-8f213ec0e12a-root {
    text-align: center;
  }


#s-1bb432bf-bc99-40ca-a042-8f213ec0e12a.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-1bb432bf-bc99-40ca-a042-8f213ec0e12a-root {
    text-align: center;
  }


#s-1bb432bf-bc99-40ca-a042-8f213ec0e12a.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-1bb432bf-bc99-40ca-a042-8f213ec0e12a-root {
    text-align: center;
  }


#s-1bb432bf-bc99-40ca-a042-8f213ec0e12a.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-1f1ab74f-0bf3-4fed-b9fa-e4bf97bbd7c2 {
  margin-top: 6%;
margin-bottom: 0%;
}

@media (min-width: 0px) {
[id="s-1f1ab74f-0bf3-4fed-b9fa-e4bf97bbd7c2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1f1ab74f-0bf3-4fed-b9fa-e4bf97bbd7c2"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-1f1ab74f-0bf3-4fed-b9fa-e4bf97bbd7c2"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1f1ab74f-0bf3-4fed-b9fa-e4bf97bbd7c2"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-1f1ab74f-0bf3-4fed-b9fa-e4bf97bbd7c2"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1f1ab74f-0bf3-4fed-b9fa-e4bf97bbd7c2"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-1f1ab74f-0bf3-4fed-b9fa-e4bf97bbd7c2"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

#s-77f98e2f-5fb8-42b8-a75e-828b118943a5 {
  margin-top: 10%;
margin-left: 5%;
margin-bottom: 0%;
text-align: center;
}







  img.s-77f98e2f-5fb8-42b8-a75e-828b118943a5.shogun-image {
    
    
  }


.s-77f98e2f-5fb8-42b8-a75e-828b118943a5 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-77f98e2f-5fb8-42b8-a75e-828b118943a5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77f98e2f-5fb8-42b8-a75e-828b118943a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77f98e2f-5fb8-42b8-a75e-828b118943a5.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-77f98e2f-5fb8-42b8-a75e-828b118943a5.shogun-image {
    
    
  }


.s-77f98e2f-5fb8-42b8-a75e-828b118943a5 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-77f98e2f-5fb8-42b8-a75e-828b118943a5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77f98e2f-5fb8-42b8-a75e-828b118943a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77f98e2f-5fb8-42b8-a75e-828b118943a5.shogun-image {
  box-sizing: border-box;
}



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





  img.s-77f98e2f-5fb8-42b8-a75e-828b118943a5.shogun-image {
    
    
  }


.s-77f98e2f-5fb8-42b8-a75e-828b118943a5 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-77f98e2f-5fb8-42b8-a75e-828b118943a5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77f98e2f-5fb8-42b8-a75e-828b118943a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77f98e2f-5fb8-42b8-a75e-828b118943a5.shogun-image {
  box-sizing: border-box;
}



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





  img.s-77f98e2f-5fb8-42b8-a75e-828b118943a5.shogun-image {
    
    
  }


.s-77f98e2f-5fb8-42b8-a75e-828b118943a5 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-77f98e2f-5fb8-42b8-a75e-828b118943a5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77f98e2f-5fb8-42b8-a75e-828b118943a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77f98e2f-5fb8-42b8-a75e-828b118943a5.shogun-image {
  box-sizing: border-box;
}



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





  img.s-77f98e2f-5fb8-42b8-a75e-828b118943a5.shogun-image {
    
    
  }


.s-77f98e2f-5fb8-42b8-a75e-828b118943a5 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-77f98e2f-5fb8-42b8-a75e-828b118943a5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77f98e2f-5fb8-42b8-a75e-828b118943a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77f98e2f-5fb8-42b8-a75e-828b118943a5.shogun-image {
  box-sizing: border-box;
}



}
#s-e472c423-a37c-4649-ae9b-53a43c021053 {
  margin-top: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e472c423-a37c-4649-ae9b-53a43c021053 .shogun-heading-component h5 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 22px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-d77cd289-b49f-47b8-b5af-6a0e116f6fa3 {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-d77cd289-b49f-47b8-b5af-6a0e116f6fa3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d77cd289-b49f-47b8-b5af-6a0e116f6fa3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-682f81f0-5177-4093-a9cf-84063242b78c {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 15px;
padding-left: 0%;
padding-bottom: 15px;
padding-right: 0%;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: rgba(29, 29, 29, 0);
border-radius: 3px;
max-width: 100%;
background-color: rgba(29, 29, 29, 0.9);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-682f81f0-5177-4093-a9cf-84063242b78c:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 0) !important;
background-color: rgba(74, 74, 74, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-682f81f0-5177-4093-a9cf-84063242b78c:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(155, 155, 155, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-682f81f0-5177-4093-a9cf-84063242b78c-root {
    text-align: center;
  }


#s-682f81f0-5177-4093-a9cf-84063242b78c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-682f81f0-5177-4093-a9cf-84063242b78c-root {
    text-align: center;
  }


#s-682f81f0-5177-4093-a9cf-84063242b78c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-682f81f0-5177-4093-a9cf-84063242b78c-root {
    text-align: center;
  }


#s-682f81f0-5177-4093-a9cf-84063242b78c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-682f81f0-5177-4093-a9cf-84063242b78c-root {
    text-align: center;
  }


#s-682f81f0-5177-4093-a9cf-84063242b78c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-682f81f0-5177-4093-a9cf-84063242b78c-root {
    text-align: center;
  }


#s-682f81f0-5177-4093-a9cf-84063242b78c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-682f81f0-5177-4093-a9cf-84063242b78c-root {
    text-align: center;
  }


#s-682f81f0-5177-4093-a9cf-84063242b78c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-5db68540-089a-434a-8dad-2d894ba14d5e {
  margin-top: 6%;
}

@media (min-width: 0px) {
[id="s-5db68540-089a-434a-8dad-2d894ba14d5e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5db68540-089a-434a-8dad-2d894ba14d5e"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-5db68540-089a-434a-8dad-2d894ba14d5e"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-5db68540-089a-434a-8dad-2d894ba14d5e"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-5db68540-089a-434a-8dad-2d894ba14d5e"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-5db68540-089a-434a-8dad-2d894ba14d5e"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-5db68540-089a-434a-8dad-2d894ba14d5e"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-d5f0e0aa-a074-447a-81aa-80dc051b6d07 {
  margin-left: 0%;
margin-right: 20%;
max-width: 512px;
aspect-ratio: 1/1;
text-align: center;
}







  img.s-d5f0e0aa-a074-447a-81aa-80dc051b6d07.shogun-image {
    
    
  }


.s-d5f0e0aa-a074-447a-81aa-80dc051b6d07 .shogun-image-content {
  
    align-items: center;
  
}

.s-d5f0e0aa-a074-447a-81aa-80dc051b6d07.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d5f0e0aa-a074-447a-81aa-80dc051b6d07.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d5f0e0aa-a074-447a-81aa-80dc051b6d07.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-d5f0e0aa-a074-447a-81aa-80dc051b6d07.shogun-image {
    
    
  }


.s-d5f0e0aa-a074-447a-81aa-80dc051b6d07 .shogun-image-content {
  
    align-items: center;
  
}

.s-d5f0e0aa-a074-447a-81aa-80dc051b6d07.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d5f0e0aa-a074-447a-81aa-80dc051b6d07.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d5f0e0aa-a074-447a-81aa-80dc051b6d07.shogun-image {
  box-sizing: border-box;
}



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





  img.s-d5f0e0aa-a074-447a-81aa-80dc051b6d07.shogun-image {
    
    
  }


.s-d5f0e0aa-a074-447a-81aa-80dc051b6d07 .shogun-image-content {
  
    align-items: center;
  
}

.s-d5f0e0aa-a074-447a-81aa-80dc051b6d07.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d5f0e0aa-a074-447a-81aa-80dc051b6d07.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d5f0e0aa-a074-447a-81aa-80dc051b6d07.shogun-image {
  box-sizing: border-box;
}



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





  img.s-d5f0e0aa-a074-447a-81aa-80dc051b6d07.shogun-image {
    
    
  }


.s-d5f0e0aa-a074-447a-81aa-80dc051b6d07 .shogun-image-content {
  
    align-items: center;
  
}

.s-d5f0e0aa-a074-447a-81aa-80dc051b6d07.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d5f0e0aa-a074-447a-81aa-80dc051b6d07.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d5f0e0aa-a074-447a-81aa-80dc051b6d07.shogun-image {
  box-sizing: border-box;
}



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





  img.s-d5f0e0aa-a074-447a-81aa-80dc051b6d07.shogun-image {
    
    
  }


.s-d5f0e0aa-a074-447a-81aa-80dc051b6d07 .shogun-image-content {
  
    align-items: center;
  
}

.s-d5f0e0aa-a074-447a-81aa-80dc051b6d07.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d5f0e0aa-a074-447a-81aa-80dc051b6d07.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d5f0e0aa-a074-447a-81aa-80dc051b6d07.shogun-image {
  box-sizing: border-box;
}



}
#s-55106f96-29e9-4b67-849a-f9254cec92c6 {
  margin-top: 5%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-55106f96-29e9-4b67-849a-f9254cec92c6 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-5fb19def-be91-41a3-a414-77e881d7a6db {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-461bb89d-1d6c-4f57-8ec2-5716ab413e7d .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(12, calc(100vw / 24));
}

#s-29c5312d-39c0-4680-8824-a6fa8e1114df {
  max-width: 1500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-29c5312d-39c0-4680-8824-a6fa8e1114df-root {
  grid-column-start: 1;
grid-column-end: 12;
grid-row-start: 1;
grid-row-end: 12;
z-index: 0;
}





  #s-29c5312d-39c0-4680-8824-a6fa8e1114df img.shogun-image,
  #s-29c5312d-39c0-4680-8824-a6fa8e1114df .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-29c5312d-39c0-4680-8824-a6fa8e1114df {
    width: 100%;
    height: auto;
  }

  #s-29c5312d-39c0-4680-8824-a6fa8e1114df img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-29c5312d-39c0-4680-8824-a6fa8e1114df.shogun-image {
    
    
  }


.s-29c5312d-39c0-4680-8824-a6fa8e1114df .shogun-image-content {
  
    align-items: center;
  
}

.s-29c5312d-39c0-4680-8824-a6fa8e1114df.shg-align-container {
  display: flex;
  justify-content: center
}

.s-29c5312d-39c0-4680-8824-a6fa8e1114df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29c5312d-39c0-4680-8824-a6fa8e1114df.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-29c5312d-39c0-4680-8824-a6fa8e1114df {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-29c5312d-39c0-4680-8824-a6fa8e1114df.shogun-image-container {
      position: relative;
    }

    .s-29c5312d-39c0-4680-8824-a6fa8e1114df.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-29c5312d-39c0-4680-8824-a6fa8e1114df.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-29c5312d-39c0-4680-8824-a6fa8e1114df img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-29c5312d-39c0-4680-8824-a6fa8e1114df img.shogun-image,
  #s-29c5312d-39c0-4680-8824-a6fa8e1114df .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-29c5312d-39c0-4680-8824-a6fa8e1114df {
    width: 100%;
    height: auto;
  }

  #s-29c5312d-39c0-4680-8824-a6fa8e1114df img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-29c5312d-39c0-4680-8824-a6fa8e1114df.shogun-image {
    
    
  }


.s-29c5312d-39c0-4680-8824-a6fa8e1114df .shogun-image-content {
  
    align-items: center;
  
}

.s-29c5312d-39c0-4680-8824-a6fa8e1114df.shg-align-container {
  display: flex;
  justify-content: center
}

.s-29c5312d-39c0-4680-8824-a6fa8e1114df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29c5312d-39c0-4680-8824-a6fa8e1114df.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-29c5312d-39c0-4680-8824-a6fa8e1114df {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-29c5312d-39c0-4680-8824-a6fa8e1114df.shogun-image-container {
      position: relative;
    }

    .s-29c5312d-39c0-4680-8824-a6fa8e1114df.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-29c5312d-39c0-4680-8824-a6fa8e1114df.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-29c5312d-39c0-4680-8824-a6fa8e1114df img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-29c5312d-39c0-4680-8824-a6fa8e1114df img.shogun-image,
  #s-29c5312d-39c0-4680-8824-a6fa8e1114df .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-29c5312d-39c0-4680-8824-a6fa8e1114df {
    width: 100%;
    height: auto;
  }

  #s-29c5312d-39c0-4680-8824-a6fa8e1114df img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-29c5312d-39c0-4680-8824-a6fa8e1114df.shogun-image {
    
    
  }


.s-29c5312d-39c0-4680-8824-a6fa8e1114df .shogun-image-content {
  
    align-items: center;
  
}

.s-29c5312d-39c0-4680-8824-a6fa8e1114df.shg-align-container {
  display: flex;
  justify-content: center
}

.s-29c5312d-39c0-4680-8824-a6fa8e1114df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29c5312d-39c0-4680-8824-a6fa8e1114df.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-29c5312d-39c0-4680-8824-a6fa8e1114df {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-29c5312d-39c0-4680-8824-a6fa8e1114df.shogun-image-container {
      position: relative;
    }

    .s-29c5312d-39c0-4680-8824-a6fa8e1114df.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-29c5312d-39c0-4680-8824-a6fa8e1114df.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-29c5312d-39c0-4680-8824-a6fa8e1114df img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-29c5312d-39c0-4680-8824-a6fa8e1114df img.shogun-image,
  #s-29c5312d-39c0-4680-8824-a6fa8e1114df .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-29c5312d-39c0-4680-8824-a6fa8e1114df {
    width: 100%;
    height: auto;
  }

  #s-29c5312d-39c0-4680-8824-a6fa8e1114df img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-29c5312d-39c0-4680-8824-a6fa8e1114df.shogun-image {
    
    
  }


.s-29c5312d-39c0-4680-8824-a6fa8e1114df .shogun-image-content {
  
    align-items: center;
  
}

.s-29c5312d-39c0-4680-8824-a6fa8e1114df.shg-align-container {
  display: flex;
  justify-content: center
}

.s-29c5312d-39c0-4680-8824-a6fa8e1114df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29c5312d-39c0-4680-8824-a6fa8e1114df.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-29c5312d-39c0-4680-8824-a6fa8e1114df {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-29c5312d-39c0-4680-8824-a6fa8e1114df.shogun-image-container {
      position: relative;
    }

    .s-29c5312d-39c0-4680-8824-a6fa8e1114df.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-29c5312d-39c0-4680-8824-a6fa8e1114df.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-29c5312d-39c0-4680-8824-a6fa8e1114df img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-29c5312d-39c0-4680-8824-a6fa8e1114df img.shogun-image,
  #s-29c5312d-39c0-4680-8824-a6fa8e1114df .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-29c5312d-39c0-4680-8824-a6fa8e1114df {
    width: 100%;
    height: auto;
  }

  #s-29c5312d-39c0-4680-8824-a6fa8e1114df img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-29c5312d-39c0-4680-8824-a6fa8e1114df.shogun-image {
    
    
  }


.s-29c5312d-39c0-4680-8824-a6fa8e1114df .shogun-image-content {
  
    align-items: center;
  
}

.s-29c5312d-39c0-4680-8824-a6fa8e1114df.shg-align-container {
  display: flex;
  justify-content: center
}

.s-29c5312d-39c0-4680-8824-a6fa8e1114df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29c5312d-39c0-4680-8824-a6fa8e1114df.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-29c5312d-39c0-4680-8824-a6fa8e1114df {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-29c5312d-39c0-4680-8824-a6fa8e1114df.shogun-image-container {
      position: relative;
    }

    .s-29c5312d-39c0-4680-8824-a6fa8e1114df.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-29c5312d-39c0-4680-8824-a6fa8e1114df.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-29c5312d-39c0-4680-8824-a6fa8e1114df img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-83ba31e7-8c17-4045-9da0-75996540f8f7 {
  max-width: 1500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-83ba31e7-8c17-4045-9da0-75996540f8f7-root {
  grid-column-start: 13;
grid-column-end: 24;
grid-row-start: 2;
grid-row-end: 13;
z-index: 1;
}





  #s-83ba31e7-8c17-4045-9da0-75996540f8f7 img.shogun-image,
  #s-83ba31e7-8c17-4045-9da0-75996540f8f7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-83ba31e7-8c17-4045-9da0-75996540f8f7 {
    width: 100%;
    height: auto;
  }

  #s-83ba31e7-8c17-4045-9da0-75996540f8f7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-83ba31e7-8c17-4045-9da0-75996540f8f7.shogun-image {
    
    
  }


.s-83ba31e7-8c17-4045-9da0-75996540f8f7 .shogun-image-content {
  
    align-items: center;
  
}

.s-83ba31e7-8c17-4045-9da0-75996540f8f7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83ba31e7-8c17-4045-9da0-75996540f8f7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83ba31e7-8c17-4045-9da0-75996540f8f7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-83ba31e7-8c17-4045-9da0-75996540f8f7 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-83ba31e7-8c17-4045-9da0-75996540f8f7.shogun-image-container {
      position: relative;
    }

    .s-83ba31e7-8c17-4045-9da0-75996540f8f7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-83ba31e7-8c17-4045-9da0-75996540f8f7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-83ba31e7-8c17-4045-9da0-75996540f8f7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-83ba31e7-8c17-4045-9da0-75996540f8f7 img.shogun-image,
  #s-83ba31e7-8c17-4045-9da0-75996540f8f7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-83ba31e7-8c17-4045-9da0-75996540f8f7 {
    width: 100%;
    height: auto;
  }

  #s-83ba31e7-8c17-4045-9da0-75996540f8f7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-83ba31e7-8c17-4045-9da0-75996540f8f7.shogun-image {
    
    
  }


.s-83ba31e7-8c17-4045-9da0-75996540f8f7 .shogun-image-content {
  
    align-items: center;
  
}

.s-83ba31e7-8c17-4045-9da0-75996540f8f7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83ba31e7-8c17-4045-9da0-75996540f8f7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83ba31e7-8c17-4045-9da0-75996540f8f7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-83ba31e7-8c17-4045-9da0-75996540f8f7 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-83ba31e7-8c17-4045-9da0-75996540f8f7.shogun-image-container {
      position: relative;
    }

    .s-83ba31e7-8c17-4045-9da0-75996540f8f7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-83ba31e7-8c17-4045-9da0-75996540f8f7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-83ba31e7-8c17-4045-9da0-75996540f8f7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-83ba31e7-8c17-4045-9da0-75996540f8f7 img.shogun-image,
  #s-83ba31e7-8c17-4045-9da0-75996540f8f7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-83ba31e7-8c17-4045-9da0-75996540f8f7 {
    width: 100%;
    height: auto;
  }

  #s-83ba31e7-8c17-4045-9da0-75996540f8f7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-83ba31e7-8c17-4045-9da0-75996540f8f7.shogun-image {
    
    
  }


.s-83ba31e7-8c17-4045-9da0-75996540f8f7 .shogun-image-content {
  
    align-items: center;
  
}

.s-83ba31e7-8c17-4045-9da0-75996540f8f7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83ba31e7-8c17-4045-9da0-75996540f8f7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83ba31e7-8c17-4045-9da0-75996540f8f7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-83ba31e7-8c17-4045-9da0-75996540f8f7 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-83ba31e7-8c17-4045-9da0-75996540f8f7.shogun-image-container {
      position: relative;
    }

    .s-83ba31e7-8c17-4045-9da0-75996540f8f7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-83ba31e7-8c17-4045-9da0-75996540f8f7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-83ba31e7-8c17-4045-9da0-75996540f8f7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-83ba31e7-8c17-4045-9da0-75996540f8f7 img.shogun-image,
  #s-83ba31e7-8c17-4045-9da0-75996540f8f7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-83ba31e7-8c17-4045-9da0-75996540f8f7 {
    width: 100%;
    height: auto;
  }

  #s-83ba31e7-8c17-4045-9da0-75996540f8f7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-83ba31e7-8c17-4045-9da0-75996540f8f7.shogun-image {
    
    
  }


.s-83ba31e7-8c17-4045-9da0-75996540f8f7 .shogun-image-content {
  
    align-items: center;
  
}

.s-83ba31e7-8c17-4045-9da0-75996540f8f7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83ba31e7-8c17-4045-9da0-75996540f8f7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83ba31e7-8c17-4045-9da0-75996540f8f7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-83ba31e7-8c17-4045-9da0-75996540f8f7 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-83ba31e7-8c17-4045-9da0-75996540f8f7.shogun-image-container {
      position: relative;
    }

    .s-83ba31e7-8c17-4045-9da0-75996540f8f7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-83ba31e7-8c17-4045-9da0-75996540f8f7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-83ba31e7-8c17-4045-9da0-75996540f8f7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-83ba31e7-8c17-4045-9da0-75996540f8f7 img.shogun-image,
  #s-83ba31e7-8c17-4045-9da0-75996540f8f7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-83ba31e7-8c17-4045-9da0-75996540f8f7 {
    width: 100%;
    height: auto;
  }

  #s-83ba31e7-8c17-4045-9da0-75996540f8f7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-83ba31e7-8c17-4045-9da0-75996540f8f7.shogun-image {
    
    
  }


.s-83ba31e7-8c17-4045-9da0-75996540f8f7 .shogun-image-content {
  
    align-items: center;
  
}

.s-83ba31e7-8c17-4045-9da0-75996540f8f7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83ba31e7-8c17-4045-9da0-75996540f8f7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83ba31e7-8c17-4045-9da0-75996540f8f7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-83ba31e7-8c17-4045-9da0-75996540f8f7 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-83ba31e7-8c17-4045-9da0-75996540f8f7.shogun-image-container {
      position: relative;
    }

    .s-83ba31e7-8c17-4045-9da0-75996540f8f7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-83ba31e7-8c17-4045-9da0-75996540f8f7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-83ba31e7-8c17-4045-9da0-75996540f8f7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-536db2b1-cbcb-49fd-b820-6502822821f0 {
  margin-top: 6%;
}

@media (min-width: 0px) {
[id="s-536db2b1-cbcb-49fd-b820-6502822821f0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-536db2b1-cbcb-49fd-b820-6502822821f0"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-536db2b1-cbcb-49fd-b820-6502822821f0"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-536db2b1-cbcb-49fd-b820-6502822821f0"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-536db2b1-cbcb-49fd-b820-6502822821f0"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-536db2b1-cbcb-49fd-b820-6502822821f0"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-536db2b1-cbcb-49fd-b820-6502822821f0"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-51991e2c-1d72-484b-a57a-ff01b2e3c1aa"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-51991e2c-1d72-484b-a57a-ff01b2e3c1aa"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-51991e2c-1d72-484b-a57a-ff01b2e3c1aa"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-51991e2c-1d72-484b-a57a-ff01b2e3c1aa"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-51991e2c-1d72-484b-a57a-ff01b2e3c1aa"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-51991e2c-1d72-484b-a57a-ff01b2e3c1aa"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-51991e2c-1d72-484b-a57a-ff01b2e3c1aa"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-560082ad-6c76-4655-a1e1-aa35d0cc22ba {
  margin-left: 0%;
margin-right: 20%;
max-width: 512px;
aspect-ratio: 1/1;
text-align: center;
}







  img.s-560082ad-6c76-4655-a1e1-aa35d0cc22ba.shogun-image {
    
    
  }


.s-560082ad-6c76-4655-a1e1-aa35d0cc22ba .shogun-image-content {
  
    align-items: center;
  
}

.s-560082ad-6c76-4655-a1e1-aa35d0cc22ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-560082ad-6c76-4655-a1e1-aa35d0cc22ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-560082ad-6c76-4655-a1e1-aa35d0cc22ba.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-560082ad-6c76-4655-a1e1-aa35d0cc22ba.shogun-image {
    
    
  }


.s-560082ad-6c76-4655-a1e1-aa35d0cc22ba .shogun-image-content {
  
    align-items: center;
  
}

.s-560082ad-6c76-4655-a1e1-aa35d0cc22ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-560082ad-6c76-4655-a1e1-aa35d0cc22ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-560082ad-6c76-4655-a1e1-aa35d0cc22ba.shogun-image {
  box-sizing: border-box;
}



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





  img.s-560082ad-6c76-4655-a1e1-aa35d0cc22ba.shogun-image {
    
    
  }


.s-560082ad-6c76-4655-a1e1-aa35d0cc22ba .shogun-image-content {
  
    align-items: center;
  
}

.s-560082ad-6c76-4655-a1e1-aa35d0cc22ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-560082ad-6c76-4655-a1e1-aa35d0cc22ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-560082ad-6c76-4655-a1e1-aa35d0cc22ba.shogun-image {
  box-sizing: border-box;
}



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





  img.s-560082ad-6c76-4655-a1e1-aa35d0cc22ba.shogun-image {
    
    
  }


.s-560082ad-6c76-4655-a1e1-aa35d0cc22ba .shogun-image-content {
  
    align-items: center;
  
}

.s-560082ad-6c76-4655-a1e1-aa35d0cc22ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-560082ad-6c76-4655-a1e1-aa35d0cc22ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-560082ad-6c76-4655-a1e1-aa35d0cc22ba.shogun-image {
  box-sizing: border-box;
}



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





  img.s-560082ad-6c76-4655-a1e1-aa35d0cc22ba.shogun-image {
    
    
  }


.s-560082ad-6c76-4655-a1e1-aa35d0cc22ba .shogun-image-content {
  
    align-items: center;
  
}

.s-560082ad-6c76-4655-a1e1-aa35d0cc22ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-560082ad-6c76-4655-a1e1-aa35d0cc22ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-560082ad-6c76-4655-a1e1-aa35d0cc22ba.shogun-image {
  box-sizing: border-box;
}



}
#s-cf960051-8311-4425-a573-3800d563ad6b {
  margin-top: 4%;
margin-bottom: 3%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-cf960051-8311-4425-a573-3800d563ad6b .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-63ae02bb-5778-462e-90d4-19e46e51481b {
  margin-top: 3%;
margin-left: 1%;
margin-right: 0%;
}

#s-d46d2399-e633-4297-9632-c7d1dd6d49f3 .shg-grid-content {
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(16, calc(100vw / 24));
}

#s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7 {
  aspect-ratio: 11/11;
text-align: center;
}

#s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7-root {
  grid-column-start: 1;
grid-column-end: 12;
grid-row-start: 4;
grid-row-end: 15;
z-index: 0;
}





  #s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7 img.shogun-image,
  #s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7 {
    width: 100%;
    height: auto;
  }

  #s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7.shogun-image {
    
    
  }


.s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7 .shogun-image-content {
  
    align-items: center;
  
}

.s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7.shogun-image-container {
      position: relative;
    }

    .s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7 img.shogun-image,
  #s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7 {
    width: 100%;
    height: auto;
  }

  #s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7.shogun-image {
    
    
  }


.s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7 .shogun-image-content {
  
    align-items: center;
  
}

.s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7.shogun-image-container {
      position: relative;
    }

    .s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7 img.shogun-image,
  #s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7 {
    width: 100%;
    height: auto;
  }

  #s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7.shogun-image {
    
    
  }


.s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7 .shogun-image-content {
  
    align-items: center;
  
}

.s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7.shogun-image-container {
      position: relative;
    }

    .s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7 img.shogun-image,
  #s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7 {
    width: 100%;
    height: auto;
  }

  #s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7.shogun-image {
    
    
  }


.s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7 .shogun-image-content {
  
    align-items: center;
  
}

.s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7.shogun-image-container {
      position: relative;
    }

    .s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7 img.shogun-image,
  #s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7 {
    width: 100%;
    height: auto;
  }

  #s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7.shogun-image {
    
    
  }


.s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7 .shogun-image-content {
  
    align-items: center;
  
}

.s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7 {
      --shg-aspect-ratio: calc(11/11); 
    }

    .s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7.shogun-image-container {
      position: relative;
    }

    .s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-907e90e8-e5db-4864-a529-5f2d7a4c3bd7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-5fc21049-b7d3-40a9-8ae7-26dc806d9280 {
  max-width: 1500px;
aspect-ratio: 12/12;
text-align: center;
}

#s-5fc21049-b7d3-40a9-8ae7-26dc806d9280-root {
  grid-column-start: 11;
grid-column-end: 23;
grid-row-start: 1;
grid-row-end: 13;
z-index: 1;
}





  #s-5fc21049-b7d3-40a9-8ae7-26dc806d9280 img.shogun-image,
  #s-5fc21049-b7d3-40a9-8ae7-26dc806d9280 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5fc21049-b7d3-40a9-8ae7-26dc806d9280 {
    width: 100%;
    height: auto;
  }

  #s-5fc21049-b7d3-40a9-8ae7-26dc806d9280 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5fc21049-b7d3-40a9-8ae7-26dc806d9280.shogun-image {
    
    
  }


.s-5fc21049-b7d3-40a9-8ae7-26dc806d9280 .shogun-image-content {
  
    align-items: center;
  
}

.s-5fc21049-b7d3-40a9-8ae7-26dc806d9280.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5fc21049-b7d3-40a9-8ae7-26dc806d9280.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5fc21049-b7d3-40a9-8ae7-26dc806d9280.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5fc21049-b7d3-40a9-8ae7-26dc806d9280 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-5fc21049-b7d3-40a9-8ae7-26dc806d9280.shogun-image-container {
      position: relative;
    }

    .s-5fc21049-b7d3-40a9-8ae7-26dc806d9280.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5fc21049-b7d3-40a9-8ae7-26dc806d9280.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5fc21049-b7d3-40a9-8ae7-26dc806d9280 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-5fc21049-b7d3-40a9-8ae7-26dc806d9280 img.shogun-image,
  #s-5fc21049-b7d3-40a9-8ae7-26dc806d9280 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5fc21049-b7d3-40a9-8ae7-26dc806d9280 {
    width: 100%;
    height: auto;
  }

  #s-5fc21049-b7d3-40a9-8ae7-26dc806d9280 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5fc21049-b7d3-40a9-8ae7-26dc806d9280.shogun-image {
    
    
  }


.s-5fc21049-b7d3-40a9-8ae7-26dc806d9280 .shogun-image-content {
  
    align-items: center;
  
}

.s-5fc21049-b7d3-40a9-8ae7-26dc806d9280.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5fc21049-b7d3-40a9-8ae7-26dc806d9280.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5fc21049-b7d3-40a9-8ae7-26dc806d9280.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5fc21049-b7d3-40a9-8ae7-26dc806d9280 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-5fc21049-b7d3-40a9-8ae7-26dc806d9280.shogun-image-container {
      position: relative;
    }

    .s-5fc21049-b7d3-40a9-8ae7-26dc806d9280.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5fc21049-b7d3-40a9-8ae7-26dc806d9280.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5fc21049-b7d3-40a9-8ae7-26dc806d9280 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-5fc21049-b7d3-40a9-8ae7-26dc806d9280 img.shogun-image,
  #s-5fc21049-b7d3-40a9-8ae7-26dc806d9280 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5fc21049-b7d3-40a9-8ae7-26dc806d9280 {
    width: 100%;
    height: auto;
  }

  #s-5fc21049-b7d3-40a9-8ae7-26dc806d9280 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5fc21049-b7d3-40a9-8ae7-26dc806d9280.shogun-image {
    
    
  }


.s-5fc21049-b7d3-40a9-8ae7-26dc806d9280 .shogun-image-content {
  
    align-items: center;
  
}

.s-5fc21049-b7d3-40a9-8ae7-26dc806d9280.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5fc21049-b7d3-40a9-8ae7-26dc806d9280.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5fc21049-b7d3-40a9-8ae7-26dc806d9280.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5fc21049-b7d3-40a9-8ae7-26dc806d9280 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-5fc21049-b7d3-40a9-8ae7-26dc806d9280.shogun-image-container {
      position: relative;
    }

    .s-5fc21049-b7d3-40a9-8ae7-26dc806d9280.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5fc21049-b7d3-40a9-8ae7-26dc806d9280.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5fc21049-b7d3-40a9-8ae7-26dc806d9280 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-5fc21049-b7d3-40a9-8ae7-26dc806d9280 img.shogun-image,
  #s-5fc21049-b7d3-40a9-8ae7-26dc806d9280 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5fc21049-b7d3-40a9-8ae7-26dc806d9280 {
    width: 100%;
    height: auto;
  }

  #s-5fc21049-b7d3-40a9-8ae7-26dc806d9280 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5fc21049-b7d3-40a9-8ae7-26dc806d9280.shogun-image {
    
    
  }


.s-5fc21049-b7d3-40a9-8ae7-26dc806d9280 .shogun-image-content {
  
    align-items: center;
  
}

.s-5fc21049-b7d3-40a9-8ae7-26dc806d9280.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5fc21049-b7d3-40a9-8ae7-26dc806d9280.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5fc21049-b7d3-40a9-8ae7-26dc806d9280.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5fc21049-b7d3-40a9-8ae7-26dc806d9280 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-5fc21049-b7d3-40a9-8ae7-26dc806d9280.shogun-image-container {
      position: relative;
    }

    .s-5fc21049-b7d3-40a9-8ae7-26dc806d9280.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5fc21049-b7d3-40a9-8ae7-26dc806d9280.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5fc21049-b7d3-40a9-8ae7-26dc806d9280 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-5fc21049-b7d3-40a9-8ae7-26dc806d9280 img.shogun-image,
  #s-5fc21049-b7d3-40a9-8ae7-26dc806d9280 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5fc21049-b7d3-40a9-8ae7-26dc806d9280 {
    width: 100%;
    height: auto;
  }

  #s-5fc21049-b7d3-40a9-8ae7-26dc806d9280 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5fc21049-b7d3-40a9-8ae7-26dc806d9280.shogun-image {
    
    
  }


.s-5fc21049-b7d3-40a9-8ae7-26dc806d9280 .shogun-image-content {
  
    align-items: center;
  
}

.s-5fc21049-b7d3-40a9-8ae7-26dc806d9280.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5fc21049-b7d3-40a9-8ae7-26dc806d9280.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5fc21049-b7d3-40a9-8ae7-26dc806d9280.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5fc21049-b7d3-40a9-8ae7-26dc806d9280 {
      --shg-aspect-ratio: calc(12/12); 
    }

    .s-5fc21049-b7d3-40a9-8ae7-26dc806d9280.shogun-image-container {
      position: relative;
    }

    .s-5fc21049-b7d3-40a9-8ae7-26dc806d9280.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5fc21049-b7d3-40a9-8ae7-26dc806d9280.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5fc21049-b7d3-40a9-8ae7-26dc806d9280 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-51ec8b58-9b8a-4832-babc-9cb6b190b8dd {
  border-style: solid;
margin-top: 0px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-51ec8b58-9b8a-4832-babc-9cb6b190b8dd:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-51ec8b58-9b8a-4832-babc-9cb6b190b8dd:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}
#s-51ec8b58-9b8a-4832-babc-9cb6b190b8dd-root {
  grid-column-start: 12;
grid-column-end: 22;
grid-row-start: 12;
grid-row-end: 15;
z-index: 2;
}


  #s-51ec8b58-9b8a-4832-babc-9cb6b190b8dd-root {
    text-align: center;
  }


#s-51ec8b58-9b8a-4832-babc-9cb6b190b8dd.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-51ec8b58-9b8a-4832-babc-9cb6b190b8dd-root {
    text-align: center;
  }


#s-51ec8b58-9b8a-4832-babc-9cb6b190b8dd.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-51ec8b58-9b8a-4832-babc-9cb6b190b8dd-root {
    text-align: center;
  }


#s-51ec8b58-9b8a-4832-babc-9cb6b190b8dd.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-51ec8b58-9b8a-4832-babc-9cb6b190b8dd-root {
    text-align: center;
  }


#s-51ec8b58-9b8a-4832-babc-9cb6b190b8dd.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-51ec8b58-9b8a-4832-babc-9cb6b190b8dd-root {
    text-align: center;
  }


#s-51ec8b58-9b8a-4832-babc-9cb6b190b8dd.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-51ec8b58-9b8a-4832-babc-9cb6b190b8dd-root {
    text-align: center;
  }


#s-51ec8b58-9b8a-4832-babc-9cb6b190b8dd.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-c5f787b0-8215-4853-8e76-a0f1a49fb082 {
  text-align: left;
}

#s-27941da1-fd80-458b-895c-319a62b4a497 {
  margin-top: 3%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-27941da1-fd80-458b-895c-319a62b4a497 {
  display: none;
}
#s-27941da1-fd80-458b-895c-319a62b4a497, #wrap-s-27941da1-fd80-458b-895c-319a62b4a497 { display: none !important; }}@media (max-width: 767px){#s-27941da1-fd80-458b-895c-319a62b4a497 {
  display: none;
}
#s-27941da1-fd80-458b-895c-319a62b4a497, #wrap-s-27941da1-fd80-458b-895c-319a62b4a497 { display: none !important; }}







#s-27941da1-fd80-458b-895c-319a62b4a497 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-27941da1-fd80-458b-895c-319a62b4a497.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4827717f-cca2-4b02-a7eb-7a46f792a974 {
  margin-top: 3%;
text-align: center;
opacity: 1;
}

#s-4827717f-cca2-4b02-a7eb-7a46f792a974 .shogun-heading-component h5 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  
  letter-spacing: 2px;
  
}



#s-3656b762-c22e-4aa0-a404-0e37edb82276 {
  margin-top: 5%;
margin-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-3656b762-c22e-4aa0-a404-0e37edb82276"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3656b762-c22e-4aa0-a404-0e37edb82276"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 992px) {
[id="s-3656b762-c22e-4aa0-a404-0e37edb82276"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 1200px) {
[id="s-3656b762-c22e-4aa0-a404-0e37edb82276"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

#s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1 {
  max-width: 1500px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1 img.shogun-image,
  #s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1 {
    width: 100%;
    height: auto;
  }

  #s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1.shogun-image {
    
    
  }


.s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1 .shogun-image-content {
  
    align-items: center;
  
}

.s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1.shogun-image-container {
      position: relative;
    }

    .s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1 img.shogun-image,
  #s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1 {
    width: 100%;
    height: auto;
  }

  #s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1.shogun-image {
    
    
  }


.s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1 .shogun-image-content {
  
    align-items: center;
  
}

.s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1.shogun-image-container {
      position: relative;
    }

    .s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1 img.shogun-image,
  #s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1 {
    width: 100%;
    height: auto;
  }

  #s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1.shogun-image {
    
    
  }


.s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1 .shogun-image-content {
  
    align-items: center;
  
}

.s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1.shogun-image-container {
      position: relative;
    }

    .s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1 img.shogun-image,
  #s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1 {
    width: 100%;
    height: auto;
  }

  #s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1.shogun-image {
    
    
  }


.s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1 .shogun-image-content {
  
    align-items: center;
  
}

.s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1.shogun-image-container {
      position: relative;
    }

    .s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1 img.shogun-image,
  #s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1 {
    width: 100%;
    height: auto;
  }

  #s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1.shogun-image {
    
    
  }


.s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1 .shogun-image-content {
  
    align-items: center;
  
}

.s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1.shogun-image-container {
      position: relative;
    }

    .s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c0115cbb-1ace-4c46-a5ac-ce5c90517df1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-06595f48-0281-4c2d-85ad-cfc1e7f646d8 {
  margin-top: 3%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-06595f48-0281-4c2d-85ad-cfc1e7f646d8 .shogun-heading-component h5 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  letter-spacing: 2px;
  
}



#s-b61e5319-f3b2-432b-88cf-b8e0f674f240 {
  margin-top: 1%;
margin-left: 10%;
margin-bottom: -2%;
margin-right: 10%;
}

#s-54eeb65a-035c-4073-a916-c4105feed553 {
  max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
opacity: 1;
background-color: rgba(255, 255, 255, 1);
}





  #s-54eeb65a-035c-4073-a916-c4105feed553 img.shogun-image,
  #s-54eeb65a-035c-4073-a916-c4105feed553 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-54eeb65a-035c-4073-a916-c4105feed553 {
    width: 100%;
    height: auto;
  }

  #s-54eeb65a-035c-4073-a916-c4105feed553 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-54eeb65a-035c-4073-a916-c4105feed553.shogun-image {
    
    
  }


.s-54eeb65a-035c-4073-a916-c4105feed553 .shogun-image-content {
  
    align-items: center;
  
}

.s-54eeb65a-035c-4073-a916-c4105feed553.shg-align-container {
  display: flex;
  justify-content: center
}

.s-54eeb65a-035c-4073-a916-c4105feed553.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-54eeb65a-035c-4073-a916-c4105feed553.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-54eeb65a-035c-4073-a916-c4105feed553 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-54eeb65a-035c-4073-a916-c4105feed553.shogun-image-container {
      position: relative;
    }

    .s-54eeb65a-035c-4073-a916-c4105feed553.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-54eeb65a-035c-4073-a916-c4105feed553.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-54eeb65a-035c-4073-a916-c4105feed553 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-54eeb65a-035c-4073-a916-c4105feed553 img.shogun-image,
  #s-54eeb65a-035c-4073-a916-c4105feed553 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-54eeb65a-035c-4073-a916-c4105feed553 {
    width: 100%;
    height: auto;
  }

  #s-54eeb65a-035c-4073-a916-c4105feed553 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-54eeb65a-035c-4073-a916-c4105feed553.shogun-image {
    
    
  }


.s-54eeb65a-035c-4073-a916-c4105feed553 .shogun-image-content {
  
    align-items: center;
  
}

.s-54eeb65a-035c-4073-a916-c4105feed553.shg-align-container {
  display: flex;
  justify-content: center
}

.s-54eeb65a-035c-4073-a916-c4105feed553.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-54eeb65a-035c-4073-a916-c4105feed553.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-54eeb65a-035c-4073-a916-c4105feed553 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-54eeb65a-035c-4073-a916-c4105feed553.shogun-image-container {
      position: relative;
    }

    .s-54eeb65a-035c-4073-a916-c4105feed553.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-54eeb65a-035c-4073-a916-c4105feed553.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-54eeb65a-035c-4073-a916-c4105feed553 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-54eeb65a-035c-4073-a916-c4105feed553 img.shogun-image,
  #s-54eeb65a-035c-4073-a916-c4105feed553 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-54eeb65a-035c-4073-a916-c4105feed553 {
    width: 100%;
    height: auto;
  }

  #s-54eeb65a-035c-4073-a916-c4105feed553 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-54eeb65a-035c-4073-a916-c4105feed553.shogun-image {
    
    
  }


.s-54eeb65a-035c-4073-a916-c4105feed553 .shogun-image-content {
  
    align-items: center;
  
}

.s-54eeb65a-035c-4073-a916-c4105feed553.shg-align-container {
  display: flex;
  justify-content: center
}

.s-54eeb65a-035c-4073-a916-c4105feed553.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-54eeb65a-035c-4073-a916-c4105feed553.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-54eeb65a-035c-4073-a916-c4105feed553 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-54eeb65a-035c-4073-a916-c4105feed553.shogun-image-container {
      position: relative;
    }

    .s-54eeb65a-035c-4073-a916-c4105feed553.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-54eeb65a-035c-4073-a916-c4105feed553.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-54eeb65a-035c-4073-a916-c4105feed553 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-54eeb65a-035c-4073-a916-c4105feed553 img.shogun-image,
  #s-54eeb65a-035c-4073-a916-c4105feed553 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-54eeb65a-035c-4073-a916-c4105feed553 {
    width: 100%;
    height: auto;
  }

  #s-54eeb65a-035c-4073-a916-c4105feed553 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-54eeb65a-035c-4073-a916-c4105feed553.shogun-image {
    
    
  }


.s-54eeb65a-035c-4073-a916-c4105feed553 .shogun-image-content {
  
    align-items: center;
  
}

.s-54eeb65a-035c-4073-a916-c4105feed553.shg-align-container {
  display: flex;
  justify-content: center
}

.s-54eeb65a-035c-4073-a916-c4105feed553.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-54eeb65a-035c-4073-a916-c4105feed553.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-54eeb65a-035c-4073-a916-c4105feed553 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-54eeb65a-035c-4073-a916-c4105feed553.shogun-image-container {
      position: relative;
    }

    .s-54eeb65a-035c-4073-a916-c4105feed553.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-54eeb65a-035c-4073-a916-c4105feed553.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-54eeb65a-035c-4073-a916-c4105feed553 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-54eeb65a-035c-4073-a916-c4105feed553 img.shogun-image,
  #s-54eeb65a-035c-4073-a916-c4105feed553 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-54eeb65a-035c-4073-a916-c4105feed553 {
    width: 100%;
    height: auto;
  }

  #s-54eeb65a-035c-4073-a916-c4105feed553 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-54eeb65a-035c-4073-a916-c4105feed553.shogun-image {
    
    
  }


.s-54eeb65a-035c-4073-a916-c4105feed553 .shogun-image-content {
  
    align-items: center;
  
}

.s-54eeb65a-035c-4073-a916-c4105feed553.shg-align-container {
  display: flex;
  justify-content: center
}

.s-54eeb65a-035c-4073-a916-c4105feed553.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-54eeb65a-035c-4073-a916-c4105feed553.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-54eeb65a-035c-4073-a916-c4105feed553 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-54eeb65a-035c-4073-a916-c4105feed553.shogun-image-container {
      position: relative;
    }

    .s-54eeb65a-035c-4073-a916-c4105feed553.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-54eeb65a-035c-4073-a916-c4105feed553.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-54eeb65a-035c-4073-a916-c4105feed553 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-a1caf370-0528-451d-bace-e0ffb97f5701 {
  margin-top: 3%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
opacity: 1;
}

#s-a1caf370-0528-451d-bace-e0ffb97f5701 .shogun-heading-component h5 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  letter-spacing: 2px;
  
}



#s-61011e32-3607-4dcf-9250-16b9c2bfe5c2 {
  margin-top: 1%;
margin-left: 10%;
margin-bottom: -2%;
margin-right: 10%;
opacity: 1;
}

#s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43 {
  max-width: 1500px;
aspect-ratio: 1/1;
text-align: center;
opacity: 1;
background-color: rgba(255, 255, 255, 1);
}





  #s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43 img.shogun-image,
  #s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43 {
    width: 100%;
    height: auto;
  }

  #s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43.shogun-image {
    
    
  }


.s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43 .shogun-image-content {
  
    align-items: center;
  
}

.s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43.shogun-image-container {
      position: relative;
    }

    .s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43 img.shogun-image,
  #s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43 {
    width: 100%;
    height: auto;
  }

  #s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43.shogun-image {
    
    
  }


.s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43 .shogun-image-content {
  
    align-items: center;
  
}

.s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43.shogun-image-container {
      position: relative;
    }

    .s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43 img.shogun-image,
  #s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43 {
    width: 100%;
    height: auto;
  }

  #s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43.shogun-image {
    
    
  }


.s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43 .shogun-image-content {
  
    align-items: center;
  
}

.s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43.shogun-image-container {
      position: relative;
    }

    .s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43 img.shogun-image,
  #s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43 {
    width: 100%;
    height: auto;
  }

  #s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43.shogun-image {
    
    
  }


.s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43 .shogun-image-content {
  
    align-items: center;
  
}

.s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43.shogun-image-container {
      position: relative;
    }

    .s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43 img.shogun-image,
  #s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43 {
    width: 100%;
    height: auto;
  }

  #s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43.shogun-image {
    
    
  }


.s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43 .shogun-image-content {
  
    align-items: center;
  
}

.s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43.shogun-image-container {
      position: relative;
    }

    .s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5c3b7260-0353-4f5b-aee8-2af32a8b5a43 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-10f6aa32-a7eb-445d-bd4d-342c5bd0ae38 {
  margin-top: 3%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
opacity: 1;
}

#s-10f6aa32-a7eb-445d-bd4d-342c5bd0ae38 .shogun-heading-component h5 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  letter-spacing: 2px;
  
}



#s-c8e9eedf-4334-4ab1-b243-16581dfc0233 {
  margin-top: 1%;
margin-left: 10%;
margin-bottom: -2%;
margin-right: 10%;
opacity: 1;
}

#s-c94811ca-64ba-40b8-be07-60e8e6bbfc78 {
  margin-top: 5%;
margin-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-c94811ca-64ba-40b8-be07-60e8e6bbfc78"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c94811ca-64ba-40b8-be07-60e8e6bbfc78"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 992px) {
[id="s-c94811ca-64ba-40b8-be07-60e8e6bbfc78"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 1200px) {
[id="s-c94811ca-64ba-40b8-be07-60e8e6bbfc78"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

#s-d48ee703-3fb6-43a3-8e8f-bb27e1446bed {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-d48ee703-3fb6-43a3-8e8f-bb27e1446bed > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d48ee703-3fb6-43a3-8e8f-bb27e1446bed.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2e50eb8f-8834-40a0-a5e9-4c369b15fc0f {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 15px;
padding-left: 0%;
padding-bottom: 15px;
padding-right: 0%;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: rgba(29, 29, 29, 0);
border-radius: 3px;
max-width: 100%;
background-color: rgba(29, 29, 29, 0.9);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-2e50eb8f-8834-40a0-a5e9-4c369b15fc0f:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 0) !important;
background-color: rgba(74, 74, 74, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-2e50eb8f-8834-40a0-a5e9-4c369b15fc0f:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(155, 155, 155, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-2e50eb8f-8834-40a0-a5e9-4c369b15fc0f-root {
    text-align: center;
  }


#s-2e50eb8f-8834-40a0-a5e9-4c369b15fc0f.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-2e50eb8f-8834-40a0-a5e9-4c369b15fc0f-root {
    text-align: center;
  }


#s-2e50eb8f-8834-40a0-a5e9-4c369b15fc0f.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-2e50eb8f-8834-40a0-a5e9-4c369b15fc0f-root {
    text-align: center;
  }


#s-2e50eb8f-8834-40a0-a5e9-4c369b15fc0f.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-2e50eb8f-8834-40a0-a5e9-4c369b15fc0f-root {
    text-align: center;
  }


#s-2e50eb8f-8834-40a0-a5e9-4c369b15fc0f.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-2e50eb8f-8834-40a0-a5e9-4c369b15fc0f-root {
    text-align: center;
  }


#s-2e50eb8f-8834-40a0-a5e9-4c369b15fc0f.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-2e50eb8f-8834-40a0-a5e9-4c369b15fc0f-root {
    text-align: center;
  }


#s-2e50eb8f-8834-40a0-a5e9-4c369b15fc0f.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-82dbb2e1-eb94-446f-83bd-2670859569a7 {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-82dbb2e1-eb94-446f-83bd-2670859569a7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-82dbb2e1-eb94-446f-83bd-2670859569a7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-df549bfa-f438-4176-9e4c-32d47ef7c3a1 {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 15px;
padding-left: 0%;
padding-bottom: 15px;
padding-right: 0%;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: rgba(29, 29, 29, 0);
border-radius: 3px;
max-width: 100%;
background-color: rgba(29, 29, 29, 0.9);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-df549bfa-f438-4176-9e4c-32d47ef7c3a1:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 0) !important;
background-color: rgba(74, 74, 74, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-df549bfa-f438-4176-9e4c-32d47ef7c3a1:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(155, 155, 155, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-df549bfa-f438-4176-9e4c-32d47ef7c3a1-root {
    text-align: center;
  }


#s-df549bfa-f438-4176-9e4c-32d47ef7c3a1.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-df549bfa-f438-4176-9e4c-32d47ef7c3a1-root {
    text-align: center;
  }


#s-df549bfa-f438-4176-9e4c-32d47ef7c3a1.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-df549bfa-f438-4176-9e4c-32d47ef7c3a1-root {
    text-align: center;
  }


#s-df549bfa-f438-4176-9e4c-32d47ef7c3a1.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-df549bfa-f438-4176-9e4c-32d47ef7c3a1-root {
    text-align: center;
  }


#s-df549bfa-f438-4176-9e4c-32d47ef7c3a1.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-df549bfa-f438-4176-9e4c-32d47ef7c3a1-root {
    text-align: center;
  }


#s-df549bfa-f438-4176-9e4c-32d47ef7c3a1.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-df549bfa-f438-4176-9e4c-32d47ef7c3a1-root {
    text-align: center;
  }


#s-df549bfa-f438-4176-9e4c-32d47ef7c3a1.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-fd0bdce1-1bd9-431d-b08c-6fc9592dfdfb {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-fd0bdce1-1bd9-431d-b08c-6fc9592dfdfb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fd0bdce1-1bd9-431d-b08c-6fc9592dfdfb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-583950c3-57a4-43ee-9656-5fd533ff3a1c {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 15px;
padding-left: 0%;
padding-bottom: 15px;
padding-right: 0%;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: rgba(29, 29, 29, 0);
border-radius: 3px;
max-width: 100%;
background-color: rgba(29, 29, 29, 0.9);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-583950c3-57a4-43ee-9656-5fd533ff3a1c:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 0) !important;
background-color: rgba(74, 74, 74, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-583950c3-57a4-43ee-9656-5fd533ff3a1c:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(155, 155, 155, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-583950c3-57a4-43ee-9656-5fd533ff3a1c-root {
    text-align: center;
  }


#s-583950c3-57a4-43ee-9656-5fd533ff3a1c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-583950c3-57a4-43ee-9656-5fd533ff3a1c-root {
    text-align: center;
  }


#s-583950c3-57a4-43ee-9656-5fd533ff3a1c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-583950c3-57a4-43ee-9656-5fd533ff3a1c-root {
    text-align: center;
  }


#s-583950c3-57a4-43ee-9656-5fd533ff3a1c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-583950c3-57a4-43ee-9656-5fd533ff3a1c-root {
    text-align: center;
  }


#s-583950c3-57a4-43ee-9656-5fd533ff3a1c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-583950c3-57a4-43ee-9656-5fd533ff3a1c-root {
    text-align: center;
  }


#s-583950c3-57a4-43ee-9656-5fd533ff3a1c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-583950c3-57a4-43ee-9656-5fd533ff3a1c-root {
    text-align: center;
  }


#s-583950c3-57a4-43ee-9656-5fd533ff3a1c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

@charset "UTF-8";/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */:root{--animate-duration:1s;--animate-delay:1s;--animate-repeat:1}.animate__animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-duration:var(--animate-duration);animation-duration:var(--animate-duration);-webkit-animation-fill-mode:both;animation-fill-mode:both}.animate__animated.animate__infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animate__animated.animate__repeat-1{-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-iteration-count:var(--animate-repeat);animation-iteration-count:var(--animate-repeat)}.animate__animated.animate__repeat-2{-webkit-animation-iteration-count:2;animation-iteration-count:2;-webkit-animation-iteration-count:calc(var(--animate-repeat)*2);animation-iteration-count:calc(var(--animate-repeat)*2)}.animate__animated.animate__repeat-3{-webkit-animation-iteration-count:3;animation-iteration-count:3;-webkit-animation-iteration-count:calc(var(--animate-repeat)*3);animation-iteration-count:calc(var(--animate-repeat)*3)}.animate__animated.animate__delay-1s{-webkit-animation-delay:1s;animation-delay:1s;-webkit-animation-delay:var(--animate-delay);animation-delay:var(--animate-delay)}.animate__animated.animate__delay-2s{-webkit-animation-delay:2s;animation-delay:2s;-webkit-animation-delay:calc(var(--animate-delay)*2);animation-delay:calc(var(--animate-delay)*2)}.animate__animated.animate__delay-3s{-webkit-animation-delay:3s;animation-delay:3s;-webkit-animation-delay:calc(var(--animate-delay)*3);animation-delay:calc(var(--animate-delay)*3)}.animate__animated.animate__delay-4s{-webkit-animation-delay:4s;animation-delay:4s;-webkit-animation-delay:calc(var(--animate-delay)*4);animation-delay:calc(var(--animate-delay)*4)}.animate__animated.animate__delay-5s{-webkit-animation-delay:5s;animation-delay:5s;-webkit-animation-delay:calc(var(--animate-delay)*5);animation-delay:calc(var(--animate-delay)*5)}.animate__animated.animate__faster{-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-duration:calc(var(--animate-duration)/2);animation-duration:calc(var(--animate-duration)/2)}.animate__animated.animate__fast{-webkit-animation-duration:.8s;animation-duration:.8s;-webkit-animation-duration:calc(var(--animate-duration)*0.8);animation-duration:calc(var(--animate-duration)*0.8)}.animate__animated.animate__slow{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-duration:calc(var(--animate-duration)*2);animation-duration:calc(var(--animate-duration)*2)}.animate__animated.animate__slower{-webkit-animation-duration:3s;animation-duration:3s;-webkit-animation-duration:calc(var(--animate-duration)*3);animation-duration:calc(var(--animate-duration)*3)}@media (prefers-reduced-motion:reduce),print{.animate__animated{-webkit-animation-duration:1ms!important;animation-duration:1ms!important;-webkit-transition-duration:1ms!important;transition-duration:1ms!important;-webkit-animation-iteration-count:1!important;animation-iteration-count:1!important}.animate__animated[class*=Out]{opacity:0}}@-webkit-keyframes bounce{0%,20%,53%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0);transform:translateZ(0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0) scaleY(1.1);transform:translate3d(0,-30px,0) scaleY(1.1)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0) scaleY(1.05);transform:translate3d(0,-15px,0) scaleY(1.05)}80%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0) scaleY(.95);transform:translateZ(0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-4px,0) scaleY(1.02);transform:translate3d(0,-4px,0) scaleY(1.02)}}@keyframes bounce{0%,20%,53%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0);transform:translateZ(0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0) scaleY(1.1);transform:translate3d(0,-30px,0) scaleY(1.1)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0) scaleY(1.05);transform:translate3d(0,-15px,0) scaleY(1.05)}80%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0) scaleY(.95);transform:translateZ(0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-4px,0) scaleY(1.02);transform:translate3d(0,-4px,0) scaleY(1.02)}}.animate__bounce{-webkit-animation-name:bounce;animation-name:bounce;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}.animate__flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes pulse{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__pulse{-webkit-animation-name:pulse;animation-name:pulse;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}@-webkit-keyframes rubberBand{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes rubberBand{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shakeX{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@keyframes shakeX{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}.animate__shakeX{-webkit-animation-name:shakeX;animation-name:shakeX}@-webkit-keyframes shakeY{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}20%,40%,60%,80%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}}@keyframes shakeY{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}20%,40%,60%,80%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}}.animate__shakeY{-webkit-animation-name:shakeY;animation-name:shakeY}@-webkit-keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}.animate__headShake{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-name:headShake;animation-name:headShake}@-webkit-keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}.animate__swing{-webkit-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate(-3deg);transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(3deg);transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(-3deg);transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate(-3deg);transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(3deg);transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(-3deg);transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate(-5deg);transform:translate3d(-25%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate(3deg);transform:translate3d(20%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate(-3deg);transform:translate3d(-15%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate(2deg);transform:translate3d(10%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes wobble{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate(-5deg);transform:translate3d(-25%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate(3deg);transform:translate3d(20%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate(-3deg);transform:translate3d(-15%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate(2deg);transform:translate3d(10%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes jello{0%,11.1%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}@keyframes jello{0%,11.1%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}.animate__jello{-webkit-animation-name:jello;animation-name:jello;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}.animate__heartBeat{-webkit-animation-name:heartBeat;animation-name:heartBeat;-webkit-animation-duration:1.3s;animation-duration:1.3s;-webkit-animation-duration:calc(var(--animate-duration)*1.3);animation-duration:calc(var(--animate-duration)*1.3);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}@-webkit-keyframes backInDown{0%{-webkit-transform:translateY(-1200px) scale(.7);transform:translateY(-1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInDown{0%{-webkit-transform:translateY(-1200px) scale(.7);transform:translateY(-1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInDown{-webkit-animation-name:backInDown;animation-name:backInDown}@-webkit-keyframes backInLeft{0%{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInLeft{0%{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInLeft{-webkit-animation-name:backInLeft;animation-name:backInLeft}@-webkit-keyframes backInRight{0%{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInRight{0%{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInRight{-webkit-animation-name:backInRight;animation-name:backInRight}@-webkit-keyframes backInUp{0%{-webkit-transform:translateY(1200px) scale(.7);transform:translateY(1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInUp{0%{-webkit-transform:translateY(1200px) scale(.7);transform:translateY(1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInUp{-webkit-animation-name:backInUp;animation-name:backInUp}@-webkit-keyframes backOutDown{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(700px) scale(.7);transform:translateY(700px) scale(.7);opacity:.7}}@keyframes backOutDown{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(700px) scale(.7);transform:translateY(700px) scale(.7);opacity:.7}}.animate__backOutDown{-webkit-animation-name:backOutDown;animation-name:backOutDown}@-webkit-keyframes backOutLeft{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}}@keyframes backOutLeft{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}}.animate__backOutLeft{-webkit-animation-name:backOutLeft;animation-name:backOutLeft}@-webkit-keyframes backOutRight{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}}@keyframes backOutRight{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}}.animate__backOutRight{-webkit-animation-name:backOutRight;animation-name:backOutRight}@-webkit-keyframes backOutUp{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(-700px) scale(.7);transform:translateY(-700px) scale(.7);opacity:.7}}@keyframes backOutUp{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(-700px) scale(.7);transform:translateY(-700px) scale(.7);opacity:.7}}.animate__backOutUp{-webkit-animation-name:backOutUp;animation-name:backOutUp}@-webkit-keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__bounceIn{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0) scaleY(3);transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0) scaleY(.9);transform:translate3d(0,25px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,-10px,0) scaleY(.95);transform:translate3d(0,-10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,5px,0) scaleY(.985);transform:translate3d(0,5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0) scaleY(3);transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0) scaleY(.9);transform:translate3d(0,25px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,-10px,0) scaleY(.95);transform:translate3d(0,-10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,5px,0) scaleY(.985);transform:translate3d(0,5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0) scaleX(3);transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0) scaleX(1);transform:translate3d(25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(-10px,0,0) scaleX(.98);transform:translate3d(-10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(5px,0,0) scaleX(.995);transform:translate3d(5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0) scaleX(3);transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0) scaleX(1);transform:translate3d(25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(-10px,0,0) scaleX(.98);transform:translate3d(-10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(5px,0,0) scaleX(.995);transform:translate3d(5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(3000px,0,0) scaleX(3);transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0) scaleX(1);transform:translate3d(-25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(10px,0,0) scaleX(.98);transform:translate3d(10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(-5px,0,0) scaleX(.995);transform:translate3d(-5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(3000px,0,0) scaleX(3);transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0) scaleX(1);transform:translate3d(-25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(10px,0,0) scaleX(.98);transform:translate3d(10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(-5px,0,0) scaleX(.995);transform:translate3d(-5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0) scaleY(5);transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,10px,0) scaleY(.95);transform:translate3d(0,10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-5px,0) scaleY(.985);transform:translate3d(0,-5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0) scaleY(5);transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,10px,0) scaleY(.95);transform:translate3d(0,10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-5px,0) scaleY(.985);transform:translate3d(0,-5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}.animate__bounceOut{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0) scaleY(.985);transform:translate3d(0,10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0) scaleY(3);transform:translate3d(0,2000px,0) scaleY(3)}}@keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0) scaleY(.985);transform:translate3d(0,10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0) scaleY(3);transform:translate3d(0,2000px,0) scaleY(3)}}.animate__bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0) scaleX(.9);transform:translate3d(20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0) scaleX(2);transform:translate3d(-2000px,0,0) scaleX(2)}}@keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0) scaleX(.9);transform:translate3d(20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0) scaleX(2);transform:translate3d(-2000px,0,0) scaleX(2)}}.animate__bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0) scaleX(.9);transform:translate3d(-20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0) scaleX(2);transform:translate3d(2000px,0,0) scaleX(2)}}@keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0) scaleX(.9);transform:translate3d(-20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0) scaleX(2);transform:translate3d(2000px,0,0) scaleX(2)}}.animate__bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0) scaleY(.985);transform:translate3d(0,-10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0) scaleY(.9);transform:translate3d(0,20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0) scaleY(3);transform:translate3d(0,-2000px,0) scaleY(3)}}@keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0) scaleY(.985);transform:translate3d(0,-10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0) scaleY(.9);transform:translate3d(0,20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0) scaleY(3);transform:translate3d(0,-2000px,0) scaleY(3)}}.animate__bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.animate__fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeInTopLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInTopLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInTopLeft{-webkit-animation-name:fadeInTopLeft;animation-name:fadeInTopLeft}@-webkit-keyframes fadeInTopRight{0%{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInTopRight{0%{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInTopRight{-webkit-animation-name:fadeInTopRight;animation-name:fadeInTopRight}@-webkit-keyframes fadeInBottomLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInBottomLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInBottomLeft{-webkit-animation-name:fadeInBottomLeft;animation-name:fadeInBottomLeft}@-webkit-keyframes fadeInBottomRight{0%{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInBottomRight{0%{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInBottomRight{-webkit-animation-name:fadeInBottomRight;animation-name:fadeInBottomRight}@-webkit-keyframes fadeOut{0%{opacity:1}to{opacity:0}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.animate__fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes fadeOutDown{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.animate__fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.animate__fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.animate__fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.animate__fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes fadeOutRight{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.animate__fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.animate__fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes fadeOutUp{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.animate__fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.animate__fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes fadeOutTopLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}}@keyframes fadeOutTopLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}}.animate__fadeOutTopLeft{-webkit-animation-name:fadeOutTopLeft;animation-name:fadeOutTopLeft}@-webkit-keyframes fadeOutTopRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}}@keyframes fadeOutTopRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}}.animate__fadeOutTopRight{-webkit-animation-name:fadeOutTopRight;animation-name:fadeOutTopRight}@-webkit-keyframes fadeOutBottomRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}}@keyframes fadeOutBottomRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}}.animate__fadeOutBottomRight{-webkit-animation-name:fadeOutBottomRight;animation-name:fadeOutBottomRight}@-webkit-keyframes fadeOutBottomLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}}@keyframes fadeOutBottomLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}}.animate__fadeOutBottomLeft{-webkit-animation-name:fadeOutBottomLeft;animation-name:fadeOutBottomLeft}@-webkit-keyframes flip{0%{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{0%{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.animate__animated.animate__flip{-webkit-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.animate__flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}@-webkit-keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-20deg);transform:perspective(400px) rotateY(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-20deg);transform:perspective(400px) rotateY(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.animate__flipInY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}@keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}.animate__flipOutX{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:flipOutX;animation-name:flipOutX;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}@-webkit-keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateY(-15deg);transform:perspective(400px) rotateY(-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}@keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateY(-15deg);transform:perspective(400px) rotateY(-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}.animate__flipOutY{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedInRight{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes lightSpeedInRight{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__lightSpeedInRight{-webkit-animation-name:lightSpeedInRight;animation-name:lightSpeedInRight;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedInLeft{0%{-webkit-transform:translate3d(-100%,0,0) skewX(30deg);transform:translate3d(-100%,0,0) skewX(30deg);opacity:0}60%{-webkit-transform:skewX(-20deg);transform:skewX(-20deg);opacity:1}80%{-webkit-transform:skewX(5deg);transform:skewX(5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes lightSpeedInLeft{0%{-webkit-transform:translate3d(-100%,0,0) skewX(30deg);transform:translate3d(-100%,0,0) skewX(30deg);opacity:0}60%{-webkit-transform:skewX(-20deg);transform:skewX(-20deg);opacity:1}80%{-webkit-transform:skewX(5deg);transform:skewX(5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__lightSpeedInLeft{-webkit-animation-name:lightSpeedInLeft;animation-name:lightSpeedInLeft;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOutRight{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}@keyframes lightSpeedOutRight{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.animate__lightSpeedOutRight{-webkit-animation-name:lightSpeedOutRight;animation-name:lightSpeedOutRight;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes lightSpeedOutLeft{0%{opacity:1}to{-webkit-transform:translate3d(-100%,0,0) skewX(-30deg);transform:translate3d(-100%,0,0) skewX(-30deg);opacity:0}}@keyframes lightSpeedOutLeft{0%{opacity:1}to{-webkit-transform:translate3d(-100%,0,0) skewX(-30deg);transform:translate3d(-100%,0,0) skewX(-30deg);opacity:0}}.animate__lightSpeedOutLeft{-webkit-animation-name:lightSpeedOutLeft;animation-name:lightSpeedOutLeft;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{0%{-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateIn{0%{-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes rotateInDownLeft{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInDownLeft{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateInDownRight{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInDownRight{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateInUpLeft{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInUpLeft{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateInUpRight{0%{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInUpRight{0%{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateOut{0%{opacity:1}to{-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}@keyframes rotateOut{0%{opacity:1}to{-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}.animate__rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes rotateOutDownLeft{0%{opacity:1}to{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}}@keyframes rotateOutDownLeft{0%{opacity:1}to{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}}.animate__rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateOutDownRight{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}@keyframes rotateOutDownRight{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}.animate__rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateOutUpLeft{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}@keyframes rotateOutUpLeft{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}.animate__rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateOutUpRight{0%{opacity:1}to{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes rotateOutUpRight{0%{opacity:1}to{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}.animate__rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes hinge{0%{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}@keyframes hinge{0%{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}.animate__hinge{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-duration:calc(var(--animate-duration)*2);animation-duration:calc(var(--animate-duration)*2);-webkit-animation-name:hinge;animation-name:hinge;-webkit-transform-origin:top left;transform-origin:top left}@-webkit-keyframes jackInTheBox{0%{opacity:0;-webkit-transform:scale(.1) rotate(30deg);transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes jackInTheBox{0%{opacity:0;-webkit-transform:scale(.1) rotate(30deg);transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.animate__jackInTheBox{-webkit-animation-name:jackInTheBox;animation-name:jackInTheBox}@-webkit-keyframes rollIn{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate(-120deg);transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes rollIn{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate(-120deg);transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate(120deg);transform:translate3d(100%,0,0) rotate(120deg)}}@keyframes rollOut{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate(120deg);transform:translate3d(100%,0,0) rotate(120deg)}}.animate__rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}@-webkit-keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}.animate__zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-webkit-keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-webkit-keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-webkit-keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}@-webkit-keyframes zoomOut{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes zoomOut{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}.animate__zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-webkit-keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0)}}@keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0)}}.animate__zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft;-webkit-transform-origin:left center;transform-origin:left center}@-webkit-keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0)}}@keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0)}}.animate__zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight;-webkit-transform-origin:right center;transform-origin:right center}@-webkit-keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes slideOutDown{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.animate__slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes slideOutLeft{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes slideOutLeft{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.animate__slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes slideOutRight{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.animate__slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes slideOutUp{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.animate__slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}
/*
  $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}
