.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-574dd63c-914a-4f3e-95f1-c10b56a64125 {
  min-height: 50px;
}








#s-574dd63c-914a-4f3e-95f1-c10b56a64125 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-574dd63c-914a-4f3e-95f1-c10b56a64125.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a07a792e-3984-4542-93bb-f0a5d598be9c {
  min-height: 50px;
}
@media (max-width: 767px){#s-a07a792e-3984-4542-93bb-f0a5d598be9c {
  display: none;
}
#s-a07a792e-3984-4542-93bb-f0a5d598be9c, #wrap-s-a07a792e-3984-4542-93bb-f0a5d598be9c { display: none !important; }}







#s-a07a792e-3984-4542-93bb-f0a5d598be9c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a07a792e-3984-4542-93bb-f0a5d598be9c.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-eacd51f2-8cf0-4865-a94f-3b9bacb34ef2 {
  margin-top: 0%;
max-width: 2878px;
aspect-ratio: 2878/662;
text-align: center;
}





  #s-eacd51f2-8cf0-4865-a94f-3b9bacb34ef2 img.shogun-image,
  #s-eacd51f2-8cf0-4865-a94f-3b9bacb34ef2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-eacd51f2-8cf0-4865-a94f-3b9bacb34ef2 {
    width: 100%;
    height: auto;
  }



  #s-eacd51f2-8cf0-4865-a94f-3b9bacb34ef2 img.shogun-image {
    

    
    
    
  }


#s-eacd51f2-8cf0-4865-a94f-3b9bacb34ef2 .shogun-image-content {
  
    align-items:  flex-start;
  
}

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

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

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

#s-9ce46b01-04af-47df-b635-5b53f5cd11cd {
  margin-top: 0.75%;
margin-left: 2%;
margin-right: 2%;
}

@media (min-width: 0px) {
[id="s-9ce46b01-04af-47df-b635-5b53f5cd11cd"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 7.0px);
}

}

@media (min-width: 768px) {
[id="s-9ce46b01-04af-47df-b635-5b53f5cd11cd"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 11.666666666666666px);
}

}

@media (min-width: 992px) {
[id="s-9ce46b01-04af-47df-b635-5b53f5cd11cd"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 11.666666666666666px);
}

}

@media (min-width: 1200px) {
[id="s-9ce46b01-04af-47df-b635-5b53f5cd11cd"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 11.666666666666666px);
}

}

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

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

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

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

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

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

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

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

#s-a9bf69a6-d9a4-41fa-9f9d-c8ece4d7f82d {
  border-style: solid;
margin-top: 7px;
margin-bottom: 7px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(27, 27, 27, 1);
border-radius: 1px;
min-height: 30px;
background-color: rgba(255, 255, 255, 0);
text-align: center;
text-decoration: none;
line-height: 1.5em;
letter-spacing: 0.5px;
background-image: none;
hover-type: color;
color: rgba(27, 27, 27, 1);
}
#s-a9bf69a6-d9a4-41fa-9f9d-c8ece4d7f82d:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-a9bf69a6-d9a4-41fa-9f9d-c8ece4d7f82d:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 1px !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}

  #s-a9bf69a6-d9a4-41fa-9f9d-c8ece4d7f82d-root {
    text-align: center;
  }


#s-a9bf69a6-d9a4-41fa-9f9d-c8ece4d7f82d.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
@media (min-width: 1200px){
  #s-a9bf69a6-d9a4-41fa-9f9d-c8ece4d7f82d-root {
    text-align: center;
  }


#s-a9bf69a6-d9a4-41fa-9f9d-c8ece4d7f82d.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a9bf69a6-d9a4-41fa-9f9d-c8ece4d7f82d-root {
    text-align: center;
  }


#s-a9bf69a6-d9a4-41fa-9f9d-c8ece4d7f82d.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a9bf69a6-d9a4-41fa-9f9d-c8ece4d7f82d-root {
    text-align: center;
  }


#s-a9bf69a6-d9a4-41fa-9f9d-c8ece4d7f82d.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 11px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (max-width: 767px){
  #s-a9bf69a6-d9a4-41fa-9f9d-c8ece4d7f82d-root {
    text-align: center;
  }


#s-a9bf69a6-d9a4-41fa-9f9d-c8ece4d7f82d.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}
#s-a7063adc-31d1-48ee-b325-9cc0e26bbb38 {
  border-style: solid;
margin-top: 7px;
margin-bottom: 7px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(27, 27, 27, 1);
border-radius: 1px;
min-height: 30px;
background-color: rgba(255, 255, 255, 0);
text-align: center;
text-decoration: none;
line-height: 1.5em;
letter-spacing: 1px;
background-image: none;
hover-type: color;
color: rgba(27, 27, 27, 1);
}
#s-a7063adc-31d1-48ee-b325-9cc0e26bbb38:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-a7063adc-31d1-48ee-b325-9cc0e26bbb38:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 1px !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}

  #s-a7063adc-31d1-48ee-b325-9cc0e26bbb38-root {
    text-align: center;
  }


#s-a7063adc-31d1-48ee-b325-9cc0e26bbb38.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
@media (min-width: 1200px){
  #s-a7063adc-31d1-48ee-b325-9cc0e26bbb38-root {
    text-align: center;
  }


#s-a7063adc-31d1-48ee-b325-9cc0e26bbb38.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a7063adc-31d1-48ee-b325-9cc0e26bbb38-root {
    text-align: center;
  }


#s-a7063adc-31d1-48ee-b325-9cc0e26bbb38.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a7063adc-31d1-48ee-b325-9cc0e26bbb38-root {
    text-align: center;
  }


#s-a7063adc-31d1-48ee-b325-9cc0e26bbb38.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 11px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (max-width: 767px){
  #s-a7063adc-31d1-48ee-b325-9cc0e26bbb38-root {
    text-align: center;
  }


#s-a7063adc-31d1-48ee-b325-9cc0e26bbb38.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}
#s-014ef376-1352-47e8-a10a-4f6512cef34c {
  border-style: solid;
margin-top: 7px;
margin-bottom: 7px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(27, 27, 27, 1);
border-radius: 1px;
min-height: 30px;
background-color: rgba(255, 255, 255, 0);
text-align: center;
text-decoration: none;
line-height: 1.5em;
letter-spacing: 1px;
background-image: none;
hover-type: color;
color: rgba(27, 27, 27, 1);
}
#s-014ef376-1352-47e8-a10a-4f6512cef34c:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-014ef376-1352-47e8-a10a-4f6512cef34c:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 1px !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}

  #s-014ef376-1352-47e8-a10a-4f6512cef34c-root {
    text-align: center;
  }


#s-014ef376-1352-47e8-a10a-4f6512cef34c.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
@media (min-width: 1200px){
  #s-014ef376-1352-47e8-a10a-4f6512cef34c-root {
    text-align: center;
  }


#s-014ef376-1352-47e8-a10a-4f6512cef34c.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-014ef376-1352-47e8-a10a-4f6512cef34c-root {
    text-align: center;
  }


#s-014ef376-1352-47e8-a10a-4f6512cef34c.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-014ef376-1352-47e8-a10a-4f6512cef34c-root {
    text-align: center;
  }


#s-014ef376-1352-47e8-a10a-4f6512cef34c.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 11px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (max-width: 767px){
  #s-014ef376-1352-47e8-a10a-4f6512cef34c-root {
    text-align: center;
  }


#s-014ef376-1352-47e8-a10a-4f6512cef34c.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}
#s-030c2596-9cf7-45d6-b183-ff74990d6a99 {
  border-style: solid;
margin-top: 7px;
margin-bottom: 7px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(27, 27, 27, 1);
border-radius: 1px;
min-height: 30px;
background-color: rgba(255, 255, 255, 0);
text-align: center;
text-decoration: none;
line-height: 1.5em;
letter-spacing: 1px;
background-image: none;
hover-type: color;
color: rgba(27, 27, 27, 1);
}
#s-030c2596-9cf7-45d6-b183-ff74990d6a99:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-030c2596-9cf7-45d6-b183-ff74990d6a99:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 1px !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}

  #s-030c2596-9cf7-45d6-b183-ff74990d6a99-root {
    text-align: center;
  }


#s-030c2596-9cf7-45d6-b183-ff74990d6a99.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
@media (min-width: 1200px){
  #s-030c2596-9cf7-45d6-b183-ff74990d6a99-root {
    text-align: center;
  }


#s-030c2596-9cf7-45d6-b183-ff74990d6a99.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-030c2596-9cf7-45d6-b183-ff74990d6a99-root {
    text-align: center;
  }


#s-030c2596-9cf7-45d6-b183-ff74990d6a99.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-030c2596-9cf7-45d6-b183-ff74990d6a99-root {
    text-align: center;
  }


#s-030c2596-9cf7-45d6-b183-ff74990d6a99.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 11px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (max-width: 767px){
  #s-030c2596-9cf7-45d6-b183-ff74990d6a99-root {
    text-align: center;
  }


#s-030c2596-9cf7-45d6-b183-ff74990d6a99.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}
#s-6b185187-d5ff-4050-9d95-c433edd06d5b {
  border-style: solid;
margin-top: 7px;
margin-bottom: 7px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(27, 27, 27, 1);
border-radius: 1px;
min-height: 30px;
background-color: rgba(255, 255, 255, 0);
text-align: center;
text-decoration: none;
line-height: 1.5em;
letter-spacing: 1px;
background-image: none;
hover-type: color;
color: rgba(27, 27, 27, 1);
}
#s-6b185187-d5ff-4050-9d95-c433edd06d5b:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-6b185187-d5ff-4050-9d95-c433edd06d5b:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 1px !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}

  #s-6b185187-d5ff-4050-9d95-c433edd06d5b-root {
    text-align: center;
  }


#s-6b185187-d5ff-4050-9d95-c433edd06d5b.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
@media (min-width: 1200px){
  #s-6b185187-d5ff-4050-9d95-c433edd06d5b-root {
    text-align: center;
  }


#s-6b185187-d5ff-4050-9d95-c433edd06d5b.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6b185187-d5ff-4050-9d95-c433edd06d5b-root {
    text-align: center;
  }


#s-6b185187-d5ff-4050-9d95-c433edd06d5b.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6b185187-d5ff-4050-9d95-c433edd06d5b-root {
    text-align: center;
  }


#s-6b185187-d5ff-4050-9d95-c433edd06d5b.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 11px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (max-width: 767px){
  #s-6b185187-d5ff-4050-9d95-c433edd06d5b-root {
    text-align: center;
  }


#s-6b185187-d5ff-4050-9d95-c433edd06d5b.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}
#s-be0caf1f-9f1f-4dd3-b633-a9a88670ec11 {
  border-style: solid;
margin-top: 7px;
margin-bottom: 7px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(27, 27, 27, 1);
border-radius: 1px;
min-height: 30px;
background-color: rgba(255, 255, 255, 0);
text-align: center;
text-decoration: none;
line-height: 1.5em;
letter-spacing: 1px;
background-image: none;
hover-type: color;
color: rgba(27, 27, 27, 1);
}
#s-be0caf1f-9f1f-4dd3-b633-a9a88670ec11:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-be0caf1f-9f1f-4dd3-b633-a9a88670ec11:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 1px !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}

  #s-be0caf1f-9f1f-4dd3-b633-a9a88670ec11-root {
    text-align: center;
  }


#s-be0caf1f-9f1f-4dd3-b633-a9a88670ec11.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
@media (min-width: 1200px){
  #s-be0caf1f-9f1f-4dd3-b633-a9a88670ec11-root {
    text-align: center;
  }


#s-be0caf1f-9f1f-4dd3-b633-a9a88670ec11.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-be0caf1f-9f1f-4dd3-b633-a9a88670ec11-root {
    text-align: center;
  }


#s-be0caf1f-9f1f-4dd3-b633-a9a88670ec11.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-be0caf1f-9f1f-4dd3-b633-a9a88670ec11-root {
    text-align: center;
  }


#s-be0caf1f-9f1f-4dd3-b633-a9a88670ec11.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 11px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (max-width: 767px){
  #s-be0caf1f-9f1f-4dd3-b633-a9a88670ec11-root {
    text-align: center;
  }


#s-be0caf1f-9f1f-4dd3-b633-a9a88670ec11.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}
#s-6b96e5ef-7434-4552-8c95-f63fb21c2381 {
  min-height: 40px;
}








#s-6b96e5ef-7434-4552-8c95-f63fb21c2381 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6b96e5ef-7434-4552-8c95-f63fb21c2381.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e1993c1a-a7f4-4d0e-897a-79d1d13a7b05 {
  min-height: 50px;
}
@media (max-width: 767px){#s-e1993c1a-a7f4-4d0e-897a-79d1d13a7b05 {
  display: none;
}
#s-e1993c1a-a7f4-4d0e-897a-79d1d13a7b05, #wrap-s-e1993c1a-a7f4-4d0e-897a-79d1d13a7b05 { display: none !important; }}







#s-e1993c1a-a7f4-4d0e-897a-79d1d13a7b05 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e1993c1a-a7f4-4d0e-897a-79d1d13a7b05.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-78855174-29d6-4482-91da-8fe94e12528e {
  max-width: 2880px;
aspect-ratio: 2880/1296;
text-align: center;
}





  #s-78855174-29d6-4482-91da-8fe94e12528e img.shogun-image,
  #s-78855174-29d6-4482-91da-8fe94e12528e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-78855174-29d6-4482-91da-8fe94e12528e {
    width: 100%;
    height: auto;
  }



  #s-78855174-29d6-4482-91da-8fe94e12528e img.shogun-image {
    

    
    
    
  }


#s-78855174-29d6-4482-91da-8fe94e12528e .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-ab0e7f20-4bc6-4295-bc39-4cff44b98b3f {
  min-height: 50px;
}








#s-ab0e7f20-4bc6-4295-bc39-4cff44b98b3f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ab0e7f20-4bc6-4295-bc39-4cff44b98b3f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-588deeda-359e-408b-9e13-02d623bc0853 {
  margin-top: 2.8%;
margin-left: 0.5%;
margin-bottom: 6%;
margin-right: 0%;
}

@media (min-width: 0px) {
[id="s-588deeda-359e-408b-9e13-02d623bc0853"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-588deeda-359e-408b-9e13-02d623bc0853"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-588deeda-359e-408b-9e13-02d623bc0853"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-588deeda-359e-408b-9e13-02d623bc0853"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-79b8d4a3-40a6-414e-bfe2-787972d34be5 {
  margin-left: 0%;
margin-right: 13%;
min-height: 50px;
}








#s-79b8d4a3-40a6-414e-bfe2-787972d34be5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-79b8d4a3-40a6-414e-bfe2-787972d34be5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4141a204-ec4d-46f1-a7c1-ae6c83f4e9af {
  margin-left: auto;
margin-bottom: 16px;
margin-right: auto;
max-width: 56%;
aspect-ratio: 500/216;
text-align: center;
}





  #s-4141a204-ec4d-46f1-a7c1-ae6c83f4e9af img.shogun-image,
  #s-4141a204-ec4d-46f1-a7c1-ae6c83f4e9af .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4141a204-ec4d-46f1-a7c1-ae6c83f4e9af {
    width: 100%;
    height: auto;
  }



  #s-4141a204-ec4d-46f1-a7c1-ae6c83f4e9af img.shogun-image {
    

    
    
    
  }


#s-4141a204-ec4d-46f1-a7c1-ae6c83f4e9af .shogun-image-content {
  
    align-items: center;
  
}

#s-1b4e2d6b-0d35-4e3e-99c7-59dbc4a8aa8d {
  border-style: solid;
padding-top: 9px;
padding-left: 20px;
padding-bottom: 11px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(27, 27, 27, 1);
border-radius: 1px;
background-color: rgba(255, 255, 255, 0);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(27, 27, 27, 1);
}
#s-1b4e2d6b-0d35-4e3e-99c7-59dbc4a8aa8d:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 1px !important;
background-color: rgba(255, 255, 255, 0.6) !important;
text-decoration: none !important;
color: rgba(27, 27, 27, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-1b4e2d6b-0d35-4e3e-99c7-59dbc4a8aa8d:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 1px !important;
background-color: rgba(255, 255, 255, 0.6) !important;
text-decoration: none !important;
color: rgba(27, 27, 27, 1) !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 768px) and (max-width: 991px){#s-1b4e2d6b-0d35-4e3e-99c7-59dbc4a8aa8d {
  padding-left: 15px;
padding-right: 15px;
}
}

  #s-1b4e2d6b-0d35-4e3e-99c7-59dbc4a8aa8d-root {
    text-align: center;
  }


#s-1b4e2d6b-0d35-4e3e-99c7-59dbc4a8aa8d.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-1b4e2d6b-0d35-4e3e-99c7-59dbc4a8aa8d-root {
    text-align: center;
  }


#s-1b4e2d6b-0d35-4e3e-99c7-59dbc4a8aa8d.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-1b4e2d6b-0d35-4e3e-99c7-59dbc4a8aa8d-root {
    text-align: center;
  }


#s-1b4e2d6b-0d35-4e3e-99c7-59dbc4a8aa8d.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-1b4e2d6b-0d35-4e3e-99c7-59dbc4a8aa8d-root {
    text-align: center;
  }


#s-1b4e2d6b-0d35-4e3e-99c7-59dbc4a8aa8d.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 11px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-1b4e2d6b-0d35-4e3e-99c7-59dbc4a8aa8d-root {
    text-align: center;
  }


#s-1b4e2d6b-0d35-4e3e-99c7-59dbc4a8aa8d.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-2d64258d-3251-4567-b5f4-1bba4148fd5c {
  min-height: 40px;
}
@media (max-width: 767px){#s-2d64258d-3251-4567-b5f4-1bba4148fd5c {
  display: none;
}
#s-2d64258d-3251-4567-b5f4-1bba4148fd5c, #wrap-s-2d64258d-3251-4567-b5f4-1bba4148fd5c { display: none !important; }}







#s-2d64258d-3251-4567-b5f4-1bba4148fd5c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2d64258d-3251-4567-b5f4-1bba4148fd5c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-79fe17b9-096c-4a48-b818-2f4f4a365896 {
  margin-left: 2%;
margin-right: 2%;
}
@media (max-width: 767px){#s-79fe17b9-096c-4a48-b818-2f4f4a365896 {
  display: none;
}
#s-79fe17b9-096c-4a48-b818-2f4f4a365896, #wrap-s-79fe17b9-096c-4a48-b818-2f4f4a365896 { display: none !important; }}
@media (min-width: 0px) {
[id="s-79fe17b9-096c-4a48-b818-2f4f4a365896"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-79fe17b9-096c-4a48-b818-2f4f4a365896"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-79fe17b9-096c-4a48-b818-2f4f4a365896"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-79fe17b9-096c-4a48-b818-2f4f4a365896"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-7852522d-59e0-4b4e-98f3-a55127934c98 {
  max-width: 1350px;
aspect-ratio: 1350/1500;
text-align: center;
}





  #s-7852522d-59e0-4b4e-98f3-a55127934c98 img.shogun-image,
  #s-7852522d-59e0-4b4e-98f3-a55127934c98 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7852522d-59e0-4b4e-98f3-a55127934c98 {
    width: 100%;
    height: auto;
  }



  #s-7852522d-59e0-4b4e-98f3-a55127934c98 img.shogun-image {
    

    
    
    
  }


#s-7852522d-59e0-4b4e-98f3-a55127934c98 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-f415b192-b05e-43f1-81be-f7db844fc067 {
  margin-top: 6%;
margin-left: 0%;
margin-bottom: 5%;
margin-right: 0%;
padding-left: 11%;
padding-right: 5%;
}
@media (max-width: 767px){#s-f415b192-b05e-43f1-81be-f7db844fc067 {
  display: none;
}
#s-f415b192-b05e-43f1-81be-f7db844fc067, #wrap-s-f415b192-b05e-43f1-81be-f7db844fc067 { display: none !important; }}
@media (min-width: 0px) {
[id="s-f415b192-b05e-43f1-81be-f7db844fc067"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-f415b192-b05e-43f1-81be-f7db844fc067"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-f415b192-b05e-43f1-81be-f7db844fc067"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-f415b192-b05e-43f1-81be-f7db844fc067"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-f415b192-b05e-43f1-81be-f7db844fc067"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-f415b192-b05e-43f1-81be-f7db844fc067"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-f415b192-b05e-43f1-81be-f7db844fc067"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

}

#s-a57c119b-a924-48e4-a609-dda65162a4fb {
  min-height: 50px;
}








