.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-d73dd1ff-745b-424e-ae8a-eeb1be327ca2 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(229, 229, 229, 1);
}








#s-d73dd1ff-745b-424e-ae8a-eeb1be327ca2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d73dd1ff-745b-424e-ae8a-eeb1be327ca2.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-7edcfbfa-a97a-4a43-b2a2-7e86a2d7bb96 {
  margin-left: auto;
margin-right: auto;
max-width: 800px;
aspect-ratio: 800/1247;
text-align: center;
}
@media (min-width: 1200px){#s-7edcfbfa-a97a-4a43-b2a2-7e86a2d7bb96 {
  display: none;
}
#s-7edcfbfa-a97a-4a43-b2a2-7e86a2d7bb96, #wrap-s-7edcfbfa-a97a-4a43-b2a2-7e86a2d7bb96 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7edcfbfa-a97a-4a43-b2a2-7e86a2d7bb96 {
  display: none;
}
#s-7edcfbfa-a97a-4a43-b2a2-7e86a2d7bb96, #wrap-s-7edcfbfa-a97a-4a43-b2a2-7e86a2d7bb96 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7edcfbfa-a97a-4a43-b2a2-7e86a2d7bb96 {
  display: none;
}
#s-7edcfbfa-a97a-4a43-b2a2-7e86a2d7bb96, #wrap-s-7edcfbfa-a97a-4a43-b2a2-7e86a2d7bb96 { display:none !important; }}




  #s-7edcfbfa-a97a-4a43-b2a2-7e86a2d7bb96 img.shogun-image,
  #s-7edcfbfa-a97a-4a43-b2a2-7e86a2d7bb96 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7edcfbfa-a97a-4a43-b2a2-7e86a2d7bb96 {
    width: 100%;
    height: auto;
  }



  #s-7edcfbfa-a97a-4a43-b2a2-7e86a2d7bb96 img.shogun-image {
    

    
    
    
  }


#s-7edcfbfa-a97a-4a43-b2a2-7e86a2d7bb96 .shogun-image-content {
  
    align-items: center;
  
}

#s-aeb55696-319c-4bf1-9de0-416e6f8060d1 {
  margin-left: auto;
margin-right: auto;
max-width: 1600px;
aspect-ratio: 1600/1019;
text-align: center;
}
@media (min-width: 1200px){#s-aeb55696-319c-4bf1-9de0-416e6f8060d1 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-aeb55696-319c-4bf1-9de0-416e6f8060d1 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-aeb55696-319c-4bf1-9de0-416e6f8060d1 {
  display: none;
}
#s-aeb55696-319c-4bf1-9de0-416e6f8060d1, #wrap-s-aeb55696-319c-4bf1-9de0-416e6f8060d1 { display:none !important; }}@media (max-width: 767px){#s-aeb55696-319c-4bf1-9de0-416e6f8060d1 {
  display: none;
}
#s-aeb55696-319c-4bf1-9de0-416e6f8060d1, #wrap-s-aeb55696-319c-4bf1-9de0-416e6f8060d1 { display:none !important; }}




  #s-aeb55696-319c-4bf1-9de0-416e6f8060d1 img.shogun-image,
  #s-aeb55696-319c-4bf1-9de0-416e6f8060d1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-aeb55696-319c-4bf1-9de0-416e6f8060d1 {
    width: 100%;
    height: auto;
  }



  #s-aeb55696-319c-4bf1-9de0-416e6f8060d1 img.shogun-image {
    

    
    
    
  }


#s-aeb55696-319c-4bf1-9de0-416e6f8060d1 .shogun-image-content {
  
    align-items: center;
  
}

#s-01d165ac-2d68-451c-b6fc-512433755d86 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 600px;
}








#s-01d165ac-2d68-451c-b6fc-512433755d86 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-01d165ac-2d68-451c-b6fc-512433755d86.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dc29831c-7ba3-4ff1-b272-aa6dc2bead1f {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 600px;
}








#s-dc29831c-7ba3-4ff1-b272-aa6dc2bead1f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dc29831c-7ba3-4ff1-b272-aa6dc2bead1f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e8651588-a8a4-4a90-9d6d-5f4c700bcea5 {
  text-align: center;
}







  #s-e8651588-a8a4-4a90-9d6d-5f4c700bcea5 img.shogun-image {
    

    
    
    
  }


#s-e8651588-a8a4-4a90-9d6d-5f4c700bcea5 .shogun-image-content {
  
    align-items: center;
  
}

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

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

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

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

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

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

.shg-default-text-content h1,
.shg-default-text-content h2,
.shg-default-text-content h3,
.shg-default-text-content h4,
.shg-default-text-content h5,
.shg-default-text-content h6 {
  color: ;
  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-1fea8cdf-37ba-4563-9ba0-38105d76ca06 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
max-width: 800px;
}

#s-b51108cb-a468-4d92-a3dd-ada905ce5ec3 {
  margin-top: 20px;
margin-bottom: 20px;
text-align: center;
}







  #s-b51108cb-a468-4d92-a3dd-ada905ce5ec3 img.shogun-image {
    

    
    
    
  }


#s-b51108cb-a468-4d92-a3dd-ada905ce5ec3 .shogun-image-content {
  
    align-items: center;
  
}

#s-5febb52a-f526-4e3d-8d0e-6e757d171822 {
  margin-top: 40px;
text-align: center;
}







  #s-5febb52a-f526-4e3d-8d0e-6e757d171822 img.shogun-image {
    

    
    
    
  }


#s-5febb52a-f526-4e3d-8d0e-6e757d171822 .shogun-image-content {
  
    align-items: center;
  
}

#s-cfdad318-7c82-46e9-bab6-a52b3309c9d8 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
max-width: 800px;
}

#s-c3c7427e-34b6-4a65-a42d-8d07ff052324 {
  margin-top: 20px;
margin-bottom: 20px;
text-align: center;
}







  #s-c3c7427e-34b6-4a65-a42d-8d07ff052324 img.shogun-image {
    

    
    
    
  }


#s-c3c7427e-34b6-4a65-a42d-8d07ff052324 .shogun-image-content {
  
    align-items: center;
  
}

#s-98bb5065-1b40-42a3-8377-74950d9b7475 {
  margin-top: 20px;
margin-bottom: 20px;
max-width: 800px;
aspect-ratio: 800/169;
text-align: center;
}





  #s-98bb5065-1b40-42a3-8377-74950d9b7475 img.shogun-image,
  #s-98bb5065-1b40-42a3-8377-74950d9b7475 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-98bb5065-1b40-42a3-8377-74950d9b7475 {
    width: 100%;
    height: auto;
  }



  #s-98bb5065-1b40-42a3-8377-74950d9b7475 img.shogun-image {
    

    
    
    
  }


#s-98bb5065-1b40-42a3-8377-74950d9b7475 .shogun-image-content {
  
    align-items: center;
  
}

#s-f17956bb-8d5d-4597-b475-1f98b828e4f5 {
  margin-top: 40px;
margin-bottom: 0px;
text-align: center;
}







  #s-f17956bb-8d5d-4597-b475-1f98b828e4f5 img.shogun-image {
    

    
    
    
  }


#s-f17956bb-8d5d-4597-b475-1f98b828e4f5 .shogun-image-content {
  
    align-items: center;
  
}

#s-4c08eaa5-7de1-4db8-b147-2eebb29f27e7 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
max-width: 800px;
}

#s-393c1797-0593-434c-a3a2-c107c1d50789 {
  margin-top: 20px;
margin-bottom: 20px;
text-align: center;
}







  #s-393c1797-0593-434c-a3a2-c107c1d50789 img.shogun-image {
    

    
    
    
  }


#s-393c1797-0593-434c-a3a2-c107c1d50789 .shogun-image-content {
  
    align-items: center;
  
}

#s-ec291358-7fb2-457e-9cc9-10063d24883b {
  min-height: 50px;
}








#s-ec291358-7fb2-457e-9cc9-10063d24883b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ec291358-7fb2-457e-9cc9-10063d24883b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4ee207c4-3f95-4177-a75d-4fb63aa3ee60 {
  margin-top: 40px;
text-align: center;
}







  #s-4ee207c4-3f95-4177-a75d-4fb63aa3ee60 img.shogun-image {
    

    
    
    
  }


#s-4ee207c4-3f95-4177-a75d-4fb63aa3ee60 .shogun-image-content {
  
    align-items: center;
  
}

#s-3a4bd6f2-bcdc-49c5-8699-c046f36367f2 {
  margin-top: 40px;
margin-bottom: 0px;
text-align: center;
}







  #s-3a4bd6f2-bcdc-49c5-8699-c046f36367f2 img.shogun-image {
    

    
    
    
  }


#s-3a4bd6f2-bcdc-49c5-8699-c046f36367f2 .shogun-image-content {
  
    align-items: center;
  
}

#s-adb6c285-9e02-4a62-bfe9-62e36b77385d {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
max-width: 800px;
}

#s-207061da-09c5-42dc-a401-d1843110e24e {
  margin-top: 40px;
margin-bottom: 40px;
text-align: center;
}







  #s-207061da-09c5-42dc-a401-d1843110e24e img.shogun-image {
    

    
    
    
  }


#s-207061da-09c5-42dc-a401-d1843110e24e .shogun-image-content {
  
    align-items: center;
  
}

#s-5dd03f09-3e87-4c42-8b32-c76c213d7593 {
  margin-top: 40px;
margin-bottom: 0px;
text-align: center;
}







  #s-5dd03f09-3e87-4c42-8b32-c76c213d7593 img.shogun-image {
    

    
    
    
  }


#s-5dd03f09-3e87-4c42-8b32-c76c213d7593 .shogun-image-content {
  
    align-items: center;
  
}

#s-0216be37-0636-4954-8acf-607e5b15c65a {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
max-width: 800px;
}

#s-f585a00a-1e6f-4242-b736-b00fef3a28b4 {
  margin-top: 40px;
margin-bottom: 40px;
text-align: center;
}







  #s-f585a00a-1e6f-4242-b736-b00fef3a28b4 img.shogun-image {
    

    
    
    
  }


#s-f585a00a-1e6f-4242-b736-b00fef3a28b4 .shogun-image-content {
  
    align-items: center;
  
}

#s-11613cba-496f-4a5d-8b1a-719b38ae5b66 {
  margin-top: 40px;
margin-bottom: 40px;
text-align: center;
}







  #s-11613cba-496f-4a5d-8b1a-719b38ae5b66 img.shogun-image {
    

    
    
    
  }


#s-11613cba-496f-4a5d-8b1a-719b38ae5b66 .shogun-image-content {
  
    align-items: center;
  
}

#s-1e223330-49e3-4c50-b4f1-a388fe0150d0 {
  margin-top: 40px;
text-align: center;
}







  #s-1e223330-49e3-4c50-b4f1-a388fe0150d0 img.shogun-image {
    

    
    
    
  }


#s-1e223330-49e3-4c50-b4f1-a388fe0150d0 .shogun-image-content {
  
    align-items: center;
  
}

#s-df20c01a-d811-43d7-9fa2-97d71d1a6367 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
max-width: 800px;
}

#s-234b6369-b963-49a4-a66e-924b83564b36 {
  margin-top: 20px;
margin-bottom: 20px;
text-align: center;
}







  #s-234b6369-b963-49a4-a66e-924b83564b36 img.shogun-image {
    

    
    
    
  }


#s-234b6369-b963-49a4-a66e-924b83564b36 .shogun-image-content {
  
    align-items: center;
  
}

#s-a9866b3b-700c-47d1-8110-45434f9acd51 {
  margin-top: 40px;
margin-bottom: 0px;
text-align: center;
}







  #s-a9866b3b-700c-47d1-8110-45434f9acd51 img.shogun-image {
    

    
    
    
  }


#s-a9866b3b-700c-47d1-8110-45434f9acd51 .shogun-image-content {
  
    align-items: center;
  
}

#s-d05caa9c-f1ac-4b7c-ae75-d42137fc63ab {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
max-width: 800px;
}

#s-f729b875-a75e-4d3f-996c-4adf2b0cbaa5 {
  margin-top: 20px;
