.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-1a1d0f2b-238d-4fde-9bba-713cae3b4076 {
  min-height: 50px;
}
@media (max-width: 767px){#s-1a1d0f2b-238d-4fde-9bba-713cae3b4076 {
  display: none;
}
#s-1a1d0f2b-238d-4fde-9bba-713cae3b4076, #wrap-s-1a1d0f2b-238d-4fde-9bba-713cae3b4076 { display:none !important; }}







#s-1a1d0f2b-238d-4fde-9bba-713cae3b4076 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1a1d0f2b-238d-4fde-9bba-713cae3b4076.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-3e7ac291-b4f0-4ca3-9dd2-e3191f9a8754 {
  margin-top: 0%;
max-width: 2880px;
aspect-ratio: 2880/1032;
text-align: center;
}





  #s-3e7ac291-b4f0-4ca3-9dd2-e3191f9a8754 img.shogun-image,
  #s-3e7ac291-b4f0-4ca3-9dd2-e3191f9a8754 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3e7ac291-b4f0-4ca3-9dd2-e3191f9a8754 {
    width: 100%;
    height: auto;
  }



  #s-3e7ac291-b4f0-4ca3-9dd2-e3191f9a8754 img.shogun-image {
    

    
    
    
  }


#s-3e7ac291-b4f0-4ca3-9dd2-e3191f9a8754 .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-0255bd8f-df5d-471d-a3e9-4124cf39d8e0 {
  margin-top: 0.75%;
margin-left: 2%;
margin-right: 2%;
}

@media (min-width: 0px) {
[id="s-0255bd8f-df5d-471d-a3e9-4124cf39d8e0"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 7.0px);
}

}

@media (min-width: 768px) {
[id="s-0255bd8f-df5d-471d-a3e9-4124cf39d8e0"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 11.666666666666666px);
}

}

@media (min-width: 992px) {
[id="s-0255bd8f-df5d-471d-a3e9-4124cf39d8e0"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 11.666666666666666px);
}

}

@media (min-width: 1200px) {
[id="s-0255bd8f-df5d-471d-a3e9-4124cf39d8e0"] > .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-f0475b31-4bec-4445-81bf-8b6a8070cec9 {
  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-f0475b31-4bec-4445-81bf-8b6a8070cec9:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-f0475b31-4bec-4445-81bf-8b6a8070cec9: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-f0475b31-4bec-4445-81bf-8b6a8070cec9-root {
    text-align: center;
  }


#s-f0475b31-4bec-4445-81bf-8b6a8070cec9.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
@media (min-width: 1200px){
  #s-f0475b31-4bec-4445-81bf-8b6a8070cec9-root {
    text-align: center;
  }


#s-f0475b31-4bec-4445-81bf-8b6a8070cec9.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-f0475b31-4bec-4445-81bf-8b6a8070cec9-root {
    text-align: center;
  }


#s-f0475b31-4bec-4445-81bf-8b6a8070cec9.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-f0475b31-4bec-4445-81bf-8b6a8070cec9-root {
    text-align: center;
  }


#s-f0475b31-4bec-4445-81bf-8b6a8070cec9.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 11px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (max-width: 767px){
  #s-f0475b31-4bec-4445-81bf-8b6a8070cec9-root {
    text-align: center;
  }


#s-f0475b31-4bec-4445-81bf-8b6a8070cec9.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}
#s-9cafef99-5857-410a-a6d9-da8f7482c0bb {
  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-9cafef99-5857-410a-a6d9-da8f7482c0bb:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-9cafef99-5857-410a-a6d9-da8f7482c0bb: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-9cafef99-5857-410a-a6d9-da8f7482c0bb-root {
    text-align: center;
  }


#s-9cafef99-5857-410a-a6d9-da8f7482c0bb.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
@media (min-width: 1200px){
  #s-9cafef99-5857-410a-a6d9-da8f7482c0bb-root {
    text-align: center;
  }


#s-9cafef99-5857-410a-a6d9-da8f7482c0bb.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-9cafef99-5857-410a-a6d9-da8f7482c0bb-root {
    text-align: center;
  }


#s-9cafef99-5857-410a-a6d9-da8f7482c0bb.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-9cafef99-5857-410a-a6d9-da8f7482c0bb-root {
    text-align: center;
  }


#s-9cafef99-5857-410a-a6d9-da8f7482c0bb.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 11px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (max-width: 767px){
  #s-9cafef99-5857-410a-a6d9-da8f7482c0bb-root {
    text-align: center;
  }


#s-9cafef99-5857-410a-a6d9-da8f7482c0bb.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}
#s-c872f918-9b17-4db8-92e7-f567609c2d50 {
  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-c872f918-9b17-4db8-92e7-f567609c2d50:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-c872f918-9b17-4db8-92e7-f567609c2d50: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-c872f918-9b17-4db8-92e7-f567609c2d50-root {
    text-align: center;
  }


#s-c872f918-9b17-4db8-92e7-f567609c2d50.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
@media (min-width: 1200px){
  #s-c872f918-9b17-4db8-92e7-f567609c2d50-root {
    text-align: center;
  }


#s-c872f918-9b17-4db8-92e7-f567609c2d50.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-c872f918-9b17-4db8-92e7-f567609c2d50-root {
    text-align: center;
  }


#s-c872f918-9b17-4db8-92e7-f567609c2d50.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-c872f918-9b17-4db8-92e7-f567609c2d50-root {
    text-align: center;
  }


#s-c872f918-9b17-4db8-92e7-f567609c2d50.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 11px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (max-width: 767px){
  #s-c872f918-9b17-4db8-92e7-f567609c2d50-root {
    text-align: center;
  }


#s-c872f918-9b17-4db8-92e7-f567609c2d50.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}
#s-f0b0281a-a4cb-44bd-9509-442d34297c7e {
  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-f0b0281a-a4cb-44bd-9509-442d34297c7e:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-f0b0281a-a4cb-44bd-9509-442d34297c7e: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-f0b0281a-a4cb-44bd-9509-442d34297c7e-root {
    text-align: center;
  }


#s-f0b0281a-a4cb-44bd-9509-442d34297c7e.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
@media (min-width: 1200px){
  #s-f0b0281a-a4cb-44bd-9509-442d34297c7e-root {
    text-align: center;
  }


#s-f0b0281a-a4cb-44bd-9509-442d34297c7e.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-f0b0281a-a4cb-44bd-9509-442d34297c7e-root {
    text-align: center;
  }


#s-f0b0281a-a4cb-44bd-9509-442d34297c7e.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-f0b0281a-a4cb-44bd-9509-442d34297c7e-root {
    text-align: center;
  }


#s-f0b0281a-a4cb-44bd-9509-442d34297c7e.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 11px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (max-width: 767px){
  #s-f0b0281a-a4cb-44bd-9509-442d34297c7e-root {
    text-align: center;
  }


#s-f0b0281a-a4cb-44bd-9509-442d34297c7e.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}
#s-22878123-e3ef-4232-a793-6a132eedffad {
  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-22878123-e3ef-4232-a793-6a132eedffad:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-22878123-e3ef-4232-a793-6a132eedffad: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-22878123-e3ef-4232-a793-6a132eedffad-root {
    text-align: center;
  }


#s-22878123-e3ef-4232-a793-6a132eedffad.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
@media (min-width: 1200px){
  #s-22878123-e3ef-4232-a793-6a132eedffad-root {
    text-align: center;
  }


#s-22878123-e3ef-4232-a793-6a132eedffad.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-22878123-e3ef-4232-a793-6a132eedffad-root {
    text-align: center;
  }


#s-22878123-e3ef-4232-a793-6a132eedffad.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-22878123-e3ef-4232-a793-6a132eedffad-root {
    text-align: center;
  }


#s-22878123-e3ef-4232-a793-6a132eedffad.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 11px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (max-width: 767px){
  #s-22878123-e3ef-4232-a793-6a132eedffad-root {
    text-align: center;
  }


#s-22878123-e3ef-4232-a793-6a132eedffad.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}
#s-7810cf3f-5ce3-4743-bbca-3f1ea9669c31 {
  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-7810cf3f-5ce3-4743-bbca-3f1ea9669c31:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-7810cf3f-5ce3-4743-bbca-3f1ea9669c31: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-7810cf3f-5ce3-4743-bbca-3f1ea9669c31-root {
    text-align: center;
  }


#s-7810cf3f-5ce3-4743-bbca-3f1ea9669c31.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
@media (min-width: 1200px){
  #s-7810cf3f-5ce3-4743-bbca-3f1ea9669c31-root {
    text-align: center;
  }


#s-7810cf3f-5ce3-4743-bbca-3f1ea9669c31.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-7810cf3f-5ce3-4743-bbca-3f1ea9669c31-root {
    text-align: center;
  }


#s-7810cf3f-5ce3-4743-bbca-3f1ea9669c31.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-7810cf3f-5ce3-4743-bbca-3f1ea9669c31-root {
    text-align: center;
  }


#s-7810cf3f-5ce3-4743-bbca-3f1ea9669c31.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 11px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (max-width: 767px){
  #s-7810cf3f-5ce3-4743-bbca-3f1ea9669c31-root {
    text-align: center;
  }


#s-7810cf3f-5ce3-4743-bbca-3f1ea9669c31.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}
#s-2d73d718-fb09-4e67-8e78-41d916f01718 {
  min-height: 40px;
}