#s-a57c119b-a924-48e4-a609-dda65162a4fb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a57c119b-a924-48e4-a609-dda65162a4fb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4fe5c1a4-bef4-4c30-aa5c-4ecc3a0eafb8 {
  margin-right: 1%;
min-height: 50px;
}








#s-4fe5c1a4-bef4-4c30-aa5c-4ecc3a0eafb8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4fe5c1a4-bef4-4c30-aa5c-4ecc3a0eafb8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6671462d-30c9-47ce-a5cb-c97de02806e0 {
  margin-left: 0%;
margin-bottom: 14px;
margin-right: 0%;
max-width: 30.3%;
aspect-ratio: 349/57;
text-align: left;
}





  #s-6671462d-30c9-47ce-a5cb-c97de02806e0 img.shogun-image,
  #s-6671462d-30c9-47ce-a5cb-c97de02806e0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6671462d-30c9-47ce-a5cb-c97de02806e0 {
    width: 100%;
    height: auto;
  }



  #s-6671462d-30c9-47ce-a5cb-c97de02806e0 img.shogun-image {
    

    
    
    
  }


#s-6671462d-30c9-47ce-a5cb-c97de02806e0 .shogun-image-content {
  
    align-items: center;
  
}

#s-ebb81681-a344-4f92-9b6d-1cc223de630e {
  border-style: solid;
padding-top: 9px;
padding-left: 20px;
padding-bottom: 11px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(27, 27, 27, 1);
border-radius: 1px;
background-color: rgba(255, 255, 255, 0);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(27, 27, 27, 1);
}
#s-ebb81681-a344-4f92-9b6d-1cc223de630e:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 1px !important;
background-color: rgba(255, 255, 255, 0.6) !important;
text-decoration: none !important;
color: rgba(27, 27, 27, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-ebb81681-a344-4f92-9b6d-1cc223de630e:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 1px !important;
background-color: rgba(255, 255, 255, 0.6) !important;
text-decoration: none !important;
color: rgba(27, 27, 27, 1) !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 768px) and (max-width: 991px){#s-ebb81681-a344-4f92-9b6d-1cc223de630e {
  padding-left: 15px;
padding-right: 15px;
}
}

  #s-ebb81681-a344-4f92-9b6d-1cc223de630e-root {
    text-align: left;
  }


#s-ebb81681-a344-4f92-9b6d-1cc223de630e.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ebb81681-a344-4f92-9b6d-1cc223de630e-root {
    text-align: left;
  }


#s-ebb81681-a344-4f92-9b6d-1cc223de630e.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ebb81681-a344-4f92-9b6d-1cc223de630e-root {
    text-align: left;
  }


#s-ebb81681-a344-4f92-9b6d-1cc223de630e.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ebb81681-a344-4f92-9b6d-1cc223de630e-root {
    text-align: left;
  }


#s-ebb81681-a344-4f92-9b6d-1cc223de630e.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 11px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ebb81681-a344-4f92-9b6d-1cc223de630e-root {
    text-align: left;
  }


#s-ebb81681-a344-4f92-9b6d-1cc223de630e.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-6e49092b-d8f4-42b6-a52b-d03c0a5d9c5f {
  margin-top: 0%;
margin-bottom: 0%;
max-width: 1344px;
aspect-ratio: 1344/1500;
text-align: center;
}





  #s-6e49092b-d8f4-42b6-a52b-d03c0a5d9c5f img.shogun-image,
  #s-6e49092b-d8f4-42b6-a52b-d03c0a5d9c5f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6e49092b-d8f4-42b6-a52b-d03c0a5d9c5f {
    width: 100%;
    height: auto;
  }



  #s-6e49092b-d8f4-42b6-a52b-d03c0a5d9c5f img.shogun-image {
    

    
    
    
  }


#s-6e49092b-d8f4-42b6-a52b-d03c0a5d9c5f .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-9f5fc945-feb5-4934-bba0-03f82c59f9e3 {
  margin-top: 6%;
margin-left: 0%;
margin-bottom: 14%;
margin-right: 0%;
padding-left: 23%;
padding-right: 0%;
}
@media (max-width: 767px){#s-9f5fc945-feb5-4934-bba0-03f82c59f9e3 {
  display: none;
}
#s-9f5fc945-feb5-4934-bba0-03f82c59f9e3, #wrap-s-9f5fc945-feb5-4934-bba0-03f82c59f9e3 { display: none !important; }}
@media (min-width: 0px) {
[id="s-9f5fc945-feb5-4934-bba0-03f82c59f9e3"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-9f5fc945-feb5-4934-bba0-03f82c59f9e3"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-9f5fc945-feb5-4934-bba0-03f82c59f9e3"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-9f5fc945-feb5-4934-bba0-03f82c59f9e3"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-9f5fc945-feb5-4934-bba0-03f82c59f9e3"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-9f5fc945-feb5-4934-bba0-03f82c59f9e3"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-9f5fc945-feb5-4934-bba0-03f82c59f9e3"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

}

#s-c92ab006-60f9-46b8-931f-67b97018ecbd {
  min-height: 50px;
}








#s-c92ab006-60f9-46b8-931f-67b97018ecbd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c92ab006-60f9-46b8-931f-67b97018ecbd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-180c9979-f26f-4fad-8d00-ba0c01b0d694 {
  margin-right: 3%;
min-height: 50px;
}








#s-180c9979-f26f-4fad-8d00-ba0c01b0d694 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-180c9979-f26f-4fad-8d00-ba0c01b0d694.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1a0e4c2e-56de-444b-887c-f0e4de30ac7c {
  margin-left: 0%;
margin-bottom: 14px;
margin-right: 0%;
max-width: 65%;
aspect-ratio: 631/57;
text-align: left;
}





  #s-1a0e4c2e-56de-444b-887c-f0e4de30ac7c img.shogun-image,
  #s-1a0e4c2e-56de-444b-887c-f0e4de30ac7c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1a0e4c2e-56de-444b-887c-f0e4de30ac7c {
    width: 100%;
    height: auto;
  }



  #s-1a0e4c2e-56de-444b-887c-f0e4de30ac7c img.shogun-image {
    

    
    
    
  }


#s-1a0e4c2e-56de-444b-887c-f0e4de30ac7c .shogun-image-content {
  
    align-items: center;
  
}

#s-58c011f1-5764-4330-851a-5cd06d07223b {
  border-style: solid;
padding-top: 9px;
padding-left: 20px;
padding-bottom: 11px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-radius: 0px;
background-color: rgba(27, 27, 27, 0.2);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-58c011f1-5764-4330-851a-5cd06d07223b:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 0px !important;
background-color: rgba(27, 27, 27, 0.2) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-58c011f1-5764-4330-851a-5cd06d07223b:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 1px !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 768px) and (max-width: 991px){#s-58c011f1-5764-4330-851a-5cd06d07223b {
  padding-left: 15px;
padding-right: 15px;
}
}

  #s-58c011f1-5764-4330-851a-5cd06d07223b-root {
    text-align: left;
  }


#s-58c011f1-5764-4330-851a-5cd06d07223b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-58c011f1-5764-4330-851a-5cd06d07223b-root {
    text-align: left;
  }


#s-58c011f1-5764-4330-851a-5cd06d07223b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-58c011f1-5764-4330-851a-5cd06d07223b-root {
    text-align: left;
  }


#s-58c011f1-5764-4330-851a-5cd06d07223b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-58c011f1-5764-4330-851a-5cd06d07223b-root {
    text-align: left;
  }


#s-58c011f1-5764-4330-851a-5cd06d07223b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 11px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-58c011f1-5764-4330-851a-5cd06d07223b-root {
    text-align: left;
  }


#s-58c011f1-5764-4330-851a-5cd06d07223b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-a73bdaad-c6fc-40c5-a86e-a84ed9bb17a9 {
  min-height: 40px;
}
@media (max-width: 767px){#s-a73bdaad-c6fc-40c5-a86e-a84ed9bb17a9 {
  display: none;
}
#s-a73bdaad-c6fc-40c5-a86e-a84ed9bb17a9, #wrap-s-a73bdaad-c6fc-40c5-a86e-a84ed9bb17a9 { display: none !important; }}







#s-a73bdaad-c6fc-40c5-a86e-a84ed9bb17a9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a73bdaad-c6fc-40c5-a86e-a84ed9bb17a9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-32544c77-4f17-4c4f-bb17-bcd4136a443a {
  min-height: 50px;
}
@media (max-width: 767px){#s-32544c77-4f17-4c4f-bb17-bcd4136a443a {
  display: none;
}
#s-32544c77-4f17-4c4f-bb17-bcd4136a443a, #wrap-s-32544c77-4f17-4c4f-bb17-bcd4136a443a { display: none !important; }}







#s-32544c77-4f17-4c4f-bb17-bcd4136a443a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-32544c77-4f17-4c4f-bb17-bcd4136a443a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-eb3b4441-817f-464a-91c9-8479594ae2f6 {
  max-width: 2880px;
aspect-ratio: 2880/1304;
text-align: center;
}





  #s-eb3b4441-817f-464a-91c9-8479594ae2f6 img.shogun-image,
  #s-eb3b4441-817f-464a-91c9-8479594ae2f6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-eb3b4441-817f-464a-91c9-8479594ae2f6 {
    width: 100%;
    height: auto;
  }



  #s-eb3b4441-817f-464a-91c9-8479594ae2f6 img.shogun-image {
    

    
    
    
  }


#s-eb3b4441-817f-464a-91c9-8479594ae2f6 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-661a783d-68d0-4b6a-aaab-022d07822ed7 {
  min-height: 50px;
}








#s-661a783d-68d0-4b6a-aaab-022d07822ed7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-661a783d-68d0-4b6a-aaab-022d07822ed7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1f6f03d4-aefa-497f-b31b-a5c2a6d2e585 {
  margin-top: 2.7%;
margin-left: 0.5%;
margin-bottom: 2%;
margin-right: 0%;
}

@media (min-width: 0px) {
[id="s-1f6f03d4-aefa-497f-b31b-a5c2a6d2e585"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1f6f03d4-aefa-497f-b31b-a5c2a6d2e585"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-1f6f03d4-aefa-497f-b31b-a5c2a6d2e585"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-1f6f03d4-aefa-497f-b31b-a5c2a6d2e585"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-1f6f03d4-aefa-497f-b31b-a5c2a6d2e585"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-1f6f03d4-aefa-497f-b31b-a5c2a6d2e585"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-1f6f03d4-aefa-497f-b31b-a5c2a6d2e585"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-1f6f03d4-aefa-497f-b31b-a5c2a6d2e585"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-1f6f03d4-aefa-497f-b31b-a5c2a6d2e585"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-1f6f03d4-aefa-497f-b31b-a5c2a6d2e585"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-fa295591-4bb8-477d-8dee-eb7fac0594bc {
  margin-left: 0%;
margin-right: 13%;
min-height: 50px;
}








#s-fa295591-4bb8-477d-8dee-eb7fac0594bc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fa295591-4bb8-477d-8dee-eb7fac0594bc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bcc11d57-1bdd-4a91-b4b7-76736e5ebecf {
  margin-left: auto;
margin-bottom: 14px;
margin-right: auto;
max-width: 63%;
aspect-ratio: 710/314;
text-align: center;
}





  #s-bcc11d57-1bdd-4a91-b4b7-76736e5ebecf img.shogun-image,
  #s-bcc11d57-1bdd-4a91-b4b7-76736e5ebecf .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-bcc11d57-1bdd-4a91-b4b7-76736e5ebecf {
    width: 100%;
    height: auto;
  }



  #s-bcc11d57-1bdd-4a91-b4b7-76736e5ebecf img.shogun-image {
    

    
    
    
  }


#s-bcc11d57-1bdd-4a91-b4b7-76736e5ebecf .shogun-image-content {
  
    align-items: center;
  
}

#s-edb01a93-6863-42ac-b023-70a3bf74c030 {
  border-style: solid;
padding-top: 9px;
padding-left: 20px;
padding-bottom: 11px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(27, 27, 27, 1);
border-radius: 1px;
background-color: rgba(255, 255, 255, 0);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(27, 27, 27, 1);
}
#s-edb01a93-6863-42ac-b023-70a3bf74c030:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 1px !important;
background-color: rgba(255, 255, 255, 0.6) !important;
text-decoration: none !important;
color: rgba(27, 27, 27, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-edb01a93-6863-42ac-b023-70a3bf74c030:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 1px !important;
background-color: rgba(255, 255, 255, 0.6) !important;
text-decoration: none !important;
color: rgba(27, 27, 27, 1) !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 768px) and (max-width: 991px){#s-edb01a93-6863-42ac-b023-70a3bf74c030 {
  padding-left: 15px;
padding-right: 15px;
}
}

  #s-edb01a93-6863-42ac-b023-70a3bf74c030-root {
    text-align: center;
  }


#s-edb01a93-6863-42ac-b023-70a3bf74c030.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-edb01a93-6863-42ac-b023-70a3bf74c030-root {
    text-align: center;
  }


#s-edb01a93-6863-42ac-b023-70a3bf74c030.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-edb01a93-6863-42ac-b023-70a3bf74c030-root {
    text-align: center;
  }


#s-edb01a93-6863-42ac-b023-70a3bf74c030.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-edb01a93-6863-42ac-b023-70a3bf74c030-root {
    text-align: center;
  }


#s-edb01a93-6863-42ac-b023-70a3bf74c030.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 11px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-edb01a93-6863-42ac-b023-70a3bf74c030-root {
    text-align: center;
  }


#s-edb01a93-6863-42ac-b023-70a3bf74c030.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-c36efee2-625d-412f-8904-4a1a590b9e52 {
  min-height: 40px;
}
@media (max-width: 767px){#s-c36efee2-625d-412f-8904-4a1a590b9e52 {
  display: none;
}
#s-c36efee2-625d-412f-8904-4a1a590b9e52, #wrap-s-c36efee2-625d-412f-8904-4a1a590b9e52 { display: none !important; }}







#s-c36efee2-625d-412f-8904-4a1a590b9e52 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c36efee2-625d-412f-8904-4a1a590b9e52.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8eda6615-dee8-4e3a-95d7-2415723f9e5c {
  margin-left: 2%;
margin-right: 2%;
}
@media (max-width: 767px){#s-8eda6615-dee8-4e3a-95d7-2415723f9e5c {
  display: none;
}
#s-8eda6615-dee8-4e3a-95d7-2415723f9e5c, #wrap-s-8eda6615-dee8-4e3a-95d7-2415723f9e5c { display: none !important; }}
@media (min-width: 0px) {
[id="s-8eda6615-dee8-4e3a-95d7-2415723f9e5c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8eda6615-dee8-4e3a-95d7-2415723f9e5c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8eda6615-dee8-4e3a-95d7-2415723f9e5c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8eda6615-dee8-4e3a-95d7-2415723f9e5c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-41eb49d4-39a3-46f8-b60a-6a5bb87906b0 {
  max-width: 1350px;
aspect-ratio: 1350/1500;
text-align: center;
}





  #s-41eb49d4-39a3-46f8-b60a-6a5bb87906b0 img.shogun-image,
  #s-41eb49d4-39a3-46f8-b60a-6a5bb87906b0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-41eb49d4-39a3-46f8-b60a-6a5bb87906b0 {
    width: 100%;
    height: auto;
  }



  #s-41eb49d4-39a3-46f8-b60a-6a5bb87906b0 img.shogun-image {
    

    
    
    
  }


#s-41eb49d4-39a3-46f8-b60a-6a5bb87906b0 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-6f31f14e-e6aa-4476-953d-84a38ce2d755 {
  margin-top: 6%;
margin-left: 0%;
margin-bottom: 5%;
margin-right: 0%;
padding-left: 8%;
padding-right: 8%;
}
@media (max-width: 767px){#s-6f31f14e-e6aa-4476-953d-84a38ce2d755 {
  display: none;
}
#s-6f31f14e-e6aa-4476-953d-84a38ce2d755, #wrap-s-6f31f14e-e6aa-4476-953d-84a38ce2d755 { display: none !important; }}
@media (min-width: 0px) {
[id="s-6f31f14e-e6aa-4476-953d-84a38ce2d755"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-6f31f14e-e6aa-4476-953d-84a38ce2d755"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-6f31f14e-e6aa-4476-953d-84a38ce2d755"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-6f31f14e-e6aa-4476-953d-84a38ce2d755"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-6f31f14e-e6aa-4476-953d-84a38ce2d755"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-6f31f14e-e6aa-4476-953d-84a38ce2d755"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-6f31f14e-e6aa-4476-953d-84a38ce2d755"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

}

#s-e664c581-c99f-4ad9-a1f8-ab9683882176 {
  min-height: 50px;
}








#s-e664c581-c99f-4ad9-a1f8-ab9683882176 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e664c581-c99f-4ad9-a1f8-ab9683882176.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2a910e52-3d7d-41e2-81af-0f0055a877ae {
  min-height: 50px;
}








#s-2a910e52-3d7d-41e2-81af-0f0055a877ae > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2a910e52-3d7d-41e2-81af-0f0055a877ae.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c1d5ac26-60b2-48dd-901e-ea7a7d0d26d8 {
  margin-left: 0%;
margin-bottom: 14px;
margin-right: 0%;
max-width: 76%;
aspect-ratio: 826/71;
text-align: left;
}





  #s-c1d5ac26-60b2-48dd-901e-ea7a7d0d26d8 img.shogun-image,
  #s-c1d5ac26-60b2-48dd-901e-ea7a7d0d26d8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c1d5ac26-60b2-48dd-901e-ea7a7d0d26d8 {
    width: 100%;
    height: auto;
  }



  #s-c1d5ac26-60b2-48dd-901e-ea7a7d0d26d8 img.shogun-image {
    

    
    
    
  }


#s-c1d5ac26-60b2-48dd-901e-ea7a7d0d26d8 .shogun-image-content {
  
    align-items: center;
  
}

#s-b57883ef-ba71-48d8-b5e5-c1ad318caf8d {
  border-style: solid;
padding-top: 9px;
padding-left: 20px;
padding-bottom: 11px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-radius: 0px;
background-color: rgba(27, 27, 27, 0.2);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-b57883ef-ba71-48d8-b5e5-c1ad318caf8d:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 0px !important;
background-color: rgba(27, 27, 27, 0.2) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-b57883ef-ba71-48d8-b5e5-c1ad318caf8d:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 1px !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 768px) and (max-width: 991px){#s-b57883ef-ba71-48d8-b5e5-c1ad318caf8d {
  padding-left: 15px;
padding-right: 15px;
}
}

  #s-b57883ef-ba71-48d8-b5e5-c1ad318caf8d-root {
    text-align: left;
  }


#s-b57883ef-ba71-48d8-b5e5-c1ad318caf8d.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-b57883ef-ba71-48d8-b5e5-c1ad318caf8d-root {
    text-align: left;
  }


#s-b57883ef-ba71-48d8-b5e5-c1ad318caf8d.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b57883ef-ba71-48d8-b5e5-c1ad318caf8d-root {
    text-align: left;
  }


#s-b57883ef-ba71-48d8-b5e5-c1ad318caf8d.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b57883ef-ba71-48d8-b5e5-c1ad318caf8d-root {
    text-align: left;
  }


#s-b57883ef-ba71-48d8-b5e5-c1ad318caf8d.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 11px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-b57883ef-ba71-48d8-b5e5-c1ad318caf8d-root {
    text-align: left;
  }


#s-b57883ef-ba71-48d8-b5e5-c1ad318caf8d.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-b8a58bb2-931a-4071-9bff-32e35cbcb8d4 {
  max-width: 1350px;