margin-bottom: 20px;
text-align: center;
}







  #s-f729b875-a75e-4d3f-996c-4adf2b0cbaa5 img.shogun-image {
    

    
    
    
  }


#s-f729b875-a75e-4d3f-996c-4adf2b0cbaa5 .shogun-image-content {
  
    align-items: center;
  
}

#s-ed68e953-8faf-4037-ad4d-e4475b64c5e9 {
  margin-top: 40px;
text-align: center;
}







  #s-ed68e953-8faf-4037-ad4d-e4475b64c5e9 img.shogun-image {
    

    
    
    
  }


#s-ed68e953-8faf-4037-ad4d-e4475b64c5e9 .shogun-image-content {
  
    align-items: center;
  
}

#s-f297dc6f-eabe-4f16-a6d5-0ce4b5f59e28 {
  margin-top: 20px;
text-align: center;
}







  #s-f297dc6f-eabe-4f16-a6d5-0ce4b5f59e28 img.shogun-image {
    

    
    
    
  }


#s-f297dc6f-eabe-4f16-a6d5-0ce4b5f59e28 .shogun-image-content {
  
    align-items: center;
  
}

#s-4777cb91-233b-45a7-bdb4-c58f4da1d26d {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
max-width: 800px;
}

#s-8617bb27-0532-4bbc-913c-2f3e087f1453 {
  margin-top: 20px;
margin-bottom: 20px;
text-align: center;
}







  #s-8617bb27-0532-4bbc-913c-2f3e087f1453 img.shogun-image {
    

    
    
    
  }


#s-8617bb27-0532-4bbc-913c-2f3e087f1453 .shogun-image-content {
  
    align-items: center;
  
}

#s-0ca48c95-3acc-4240-a596-6252f27ef609 {
  margin-top: 20px;
margin-bottom: 20px;
text-align: center;
}







  #s-0ca48c95-3acc-4240-a596-6252f27ef609 img.shogun-image {
    

    
    
    
  }


#s-0ca48c95-3acc-4240-a596-6252f27ef609 .shogun-image-content {
  
    align-items: center;
  
}

#s-195e356d-7399-4099-bfbf-bd7fb4cd5182 {
  margin-top: 40px;
margin-bottom: 0px;
text-align: center;
}







  #s-195e356d-7399-4099-bfbf-bd7fb4cd5182 img.shogun-image {
    

    
    
    
  }


#s-195e356d-7399-4099-bfbf-bd7fb4cd5182 .shogun-image-content {
  
    align-items: center;
  
}

#s-f9152aaf-b513-4694-b3bc-354f10b338d0 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
max-width: 800px;
}

#s-e16bc65b-80f2-4f3d-9910-82b3d6a8ea34 {
  margin-top: 20px;
margin-bottom: 20px;
text-align: center;
}







  #s-e16bc65b-80f2-4f3d-9910-82b3d6a8ea34 img.shogun-image {
    

    
    
    
  }


#s-e16bc65b-80f2-4f3d-9910-82b3d6a8ea34 .shogun-image-content {
  
    align-items: center;
  
}

#s-dff1cf4d-41bb-4ce1-92c8-1f26e5461e7a {
  margin-top: 20px;
margin-bottom: 20px;
text-align: center;
}







  #s-dff1cf4d-41bb-4ce1-92c8-1f26e5461e7a img.shogun-image {
    

    
    
    
  }


#s-dff1cf4d-41bb-4ce1-92c8-1f26e5461e7a .shogun-image-content {
  
    align-items: center;
  
}

#s-a404f4e3-bdd4-4d0d-9d34-ddc268eb2348 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
max-width: 800px;
}

#s-e87ff75d-459a-4f83-af7e-5914ba2e37d1 {
  margin-top: 40px;
text-align: center;
}







  #s-e87ff75d-459a-4f83-af7e-5914ba2e37d1 img.shogun-image {
    

    
    
    
  }


#s-e87ff75d-459a-4f83-af7e-5914ba2e37d1 .shogun-image-content {
  
    align-items: center;
  
}

#s-45c82261-a5c7-4714-9fa2-45ed94633109 {
  margin-top: 20px;
margin-bottom: 20px;
min-height: 50px;
}








#s-45c82261-a5c7-4714-9fa2-45ed94633109 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-45c82261-a5c7-4714-9fa2-45ed94633109.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

@media (min-width: 0px) {
[id="s-1cf79e6c-0ba2-4938-a16f-70451e6e70ce"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-1cf79e6c-0ba2-4938-a16f-70451e6e70ce"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1cf79e6c-0ba2-4938-a16f-70451e6e70ce"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1cf79e6c-0ba2-4938-a16f-70451e6e70ce"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-b7db7556-b4e8-4fc4-adba-7ff01eef41a4 {
  margin-top: 20px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
}

#s-10282fd6-190b-4863-a3f0-c55ec09c5fa7 {
  margin-top: auto;
margin-bottom: auto;
padding-top: 10%;
padding-bottom: 10%;
text-align: center;
}







  #s-10282fd6-190b-4863-a3f0-c55ec09c5fa7 img.shogun-image {
    

    
    
    
  }


#s-10282fd6-190b-4863-a3f0-c55ec09c5fa7 .shogun-image-content {
  
    align-items: center;
  
}

#s-e08e37c9-aa60-4418-af2c-728b204585b5 {
  margin-top: auto;
margin-bottom: 10px;
padding-top: 10%;
padding-bottom: 10%;
}

#s-5bc14a90-8449-4c71-93f1-844d610d948f {
  margin-top: auto;
margin-bottom: auto;
}

@media (min-width: 0px) {
[id="s-5bc14a90-8449-4c71-93f1-844d610d948f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-5bc14a90-8449-4c71-93f1-844d610d948f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5bc14a90-8449-4c71-93f1-844d610d948f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5bc14a90-8449-4c71-93f1-844d610d948f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-f9b4d9e5-21e9-49fd-87af-7cd177ee9cae {
  margin-top: 20px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
}

#s-d154773f-a98e-4ccd-9860-1aecf22111ff {
  margin-top: auto;
margin-bottom: auto;
padding-top: 10%;
padding-bottom: 10%;
text-align: center;
}







  #s-d154773f-a98e-4ccd-9860-1aecf22111ff img.shogun-image {
    

    
    
    
  }


#s-d154773f-a98e-4ccd-9860-1aecf22111ff .shogun-image-content {
  
    align-items: center;
  
}

#s-52c35ae9-78ef-4a83-a1c2-c597f720e63f {
  margin-top: auto;
margin-bottom: 10px;
padding-top: 10%;
padding-bottom: 10%;
}

@media (min-width: 0px) {
[id="s-1cb07f92-8889-4b01-8032-0c3aa21f44cf"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-1cb07f92-8889-4b01-8032-0c3aa21f44cf"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1cb07f92-8889-4b01-8032-0c3aa21f44cf"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1cb07f92-8889-4b01-8032-0c3aa21f44cf"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-13a99798-77d1-41e4-8c4a-a44d9bd2c600 {
  margin-top: 20px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
}

#s-f82a6657-5513-42f1-8450-b11f0280a501 {
  margin-top: auto;
margin-bottom: auto;
padding-top: 10%;
padding-bottom: 10%;
text-align: center;
}







  #s-f82a6657-5513-42f1-8450-b11f0280a501 img.shogun-image {
    

    
    
    
  }


#s-f82a6657-5513-42f1-8450-b11f0280a501 .shogun-image-content {
  
    align-items: center;
  
}

#s-05d96a85-c6d9-4433-8d6e-f8b1f6c2c2f5 {
  margin-top: auto;
margin-bottom: 10px;
padding-top: 10%;
padding-bottom: 10%;
}

#s-46581bbc-6e79-4b23-82af-6dbccd2c794b {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
max-width: 800px;
}

#s-e542c38e-01e7-40a5-b24b-ac714fd80800 {
  margin-top: 0px;
margin-bottom: 0px;
text-align: center;
}







  #s-e542c38e-01e7-40a5-b24b-ac714fd80800 img.shogun-image {
    

    
    
    
  }


#s-e542c38e-01e7-40a5-b24b-ac714fd80800 .shogun-image-content {
  
    align-items: center;
  
}

#s-4a292c42-7aeb-4f6b-bdac-bca215310564 {
  margin-top: 20px;
margin-bottom: 20px;
text-align: center;
}







  #s-4a292c42-7aeb-4f6b-bdac-bca215310564 img.shogun-image {
    

    
    
    
  }


#s-4a292c42-7aeb-4f6b-bdac-bca215310564 .shogun-image-content {
  
    align-items: center;
  
}

#s-41f1f134-0a48-4d1f-8fcc-cff9d7a2e4af {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
max-width: 800px;
}

#s-7d734175-335d-4034-8669-31c86a563c4e {
  margin-top: 0px;
margin-bottom: 0px;
text-align: center;
}







  #s-7d734175-335d-4034-8669-31c86a563c4e img.shogun-image {
    

    
    
    
  }


#s-7d734175-335d-4034-8669-31c86a563c4e .shogun-image-content {
  
    align-items: center;
  
}

#s-093377f0-febf-45ab-a32b-21233a298063 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
max-width: 800px;
}

#s-8b80201d-7f2a-4a46-912a-988e8eb46507 {
  margin-top: 20px;
margin-bottom: 20px;
text-align: center;
}







  #s-8b80201d-7f2a-4a46-912a-988e8eb46507 img.shogun-image {
    

    
    
    
  }


#s-8b80201d-7f2a-4a46-912a-988e8eb46507 .shogun-image-content {
  
    align-items: center;
  
}

#s-a3984cd9-46d8-4685-a6ac-3779e9eaaf95 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
max-width: 800px;
}

#s-7e001333-cd56-410f-ad88-ed1346bb6406 {
  margin-top: 20px;
margin-bottom: 20px;
text-align: center;
}







  #s-7e001333-cd56-410f-ad88-ed1346bb6406 img.shogun-image {
    

    
    
    
  }


#s-7e001333-cd56-410f-ad88-ed1346bb6406 .shogun-image-content {
  
    align-items: center;
  
}

#s-c74e7a1a-2c66-475e-b758-e0f56a88da11 {
  text-align: center;
}







  #s-c74e7a1a-2c66-475e-b758-e0f56a88da11 img.shogun-image {
    

    
    
    
  }


#s-c74e7a1a-2c66-475e-b758-e0f56a88da11 .shogun-image-content {
  
    align-items: center;
  
}

#s-1e8b8a9c-cb25-47d6-a4cf-ac339715e686 {
  margin-top: 40px;
margin-left: 20%;
margin-bottom: 40px;
margin-right: 20%;
text-align: center;
}







  #s-1e8b8a9c-cb25-47d6-a4cf-ac339715e686 img.shogun-image {
    

    
    
    
  }


#s-1e8b8a9c-cb25-47d6-a4cf-ac339715e686 .shogun-image-content {
  
    align-items: center;
  
}

#s-08b6ec1d-8f5e-4d2c-89e8-2e7ba087a356 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
max-width: 800px;
}

#s-1f7eb2c8-4c2b-4cd2-95c0-744e63dceaf5 {
  margin-top: 40px;
margin-left: 20%;
margin-bottom: 40px;
margin-right: 20%;
text-align: center;
}







  #s-1f7eb2c8-4c2b-4cd2-95c0-744e63dceaf5 img.shogun-image {
    

    
    
    
  }


#s-1f7eb2c8-4c2b-4cd2-95c0-744e63dceaf5 .shogun-image-content {
  
    align-items: center;
  
}

#s-367be40d-26cc-4871-8c13-f4802dd7c5b5 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 600px;
}








#s-367be40d-26cc-4871-8c13-f4802dd7c5b5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-367be40d-26cc-4871-8c13-f4802dd7c5b5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c756551f-fbfe-4978-8f67-ac37441e2e77 {
  min-height: 50px;
}








#s-c756551f-fbfe-4978-8f67-ac37441e2e77 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c756551f-fbfe-4978-8f67-ac37441e2e77.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-da8d6001-a02b-474d-95f9-ac309cb6f931 {
  margin-top: 40px;