#s-2d73d718-fb09-4e67-8e78-41d916f01718 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2d73d718-fb09-4e67-8e78-41d916f01718.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-eae658da-b695-4e95-97e1-bf9e445e54ee {
  min-height: 50px;
}
@media (max-width: 767px){#s-eae658da-b695-4e95-97e1-bf9e445e54ee {
  display: none;
}
#s-eae658da-b695-4e95-97e1-bf9e445e54ee, #wrap-s-eae658da-b695-4e95-97e1-bf9e445e54ee { display:none !important; }}







#s-eae658da-b695-4e95-97e1-bf9e445e54ee > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-eae658da-b695-4e95-97e1-bf9e445e54ee.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-40fd3159-c180-4483-bdf5-2029feea1432 {
  max-width: 2880px;
aspect-ratio: 2880/1296;
text-align: center;
}





  #s-40fd3159-c180-4483-bdf5-2029feea1432 img.shogun-image,
  #s-40fd3159-c180-4483-bdf5-2029feea1432 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-40fd3159-c180-4483-bdf5-2029feea1432 {
    width: 100%;
    height: auto;
  }



  #s-40fd3159-c180-4483-bdf5-2029feea1432 img.shogun-image {
    

    
    
    
  }


#s-40fd3159-c180-4483-bdf5-2029feea1432 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-8956aa19-4b7a-48ab-82db-1c660b3bd1e7 {
  min-height: 50px;
}








#s-8956aa19-4b7a-48ab-82db-1c660b3bd1e7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8956aa19-4b7a-48ab-82db-1c660b3bd1e7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f7d7a623-0276-4e04-b1d0-fb099fd81f82 {
  margin-top: 3.1%;
margin-left: 0%;
margin-bottom: 4%;
margin-right: 1.5%;
}

@media (min-width: 0px) {
[id="s-f7d7a623-0276-4e04-b1d0-fb099fd81f82"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f7d7a623-0276-4e04-b1d0-fb099fd81f82"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-f7d7a623-0276-4e04-b1d0-fb099fd81f82"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-f7d7a623-0276-4e04-b1d0-fb099fd81f82"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-90a9ab28-3d11-4ace-adeb-ea1d907c667c {
  margin-left: 8%;
margin-right: 6%;
min-height: 50px;
}








#s-90a9ab28-3d11-4ace-adeb-ea1d907c667c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-90a9ab28-3d11-4ace-adeb-ea1d907c667c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-eff8c43e-7e3e-49a9-b4bc-9fe26de285e0 {
  margin-left: auto;
margin-bottom: 14px;
margin-right: auto;
max-width: 84%;
aspect-ratio: 684/172;
text-align: center;
}





  #s-eff8c43e-7e3e-49a9-b4bc-9fe26de285e0 img.shogun-image,
  #s-eff8c43e-7e3e-49a9-b4bc-9fe26de285e0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-eff8c43e-7e3e-49a9-b4bc-9fe26de285e0 {
    width: 100%;
    height: auto;
  }



  #s-eff8c43e-7e3e-49a9-b4bc-9fe26de285e0 img.shogun-image {
    

    
    
    
  }


#s-eff8c43e-7e3e-49a9-b4bc-9fe26de285e0 .shogun-image-content {
  
    align-items: center;
  
}

#s-3bfaad0f-3b46-4557-96c5-cfb2cc21bc58 {
  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-3bfaad0f-3b46-4557-96c5-cfb2cc21bc58: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-3bfaad0f-3b46-4557-96c5-cfb2cc21bc58: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-3bfaad0f-3b46-4557-96c5-cfb2cc21bc58 {
  padding-left: 15px;
padding-right: 15px;
}
}

  #s-3bfaad0f-3b46-4557-96c5-cfb2cc21bc58-root {
    text-align: center;
  }


#s-3bfaad0f-3b46-4557-96c5-cfb2cc21bc58.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-3bfaad0f-3b46-4557-96c5-cfb2cc21bc58-root {
    text-align: center;
  }


#s-3bfaad0f-3b46-4557-96c5-cfb2cc21bc58.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-3bfaad0f-3b46-4557-96c5-cfb2cc21bc58-root {
    text-align: center;
  }


#s-3bfaad0f-3b46-4557-96c5-cfb2cc21bc58.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-3bfaad0f-3b46-4557-96c5-cfb2cc21bc58-root {
    text-align: center;
  }


#s-3bfaad0f-3b46-4557-96c5-cfb2cc21bc58.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 11px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-3bfaad0f-3b46-4557-96c5-cfb2cc21bc58-root {
    text-align: center;
  }


#s-3bfaad0f-3b46-4557-96c5-cfb2cc21bc58.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-4f623c20-443f-4b62-9796-0a75041e1549 {
  min-height: 40px;
}
@media (max-width: 767px){#s-4f623c20-443f-4b62-9796-0a75041e1549 {
  display: none;
}
#s-4f623c20-443f-4b62-9796-0a75041e1549, #wrap-s-4f623c20-443f-4b62-9796-0a75041e1549 { display:none !important; }}







#s-4f623c20-443f-4b62-9796-0a75041e1549 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4f623c20-443f-4b62-9796-0a75041e1549.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-9f5fc945-feb5-4934-bba0-03f82c59f9e3 {
  margin-top: 7%;
margin-left: 0%;
margin-bottom: 5%;
margin-right: 0%;
padding-left: 8%;
padding-right: 8%;
}
@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 {
  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: 41%;
aspect-ratio: 434/70;
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-46f32f61-fefd-47bb-91de-cda611a225dd {
  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-46f32f61-fefd-47bb-91de-cda611a225dd: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-46f32f61-fefd-47bb-91de-cda611a225dd: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-46f32f61-fefd-47bb-91de-cda611a225dd {
  padding-left: 15px;
padding-right: 15px;
}
}

  #s-46f32f61-fefd-47bb-91de-cda611a225dd-root {
    text-align: left;
  }


#s-46f32f61-fefd-47bb-91de-cda611a225dd.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-46f32f61-fefd-47bb-91de-cda611a225dd-root {
    text-align: left;
  }


#s-46f32f61-fefd-47bb-91de-cda611a225dd.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-46f32f61-fefd-47bb-91de-cda611a225dd-root {
    text-align: left;
  }


#s-46f32f61-fefd-47bb-91de-cda611a225dd.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-46f32f61-fefd-47bb-91de-cda611a225dd-root {
    text-align: left;
  }


#s-46f32f61-fefd-47bb-91de-cda611a225dd.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 11px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-46f32f61-fefd-47bb-91de-cda611a225dd-root {
    text-align: left;
  }


#s-46f32f61-fefd-47bb-91de-cda611a225dd.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-6e49092b-d8f4-42b6-a52b-d03c0a5d9c5f {
  max-width: 1350px;
aspect-ratio: 1350/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-start;
  
}

#s-f415b192-b05e-43f1-81be-f7db844fc067 {
  margin-top: 7%;
margin-left: 0%;
margin-bottom: 5%;
margin-right: 0%;
padding-left: 8%;
padding-right: 8%;
}
@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 {
  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: 42%;
aspect-ratio: 438/70;
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-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-33a899f6-796e-43f7-913b-841353f51609 {
  min-height: 50px;
}
@media (max-width: 767px){#s-33a899f6-796e-43f7-913b-841353f51609 {
  display: none;
}
#s-33a899f6-796e-43f7-913b-841353f51609, #wrap-s-33a899f6-796e-43f7-913b-841353f51609 { display:none !important; }}







#s-33a899f6-796e-43f7-913b-841353f51609 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-33a899f6-796e-43f7-913b-841353f51609.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5926a4e6-f2f3-4e94-b16e-066d0180b111 {
  max-width: 2880px;
aspect-ratio: 2880/1398;
text-align: center;
}





  #s-5926a4e6-f2f3-4e94-b16e-066d0180b111 img.shogun-image,
  #s-5926a4e6-f2f3-4e94-b16e-066d0180b111 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5926a4e6-f2f3-4e94-b16e-066d0180b111 {
    width: 100%;
    height: auto;
  }



  #s-5926a4e6-f2f3-4e94-b16e-066d0180b111 img.shogun-image {
    

    
    
    
  }


#s-5926a4e6-f2f3-4e94-b16e-066d0180b111 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-66a8631e-043a-49a7-95ac-3261ede4a7f7 {
  min-height: 50px;
}








#s-66a8631e-043a-49a7-95ac-3261ede4a7f7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-66a8631e-043a-49a7-95ac-3261ede4a7f7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-caf9ab18-13a7-43f0-ae0e-5439b7bd5fb5 {
  margin-top: 3%;
margin-left: 14%;
margin-right: 2%;
}