aspect-ratio: 1350/1500;
text-align: center;
}





  #s-b8a58bb2-931a-4071-9bff-32e35cbcb8d4 img.shogun-image,
  #s-b8a58bb2-931a-4071-9bff-32e35cbcb8d4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b8a58bb2-931a-4071-9bff-32e35cbcb8d4 {
    width: 100%;
    height: auto;
  }



  #s-b8a58bb2-931a-4071-9bff-32e35cbcb8d4 img.shogun-image {
    

    
    
    
  }


#s-b8a58bb2-931a-4071-9bff-32e35cbcb8d4 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-9cfd70b2-4404-4437-9330-56117dd58bb3 {
  margin-top: 6%;
margin-left: 0%;
margin-bottom: 5%;
margin-right: 0%;
padding-left: 8%;
padding-right: 8%;
}
@media (max-width: 767px){#s-9cfd70b2-4404-4437-9330-56117dd58bb3 {
  display: none;
}
#s-9cfd70b2-4404-4437-9330-56117dd58bb3, #wrap-s-9cfd70b2-4404-4437-9330-56117dd58bb3 { display: none !important; }}
@media (min-width: 0px) {
[id="s-9cfd70b2-4404-4437-9330-56117dd58bb3"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-9cfd70b2-4404-4437-9330-56117dd58bb3"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-9cfd70b2-4404-4437-9330-56117dd58bb3"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-9cfd70b2-4404-4437-9330-56117dd58bb3"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-9cfd70b2-4404-4437-9330-56117dd58bb3"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-9cfd70b2-4404-4437-9330-56117dd58bb3"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-9cfd70b2-4404-4437-9330-56117dd58bb3"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

}

#s-efdcdd04-cc78-4be0-af6e-b139f2a7258b {
  min-height: 50px;
}








#s-efdcdd04-cc78-4be0-af6e-b139f2a7258b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-efdcdd04-cc78-4be0-af6e-b139f2a7258b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2963a6e1-af01-46f0-87a6-c6ce5e049983 {
  margin-right: 1%;
min-height: 50px;
}








#s-2963a6e1-af01-46f0-87a6-c6ce5e049983 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2963a6e1-af01-46f0-87a6-c6ce5e049983.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-13ac7fd3-2308-439a-844a-976dbe04d333 {
  margin-left: 0%;
margin-bottom: 14px;
margin-right: 0%;
max-width: 40%;
aspect-ratio: 434/71;
text-align: left;
}





  #s-13ac7fd3-2308-439a-844a-976dbe04d333 img.shogun-image,
  #s-13ac7fd3-2308-439a-844a-976dbe04d333 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-13ac7fd3-2308-439a-844a-976dbe04d333 {
    width: 100%;
    height: auto;
  }



  #s-13ac7fd3-2308-439a-844a-976dbe04d333 img.shogun-image {
    

    
    
    
  }


#s-13ac7fd3-2308-439a-844a-976dbe04d333 .shogun-image-content {
  
    align-items: center;
  
}

#s-b062ac4e-e23c-43f9-b331-aed881860d50 {
  border-style: solid;
padding-top: 9px;
padding-left: 20px;
padding-bottom: 11px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-radius: 0px;
background-color: rgba(27, 27, 27, 0.2);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-b062ac4e-e23c-43f9-b331-aed881860d50:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 0px !important;
background-color: rgba(27, 27, 27, 0.2) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-b062ac4e-e23c-43f9-b331-aed881860d50:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 1px !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 768px) and (max-width: 991px){#s-b062ac4e-e23c-43f9-b331-aed881860d50 {
  padding-left: 15px;
padding-right: 15px;
}
}

  #s-b062ac4e-e23c-43f9-b331-aed881860d50-root {
    text-align: left;
  }


#s-b062ac4e-e23c-43f9-b331-aed881860d50.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-b062ac4e-e23c-43f9-b331-aed881860d50-root {
    text-align: left;
  }


#s-b062ac4e-e23c-43f9-b331-aed881860d50.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b062ac4e-e23c-43f9-b331-aed881860d50-root {
    text-align: left;
  }


#s-b062ac4e-e23c-43f9-b331-aed881860d50.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b062ac4e-e23c-43f9-b331-aed881860d50-root {
    text-align: left;
  }


#s-b062ac4e-e23c-43f9-b331-aed881860d50.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 11px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-b062ac4e-e23c-43f9-b331-aed881860d50-root {
    text-align: left;
  }


#s-b062ac4e-e23c-43f9-b331-aed881860d50.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-22841659-1f3c-4d0f-b6a7-87e4fa46e8b1 {
  min-height: 40px;
}
@media (max-width: 767px){#s-22841659-1f3c-4d0f-b6a7-87e4fa46e8b1 {
  display: none;
}
#s-22841659-1f3c-4d0f-b6a7-87e4fa46e8b1, #wrap-s-22841659-1f3c-4d0f-b6a7-87e4fa46e8b1 { display: none !important; }}







#s-22841659-1f3c-4d0f-b6a7-87e4fa46e8b1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-22841659-1f3c-4d0f-b6a7-87e4fa46e8b1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a927c655-e03e-40d8-9ae8-dadb33828727 {
  min-height: 50px;
}
@media (max-width: 767px){#s-a927c655-e03e-40d8-9ae8-dadb33828727 {
  display: none;
}
#s-a927c655-e03e-40d8-9ae8-dadb33828727, #wrap-s-a927c655-e03e-40d8-9ae8-dadb33828727 { display: none !important; }}







#s-a927c655-e03e-40d8-9ae8-dadb33828727 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a927c655-e03e-40d8-9ae8-dadb33828727.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f1fae663-f012-45e9-96c5-a7fad95359d6 {
  max-width: 2880px;
aspect-ratio: 2880/600;
text-align: center;
}





  #s-f1fae663-f012-45e9-96c5-a7fad95359d6 img.shogun-image,
  #s-f1fae663-f012-45e9-96c5-a7fad95359d6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f1fae663-f012-45e9-96c5-a7fad95359d6 {
    width: 100%;
    height: auto;
  }



  #s-f1fae663-f012-45e9-96c5-a7fad95359d6 img.shogun-image {
    

    
    
    
  }


#s-f1fae663-f012-45e9-96c5-a7fad95359d6 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-abb399aa-0778-4e33-9717-b8abb8aa6ff9 {
  min-height: 40px;
}
@media (max-width: 767px){#s-abb399aa-0778-4e33-9717-b8abb8aa6ff9 {
  display: none;
}
#s-abb399aa-0778-4e33-9717-b8abb8aa6ff9, #wrap-s-abb399aa-0778-4e33-9717-b8abb8aa6ff9 { display: none !important; }}







#s-abb399aa-0778-4e33-9717-b8abb8aa6ff9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-abb399aa-0778-4e33-9717-b8abb8aa6ff9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fb6c8c92-0f20-4e21-8ad0-29a800b12e47 {
  min-height: 50px;
}
@media (max-width: 767px){#s-fb6c8c92-0f20-4e21-8ad0-29a800b12e47 {
  display: none;
}
#s-fb6c8c92-0f20-4e21-8ad0-29a800b12e47, #wrap-s-fb6c8c92-0f20-4e21-8ad0-29a800b12e47 { display: none !important; }}







#s-fb6c8c92-0f20-4e21-8ad0-29a800b12e47 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fb6c8c92-0f20-4e21-8ad0-29a800b12e47.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f2aec6c8-7ca4-4a4f-98d8-cbdeada214a0 {
  max-width: 2880px;
aspect-ratio: 2880/1296;
text-align: center;
}





  #s-f2aec6c8-7ca4-4a4f-98d8-cbdeada214a0 img.shogun-image,
  #s-f2aec6c8-7ca4-4a4f-98d8-cbdeada214a0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f2aec6c8-7ca4-4a4f-98d8-cbdeada214a0 {
    width: 100%;
    height: auto;
  }



  #s-f2aec6c8-7ca4-4a4f-98d8-cbdeada214a0 img.shogun-image {
    

    
    
    
  }


#s-f2aec6c8-7ca4-4a4f-98d8-cbdeada214a0 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-34eb12bc-697d-426b-8135-36396c85d202 {
  min-height: 50px;
}








#s-34eb12bc-697d-426b-8135-36396c85d202 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-34eb12bc-697d-426b-8135-36396c85d202.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1f19ce88-f1c6-4119-a8a3-a86e0f928477 {
  margin-top: 3%;
margin-left: 0.5%;
margin-bottom: 0%;
margin-right: 0%;
}

@media (min-width: 0px) {
[id="s-1f19ce88-f1c6-4119-a8a3-a86e0f928477"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1f19ce88-f1c6-4119-a8a3-a86e0f928477"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-1f19ce88-f1c6-4119-a8a3-a86e0f928477"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-1f19ce88-f1c6-4119-a8a3-a86e0f928477"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-e09d8057-b3ec-48df-b7f2-53e464fe1114 {
  margin-right: 24%;
min-height: 50px;
}








#s-e09d8057-b3ec-48df-b7f2-53e464fe1114 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e09d8057-b3ec-48df-b7f2-53e464fe1114.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3ee0d0ee-323c-469c-8f2a-0919c0e3df02 {
  margin-left: auto;
margin-bottom: 14px;
margin-right: auto;
max-width: 83%;
aspect-ratio: 615/126;
text-align: center;
}





  #s-3ee0d0ee-323c-469c-8f2a-0919c0e3df02 img.shogun-image,
  #s-3ee0d0ee-323c-469c-8f2a-0919c0e3df02 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3ee0d0ee-323c-469c-8f2a-0919c0e3df02 {
    width: 100%;
    height: auto;
  }



  #s-3ee0d0ee-323c-469c-8f2a-0919c0e3df02 img.shogun-image {
    

    
    
    
  }


#s-3ee0d0ee-323c-469c-8f2a-0919c0e3df02 .shogun-image-content {
  
    align-items: center;
  
}

#s-49dd5ab2-8800-4429-a621-d4780bc43252 {
  border-style: solid;
padding-top: 9px;
padding-left: 20px;
padding-bottom: 11px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(27, 27, 27, 1);
border-radius: 1px;
background-color: rgba(255, 255, 255, 0);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(27, 27, 27, 1);
}
#s-49dd5ab2-8800-4429-a621-d4780bc43252:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 1px !important;
background-color: rgba(255, 255, 255, 0.6) !important;
text-decoration: none !important;
color: rgba(27, 27, 27, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-49dd5ab2-8800-4429-a621-d4780bc43252:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 1px !important;
background-color: rgba(255, 255, 255, 0.6) !important;
text-decoration: none !important;
color: rgba(27, 27, 27, 1) !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 768px) and (max-width: 991px){#s-49dd5ab2-8800-4429-a621-d4780bc43252 {
  padding-left: 15px;
padding-right: 15px;
}
}

  #s-49dd5ab2-8800-4429-a621-d4780bc43252-root {
    text-align: center;
  }


#s-49dd5ab2-8800-4429-a621-d4780bc43252.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-49dd5ab2-8800-4429-a621-d4780bc43252-root {
    text-align: center;
  }


#s-49dd5ab2-8800-4429-a621-d4780bc43252.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-49dd5ab2-8800-4429-a621-d4780bc43252-root {
    text-align: center;
  }


#s-49dd5ab2-8800-4429-a621-d4780bc43252.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-49dd5ab2-8800-4429-a621-d4780bc43252-root {
    text-align: center;
  }


#s-49dd5ab2-8800-4429-a621-d4780bc43252.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 11px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-49dd5ab2-8800-4429-a621-d4780bc43252-root {
    text-align: center;
  }


#s-49dd5ab2-8800-4429-a621-d4780bc43252.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-bbcb39d3-5f55-4925-b6ca-5aa990a369e4 {
  min-height: 40px;
}
@media (max-width: 767px){#s-bbcb39d3-5f55-4925-b6ca-5aa990a369e4 {
  display: none;
}
#s-bbcb39d3-5f55-4925-b6ca-5aa990a369e4, #wrap-s-bbcb39d3-5f55-4925-b6ca-5aa990a369e4 { display: none !important; }}







#s-bbcb39d3-5f55-4925-b6ca-5aa990a369e4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bbcb39d3-5f55-4925-b6ca-5aa990a369e4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-159c132a-dfb3-465f-a64a-4ff0fb08caa4 {
  margin-left: 2%;
margin-right: 2%;
}
@media (max-width: 767px){#s-159c132a-dfb3-465f-a64a-4ff0fb08caa4 {
  display: none;
}
#s-159c132a-dfb3-465f-a64a-4ff0fb08caa4, #wrap-s-159c132a-dfb3-465f-a64a-4ff0fb08caa4 { display: none !important; }}
@media (min-width: 0px) {
[id="s-159c132a-dfb3-465f-a64a-4ff0fb08caa4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-159c132a-dfb3-465f-a64a-4ff0fb08caa4"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-159c132a-dfb3-465f-a64a-4ff0fb08caa4"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-159c132a-dfb3-465f-a64a-4ff0fb08caa4"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-00bbca6c-2e1b-4b15-b7ce-a15fc6a93420 {
  max-width: 1350px;
aspect-ratio: 1350/1500;
text-align: center;
}





  #s-00bbca6c-2e1b-4b15-b7ce-a15fc6a93420 img.shogun-image,
  #s-00bbca6c-2e1b-4b15-b7ce-a15fc6a93420 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-00bbca6c-2e1b-4b15-b7ce-a15fc6a93420 {
    width: 100%;
    height: auto;
  }



  #s-00bbca6c-2e1b-4b15-b7ce-a15fc6a93420 img.shogun-image {
    

    
    
    
  }


#s-00bbca6c-2e1b-4b15-b7ce-a15fc6a93420 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-543abac9-941a-43dd-9e61-14c77a5113d4 {
  margin-top: 9%;
margin-left: 0%;
margin-bottom: 5%;
margin-right: 0%;
padding-left: 7%;
padding-right: 8%;
}
@media (max-width: 767px){#s-543abac9-941a-43dd-9e61-14c77a5113d4 {
  display: none;
}
#s-543abac9-941a-43dd-9e61-14c77a5113d4, #wrap-s-543abac9-941a-43dd-9e61-14c77a5113d4 { display: none !important; }}
@media (min-width: 0px) {
[id="s-543abac9-941a-43dd-9e61-14c77a5113d4"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-543abac9-941a-43dd-9e61-14c77a5113d4"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-543abac9-941a-43dd-9e61-14c77a5113d4"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-543abac9-941a-43dd-9e61-14c77a5113d4"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-543abac9-941a-43dd-9e61-14c77a5113d4"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-543abac9-941a-43dd-9e61-14c77a5113d4"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-543abac9-941a-43dd-9e61-14c77a5113d4"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

}

#s-2952ad55-6421-48cf-9119-95820cca34a1 {
  min-height: 50px;
}








#s-2952ad55-6421-48cf-9119-95820cca34a1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2952ad55-6421-48cf-9119-95820cca34a1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-62c51db0-b26e-4178-9b24-83724b9dd7da {
  margin-left: 3%;
margin-right: 0%;
min-height: 50px;
}








#s-62c51db0-b26e-4178-9b24-83724b9dd7da > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-62c51db0-b26e-4178-9b24-83724b9dd7da.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e201bcdd-924e-4bec-b5c5-77377868028d {
  margin-left: 0%;
margin-bottom: 18px;
margin-right: 0%;
max-width: 37%;
aspect-ratio: 417/57;
text-align: left;
}





  #s-e201bcdd-924e-4bec-b5c5-77377868028d img.shogun-image,
  #s-e201bcdd-924e-4bec-b5c5-77377868028d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e201bcdd-924e-4bec-b5c5-77377868028d {
    width: 100%;
    height: auto;
  }



  #s-e201bcdd-924e-4bec-b5c5-77377868028d img.shogun-image {
    

    
    
    
  }


#s-e201bcdd-924e-4bec-b5c5-77377868028d .shogun-image-content {
  
    align-items: center;
  
}

#s-a3712ce1-333a-4c6b-a3e4-06dc4dba2f9e {
  border-style: solid;
padding-top: 9px;
padding-left: 20px;
padding-bottom: 11px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(27, 27, 27, 1);
border-radius: 1px;
background-color: rgba(255, 255, 255, 0);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(27, 27, 27, 1);
}
#s-a3712ce1-333a-4c6b-a3e4-06dc4dba2f9e:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 1px !important;
background-color: rgba(255, 255, 255, 0.6) !important;
text-decoration: none !important;
color: rgba(27, 27, 27, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-a3712ce1-333a-4c6b-a3e4-06dc4dba2f9e:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 1px !important;
background-color: rgba(255, 255, 255, 0.6) !important;
text-decoration: none !important;
color: rgba(27, 27, 27, 1) !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 768px) and (max-width: 991px){#s-a3712ce1-333a-4c6b-a3e4-06dc4dba2f9e {
  padding-left: 15px;
padding-right: 15px;
}
}

  #s-a3712ce1-333a-4c6b-a3e4-06dc4dba2f9e-root {
    text-align: left;
  }


#s-a3712ce1-333a-4c6b-a3e4-06dc4dba2f9e.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-a3712ce1-333a-4c6b-a3e4-06dc4dba2f9e-root {
    text-align: left;
  }


#s-a3712ce1-333a-4c6b-a3e4-06dc4dba2f9e.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a3712ce1-333a-4c6b-a3e4-06dc4dba2f9e-root {
    text-align: left;
  }


#s-a3712ce1-333a-4c6b-a3e4-06dc4dba2f9e.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a3712ce1-333a-4c6b-a3e4-06dc4dba2f9e-root {
    text-align: left;
  }


#s-a3712ce1-333a-4c6b-a3e4-06dc4dba2f9e.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 11px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-a3712ce1-333a-4c6b-a3e4-06dc4dba2f9e-root {
    text-align: left;
  }


#s-a3712ce1-333a-4c6b-a3e4-06dc4dba2f9e.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-fb4ffc6c-1d27-4575-b2d7-bebbe3053cee {
  max-width: 1350px;
aspect-ratio: 1350/1500;
text-align: center;
}





  #s-fb4ffc6c-1d27-4575-b2d7-bebbe3053cee img.shogun-image,
  #s-fb4ffc6c-1d27-4575-b2d7-bebbe3053cee .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fb4ffc6c-1d27-4575-b2d7-bebbe3053cee {
    width: 100%;
    height: auto;
  }



  #s-fb4ffc6c-1d27-4575-b2d7-bebbe3053cee img.shogun-image {
    

    
    
    
  }


#s-fb4ffc6c-1d27-4575-b2d7-bebbe3053cee .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-5d748eb7-8032-45f4-a7e0-4bc718a795ab {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 14%;
margin-right: 0%;
padding-left: 35%;
padding-right: 0%;
}
@media (max-width: 767px){#s-5d748eb7-8032-45f4-a7e0-4bc718a795ab {
  display: none;
}
#s-5d748eb7-8032-45f4-a7e0-4bc718a795ab, #wrap-s-5d748eb7-8032-45f4-a7e0-4bc718a795ab { display: none !important; }}
@media (min-width: 0px) {
[id="s-5d748eb7-8032-45f4-a7e0-4bc718a795ab"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-5d748eb7-8032-45f4-a7e0-4bc718a795ab"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-5d748eb7-8032-45f4-a7e0-4bc718a795ab"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-5d748eb7-8032-45f4-a7e0-4bc718a795ab"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-5d748eb7-8032-45f4-a7e0-4bc718a795ab"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-5d748eb7-8032-45f4-a7e0-4bc718a795ab"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-5d748eb7-8032-45f4-a7e0-4bc718a795ab"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

}

#s-b180cf1e-7aae-440e-b0e7-293652dc7760 {
  min-height: 50px;
}








#s-b180cf1e-7aae-440e-b0e7-293652dc7760 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b180cf1e-7aae-440e-b0e7-293652dc7760.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-30b7d3c3-51e6-4f50-bb08-a0efb61dcdf7 {
  min-height: 50px;
}








#s-30b7d3c3-51e6-4f50-bb08-a0efb61dcdf7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-30b7d3c3-51e6-4f50-bb08-a0efb61dcdf7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d47fbd74-08d8-4c1d-aa11-0d397a263871 {
  margin-left: 0%;