margin-bottom: 0px;
text-align: center;
}







  #s-da8d6001-a02b-474d-95f9-ac309cb6f931 img.shogun-image {
    

    
    
    
  }


#s-da8d6001-a02b-474d-95f9-ac309cb6f931 .shogun-image-content {
  
    align-items: center;
  
}

#s-e13817d6-320b-4ae5-9f48-8548b5f6ce2a {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
max-width: 800px;
}

#s-7f859c46-299b-4a17-a5c0-abf5f566ae9e {
  margin-top: 40px;
margin-bottom: 40px;
text-align: center;
}







  #s-7f859c46-299b-4a17-a5c0-abf5f566ae9e img.shogun-image {
    

    
    
    
  }


#s-7f859c46-299b-4a17-a5c0-abf5f566ae9e .shogun-image-content {
  
    align-items: center;
  
}

#s-53dfd2b6-9367-436e-9ba6-56469ae11938 {
  min-height: 50px;
}








#s-53dfd2b6-9367-436e-9ba6-56469ae11938 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-53dfd2b6-9367-436e-9ba6-56469ae11938.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

#s-3199d42c-bea5-4c9b-8cef-2ccca9d9b89c {
  margin-top: 40px;
margin-bottom: 40px;
text-align: center;
}

#s-3199d42c-bea5-4c9b-8cef-2ccca9d9b89c .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "SourceHanSans";
  font-style:  normal ;
  
  
  letter-spacing: 3px;
  text-align: center;
}



#s-36a3fd7b-bbc3-42a9-9e7a-306d3d0488d8 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
}

#s-cfd2eef4-cc0e-48eb-8337-fe15cba07a5d {
  margin-left: auto;
margin-right: auto;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
max-width: 600px;
}








#s-cfd2eef4-cc0e-48eb-8337-fe15cba07a5d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cfd2eef4-cc0e-48eb-8337-fe15cba07a5d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8bd97479-2fa2-4b08-b68a-9b06902c52cd {
  margin-top: 20px;
margin-bottom: 20px;
max-width: 800px;
aspect-ratio: 800/169;
text-align: center;
}





  #s-8bd97479-2fa2-4b08-b68a-9b06902c52cd img.shogun-image,
  #s-8bd97479-2fa2-4b08-b68a-9b06902c52cd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8bd97479-2fa2-4b08-b68a-9b06902c52cd {
    width: 100%;
    height: auto;
  }



  #s-8bd97479-2fa2-4b08-b68a-9b06902c52cd img.shogun-image {
    

    
    
    
  }


#s-8bd97479-2fa2-4b08-b68a-9b06902c52cd .shogun-image-content {
  
    align-items: center;
  
}

#s-b276dddf-24c4-4706-b79a-cfec3cabbab1 {
  margin-top: 40px;
text-align: center;
}







  #s-b276dddf-24c4-4706-b79a-cfec3cabbab1 img.shogun-image {
    

    
    
    
  }


#s-b276dddf-24c4-4706-b79a-cfec3cabbab1 .shogun-image-content {
  
    align-items: center;
  
}

#s-fd6c056d-f7f6-41eb-9d19-8d8555f1dc6a {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 600px;
}








#s-fd6c056d-f7f6-41eb-9d19-8d8555f1dc6a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fd6c056d-f7f6-41eb-9d19-8d8555f1dc6a.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;
}

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

.shogun-image.hover {
  opacity: 0;
  z-index: 200;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.shogun-image.hover ~ * {
  z-index: 1;
}

.shogun-image.hover:hover {
  opacity: 1;
}

#s-2f7e22a4-0e4b-4bd5-ae70-945944be9538 {
  max-width: 800px;
aspect-ratio: 800/367;
text-align: center;
}





  #s-2f7e22a4-0e4b-4bd5-ae70-945944be9538 img.shogun-image,
  #s-2f7e22a4-0e4b-4bd5-ae70-945944be9538 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2f7e22a4-0e4b-4bd5-ae70-945944be9538 {
    width: 100%;
    height: auto;
  }

  #s-2f7e22a4-0e4b-4bd5-ae70-945944be9538 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2f7e22a4-0e4b-4bd5-ae70-945944be9538.shogun-image {
    
    
  }


.s-2f7e22a4-0e4b-4bd5-ae70-945944be9538 .shogun-image-content {
  
    align-items: center;
  
}

.s-2f7e22a4-0e4b-4bd5-ae70-945944be9538.shg-align-container {
  text-align: center
}

.s-2f7e22a4-0e4b-4bd5-ae70-945944be9538.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2f7e22a4-0e4b-4bd5-ae70-945944be9538.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-2f7e22a4-0e4b-4bd5-ae70-945944be9538 img.shogun-image,
  #s-2f7e22a4-0e4b-4bd5-ae70-945944be9538 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2f7e22a4-0e4b-4bd5-ae70-945944be9538 {
    width: 100%;
    height: auto;
  }

  #s-2f7e22a4-0e4b-4bd5-ae70-945944be9538 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2f7e22a4-0e4b-4bd5-ae70-945944be9538.shogun-image {
    
    
  }


.s-2f7e22a4-0e4b-4bd5-ae70-945944be9538 .shogun-image-content {
  
    align-items: center;
  
}

.s-2f7e22a4-0e4b-4bd5-ae70-945944be9538.shg-align-container {
  text-align: center
}

.s-2f7e22a4-0e4b-4bd5-ae70-945944be9538.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2f7e22a4-0e4b-4bd5-ae70-945944be9538.shogun-image {
  box-sizing: border-box;
}


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



  #s-2f7e22a4-0e4b-4bd5-ae70-945944be9538 img.shogun-image,
  #s-2f7e22a4-0e4b-4bd5-ae70-945944be9538 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2f7e22a4-0e4b-4bd5-ae70-945944be9538 {
    width: 100%;
    height: auto;
  }

  #s-2f7e22a4-0e4b-4bd5-ae70-945944be9538 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2f7e22a4-0e4b-4bd5-ae70-945944be9538.shogun-image {
    
    
  }


.s-2f7e22a4-0e4b-4bd5-ae70-945944be9538 .shogun-image-content {
  
    align-items: center;
  
}

.s-2f7e22a4-0e4b-4bd5-ae70-945944be9538.shg-align-container {
  text-align: center
}

.s-2f7e22a4-0e4b-4bd5-ae70-945944be9538.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2f7e22a4-0e4b-4bd5-ae70-945944be9538.shogun-image {
  box-sizing: border-box;
}


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



  #s-2f7e22a4-0e4b-4bd5-ae70-945944be9538 img.shogun-image,
  #s-2f7e22a4-0e4b-4bd5-ae70-945944be9538 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2f7e22a4-0e4b-4bd5-ae70-945944be9538 {
    width: 100%;
    height: auto;
  }

  #s-2f7e22a4-0e4b-4bd5-ae70-945944be9538 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2f7e22a4-0e4b-4bd5-ae70-945944be9538.shogun-image {
    
    
  }


.s-2f7e22a4-0e4b-4bd5-ae70-945944be9538 .shogun-image-content {
  
    align-items: center;
  
}

.s-2f7e22a4-0e4b-4bd5-ae70-945944be9538.shg-align-container {
  text-align: center
}

.s-2f7e22a4-0e4b-4bd5-ae70-945944be9538.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2f7e22a4-0e4b-4bd5-ae70-945944be9538.shogun-image {
  box-sizing: border-box;
}


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



  #s-2f7e22a4-0e4b-4bd5-ae70-945944be9538 img.shogun-image,
  #s-2f7e22a4-0e4b-4bd5-ae70-945944be9538 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2f7e22a4-0e4b-4bd5-ae70-945944be9538 {
    width: 100%;
    height: auto;
  }

  #s-2f7e22a4-0e4b-4bd5-ae70-945944be9538 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2f7e22a4-0e4b-4bd5-ae70-945944be9538.shogun-image {
    
    
  }


.s-2f7e22a4-0e4b-4bd5-ae70-945944be9538 .shogun-image-content {
  
    align-items: center;
  
}

.s-2f7e22a4-0e4b-4bd5-ae70-945944be9538.shg-align-container {
  text-align: center
}

.s-2f7e22a4-0e4b-4bd5-ae70-945944be9538.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2f7e22a4-0e4b-4bd5-ae70-945944be9538.shogun-image {
  box-sizing: border-box;
}


}
#s-81250fbd-4993-4164-8a7c-306c7a9ab3a4 {
  margin-top: 20px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
}

#s-0f6a2b69-3551-4339-8023-aba6aefd41f8 {
  max-width: 800px;
aspect-ratio: 800/367;
text-align: center;
}





  #s-0f6a2b69-3551-4339-8023-aba6aefd41f8 img.shogun-image,
  #s-0f6a2b69-3551-4339-8023-aba6aefd41f8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0f6a2b69-3551-4339-8023-aba6aefd41f8 {
    width: 100%;
    height: auto;
  }

  #s-0f6a2b69-3551-4339-8023-aba6aefd41f8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0f6a2b69-3551-4339-8023-aba6aefd41f8.shogun-image {
    
    
  }


.s-0f6a2b69-3551-4339-8023-aba6aefd41f8 .shogun-image-content {
  
    align-items: center;
  
}

.s-0f6a2b69-3551-4339-8023-aba6aefd41f8.shg-align-container {
  text-align: center
}

.s-0f6a2b69-3551-4339-8023-aba6aefd41f8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0f6a2b69-3551-4339-8023-aba6aefd41f8.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-0f6a2b69-3551-4339-8023-aba6aefd41f8 img.shogun-image,
  #s-0f6a2b69-3551-4339-8023-aba6aefd41f8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0f6a2b69-3551-4339-8023-aba6aefd41f8 {
    width: 100%;
    height: auto;
  }

  #s-0f6a2b69-3551-4339-8023-aba6aefd41f8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0f6a2b69-3551-4339-8023-aba6aefd41f8.shogun-image {
    
    
  }


.s-0f6a2b69-3551-4339-8023-aba6aefd41f8 .shogun-image-content {
  
    align-items: center;
  
}

.s-0f6a2b69-3551-4339-8023-aba6aefd41f8.shg-align-container {
  text-align: center
}

.s-0f6a2b69-3551-4339-8023-aba6aefd41f8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0f6a2b69-3551-4339-8023-aba6aefd41f8.shogun-image {
  box-sizing: border-box;
}


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



  #s-0f6a2b69-3551-4339-8023-aba6aefd41f8 img.shogun-image,
  #s-0f6a2b69-3551-4339-8023-aba6aefd41f8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0f6a2b69-3551-4339-8023-aba6aefd41f8 {
    width: 100%;
    height: auto;
  }

  #s-0f6a2b69-3551-4339-8023-aba6aefd41f8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0f6a2b69-3551-4339-8023-aba6aefd41f8.shogun-image {
    
    
  }


.s-0f6a2b69-3551-4339-8023-aba6aefd41f8 .shogun-image-content {
  
    align-items: center;
  
}

.s-0f6a2b69-3551-4339-8023-aba6aefd41f8.shg-align-container {
  text-align: center
}

.s-0f6a2b69-3551-4339-8023-aba6aefd41f8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0f6a2b69-3551-4339-8023-aba6aefd41f8.shogun-image {
  box-sizing: border-box;
}


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



  #s-0f6a2b69-3551-4339-8023-aba6aefd41f8 img.shogun-image,
  #s-0f6a2b69-3551-4339-8023-aba6aefd41f8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0f6a2b69-3551-4339-8023-aba6aefd41f8 {
    width: 100%;
    height: auto;
  }

  #s-0f6a2b69-3551-4339-8023-aba6aefd41f8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0f6a2b69-3551-4339-8023-aba6aefd41f8.shogun-image {
    
    
  }


.s-0f6a2b69-3551-4339-8023-aba6aefd41f8 .shogun-image-content {
  
    align-items: center;
  
}

.s-0f6a2b69-3551-4339-8023-aba6aefd41f8.shg-align-container {
  text-align: center
}