@media (min-width: 0px) {
[id="s-caf9ab18-13a7-43f0-ae0e-5439b7bd5fb5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-caf9ab18-13a7-43f0-ae0e-5439b7bd5fb5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-caf9ab18-13a7-43f0-ae0e-5439b7bd5fb5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-caf9ab18-13a7-43f0-ae0e-5439b7bd5fb5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-faf1e45f-77d0-4801-b3c5-9cb1284066de {
  margin-left: 1%;
margin-right: 3%;
min-height: 50px;
}








#s-faf1e45f-77d0-4801-b3c5-9cb1284066de > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-faf1e45f-77d0-4801-b3c5-9cb1284066de.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-933704da-dd99-4f8c-a38b-61fb02dbbc45 {
  margin-left: auto;
margin-bottom: 14px;
margin-right: auto;
max-width: 63%;
aspect-ratio: 722/168;
text-align: center;
}





  #s-933704da-dd99-4f8c-a38b-61fb02dbbc45 img.shogun-image,
  #s-933704da-dd99-4f8c-a38b-61fb02dbbc45 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-933704da-dd99-4f8c-a38b-61fb02dbbc45 {
    width: 100%;
    height: auto;
  }



  #s-933704da-dd99-4f8c-a38b-61fb02dbbc45 img.shogun-image {
    

    
    
    
  }


#s-933704da-dd99-4f8c-a38b-61fb02dbbc45 .shogun-image-content {
  
    align-items: center;
  
}

#s-ce8114b0-cce2-415d-9168-32a42834343f {
  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-ce8114b0-cce2-415d-9168-32a42834343f: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-ce8114b0-cce2-415d-9168-32a42834343f: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-ce8114b0-cce2-415d-9168-32a42834343f {
  padding-left: 15px;
padding-right: 15px;
}
}

  #s-ce8114b0-cce2-415d-9168-32a42834343f-root {
    text-align: center;
  }


#s-ce8114b0-cce2-415d-9168-32a42834343f.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ce8114b0-cce2-415d-9168-32a42834343f-root {
    text-align: center;
  }


#s-ce8114b0-cce2-415d-9168-32a42834343f.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-ce8114b0-cce2-415d-9168-32a42834343f-root {
    text-align: center;
  }


#s-ce8114b0-cce2-415d-9168-32a42834343f.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-ce8114b0-cce2-415d-9168-32a42834343f-root {
    text-align: center;
  }


#s-ce8114b0-cce2-415d-9168-32a42834343f.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 11px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ce8114b0-cce2-415d-9168-32a42834343f-root {
    text-align: center;
  }


#s-ce8114b0-cce2-415d-9168-32a42834343f.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-52e891cc-787f-4756-a866-7d1bb0bef196 {
  min-height: 40px;
}
@media (max-width: 767px){#s-52e891cc-787f-4756-a866-7d1bb0bef196 {
  display: none;
}
#s-52e891cc-787f-4756-a866-7d1bb0bef196, #wrap-s-52e891cc-787f-4756-a866-7d1bb0bef196 { display:none !important; }}







#s-52e891cc-787f-4756-a866-7d1bb0bef196 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-52e891cc-787f-4756-a866-7d1bb0bef196.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0453f65d-8499-4b00-9e56-41f6e5cc51ca {
  min-height: 50px;
}
@media (max-width: 767px){#s-0453f65d-8499-4b00-9e56-41f6e5cc51ca {
  display: none;
}
#s-0453f65d-8499-4b00-9e56-41f6e5cc51ca, #wrap-s-0453f65d-8499-4b00-9e56-41f6e5cc51ca { display:none !important; }}







#s-0453f65d-8499-4b00-9e56-41f6e5cc51ca > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0453f65d-8499-4b00-9e56-41f6e5cc51ca.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6c0e0340-26eb-4f5c-9d83-950833d77031 {
  max-width: 2880px;
aspect-ratio: 2880/600;
text-align: center;
}





  #s-6c0e0340-26eb-4f5c-9d83-950833d77031 img.shogun-image,
  #s-6c0e0340-26eb-4f5c-9d83-950833d77031 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6c0e0340-26eb-4f5c-9d83-950833d77031 {
    width: 100%;
    height: auto;
  }



  #s-6c0e0340-26eb-4f5c-9d83-950833d77031 img.shogun-image {
    

    
    
    
  }


#s-6c0e0340-26eb-4f5c-9d83-950833d77031 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-0b96b376-bb9d-425b-835b-fa027e4fbc0f {
  min-height: 40px;
}
@media (max-width: 767px){#s-0b96b376-bb9d-425b-835b-fa027e4fbc0f {
  display: none;
}
#s-0b96b376-bb9d-425b-835b-fa027e4fbc0f, #wrap-s-0b96b376-bb9d-425b-835b-fa027e4fbc0f { display:none !important; }}







#s-0b96b376-bb9d-425b-835b-fa027e4fbc0f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0b96b376-bb9d-425b-835b-fa027e4fbc0f.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: 7%;
margin-left: 0%;
margin-bottom: 5%;
margin-right: 0%;
padding-left: 8%;
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: 5%;
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: 14px;
margin-right: 0%;
max-width: 45%;
aspect-ratio: 450/72;
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-start;
  
}

#s-5d748eb7-8032-45f4-a7e0-4bc718a795ab {
  margin-top: 7%;
margin-left: 0%;
margin-bottom: 5%;
margin-right: 0%;
padding-left: 8%;
padding-right: 8%;
}
@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: 14px;
margin-right: 0%;
max-width: 65%;
aspect-ratio: 705/72;
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-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(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-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(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-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(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-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(27, 27, 27, 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(27, 27, 27, 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(27, 27, 27, 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(27, 27, 27, 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(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-e1eb4d5f-cc48-469c-b486-68b41e507630 {
  min-height: 40px;
}
@media (max-width: 767px){#s-e1eb4d5f-cc48-469c-b486-68b41e507630 {
  display: none;
}
#s-e1eb4d5f-cc48-469c-b486-68b41e507630, #wrap-s-e1eb4d5f-cc48-469c-b486-68b41e507630 { display:none !important; }}







#s-e1eb4d5f-cc48-469c-b486-68b41e507630 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e1eb4d5f-cc48-469c-b486-68b41e507630.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d91d81d4-7e97-4121-8051-221356c71f9d {
  min-height: 50px;
}
@media (max-width: 767px){#s-d91d81d4-7e97-4121-8051-221356c71f9d {
  display: none;
}
#s-d91d81d4-7e97-4121-8051-221356c71f9d, #wrap-s-d91d81d4-7e97-4121-8051-221356c71f9d { display:none !important; }}







#s-d91d81d4-7e97-4121-8051-221356c71f9d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d91d81d4-7e97-4121-8051-221356c71f9d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-26a7594e-2fd2-4173-b8de-9defa292af29 {
  max-width: 2880px;
aspect-ratio: 2880/1296;
text-align: center;
}





  #s-26a7594e-2fd2-4173-b8de-9defa292af29 img.shogun-image,
  #s-26a7594e-2fd2-4173-b8de-9defa292af29 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-26a7594e-2fd2-4173-b8de-9defa292af29 {
    width: 100%;
    height: auto;
  }



  #s-26a7594e-2fd2-4173-b8de-9defa292af29 img.shogun-image {
    

    
    
    
  }


#s-26a7594e-2fd2-4173-b8de-9defa292af29 .shogun-image-content {
  
    align-items: center;
  
}

#s-4d6aac1c-cdee-4c0d-9c6b-f0f6c439a710 {
  min-height: 50px;
}








#s-4d6aac1c-cdee-4c0d-9c6b-f0f6c439a710 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4d6aac1c-cdee-4c0d-9c6b-f0f6c439a710.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-480c2fb0-eae9-489a-a49d-a83b7dcbe9f9 {
  margin-top: 12%;
}

@media (min-width: 0px) {
[id="s-480c2fb0-eae9-489a-a49d-a83b7dcbe9f9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-480c2fb0-eae9-489a-a49d-a83b7dcbe9f9"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-480c2fb0-eae9-489a-a49d-a83b7dcbe9f9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-480c2fb0-eae9-489a-a49d-a83b7dcbe9f9"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-480c2fb0-eae9-489a-a49d-a83b7dcbe9f9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-480c2fb0-eae9-489a-a49d-a83b7dcbe9f9"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-480c2fb0-eae9-489a-a49d-a83b7dcbe9f9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

}

#s-2b84500d-1e9f-4bc0-b09b-014e4a935e61 {
  margin-left: 1%;
margin-right: 3%;
min-height: 50px;
}








#s-2b84500d-1e9f-4bc0-b09b-014e4a935e61 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2b84500d-1e9f-4bc0-b09b-014e4a935e61.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2650b9c7-4ea0-4e53-8c0d-b4c583ff610f {
  margin-left: auto;
margin-bottom: 14px;
margin-right: auto;
max-width: 23%;
aspect-ratio: 326/156;
text-align: center;
}





  #s-2650b9c7-4ea0-4e53-8c0d-b4c583ff610f img.shogun-image,
  #s-2650b9c7-4ea0-4e53-8c0d-b4c583ff610f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2650b9c7-4ea0-4e53-8c0d-b4c583ff610f {
    width: 100%;
    height: auto;
  }



  #s-2650b9c7-4ea0-4e53-8c0d-b4c583ff610f img.shogun-image {
    

    
    
    
  }


#s-2650b9c7-4ea0-4e53-8c0d-b4c583ff610f .shogun-image-content {
  
    align-items: center;
  
}

#s-9e9a9c78-621e-4bb9-93f1-db8882cd1afa {
  border-style: solid;
margin-left: 0.5%;
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-9e9a9c78-621e-4bb9-93f1-db8882cd1afa: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-9e9a9c78-621e-4bb9-93f1-db8882cd1afa: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-9e9a9c78-621e-4bb9-93f1-db8882cd1afa {
  padding-left: 15px;
padding-right: 15px;
}
}

  #s-9e9a9c78-621e-4bb9-93f1-db8882cd1afa-root {
    text-align: center;
  }