margin-bottom: 18px;
margin-right: 0%;
max-width: 78%;
aspect-ratio: 693/143;
text-align: left;
}





  #s-d47fbd74-08d8-4c1d-aa11-0d397a263871 img.shogun-image,
  #s-d47fbd74-08d8-4c1d-aa11-0d397a263871 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d47fbd74-08d8-4c1d-aa11-0d397a263871 {
    width: 100%;
    height: auto;
  }



  #s-d47fbd74-08d8-4c1d-aa11-0d397a263871 img.shogun-image {
    

    
    
    
  }


#s-d47fbd74-08d8-4c1d-aa11-0d397a263871 .shogun-image-content {
  
    align-items: center;
  
}

#s-7b66b306-65d4-4ece-83c9-3097f5270353 {
  border-style: solid;
padding-top: 9px;
padding-left: 20px;
padding-bottom: 11px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(27, 27, 27, 1);
border-radius: 1px;
background-color: rgba(255, 255, 255, 0);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(27, 27, 27, 1);
}
#s-7b66b306-65d4-4ece-83c9-3097f5270353:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 1px !important;
background-color: rgba(255, 255, 255, 0.6) !important;
text-decoration: none !important;
color: rgba(27, 27, 27, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-7b66b306-65d4-4ece-83c9-3097f5270353:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 1px !important;
background-color: rgba(255, 255, 255, 0.6) !important;
text-decoration: none !important;
color: rgba(27, 27, 27, 1) !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 768px) and (max-width: 991px){#s-7b66b306-65d4-4ece-83c9-3097f5270353 {
  padding-left: 15px;
padding-right: 15px;
}
}

  #s-7b66b306-65d4-4ece-83c9-3097f5270353-root {
    text-align: left;
  }


#s-7b66b306-65d4-4ece-83c9-3097f5270353.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-7b66b306-65d4-4ece-83c9-3097f5270353-root {
    text-align: left;
  }


#s-7b66b306-65d4-4ece-83c9-3097f5270353.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7b66b306-65d4-4ece-83c9-3097f5270353-root {
    text-align: left;
  }


#s-7b66b306-65d4-4ece-83c9-3097f5270353.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7b66b306-65d4-4ece-83c9-3097f5270353-root {
    text-align: left;
  }


#s-7b66b306-65d4-4ece-83c9-3097f5270353.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 11px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-7b66b306-65d4-4ece-83c9-3097f5270353-root {
    text-align: left;
  }


#s-7b66b306-65d4-4ece-83c9-3097f5270353.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-399476f3-1ea0-4a45-9271-b69dcbde8aaa {
  min-height: 40px;
}
@media (max-width: 767px){#s-399476f3-1ea0-4a45-9271-b69dcbde8aaa {
  display: none;
}
#s-399476f3-1ea0-4a45-9271-b69dcbde8aaa, #wrap-s-399476f3-1ea0-4a45-9271-b69dcbde8aaa { display: none !important; }}







#s-399476f3-1ea0-4a45-9271-b69dcbde8aaa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-399476f3-1ea0-4a45-9271-b69dcbde8aaa.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cca0a305-3a3a-4e6e-9f09-5a19d9a0bf92 {
  min-height: 50px;
}
@media (max-width: 767px){#s-cca0a305-3a3a-4e6e-9f09-5a19d9a0bf92 {
  display: none;
}
#s-cca0a305-3a3a-4e6e-9f09-5a19d9a0bf92, #wrap-s-cca0a305-3a3a-4e6e-9f09-5a19d9a0bf92 { display: none !important; }}







#s-cca0a305-3a3a-4e6e-9f09-5a19d9a0bf92 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cca0a305-3a3a-4e6e-9f09-5a19d9a0bf92.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dbcc447e-147c-4169-9246-2e23530130f0 {
  max-width: 2880px;
aspect-ratio: 2880/1296;
text-align: center;
}





  #s-dbcc447e-147c-4169-9246-2e23530130f0 img.shogun-image,
  #s-dbcc447e-147c-4169-9246-2e23530130f0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-dbcc447e-147c-4169-9246-2e23530130f0 {
    width: 100%;
    height: auto;
  }



  #s-dbcc447e-147c-4169-9246-2e23530130f0 img.shogun-image {
    

    
    
    
  }


#s-dbcc447e-147c-4169-9246-2e23530130f0 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-66a1ef0c-1ec5-44b0-a966-7fcd52586ec0 {
  min-height: 50px;
}








#s-66a1ef0c-1ec5-44b0-a966-7fcd52586ec0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-66a1ef0c-1ec5-44b0-a966-7fcd52586ec0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ae9a7280-46b0-4bd8-a6cf-2e1e38c6d76f {
  margin-top: 4%;
margin-left: 1%;
margin-right: 0%;
}

@media (min-width: 0px) {
[id="s-ae9a7280-46b0-4bd8-a6cf-2e1e38c6d76f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ae9a7280-46b0-4bd8-a6cf-2e1e38c6d76f"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-ae9a7280-46b0-4bd8-a6cf-2e1e38c6d76f"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ae9a7280-46b0-4bd8-a6cf-2e1e38c6d76f"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-ae9a7280-46b0-4bd8-a6cf-2e1e38c6d76f"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ae9a7280-46b0-4bd8-a6cf-2e1e38c6d76f"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-ae9a7280-46b0-4bd8-a6cf-2e1e38c6d76f"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

#s-f739658b-f842-4d97-bc6c-908d61330b70 {
  margin-left: 36%;
margin-right: 0%;
min-height: 50px;
}








#s-f739658b-f842-4d97-bc6c-908d61330b70 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f739658b-f842-4d97-bc6c-908d61330b70.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3cd4d3f5-9081-4dff-a418-3380f22ba694 {
  margin-left: auto;
margin-bottom: 16px;
margin-right: auto;
max-width: 81%;
aspect-ratio: 668/170;
text-align: center;
}





  #s-3cd4d3f5-9081-4dff-a418-3380f22ba694 img.shogun-image,
  #s-3cd4d3f5-9081-4dff-a418-3380f22ba694 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3cd4d3f5-9081-4dff-a418-3380f22ba694 {
    width: 100%;
    height: auto;
  }



  #s-3cd4d3f5-9081-4dff-a418-3380f22ba694 img.shogun-image {
    

    
    
    
  }


#s-3cd4d3f5-9081-4dff-a418-3380f22ba694 .shogun-image-content {
  
    align-items: center;
  
}

#s-8be0f3f5-a08d-45f2-838d-c353294066c4 {
  border-style: solid;
padding-top: 9px;
padding-left: 20px;
padding-bottom: 11px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(27, 27, 27, 1);
border-radius: 1px;
background-color: rgba(255, 255, 255, 0);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(27, 27, 27, 1);
}
#s-8be0f3f5-a08d-45f2-838d-c353294066c4:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 1px !important;
background-color: rgba(255, 255, 255, 0.6) !important;
text-decoration: none !important;
color: rgba(27, 27, 27, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-8be0f3f5-a08d-45f2-838d-c353294066c4:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 1px !important;
background-color: rgba(255, 255, 255, 0.6) !important;
text-decoration: none !important;
color: rgba(27, 27, 27, 1) !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 768px) and (max-width: 991px){#s-8be0f3f5-a08d-45f2-838d-c353294066c4 {
  padding-left: 15px;
padding-right: 15px;
}
}

  #s-8be0f3f5-a08d-45f2-838d-c353294066c4-root {
    text-align: center;
  }


#s-8be0f3f5-a08d-45f2-838d-c353294066c4.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-8be0f3f5-a08d-45f2-838d-c353294066c4-root {
    text-align: center;
  }


#s-8be0f3f5-a08d-45f2-838d-c353294066c4.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-8be0f3f5-a08d-45f2-838d-c353294066c4-root {
    text-align: center;
  }


#s-8be0f3f5-a08d-45f2-838d-c353294066c4.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-8be0f3f5-a08d-45f2-838d-c353294066c4-root {
    text-align: center;
  }


#s-8be0f3f5-a08d-45f2-838d-c353294066c4.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 11px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-8be0f3f5-a08d-45f2-838d-c353294066c4-root {
    text-align: center;
  }


#s-8be0f3f5-a08d-45f2-838d-c353294066c4.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-ffbd6f8d-5794-49ca-af5d-27a8efef67c6 {
  min-height: 40px;
}
@media (max-width: 767px){#s-ffbd6f8d-5794-49ca-af5d-27a8efef67c6 {
  display: none;
}
#s-ffbd6f8d-5794-49ca-af5d-27a8efef67c6, #wrap-s-ffbd6f8d-5794-49ca-af5d-27a8efef67c6 { display: none !important; }}







#s-ffbd6f8d-5794-49ca-af5d-27a8efef67c6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ffbd6f8d-5794-49ca-af5d-27a8efef67c6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-58ad0469-38f2-462a-875f-956c99db15e4 {
  min-height: 50px;
}
@media (max-width: 767px){#s-58ad0469-38f2-462a-875f-956c99db15e4 {
  display: none;
}
#s-58ad0469-38f2-462a-875f-956c99db15e4, #wrap-s-58ad0469-38f2-462a-875f-956c99db15e4 { display: none !important; }}







#s-58ad0469-38f2-462a-875f-956c99db15e4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-58ad0469-38f2-462a-875f-956c99db15e4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2525fbe0-1ddd-43e1-a391-a66614e7dfd3 {
  margin-bottom: 1%;
text-align: center;
}







  #s-2525fbe0-1ddd-43e1-a391-a66614e7dfd3 img.shogun-image {
    

    
    
    
  }


#s-2525fbe0-1ddd-43e1-a391-a66614e7dfd3 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-8bd37bfb-31c4-4dcf-bb5c-3fa5533673b2 {
  min-height: 40px;
}
@media (max-width: 767px){#s-8bd37bfb-31c4-4dcf-bb5c-3fa5533673b2 {
  display: none;
}
#s-8bd37bfb-31c4-4dcf-bb5c-3fa5533673b2, #wrap-s-8bd37bfb-31c4-4dcf-bb5c-3fa5533673b2 { display: none !important; }}







#s-8bd37bfb-31c4-4dcf-bb5c-3fa5533673b2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8bd37bfb-31c4-4dcf-bb5c-3fa5533673b2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a0b20bb6-bb7a-4b05-97ab-6e296728cb62 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-a0b20bb6-bb7a-4b05-97ab-6e296728cb62 {
  display: none;
}
#s-a0b20bb6-bb7a-4b05-97ab-6e296728cb62, #wrap-s-a0b20bb6-bb7a-4b05-97ab-6e296728cb62 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a0b20bb6-bb7a-4b05-97ab-6e296728cb62 {
  display: none;
}
#s-a0b20bb6-bb7a-4b05-97ab-6e296728cb62, #wrap-s-a0b20bb6-bb7a-4b05-97ab-6e296728cb62 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a0b20bb6-bb7a-4b05-97ab-6e296728cb62 {
  display: none;
}
#s-a0b20bb6-bb7a-4b05-97ab-6e296728cb62, #wrap-s-a0b20bb6-bb7a-4b05-97ab-6e296728cb62 { display: none !important; }}







#s-a0b20bb6-bb7a-4b05-97ab-6e296728cb62 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a0b20bb6-bb7a-4b05-97ab-6e296728cb62.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-88449049-6142-4e68-9f70-5d112f522b88 {
  max-width: 750px;
aspect-ratio: 750/658;
text-align: center;
}
@media (min-width: 1200px){#s-88449049-6142-4e68-9f70-5d112f522b88 {
  display: none;
}
#s-88449049-6142-4e68-9f70-5d112f522b88, #wrap-s-88449049-6142-4e68-9f70-5d112f522b88 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-88449049-6142-4e68-9f70-5d112f522b88 {
  display: none;
}
#s-88449049-6142-4e68-9f70-5d112f522b88, #wrap-s-88449049-6142-4e68-9f70-5d112f522b88 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-88449049-6142-4e68-9f70-5d112f522b88 {
  display: none;
}
#s-88449049-6142-4e68-9f70-5d112f522b88, #wrap-s-88449049-6142-4e68-9f70-5d112f522b88 { display: none !important; }}




  #s-88449049-6142-4e68-9f70-5d112f522b88 img.shogun-image,
  #s-88449049-6142-4e68-9f70-5d112f522b88 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-88449049-6142-4e68-9f70-5d112f522b88 {
    width: 100%;
    height: auto;
  }



  #s-88449049-6142-4e68-9f70-5d112f522b88 img.shogun-image {
    

    
    
    
  }


#s-88449049-6142-4e68-9f70-5d112f522b88 .shogun-image-content {
  
    align-items: center;
  
}

#s-161eed30-cac8-453c-9e79-85cbc55be2c6 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 1600px;
}
@media (min-width: 1200px){#s-161eed30-cac8-453c-9e79-85cbc55be2c6 {
  display: none;
}
#s-161eed30-cac8-453c-9e79-85cbc55be2c6, #wrap-s-161eed30-cac8-453c-9e79-85cbc55be2c6 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-161eed30-cac8-453c-9e79-85cbc55be2c6 {
  display: none;
}
#s-161eed30-cac8-453c-9e79-85cbc55be2c6, #wrap-s-161eed30-cac8-453c-9e79-85cbc55be2c6 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-161eed30-cac8-453c-9e79-85cbc55be2c6 {
  display: none;
}
#s-161eed30-cac8-453c-9e79-85cbc55be2c6, #wrap-s-161eed30-cac8-453c-9e79-85cbc55be2c6 { display: none !important; }}







#s-161eed30-cac8-453c-9e79-85cbc55be2c6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-161eed30-cac8-453c-9e79-85cbc55be2c6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cf1b80cb-306f-4383-b3f1-2399849c29b1 {
  margin-top: 10px;
margin-left: 10px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-cf1b80cb-306f-4383-b3f1-2399849c29b1"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 768px) {
[id="s-cf1b80cb-306f-4383-b3f1-2399849c29b1"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-cf1b80cb-306f-4383-b3f1-2399849c29b1"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-cf1b80cb-306f-4383-b3f1-2399849c29b1"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 7.5px);
}

}

#s-f96f9b98-e43b-4002-8e4d-79c068f9b694 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(27, 27, 27, 1);
border-radius: 0px;
min-height: 30px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
line-height: 1.5em;
letter-spacing: 1px;
background-image: none;
hover-type: color;
color: rgba(27, 27, 27, 1);
}
#s-f96f9b98-e43b-4002-8e4d-79c068f9b694:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 0px !important;
background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-f96f9b98-e43b-4002-8e4d-79c068f9b694:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 0px !important;
background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}

  #s-f96f9b98-e43b-4002-8e4d-79c068f9b694-root {
    text-align: center;
  }


#s-f96f9b98-e43b-4002-8e4d-79c068f9b694.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
@media (min-width: 1200px){
  #s-f96f9b98-e43b-4002-8e4d-79c068f9b694-root {
    text-align: center;
  }


#s-f96f9b98-e43b-4002-8e4d-79c068f9b694.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f96f9b98-e43b-4002-8e4d-79c068f9b694-root {
    text-align: center;
  }


#s-f96f9b98-e43b-4002-8e4d-79c068f9b694.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f96f9b98-e43b-4002-8e4d-79c068f9b694-root {
    text-align: center;
  }


#s-f96f9b98-e43b-4002-8e4d-79c068f9b694.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (max-width: 767px){
  #s-f96f9b98-e43b-4002-8e4d-79c068f9b694-root {
    text-align: center;
  }


#s-f96f9b98-e43b-4002-8e4d-79c068f9b694.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}
#s-582204a7-7dfa-4979-8b8c-da9dae4c5531 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(27, 27, 27, 1);
border-radius: 0px;
min-height: 30px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
line-height: 1.5em;
letter-spacing: 1px;
background-image: none;
hover-type: color;
color: rgba(27, 27, 27, 1);
}
#s-582204a7-7dfa-4979-8b8c-da9dae4c5531:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 0px !important;
background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-582204a7-7dfa-4979-8b8c-da9dae4c5531:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 0px !important;
background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}

  #s-582204a7-7dfa-4979-8b8c-da9dae4c5531-root {
    text-align: center;
  }


#s-582204a7-7dfa-4979-8b8c-da9dae4c5531.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
@media (min-width: 1200px){
  #s-582204a7-7dfa-4979-8b8c-da9dae4c5531-root {
    text-align: center;
  }


#s-582204a7-7dfa-4979-8b8c-da9dae4c5531.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-582204a7-7dfa-4979-8b8c-da9dae4c5531-root {
    text-align: center;
  }


#s-582204a7-7dfa-4979-8b8c-da9dae4c5531.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-582204a7-7dfa-4979-8b8c-da9dae4c5531-root {
    text-align: center;
  }


#s-582204a7-7dfa-4979-8b8c-da9dae4c5531.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (max-width: 767px){
  #s-582204a7-7dfa-4979-8b8c-da9dae4c5531-root {
    text-align: center;
  }


#s-582204a7-7dfa-4979-8b8c-da9dae4c5531.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}
#s-a8f850e3-5fa8-41c3-83f1-9046fae25c3e {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 1600px;
}
@media (min-width: 1200px){#s-a8f850e3-5fa8-41c3-83f1-9046fae25c3e {
  display: none;
}
#s-a8f850e3-5fa8-41c3-83f1-9046fae25c3e, #wrap-s-a8f850e3-5fa8-41c3-83f1-9046fae25c3e { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a8f850e3-5fa8-41c3-83f1-9046fae25c3e {
  display: none;
}
#s-a8f850e3-5fa8-41c3-83f1-9046fae25c3e, #wrap-s-a8f850e3-5fa8-41c3-83f1-9046fae25c3e { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a8f850e3-5fa8-41c3-83f1-9046fae25c3e {
  display: none;
}
#s-a8f850e3-5fa8-41c3-83f1-9046fae25c3e, #wrap-s-a8f850e3-5fa8-41c3-83f1-9046fae25c3e { display: none !important; }}







#s-a8f850e3-5fa8-41c3-83f1-9046fae25c3e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a8f850e3-5fa8-41c3-83f1-9046fae25c3e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-786f5b1b-f37a-4550-8727-bfde357c17d7 {
  margin-top: 10px;
margin-left: 10px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-786f5b1b-f37a-4550-8727-bfde357c17d7"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 768px) {
[id="s-786f5b1b-f37a-4550-8727-bfde357c17d7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-786f5b1b-f37a-4550-8727-bfde357c17d7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-786f5b1b-f37a-4550-8727-bfde357c17d7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 7.5px);
}

}

#s-83980938-b0b2-4757-93f8-7e9358d6dcf7 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(27, 27, 27, 1);
border-radius: 0px;
min-height: 30px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
line-height: 1.5em;
letter-spacing: 1px;
background-image: none;
hover-type: color;
color: rgba(27, 27, 27, 1);
}
#s-83980938-b0b2-4757-93f8-7e9358d6dcf7:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 0px !important;
background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-83980938-b0b2-4757-93f8-7e9358d6dcf7:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 0px !important;
background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}

  #s-83980938-b0b2-4757-93f8-7e9358d6dcf7-root {
    text-align: center;
  }


#s-83980938-b0b2-4757-93f8-7e9358d6dcf7.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
@media (min-width: 1200px){
  #s-83980938-b0b2-4757-93f8-7e9358d6dcf7-root {
    text-align: center;
  }


#s-83980938-b0b2-4757-93f8-7e9358d6dcf7.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-83980938-b0b2-4757-93f8-7e9358d6dcf7-root {
    text-align: center;
  }


#s-83980938-b0b2-4757-93f8-7e9358d6dcf7.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-83980938-b0b2-4757-93f8-7e9358d6dcf7-root {
    text-align: center;
  }


#s-83980938-b0b2-4757-93f8-7e9358d6dcf7.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (max-width: 767px){
  #s-83980938-b0b2-4757-93f8-7e9358d6dcf7-root {
    text-align: center;
  }


#s-83980938-b0b2-4757-93f8-7e9358d6dcf7.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}
#s-53f771a9-00fb-4bbc-b89e-7388c519054d {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(27, 27, 27, 1);
border-radius: 0px;
min-height: 30px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
line-height: 1.5em;
letter-spacing: 1px;
background-image: none;
hover-type: color;
color: rgba(27, 27, 27, 1);
}
#s-53f771a9-00fb-4bbc-b89e-7388c519054d:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 0px !important;
background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-53f771a9-00fb-4bbc-b89e-7388c519054d:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 0px !important;
background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}

  #s-53f771a9-00fb-4bbc-b89e-7388c519054d-root {
    text-align: center;
  }