.s-0f6a2b69-3551-4339-8023-aba6aefd41f8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0f6a2b69-3551-4339-8023-aba6aefd41f8.shogun-image {
  box-sizing: border-box;
}


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



  #s-0f6a2b69-3551-4339-8023-aba6aefd41f8 img.shogun-image,
  #s-0f6a2b69-3551-4339-8023-aba6aefd41f8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0f6a2b69-3551-4339-8023-aba6aefd41f8 {
    width: 100%;
    height: auto;
  }

  #s-0f6a2b69-3551-4339-8023-aba6aefd41f8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0f6a2b69-3551-4339-8023-aba6aefd41f8.shogun-image {
    
    
  }


.s-0f6a2b69-3551-4339-8023-aba6aefd41f8 .shogun-image-content {
  
    align-items: center;
  
}

.s-0f6a2b69-3551-4339-8023-aba6aefd41f8.shg-align-container {
  text-align: center
}

.s-0f6a2b69-3551-4339-8023-aba6aefd41f8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0f6a2b69-3551-4339-8023-aba6aefd41f8.shogun-image {
  box-sizing: border-box;
}


}
#s-5d01c99d-3e77-48df-becf-4d957baecc3a {
  margin-top: 20px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
}

#s-4b33ffa3-0c82-40de-9d39-fd3a6da86721 {
  max-width: 800px;
aspect-ratio: 800/367;
text-align: center;
}





  #s-4b33ffa3-0c82-40de-9d39-fd3a6da86721 img.shogun-image,
  #s-4b33ffa3-0c82-40de-9d39-fd3a6da86721 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4b33ffa3-0c82-40de-9d39-fd3a6da86721 {
    width: 100%;
    height: auto;
  }

  #s-4b33ffa3-0c82-40de-9d39-fd3a6da86721 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4b33ffa3-0c82-40de-9d39-fd3a6da86721.shogun-image {
    
    
  }


.s-4b33ffa3-0c82-40de-9d39-fd3a6da86721 .shogun-image-content {
  
    align-items: center;
  
}

.s-4b33ffa3-0c82-40de-9d39-fd3a6da86721.shg-align-container {
  text-align: center
}

.s-4b33ffa3-0c82-40de-9d39-fd3a6da86721.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4b33ffa3-0c82-40de-9d39-fd3a6da86721.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-4b33ffa3-0c82-40de-9d39-fd3a6da86721 img.shogun-image,
  #s-4b33ffa3-0c82-40de-9d39-fd3a6da86721 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4b33ffa3-0c82-40de-9d39-fd3a6da86721 {
    width: 100%;
    height: auto;
  }

  #s-4b33ffa3-0c82-40de-9d39-fd3a6da86721 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4b33ffa3-0c82-40de-9d39-fd3a6da86721.shogun-image {
    
    
  }


.s-4b33ffa3-0c82-40de-9d39-fd3a6da86721 .shogun-image-content {
  
    align-items: center;
  
}

.s-4b33ffa3-0c82-40de-9d39-fd3a6da86721.shg-align-container {
  text-align: center
}

.s-4b33ffa3-0c82-40de-9d39-fd3a6da86721.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4b33ffa3-0c82-40de-9d39-fd3a6da86721.shogun-image {
  box-sizing: border-box;
}


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



  #s-4b33ffa3-0c82-40de-9d39-fd3a6da86721 img.shogun-image,
  #s-4b33ffa3-0c82-40de-9d39-fd3a6da86721 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4b33ffa3-0c82-40de-9d39-fd3a6da86721 {
    width: 100%;
    height: auto;
  }

  #s-4b33ffa3-0c82-40de-9d39-fd3a6da86721 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4b33ffa3-0c82-40de-9d39-fd3a6da86721.shogun-image {
    
    
  }


.s-4b33ffa3-0c82-40de-9d39-fd3a6da86721 .shogun-image-content {
  
    align-items: center;
  
}

.s-4b33ffa3-0c82-40de-9d39-fd3a6da86721.shg-align-container {
  text-align: center
}

.s-4b33ffa3-0c82-40de-9d39-fd3a6da86721.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4b33ffa3-0c82-40de-9d39-fd3a6da86721.shogun-image {
  box-sizing: border-box;
}


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



  #s-4b33ffa3-0c82-40de-9d39-fd3a6da86721 img.shogun-image,
  #s-4b33ffa3-0c82-40de-9d39-fd3a6da86721 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4b33ffa3-0c82-40de-9d39-fd3a6da86721 {
    width: 100%;
    height: auto;
  }

  #s-4b33ffa3-0c82-40de-9d39-fd3a6da86721 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4b33ffa3-0c82-40de-9d39-fd3a6da86721.shogun-image {
    
    
  }


.s-4b33ffa3-0c82-40de-9d39-fd3a6da86721 .shogun-image-content {
  
    align-items: center;
  
}

.s-4b33ffa3-0c82-40de-9d39-fd3a6da86721.shg-align-container {
  text-align: center
}

.s-4b33ffa3-0c82-40de-9d39-fd3a6da86721.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4b33ffa3-0c82-40de-9d39-fd3a6da86721.shogun-image {
  box-sizing: border-box;
}


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



  #s-4b33ffa3-0c82-40de-9d39-fd3a6da86721 img.shogun-image,
  #s-4b33ffa3-0c82-40de-9d39-fd3a6da86721 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4b33ffa3-0c82-40de-9d39-fd3a6da86721 {
    width: 100%;
    height: auto;
  }

  #s-4b33ffa3-0c82-40de-9d39-fd3a6da86721 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4b33ffa3-0c82-40de-9d39-fd3a6da86721.shogun-image {
    
    
  }


.s-4b33ffa3-0c82-40de-9d39-fd3a6da86721 .shogun-image-content {
  
    align-items: center;
  
}

.s-4b33ffa3-0c82-40de-9d39-fd3a6da86721.shg-align-container {
  text-align: center
}

.s-4b33ffa3-0c82-40de-9d39-fd3a6da86721.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4b33ffa3-0c82-40de-9d39-fd3a6da86721.shogun-image {
  box-sizing: border-box;
}


}
#s-f5490077-eb46-4771-9113-4b1128ec97b9 {
  margin-top: 20px;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-bottom: 10px;
}

#s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac {
  max-width: 800px;
aspect-ratio: 800/367;
text-align: center;
}





  #s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac img.shogun-image,
  #s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac {
    width: 100%;
    height: auto;
  }

  #s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac.shogun-image {
    
    
  }


.s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac .shogun-image-content {
  
    align-items: center;
  
}

.s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac.shg-align-container {
  text-align: center
}

.s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac img.shogun-image,
  #s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac {
    width: 100%;
    height: auto;
  }

  #s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac.shogun-image {
    
    
  }


.s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac .shogun-image-content {
  
    align-items: center;
  
}

.s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac.shg-align-container {
  text-align: center
}

.s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac.shogun-image {
  box-sizing: border-box;
}


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



  #s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac img.shogun-image,
  #s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac {
    width: 100%;
    height: auto;
  }

  #s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac.shogun-image {
    
    
  }


.s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac .shogun-image-content {
  
    align-items: center;
  
}

.s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac.shg-align-container {
  text-align: center
}

.s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac.shogun-image {
  box-sizing: border-box;
}


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



  #s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac img.shogun-image,
  #s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac {
    width: 100%;
    height: auto;
  }

  #s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac.shogun-image {
    
    
  }


.s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac .shogun-image-content {
  
    align-items: center;
  
}

.s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac.shg-align-container {
  text-align: center
}

.s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac.shogun-image {
  box-sizing: border-box;
}


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



  #s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac img.shogun-image,
  #s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac {
    width: 100%;
    height: auto;
  }

  #s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac.shogun-image {
    
    
  }


.s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac .shogun-image-content {
  
    align-items: center;
  
}

.s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac.shg-align-container {
  text-align: center
}

.s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-67e4dd20-8b0f-4464-a7f4-ead83ff03bac.shogun-image {
  box-sizing: border-box;
}


}
#s-0f8033a5-a022-4445-8ac9-c2577302c469 {
  margin-top: 20px;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-bottom: 10px;
}

#s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f {
  max-width: 800px;
aspect-ratio: 800/367;
text-align: center;
}





  #s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f img.shogun-image,
  #s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f {
    width: 100%;
    height: auto;
  }

  #s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f.shogun-image {
    
    
  }


.s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f .shogun-image-content {
  
    align-items: center;
  
}

.s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f.shg-align-container {
  text-align: center
}

.s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f img.shogun-image,
  #s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f {
    width: 100%;
    height: auto;
  }

  #s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f.shogun-image {
    
    
  }


.s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f .shogun-image-content {
  
    align-items: center;
  
}

.s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f.shg-align-container {
  text-align: center
}

.s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f.shogun-image {
  box-sizing: border-box;
}


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



  #s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f img.shogun-image,
  #s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f {
    width: 100%;
    height: auto;
  }

  #s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f.shogun-image {
    
    
  }


.s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f .shogun-image-content {
  
    align-items: center;
  
}

.s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f.shg-align-container {
  text-align: center
}

.s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f.shogun-image {
  box-sizing: border-box;
}


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



  #s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f img.shogun-image,
  #s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f {
    width: 100%;
    height: auto;
  }

  #s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f.shogun-image {
    
    
  }


.s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f .shogun-image-content {
  
    align-items: center;
  
}

.s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f.shg-align-container {
  text-align: center
}

.s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f.shogun-image {
  box-sizing: border-box;
}


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



  #s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f img.shogun-image,
  #s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f {
    width: 100%;
    height: auto;
  }

  #s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f.shogun-image {
    
    
  }


.s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f .shogun-image-content {
  
    align-items: center;
  
}

.s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f.shg-align-container {
  text-align: center
}

.s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fb31584c-f7c7-477c-9d18-5a52b6e25e1f.shogun-image {
  box-sizing: border-box;
}


}
#s-a71efe29-37ab-4903-814c-9fb3590fdb16 {
  margin-top: 20px;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-bottom: 10px;
}

#s-f284e290-d459-4e0f-ac5c-5faf3616242a {
  max-width: 800px;
aspect-ratio: 800/367;
text-align: center;
}





  #s-f284e290-d459-4e0f-ac5c-5faf3616242a img.shogun-image,
  #s-f284e290-d459-4e0f-ac5c-5faf3616242a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f284e290-d459-4e0f-ac5c-5faf3616242a {
    width: 100%;
    height: auto;
  }

  #s-f284e290-d459-4e0f-ac5c-5faf3616242a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f284e290-d459-4e0f-ac5c-5faf3616242a.shogun-image {
    
    
  }


.s-f284e290-d459-4e0f-ac5c-5faf3616242a .shogun-image-content {
  
    align-items: center;
  
}

.s-f284e290-d459-4e0f-ac5c-5faf3616242a.shg-align-container {
  text-align: center
}

.s-f284e290-d459-4e0f-ac5c-5faf3616242a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f284e290-d459-4e0f-ac5c-5faf3616242a.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-f284e290-d459-4e0f-ac5c-5faf3616242a img.shogun-image,
  #s-f284e290-d459-4e0f-ac5c-5faf3616242a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f284e290-d459-4e0f-ac5c-5faf3616242a {
    width: 100%;
    height: auto;
  }

  #s-f284e290-d459-4e0f-ac5c-5faf3616242a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f284e290-d459-4e0f-ac5c-5faf3616242a.shogun-image {
    
    
  }


.s-f284e290-d459-4e0f-ac5c-5faf3616242a .shogun-image-content {
  
    align-items: center;
  
}

.s-f284e290-d459-4e0f-ac5c-5faf3616242a.shg-align-container {
  text-align: center
}

.s-f284e290-d459-4e0f-ac5c-5faf3616242a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f284e290-d459-4e0f-ac5c-5faf3616242a.shogun-image {
  box-sizing: border-box;
}


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



  #s-f284e290-d459-4e0f-ac5c-5faf3616242a img.shogun-image,
  #s-f284e290-d459-4e0f-ac5c-5faf3616242a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f284e290-d459-4e0f-ac5c-5faf3616242a {
    width: 100%;
    height: auto;
  }

  #s-f284e290-d459-4e0f-ac5c-5faf3616242a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f284e290-d459-4e0f-ac5c-5faf3616242a.shogun-image {
    
    
  }