#s-9e9a9c78-621e-4bb9-93f1-db8882cd1afa.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-9e9a9c78-621e-4bb9-93f1-db8882cd1afa-root {
    text-align: center;
  }


#s-9e9a9c78-621e-4bb9-93f1-db8882cd1afa.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-9e9a9c78-621e-4bb9-93f1-db8882cd1afa-root {
    text-align: center;
  }


#s-9e9a9c78-621e-4bb9-93f1-db8882cd1afa.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-9e9a9c78-621e-4bb9-93f1-db8882cd1afa-root {
    text-align: center;
  }


#s-9e9a9c78-621e-4bb9-93f1-db8882cd1afa.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 11px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-9e9a9c78-621e-4bb9-93f1-db8882cd1afa-root {
    text-align: center;
  }


#s-9e9a9c78-621e-4bb9-93f1-db8882cd1afa.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-0915775b-0a3f-46d4-9b1a-d9d307f1262a {
  min-height: 40px;
}
@media (max-width: 767px){#s-0915775b-0a3f-46d4-9b1a-d9d307f1262a {
  display: none;
}
#s-0915775b-0a3f-46d4-9b1a-d9d307f1262a, #wrap-s-0915775b-0a3f-46d4-9b1a-d9d307f1262a { display:none !important; }}







#s-0915775b-0a3f-46d4-9b1a-d9d307f1262a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0915775b-0a3f-46d4-9b1a-d9d307f1262a.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-f9d34ab9-7ffe-47c7-956a-ed6def3dc398 {
  min-height: 50px;
}
@media (max-width: 767px){#s-f9d34ab9-7ffe-47c7-956a-ed6def3dc398 {
  display: none;
}
#s-f9d34ab9-7ffe-47c7-956a-ed6def3dc398, #wrap-s-f9d34ab9-7ffe-47c7-956a-ed6def3dc398 { display:none !important; }}







#s-f9d34ab9-7ffe-47c7-956a-ed6def3dc398 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f9d34ab9-7ffe-47c7-956a-ed6def3dc398.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8325441e-9695-43ae-9795-fe2ec337aaa0 {
  max-width: 2880px;
aspect-ratio: 2880/1142;
text-align: center;
}





  #s-8325441e-9695-43ae-9795-fe2ec337aaa0 img.shogun-image,
  #s-8325441e-9695-43ae-9795-fe2ec337aaa0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8325441e-9695-43ae-9795-fe2ec337aaa0 {
    width: 100%;
    height: auto;
  }



  #s-8325441e-9695-43ae-9795-fe2ec337aaa0 img.shogun-image {
    

    
    
    
  }


#s-8325441e-9695-43ae-9795-fe2ec337aaa0 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-5dc373c0-73ce-41e7-9c61-28bc298f2a19 {
  min-height: 50px;
}








#s-5dc373c0-73ce-41e7-9c61-28bc298f2a19 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5dc373c0-73ce-41e7-9c61-28bc298f2a19.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7d7fd26d-cc32-44b9-8522-4d6140901a14 {
  margin-top: 2.5%;
margin-left: 0%;
margin-bottom: 4%;
margin-right: 1%;
}

@media (min-width: 0px) {
[id="s-7d7fd26d-cc32-44b9-8522-4d6140901a14"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7d7fd26d-cc32-44b9-8522-4d6140901a14"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-7d7fd26d-cc32-44b9-8522-4d6140901a14"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-7d7fd26d-cc32-44b9-8522-4d6140901a14"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-8b63af40-fe98-4b6d-a76d-902c9a509f20 {
  margin-left: 9%;
margin-right: 5%;
min-height: 50px;
}








#s-8b63af40-fe98-4b6d-a76d-902c9a509f20 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8b63af40-fe98-4b6d-a76d-902c9a509f20.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-12352ce9-22f4-4e77-9fef-1ca274924c76 {
  margin-left: auto;
margin-bottom: 14px;
margin-right: auto;
max-width: 72%;
aspect-ratio: 568/158;
text-align: center;
}





  #s-12352ce9-22f4-4e77-9fef-1ca274924c76 img.shogun-image,
  #s-12352ce9-22f4-4e77-9fef-1ca274924c76 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-12352ce9-22f4-4e77-9fef-1ca274924c76 {
    width: 100%;
    height: auto;
  }



  #s-12352ce9-22f4-4e77-9fef-1ca274924c76 img.shogun-image {
    

    
    
    
  }


#s-12352ce9-22f4-4e77-9fef-1ca274924c76 .shogun-image-content {
  
    align-items: center;
  
}

#s-bc6f31f3-7681-4700-8c34-38e581ccd321 {
  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-bc6f31f3-7681-4700-8c34-38e581ccd321: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-bc6f31f3-7681-4700-8c34-38e581ccd321: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-bc6f31f3-7681-4700-8c34-38e581ccd321 {
  padding-left: 15px;
padding-right: 15px;
}
}

  #s-bc6f31f3-7681-4700-8c34-38e581ccd321-root {
    text-align: center;
  }


#s-bc6f31f3-7681-4700-8c34-38e581ccd321.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-bc6f31f3-7681-4700-8c34-38e581ccd321-root {
    text-align: center;
  }


#s-bc6f31f3-7681-4700-8c34-38e581ccd321.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-bc6f31f3-7681-4700-8c34-38e581ccd321-root {
    text-align: center;
  }


#s-bc6f31f3-7681-4700-8c34-38e581ccd321.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-bc6f31f3-7681-4700-8c34-38e581ccd321-root {
    text-align: center;
  }


#s-bc6f31f3-7681-4700-8c34-38e581ccd321.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 11px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-bc6f31f3-7681-4700-8c34-38e581ccd321-root {
    text-align: center;
  }


#s-bc6f31f3-7681-4700-8c34-38e581ccd321.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-5784ba21-0ced-4413-9a5d-e86f686cf6e1 {
  min-height: 40px;
}
@media (max-width: 767px){#s-5784ba21-0ced-4413-9a5d-e86f686cf6e1 {
  display: none;
}
#s-5784ba21-0ced-4413-9a5d-e86f686cf6e1, #wrap-s-5784ba21-0ced-4413-9a5d-e86f686cf6e1 { display:none !important; }}







#s-5784ba21-0ced-4413-9a5d-e86f686cf6e1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5784ba21-0ced-4413-9a5d-e86f686cf6e1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5a98113b-9cf6-40de-a190-77f3e860314e {
  margin-left: 2%;
margin-right: 2%;
}
@media (max-width: 767px){#s-5a98113b-9cf6-40de-a190-77f3e860314e {
  display: none;
}
#s-5a98113b-9cf6-40de-a190-77f3e860314e, #wrap-s-5a98113b-9cf6-40de-a190-77f3e860314e { display:none !important; }}
@media (min-width: 0px) {
[id="s-5a98113b-9cf6-40de-a190-77f3e860314e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5a98113b-9cf6-40de-a190-77f3e860314e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5a98113b-9cf6-40de-a190-77f3e860314e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5a98113b-9cf6-40de-a190-77f3e860314e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-0819dfa5-c20a-4783-92e0-467565c078cc {
  max-width: 1350px;
aspect-ratio: 1350/1500;
text-align: center;
}





  #s-0819dfa5-c20a-4783-92e0-467565c078cc img.shogun-image,
  #s-0819dfa5-c20a-4783-92e0-467565c078cc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0819dfa5-c20a-4783-92e0-467565c078cc {
    width: 100%;
    height: auto;
  }



  #s-0819dfa5-c20a-4783-92e0-467565c078cc img.shogun-image {
    

    
    
    
  }


#s-0819dfa5-c20a-4783-92e0-467565c078cc .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-46fd8ad5-35eb-40e0-ac92-870ed6acca36 {
  margin-top: 7%;
margin-left: 0%;
margin-bottom: 5%;
margin-right: 0%;
padding-left: 8%;
padding-right: 8%;
}
@media (max-width: 767px){#s-46fd8ad5-35eb-40e0-ac92-870ed6acca36 {
  display: none;
}
#s-46fd8ad5-35eb-40e0-ac92-870ed6acca36, #wrap-s-46fd8ad5-35eb-40e0-ac92-870ed6acca36 { display:none !important; }}
@media (min-width: 0px) {
[id="s-46fd8ad5-35eb-40e0-ac92-870ed6acca36"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-46fd8ad5-35eb-40e0-ac92-870ed6acca36"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-46fd8ad5-35eb-40e0-ac92-870ed6acca36"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-46fd8ad5-35eb-40e0-ac92-870ed6acca36"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-46fd8ad5-35eb-40e0-ac92-870ed6acca36"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-46fd8ad5-35eb-40e0-ac92-870ed6acca36"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-46fd8ad5-35eb-40e0-ac92-870ed6acca36"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

}

#s-4540c6c3-2aee-4833-975c-2344d7cc8cf2 {
  min-height: 50px;
}








#s-4540c6c3-2aee-4833-975c-2344d7cc8cf2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4540c6c3-2aee-4833-975c-2344d7cc8cf2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7408a736-170d-4cf0-83c4-338c575d58ec {
  margin-left: 5%;