#s-53f771a9-00fb-4bbc-b89e-7388c519054d.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
@media (min-width: 1200px){
  #s-53f771a9-00fb-4bbc-b89e-7388c519054d-root {
    text-align: center;
  }


#s-53f771a9-00fb-4bbc-b89e-7388c519054d.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-53f771a9-00fb-4bbc-b89e-7388c519054d-root {
    text-align: center;
  }


#s-53f771a9-00fb-4bbc-b89e-7388c519054d.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-53f771a9-00fb-4bbc-b89e-7388c519054d-root {
    text-align: center;
  }


#s-53f771a9-00fb-4bbc-b89e-7388c519054d.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (max-width: 767px){
  #s-53f771a9-00fb-4bbc-b89e-7388c519054d-root {
    text-align: center;
  }


#s-53f771a9-00fb-4bbc-b89e-7388c519054d.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}
#s-902c3842-96fa-4b25-904c-07ba79bb19e8 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 1600px;
}
@media (min-width: 1200px){#s-902c3842-96fa-4b25-904c-07ba79bb19e8 {
  display: none;
}
#s-902c3842-96fa-4b25-904c-07ba79bb19e8, #wrap-s-902c3842-96fa-4b25-904c-07ba79bb19e8 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-902c3842-96fa-4b25-904c-07ba79bb19e8 {
  display: none;
}
#s-902c3842-96fa-4b25-904c-07ba79bb19e8, #wrap-s-902c3842-96fa-4b25-904c-07ba79bb19e8 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-902c3842-96fa-4b25-904c-07ba79bb19e8 {
  display: none;
}
#s-902c3842-96fa-4b25-904c-07ba79bb19e8, #wrap-s-902c3842-96fa-4b25-904c-07ba79bb19e8 { display: none !important; }}







#s-902c3842-96fa-4b25-904c-07ba79bb19e8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-902c3842-96fa-4b25-904c-07ba79bb19e8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-395bc5af-df1f-47c5-a399-425c864baaa5 {
  margin-top: 10px;
margin-left: 10px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-395bc5af-df1f-47c5-a399-425c864baaa5"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 768px) {
[id="s-395bc5af-df1f-47c5-a399-425c864baaa5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-395bc5af-df1f-47c5-a399-425c864baaa5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-395bc5af-df1f-47c5-a399-425c864baaa5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 7.5px);
}

}

#s-607a67b8-180c-4b3e-b4c1-c4f7979c58c4 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(27, 27, 27, 1);
border-radius: 0px;
min-height: 30px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
line-height: 1.5em;
letter-spacing: 1px;
background-image: none;
hover-type: color;
color: rgba(27, 27, 27, 1);
}
#s-607a67b8-180c-4b3e-b4c1-c4f7979c58c4:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 0px !important;
background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-607a67b8-180c-4b3e-b4c1-c4f7979c58c4:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 0px !important;
background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}

  #s-607a67b8-180c-4b3e-b4c1-c4f7979c58c4-root {
    text-align: center;
  }


#s-607a67b8-180c-4b3e-b4c1-c4f7979c58c4.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
@media (min-width: 1200px){
  #s-607a67b8-180c-4b3e-b4c1-c4f7979c58c4-root {
    text-align: center;
  }


#s-607a67b8-180c-4b3e-b4c1-c4f7979c58c4.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-607a67b8-180c-4b3e-b4c1-c4f7979c58c4-root {
    text-align: center;
  }


#s-607a67b8-180c-4b3e-b4c1-c4f7979c58c4.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-607a67b8-180c-4b3e-b4c1-c4f7979c58c4-root {
    text-align: center;
  }


#s-607a67b8-180c-4b3e-b4c1-c4f7979c58c4.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (max-width: 767px){
  #s-607a67b8-180c-4b3e-b4c1-c4f7979c58c4-root {
    text-align: center;
  }


#s-607a67b8-180c-4b3e-b4c1-c4f7979c58c4.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}
#s-25703e24-cdc3-4dc2-81ae-d0705a18aaa4 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(27, 27, 27, 1);
border-radius: 0px;
min-height: 30px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
line-height: 1.5em;
letter-spacing: 1px;
background-image: none;
hover-type: color;
color: rgba(27, 27, 27, 1);
}
#s-25703e24-cdc3-4dc2-81ae-d0705a18aaa4:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 0px !important;
background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-25703e24-cdc3-4dc2-81ae-d0705a18aaa4:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 0px !important;
background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}

  #s-25703e24-cdc3-4dc2-81ae-d0705a18aaa4-root {
    text-align: center;
  }


#s-25703e24-cdc3-4dc2-81ae-d0705a18aaa4.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
@media (min-width: 1200px){
  #s-25703e24-cdc3-4dc2-81ae-d0705a18aaa4-root {
    text-align: center;
  }


#s-25703e24-cdc3-4dc2-81ae-d0705a18aaa4.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-25703e24-cdc3-4dc2-81ae-d0705a18aaa4-root {
    text-align: center;
  }


#s-25703e24-cdc3-4dc2-81ae-d0705a18aaa4.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-25703e24-cdc3-4dc2-81ae-d0705a18aaa4-root {
    text-align: center;
  }


#s-25703e24-cdc3-4dc2-81ae-d0705a18aaa4.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (max-width: 767px){
  #s-25703e24-cdc3-4dc2-81ae-d0705a18aaa4-root {
    text-align: center;
  }


#s-25703e24-cdc3-4dc2-81ae-d0705a18aaa4.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}
#s-26e76e47-a017-4767-85ac-4e77b93b2e30 {
  min-height: 40px;
}








#s-26e76e47-a017-4767-85ac-4e77b93b2e30 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-26e76e47-a017-4767-85ac-4e77b93b2e30.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-17d855bd-380f-4ccd-81ea-a76dcf0761b8 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-17d855bd-380f-4ccd-81ea-a76dcf0761b8 {
  display: none;
}
#s-17d855bd-380f-4ccd-81ea-a76dcf0761b8, #wrap-s-17d855bd-380f-4ccd-81ea-a76dcf0761b8 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-17d855bd-380f-4ccd-81ea-a76dcf0761b8 {
  display: none;
}
#s-17d855bd-380f-4ccd-81ea-a76dcf0761b8, #wrap-s-17d855bd-380f-4ccd-81ea-a76dcf0761b8 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-17d855bd-380f-4ccd-81ea-a76dcf0761b8 {
  display: none;
}
#s-17d855bd-380f-4ccd-81ea-a76dcf0761b8, #wrap-s-17d855bd-380f-4ccd-81ea-a76dcf0761b8 { display: none !important; }}







#s-17d855bd-380f-4ccd-81ea-a76dcf0761b8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-17d855bd-380f-4ccd-81ea-a76dcf0761b8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bd0b5d04-d529-4f47-aa89-0ba6c6da1400 {
  max-width: 750px;
aspect-ratio: 750/810;
text-align: center;
}
@media (min-width: 1200px){#s-bd0b5d04-d529-4f47-aa89-0ba6c6da1400 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-bd0b5d04-d529-4f47-aa89-0ba6c6da1400 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-bd0b5d04-d529-4f47-aa89-0ba6c6da1400 {
  
}
}




  #s-bd0b5d04-d529-4f47-aa89-0ba6c6da1400 img.shogun-image,
  #s-bd0b5d04-d529-4f47-aa89-0ba6c6da1400 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-bd0b5d04-d529-4f47-aa89-0ba6c6da1400 {
    width: 100%;
    height: auto;
  }



  #s-bd0b5d04-d529-4f47-aa89-0ba6c6da1400 img.shogun-image {
    

    
    
    
  }


#s-bd0b5d04-d529-4f47-aa89-0ba6c6da1400 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-9f94e301-af71-413c-8189-807a21a9a019 {
  border-style: solid;
margin-top: 15px;
margin-bottom: 7px;
padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(27, 27, 27, 1);
min-height: 30px;
background-color: rgba(255, 255, 255, 0);
text-align: center;
text-decoration: none;
line-height: 1.5em;
letter-spacing: 1px;
background-image: none;
hover-type: color;
color: rgba(27, 27, 27, 1);
}
#s-9f94e301-af71-413c-8189-807a21a9a019:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-9f94e301-af71-413c-8189-807a21a9a019:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}

  #s-9f94e301-af71-413c-8189-807a21a9a019-root {
    text-align: center;
  }


#s-9f94e301-af71-413c-8189-807a21a9a019.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-9f94e301-af71-413c-8189-807a21a9a019-root {
    text-align: center;
  }


#s-9f94e301-af71-413c-8189-807a21a9a019.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9f94e301-af71-413c-8189-807a21a9a019-root {
    text-align: center;
  }


#s-9f94e301-af71-413c-8189-807a21a9a019.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9f94e301-af71-413c-8189-807a21a9a019-root {
    text-align: center;
  }


#s-9f94e301-af71-413c-8189-807a21a9a019.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-9f94e301-af71-413c-8189-807a21a9a019-root {
    text-align: center;
  }


#s-9f94e301-af71-413c-8189-807a21a9a019.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-06408ba5-2f20-414b-a8f3-ddd0585e6fcf {
  min-height: 40px;
}








#s-06408ba5-2f20-414b-a8f3-ddd0585e6fcf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-06408ba5-2f20-414b-a8f3-ddd0585e6fcf.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-096fd713-d02a-4b67-99d0-063c5ffbf694 {
  margin-left: 3%;
margin-right: 3%;
}
@media (min-width: 1200px){#s-096fd713-d02a-4b67-99d0-063c5ffbf694 {
  display: none;
}
#s-096fd713-d02a-4b67-99d0-063c5ffbf694, #wrap-s-096fd713-d02a-4b67-99d0-063c5ffbf694 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-096fd713-d02a-4b67-99d0-063c5ffbf694 {
  display: none;
}
#s-096fd713-d02a-4b67-99d0-063c5ffbf694, #wrap-s-096fd713-d02a-4b67-99d0-063c5ffbf694 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-096fd713-d02a-4b67-99d0-063c5ffbf694 {
  display: none;
}
#s-096fd713-d02a-4b67-99d0-063c5ffbf694, #wrap-s-096fd713-d02a-4b67-99d0-063c5ffbf694 { display: none !important; }}@media (max-width: 767px){#s-096fd713-d02a-4b67-99d0-063c5ffbf694 {
  
}
}
@media (min-width: 0px) {
[id="s-096fd713-d02a-4b67-99d0-063c5ffbf694"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-096fd713-d02a-4b67-99d0-063c5ffbf694"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-096fd713-d02a-4b67-99d0-063c5ffbf694"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-096fd713-d02a-4b67-99d0-063c5ffbf694"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-7a5c2f5a-c75d-4608-b4c0-d073d7f08885 {
  min-height: 40px;
}








#s-7a5c2f5a-c75d-4608-b4c0-d073d7f08885 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7a5c2f5a-c75d-4608-b4c0-d073d7f08885.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-55aa7a4e-8cc3-49f4-bcfd-715fcbddaf85 {
  max-width: 706px;
aspect-ratio: 706/730;
text-align: center;
}





  #s-55aa7a4e-8cc3-49f4-bcfd-715fcbddaf85 img.shogun-image,
  #s-55aa7a4e-8cc3-49f4-bcfd-715fcbddaf85 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-55aa7a4e-8cc3-49f4-bcfd-715fcbddaf85 {
    width: 100%;
    height: auto;
  }



  #s-55aa7a4e-8cc3-49f4-bcfd-715fcbddaf85 img.shogun-image {
    

    
    
    
  }


#s-55aa7a4e-8cc3-49f4-bcfd-715fcbddaf85 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-c352f956-d946-47ad-a21c-0c92454e82db {
  border-style: solid;
margin-top: 15px;
margin-bottom: 7px;
padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(27, 27, 27, 1);
min-height: 30px;
background-color: rgba(255, 255, 255, 0);
text-align: center;
text-decoration: none;
line-height: 1.5em;
letter-spacing: 1px;
background-image: none;
hover-type: color;
color: rgba(27, 27, 27, 1);
}
#s-c352f956-d946-47ad-a21c-0c92454e82db:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-c352f956-d946-47ad-a21c-0c92454e82db:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}

  #s-c352f956-d946-47ad-a21c-0c92454e82db-root {
    text-align: center;
  }


#s-c352f956-d946-47ad-a21c-0c92454e82db.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c352f956-d946-47ad-a21c-0c92454e82db-root {
    text-align: center;
  }


#s-c352f956-d946-47ad-a21c-0c92454e82db.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c352f956-d946-47ad-a21c-0c92454e82db-root {
    text-align: center;
  }


#s-c352f956-d946-47ad-a21c-0c92454e82db.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c352f956-d946-47ad-a21c-0c92454e82db-root {
    text-align: center;
  }


#s-c352f956-d946-47ad-a21c-0c92454e82db.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c352f956-d946-47ad-a21c-0c92454e82db-root {
    text-align: center;
  }


#s-c352f956-d946-47ad-a21c-0c92454e82db.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-2297848a-3050-452c-a8c4-d7764579f0ee {
  min-height: 40px;
}








#s-2297848a-3050-452c-a8c4-d7764579f0ee > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2297848a-3050-452c-a8c4-d7764579f0ee.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a292f0a2-4755-4d85-9ac7-e177dc4385c4 {
  max-width: 706px;
aspect-ratio: 706/730;
text-align: center;
}





  #s-a292f0a2-4755-4d85-9ac7-e177dc4385c4 img.shogun-image,
  #s-a292f0a2-4755-4d85-9ac7-e177dc4385c4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a292f0a2-4755-4d85-9ac7-e177dc4385c4 {
    width: 100%;
    height: auto;
  }



  #s-a292f0a2-4755-4d85-9ac7-e177dc4385c4 img.shogun-image {
    

    
    
    
  }


#s-a292f0a2-4755-4d85-9ac7-e177dc4385c4 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-467187bf-d3a9-4f0d-b2e0-f528bc594332 {
  border-style: solid;
margin-top: 15px;
margin-bottom: 7px;
padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(27, 27, 27, 1);
min-height: 30px;
background-color: rgba(255, 255, 255, 0);
text-align: center;
text-decoration: none;
line-height: 1.5em;
letter-spacing: 1px;
background-image: none;
hover-type: color;
color: rgba(27, 27, 27, 1);
}
#s-467187bf-d3a9-4f0d-b2e0-f528bc594332:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-467187bf-d3a9-4f0d-b2e0-f528bc594332:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}

  #s-467187bf-d3a9-4f0d-b2e0-f528bc594332-root {
    text-align: center;
  }


#s-467187bf-d3a9-4f0d-b2e0-f528bc594332.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-467187bf-d3a9-4f0d-b2e0-f528bc594332-root {
    text-align: center;
  }


#s-467187bf-d3a9-4f0d-b2e0-f528bc594332.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-467187bf-d3a9-4f0d-b2e0-f528bc594332-root {
    text-align: center;
  }


#s-467187bf-d3a9-4f0d-b2e0-f528bc594332.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-467187bf-d3a9-4f0d-b2e0-f528bc594332-root {
    text-align: center;
  }


#s-467187bf-d3a9-4f0d-b2e0-f528bc594332.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-467187bf-d3a9-4f0d-b2e0-f528bc594332-root {
    text-align: center;
  }


#s-467187bf-d3a9-4f0d-b2e0-f528bc594332.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-10e3a781-b0bd-443f-98c8-2ad754137f00 {
  min-height: 40px;
}
@media (min-width: 1200px){#s-10e3a781-b0bd-443f-98c8-2ad754137f00 {
  display: none;
}
#s-10e3a781-b0bd-443f-98c8-2ad754137f00, #wrap-s-10e3a781-b0bd-443f-98c8-2ad754137f00 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-10e3a781-b0bd-443f-98c8-2ad754137f00 {
  display: none;
}
#s-10e3a781-b0bd-443f-98c8-2ad754137f00, #wrap-s-10e3a781-b0bd-443f-98c8-2ad754137f00 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-10e3a781-b0bd-443f-98c8-2ad754137f00 {
  display: none;
}
#s-10e3a781-b0bd-443f-98c8-2ad754137f00, #wrap-s-10e3a781-b0bd-443f-98c8-2ad754137f00 { display: none !important; }}







#s-10e3a781-b0bd-443f-98c8-2ad754137f00 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-10e3a781-b0bd-443f-98c8-2ad754137f00.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e130ec27-47bb-493b-b563-f0e1cfc5f8a5 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-e130ec27-47bb-493b-b563-f0e1cfc5f8a5 {
  display: none;
}
#s-e130ec27-47bb-493b-b563-f0e1cfc5f8a5, #wrap-s-e130ec27-47bb-493b-b563-f0e1cfc5f8a5 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e130ec27-47bb-493b-b563-f0e1cfc5f8a5 {
  display: none;
}
#s-e130ec27-47bb-493b-b563-f0e1cfc5f8a5, #wrap-s-e130ec27-47bb-493b-b563-f0e1cfc5f8a5 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e130ec27-47bb-493b-b563-f0e1cfc5f8a5 {
  display: none;
}
#s-e130ec27-47bb-493b-b563-f0e1cfc5f8a5, #wrap-s-e130ec27-47bb-493b-b563-f0e1cfc5f8a5 { display: none !important; }}







#s-e130ec27-47bb-493b-b563-f0e1cfc5f8a5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e130ec27-47bb-493b-b563-f0e1cfc5f8a5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1dd1bb79-73ec-430f-a506-f43be6abb7b0 {
  margin-bottom: 0%;
max-width: 750px;
aspect-ratio: 750/1366;
text-align: center;
}
@media (min-width: 1200px){#s-1dd1bb79-73ec-430f-a506-f43be6abb7b0 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-1dd1bb79-73ec-430f-a506-f43be6abb7b0 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-1dd1bb79-73ec-430f-a506-f43be6abb7b0 {
  
}
}




  #s-1dd1bb79-73ec-430f-a506-f43be6abb7b0 img.shogun-image,
  #s-1dd1bb79-73ec-430f-a506-f43be6abb7b0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1dd1bb79-73ec-430f-a506-f43be6abb7b0 {
    width: 100%;
    height: auto;
  }



  #s-1dd1bb79-73ec-430f-a506-f43be6abb7b0 img.shogun-image {
    

    
    
    
  }


#s-1dd1bb79-73ec-430f-a506-f43be6abb7b0 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-aa74f876-a487-46c6-93b2-2397a530075a {
  border-style: solid;
margin-bottom: 8.3%;
padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(27, 27, 27, 1);
min-height: 30px;
background-color: rgba(255, 255, 255, 0);
text-align: center;
text-decoration: none;
line-height: 1.5em;
letter-spacing: 1px;
background-image: none;
hover-type: color;
color: rgba(27, 27, 27, 1);
}
#s-aa74f876-a487-46c6-93b2-2397a530075a:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-aa74f876-a487-46c6-93b2-2397a530075a:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}

  #s-aa74f876-a487-46c6-93b2-2397a530075a-root {
    text-align: center;
  }


#s-aa74f876-a487-46c6-93b2-2397a530075a.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-aa74f876-a487-46c6-93b2-2397a530075a-root {
    text-align: center;
  }


#s-aa74f876-a487-46c6-93b2-2397a530075a.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-aa74f876-a487-46c6-93b2-2397a530075a-root {
    text-align: center;
  }


#s-aa74f876-a487-46c6-93b2-2397a530075a.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-aa74f876-a487-46c6-93b2-2397a530075a-root {
    text-align: center;
  }


#s-aa74f876-a487-46c6-93b2-2397a530075a.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-aa74f876-a487-46c6-93b2-2397a530075a-root {
    text-align: center;
  }


#s-aa74f876-a487-46c6-93b2-2397a530075a.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-1064f80f-aecd-4d83-a0e4-e8918074f40a {
  min-height: 40px;
}