.s-f284e290-d459-4e0f-ac5c-5faf3616242a .shogun-image-content {
  
    align-items: center;
  
}

.s-f284e290-d459-4e0f-ac5c-5faf3616242a.shg-align-container {
  text-align: center
}

.s-f284e290-d459-4e0f-ac5c-5faf3616242a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f284e290-d459-4e0f-ac5c-5faf3616242a.shogun-image {
  box-sizing: border-box;
}


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



  #s-f284e290-d459-4e0f-ac5c-5faf3616242a img.shogun-image,
  #s-f284e290-d459-4e0f-ac5c-5faf3616242a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f284e290-d459-4e0f-ac5c-5faf3616242a {
    width: 100%;
    height: auto;
  }

  #s-f284e290-d459-4e0f-ac5c-5faf3616242a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f284e290-d459-4e0f-ac5c-5faf3616242a.shogun-image {
    
    
  }


.s-f284e290-d459-4e0f-ac5c-5faf3616242a .shogun-image-content {
  
    align-items: center;
  
}

.s-f284e290-d459-4e0f-ac5c-5faf3616242a.shg-align-container {
  text-align: center
}

.s-f284e290-d459-4e0f-ac5c-5faf3616242a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f284e290-d459-4e0f-ac5c-5faf3616242a.shogun-image {
  box-sizing: border-box;
}


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



  #s-f284e290-d459-4e0f-ac5c-5faf3616242a img.shogun-image,
  #s-f284e290-d459-4e0f-ac5c-5faf3616242a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f284e290-d459-4e0f-ac5c-5faf3616242a {
    width: 100%;
    height: auto;
  }

  #s-f284e290-d459-4e0f-ac5c-5faf3616242a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f284e290-d459-4e0f-ac5c-5faf3616242a.shogun-image {
    
    
  }


.s-f284e290-d459-4e0f-ac5c-5faf3616242a .shogun-image-content {
  
    align-items: center;
  
}

.s-f284e290-d459-4e0f-ac5c-5faf3616242a.shg-align-container {
  text-align: center
}

.s-f284e290-d459-4e0f-ac5c-5faf3616242a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f284e290-d459-4e0f-ac5c-5faf3616242a.shogun-image {
  box-sizing: border-box;
}


}
#s-98f116f5-475c-4bfd-8c77-e5e9caf8a059 {
  margin-top: 20px;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-bottom: 10px;
}

#s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1 {
  max-width: 800px;
aspect-ratio: 800/367;
text-align: center;
}





  #s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1 img.shogun-image,
  #s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1 {
    width: 100%;
    height: auto;
  }

  #s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1.shogun-image {
    
    
  }


.s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1 .shogun-image-content {
  
    align-items: center;
  
}

.s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1.shg-align-container {
  text-align: center
}

.s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1 img.shogun-image,
  #s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1 {
    width: 100%;
    height: auto;
  }

  #s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1.shogun-image {
    
    
  }


.s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1 .shogun-image-content {
  
    align-items: center;
  
}

.s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1.shg-align-container {
  text-align: center
}

.s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1.shogun-image {
  box-sizing: border-box;
}


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



  #s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1 img.shogun-image,
  #s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1 {
    width: 100%;
    height: auto;
  }

  #s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1.shogun-image {
    
    
  }


.s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1 .shogun-image-content {
  
    align-items: center;
  
}

.s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1.shg-align-container {
  text-align: center
}

.s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1.shogun-image {
  box-sizing: border-box;
}


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



  #s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1 img.shogun-image,
  #s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1 {
    width: 100%;
    height: auto;
  }

  #s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1.shogun-image {
    
    
  }


.s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1 .shogun-image-content {
  
    align-items: center;
  
}

.s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1.shg-align-container {
  text-align: center
}

.s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1.shogun-image {
  box-sizing: border-box;
}


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



  #s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1 img.shogun-image,
  #s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1 {
    width: 100%;
    height: auto;
  }

  #s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1.shogun-image {
    
    
  }


.s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1 .shogun-image-content {
  
    align-items: center;
  
}

.s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1.shg-align-container {
  text-align: center
}

.s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ccc2aba2-4be4-42f3-bf14-16c19bde43e1.shogun-image {
  box-sizing: border-box;
}


}
#s-b778690e-38ba-4ef6-bffd-89ef46cd6746 {
  margin-top: 20px;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-bottom: 10px;
}

#s-aefa9160-be20-406a-af24-399dd55ef135 {
  max-width: 800px;
aspect-ratio: 800/367;
text-align: center;
}





  #s-aefa9160-be20-406a-af24-399dd55ef135 img.shogun-image,
  #s-aefa9160-be20-406a-af24-399dd55ef135 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-aefa9160-be20-406a-af24-399dd55ef135 {
    width: 100%;
    height: auto;
  }

  #s-aefa9160-be20-406a-af24-399dd55ef135 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-aefa9160-be20-406a-af24-399dd55ef135.shogun-image {
    
    
  }


.s-aefa9160-be20-406a-af24-399dd55ef135 .shogun-image-content {
  
    align-items: center;
  
}

.s-aefa9160-be20-406a-af24-399dd55ef135.shg-align-container {
  text-align: center
}

.s-aefa9160-be20-406a-af24-399dd55ef135.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aefa9160-be20-406a-af24-399dd55ef135.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-aefa9160-be20-406a-af24-399dd55ef135 img.shogun-image,
  #s-aefa9160-be20-406a-af24-399dd55ef135 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-aefa9160-be20-406a-af24-399dd55ef135 {
    width: 100%;
    height: auto;
  }

  #s-aefa9160-be20-406a-af24-399dd55ef135 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-aefa9160-be20-406a-af24-399dd55ef135.shogun-image {
    
    
  }


.s-aefa9160-be20-406a-af24-399dd55ef135 .shogun-image-content {
  
    align-items: center;
  
}

.s-aefa9160-be20-406a-af24-399dd55ef135.shg-align-container {
  text-align: center
}

.s-aefa9160-be20-406a-af24-399dd55ef135.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aefa9160-be20-406a-af24-399dd55ef135.shogun-image {
  box-sizing: border-box;
}


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



  #s-aefa9160-be20-406a-af24-399dd55ef135 img.shogun-image,
  #s-aefa9160-be20-406a-af24-399dd55ef135 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-aefa9160-be20-406a-af24-399dd55ef135 {
    width: 100%;
    height: auto;
  }

  #s-aefa9160-be20-406a-af24-399dd55ef135 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-aefa9160-be20-406a-af24-399dd55ef135.shogun-image {
    
    
  }


.s-aefa9160-be20-406a-af24-399dd55ef135 .shogun-image-content {
  
    align-items: center;
  
}

.s-aefa9160-be20-406a-af24-399dd55ef135.shg-align-container {
  text-align: center
}

.s-aefa9160-be20-406a-af24-399dd55ef135.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aefa9160-be20-406a-af24-399dd55ef135.shogun-image {
  box-sizing: border-box;
}


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



  #s-aefa9160-be20-406a-af24-399dd55ef135 img.shogun-image,
  #s-aefa9160-be20-406a-af24-399dd55ef135 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-aefa9160-be20-406a-af24-399dd55ef135 {
    width: 100%;
    height: auto;
  }

  #s-aefa9160-be20-406a-af24-399dd55ef135 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-aefa9160-be20-406a-af24-399dd55ef135.shogun-image {
    
    
  }


.s-aefa9160-be20-406a-af24-399dd55ef135 .shogun-image-content {
  
    align-items: center;
  
}

.s-aefa9160-be20-406a-af24-399dd55ef135.shg-align-container {
  text-align: center
}

.s-aefa9160-be20-406a-af24-399dd55ef135.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aefa9160-be20-406a-af24-399dd55ef135.shogun-image {
  box-sizing: border-box;
}


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



  #s-aefa9160-be20-406a-af24-399dd55ef135 img.shogun-image,
  #s-aefa9160-be20-406a-af24-399dd55ef135 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-aefa9160-be20-406a-af24-399dd55ef135 {
    width: 100%;
    height: auto;
  }

  #s-aefa9160-be20-406a-af24-399dd55ef135 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-aefa9160-be20-406a-af24-399dd55ef135.shogun-image {
    
    
  }


.s-aefa9160-be20-406a-af24-399dd55ef135 .shogun-image-content {
  
    align-items: center;
  
}

.s-aefa9160-be20-406a-af24-399dd55ef135.shg-align-container {
  text-align: center
}

.s-aefa9160-be20-406a-af24-399dd55ef135.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aefa9160-be20-406a-af24-399dd55ef135.shogun-image {
  box-sizing: border-box;
}


}
#s-e3ca30b0-40e6-48cd-99b4-2bc04ab59ded {
  margin-top: 20px;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-bottom: 10px;
}

#s-af569d1a-b405-494f-8e49-5d0221641b59 {
  max-width: 2251px;
aspect-ratio: 2251/1032;
text-align: center;
}





  #s-af569d1a-b405-494f-8e49-5d0221641b59 img.shogun-image,
  #s-af569d1a-b405-494f-8e49-5d0221641b59 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-af569d1a-b405-494f-8e49-5d0221641b59 {
    width: 100%;
    height: auto;
  }

  #s-af569d1a-b405-494f-8e49-5d0221641b59 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-af569d1a-b405-494f-8e49-5d0221641b59.shogun-image {
    
    
  }


.s-af569d1a-b405-494f-8e49-5d0221641b59 .shogun-image-content {
  
    align-items: center;
  
}

.s-af569d1a-b405-494f-8e49-5d0221641b59.shg-align-container {
  text-align: center
}

.s-af569d1a-b405-494f-8e49-5d0221641b59.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af569d1a-b405-494f-8e49-5d0221641b59.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-af569d1a-b405-494f-8e49-5d0221641b59 img.shogun-image,
  #s-af569d1a-b405-494f-8e49-5d0221641b59 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-af569d1a-b405-494f-8e49-5d0221641b59 {
    width: 100%;
    height: auto;
  }

  #s-af569d1a-b405-494f-8e49-5d0221641b59 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-af569d1a-b405-494f-8e49-5d0221641b59.shogun-image {
    
    
  }


.s-af569d1a-b405-494f-8e49-5d0221641b59 .shogun-image-content {
  
    align-items: center;
  
}

.s-af569d1a-b405-494f-8e49-5d0221641b59.shg-align-container {
  text-align: center
}

.s-af569d1a-b405-494f-8e49-5d0221641b59.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af569d1a-b405-494f-8e49-5d0221641b59.shogun-image {
  box-sizing: border-box;
}


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



  #s-af569d1a-b405-494f-8e49-5d0221641b59 img.shogun-image,
  #s-af569d1a-b405-494f-8e49-5d0221641b59 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-af569d1a-b405-494f-8e49-5d0221641b59 {
    width: 100%;
    height: auto;
  }

  #s-af569d1a-b405-494f-8e49-5d0221641b59 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-af569d1a-b405-494f-8e49-5d0221641b59.shogun-image {
    
    
  }


.s-af569d1a-b405-494f-8e49-5d0221641b59 .shogun-image-content {
  
    align-items: center;
  
}

.s-af569d1a-b405-494f-8e49-5d0221641b59.shg-align-container {
  text-align: center
}

.s-af569d1a-b405-494f-8e49-5d0221641b59.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af569d1a-b405-494f-8e49-5d0221641b59.shogun-image {
  box-sizing: border-box;
}


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



  #s-af569d1a-b405-494f-8e49-5d0221641b59 img.shogun-image,
  #s-af569d1a-b405-494f-8e49-5d0221641b59 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-af569d1a-b405-494f-8e49-5d0221641b59 {
    width: 100%;
    height: auto;
  }

  #s-af569d1a-b405-494f-8e49-5d0221641b59 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-af569d1a-b405-494f-8e49-5d0221641b59.shogun-image {
    
    
  }