min-height: 50px;
}








#s-7408a736-170d-4cf0-83c4-338c575d58ec > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7408a736-170d-4cf0-83c4-338c575d58ec.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1c4b7fae-0700-42bf-aa59-3f384adb3c8b {
  margin-left: 0%;
margin-bottom: 14px;
margin-right: 0%;
max-width: 71%;
aspect-ratio: 726/71;
text-align: left;
}





  #s-1c4b7fae-0700-42bf-aa59-3f384adb3c8b img.shogun-image,
  #s-1c4b7fae-0700-42bf-aa59-3f384adb3c8b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1c4b7fae-0700-42bf-aa59-3f384adb3c8b {
    width: 100%;
    height: auto;
  }



  #s-1c4b7fae-0700-42bf-aa59-3f384adb3c8b img.shogun-image {
    

    
    
    
  }


#s-1c4b7fae-0700-42bf-aa59-3f384adb3c8b .shogun-image-content {
  
    align-items: center;
  
}

#s-e069750a-a714-4d58-b1dc-6ae24455f622 {
  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: 1px;
background-color: rgba(27, 27, 27, 0);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-e069750a-a714-4d58-b1dc-6ae24455f622: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: 1px !important;
background-color: rgba(27, 27, 27, 0.35) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-e069750a-a714-4d58-b1dc-6ae24455f622: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(27, 27, 27, 0.5) !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-e069750a-a714-4d58-b1dc-6ae24455f622 {
  padding-left: 15px;
padding-right: 15px;
}
}

  #s-e069750a-a714-4d58-b1dc-6ae24455f622-root {
    text-align: left;
  }


#s-e069750a-a714-4d58-b1dc-6ae24455f622.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e069750a-a714-4d58-b1dc-6ae24455f622-root {
    text-align: left;
  }


#s-e069750a-a714-4d58-b1dc-6ae24455f622.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-e069750a-a714-4d58-b1dc-6ae24455f622-root {
    text-align: left;
  }


#s-e069750a-a714-4d58-b1dc-6ae24455f622.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-e069750a-a714-4d58-b1dc-6ae24455f622-root {
    text-align: left;
  }


#s-e069750a-a714-4d58-b1dc-6ae24455f622.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 11px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e069750a-a714-4d58-b1dc-6ae24455f622-root {
    text-align: left;
  }


#s-e069750a-a714-4d58-b1dc-6ae24455f622.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-3e1c6d7d-02d8-46e6-a399-9a1392ae13cb {
  max-width: 1350px;
aspect-ratio: 1350/1500;
text-align: center;
}





  #s-3e1c6d7d-02d8-46e6-a399-9a1392ae13cb img.shogun-image,
  #s-3e1c6d7d-02d8-46e6-a399-9a1392ae13cb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3e1c6d7d-02d8-46e6-a399-9a1392ae13cb {
    width: 100%;
    height: auto;
  }



  #s-3e1c6d7d-02d8-46e6-a399-9a1392ae13cb img.shogun-image {
    

    
    
    
  }


#s-3e1c6d7d-02d8-46e6-a399-9a1392ae13cb .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-fb1c4fbe-041a-42fc-b68b-74d77dd812f3 {
  margin-top: 7%;
margin-left: 0%;
margin-bottom: 5%;
margin-right: 0%;
padding-left: 8%;
padding-right: 8%;
}
@media (max-width: 767px){#s-fb1c4fbe-041a-42fc-b68b-74d77dd812f3 {
  display: none;
}
#s-fb1c4fbe-041a-42fc-b68b-74d77dd812f3, #wrap-s-fb1c4fbe-041a-42fc-b68b-74d77dd812f3 { display:none !important; }}
@media (min-width: 0px) {
[id="s-fb1c4fbe-041a-42fc-b68b-74d77dd812f3"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-fb1c4fbe-041a-42fc-b68b-74d77dd812f3"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-fb1c4fbe-041a-42fc-b68b-74d77dd812f3"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-fb1c4fbe-041a-42fc-b68b-74d77dd812f3"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-fb1c4fbe-041a-42fc-b68b-74d77dd812f3"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-fb1c4fbe-041a-42fc-b68b-74d77dd812f3"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-fb1c4fbe-041a-42fc-b68b-74d77dd812f3"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

}

#s-68e5d702-5a40-4bd9-b331-2dab5800a911 {
  min-height: 50px;
}








#s-68e5d702-5a40-4bd9-b331-2dab5800a911 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-68e5d702-5a40-4bd9-b331-2dab5800a911.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-348c359c-d593-44f4-9b7e-34c459d1bb96 {
  min-height: 50px;
}








#s-348c359c-d593-44f4-9b7e-34c459d1bb96 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-348c359c-d593-44f4-9b7e-34c459d1bb96.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0a4567d1-3b15-45a9-92ec-36a1feade744 {
  margin-left: 0%;
margin-bottom: 14px;
margin-right: 0%;
max-width: 46%;
aspect-ratio: 482/71;
text-align: left;
}





  #s-0a4567d1-3b15-45a9-92ec-36a1feade744 img.shogun-image,
  #s-0a4567d1-3b15-45a9-92ec-36a1feade744 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0a4567d1-3b15-45a9-92ec-36a1feade744 {
    width: 100%;
    height: auto;
  }



  #s-0a4567d1-3b15-45a9-92ec-36a1feade744 img.shogun-image {
    

    
    
    
  }


#s-0a4567d1-3b15-45a9-92ec-36a1feade744 .shogun-image-content {
  
    align-items: center;
  
}

#s-969fe6c3-ea78-40ed-bff8-6b2023d260a3 {
  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-969fe6c3-ea78-40ed-bff8-6b2023d260a3: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-969fe6c3-ea78-40ed-bff8-6b2023d260a3: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-969fe6c3-ea78-40ed-bff8-6b2023d260a3 {
  padding-left: 15px;
padding-right: 15px;
}
}

  #s-969fe6c3-ea78-40ed-bff8-6b2023d260a3-root {
    text-align: left;
  }


#s-969fe6c3-ea78-40ed-bff8-6b2023d260a3.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-969fe6c3-ea78-40ed-bff8-6b2023d260a3-root {
    text-align: left;
  }


#s-969fe6c3-ea78-40ed-bff8-6b2023d260a3.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-969fe6c3-ea78-40ed-bff8-6b2023d260a3-root {
    text-align: left;
  }


#s-969fe6c3-ea78-40ed-bff8-6b2023d260a3.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-969fe6c3-ea78-40ed-bff8-6b2023d260a3-root {
    text-align: left;
  }


#s-969fe6c3-ea78-40ed-bff8-6b2023d260a3.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 11px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-969fe6c3-ea78-40ed-bff8-6b2023d260a3-root {
    text-align: left;
  }


#s-969fe6c3-ea78-40ed-bff8-6b2023d260a3.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-ceac3886-c063-40df-a623-ad7cc21c4415 {
  min-height: 40px;
}
@media (max-width: 767px){#s-ceac3886-c063-40df-a623-ad7cc21c4415 {
  display: none;
}
#s-ceac3886-c063-40df-a623-ad7cc21c4415, #wrap-s-ceac3886-c063-40df-a623-ad7cc21c4415 { display:none !important; }}







#s-ceac3886-c063-40df-a623-ad7cc21c4415 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ceac3886-c063-40df-a623-ad7cc21c4415.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-92784ecb-eb21-4fde-9538-10d6c6b340f1 {
  margin-bottom: 2%;
min-height: 50px;
}
@media (min-width: 1200px){#s-92784ecb-eb21-4fde-9538-10d6c6b340f1 {
  display: none;
}
#s-92784ecb-eb21-4fde-9538-10d6c6b340f1, #wrap-s-92784ecb-eb21-4fde-9538-10d6c6b340f1 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-92784ecb-eb21-4fde-9538-10d6c6b340f1 {
  display: none;
}
#s-92784ecb-eb21-4fde-9538-10d6c6b340f1, #wrap-s-92784ecb-eb21-4fde-9538-10d6c6b340f1 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-92784ecb-eb21-4fde-9538-10d6c6b340f1 {
  display: none;
}
#s-92784ecb-eb21-4fde-9538-10d6c6b340f1, #wrap-s-92784ecb-eb21-4fde-9538-10d6c6b340f1 { display:none !important; }}







#s-92784ecb-eb21-4fde-9538-10d6c6b340f1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-92784ecb-eb21-4fde-9538-10d6c6b340f1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-31f24dda-01f4-4e3d-a252-643c55b2b936 {
  max-width: 750px;
aspect-ratio: 750/846;
text-align: center;
}
@media (min-width: 1200px){#s-31f24dda-01f4-4e3d-a252-643c55b2b936 {
  display: none;
}
#s-31f24dda-01f4-4e3d-a252-643c55b2b936, #wrap-s-31f24dda-01f4-4e3d-a252-643c55b2b936 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-31f24dda-01f4-4e3d-a252-643c55b2b936 {
  display: none;
}
#s-31f24dda-01f4-4e3d-a252-643c55b2b936, #wrap-s-31f24dda-01f4-4e3d-a252-643c55b2b936 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-31f24dda-01f4-4e3d-a252-643c55b2b936 {
  display: none;
}
#s-31f24dda-01f4-4e3d-a252-643c55b2b936, #wrap-s-31f24dda-01f4-4e3d-a252-643c55b2b936 { display:none !important; }}




  #s-31f24dda-01f4-4e3d-a252-643c55b2b936 img.shogun-image,
  #s-31f24dda-01f4-4e3d-a252-643c55b2b936 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-31f24dda-01f4-4e3d-a252-643c55b2b936 {
    width: 100%;
    height: auto;
  }



  #s-31f24dda-01f4-4e3d-a252-643c55b2b936 img.shogun-image {
    

    
    
    
  }