#s-1064f80f-aecd-4d83-a0e4-e8918074f40a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1064f80f-aecd-4d83-a0e4-e8918074f40a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b59cdfb4-e5a0-45dd-a053-db69add94ac3 {
  margin-left: 3%;
margin-right: 3%;
}
@media (min-width: 1200px){#s-b59cdfb4-e5a0-45dd-a053-db69add94ac3 {
  display: none;
}
#s-b59cdfb4-e5a0-45dd-a053-db69add94ac3, #wrap-s-b59cdfb4-e5a0-45dd-a053-db69add94ac3 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b59cdfb4-e5a0-45dd-a053-db69add94ac3 {
  display: none;
}
#s-b59cdfb4-e5a0-45dd-a053-db69add94ac3, #wrap-s-b59cdfb4-e5a0-45dd-a053-db69add94ac3 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b59cdfb4-e5a0-45dd-a053-db69add94ac3 {
  display: none;
}
#s-b59cdfb4-e5a0-45dd-a053-db69add94ac3, #wrap-s-b59cdfb4-e5a0-45dd-a053-db69add94ac3 { display: none !important; }}@media (max-width: 767px){#s-b59cdfb4-e5a0-45dd-a053-db69add94ac3 {
  
}
}
@media (min-width: 0px) {
[id="s-b59cdfb4-e5a0-45dd-a053-db69add94ac3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b59cdfb4-e5a0-45dd-a053-db69add94ac3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b59cdfb4-e5a0-45dd-a053-db69add94ac3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b59cdfb4-e5a0-45dd-a053-db69add94ac3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-bd9115db-dfc1-4236-a537-7edba2ab4908 {
  min-height: 40px;
}








#s-bd9115db-dfc1-4236-a537-7edba2ab4908 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bd9115db-dfc1-4236-a537-7edba2ab4908.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e8f394bd-16f6-47f0-af06-ebc9f61dec2a {
  max-width: 706px;
aspect-ratio: 706/744;
text-align: center;
}





  #s-e8f394bd-16f6-47f0-af06-ebc9f61dec2a img.shogun-image,
  #s-e8f394bd-16f6-47f0-af06-ebc9f61dec2a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e8f394bd-16f6-47f0-af06-ebc9f61dec2a {
    width: 100%;
    height: auto;
  }



  #s-e8f394bd-16f6-47f0-af06-ebc9f61dec2a img.shogun-image {
    

    
    
    
  }


#s-e8f394bd-16f6-47f0-af06-ebc9f61dec2a .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-c158bf00-594d-4c70-9143-6faae43ca8a0 {
  border-style: solid;
margin-top: 15px;
margin-bottom: 7px;
padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(27, 27, 27, 1);
min-height: 30px;
background-color: rgba(255, 255, 255, 0);
text-align: center;
text-decoration: none;
line-height: 1.5em;
letter-spacing: 1px;
background-image: none;
hover-type: color;
color: rgba(27, 27, 27, 1);
}
#s-c158bf00-594d-4c70-9143-6faae43ca8a0:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-c158bf00-594d-4c70-9143-6faae43ca8a0:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}

  #s-c158bf00-594d-4c70-9143-6faae43ca8a0-root {
    text-align: center;
  }


#s-c158bf00-594d-4c70-9143-6faae43ca8a0.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c158bf00-594d-4c70-9143-6faae43ca8a0-root {
    text-align: center;
  }


#s-c158bf00-594d-4c70-9143-6faae43ca8a0.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c158bf00-594d-4c70-9143-6faae43ca8a0-root {
    text-align: center;
  }


#s-c158bf00-594d-4c70-9143-6faae43ca8a0.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c158bf00-594d-4c70-9143-6faae43ca8a0-root {
    text-align: center;
  }


#s-c158bf00-594d-4c70-9143-6faae43ca8a0.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c158bf00-594d-4c70-9143-6faae43ca8a0-root {
    text-align: center;
  }


#s-c158bf00-594d-4c70-9143-6faae43ca8a0.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-81772ced-7ed6-484b-a62c-6d1c70e35b2c {
  min-height: 40px;
}








#s-81772ced-7ed6-484b-a62c-6d1c70e35b2c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-81772ced-7ed6-484b-a62c-6d1c70e35b2c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f67e809a-61a2-4ea4-88b2-481a4d06a5a7 {
  max-width: 706px;
aspect-ratio: 706/746;
text-align: center;
}





  #s-f67e809a-61a2-4ea4-88b2-481a4d06a5a7 img.shogun-image,
  #s-f67e809a-61a2-4ea4-88b2-481a4d06a5a7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f67e809a-61a2-4ea4-88b2-481a4d06a5a7 {
    width: 100%;
    height: auto;
  }



  #s-f67e809a-61a2-4ea4-88b2-481a4d06a5a7 img.shogun-image {
    

    
    
    
  }


#s-f67e809a-61a2-4ea4-88b2-481a4d06a5a7 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-ae434c77-4d9c-49ea-a992-6e1dbdb37dbd {
  border-style: solid;
margin-top: 15px;
margin-bottom: 7px;
padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(27, 27, 27, 1);
min-height: 30px;
background-color: rgba(255, 255, 255, 0);
text-align: center;
text-decoration: none;
line-height: 1.5em;
letter-spacing: 1px;
background-image: none;
hover-type: color;
color: rgba(27, 27, 27, 1);
}
#s-ae434c77-4d9c-49ea-a992-6e1dbdb37dbd:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-ae434c77-4d9c-49ea-a992-6e1dbdb37dbd:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}

  #s-ae434c77-4d9c-49ea-a992-6e1dbdb37dbd-root {
    text-align: center;
  }


#s-ae434c77-4d9c-49ea-a992-6e1dbdb37dbd.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ae434c77-4d9c-49ea-a992-6e1dbdb37dbd-root {
    text-align: center;
  }


#s-ae434c77-4d9c-49ea-a992-6e1dbdb37dbd.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ae434c77-4d9c-49ea-a992-6e1dbdb37dbd-root {
    text-align: center;
  }


#s-ae434c77-4d9c-49ea-a992-6e1dbdb37dbd.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ae434c77-4d9c-49ea-a992-6e1dbdb37dbd-root {
    text-align: center;
  }


#s-ae434c77-4d9c-49ea-a992-6e1dbdb37dbd.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ae434c77-4d9c-49ea-a992-6e1dbdb37dbd-root {
    text-align: center;
  }


#s-ae434c77-4d9c-49ea-a992-6e1dbdb37dbd.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-de3deb22-552c-44cc-b953-65655641f674 {
  min-height: 40px;
}
@media (min-width: 1200px){#s-de3deb22-552c-44cc-b953-65655641f674 {
  display: none;
}
#s-de3deb22-552c-44cc-b953-65655641f674, #wrap-s-de3deb22-552c-44cc-b953-65655641f674 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-de3deb22-552c-44cc-b953-65655641f674 {
  display: none;
}
#s-de3deb22-552c-44cc-b953-65655641f674, #wrap-s-de3deb22-552c-44cc-b953-65655641f674 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-de3deb22-552c-44cc-b953-65655641f674 {
  display: none;
}
#s-de3deb22-552c-44cc-b953-65655641f674, #wrap-s-de3deb22-552c-44cc-b953-65655641f674 { display: none !important; }}







#s-de3deb22-552c-44cc-b953-65655641f674 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-de3deb22-552c-44cc-b953-65655641f674.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-310f8fc1-ccc7-4ee9-ba41-f4c542b9121f {
  min-height: 50px;
}
@media (min-width: 1200px){#s-310f8fc1-ccc7-4ee9-ba41-f4c542b9121f {
  display: none;
}
#s-310f8fc1-ccc7-4ee9-ba41-f4c542b9121f, #wrap-s-310f8fc1-ccc7-4ee9-ba41-f4c542b9121f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-310f8fc1-ccc7-4ee9-ba41-f4c542b9121f {
  display: none;
}
#s-310f8fc1-ccc7-4ee9-ba41-f4c542b9121f, #wrap-s-310f8fc1-ccc7-4ee9-ba41-f4c542b9121f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-310f8fc1-ccc7-4ee9-ba41-f4c542b9121f {
  display: none;
}
#s-310f8fc1-ccc7-4ee9-ba41-f4c542b9121f, #wrap-s-310f8fc1-ccc7-4ee9-ba41-f4c542b9121f { display: none !important; }}







#s-310f8fc1-ccc7-4ee9-ba41-f4c542b9121f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-310f8fc1-ccc7-4ee9-ba41-f4c542b9121f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f0aa86ca-cf2a-42ac-9bf6-767f463251ad {
  max-width: 750px;
aspect-ratio: 750/460;
text-align: center;
}
@media (min-width: 1200px){#s-f0aa86ca-cf2a-42ac-9bf6-767f463251ad {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f0aa86ca-cf2a-42ac-9bf6-767f463251ad {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-f0aa86ca-cf2a-42ac-9bf6-767f463251ad {
  
}
}




  #s-f0aa86ca-cf2a-42ac-9bf6-767f463251ad img.shogun-image,
  #s-f0aa86ca-cf2a-42ac-9bf6-767f463251ad .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f0aa86ca-cf2a-42ac-9bf6-767f463251ad {
    width: 100%;
    height: auto;
  }



  #s-f0aa86ca-cf2a-42ac-9bf6-767f463251ad img.shogun-image {
    

    
    
    
  }


#s-f0aa86ca-cf2a-42ac-9bf6-767f463251ad .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-59742543-0af3-4905-89ef-bec8ed604520 {
  min-height: 40px;
}
@media (min-width: 1200px){#s-59742543-0af3-4905-89ef-bec8ed604520 {
  display: none;
}
#s-59742543-0af3-4905-89ef-bec8ed604520, #wrap-s-59742543-0af3-4905-89ef-bec8ed604520 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-59742543-0af3-4905-89ef-bec8ed604520 {
  display: none;
}
#s-59742543-0af3-4905-89ef-bec8ed604520, #wrap-s-59742543-0af3-4905-89ef-bec8ed604520 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-59742543-0af3-4905-89ef-bec8ed604520 {
  display: none;
}
#s-59742543-0af3-4905-89ef-bec8ed604520, #wrap-s-59742543-0af3-4905-89ef-bec8ed604520 { display: none !important; }}







#s-59742543-0af3-4905-89ef-bec8ed604520 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-59742543-0af3-4905-89ef-bec8ed604520.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c073916a-b38d-4c2e-abeb-5f4a319ef540 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-c073916a-b38d-4c2e-abeb-5f4a319ef540 {
  display: none;
}
#s-c073916a-b38d-4c2e-abeb-5f4a319ef540, #wrap-s-c073916a-b38d-4c2e-abeb-5f4a319ef540 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c073916a-b38d-4c2e-abeb-5f4a319ef540 {
  display: none;
}
#s-c073916a-b38d-4c2e-abeb-5f4a319ef540, #wrap-s-c073916a-b38d-4c2e-abeb-5f4a319ef540 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c073916a-b38d-4c2e-abeb-5f4a319ef540 {
  display: none;
}
#s-c073916a-b38d-4c2e-abeb-5f4a319ef540, #wrap-s-c073916a-b38d-4c2e-abeb-5f4a319ef540 { display: none !important; }}







#s-c073916a-b38d-4c2e-abeb-5f4a319ef540 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c073916a-b38d-4c2e-abeb-5f4a319ef540.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-de7f0b13-466f-4672-988f-55b37395c2ca {
  max-width: 750px;
aspect-ratio: 750/842;
text-align: center;
}
@media (min-width: 1200px){#s-de7f0b13-466f-4672-988f-55b37395c2ca {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-de7f0b13-466f-4672-988f-55b37395c2ca {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-de7f0b13-466f-4672-988f-55b37395c2ca {
  
}
}




  #s-de7f0b13-466f-4672-988f-55b37395c2ca img.shogun-image,
  #s-de7f0b13-466f-4672-988f-55b37395c2ca .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-de7f0b13-466f-4672-988f-55b37395c2ca {
    width: 100%;
    height: auto;
  }



  #s-de7f0b13-466f-4672-988f-55b37395c2ca img.shogun-image {
    

    
    
    
  }


#s-de7f0b13-466f-4672-988f-55b37395c2ca .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-a1059846-3f09-4803-8cb2-7f6bcea1db87 {
  border-style: solid;
margin-top: 15px;
margin-bottom: 7px;
padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(27, 27, 27, 1);
min-height: 30px;
background-color: rgba(255, 255, 255, 0);
text-align: center;
text-decoration: none;
line-height: 1.5em;
letter-spacing: 1px;
background-image: none;
hover-type: color;
color: rgba(27, 27, 27, 1);
}
#s-a1059846-3f09-4803-8cb2-7f6bcea1db87:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-a1059846-3f09-4803-8cb2-7f6bcea1db87:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}

  #s-a1059846-3f09-4803-8cb2-7f6bcea1db87-root {
    text-align: center;
  }


#s-a1059846-3f09-4803-8cb2-7f6bcea1db87.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-a1059846-3f09-4803-8cb2-7f6bcea1db87-root {
    text-align: center;
  }


#s-a1059846-3f09-4803-8cb2-7f6bcea1db87.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a1059846-3f09-4803-8cb2-7f6bcea1db87-root {
    text-align: center;
  }


#s-a1059846-3f09-4803-8cb2-7f6bcea1db87.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a1059846-3f09-4803-8cb2-7f6bcea1db87-root {
    text-align: center;
  }


#s-a1059846-3f09-4803-8cb2-7f6bcea1db87.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-a1059846-3f09-4803-8cb2-7f6bcea1db87-root {
    text-align: center;
  }


#s-a1059846-3f09-4803-8cb2-7f6bcea1db87.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-5c6c88a7-33ee-493c-8ccd-99c8eb641e54 {
  min-height: 40px;
}








#s-5c6c88a7-33ee-493c-8ccd-99c8eb641e54 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5c6c88a7-33ee-493c-8ccd-99c8eb641e54.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-34937237-e932-4f12-b96b-1ae7b54b4305 {
  margin-left: 3%;
margin-right: 3%;
}
@media (min-width: 1200px){#s-34937237-e932-4f12-b96b-1ae7b54b4305 {
  display: none;
}
#s-34937237-e932-4f12-b96b-1ae7b54b4305, #wrap-s-34937237-e932-4f12-b96b-1ae7b54b4305 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-34937237-e932-4f12-b96b-1ae7b54b4305 {
  display: none;
}
#s-34937237-e932-4f12-b96b-1ae7b54b4305, #wrap-s-34937237-e932-4f12-b96b-1ae7b54b4305 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-34937237-e932-4f12-b96b-1ae7b54b4305 {
  display: none;
}
#s-34937237-e932-4f12-b96b-1ae7b54b4305, #wrap-s-34937237-e932-4f12-b96b-1ae7b54b4305 { display: none !important; }}@media (max-width: 767px){#s-34937237-e932-4f12-b96b-1ae7b54b4305 {
  
}
}
@media (min-width: 0px) {
[id="s-34937237-e932-4f12-b96b-1ae7b54b4305"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-34937237-e932-4f12-b96b-1ae7b54b4305"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-34937237-e932-4f12-b96b-1ae7b54b4305"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-34937237-e932-4f12-b96b-1ae7b54b4305"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-0b9da29e-5748-4205-a37a-3b01b5d14c62 {
  min-height: 40px;
}








#s-0b9da29e-5748-4205-a37a-3b01b5d14c62 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0b9da29e-5748-4205-a37a-3b01b5d14c62.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-61580bb9-afec-49df-aa3c-419ab2144ddc {
  max-width: 710px;
aspect-ratio: 710/728;
text-align: center;
}





  #s-61580bb9-afec-49df-aa3c-419ab2144ddc img.shogun-image,
  #s-61580bb9-afec-49df-aa3c-419ab2144ddc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-61580bb9-afec-49df-aa3c-419ab2144ddc {
    width: 100%;
    height: auto;
  }



  #s-61580bb9-afec-49df-aa3c-419ab2144ddc img.shogun-image {
    

    
    
    
  }


#s-61580bb9-afec-49df-aa3c-419ab2144ddc .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-3c1f904f-8cd6-42a6-9aa2-0a55cef48867 {
  border-style: solid;
margin-top: 15px;
margin-bottom: 7px;
padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(27, 27, 27, 1);
min-height: 30px;
background-color: rgba(255, 255, 255, 0);
text-align: center;
text-decoration: none;
line-height: 1.5em;
letter-spacing: 1px;
background-image: none;
hover-type: color;
color: rgba(27, 27, 27, 1);
}
#s-3c1f904f-8cd6-42a6-9aa2-0a55cef48867:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-3c1f904f-8cd6-42a6-9aa2-0a55cef48867:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}

  #s-3c1f904f-8cd6-42a6-9aa2-0a55cef48867-root {
    text-align: center;
  }


#s-3c1f904f-8cd6-42a6-9aa2-0a55cef48867.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-3c1f904f-8cd6-42a6-9aa2-0a55cef48867-root {
    text-align: center;
  }


#s-3c1f904f-8cd6-42a6-9aa2-0a55cef48867.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-3c1f904f-8cd6-42a6-9aa2-0a55cef48867-root {
    text-align: center;
  }


#s-3c1f904f-8cd6-42a6-9aa2-0a55cef48867.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-3c1f904f-8cd6-42a6-9aa2-0a55cef48867-root {
    text-align: center;
  }


#s-3c1f904f-8cd6-42a6-9aa2-0a55cef48867.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-3c1f904f-8cd6-42a6-9aa2-0a55cef48867-root {
    text-align: center;
  }


#s-3c1f904f-8cd6-42a6-9aa2-0a55cef48867.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-eb703020-a517-48a9-abaf-a8b9adf2eb3d {
  min-height: 40px;
}








#s-eb703020-a517-48a9-abaf-a8b9adf2eb3d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-eb703020-a517-48a9-abaf-a8b9adf2eb3d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f6440102-9a4e-4778-818f-5d5fe569a746 {
  max-width: 706px;
aspect-ratio: 706/796;
text-align: center;
}





  #s-f6440102-9a4e-4778-818f-5d5fe569a746 img.shogun-image,
  #s-f6440102-9a4e-4778-818f-5d5fe569a746 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f6440102-9a4e-4778-818f-5d5fe569a746 {
    width: 100%;
    height: auto;
  }



  #s-f6440102-9a4e-4778-818f-5d5fe569a746 img.shogun-image {
    

    
    
    
  }


#s-f6440102-9a4e-4778-818f-5d5fe569a746 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-9ab26652-a281-4620-9cf1-646b41f98586 {
  border-style: solid;
margin-top: 15px;
margin-bottom: 7px;
padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(27, 27, 27, 1);
min-height: 30px;
background-color: rgba(255, 255, 255, 0);
text-align: center;
text-decoration: none;
line-height: 1.5em;
letter-spacing: 1px;
background-image: none;
hover-type: color;
color: rgba(27, 27, 27, 1);
}
#s-9ab26652-a281-4620-9cf1-646b41f98586:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-9ab26652-a281-4620-9cf1-646b41f98586:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}

  #s-9ab26652-a281-4620-9cf1-646b41f98586-root {
    text-align: center;
  }


#s-9ab26652-a281-4620-9cf1-646b41f98586.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-9ab26652-a281-4620-9cf1-646b41f98586-root {
    text-align: center;
  }


#s-9ab26652-a281-4620-9cf1-646b41f98586.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9ab26652-a281-4620-9cf1-646b41f98586-root {
    text-align: center;
  }


#s-9ab26652-a281-4620-9cf1-646b41f98586.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9ab26652-a281-4620-9cf1-646b41f98586-root {
    text-align: center;
  }


#s-9ab26652-a281-4620-9cf1-646b41f98586.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-9ab26652-a281-4620-9cf1-646b41f98586-root {
    text-align: center;
  }