.s-af569d1a-b405-494f-8e49-5d0221641b59 .shogun-image-content {
  
    align-items: center;
  
}

.s-af569d1a-b405-494f-8e49-5d0221641b59.shg-align-container {
  text-align: center
}

.s-af569d1a-b405-494f-8e49-5d0221641b59.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af569d1a-b405-494f-8e49-5d0221641b59.shogun-image {
  box-sizing: border-box;
}


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



  #s-af569d1a-b405-494f-8e49-5d0221641b59 img.shogun-image,
  #s-af569d1a-b405-494f-8e49-5d0221641b59 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-af569d1a-b405-494f-8e49-5d0221641b59 {
    width: 100%;
    height: auto;
  }

  #s-af569d1a-b405-494f-8e49-5d0221641b59 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-af569d1a-b405-494f-8e49-5d0221641b59.shogun-image {
    
    
  }


.s-af569d1a-b405-494f-8e49-5d0221641b59 .shogun-image-content {
  
    align-items: center;
  
}

.s-af569d1a-b405-494f-8e49-5d0221641b59.shg-align-container {
  text-align: center
}

.s-af569d1a-b405-494f-8e49-5d0221641b59.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af569d1a-b405-494f-8e49-5d0221641b59.shogun-image {
  box-sizing: border-box;
}


}
#s-e1a7a5aa-e5c7-4efb-9788-9ca56451fc5f {
  margin-top: 20px;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-bottom: 10px;
}

#s-16e13f19-c740-4525-87b3-e712c57cacc7 {
  max-width: 2251px;
aspect-ratio: 2251/1032;
text-align: center;
}





  #s-16e13f19-c740-4525-87b3-e712c57cacc7 img.shogun-image,
  #s-16e13f19-c740-4525-87b3-e712c57cacc7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-16e13f19-c740-4525-87b3-e712c57cacc7 {
    width: 100%;
    height: auto;
  }

  #s-16e13f19-c740-4525-87b3-e712c57cacc7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-16e13f19-c740-4525-87b3-e712c57cacc7.shogun-image {
    
    
  }


.s-16e13f19-c740-4525-87b3-e712c57cacc7 .shogun-image-content {
  
    align-items: center;
  
}

.s-16e13f19-c740-4525-87b3-e712c57cacc7.shg-align-container {
  text-align: center
}

.s-16e13f19-c740-4525-87b3-e712c57cacc7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-16e13f19-c740-4525-87b3-e712c57cacc7.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-16e13f19-c740-4525-87b3-e712c57cacc7 img.shogun-image,
  #s-16e13f19-c740-4525-87b3-e712c57cacc7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-16e13f19-c740-4525-87b3-e712c57cacc7 {
    width: 100%;
    height: auto;
  }

  #s-16e13f19-c740-4525-87b3-e712c57cacc7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-16e13f19-c740-4525-87b3-e712c57cacc7.shogun-image {
    
    
  }


.s-16e13f19-c740-4525-87b3-e712c57cacc7 .shogun-image-content {
  
    align-items: center;
  
}

.s-16e13f19-c740-4525-87b3-e712c57cacc7.shg-align-container {
  text-align: center
}

.s-16e13f19-c740-4525-87b3-e712c57cacc7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-16e13f19-c740-4525-87b3-e712c57cacc7.shogun-image {
  box-sizing: border-box;
}


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



  #s-16e13f19-c740-4525-87b3-e712c57cacc7 img.shogun-image,
  #s-16e13f19-c740-4525-87b3-e712c57cacc7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-16e13f19-c740-4525-87b3-e712c57cacc7 {
    width: 100%;
    height: auto;
  }

  #s-16e13f19-c740-4525-87b3-e712c57cacc7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-16e13f19-c740-4525-87b3-e712c57cacc7.shogun-image {
    
    
  }


.s-16e13f19-c740-4525-87b3-e712c57cacc7 .shogun-image-content {
  
    align-items: center;
  
}

.s-16e13f19-c740-4525-87b3-e712c57cacc7.shg-align-container {
  text-align: center
}

.s-16e13f19-c740-4525-87b3-e712c57cacc7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-16e13f19-c740-4525-87b3-e712c57cacc7.shogun-image {
  box-sizing: border-box;
}


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



  #s-16e13f19-c740-4525-87b3-e712c57cacc7 img.shogun-image,
  #s-16e13f19-c740-4525-87b3-e712c57cacc7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-16e13f19-c740-4525-87b3-e712c57cacc7 {
    width: 100%;
    height: auto;
  }

  #s-16e13f19-c740-4525-87b3-e712c57cacc7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-16e13f19-c740-4525-87b3-e712c57cacc7.shogun-image {
    
    
  }


.s-16e13f19-c740-4525-87b3-e712c57cacc7 .shogun-image-content {
  
    align-items: center;
  
}

.s-16e13f19-c740-4525-87b3-e712c57cacc7.shg-align-container {
  text-align: center
}

.s-16e13f19-c740-4525-87b3-e712c57cacc7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-16e13f19-c740-4525-87b3-e712c57cacc7.shogun-image {
  box-sizing: border-box;
}


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



  #s-16e13f19-c740-4525-87b3-e712c57cacc7 img.shogun-image,
  #s-16e13f19-c740-4525-87b3-e712c57cacc7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-16e13f19-c740-4525-87b3-e712c57cacc7 {
    width: 100%;
    height: auto;
  }

  #s-16e13f19-c740-4525-87b3-e712c57cacc7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-16e13f19-c740-4525-87b3-e712c57cacc7.shogun-image {
    
    
  }


.s-16e13f19-c740-4525-87b3-e712c57cacc7 .shogun-image-content {
  
    align-items: center;
  
}

.s-16e13f19-c740-4525-87b3-e712c57cacc7.shg-align-container {
  text-align: center
}

.s-16e13f19-c740-4525-87b3-e712c57cacc7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-16e13f19-c740-4525-87b3-e712c57cacc7.shogun-image {
  box-sizing: border-box;
}


}
#s-0cf7c901-e3ea-4448-851c-df751a0d6198 {
  margin-top: 20px;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-bottom: 10px;
}

#s-8f634ee7-c894-4c74-a89b-d211be555ee7 {
  margin-top: 60px;
margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-b3f79701-1167-4ab9-a0c2-d618ef3abf21 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
max-width: 800px;
}

#s-7ff288e5-a3d0-46db-8dcb-b804381e4fc6 {
  margin-top: 20px;
margin-bottom: 20px;
text-align: center;
}







  #s-7ff288e5-a3d0-46db-8dcb-b804381e4fc6 img.shogun-image {
    

    
    
    
  }


#s-7ff288e5-a3d0-46db-8dcb-b804381e4fc6 .shogun-image-content {
  
    align-items: center;
  
}

#s-adebc492-e257-4546-8a41-8c25556cfbca {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
max-width: 800px;
}

#s-43797d5a-1394-4013-9c91-57639b610841 {
  margin-top: 20px;
margin-bottom: 20px;
text-align: center;
}







  #s-43797d5a-1394-4013-9c91-57639b610841 img.shogun-image {
    

    
    
    
  }


#s-43797d5a-1394-4013-9c91-57639b610841 .shogun-image-content {
  
    align-items: center;
  
}

#s-c9aaa467-8c98-45f9-8f50-d8e63abb32c2 {
  margin-top: 20px;
margin-bottom: 20px;
text-align: center;
}







  #s-c9aaa467-8c98-45f9-8f50-d8e63abb32c2 img.shogun-image {
    

    
    
    
  }


#s-c9aaa467-8c98-45f9-8f50-d8e63abb32c2 .shogun-image-content {
  
    align-items: center;
  
}

#s-686fbe89-f99d-4123-8645-94b294eab683 {
  margin-top: 80px;
margin-bottom: 20px;
text-align: center;
}







  #s-686fbe89-f99d-4123-8645-94b294eab683 img.shogun-image {
    

    
    
    
  }


#s-686fbe89-f99d-4123-8645-94b294eab683 .shogun-image-content {
  
    align-items: center;
  
}

#s-f15035ae-7045-495d-995f-93b72954948a {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
max-width: 800px;
}

#s-dddb9b3f-1856-438a-a9d6-83173f17ac3c {
  margin-top: 20px;
margin-bottom: 20px;
text-align: center;
}







  #s-dddb9b3f-1856-438a-a9d6-83173f17ac3c img.shogun-image {
    

    
    
    
  }


#s-dddb9b3f-1856-438a-a9d6-83173f17ac3c .shogun-image-content {
  
    align-items: center;
  
}

#s-7cc8413e-6e94-491b-a107-156e0a777673 {
  margin-top: 20px;
margin-bottom: 20px;
text-align: center;
}







  #s-7cc8413e-6e94-491b-a107-156e0a777673 img.shogun-image {
    

    
    
    
  }


#s-7cc8413e-6e94-491b-a107-156e0a777673 .shogun-image-content {
  
    align-items: center;
  
}

#s-dbde3bdb-e355-4996-91b8-34e146d36ddc {
  margin-top: 20px;
margin-bottom: 20px;
text-align: center;
}







  #s-dbde3bdb-e355-4996-91b8-34e146d36ddc img.shogun-image {
    

    
    
    
  }


#s-dbde3bdb-e355-4996-91b8-34e146d36ddc .shogun-image-content {
  
    align-items: center;
  
}

#s-4f39f7e0-a138-4bd9-a32d-ff72bbdc4d28 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
max-width: 800px;
}

#s-6473e36e-7e65-44e4-954c-209399e63636 {
  margin-top: 40px;
margin-bottom: 40px;
text-align: center;
}







  #s-6473e36e-7e65-44e4-954c-209399e63636 img.shogun-image {
    

    
    
    
  }


#s-6473e36e-7e65-44e4-954c-209399e63636 .shogun-image-content {
  
    align-items: center;
  
}

#s-ba3f9154-cea6-461b-8fd3-5dd1b863eb91 {
  margin-top: -10px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
max-width: 800px;
}

#s-6ec0bf1d-ee61-4a8c-9b57-3bb0a352982d {
  margin-top: 40px;
margin-left: auto;
margin-bottom: 40px;
margin-right: auto;
padding-left: 20px;
padding-right: 20px;
min-height: 50px;
max-width: 600px;
}








#s-6ec0bf1d-ee61-4a8c-9b57-3bb0a352982d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6ec0bf1d-ee61-4a8c-9b57-3bb0a352982d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-da8aebda-d406-468a-8947-e3a03716671f {
  margin-top: 40px;
margin-bottom: 20px;
text-align: center;
}







  #s-da8aebda-d406-468a-8947-e3a03716671f img.shogun-image {
    

    
    
    
  }


#s-da8aebda-d406-468a-8947-e3a03716671f .shogun-image-content {
  
    align-items: center;
  
}

#s-7b3a22e3-d524-4a5c-925a-b2a9349d9a5c {
  margin-top: 20px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-3485fd0d-df55-493b-9365-f661e62e0028"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-3485fd0d-df55-493b-9365-f661e62e0028"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3485fd0d-df55-493b-9365-f661e62e0028"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3485fd0d-df55-493b-9365-f661e62e0028"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-a389cdce-2b2f-43eb-b7cc-d52b915b52c1 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
}

#s-7ac9fcec-c84c-4ed2-ab8b-3d48abf733be {
  text-align: center;
}







  #s-7ac9fcec-c84c-4ed2-ab8b-3d48abf733be img.shogun-image {
    

    
    
    
  }


#s-7ac9fcec-c84c-4ed2-ab8b-3d48abf733be .shogun-image-content {
  
    align-items: center;
  
}

#s-32aa9c5c-9c2c-44c0-ac60-5dfecc245515 {
  margin-top: 20px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-d9c0b905-f6ad-4072-94c1-a2b9015c6056"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-d9c0b905-f6ad-4072-94c1-a2b9015c6056"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d9c0b905-f6ad-4072-94c1-a2b9015c6056"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d9c0b905-f6ad-4072-94c1-a2b9015c6056"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-a6d58379-49c1-48a5-87fe-a5b74a1cca86 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
}