#s-31f24dda-01f4-4e3d-a252-643c55b2b936 .shogun-image-content {
  
    align-items: center;
  
}

#s-7c5d531c-e205-4f03-99cc-365d9caa525d {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 7%;
margin-right: auto;
min-height: 50px;
max-width: 1600px;
}
@media (min-width: 1200px){#s-7c5d531c-e205-4f03-99cc-365d9caa525d {
  display: none;
}
#s-7c5d531c-e205-4f03-99cc-365d9caa525d, #wrap-s-7c5d531c-e205-4f03-99cc-365d9caa525d { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7c5d531c-e205-4f03-99cc-365d9caa525d {
  display: none;
}
#s-7c5d531c-e205-4f03-99cc-365d9caa525d, #wrap-s-7c5d531c-e205-4f03-99cc-365d9caa525d { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7c5d531c-e205-4f03-99cc-365d9caa525d {
  display: none;
}
#s-7c5d531c-e205-4f03-99cc-365d9caa525d, #wrap-s-7c5d531c-e205-4f03-99cc-365d9caa525d { display:none !important; }}







#s-7c5d531c-e205-4f03-99cc-365d9caa525d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7c5d531c-e205-4f03-99cc-365d9caa525d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2e717e5f-af9a-45bc-8346-a5b8c3c8dbe3 {
  margin-left: 10px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-2e717e5f-af9a-45bc-8346-a5b8c3c8dbe3"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 768px) {
[id="s-2e717e5f-af9a-45bc-8346-a5b8c3c8dbe3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-2e717e5f-af9a-45bc-8346-a5b8c3c8dbe3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-2e717e5f-af9a-45bc-8346-a5b8c3c8dbe3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 7.5px);
}

}

#s-ef181831-7d27-4a0e-ae1b-a77eaa7d0851 {
  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);
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-ef181831-7d27-4a0e-ae1b-a77eaa7d0851: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, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-ef181831-7d27-4a0e-ae1b-a77eaa7d0851: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, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}

  #s-ef181831-7d27-4a0e-ae1b-a77eaa7d0851-root {
    text-align: center;
  }


#s-ef181831-7d27-4a0e-ae1b-a77eaa7d0851.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
@media (min-width: 1200px){
  #s-ef181831-7d27-4a0e-ae1b-a77eaa7d0851-root {
    text-align: center;
  }


#s-ef181831-7d27-4a0e-ae1b-a77eaa7d0851.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-ef181831-7d27-4a0e-ae1b-a77eaa7d0851-root {
    text-align: center;
  }


#s-ef181831-7d27-4a0e-ae1b-a77eaa7d0851.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-ef181831-7d27-4a0e-ae1b-a77eaa7d0851-root {
    text-align: center;
  }


#s-ef181831-7d27-4a0e-ae1b-a77eaa7d0851.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (max-width: 767px){
  #s-ef181831-7d27-4a0e-ae1b-a77eaa7d0851-root {
    text-align: center;
  }


#s-ef181831-7d27-4a0e-ae1b-a77eaa7d0851.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}
#s-6e22ca2c-64cf-4025-af2a-d1db880215b2 {
  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);
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-6e22ca2c-64cf-4025-af2a-d1db880215b2: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, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-6e22ca2c-64cf-4025-af2a-d1db880215b2: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, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}

  #s-6e22ca2c-64cf-4025-af2a-d1db880215b2-root {
    text-align: center;
  }


#s-6e22ca2c-64cf-4025-af2a-d1db880215b2.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
@media (min-width: 1200px){
  #s-6e22ca2c-64cf-4025-af2a-d1db880215b2-root {
    text-align: center;
  }


#s-6e22ca2c-64cf-4025-af2a-d1db880215b2.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-6e22ca2c-64cf-4025-af2a-d1db880215b2-root {
    text-align: center;
  }


#s-6e22ca2c-64cf-4025-af2a-d1db880215b2.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-6e22ca2c-64cf-4025-af2a-d1db880215b2-root {
    text-align: center;
  }


#s-6e22ca2c-64cf-4025-af2a-d1db880215b2.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (max-width: 767px){
  #s-6e22ca2c-64cf-4025-af2a-d1db880215b2-root {
    text-align: center;
  }


#s-6e22ca2c-64cf-4025-af2a-d1db880215b2.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}
#s-8c93b2b3-988a-415d-97aa-b9c5159f9dac {
  margin-left: 10px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-8c93b2b3-988a-415d-97aa-b9c5159f9dac"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 768px) {
[id="s-8c93b2b3-988a-415d-97aa-b9c5159f9dac"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-8c93b2b3-988a-415d-97aa-b9c5159f9dac"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-8c93b2b3-988a-415d-97aa-b9c5159f9dac"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 7.5px);
}

}

#s-7b48048d-fa38-4697-873f-d398cbc3d060 {
  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);
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-7b48048d-fa38-4697-873f-d398cbc3d060: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, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-7b48048d-fa38-4697-873f-d398cbc3d060: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, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}

  #s-7b48048d-fa38-4697-873f-d398cbc3d060-root {
    text-align: center;
  }


#s-7b48048d-fa38-4697-873f-d398cbc3d060.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
@media (min-width: 1200px){
  #s-7b48048d-fa38-4697-873f-d398cbc3d060-root {
    text-align: center;
  }


#s-7b48048d-fa38-4697-873f-d398cbc3d060.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-7b48048d-fa38-4697-873f-d398cbc3d060-root {
    text-align: center;
  }


#s-7b48048d-fa38-4697-873f-d398cbc3d060.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-7b48048d-fa38-4697-873f-d398cbc3d060-root {
    text-align: center;
  }


#s-7b48048d-fa38-4697-873f-d398cbc3d060.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (max-width: 767px){
  #s-7b48048d-fa38-4697-873f-d398cbc3d060-root {
    text-align: center;
  }


#s-7b48048d-fa38-4697-873f-d398cbc3d060.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}
#s-cf74e9d6-a5ed-41ca-93ec-cc824564b51f {
  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);
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-cf74e9d6-a5ed-41ca-93ec-cc824564b51f: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, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-cf74e9d6-a5ed-41ca-93ec-cc824564b51f: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, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}

  #s-cf74e9d6-a5ed-41ca-93ec-cc824564b51f-root {
    text-align: center;
  }


#s-cf74e9d6-a5ed-41ca-93ec-cc824564b51f.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
@media (min-width: 1200px){
  #s-cf74e9d6-a5ed-41ca-93ec-cc824564b51f-root {
    text-align: center;
  }


#s-cf74e9d6-a5ed-41ca-93ec-cc824564b51f.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-cf74e9d6-a5ed-41ca-93ec-cc824564b51f-root {
    text-align: center;
  }


#s-cf74e9d6-a5ed-41ca-93ec-cc824564b51f.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-cf74e9d6-a5ed-41ca-93ec-cc824564b51f-root {
    text-align: center;
  }


#s-cf74e9d6-a5ed-41ca-93ec-cc824564b51f.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (max-width: 767px){
  #s-cf74e9d6-a5ed-41ca-93ec-cc824564b51f-root {
    text-align: center;
  }


#s-cf74e9d6-a5ed-41ca-93ec-cc824564b51f.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}
#s-0dafc259-003a-4404-a8b0-0874249c832b {
  margin-left: 10px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-0dafc259-003a-4404-a8b0-0874249c832b"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 768px) {
[id="s-0dafc259-003a-4404-a8b0-0874249c832b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-0dafc259-003a-4404-a8b0-0874249c832b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-0dafc259-003a-4404-a8b0-0874249c832b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 7.5px);
}

}

#s-ea8145d1-7d99-4d9f-bce3-75a772b11518 {
  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);
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-ea8145d1-7d99-4d9f-bce3-75a772b11518: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, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-ea8145d1-7d99-4d9f-bce3-75a772b11518: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, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}

  #s-ea8145d1-7d99-4d9f-bce3-75a772b11518-root {
    text-align: center;
  }


#s-ea8145d1-7d99-4d9f-bce3-75a772b11518.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
@media (min-width: 1200px){
  #s-ea8145d1-7d99-4d9f-bce3-75a772b11518-root {
    text-align: center;
  }


#s-ea8145d1-7d99-4d9f-bce3-75a772b11518.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-ea8145d1-7d99-4d9f-bce3-75a772b11518-root {
    text-align: center;
  }


#s-ea8145d1-7d99-4d9f-bce3-75a772b11518.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-ea8145d1-7d99-4d9f-bce3-75a772b11518-root {
    text-align: center;
  }


#s-ea8145d1-7d99-4d9f-bce3-75a772b11518.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (max-width: 767px){
  #s-ea8145d1-7d99-4d9f-bce3-75a772b11518-root {
    text-align: center;
  }