#s-9ab26652-a281-4620-9cf1-646b41f98586.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-af6b6fd9-bcaf-483b-8087-b798033ed2b1 {
  min-height: 40px;
}
@media (min-width: 1200px){#s-af6b6fd9-bcaf-483b-8087-b798033ed2b1 {
  display: none;
}
#s-af6b6fd9-bcaf-483b-8087-b798033ed2b1, #wrap-s-af6b6fd9-bcaf-483b-8087-b798033ed2b1 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-af6b6fd9-bcaf-483b-8087-b798033ed2b1 {
  display: none;
}
#s-af6b6fd9-bcaf-483b-8087-b798033ed2b1, #wrap-s-af6b6fd9-bcaf-483b-8087-b798033ed2b1 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-af6b6fd9-bcaf-483b-8087-b798033ed2b1 {
  display: none;
}
#s-af6b6fd9-bcaf-483b-8087-b798033ed2b1, #wrap-s-af6b6fd9-bcaf-483b-8087-b798033ed2b1 { display: none !important; }}







#s-af6b6fd9-bcaf-483b-8087-b798033ed2b1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-af6b6fd9-bcaf-483b-8087-b798033ed2b1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b8bb27f2-9e5f-4448-ac33-1559b9f370d5 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-b8bb27f2-9e5f-4448-ac33-1559b9f370d5 {
  display: none;
}
#s-b8bb27f2-9e5f-4448-ac33-1559b9f370d5, #wrap-s-b8bb27f2-9e5f-4448-ac33-1559b9f370d5 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b8bb27f2-9e5f-4448-ac33-1559b9f370d5 {
  display: none;
}
#s-b8bb27f2-9e5f-4448-ac33-1559b9f370d5, #wrap-s-b8bb27f2-9e5f-4448-ac33-1559b9f370d5 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b8bb27f2-9e5f-4448-ac33-1559b9f370d5 {
  display: none;
}
#s-b8bb27f2-9e5f-4448-ac33-1559b9f370d5, #wrap-s-b8bb27f2-9e5f-4448-ac33-1559b9f370d5 { display: none !important; }}







#s-b8bb27f2-9e5f-4448-ac33-1559b9f370d5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b8bb27f2-9e5f-4448-ac33-1559b9f370d5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-30f0b320-24cb-4790-95aa-8470badff7b3 {
  max-width: 750px;
aspect-ratio: 750/878;
text-align: center;
}
@media (min-width: 1200px){#s-30f0b320-24cb-4790-95aa-8470badff7b3 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-30f0b320-24cb-4790-95aa-8470badff7b3 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-30f0b320-24cb-4790-95aa-8470badff7b3 {
  
}
}




  #s-30f0b320-24cb-4790-95aa-8470badff7b3 img.shogun-image,
  #s-30f0b320-24cb-4790-95aa-8470badff7b3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-30f0b320-24cb-4790-95aa-8470badff7b3 {
    width: 100%;
    height: auto;
  }



  #s-30f0b320-24cb-4790-95aa-8470badff7b3 img.shogun-image {
    

    
    
    
  }


#s-30f0b320-24cb-4790-95aa-8470badff7b3 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-c9edd11c-360a-4819-85fd-cd3fcad1171a {
  border-style: solid;
margin-top: 15px;
margin-bottom: 7px;
padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(27, 27, 27, 1);
min-height: 30px;
background-color: rgba(255, 255, 255, 0);
text-align: center;
text-decoration: none;
line-height: 1.5em;
letter-spacing: 1px;
background-image: none;
hover-type: color;
color: rgba(27, 27, 27, 1);
}
#s-c9edd11c-360a-4819-85fd-cd3fcad1171a:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-c9edd11c-360a-4819-85fd-cd3fcad1171a:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}

  #s-c9edd11c-360a-4819-85fd-cd3fcad1171a-root {
    text-align: center;
  }


#s-c9edd11c-360a-4819-85fd-cd3fcad1171a.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c9edd11c-360a-4819-85fd-cd3fcad1171a-root {
    text-align: center;
  }


#s-c9edd11c-360a-4819-85fd-cd3fcad1171a.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c9edd11c-360a-4819-85fd-cd3fcad1171a-root {
    text-align: center;
  }


#s-c9edd11c-360a-4819-85fd-cd3fcad1171a.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c9edd11c-360a-4819-85fd-cd3fcad1171a-root {
    text-align: center;
  }


#s-c9edd11c-360a-4819-85fd-cd3fcad1171a.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c9edd11c-360a-4819-85fd-cd3fcad1171a-root {
    text-align: center;
  }


#s-c9edd11c-360a-4819-85fd-cd3fcad1171a.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-e6a90220-6e40-4ff7-bc01-a72661412d47 {
  min-height: 40px;
}








#s-e6a90220-6e40-4ff7-bc01-a72661412d47 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e6a90220-6e40-4ff7-bc01-a72661412d47.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-81cad4f2-b6b4-4cdf-b673-e11b66e3eb52 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-81cad4f2-b6b4-4cdf-b673-e11b66e3eb52 {
  display: none;
}
#s-81cad4f2-b6b4-4cdf-b673-e11b66e3eb52, #wrap-s-81cad4f2-b6b4-4cdf-b673-e11b66e3eb52 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-81cad4f2-b6b4-4cdf-b673-e11b66e3eb52 {
  display: none;
}
#s-81cad4f2-b6b4-4cdf-b673-e11b66e3eb52, #wrap-s-81cad4f2-b6b4-4cdf-b673-e11b66e3eb52 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-81cad4f2-b6b4-4cdf-b673-e11b66e3eb52 {
  display: none;
}
#s-81cad4f2-b6b4-4cdf-b673-e11b66e3eb52, #wrap-s-81cad4f2-b6b4-4cdf-b673-e11b66e3eb52 { display: none !important; }}







#s-81cad4f2-b6b4-4cdf-b673-e11b66e3eb52 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-81cad4f2-b6b4-4cdf-b673-e11b66e3eb52.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a18192f5-ec44-4e95-a474-9ee2e7ee10c2 {
  text-align: center;
}
@media (min-width: 1200px){#s-a18192f5-ec44-4e95-a474-9ee2e7ee10c2 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a18192f5-ec44-4e95-a474-9ee2e7ee10c2 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-a18192f5-ec44-4e95-a474-9ee2e7ee10c2 {
  
}
}






  #s-a18192f5-ec44-4e95-a474-9ee2e7ee10c2 img.shogun-image {
    

    
    
    
  }


#s-a18192f5-ec44-4e95-a474-9ee2e7ee10c2 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-5e7e9ac9-8c88-40c7-a444-833773610e88 {
  min-height: 40px;
}
@media (min-width: 1200px){#s-5e7e9ac9-8c88-40c7-a444-833773610e88 {
  display: none;
}
#s-5e7e9ac9-8c88-40c7-a444-833773610e88, #wrap-s-5e7e9ac9-8c88-40c7-a444-833773610e88 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5e7e9ac9-8c88-40c7-a444-833773610e88 {
  display: none;
}
#s-5e7e9ac9-8c88-40c7-a444-833773610e88, #wrap-s-5e7e9ac9-8c88-40c7-a444-833773610e88 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-5e7e9ac9-8c88-40c7-a444-833773610e88 {
  display: none;
}
#s-5e7e9ac9-8c88-40c7-a444-833773610e88, #wrap-s-5e7e9ac9-8c88-40c7-a444-833773610e88 { display: none !important; }}







#s-5e7e9ac9-8c88-40c7-a444-833773610e88 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5e7e9ac9-8c88-40c7-a444-833773610e88.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-83c74a17-bcf5-4151-9697-963e65b7bc2e {
  min-height: 50px;
}
@media (max-width: 767px){#s-83c74a17-bcf5-4151-9697-963e65b7bc2e {
  display: none;
}
#s-83c74a17-bcf5-4151-9697-963e65b7bc2e, #wrap-s-83c74a17-bcf5-4151-9697-963e65b7bc2e { display: none !important; }}







#s-83c74a17-bcf5-4151-9697-963e65b7bc2e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-83c74a17-bcf5-4151-9697-963e65b7bc2e.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-bed465b5-fdad-4b8d-ab91-8d94b9d2f8e7 {
  margin-bottom: 2em;
padding-top: 10px;
text-align: center;
}
@media (max-width: 767px){#s-bed465b5-fdad-4b8d-ab91-8d94b9d2f8e7 {
  display: none;
}
#s-bed465b5-fdad-4b8d-ab91-8d94b9d2f8e7, #wrap-s-bed465b5-fdad-4b8d-ab91-8d94b9d2f8e7 { display: none !important; }}
#s-bed465b5-fdad-4b8d-ab91-8d94b9d2f8e7 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  font-family: "sofia-pro";
  font-style:  normal ;
  font-size: 32px;
  
  letter-spacing: 2px;
  
}


@media (max-width: 767px){#s-bed465b5-fdad-4b8d-ab91-8d94b9d2f8e7 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  font-family: "sofia-pro";
  font-style:  normal ;
  font-size: 28px;
  
  letter-spacing: 2px;
  
}


}
#s-07daf1ae-4779-4368-b3f4-81db58931b11 {
  margin-bottom: 2em;
padding-top: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-07daf1ae-4779-4368-b3f4-81db58931b11 {
  display: none;
}
#s-07daf1ae-4779-4368-b3f4-81db58931b11, #wrap-s-07daf1ae-4779-4368-b3f4-81db58931b11 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-07daf1ae-4779-4368-b3f4-81db58931b11 {
  display: none;
}
#s-07daf1ae-4779-4368-b3f4-81db58931b11, #wrap-s-07daf1ae-4779-4368-b3f4-81db58931b11 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-07daf1ae-4779-4368-b3f4-81db58931b11 {
  display: none;
}
#s-07daf1ae-4779-4368-b3f4-81db58931b11, #wrap-s-07daf1ae-4779-4368-b3f4-81db58931b11 { display: none !important; }}
#s-07daf1ae-4779-4368-b3f4-81db58931b11 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  font-family: "sofia-pro";
  font-style:  normal ;
  font-size: 25px;
  
  letter-spacing: 2px;
  
}



#s-9a1bd26b-08c5-4b0a-afa2-faaff2a7892f {
  margin-top: -3%;
margin-bottom: 2%;
min-height: 50px;
}
@media (min-width: 1200px){#s-9a1bd26b-08c5-4b0a-afa2-faaff2a7892f {
  display: none;
}
#s-9a1bd26b-08c5-4b0a-afa2-faaff2a7892f, #wrap-s-9a1bd26b-08c5-4b0a-afa2-faaff2a7892f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9a1bd26b-08c5-4b0a-afa2-faaff2a7892f {
  display: none;
}
#s-9a1bd26b-08c5-4b0a-afa2-faaff2a7892f, #wrap-s-9a1bd26b-08c5-4b0a-afa2-faaff2a7892f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-9a1bd26b-08c5-4b0a-afa2-faaff2a7892f {
  display: none;
}
#s-9a1bd26b-08c5-4b0a-afa2-faaff2a7892f, #wrap-s-9a1bd26b-08c5-4b0a-afa2-faaff2a7892f { display: none !important; }}







#s-9a1bd26b-08c5-4b0a-afa2-faaff2a7892f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9a1bd26b-08c5-4b0a-afa2-faaff2a7892f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1eaf16b0-2850-4795-b354-cc28cb0b14b5 {
  margin-bottom: 2em;
padding-top: 10px;
text-align: center;
}
@media (max-width: 767px){#s-1eaf16b0-2850-4795-b354-cc28cb0b14b5 {
  display: none;
}
#s-1eaf16b0-2850-4795-b354-cc28cb0b14b5, #wrap-s-1eaf16b0-2850-4795-b354-cc28cb0b14b5 { display: none !important; }}
#s-1eaf16b0-2850-4795-b354-cc28cb0b14b5 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  font-family: "sofia-pro";
  font-style:  normal ;
  font-size: 32px;
  
  letter-spacing: 2px;
  
}


@media (max-width: 767px){#s-1eaf16b0-2850-4795-b354-cc28cb0b14b5 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  font-family: "sofia-pro";
  font-style:  normal ;
  font-size: 28px;
  
  letter-spacing: 2px;
  
}


}
#s-888a253e-4fda-4f12-a01d-0bb0f132a91d {
  text-align: center;
}
@media (min-width: 1200px){#s-888a253e-4fda-4f12-a01d-0bb0f132a91d {
  display: none;
}
#s-888a253e-4fda-4f12-a01d-0bb0f132a91d, #wrap-s-888a253e-4fda-4f12-a01d-0bb0f132a91d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-888a253e-4fda-4f12-a01d-0bb0f132a91d {
  display: none;
}
#s-888a253e-4fda-4f12-a01d-0bb0f132a91d, #wrap-s-888a253e-4fda-4f12-a01d-0bb0f132a91d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-888a253e-4fda-4f12-a01d-0bb0f132a91d {
  display: none;
}
#s-888a253e-4fda-4f12-a01d-0bb0f132a91d, #wrap-s-888a253e-4fda-4f12-a01d-0bb0f132a91d { display: none !important; }}






  #s-888a253e-4fda-4f12-a01d-0bb0f132a91d img.shogun-image {
    

    
    
    
  }


#s-888a253e-4fda-4f12-a01d-0bb0f132a91d .shogun-image-content {
  
    align-items: center;
  
}

#s-cdb2d342-db64-4f2b-bb24-236cff06b947 {
  margin-left: auto;
margin-right: auto;
padding-left: 10px;
padding-right: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(229, 231, 235, 1);
border-style: solid;
max-width: 1600px;
}
@media (min-width: 768px) and (max-width: 991px){#s-cdb2d342-db64-4f2b-bb24-236cff06b947 {
  
}
}@media (max-width: 767px){#s-cdb2d342-db64-4f2b-bb24-236cff06b947 {
  display: none;
}
#s-cdb2d342-db64-4f2b-bb24-236cff06b947, #wrap-s-cdb2d342-db64-4f2b-bb24-236cff06b947 { display: none !important; }}
@media (min-width: 0px) {
[id="s-cdb2d342-db64-4f2b-bb24-236cff06b947"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-cdb2d342-db64-4f2b-bb24-236cff06b947"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-cdb2d342-db64-4f2b-bb24-236cff06b947"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-cdb2d342-db64-4f2b-bb24-236cff06b947"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-d80fd144-241d-498e-8ce3-8b5bb64da3b7 {
  margin-bottom: 14px;
max-width: 908px;
aspect-ratio: 908/948;
text-align: center;
}





  #s-d80fd144-241d-498e-8ce3-8b5bb64da3b7 img.shogun-image,
  #s-d80fd144-241d-498e-8ce3-8b5bb64da3b7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d80fd144-241d-498e-8ce3-8b5bb64da3b7 {
    width: 100%;
    height: auto;
  }



  #s-d80fd144-241d-498e-8ce3-8b5bb64da3b7 img.shogun-image {
    

    
    
    
  }


#s-d80fd144-241d-498e-8ce3-8b5bb64da3b7 .shogun-image-content {
  
    align-items: center;
  
}

#s-c7b73045-e4da-4af0-8d11-77b5986c9a56 {
  border-style: solid;
margin-top: 0px;
padding-top: 9px;
padding-left: 20px;
padding-bottom: 11px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(27, 27, 27, 1);
border-radius: 1px;
background-color: rgba(255, 255, 255, 0);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(27, 27, 27, 1);
}
#s-c7b73045-e4da-4af0-8d11-77b5986c9a56:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 1px !important;
background-color: rgba(255, 255, 255, 0.5) !important;
text-decoration: none !important;
color: rgba(27, 27, 27, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-c7b73045-e4da-4af0-8d11-77b5986c9a56:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 1px !important;
background-color: rgba(255, 255, 255, 0.5) !important;
text-decoration: none !important;
color: rgba(27, 27, 27, 1) !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 768px) and (max-width: 991px){#s-c7b73045-e4da-4af0-8d11-77b5986c9a56 {
  padding-left: 15px;
padding-right: 15px;
}
}

  #s-c7b73045-e4da-4af0-8d11-77b5986c9a56-root {
    text-align: center;
  }


#s-c7b73045-e4da-4af0-8d11-77b5986c9a56.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c7b73045-e4da-4af0-8d11-77b5986c9a56-root {
    text-align: center;
  }


#s-c7b73045-e4da-4af0-8d11-77b5986c9a56.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c7b73045-e4da-4af0-8d11-77b5986c9a56-root {
    text-align: center;
  }


#s-c7b73045-e4da-4af0-8d11-77b5986c9a56.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c7b73045-e4da-4af0-8d11-77b5986c9a56-root {
    text-align: center;
  }


#s-c7b73045-e4da-4af0-8d11-77b5986c9a56.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 11px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c7b73045-e4da-4af0-8d11-77b5986c9a56-root {
    text-align: center;
  }


#s-c7b73045-e4da-4af0-8d11-77b5986c9a56.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-021df38f-73c8-4d91-b396-0ea8cbe2dcc9 {
  margin-bottom: 14px;
max-width: 908px;
aspect-ratio: 908/950;
text-align: center;
}





  #s-021df38f-73c8-4d91-b396-0ea8cbe2dcc9 img.shogun-image,
  #s-021df38f-73c8-4d91-b396-0ea8cbe2dcc9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-021df38f-73c8-4d91-b396-0ea8cbe2dcc9 {
    width: 100%;
    height: auto;
  }



  #s-021df38f-73c8-4d91-b396-0ea8cbe2dcc9 img.shogun-image {
    

    
    
    
  }


#s-021df38f-73c8-4d91-b396-0ea8cbe2dcc9 .shogun-image-content {
  
    align-items: center;
  
}

#s-9df34c74-a852-496e-bb52-5a55fd70bdde {
  text-align: left;
}
@media (min-width: 1200px){#s-9df34c74-a852-496e-bb52-5a55fd70bdde {
  display: none;
}
#s-9df34c74-a852-496e-bb52-5a55fd70bdde, #wrap-s-9df34c74-a852-496e-bb52-5a55fd70bdde { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9df34c74-a852-496e-bb52-5a55fd70bdde {
  display: none;
}
#s-9df34c74-a852-496e-bb52-5a55fd70bdde, #wrap-s-9df34c74-a852-496e-bb52-5a55fd70bdde { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-9df34c74-a852-496e-bb52-5a55fd70bdde {
  display: none;
}
#s-9df34c74-a852-496e-bb52-5a55fd70bdde, #wrap-s-9df34c74-a852-496e-bb52-5a55fd70bdde { display: none !important; }}
#s-74f5d38b-083a-4593-b723-18b4f873d4b6 {
  border-style: solid;
padding-top: 9px;
padding-left: 20px;
padding-bottom: 11px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(27, 27, 27, 1);
border-radius: 1px;
background-color: rgba(255, 255, 255, 0);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(27, 27, 27, 1);
}
#s-74f5d38b-083a-4593-b723-18b4f873d4b6:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 1px !important;
background-color: rgba(255, 255, 255, 0.5) !important;
text-decoration: none !important;
color: rgba(27, 27, 27, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-74f5d38b-083a-4593-b723-18b4f873d4b6:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 1px !important;
background-color: rgba(255, 255, 255, 0.5) !important;
text-decoration: none !important;
color: rgba(27, 27, 27, 1) !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 768px) and (max-width: 991px){#s-74f5d38b-083a-4593-b723-18b4f873d4b6 {
  padding-left: 15px;
padding-right: 15px;
}
}

  #s-74f5d38b-083a-4593-b723-18b4f873d4b6-root {
    text-align: center;
  }


#s-74f5d38b-083a-4593-b723-18b4f873d4b6.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-74f5d38b-083a-4593-b723-18b4f873d4b6-root {
    text-align: center;
  }


#s-74f5d38b-083a-4593-b723-18b4f873d4b6.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-74f5d38b-083a-4593-b723-18b4f873d4b6-root {
    text-align: center;
  }


#s-74f5d38b-083a-4593-b723-18b4f873d4b6.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-74f5d38b-083a-4593-b723-18b4f873d4b6-root {
    text-align: center;
  }


#s-74f5d38b-083a-4593-b723-18b4f873d4b6.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 11px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-74f5d38b-083a-4593-b723-18b4f873d4b6-root {
    text-align: center;
  }


#s-74f5d38b-083a-4593-b723-18b4f873d4b6.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-dbfb1f2f-3e4f-4478-bf2f-655fed2b49b6 {
  margin-bottom: 14px;