#s-a19f3331-b8be-4f0d-abf1-427884d929bd {
  text-align: center;
}







  #s-a19f3331-b8be-4f0d-abf1-427884d929bd img.shogun-image {
    

    
    
    
  }


#s-a19f3331-b8be-4f0d-abf1-427884d929bd .shogun-image-content {
  
    align-items: center;
  
}

#s-b3176f8c-6e35-43c6-ac82-004438b62ddc {
  margin-top: 20px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-24b1c828-44d7-45d5-b9c7-42e198d28103"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-24b1c828-44d7-45d5-b9c7-42e198d28103"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-24b1c828-44d7-45d5-b9c7-42e198d28103"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-24b1c828-44d7-45d5-b9c7-42e198d28103"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-eece4c43-a75b-4fad-a438-da59bf403200 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
}

#s-3254fcf6-8230-44b2-9d8c-6c5b1f21f14e {
  text-align: center;
}







  #s-3254fcf6-8230-44b2-9d8c-6c5b1f21f14e img.shogun-image {
    

    
    
    
  }


#s-3254fcf6-8230-44b2-9d8c-6c5b1f21f14e .shogun-image-content {
  
    align-items: center;
  
}

#s-5b468b86-05e3-4ed9-abba-af81ecf7dc2d {
  margin-top: 20px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-09b0f6f1-22dc-48fe-9424-36203c3f921e"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-09b0f6f1-22dc-48fe-9424-36203c3f921e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-09b0f6f1-22dc-48fe-9424-36203c3f921e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-09b0f6f1-22dc-48fe-9424-36203c3f921e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-57c33b67-7b53-4100-a131-4adf337959d8 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
}

#s-0b8a8df4-7b08-4894-949e-acf595cc7873 {
  text-align: center;
}







  #s-0b8a8df4-7b08-4894-949e-acf595cc7873 img.shogun-image {
    

    
    
    
  }


#s-0b8a8df4-7b08-4894-949e-acf595cc7873 .shogun-image-content {
  
    align-items: center;
  
}

#s-3e898e61-6126-4a58-9e9a-cf6738cb8459 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
max-width: 800px;
}

#s-a34cde8c-1d68-431a-8095-2609a52405d3 {
  margin-top: 40px;
margin-bottom: 40px;
text-align: center;
}







  #s-a34cde8c-1d68-431a-8095-2609a52405d3 img.shogun-image {
    

    
    
    
  }


#s-a34cde8c-1d68-431a-8095-2609a52405d3 .shogun-image-content {
  
    align-items: center;
  
}

#s-509ab4d4-1e87-4b5a-856c-10900091bc8d {
  min-height: 50px;
}








#s-509ab4d4-1e87-4b5a-856c-10900091bc8d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-509ab4d4-1e87-4b5a-856c-10900091bc8d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dee4fbd0-41b5-4e62-972e-371c0be9b85d {
  margin-top: 40px;
margin-bottom: 20px;
text-align: center;
}







  #s-dee4fbd0-41b5-4e62-972e-371c0be9b85d img.shogun-image {
    

    
    
    
  }


#s-dee4fbd0-41b5-4e62-972e-371c0be9b85d .shogun-image-content {
  
    align-items: center;
  
}

#s-65bba0d3-dc6a-4bf4-8677-cb78c6a5ea54 {
  margin-top: 20px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
}

#s-9c538b9e-90fa-4878-a079-21a0ce5c3580 {
  margin-bottom: 20px;
}

#s-d245460d-8fe1-420e-adc6-1a1b890da3a7 {
  margin-top: 20px;
margin-bottom: 20px;
}

#s-d6dcb3c8-a7ac-4b80-a02b-45e21b1f6857 {
  margin-top: 20px;
margin-left: 20%;
margin-bottom: 20px;
margin-right: 20%;
text-align: center;
}







  #s-d6dcb3c8-a7ac-4b80-a02b-45e21b1f6857 img.shogun-image {
    

    
    
    
  }


#s-d6dcb3c8-a7ac-4b80-a02b-45e21b1f6857 .shogun-image-content {
  
    align-items: center;
  
}

#s-7bbb21d4-6fea-4d6f-84e8-65074200ff66 {
  margin-top: 20px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
}

#s-d3af725f-7136-446b-84a8-1eceee58ce44 {
  margin-top: 20px;
margin-left: 20%;
margin-bottom: 20px;
margin-right: 20%;
text-align: center;
}







  #s-d3af725f-7136-446b-84a8-1eceee58ce44 img.shogun-image {
    

    
    
    
  }


#s-d3af725f-7136-446b-84a8-1eceee58ce44 .shogun-image-content {
  
    align-items: center;
  
}

#s-30169e6e-4f41-4b01-9773-3c8a93b33f6f {
  margin-top: 20px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
}

#s-74892854-7b01-4f59-b4a4-723a5e7fc1f2 {
  margin-top: 20px;
margin-bottom: 20px;
text-align: center;
}







  #s-74892854-7b01-4f59-b4a4-723a5e7fc1f2 img.shogun-image {
    

    
    
    
  }


#s-74892854-7b01-4f59-b4a4-723a5e7fc1f2 .shogun-image-content {
  
    align-items: center;
  
}

#s-b28ce20a-78a8-4e4d-a4fb-affda6b0075e {
  margin-top: 40px;
margin-bottom: 20px;
text-align: center;
}







  #s-b28ce20a-78a8-4e4d-a4fb-affda6b0075e img.shogun-image {
    

    
    
    
  }


#s-b28ce20a-78a8-4e4d-a4fb-affda6b0075e .shogun-image-content {
  
    align-items: center;
  
}

#s-53a4ffee-8d2a-42d7-ba61-37002d050680 {
  margin-top: 20px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
}

#s-92ea49d9-8fb9-4bfc-af28-cb8ee7a6670d {
  margin-top: 20px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
}

#s-a09df39c-e7ec-4bb9-bf81-449609f1f74e {
  margin-top: 20px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
}

#s-4359126e-269a-4420-931f-1e66ae967452 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 800px;
}








#s-4359126e-269a-4420-931f-1e66ae967452 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4359126e-269a-4420-931f-1e66ae967452.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7cd81475-28fb-4f9b-b73a-8b8818911f5b {
  margin-top: 40px;
margin-bottom: 40px;
text-align: center;
}

#s-7cd81475-28fb-4f9b-b73a-8b8818911f5b .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "SourceHanSans";
  font-style:  normal ;
  
  
  letter-spacing: 3px;
  text-align: center;
}



#s-46dccb1d-4aa3-430d-94ea-59f1f7a56e47 {
  margin-left: 20px;
margin-right: 20px;
}

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

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

#s-7a483e5a-6807-41f9-91df-e46de0ed1638 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7a483e5a-6807-41f9-91df-e46de0ed1638 .shg-product-title-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: SourceHanSans;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 6px;
}

.shg-product-image-wrapper img.shogun-image,
.shogun-component img.shogun-image {
  display: inline-block;
  vertical-align: middle;
}

.shg-product-img-placeholder img {
  padding: 3rem;
  background: rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

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

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

#s-cebcd450-cabe-40c3-a086-4638c3a8cc58 {
  text-align: left;
}



.shg-c#s-cebcd450-cabe-40c3-a086-4638c3a8cc58 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cebcd450-cabe-40c3-a086-4638c3a8cc58 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-cebcd450-cabe-40c3-a086-4638c3a8cc58 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cebcd450-cabe-40c3-a086-4638c3a8cc58 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-cebcd450-cabe-40c3-a086-4638c3a8cc58 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cebcd450-cabe-40c3-a086-4638c3a8cc58 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-cebcd450-cabe-40c3-a086-4638c3a8cc58 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cebcd450-cabe-40c3-a086-4638c3a8cc58 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-cebcd450-cabe-40c3-a086-4638c3a8cc58 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cebcd450-cabe-40c3-a086-4638c3a8cc58 img.shogun-image {
  width: 100%;
}



}
#s-c80f9ba7-6700-4ae5-8e93-bb4b2d03b2bc {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
text-align: center;
}

#s-c80f9ba7-6700-4ae5-8e93-bb4b2d03b2bc .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight:   ;
  font-family: SourceHanSans;
  font-style:  normal ;
}

#s-c80f9ba7-6700-4ae5-8e93-bb4b2d03b2bc .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: SourceHanSans;
  font-style:  normal ;
  font-size: 16px;
}

#s-c80f9ba7-6700-4ae5-8e93-bb4b2d03b2bc .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

.shg-btn-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.shg-variant-btn {
  cursor: pointer;
  box-sizing: border-box;
  display: inline-block;
  text-decoration: none;
  letter-spacing: normal;
}

.shg-variant-btn.hidden {
  display: none;
}

.shg-variant-btn.disabled {
  cursor: not-allowed;
}

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

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

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

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

#s-a6855cb1-b562-4e37-a2d3-2adc3795791e {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
max-width: 300px;
}

#s-a6855cb1-b562-4e37-a2d3-2adc3795791e .shg-product-selector-wrapper {
  display: flex;
  flex-direction: column;
}

#s-a6855cb1-b562-4e37-a2d3-2adc3795791e .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-a6855cb1-b562-4e37-a2d3-2adc3795791e .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-a6855cb1-b562-4e37-a2d3-2adc3795791e .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-top: 8px;
}

#s-a6855cb1-b562-4e37-a2d3-2adc3795791e .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-a6855cb1-b562-4e37-a2d3-2adc3795791e .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-a6855cb1-b562-4e37-a2d3-2adc3795791e .shg-product-swatch.not-available {
  cursor: not-allowed;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='none' viewBox='0 0 100 100'><path d='M100 0 L0 100 ' stroke='black' stroke-width='2'/></svg>");
  background-repeat:no-repeat;
  background-position:center center;
  background-size: 100% 100%, auto;
}

#s-a6855cb1-b562-4e37-a2d3-2adc3795791e .shg-product-swatch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid hsla(230, 13%, 23%, 0.1);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  transition: 0.2s;
}

#s-a6855cb1-b562-4e37-a2d3-2adc3795791e .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-a6855cb1-b562-4e37-a2d3-2adc3795791e .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-a6855cb1-b562-4e37-a2d3-2adc3795791e .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}


  #s-a6855cb1-b562-4e37-a2d3-2adc3795791e .shg-product-selector-wrapper label {
    color: rgba(0, 0, 0, 1);
    font-weight:   ;
    font-family: SourceHanSans;
    font-style:  normal ;
    font-size: 16px;
  }

  
    #s-a6855cb1-b562-4e37-a2d3-2adc3795791e .shg-product-selector-wrapper label:after {
      display: block;
      content: ' ';
      margin-bottom: 3px;
    }
  




  #s-a6855cb1-b562-4e37-a2d3-2adc3795791e-btn-wrapper {
    text-align: center;
  }


#s-a6855cb1-b562-4e37-a2d3-2adc3795791e .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-a6855cb1-b562-4e37-a2d3-2adc3795791e .shg-variant-btn:hover {
  background: #252525;
}

#s-a6855cb1-b562-4e37-a2d3-2adc3795791e .shg-variant-btn:active, #s-a6855cb1-b562-4e37-a2d3-2adc3795791e .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-a6855cb1-b562-4e37-a2d3-2adc3795791e .shg-variant-btn.disabled {
  background: #252525;
}

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

.shg-product-atc-wrapper {
  position: relative;
}

.shg-product-atc-btn {
  position: relative;
  z-index: 2;
  display: block;
  border: none;
  align-items: normal;
  box-sizing: border-box;
  cursor: pointer;
  transition: opacity 200ms linear;
  opacity: 1;
}

.shg-product-atc-btn-opaque {
  opacity: 0;
}