#s-ea8145d1-7d99-4d9f-bce3-75a772b11518.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}
#s-fa148de9-d5e0-4696-8124-b5caa48713f9 {
  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);
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-fa148de9-d5e0-4696-8124-b5caa48713f9: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, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-fa148de9-d5e0-4696-8124-b5caa48713f9: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, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}

  #s-fa148de9-d5e0-4696-8124-b5caa48713f9-root {
    text-align: center;
  }


#s-fa148de9-d5e0-4696-8124-b5caa48713f9.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
@media (min-width: 1200px){
  #s-fa148de9-d5e0-4696-8124-b5caa48713f9-root {
    text-align: center;
  }


#s-fa148de9-d5e0-4696-8124-b5caa48713f9.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-fa148de9-d5e0-4696-8124-b5caa48713f9-root {
    text-align: center;
  }


#s-fa148de9-d5e0-4696-8124-b5caa48713f9.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-fa148de9-d5e0-4696-8124-b5caa48713f9-root {
    text-align: center;
  }


#s-fa148de9-d5e0-4696-8124-b5caa48713f9.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}@media (max-width: 767px){
  #s-fa148de9-d5e0-4696-8124-b5caa48713f9-root {
    text-align: center;
  }


#s-fa148de9-d5e0-4696-8124-b5caa48713f9.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  block ;
}
}
#s-22655cf8-2dab-4baf-bb79-1380750f2d49 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-22655cf8-2dab-4baf-bb79-1380750f2d49 {
  display: none;
}
#s-22655cf8-2dab-4baf-bb79-1380750f2d49, #wrap-s-22655cf8-2dab-4baf-bb79-1380750f2d49 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-22655cf8-2dab-4baf-bb79-1380750f2d49 {
  display: none;
}
#s-22655cf8-2dab-4baf-bb79-1380750f2d49, #wrap-s-22655cf8-2dab-4baf-bb79-1380750f2d49 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-22655cf8-2dab-4baf-bb79-1380750f2d49 {
  display: none;
}
#s-22655cf8-2dab-4baf-bb79-1380750f2d49, #wrap-s-22655cf8-2dab-4baf-bb79-1380750f2d49 { display:none !important; }}







#s-22655cf8-2dab-4baf-bb79-1380750f2d49 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-22655cf8-2dab-4baf-bb79-1380750f2d49.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-351958a2-e112-4245-ba5a-2d0383a75039 {
  max-width: 750px;
aspect-ratio: 750/814;
text-align: center;
}
@media (min-width: 1200px){#s-351958a2-e112-4245-ba5a-2d0383a75039 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-351958a2-e112-4245-ba5a-2d0383a75039 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-351958a2-e112-4245-ba5a-2d0383a75039 {
  
}
}




  #s-351958a2-e112-4245-ba5a-2d0383a75039 img.shogun-image,
  #s-351958a2-e112-4245-ba5a-2d0383a75039 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-351958a2-e112-4245-ba5a-2d0383a75039 {
    width: 100%;
    height: auto;
  }



  #s-351958a2-e112-4245-ba5a-2d0383a75039 img.shogun-image {
    

    
    
    
  }


#s-351958a2-e112-4245-ba5a-2d0383a75039 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-897fe47f-7b39-49d4-9953-338fc1ce59b9 {
  margin-top: 27%;
min-height: 50px;
}








#s-897fe47f-7b39-49d4-9953-338fc1ce59b9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-897fe47f-7b39-49d4-9953-338fc1ce59b9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fb48da45-2639-404e-9518-c9272548124d {
  border-style: solid;
margin-top: 7px;
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-fb48da45-2639-404e-9518-c9272548124d: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-fb48da45-2639-404e-9518-c9272548124d: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-fb48da45-2639-404e-9518-c9272548124d-root {
    text-align: center;
  }


#s-fb48da45-2639-404e-9518-c9272548124d.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-fb48da45-2639-404e-9518-c9272548124d-root {
    text-align: center;
  }


#s-fb48da45-2639-404e-9518-c9272548124d.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-fb48da45-2639-404e-9518-c9272548124d-root {
    text-align: center;
  }


#s-fb48da45-2639-404e-9518-c9272548124d.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-fb48da45-2639-404e-9518-c9272548124d-root {
    text-align: center;
  }


#s-fb48da45-2639-404e-9518-c9272548124d.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-fb48da45-2639-404e-9518-c9272548124d-root {
    text-align: center;
  }


#s-fb48da45-2639-404e-9518-c9272548124d.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-d86de954-1f10-4cec-ac62-eaa90a6083c7 {
  min-height: 40px;
}








#s-d86de954-1f10-4cec-ac62-eaa90a6083c7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d86de954-1f10-4cec-ac62-eaa90a6083c7.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: 750px;
aspect-ratio: 750/792;
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: 750px;
aspect-ratio: 750/782;
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-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/890;
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-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/460;
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-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-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: 750px;
aspect-ratio: 750/780;
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: 750px;
aspect-ratio: 750/792;
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-d23d6295-204f-486b-ae2d-4873311909c8 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-d23d6295-204f-486b-ae2d-4873311909c8 {
  display: none;
}
#s-d23d6295-204f-486b-ae2d-4873311909c8, #wrap-s-d23d6295-204f-486b-ae2d-4873311909c8 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d23d6295-204f-486b-ae2d-4873311909c8 {
  display: none;
}
#s-d23d6295-204f-486b-ae2d-4873311909c8, #wrap-s-d23d6295-204f-486b-ae2d-4873311909c8 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d23d6295-204f-486b-ae2d-4873311909c8 {
  display: none;
}
#s-d23d6295-204f-486b-ae2d-4873311909c8, #wrap-s-d23d6295-204f-486b-ae2d-4873311909c8 { display:none !important; }}







#s-d23d6295-204f-486b-ae2d-4873311909c8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d23d6295-204f-486b-ae2d-4873311909c8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-80f32888-e044-4150-9df9-58d55aa2b304 {
  max-width: 750px;
aspect-ratio: 750/792;
text-align: center;
}
@media (min-width: 1200px){#s-80f32888-e044-4150-9df9-58d55aa2b304 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-80f32888-e044-4150-9df9-58d55aa2b304 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-80f32888-e044-4150-9df9-58d55aa2b304 {
  
}
}




  #s-80f32888-e044-4150-9df9-58d55aa2b304 img.shogun-image,
  #s-80f32888-e044-4150-9df9-58d55aa2b304 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-80f32888-e044-4150-9df9-58d55aa2b304 {
    width: 100%;
    height: auto;
  }



  #s-80f32888-e044-4150-9df9-58d55aa2b304 img.shogun-image {
    

    
    
    
  }


#s-80f32888-e044-4150-9df9-58d55aa2b304 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-f2ebe21e-a3bb-404e-897e-57fa4d8a84b5 {
  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-f2ebe21e-a3bb-404e-897e-57fa4d8a84b5: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-f2ebe21e-a3bb-404e-897e-57fa4d8a84b5: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-f2ebe21e-a3bb-404e-897e-57fa4d8a84b5-root {
    text-align: center;
  }


#s-f2ebe21e-a3bb-404e-897e-57fa4d8a84b5.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-f2ebe21e-a3bb-404e-897e-57fa4d8a84b5-root {
    text-align: center;
  }


#s-f2ebe21e-a3bb-404e-897e-57fa4d8a84b5.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-f2ebe21e-a3bb-404e-897e-57fa4d8a84b5-root {
    text-align: center;
  }


#s-f2ebe21e-a3bb-404e-897e-57fa4d8a84b5.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-f2ebe21e-a3bb-404e-897e-57fa4d8a84b5-root {
    text-align: center;
  }


#s-f2ebe21e-a3bb-404e-897e-57fa4d8a84b5.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-f2ebe21e-a3bb-404e-897e-57fa4d8a84b5-root {
    text-align: center;
  }


#s-f2ebe21e-a3bb-404e-897e-57fa4d8a84b5.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-012e05f4-80c1-4078-ba32-017dbc42b06f {
  min-height: 40px;
}








#s-012e05f4-80c1-4078-ba32-017dbc42b06f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-012e05f4-80c1-4078-ba32-017dbc42b06f.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-984f2132-8b8a-475b-a944-d57b9be75a51 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-984f2132-8b8a-475b-a944-d57b9be75a51 {
  display: none;
}
#s-984f2132-8b8a-475b-a944-d57b9be75a51, #wrap-s-984f2132-8b8a-475b-a944-d57b9be75a51 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-984f2132-8b8a-475b-a944-d57b9be75a51 {
  display: none;
}
#s-984f2132-8b8a-475b-a944-d57b9be75a51, #wrap-s-984f2132-8b8a-475b-a944-d57b9be75a51 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-984f2132-8b8a-475b-a944-d57b9be75a51 {
  display: none;
}
#s-984f2132-8b8a-475b-a944-d57b9be75a51, #wrap-s-984f2132-8b8a-475b-a944-d57b9be75a51 { display:none !important; }}







#s-984f2132-8b8a-475b-a944-d57b9be75a51 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-984f2132-8b8a-475b-a944-d57b9be75a51.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-67969ef9-1084-424f-813c-99839907fb2f {
  max-width: 750px;