max-width: 908px;
aspect-ratio: 908/950;
text-align: center;
}





  #s-dbfb1f2f-3e4f-4478-bf2f-655fed2b49b6 img.shogun-image,
  #s-dbfb1f2f-3e4f-4478-bf2f-655fed2b49b6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-dbfb1f2f-3e4f-4478-bf2f-655fed2b49b6 {
    width: 100%;
    height: auto;
  }



  #s-dbfb1f2f-3e4f-4478-bf2f-655fed2b49b6 img.shogun-image {
    

    
    
    
  }


#s-dbfb1f2f-3e4f-4478-bf2f-655fed2b49b6 .shogun-image-content {
  
    align-items: center;
  
}

#s-bd8a5882-69fa-4e39-9ad8-12691579f884 {
  border-style: solid;
padding-top: 9px;
padding-left: 20px;
padding-bottom: 11px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(27, 27, 27, 1);
border-radius: 1px;
background-color: rgba(255, 255, 255, 0);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(27, 27, 27, 1);
}
#s-bd8a5882-69fa-4e39-9ad8-12691579f884:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 1px !important;
background-color: rgba(255, 255, 255, 0.5) !important;
text-decoration: none !important;
color: rgba(27, 27, 27, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-bd8a5882-69fa-4e39-9ad8-12691579f884:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
border-radius: 1px !important;
background-color: rgba(255, 255, 255, 0.5) !important;
text-decoration: none !important;
color: rgba(27, 27, 27, 1) !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 768px) and (max-width: 991px){#s-bd8a5882-69fa-4e39-9ad8-12691579f884 {
  padding-left: 15px;
padding-right: 15px;
}
}

  #s-bd8a5882-69fa-4e39-9ad8-12691579f884-root {
    text-align: center;
  }


#s-bd8a5882-69fa-4e39-9ad8-12691579f884.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-bd8a5882-69fa-4e39-9ad8-12691579f884-root {
    text-align: center;
  }


#s-bd8a5882-69fa-4e39-9ad8-12691579f884.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-bd8a5882-69fa-4e39-9ad8-12691579f884-root {
    text-align: center;
  }


#s-bd8a5882-69fa-4e39-9ad8-12691579f884.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-bd8a5882-69fa-4e39-9ad8-12691579f884-root {
    text-align: center;
  }


#s-bd8a5882-69fa-4e39-9ad8-12691579f884.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 11px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-bd8a5882-69fa-4e39-9ad8-12691579f884-root {
    text-align: center;
  }


#s-bd8a5882-69fa-4e39-9ad8-12691579f884.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-b622a267-41a7-4216-a4ee-f2dc83cfb6d3 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(229, 231, 235, 1);
border-style: solid;
min-height: 40px;
}
@media (max-width: 767px){#s-b622a267-41a7-4216-a4ee-f2dc83cfb6d3 {
  display: none;
}
#s-b622a267-41a7-4216-a4ee-f2dc83cfb6d3, #wrap-s-b622a267-41a7-4216-a4ee-f2dc83cfb6d3 { display: none !important; }}







#s-b622a267-41a7-4216-a4ee-f2dc83cfb6d3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b622a267-41a7-4216-a4ee-f2dc83cfb6d3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ff8d691a-d668-4771-aa2f-9c8d3523ad20 {
  min-height: 40px;
}
@media (min-width: 1200px){#s-ff8d691a-d668-4771-aa2f-9c8d3523ad20 {
  display: none;
}
#s-ff8d691a-d668-4771-aa2f-9c8d3523ad20, #wrap-s-ff8d691a-d668-4771-aa2f-9c8d3523ad20 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ff8d691a-d668-4771-aa2f-9c8d3523ad20 {
  display: none;
}
#s-ff8d691a-d668-4771-aa2f-9c8d3523ad20, #wrap-s-ff8d691a-d668-4771-aa2f-9c8d3523ad20 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ff8d691a-d668-4771-aa2f-9c8d3523ad20 {
  display: none;
}
#s-ff8d691a-d668-4771-aa2f-9c8d3523ad20, #wrap-s-ff8d691a-d668-4771-aa2f-9c8d3523ad20 { display: none !important; }}







#s-ff8d691a-d668-4771-aa2f-9c8d3523ad20 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ff8d691a-d668-4771-aa2f-9c8d3523ad20.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9a41f106-e292-495d-b93e-d252d8d9e3d2 {
  max-width: 750px;
aspect-ratio: 750/762;
text-align: center;
}
@media (min-width: 1200px){#s-9a41f106-e292-495d-b93e-d252d8d9e3d2 {
  display: none;
}
#s-9a41f106-e292-495d-b93e-d252d8d9e3d2, #wrap-s-9a41f106-e292-495d-b93e-d252d8d9e3d2 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9a41f106-e292-495d-b93e-d252d8d9e3d2 {
  display: none;
}
#s-9a41f106-e292-495d-b93e-d252d8d9e3d2, #wrap-s-9a41f106-e292-495d-b93e-d252d8d9e3d2 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-9a41f106-e292-495d-b93e-d252d8d9e3d2 {
  display: none;
}
#s-9a41f106-e292-495d-b93e-d252d8d9e3d2, #wrap-s-9a41f106-e292-495d-b93e-d252d8d9e3d2 { display: none !important; }}




  #s-9a41f106-e292-495d-b93e-d252d8d9e3d2 img.shogun-image,
  #s-9a41f106-e292-495d-b93e-d252d8d9e3d2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9a41f106-e292-495d-b93e-d252d8d9e3d2 {
    width: 100%;
    height: auto;
  }



  #s-9a41f106-e292-495d-b93e-d252d8d9e3d2 img.shogun-image {
    

    
    
    
  }


#s-9a41f106-e292-495d-b93e-d252d8d9e3d2 .shogun-image-content {
  
    align-items: center;
  
}

#s-fcd315f5-ede7-434b-a4f9-714cba120e78 {
  border-style: solid;
margin-top: 15px;
margin-bottom: 7px;
padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(27, 27, 27, 1);
min-height: 30px;
background-color: rgba(255, 255, 255, 0);
text-align: center;
text-decoration: none;
line-height: 1.5em;
letter-spacing: 1px;
background-image: none;
hover-type: color;
color: rgba(27, 27, 27, 1);
}
#s-fcd315f5-ede7-434b-a4f9-714cba120e78:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-fcd315f5-ede7-434b-a4f9-714cba120e78:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}

  #s-fcd315f5-ede7-434b-a4f9-714cba120e78-root {
    text-align: center;
  }


#s-fcd315f5-ede7-434b-a4f9-714cba120e78.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-fcd315f5-ede7-434b-a4f9-714cba120e78-root {
    text-align: center;
  }


#s-fcd315f5-ede7-434b-a4f9-714cba120e78.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-fcd315f5-ede7-434b-a4f9-714cba120e78-root {
    text-align: center;
  }


#s-fcd315f5-ede7-434b-a4f9-714cba120e78.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-fcd315f5-ede7-434b-a4f9-714cba120e78-root {
    text-align: center;
  }


#s-fcd315f5-ede7-434b-a4f9-714cba120e78.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-fcd315f5-ede7-434b-a4f9-714cba120e78-root {
    text-align: center;
  }


#s-fcd315f5-ede7-434b-a4f9-714cba120e78.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-abd1f677-50da-41f3-a018-8aa6e51c8838 {
  min-height: 40px;
}
@media (min-width: 1200px){#s-abd1f677-50da-41f3-a018-8aa6e51c8838 {
  display: none;
}
#s-abd1f677-50da-41f3-a018-8aa6e51c8838, #wrap-s-abd1f677-50da-41f3-a018-8aa6e51c8838 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-abd1f677-50da-41f3-a018-8aa6e51c8838 {
  display: none;
}
#s-abd1f677-50da-41f3-a018-8aa6e51c8838, #wrap-s-abd1f677-50da-41f3-a018-8aa6e51c8838 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-abd1f677-50da-41f3-a018-8aa6e51c8838 {
  display: none;
}
#s-abd1f677-50da-41f3-a018-8aa6e51c8838, #wrap-s-abd1f677-50da-41f3-a018-8aa6e51c8838 { display: none !important; }}







#s-abd1f677-50da-41f3-a018-8aa6e51c8838 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-abd1f677-50da-41f3-a018-8aa6e51c8838.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8a87eb25-678d-457b-8129-cc49b9b85307 {
  max-width: 750px;
aspect-ratio: 750/778;
text-align: center;
}
@media (min-width: 1200px){#s-8a87eb25-678d-457b-8129-cc49b9b85307 {
  display: none;
}
#s-8a87eb25-678d-457b-8129-cc49b9b85307, #wrap-s-8a87eb25-678d-457b-8129-cc49b9b85307 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8a87eb25-678d-457b-8129-cc49b9b85307 {
  display: none;
}
#s-8a87eb25-678d-457b-8129-cc49b9b85307, #wrap-s-8a87eb25-678d-457b-8129-cc49b9b85307 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-8a87eb25-678d-457b-8129-cc49b9b85307 {
  display: none;
}
#s-8a87eb25-678d-457b-8129-cc49b9b85307, #wrap-s-8a87eb25-678d-457b-8129-cc49b9b85307 { display: none !important; }}




  #s-8a87eb25-678d-457b-8129-cc49b9b85307 img.shogun-image,
  #s-8a87eb25-678d-457b-8129-cc49b9b85307 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8a87eb25-678d-457b-8129-cc49b9b85307 {
    width: 100%;
    height: auto;
  }



  #s-8a87eb25-678d-457b-8129-cc49b9b85307 img.shogun-image {
    

    
    
    
  }


#s-8a87eb25-678d-457b-8129-cc49b9b85307 .shogun-image-content {
  
    align-items: center;
  
}

#s-50f568e0-ffa4-48b3-9824-ffb93f41136f {
  border-style: solid;
margin-top: 15px;
margin-bottom: 7px;
padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(27, 27, 27, 1);
min-height: 30px;
background-color: rgba(255, 255, 255, 0);
text-align: center;
text-decoration: none;
line-height: 1.5em;
letter-spacing: 1px;
background-image: none;
hover-type: color;
color: rgba(27, 27, 27, 1);
}
#s-50f568e0-ffa4-48b3-9824-ffb93f41136f:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-50f568e0-ffa4-48b3-9824-ffb93f41136f:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}

  #s-50f568e0-ffa4-48b3-9824-ffb93f41136f-root {
    text-align: center;
  }


#s-50f568e0-ffa4-48b3-9824-ffb93f41136f.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-50f568e0-ffa4-48b3-9824-ffb93f41136f-root {
    text-align: center;
  }


#s-50f568e0-ffa4-48b3-9824-ffb93f41136f.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-50f568e0-ffa4-48b3-9824-ffb93f41136f-root {
    text-align: center;
  }


#s-50f568e0-ffa4-48b3-9824-ffb93f41136f.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-50f568e0-ffa4-48b3-9824-ffb93f41136f-root {
    text-align: center;
  }


#s-50f568e0-ffa4-48b3-9824-ffb93f41136f.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-50f568e0-ffa4-48b3-9824-ffb93f41136f-root {
    text-align: center;
  }


#s-50f568e0-ffa4-48b3-9824-ffb93f41136f.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-74052d62-88da-4605-8e1b-bbcf28461fdb {
  min-height: 40px;
}
@media (min-width: 1200px){#s-74052d62-88da-4605-8e1b-bbcf28461fdb {
  display: none;
}
#s-74052d62-88da-4605-8e1b-bbcf28461fdb, #wrap-s-74052d62-88da-4605-8e1b-bbcf28461fdb { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-74052d62-88da-4605-8e1b-bbcf28461fdb {
  display: none;
}
#s-74052d62-88da-4605-8e1b-bbcf28461fdb, #wrap-s-74052d62-88da-4605-8e1b-bbcf28461fdb { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-74052d62-88da-4605-8e1b-bbcf28461fdb {
  display: none;
}
#s-74052d62-88da-4605-8e1b-bbcf28461fdb, #wrap-s-74052d62-88da-4605-8e1b-bbcf28461fdb { display: none !important; }}







#s-74052d62-88da-4605-8e1b-bbcf28461fdb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-74052d62-88da-4605-8e1b-bbcf28461fdb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d4b4ac35-e849-4bd1-adb7-5116bd20e1e2 {
  max-width: 750px;
aspect-ratio: 750/776;
text-align: center;
}
@media (min-width: 1200px){#s-d4b4ac35-e849-4bd1-adb7-5116bd20e1e2 {
  display: none;
}
#s-d4b4ac35-e849-4bd1-adb7-5116bd20e1e2, #wrap-s-d4b4ac35-e849-4bd1-adb7-5116bd20e1e2 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d4b4ac35-e849-4bd1-adb7-5116bd20e1e2 {
  display: none;
}
#s-d4b4ac35-e849-4bd1-adb7-5116bd20e1e2, #wrap-s-d4b4ac35-e849-4bd1-adb7-5116bd20e1e2 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d4b4ac35-e849-4bd1-adb7-5116bd20e1e2 {
  display: none;
}
#s-d4b4ac35-e849-4bd1-adb7-5116bd20e1e2, #wrap-s-d4b4ac35-e849-4bd1-adb7-5116bd20e1e2 { display: none !important; }}




  #s-d4b4ac35-e849-4bd1-adb7-5116bd20e1e2 img.shogun-image,
  #s-d4b4ac35-e849-4bd1-adb7-5116bd20e1e2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d4b4ac35-e849-4bd1-adb7-5116bd20e1e2 {
    width: 100%;
    height: auto;
  }



  #s-d4b4ac35-e849-4bd1-adb7-5116bd20e1e2 img.shogun-image {
    

    
    
    
  }


#s-d4b4ac35-e849-4bd1-adb7-5116bd20e1e2 .shogun-image-content {
  
    align-items: center;
  
}

#s-eebe9f52-7679-4bfb-b619-8c8a1a232e7f {
  border-style: solid;
margin-top: 15px;
margin-bottom: 7px;
padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(27, 27, 27, 1);
min-height: 30px;
background-color: rgba(255, 255, 255, 0);
text-align: center;
text-decoration: none;
line-height: 1.5em;
letter-spacing: 1px;
background-image: none;
hover-type: color;
color: rgba(27, 27, 27, 1);
}
#s-eebe9f52-7679-4bfb-b619-8c8a1a232e7f:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-eebe9f52-7679-4bfb-b619-8c8a1a232e7f:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(27, 27, 27, 1) !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}

  #s-eebe9f52-7679-4bfb-b619-8c8a1a232e7f-root {
    text-align: center;
  }


#s-eebe9f52-7679-4bfb-b619-8c8a1a232e7f.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-eebe9f52-7679-4bfb-b619-8c8a1a232e7f-root {
    text-align: center;
  }


#s-eebe9f52-7679-4bfb-b619-8c8a1a232e7f.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-eebe9f52-7679-4bfb-b619-8c8a1a232e7f-root {
    text-align: center;
  }


#s-eebe9f52-7679-4bfb-b619-8c8a1a232e7f.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-eebe9f52-7679-4bfb-b619-8c8a1a232e7f-root {
    text-align: center;
  }


#s-eebe9f52-7679-4bfb-b619-8c8a1a232e7f.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-eebe9f52-7679-4bfb-b619-8c8a1a232e7f-root {
    text-align: center;
  }


#s-eebe9f52-7679-4bfb-b619-8c8a1a232e7f.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-4a67be19-1d21-4664-8653-38d6270dca59 {
  min-height: 40px;
}
@media (min-width: 1200px){#s-4a67be19-1d21-4664-8653-38d6270dca59 {
  display: none;
}
#s-4a67be19-1d21-4664-8653-38d6270dca59, #wrap-s-4a67be19-1d21-4664-8653-38d6270dca59 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4a67be19-1d21-4664-8653-38d6270dca59 {
  display: none;
}
#s-4a67be19-1d21-4664-8653-38d6270dca59, #wrap-s-4a67be19-1d21-4664-8653-38d6270dca59 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-4a67be19-1d21-4664-8653-38d6270dca59 {
  display: none;
}
#s-4a67be19-1d21-4664-8653-38d6270dca59, #wrap-s-4a67be19-1d21-4664-8653-38d6270dca59 { display: none !important; }}







#s-4a67be19-1d21-4664-8653-38d6270dca59 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4a67be19-1d21-4664-8653-38d6270dca59.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-574cc043-a03c-4699-b7b5-cf1aa9f3f8cc {
  margin-bottom: 0%;
margin-right: auto;
min-height: 70px;
background-color: rgba(255, 255, 255, 1);
}








#s-574cc043-a03c-4699-b7b5-cf1aa9f3f8cc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-574cc043-a03c-4699-b7b5-cf1aa9f3f8cc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-493d120a-f0f3-4a66-b2a2-e2839691cbf1 {
  margin-top: -4px;
margin-bottom: 7%;
}

/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

@media (max-width: 1024px) {
  .shg-c,
  .shg-box {
    background-attachment: scroll !important;
  }
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape) {
  .shg-box {
    background-attachment: scroll !important;
  }
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}
.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-lazyload-bg-image {
  display: none;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}
/* <-- User Content Animations */

.shogun-form-error-msg, .shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}

.shg-c:before,.shg-c:after{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width: 1024px){.shg-c,.shg-box{background-attachment:scroll !important}}@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape){.shg-box{background-attachment:scroll !important}}#mc_embed_signup .clear{width:auto !important;height:auto !important;visibility:visible !important}.shg-clearfix:after{content:"";display:block;clear:both}.shogun-image{max-width:100%;min-height:inherit;max-height:inherit;display:inline !important;border:0;vertical-align:middle}.shg-fw{margin-left:calc(50% - 50vw);width:100vw}.shg-fw .shg-fw{margin-left:auto;margin-right:auto;width:100%}div[data-shg-lightbox-switch]{cursor:pointer}.shg-lightbox{position:fixed;z-index:999999;left:0;top:0;width:100%;height:100%;overflow:hidden;background-color:#000;background-color:rgba(0,0,0,0.85)}.shg-lightbox.hidden{display:none !important}.shg-lightbox .shg-lightbox-content{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:100%;text-align:center}.shg-lightbox .shg-lightbox-close{position:absolute;right:0;padding:5px 0;color:#fff;font-size:45px;margin-right:10px;line-height:30px;user-select:none;cursor:pointer;z-index:1}.shg-lightbox .shg-lightbox-image-container{padding:25px}.shg-lightbox .shg-lightbox-image{margin:auto;max-height:90vh;max-width:100%}.shg-lightbox .shg-lightbox-close:hover,.shg-lightbox .shg-lightbox-close:focus{color:#a2a2a2;text-decoration:none;cursor:pointer}.shg-lightbox .shg-lightbox-nav{cursor:pointer;position:absolute;top:50%;width:35px;height:100px;background-size:contain;background-repeat:no-repeat;background-position:center;transform:translate(0%, -50%);z-index:1}.shg-lightbox .shg-lightbox-nav.hidden{display:none !important}.shg-lightbox .shg-lightbox-nav.shg-nav-left{left:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==)}.shg-lightbox .shg-lightbox-nav.shg-nav-right{right:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+)}@media screen and (min-width: 769px){.shg-lightbox .shg-lightbox-image-container{padding:50px}}.shogun-lazyload:not([src]),.shogun-lazyloading:not([src]){opacity:0}.shogun-lazyloaded{opacity:1;transition:opacity 300ms}.shogun-lazyload-bg-image{display:none}.shogun-root a:empty,.shogun-root article:empty,.shogun-root dl:empty,.shogun-root h1:empty,.shogun-root h2:empty,.shogun-root h3:empty,.shogun-root h4:empty,.shogun-root h5:empty,.shogun-root h6:empty,.shogun-root p:empty,.shogun-root section:empty,.shogun-root ul:empty{display:unset}.shogun-root div:empty{display:inline-block}[data-animations*="enterviewport"][data-animations*="fadeIn"],[data-animations*="enterviewport"][data-animations*="zoomIn"]{opacity:0}.shogun-form-error-msg,.shogun-form-field-error-msg{display:flex;align-items:center;color:#dc143c}.shogun-badge{margin-bottom:50px}.shogun-badge-container{position:fixed;right:0;bottom:0;margin-bottom:-10px}