.shg-product-atc-info-box {
  position: absolute;
  z-index: 1;
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  text-align: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

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

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

#s-e8d93efb-f561-448a-ac39-75bb7568abf7 {
  border-style: solid;
margin-top: 15px;
margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 6px;
max-width: 300px;
background-color: rgba(121, 121, 121, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-e8d93efb-f561-448a-ac39-75bb7568abf7:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e8d93efb-f561-448a-ac39-75bb7568abf7:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-e8d93efb-f561-448a-ac39-75bb7568abf7 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-e8d93efb-f561-448a-ac39-75bb7568abf7.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-e8d93efb-f561-448a-ac39-75bb7568abf7.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  font-family: SourceHanSans;
  display:  block ;
}

#s-e8d93efb-f561-448a-ac39-75bb7568abf7.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-c34d238c-f2dc-43df-9117-70d1a08d9aac {
  margin-top: -20px;
margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
}

#s-332350ab-d029-46a7-bbd1-7f6bae24bc49 {
  margin-left: 20px;
margin-right: 20px;
}

@media (min-width: 0px) {
[id="s-332350ab-d029-46a7-bbd1-7f6bae24bc49"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-332350ab-d029-46a7-bbd1-7f6bae24bc49"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-332350ab-d029-46a7-bbd1-7f6bae24bc49"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-332350ab-d029-46a7-bbd1-7f6bae24bc49"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-e5c378dd-87d9-4d29-920f-7ac350fbaa78 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e5c378dd-87d9-4d29-920f-7ac350fbaa78 .shg-product-title-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: SourceHanSans;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 6px;
}

#s-e66be2fe-ae55-4604-b62b-a5f37174601b {
  text-align: left;
}



.shg-c#s-e66be2fe-ae55-4604-b62b-a5f37174601b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e66be2fe-ae55-4604-b62b-a5f37174601b img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-e66be2fe-ae55-4604-b62b-a5f37174601b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e66be2fe-ae55-4604-b62b-a5f37174601b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e66be2fe-ae55-4604-b62b-a5f37174601b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e66be2fe-ae55-4604-b62b-a5f37174601b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e66be2fe-ae55-4604-b62b-a5f37174601b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e66be2fe-ae55-4604-b62b-a5f37174601b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e66be2fe-ae55-4604-b62b-a5f37174601b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e66be2fe-ae55-4604-b62b-a5f37174601b img.shogun-image {
  width: 100%;
}



}
#s-35091548-e9b0-40b0-aa23-a57544d91197 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
text-align: center;
}

#s-35091548-e9b0-40b0-aa23-a57544d91197 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight:   ;
  font-family: SourceHanSans;
  font-style:  normal ;
}

#s-35091548-e9b0-40b0-aa23-a57544d91197 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: SourceHanSans;
  font-style:  normal ;
  font-size: 16px;
}

#s-35091548-e9b0-40b0-aa23-a57544d91197 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-aa9472fb-4338-46e5-89e8-1642a5f64242 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
max-width: 300px;
}

#s-aa9472fb-4338-46e5-89e8-1642a5f64242 .shg-product-selector-wrapper {
  display: flex;
  flex-direction: column;
}

#s-aa9472fb-4338-46e5-89e8-1642a5f64242 .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-aa9472fb-4338-46e5-89e8-1642a5f64242 .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-aa9472fb-4338-46e5-89e8-1642a5f64242 .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-top: 8px;
}

#s-aa9472fb-4338-46e5-89e8-1642a5f64242 .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-aa9472fb-4338-46e5-89e8-1642a5f64242 .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-aa9472fb-4338-46e5-89e8-1642a5f64242 .shg-product-swatch.not-available {
  cursor: not-allowed;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='none' viewBox='0 0 100 100'><path d='M100 0 L0 100 ' stroke='black' stroke-width='2'/></svg>");
  background-repeat:no-repeat;
  background-position:center center;
  background-size: 100% 100%, auto;
}

#s-aa9472fb-4338-46e5-89e8-1642a5f64242 .shg-product-swatch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid hsla(230, 13%, 23%, 0.1);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  transition: 0.2s;
}

#s-aa9472fb-4338-46e5-89e8-1642a5f64242 .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-aa9472fb-4338-46e5-89e8-1642a5f64242 .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-aa9472fb-4338-46e5-89e8-1642a5f64242 .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}


  #s-aa9472fb-4338-46e5-89e8-1642a5f64242 .shg-product-selector-wrapper label {
    color: rgba(0, 0, 0, 1);
    font-weight:   ;
    font-family: SourceHanSans;
    font-style:  normal ;
    font-size: 16px;
  }

  
    #s-aa9472fb-4338-46e5-89e8-1642a5f64242 .shg-product-selector-wrapper label:after {
      display: block;
      content: ' ';
      margin-bottom: 3px;
    }
  




  #s-aa9472fb-4338-46e5-89e8-1642a5f64242-btn-wrapper {
    text-align: center;
  }


#s-aa9472fb-4338-46e5-89e8-1642a5f64242 .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-aa9472fb-4338-46e5-89e8-1642a5f64242 .shg-variant-btn:hover {
  background: #252525;
}

#s-aa9472fb-4338-46e5-89e8-1642a5f64242 .shg-variant-btn:active, #s-aa9472fb-4338-46e5-89e8-1642a5f64242 .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-aa9472fb-4338-46e5-89e8-1642a5f64242 .shg-variant-btn.disabled {
  background: #252525;
}

#s-c2b1d31c-b2c3-4e08-816a-cc5927478305 {
  border-style: solid;
margin-top: 15px;
margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 6px;
max-width: 300px;
background-color: rgba(121, 121, 121, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-c2b1d31c-b2c3-4e08-816a-cc5927478305:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c2b1d31c-b2c3-4e08-816a-cc5927478305:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-c2b1d31c-b2c3-4e08-816a-cc5927478305 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-c2b1d31c-b2c3-4e08-816a-cc5927478305.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-c2b1d31c-b2c3-4e08-816a-cc5927478305.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  font-family: SourceHanSans;
  display:  block ;
}

#s-c2b1d31c-b2c3-4e08-816a-cc5927478305.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-c4f6ba21-def7-4534-87a5-53de6e5b28a3 {
  margin-top: -20px;
margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
}

#s-22b93488-ecb7-493c-a9f8-e9f3b3d39f7c {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-22b93488-ecb7-493c-a9f8-e9f3b3d39f7c .shg-product-title-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: SourceHanSans;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 6px;
}

#s-bc385f6e-e97a-492e-9b6b-be17e3adec05 {
  text-align: left;
}



.shg-c#s-bc385f6e-e97a-492e-9b6b-be17e3adec05 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bc385f6e-e97a-492e-9b6b-be17e3adec05 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-bc385f6e-e97a-492e-9b6b-be17e3adec05 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bc385f6e-e97a-492e-9b6b-be17e3adec05 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-bc385f6e-e97a-492e-9b6b-be17e3adec05 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bc385f6e-e97a-492e-9b6b-be17e3adec05 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-bc385f6e-e97a-492e-9b6b-be17e3adec05 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bc385f6e-e97a-492e-9b6b-be17e3adec05 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-bc385f6e-e97a-492e-9b6b-be17e3adec05 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bc385f6e-e97a-492e-9b6b-be17e3adec05 img.shogun-image {
  width: 100%;
}



}
#s-204232a5-0ab1-4217-ae8c-0d44044b4c0b {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
text-align: center;
}

#s-204232a5-0ab1-4217-ae8c-0d44044b4c0b .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight:   ;
  font-family: SourceHanSans;
  font-style:  normal ;
}

#s-204232a5-0ab1-4217-ae8c-0d44044b4c0b .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: SourceHanSans;
  font-style:  normal ;
  font-size: 16px;
}

#s-204232a5-0ab1-4217-ae8c-0d44044b4c0b .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-2e1cefbc-a722-4b56-9bf1-7d427c6c8a84 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
max-width: 300px;
}

#s-2e1cefbc-a722-4b56-9bf1-7d427c6c8a84 .shg-product-selector-wrapper {
  display: flex;
  flex-direction: column;
}

#s-2e1cefbc-a722-4b56-9bf1-7d427c6c8a84 .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-2e1cefbc-a722-4b56-9bf1-7d427c6c8a84 .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-2e1cefbc-a722-4b56-9bf1-7d427c6c8a84 .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-top: 8px;
}

#s-2e1cefbc-a722-4b56-9bf1-7d427c6c8a84 .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-2e1cefbc-a722-4b56-9bf1-7d427c6c8a84 .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-2e1cefbc-a722-4b56-9bf1-7d427c6c8a84 .shg-product-swatch.not-available {
  cursor: not-allowed;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='none' viewBox='0 0 100 100'><path d='M100 0 L0 100 ' stroke='black' stroke-width='2'/></svg>");
  background-repeat:no-repeat;
  background-position:center center;
  background-size: 100% 100%, auto;
}

#s-2e1cefbc-a722-4b56-9bf1-7d427c6c8a84 .shg-product-swatch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid hsla(230, 13%, 23%, 0.1);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  transition: 0.2s;
}

#s-2e1cefbc-a722-4b56-9bf1-7d427c6c8a84 .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-2e1cefbc-a722-4b56-9bf1-7d427c6c8a84 .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-2e1cefbc-a722-4b56-9bf1-7d427c6c8a84 .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}


  #s-2e1cefbc-a722-4b56-9bf1-7d427c6c8a84 .shg-product-selector-wrapper label {
    color: rgba(0, 0, 0, 1);
    font-weight:   ;
    font-family: SourceHanSans;
    font-style:  normal ;
    font-size: 16px;
  }

  
    #s-2e1cefbc-a722-4b56-9bf1-7d427c6c8a84 .shg-product-selector-wrapper label:after {
      display: block;
      content: ' ';
      margin-bottom: 3px;
    }
  




  #s-2e1cefbc-a722-4b56-9bf1-7d427c6c8a84-btn-wrapper {
    text-align: center;
  }


#s-2e1cefbc-a722-4b56-9bf1-7d427c6c8a84 .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-2e1cefbc-a722-4b56-9bf1-7d427c6c8a84 .shg-variant-btn:hover {
  background: #252525;
}

#s-2e1cefbc-a722-4b56-9bf1-7d427c6c8a84 .shg-variant-btn:active, #s-2e1cefbc-a722-4b56-9bf1-7d427c6c8a84 .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-2e1cefbc-a722-4b56-9bf1-7d427c6c8a84 .shg-variant-btn.disabled {
  background: #252525;
}

#s-90a7e7cb-e8f3-4784-a75b-6ace0ddb97ef {
  border-style: solid;
margin-top: 15px;
margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 6px;
max-width: 300px;
background-color: rgba(121, 121, 121, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-90a7e7cb-e8f3-4784-a75b-6ace0ddb97ef:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-90a7e7cb-e8f3-4784-a75b-6ace0ddb97ef:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-90a7e7cb-e8f3-4784-a75b-6ace0ddb97ef {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-90a7e7cb-e8f3-4784-a75b-6ace0ddb97ef.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-90a7e7cb-e8f3-4784-a75b-6ace0ddb97ef.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  font-family: SourceHanSans;
  display:  block ;
}

#s-90a7e7cb-e8f3-4784-a75b-6ace0ddb97ef.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-cb6e2f31-cb90-48cf-831e-ae020967b8a5 {
  margin-top: -20px;
margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
}

#s-aa99eaf4-85eb-4f8c-9ddb-fc60a623b56a {
  margin-left: auto;
margin-bottom: -40px;
margin-right: auto;
min-height: 50px;
max-width: 1600px;
background-color: rgba(22, 29, 37, 0.01);
}
@media (min-width: 1200px){#s-aa99eaf4-85eb-4f8c-9ddb-fc60a623b56a {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-aa99eaf4-85eb-4f8c-9ddb-fc60a623b56a {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-aa99eaf4-85eb-4f8c-9ddb-fc60a623b56a {
  
}
}







#s-aa99eaf4-85eb-4f8c-9ddb-fc60a623b56a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-aa99eaf4-85eb-4f8c-9ddb-fc60a623b56a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7009bb7c-1d9d-4d87-b16e-60cf90593498 {
  margin-top: 30px;
margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
padding-left: 20px;
padding-right: 20px;
background-color: rgba(22, 29, 37, 1);
}

/*
  $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:after,.shg-c:before{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width:1024px){.shg-box,.shg-c{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,.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:focus,.shg-lightbox .shg-lightbox-close:hover{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 .3s}.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}