aspect-ratio: 750/666;
text-align: center;
}
@media (min-width: 1200px){#s-67969ef9-1084-424f-813c-99839907fb2f {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-67969ef9-1084-424f-813c-99839907fb2f {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-67969ef9-1084-424f-813c-99839907fb2f {
  
}
}




  #s-67969ef9-1084-424f-813c-99839907fb2f img.shogun-image,
  #s-67969ef9-1084-424f-813c-99839907fb2f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-67969ef9-1084-424f-813c-99839907fb2f {
    width: 100%;
    height: auto;
  }



  #s-67969ef9-1084-424f-813c-99839907fb2f img.shogun-image {
    

    
    
    
  }


#s-67969ef9-1084-424f-813c-99839907fb2f .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-c87a06e4-f221-4ba1-b50e-cb29a469d62e {
  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-c87a06e4-f221-4ba1-b50e-cb29a469d62e: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-c87a06e4-f221-4ba1-b50e-cb29a469d62e: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-c87a06e4-f221-4ba1-b50e-cb29a469d62e-root {
    text-align: center;
  }


#s-c87a06e4-f221-4ba1-b50e-cb29a469d62e.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c87a06e4-f221-4ba1-b50e-cb29a469d62e-root {
    text-align: center;
  }


#s-c87a06e4-f221-4ba1-b50e-cb29a469d62e.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-c87a06e4-f221-4ba1-b50e-cb29a469d62e-root {
    text-align: center;
  }


#s-c87a06e4-f221-4ba1-b50e-cb29a469d62e.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-c87a06e4-f221-4ba1-b50e-cb29a469d62e-root {
    text-align: center;
  }


#s-c87a06e4-f221-4ba1-b50e-cb29a469d62e.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c87a06e4-f221-4ba1-b50e-cb29a469d62e-root {
    text-align: center;
  }


#s-c87a06e4-f221-4ba1-b50e-cb29a469d62e.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-fb23a0ec-d71e-4e1f-a217-64e3697cbe64 {
  min-height: 40px;
}








#s-fb23a0ec-d71e-4e1f-a217-64e3697cbe64 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fb23a0ec-d71e-4e1f-a217-64e3697cbe64.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-65a5fd18-d38d-4410-a78e-c433d24b0158 {
  margin-left: 3%;
margin-right: 3%;
}
@media (min-width: 1200px){#s-65a5fd18-d38d-4410-a78e-c433d24b0158 {
  display: none;
}
#s-65a5fd18-d38d-4410-a78e-c433d24b0158, #wrap-s-65a5fd18-d38d-4410-a78e-c433d24b0158 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-65a5fd18-d38d-4410-a78e-c433d24b0158 {
  display: none;
}
#s-65a5fd18-d38d-4410-a78e-c433d24b0158, #wrap-s-65a5fd18-d38d-4410-a78e-c433d24b0158 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-65a5fd18-d38d-4410-a78e-c433d24b0158 {
  display: none;
}
#s-65a5fd18-d38d-4410-a78e-c433d24b0158, #wrap-s-65a5fd18-d38d-4410-a78e-c433d24b0158 { display:none !important; }}@media (max-width: 767px){#s-65a5fd18-d38d-4410-a78e-c433d24b0158 {
  
}
}
@media (min-width: 0px) {
[id="s-65a5fd18-d38d-4410-a78e-c433d24b0158"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-65a5fd18-d38d-4410-a78e-c433d24b0158"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-65a5fd18-d38d-4410-a78e-c433d24b0158"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-65a5fd18-d38d-4410-a78e-c433d24b0158"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-c9d8561d-8355-4533-943d-c8e9e0855d9c {
  min-height: 40px;
}








#s-c9d8561d-8355-4533-943d-c8e9e0855d9c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c9d8561d-8355-4533-943d-c8e9e0855d9c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9e1bcb64-b878-4293-b0f6-f62565ae351d {
  max-width: 750px;
aspect-ratio: 750/772;
text-align: center;
}





  #s-9e1bcb64-b878-4293-b0f6-f62565ae351d img.shogun-image,
  #s-9e1bcb64-b878-4293-b0f6-f62565ae351d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9e1bcb64-b878-4293-b0f6-f62565ae351d {
    width: 100%;
    height: auto;
  }



  #s-9e1bcb64-b878-4293-b0f6-f62565ae351d img.shogun-image {
    

    
    
    
  }


#s-9e1bcb64-b878-4293-b0f6-f62565ae351d .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-563772dd-b834-4af4-aff4-e1b623e73d2a {
  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-563772dd-b834-4af4-aff4-e1b623e73d2a: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-563772dd-b834-4af4-aff4-e1b623e73d2a: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-563772dd-b834-4af4-aff4-e1b623e73d2a-root {
    text-align: center;
  }


#s-563772dd-b834-4af4-aff4-e1b623e73d2a.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-563772dd-b834-4af4-aff4-e1b623e73d2a-root {
    text-align: center;
  }


#s-563772dd-b834-4af4-aff4-e1b623e73d2a.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-563772dd-b834-4af4-aff4-e1b623e73d2a-root {
    text-align: center;
  }


#s-563772dd-b834-4af4-aff4-e1b623e73d2a.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-563772dd-b834-4af4-aff4-e1b623e73d2a-root {
    text-align: center;
  }


#s-563772dd-b834-4af4-aff4-e1b623e73d2a.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-563772dd-b834-4af4-aff4-e1b623e73d2a-root {
    text-align: center;
  }


#s-563772dd-b834-4af4-aff4-e1b623e73d2a.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#s-164a795c-0fbb-4e96-a16e-eafe2ae4810f {
  min-height: 40px;
}








#s-164a795c-0fbb-4e96-a16e-eafe2ae4810f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-164a795c-0fbb-4e96-a16e-eafe2ae4810f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-42c96986-6d46-44ab-9ca7-ad69bc03f3b5 {
  max-width: 750px;
aspect-ratio: 750/792;
text-align: center;
}





  #s-42c96986-6d46-44ab-9ca7-ad69bc03f3b5 img.shogun-image,
  #s-42c96986-6d46-44ab-9ca7-ad69bc03f3b5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-42c96986-6d46-44ab-9ca7-ad69bc03f3b5 {
    width: 100%;
    height: auto;
  }



  #s-42c96986-6d46-44ab-9ca7-ad69bc03f3b5 img.shogun-image {
    

    
    
    
  }


#s-42c96986-6d46-44ab-9ca7-ad69bc03f3b5 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-ff694638-87fa-4c8f-ad0d-11377bd4a865 {
  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-ff694638-87fa-4c8f-ad0d-11377bd4a865: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-ff694638-87fa-4c8f-ad0d-11377bd4a865: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-ff694638-87fa-4c8f-ad0d-11377bd4a865-root {
    text-align: center;
  }


#s-ff694638-87fa-4c8f-ad0d-11377bd4a865.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ff694638-87fa-4c8f-ad0d-11377bd4a865-root {
    text-align: center;
  }


#s-ff694638-87fa-4c8f-ad0d-11377bd4a865.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-ff694638-87fa-4c8f-ad0d-11377bd4a865-root {
    text-align: center;
  }


#s-ff694638-87fa-4c8f-ad0d-11377bd4a865.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-ff694638-87fa-4c8f-ad0d-11377bd4a865-root {
    text-align: center;
  }


#s-ff694638-87fa-4c8f-ad0d-11377bd4a865.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 17px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ff694638-87fa-4c8f-ad0d-11377bd4a865-root {
    text-align: center;
  }


#s-ff694638-87fa-4c8f-ad0d-11377bd4a865.shg-btn {
  color: rgba(27, 27, 27, 1);
  font-size: 15px;
  
  
  font-family: sofia-pro;
  display:  inline-block ;
}
}
#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-fc815dcf-8ede-4602-ad9c-41a7a9dd3c89 {
  min-height: 40px;
}
@media (min-width: 1200px){#s-fc815dcf-8ede-4602-ad9c-41a7a9dd3c89 {
  display: none;
}
#s-fc815dcf-8ede-4602-ad9c-41a7a9dd3c89, #wrap-s-fc815dcf-8ede-4602-ad9c-41a7a9dd3c89 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-fc815dcf-8ede-4602-ad9c-41a7a9dd3c89 {
  display: none;
}
#s-fc815dcf-8ede-4602-ad9c-41a7a9dd3c89, #wrap-s-fc815dcf-8ede-4602-ad9c-41a7a9dd3c89 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-fc815dcf-8ede-4602-ad9c-41a7a9dd3c89 {
  display: none;
}
#s-fc815dcf-8ede-4602-ad9c-41a7a9dd3c89, #wrap-s-fc815dcf-8ede-4602-ad9c-41a7a9dd3c89 { display:none !important; }}







#s-fc815dcf-8ede-4602-ad9c-41a7a9dd3c89 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fc815dcf-8ede-4602-ad9c-41a7a9dd3c89.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#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/970;
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/970;
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/970;
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/764;
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/852;
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/794;
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-95e5b910-ae6b-4acc-a602-4651cae1380c {
  margin-bottom: 0%;
margin-right: auto;
min-height: 70px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-95e5b910-ae6b-4acc-a602-4651cae1380c {
  margin-left: 0.2%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-95e5b910-ae6b-4acc-a602-4651cae1380c {
  margin-left: 0.2%;
}
}







#s-95e5b910-ae6b-4acc-a602-4651cae1380c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-95e5b910-ae6b-4acc-a602-4651cae1380c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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