.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-dfb6f424-bffb-4515-afcd-32b8079c0625 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-dfb6f424-bffb-4515-afcd-32b8079c0625 {
  display: none;
}
#s-dfb6f424-bffb-4515-afcd-32b8079c0625, #wrap-s-dfb6f424-bffb-4515-afcd-32b8079c0625 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-dfb6f424-bffb-4515-afcd-32b8079c0625 {
  display: none;
}
#s-dfb6f424-bffb-4515-afcd-32b8079c0625, #wrap-s-dfb6f424-bffb-4515-afcd-32b8079c0625 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-dfb6f424-bffb-4515-afcd-32b8079c0625 {
  display: none;
}
#s-dfb6f424-bffb-4515-afcd-32b8079c0625, #wrap-s-dfb6f424-bffb-4515-afcd-32b8079c0625 { display: none !important; }}@media (max-width: 767px){#s-dfb6f424-bffb-4515-afcd-32b8079c0625 {
  display: none;
}
#s-dfb6f424-bffb-4515-afcd-32b8079c0625, #wrap-s-dfb6f424-bffb-4515-afcd-32b8079c0625 { display: none !important; }}







#s-dfb6f424-bffb-4515-afcd-32b8079c0625 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dfb6f424-bffb-4515-afcd-32b8079c0625.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-9f74b7e7-0ff5-4030-93dc-6c518e9f8d08 {
  margin-top: 29px;
text-align: center;
}
@media (min-width: 1200px){#s-9f74b7e7-0ff5-4030-93dc-6c518e9f8d08 {
  display: none;
}
#s-9f74b7e7-0ff5-4030-93dc-6c518e9f8d08, #wrap-s-9f74b7e7-0ff5-4030-93dc-6c518e9f8d08 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9f74b7e7-0ff5-4030-93dc-6c518e9f8d08 {
  display: none;
}
#s-9f74b7e7-0ff5-4030-93dc-6c518e9f8d08, #wrap-s-9f74b7e7-0ff5-4030-93dc-6c518e9f8d08 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-9f74b7e7-0ff5-4030-93dc-6c518e9f8d08 {
  
}
}






  #s-9f74b7e7-0ff5-4030-93dc-6c518e9f8d08 img.shogun-image {
    

    
    
    
  }


#s-9f74b7e7-0ff5-4030-93dc-6c518e9f8d08 .shogun-image-content {
  
    align-items: center;
  
}

.shg-sld-content {
  width: 100%;
  position: relative;
  z-index: 1;
}

.shg-sld-slides {
  word-break: break-word;
  position: relative;
}

.shg-sld-slides-padded {
  padding: 0 35px;
}

.shg-sld-nav-button {
  cursor: pointer;
  position: absolute;
  z-index: 10;
  top: 0;
  width: 35px;
  min-height: 35px;
  height: 100%;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.shg-sld-nav-button > svg {
  height: 100%;
  width: 100%;
}

.shg-sld-nav-button.shg-sld-left {
  left: 0;
}

.shg-sld-nav-button.shg-sld-left-over-content {
  left: 2%;
}

.shg-sld-nav-button.shg-sld-right {
  right: 0;
}

.shg-sld-nav-button.shg-sld-right-over-content {
  right: 2%;
}

.shg-sld-nav-button.shg-sld-disabled {
  cursor: default;
  opacity: 0.2;
}

.shg-sld-item {
  display: none;
}

.shg-sld-item.shg-sld-active {
  display: block;
}

.shg-sld-dots {
  margin-top: 10px;
  text-align: center;
  z-index: 1;
  position: relative;
}

.shg-sld-dots-on-top {
  margin-top: -30px !important;
}

.shg-sld-dot {
  cursor: pointer;
  display: inline-block !important;
  height: 14px;
  width: 14px;
  border-radius: 100%;
  margin-left: 5px;
  opacity: 0.5;
}

.shg-sld-dot:first-child {
  margin-left: 0px;
}

.shg-sld-dot.shg-sld-active {
  opacity: 1;
}

@keyframes shg-sld-fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

#s-7ba586b1-a2ea-4954-9cc9-f629681980c6 {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-7ba586b1-a2ea-4954-9cc9-f629681980c6 {
  display: none;
}
#s-7ba586b1-a2ea-4954-9cc9-f629681980c6, #wrap-s-7ba586b1-a2ea-4954-9cc9-f629681980c6 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7ba586b1-a2ea-4954-9cc9-f629681980c6 {
  display: none;
}
#s-7ba586b1-a2ea-4954-9cc9-f629681980c6, #wrap-s-7ba586b1-a2ea-4954-9cc9-f629681980c6 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7ba586b1-a2ea-4954-9cc9-f629681980c6 {
  
}
}
#s-7ba586b1-a2ea-4954-9cc9-f629681980c6 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-7ba586b1-a2ea-4954-9cc9-f629681980c6 .shg-sld-nav-button.shg-sld-left,
#s-7ba586b1-a2ea-4954-9cc9-f629681980c6 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-614a78bd-ace9-44fd-94e5-c26eeff8e059 {
  min-height: 46px;
max-width: 768px;
background-color: rgba(0, 0, 0, 0);
}








#s-614a78bd-ace9-44fd-94e5-c26eeff8e059 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-614a78bd-ace9-44fd-94e5-c26eeff8e059.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-01de346c-a7db-4ba6-bb2c-2738000cc72c {
  min-height: 46px;
max-width: 768px;
background-color: rgba(0, 0, 0, 0);
}








#s-01de346c-a7db-4ba6-bb2c-2738000cc72c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-01de346c-a7db-4ba6-bb2c-2738000cc72c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e90d620c-0144-47b5-b65c-44292b5dd98b {
  min-height: 46px;
max-width: 768px;
background-color: rgba(0, 0, 0, 0);
}








#s-e90d620c-0144-47b5-b65c-44292b5dd98b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e90d620c-0144-47b5-b65c-44292b5dd98b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a23c4731-576c-4152-be58-2acde54c3a59 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-a23c4731-576c-4152-be58-2acde54c3a59 {
  display: none;
}
#s-a23c4731-576c-4152-be58-2acde54c3a59, #wrap-s-a23c4731-576c-4152-be58-2acde54c3a59 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a23c4731-576c-4152-be58-2acde54c3a59 {
  display: none;
}
#s-a23c4731-576c-4152-be58-2acde54c3a59, #wrap-s-a23c4731-576c-4152-be58-2acde54c3a59 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a23c4731-576c-4152-be58-2acde54c3a59 {
  display: none;
}
#s-a23c4731-576c-4152-be58-2acde54c3a59, #wrap-s-a23c4731-576c-4152-be58-2acde54c3a59 { display: none !important; }}







#s-a23c4731-576c-4152-be58-2acde54c3a59 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a23c4731-576c-4152-be58-2acde54c3a59.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-89cbe339-34fc-4210-a1b7-713d82470c8b {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-89cbe339-34fc-4210-a1b7-713d82470c8b .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-89cbe339-34fc-4210-a1b7-713d82470c8b .shg-sld-nav-button.shg-sld-left,
#s-89cbe339-34fc-4210-a1b7-713d82470c8b .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

.shg-align-container {
  box-sizing: border-box;
}

.shg-image-content-wrapper {
  position: relative;
}

.shogun-image-container.shg-align-left {
  text-align: left;
}

.shogun-image-container.shg-align-center {
  text-align: center;
}

.shogun-image-container.shg-align-right {
  text-align: right;
}

.shogun-image-linked {
  cursor: pointer;
}

.shogun-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.shogun-image-overlay.shg-top-left {
  align-items: flex-start;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-top-center {
  align-items: flex-start;
  justify-content: center;
}

.shogun-image-overlay.shg-top-right {
  align-items: flex-start;
  justify-content: flex-end;
}

.shogun-image-overlay.shg-middle-left {
  align-items: center;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-middle-center {
  align-items: center;
  justify-content: center;
}

.shogun-image-overlay.shg-middle-right {
  align-items: center;
  justify-content: flex-end;
}

.shogun-image-overlay.shg-bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-bottom-center {
  align-items: flex-end;
  justify-content: center;
}

.shogun-image-overlay.shg-bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}

.shogun-image-overlay p {
  margin: 0;
  padding: 0;
  line-height: normal;
}

.shogun-image-cover {
  object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
}

.shogun-image-contain {
  font-family: "object-fit: contain;";
  object-fit: contain;
  width: 100%;
}

.shogun-image-link {
  display: block;
  min-height: inherit;
  max-height: inherit;
  height: inherit;
  position: relative;
}

img.shogun-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.shg-imageV2-content {
  text-align: initial;
}

.shogun-image-content {
  display: flex;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.shogun-image-content-linked,
.shogun-image-content-not-linked {
  pointer-events: none;
}

.shogun-image-content-not-linked>div {
  pointer-events: auto;
}

.shogun-image-content-linked a,
.shogun-image-content-linked button,
.shogun-image-content-linked iframe,
.shogun-image-content-linked .shg-box-linked {
  pointer-events: auto;
}

.shogun-image-content>div {
  width: 100%;
}

.shogun-image-content-top {
  align-items: flex-start;
}

.shogun-image-content-center {
  align-items: center;
}

.shogun-image-content-bottom {
  align-items: flex-end;
}

.shg-image-content-wrapper .shogun-image.hover~* {
  z-index: 1;
}
#s-033d70df-9e02-4539-90e0-76fcc96537ad {
  text-align: center;
}








.s-033d70df-9e02-4539-90e0-76fcc96537ad .shogun-image-content {
  
    align-items: center;
  
}

.s-033d70df-9e02-4539-90e0-76fcc96537ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-033d70df-9e02-4539-90e0-76fcc96537ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-033d70df-9e02-4539-90e0-76fcc96537ad.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){






.s-033d70df-9e02-4539-90e0-76fcc96537ad .shogun-image-content {
  
    align-items: center;
  
}

.s-033d70df-9e02-4539-90e0-76fcc96537ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-033d70df-9e02-4539-90e0-76fcc96537ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-033d70df-9e02-4539-90e0-76fcc96537ad.shogun-image {
  box-sizing: border-box;
}



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






.s-033d70df-9e02-4539-90e0-76fcc96537ad .shogun-image-content {
  
    align-items: center;
  
}

.s-033d70df-9e02-4539-90e0-76fcc96537ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-033d70df-9e02-4539-90e0-76fcc96537ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-033d70df-9e02-4539-90e0-76fcc96537ad.shogun-image {
  box-sizing: border-box;
}



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






.s-033d70df-9e02-4539-90e0-76fcc96537ad .shogun-image-content {
  
    align-items: center;
  
}

.s-033d70df-9e02-4539-90e0-76fcc96537ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-033d70df-9e02-4539-90e0-76fcc96537ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-033d70df-9e02-4539-90e0-76fcc96537ad.shogun-image {
  box-sizing: border-box;
}



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






.s-033d70df-9e02-4539-90e0-76fcc96537ad .shogun-image-content {
  
    align-items: center;
  
}

.s-033d70df-9e02-4539-90e0-76fcc96537ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-033d70df-9e02-4539-90e0-76fcc96537ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-033d70df-9e02-4539-90e0-76fcc96537ad.shogun-image {
  box-sizing: border-box;
}



}
#s-91959429-2acc-4d66-af41-941cece61ea2 {
  text-align: center;
}








.s-91959429-2acc-4d66-af41-941cece61ea2 .shogun-image-content {
  
    align-items: center;
  
}

.s-91959429-2acc-4d66-af41-941cece61ea2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-91959429-2acc-4d66-af41-941cece61ea2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-91959429-2acc-4d66-af41-941cece61ea2.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){






.s-91959429-2acc-4d66-af41-941cece61ea2 .shogun-image-content {
  
    align-items: center;
  
}

.s-91959429-2acc-4d66-af41-941cece61ea2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-91959429-2acc-4d66-af41-941cece61ea2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-91959429-2acc-4d66-af41-941cece61ea2.shogun-image {
  box-sizing: border-box;
}



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






.s-91959429-2acc-4d66-af41-941cece61ea2 .shogun-image-content {
  
    align-items: center;
  
}

.s-91959429-2acc-4d66-af41-941cece61ea2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-91959429-2acc-4d66-af41-941cece61ea2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-91959429-2acc-4d66-af41-941cece61ea2.shogun-image {
  box-sizing: border-box;
}



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






.s-91959429-2acc-4d66-af41-941cece61ea2 .shogun-image-content {
  
    align-items: center;
  
}

.s-91959429-2acc-4d66-af41-941cece61ea2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-91959429-2acc-4d66-af41-941cece61ea2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-91959429-2acc-4d66-af41-941cece61ea2.shogun-image {
  box-sizing: border-box;
}



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






.s-91959429-2acc-4d66-af41-941cece61ea2 .shogun-image-content {
  
    align-items: center;
  
}

.s-91959429-2acc-4d66-af41-941cece61ea2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-91959429-2acc-4d66-af41-941cece61ea2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-91959429-2acc-4d66-af41-941cece61ea2.shogun-image {
  box-sizing: border-box;
}



}
#s-85505a39-581b-40a1-bd67-f554b9880116 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 0px;
padding-right: 0px;
}

#s-2b78a5e9-80c9-492a-bf83-a3032b0c5c2c {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 0px;
padding-right: 0px;
}

#s-31e4ba37-3712-4b20-bf36-39ba2bb4b780 {
  margin-top: 40px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-left: 5%;
padding-right: 5%;
min-height: 50px;
}
@media (min-width: 1200px){#s-31e4ba37-3712-4b20-bf36-39ba2bb4b780 {
  display: none;
}
#s-31e4ba37-3712-4b20-bf36-39ba2bb4b780, #wrap-s-31e4ba37-3712-4b20-bf36-39ba2bb4b780 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-31e4ba37-3712-4b20-bf36-39ba2bb4b780 {
  display: none;
}
#s-31e4ba37-3712-4b20-bf36-39ba2bb4b780, #wrap-s-31e4ba37-3712-4b20-bf36-39ba2bb4b780 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-31e4ba37-3712-4b20-bf36-39ba2bb4b780 {
  display: none;
}
#s-31e4ba37-3712-4b20-bf36-39ba2bb4b780, #wrap-s-31e4ba37-3712-4b20-bf36-39ba2bb4b780 { display: none !important; }}@media (max-width: 767px){#s-31e4ba37-3712-4b20-bf36-39ba2bb4b780 {
  
}
}







#s-31e4ba37-3712-4b20-bf36-39ba2bb4b780 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-31e4ba37-3712-4b20-bf36-39ba2bb4b780.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-25b21c9f-7edb-4c9c-9497-b227a0ee703f {
  text-align: center;
}








.s-25b21c9f-7edb-4c9c-9497-b227a0ee703f .shogun-image-content {
  
    align-items: center;
  
}

.s-25b21c9f-7edb-4c9c-9497-b227a0ee703f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-25b21c9f-7edb-4c9c-9497-b227a0ee703f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-25b21c9f-7edb-4c9c-9497-b227a0ee703f.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){






.s-25b21c9f-7edb-4c9c-9497-b227a0ee703f .shogun-image-content {
  
    align-items: center;
  
}

.s-25b21c9f-7edb-4c9c-9497-b227a0ee703f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-25b21c9f-7edb-4c9c-9497-b227a0ee703f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-25b21c9f-7edb-4c9c-9497-b227a0ee703f.shogun-image {
  box-sizing: border-box;
}



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






.s-25b21c9f-7edb-4c9c-9497-b227a0ee703f .shogun-image-content {
  
    align-items: center;
  
}

.s-25b21c9f-7edb-4c9c-9497-b227a0ee703f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-25b21c9f-7edb-4c9c-9497-b227a0ee703f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-25b21c9f-7edb-4c9c-9497-b227a0ee703f.shogun-image {
  box-sizing: border-box;
}



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






.s-25b21c9f-7edb-4c9c-9497-b227a0ee703f .shogun-image-content {
  
    align-items: center;
  
}

.s-25b21c9f-7edb-4c9c-9497-b227a0ee703f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-25b21c9f-7edb-4c9c-9497-b227a0ee703f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-25b21c9f-7edb-4c9c-9497-b227a0ee703f.shogun-image {
  box-sizing: border-box;
}



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






.s-25b21c9f-7edb-4c9c-9497-b227a0ee703f .shogun-image-content {
  
    align-items: center;
  
}

.s-25b21c9f-7edb-4c9c-9497-b227a0ee703f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-25b21c9f-7edb-4c9c-9497-b227a0ee703f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-25b21c9f-7edb-4c9c-9497-b227a0ee703f.shogun-image {
  box-sizing: border-box;
}



}
#s-6cf2277b-e657-4291-abd9-42258ec32aa7 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 20px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
}

#s-2b77d6c2-0913-475a-95d8-85cf0e7d46e3 {
  padding-top: 60px;
min-height: 50px;
}
@media (min-width: 1200px){#s-2b77d6c2-0913-475a-95d8-85cf0e7d46e3 {
  display: none;
}
#s-2b77d6c2-0913-475a-95d8-85cf0e7d46e3, #wrap-s-2b77d6c2-0913-475a-95d8-85cf0e7d46e3 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2b77d6c2-0913-475a-95d8-85cf0e7d46e3 {
  display: none;
}
#s-2b77d6c2-0913-475a-95d8-85cf0e7d46e3, #wrap-s-2b77d6c2-0913-475a-95d8-85cf0e7d46e3 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2b77d6c2-0913-475a-95d8-85cf0e7d46e3 {
  display: none;
}
#s-2b77d6c2-0913-475a-95d8-85cf0e7d46e3, #wrap-s-2b77d6c2-0913-475a-95d8-85cf0e7d46e3 { display: none !important; }}







#s-2b77d6c2-0913-475a-95d8-85cf0e7d46e3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2b77d6c2-0913-475a-95d8-85cf0e7d46e3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a4c3b9be-481a-484a-9e23-f0f25154e27d {
  padding-top: 0px;
padding-left: 5%;
padding-bottom: 20px;
padding-right: 5%;
text-align: center;
}








.s-a4c3b9be-481a-484a-9e23-f0f25154e27d .shogun-image-content {
  
    align-items: center;
  
}

.s-a4c3b9be-481a-484a-9e23-f0f25154e27d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a4c3b9be-481a-484a-9e23-f0f25154e27d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a4c3b9be-481a-484a-9e23-f0f25154e27d.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){






.s-a4c3b9be-481a-484a-9e23-f0f25154e27d .shogun-image-content {
  
    align-items: center;
  
}

.s-a4c3b9be-481a-484a-9e23-f0f25154e27d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a4c3b9be-481a-484a-9e23-f0f25154e27d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a4c3b9be-481a-484a-9e23-f0f25154e27d.shogun-image {
  box-sizing: border-box;
}



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






.s-a4c3b9be-481a-484a-9e23-f0f25154e27d .shogun-image-content {
  
    align-items: center;
  
}

.s-a4c3b9be-481a-484a-9e23-f0f25154e27d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a4c3b9be-481a-484a-9e23-f0f25154e27d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a4c3b9be-481a-484a-9e23-f0f25154e27d.shogun-image {
  box-sizing: border-box;
}



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






.s-a4c3b9be-481a-484a-9e23-f0f25154e27d .shogun-image-content {
  
    align-items: center;
  
}

.s-a4c3b9be-481a-484a-9e23-f0f25154e27d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a4c3b9be-481a-484a-9e23-f0f25154e27d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a4c3b9be-481a-484a-9e23-f0f25154e27d.shogun-image {
  box-sizing: border-box;
}



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






.s-a4c3b9be-481a-484a-9e23-f0f25154e27d .shogun-image-content {
  
    align-items: center;
  
}

.s-a4c3b9be-481a-484a-9e23-f0f25154e27d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a4c3b9be-481a-484a-9e23-f0f25154e27d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a4c3b9be-481a-484a-9e23-f0f25154e27d.shogun-image {
  box-sizing: border-box;
}



}
.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-9e6b6e3a-8f35-49c7-87d5-f0276fca9bfc {
  padding-top: 0px;
}
@media (min-width: 1200px){#s-9e6b6e3a-8f35-49c7-87d5-f0276fca9bfc {
  display: none;
}
#s-9e6b6e3a-8f35-49c7-87d5-f0276fca9bfc, #wrap-s-9e6b6e3a-8f35-49c7-87d5-f0276fca9bfc { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9e6b6e3a-8f35-49c7-87d5-f0276fca9bfc {
  display: none;
}
#s-9e6b6e3a-8f35-49c7-87d5-f0276fca9bfc, #wrap-s-9e6b6e3a-8f35-49c7-87d5-f0276fca9bfc { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-9e6b6e3a-8f35-49c7-87d5-f0276fca9bfc {
  display: none;
}
#s-9e6b6e3a-8f35-49c7-87d5-f0276fca9bfc, #wrap-s-9e6b6e3a-8f35-49c7-87d5-f0276fca9bfc { display: none !important; }}
@media (min-width: 0px) {
[id="s-9e6b6e3a-8f35-49c7-87d5-f0276fca9bfc"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-9e6b6e3a-8f35-49c7-87d5-f0276fca9bfc"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-9e6b6e3a-8f35-49c7-87d5-f0276fca9bfc"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-9e6b6e3a-8f35-49c7-87d5-f0276fca9bfc"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-c5e30cb4-697a-403d-a78e-abb836bb0219 {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-c5e30cb4-697a-403d-a78e-abb836bb0219 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-c5e30cb4-697a-403d-a78e-abb836bb0219 .shg-sld-nav-button.shg-sld-left,
#s-c5e30cb4-697a-403d-a78e-abb836bb0219 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-f31f97f8-a885-4ef6-b0a9-f3be2d5aadb0 {
  text-align: center;
}








#s-f31f97f8-a885-4ef6-b0a9-f3be2d5aadb0 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-392f857f-9df8-4794-9d1e-17ef09bddb9a {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
}

#s-f2c637ba-36f4-49e1-8652-0e2dfcd38f3f {
  text-align: center;
}
@media (min-width: 1200px){#s-f2c637ba-36f4-49e1-8652-0e2dfcd38f3f {
  display: none;
}
#s-f2c637ba-36f4-49e1-8652-0e2dfcd38f3f, #wrap-s-f2c637ba-36f4-49e1-8652-0e2dfcd38f3f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f2c637ba-36f4-49e1-8652-0e2dfcd38f3f {
  display: none;
}
#s-f2c637ba-36f4-49e1-8652-0e2dfcd38f3f, #wrap-s-f2c637ba-36f4-49e1-8652-0e2dfcd38f3f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f2c637ba-36f4-49e1-8652-0e2dfcd38f3f {
  display: none;
}
#s-f2c637ba-36f4-49e1-8652-0e2dfcd38f3f, #wrap-s-f2c637ba-36f4-49e1-8652-0e2dfcd38f3f { display: none !important; }}






  #s-f2c637ba-36f4-49e1-8652-0e2dfcd38f3f img.shogun-image {
    

    
    
    
  }


#s-f2c637ba-36f4-49e1-8652-0e2dfcd38f3f .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-100d1e6c-e1e2-443d-a4aa-d03fa9237d2b {
  margin-top: 0px;
margin-left: 20px;
margin-bottom: 0px;
margin-right: 20px;
}

#s-d48340f3-3733-4b3f-ba1e-400f8d2ef3a6 {
  text-align: center;
}
@media (min-width: 1200px){#s-d48340f3-3733-4b3f-ba1e-400f8d2ef3a6 {
  display: none;
}
#s-d48340f3-3733-4b3f-ba1e-400f8d2ef3a6, #wrap-s-d48340f3-3733-4b3f-ba1e-400f8d2ef3a6 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d48340f3-3733-4b3f-ba1e-400f8d2ef3a6 {
  display: none;
}
#s-d48340f3-3733-4b3f-ba1e-400f8d2ef3a6, #wrap-s-d48340f3-3733-4b3f-ba1e-400f8d2ef3a6 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d48340f3-3733-4b3f-ba1e-400f8d2ef3a6 {
  display: none;
}
#s-d48340f3-3733-4b3f-ba1e-400f8d2ef3a6, #wrap-s-d48340f3-3733-4b3f-ba1e-400f8d2ef3a6 { display: none !important; }}






  #s-d48340f3-3733-4b3f-ba1e-400f8d2ef3a6 img.shogun-image {
    

    
    
    
  }


#s-d48340f3-3733-4b3f-ba1e-400f8d2ef3a6 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-24e3aa51-5f35-4c80-ba90-aafd05ca2234 {
  margin-top: 0px;
margin-left: 20px;
margin-bottom: 0px;
margin-right: 20px;
}

#s-55f860c3-61d9-41f3-813d-6b7403b222c6 {
  text-align: center;
}
@media (min-width: 1200px){#s-55f860c3-61d9-41f3-813d-6b7403b222c6 {
  display: none;
}
#s-55f860c3-61d9-41f3-813d-6b7403b222c6, #wrap-s-55f860c3-61d9-41f3-813d-6b7403b222c6 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-55f860c3-61d9-41f3-813d-6b7403b222c6 {
  display: none;
}
#s-55f860c3-61d9-41f3-813d-6b7403b222c6, #wrap-s-55f860c3-61d9-41f3-813d-6b7403b222c6 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-55f860c3-61d9-41f3-813d-6b7403b222c6 {
  display: none;
}
#s-55f860c3-61d9-41f3-813d-6b7403b222c6, #wrap-s-55f860c3-61d9-41f3-813d-6b7403b222c6 { display: none !important; }}






  #s-55f860c3-61d9-41f3-813d-6b7403b222c6 img.shogun-image {
    

    
    
    
  }


#s-55f860c3-61d9-41f3-813d-6b7403b222c6 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-ea2e7425-ead0-433a-8194-afa1da97c67e {
  margin-top: 0px;
margin-left: 20px;
margin-bottom: 0px;
margin-right: 20px;
}

#s-5f1c7303-9cbd-408e-83fa-ba07278efd6f {
  text-align: center;
}
@media (min-width: 1200px){#s-5f1c7303-9cbd-408e-83fa-ba07278efd6f {
  display: none;
}
#s-5f1c7303-9cbd-408e-83fa-ba07278efd6f, #wrap-s-5f1c7303-9cbd-408e-83fa-ba07278efd6f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5f1c7303-9cbd-408e-83fa-ba07278efd6f {
  display: none;
}
#s-5f1c7303-9cbd-408e-83fa-ba07278efd6f, #wrap-s-5f1c7303-9cbd-408e-83fa-ba07278efd6f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-5f1c7303-9cbd-408e-83fa-ba07278efd6f {
  display: none;
}
#s-5f1c7303-9cbd-408e-83fa-ba07278efd6f, #wrap-s-5f1c7303-9cbd-408e-83fa-ba07278efd6f { display: none !important; }}







#s-5f1c7303-9cbd-408e-83fa-ba07278efd6f .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-fa6234ed-15fc-4d4b-ac51-5ecb17b99b95 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 10px;
}

#s-31fa01cd-b507-46a2-9c28-6f12effedeac {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-31fa01cd-b507-46a2-9c28-6f12effedeac .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-31fa01cd-b507-46a2-9c28-6f12effedeac .shg-sld-nav-button.shg-sld-left,
#s-31fa01cd-b507-46a2-9c28-6f12effedeac .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-32b112f2-27d1-475d-8c80-d34be9487d75 {
  text-align: center;
}
@media (min-width: 1200px){#s-32b112f2-27d1-475d-8c80-d34be9487d75 {
  display: none;
}
#s-32b112f2-27d1-475d-8c80-d34be9487d75, #wrap-s-32b112f2-27d1-475d-8c80-d34be9487d75 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-32b112f2-27d1-475d-8c80-d34be9487d75 {
  display: none;
}
#s-32b112f2-27d1-475d-8c80-d34be9487d75, #wrap-s-32b112f2-27d1-475d-8c80-d34be9487d75 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-32b112f2-27d1-475d-8c80-d34be9487d75 {
  display: none;
}
#s-32b112f2-27d1-475d-8c80-d34be9487d75, #wrap-s-32b112f2-27d1-475d-8c80-d34be9487d75 { display: none !important; }}







#s-32b112f2-27d1-475d-8c80-d34be9487d75 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-c9a5cf83-8e24-4c37-9a49-e8e1421d1358 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
}

#s-b47e0a4f-526e-4520-b7bf-210a9eaa03a2 {
  text-align: center;
}
@media (min-width: 1200px){#s-b47e0a4f-526e-4520-b7bf-210a9eaa03a2 {
  display: none;
}
#s-b47e0a4f-526e-4520-b7bf-210a9eaa03a2, #wrap-s-b47e0a4f-526e-4520-b7bf-210a9eaa03a2 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b47e0a4f-526e-4520-b7bf-210a9eaa03a2 {
  display: none;
}
#s-b47e0a4f-526e-4520-b7bf-210a9eaa03a2, #wrap-s-b47e0a4f-526e-4520-b7bf-210a9eaa03a2 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b47e0a4f-526e-4520-b7bf-210a9eaa03a2 {
  display: none;
}
#s-b47e0a4f-526e-4520-b7bf-210a9eaa03a2, #wrap-s-b47e0a4f-526e-4520-b7bf-210a9eaa03a2 { display: none !important; }}






  #s-b47e0a4f-526e-4520-b7bf-210a9eaa03a2 img.shogun-image {
    

    
    
    
  }


#s-b47e0a4f-526e-4520-b7bf-210a9eaa03a2 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-4db3c155-1549-439a-b0bc-c1d02d6fd2fe {
  margin-top: 0px;
margin-left: 20px;
margin-bottom: 0px;
margin-right: 20px;
}

#s-4ce81474-aede-419c-9b69-0ba6faebb9d6 {
  text-align: center;
}
@media (min-width: 1200px){#s-4ce81474-aede-419c-9b69-0ba6faebb9d6 {
  display: none;
}
#s-4ce81474-aede-419c-9b69-0ba6faebb9d6, #wrap-s-4ce81474-aede-419c-9b69-0ba6faebb9d6 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4ce81474-aede-419c-9b69-0ba6faebb9d6 {
  display: none;
}
#s-4ce81474-aede-419c-9b69-0ba6faebb9d6, #wrap-s-4ce81474-aede-419c-9b69-0ba6faebb9d6 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-4ce81474-aede-419c-9b69-0ba6faebb9d6 {
  display: none;
}
#s-4ce81474-aede-419c-9b69-0ba6faebb9d6, #wrap-s-4ce81474-aede-419c-9b69-0ba6faebb9d6 { display: none !important; }}






  #s-4ce81474-aede-419c-9b69-0ba6faebb9d6 img.shogun-image {
    

    
    
    
  }


#s-4ce81474-aede-419c-9b69-0ba6faebb9d6 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-36fe468c-8b15-49dc-9d7e-839f1d7e8efe {
  margin-top: 0px;
margin-left: 20px;
margin-bottom: 0px;
margin-right: 20px;
}

#s-92588b0f-7670-4ec5-bc3e-6b84aed550c1 {
  text-align: center;
}
@media (min-width: 1200px){#s-92588b0f-7670-4ec5-bc3e-6b84aed550c1 {
  display: none;
}
#s-92588b0f-7670-4ec5-bc3e-6b84aed550c1, #wrap-s-92588b0f-7670-4ec5-bc3e-6b84aed550c1 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-92588b0f-7670-4ec5-bc3e-6b84aed550c1 {
  display: none;
}
#s-92588b0f-7670-4ec5-bc3e-6b84aed550c1, #wrap-s-92588b0f-7670-4ec5-bc3e-6b84aed550c1 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-92588b0f-7670-4ec5-bc3e-6b84aed550c1 {
  display: none;
}
#s-92588b0f-7670-4ec5-bc3e-6b84aed550c1, #wrap-s-92588b0f-7670-4ec5-bc3e-6b84aed550c1 { display: none !important; }}






  #s-92588b0f-7670-4ec5-bc3e-6b84aed550c1 img.shogun-image {
    

    
    
    
  }


#s-92588b0f-7670-4ec5-bc3e-6b84aed550c1 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-058f746a-1ff8-4038-871f-038f7b462b63 {
  margin-top: 0px;
margin-left: 20px;
margin-bottom: 0px;
margin-right: 20px;
}

#s-057c2ee4-0f45-484c-a961-134f75acb579 {
  text-align: center;
}








#s-057c2ee4-0f45-484c-a961-134f75acb579 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-6281069b-b97a-4d73-a216-48cfbaec6b5a {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 10px;
}

#s-bd334ec5-5f7d-4190-a205-1f88b006e8a1 {
  padding-top: 0px;
}
@media (min-width: 1200px){#s-bd334ec5-5f7d-4190-a205-1f88b006e8a1 {
  display: none;
}
#s-bd334ec5-5f7d-4190-a205-1f88b006e8a1, #wrap-s-bd334ec5-5f7d-4190-a205-1f88b006e8a1 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-bd334ec5-5f7d-4190-a205-1f88b006e8a1 {
  display: none;
}
#s-bd334ec5-5f7d-4190-a205-1f88b006e8a1, #wrap-s-bd334ec5-5f7d-4190-a205-1f88b006e8a1 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-bd334ec5-5f7d-4190-a205-1f88b006e8a1 {
  display: none;
}
#s-bd334ec5-5f7d-4190-a205-1f88b006e8a1, #wrap-s-bd334ec5-5f7d-4190-a205-1f88b006e8a1 { display: none !important; }}
@media (min-width: 0px) {
[id="s-bd334ec5-5f7d-4190-a205-1f88b006e8a1"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-bd334ec5-5f7d-4190-a205-1f88b006e8a1"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-bd334ec5-5f7d-4190-a205-1f88b006e8a1"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-bd334ec5-5f7d-4190-a205-1f88b006e8a1"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-95e1023a-8301-46bc-9ce0-655ad51bd029 {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-95e1023a-8301-46bc-9ce0-655ad51bd029 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-95e1023a-8301-46bc-9ce0-655ad51bd029 .shg-sld-nav-button.shg-sld-left,
#s-95e1023a-8301-46bc-9ce0-655ad51bd029 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-2877d3a9-eaeb-45f3-b80c-feb1d70eae2a {
  text-align: center;
}
@media (min-width: 1200px){#s-2877d3a9-eaeb-45f3-b80c-feb1d70eae2a {
  display: none;
}
#s-2877d3a9-eaeb-45f3-b80c-feb1d70eae2a, #wrap-s-2877d3a9-eaeb-45f3-b80c-feb1d70eae2a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2877d3a9-eaeb-45f3-b80c-feb1d70eae2a {
  display: none;
}
#s-2877d3a9-eaeb-45f3-b80c-feb1d70eae2a, #wrap-s-2877d3a9-eaeb-45f3-b80c-feb1d70eae2a { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2877d3a9-eaeb-45f3-b80c-feb1d70eae2a {
  display: none;
}
#s-2877d3a9-eaeb-45f3-b80c-feb1d70eae2a, #wrap-s-2877d3a9-eaeb-45f3-b80c-feb1d70eae2a { display: none !important; }}







#s-2877d3a9-eaeb-45f3-b80c-feb1d70eae2a .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-2e1c25bf-d762-4459-bd77-6517f5dec1cf {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
}

#s-f43f2d04-9bb7-4556-a19a-67458aea39ce {
  text-align: center;
}
@media (min-width: 1200px){#s-f43f2d04-9bb7-4556-a19a-67458aea39ce {
  display: none;
}
#s-f43f2d04-9bb7-4556-a19a-67458aea39ce, #wrap-s-f43f2d04-9bb7-4556-a19a-67458aea39ce { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f43f2d04-9bb7-4556-a19a-67458aea39ce {
  display: none;
}
#s-f43f2d04-9bb7-4556-a19a-67458aea39ce, #wrap-s-f43f2d04-9bb7-4556-a19a-67458aea39ce { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f43f2d04-9bb7-4556-a19a-67458aea39ce {
  display: none;
}
#s-f43f2d04-9bb7-4556-a19a-67458aea39ce, #wrap-s-f43f2d04-9bb7-4556-a19a-67458aea39ce { display: none !important; }}






  #s-f43f2d04-9bb7-4556-a19a-67458aea39ce img.shogun-image {
    

    
    
    
  }


#s-f43f2d04-9bb7-4556-a19a-67458aea39ce .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-945e9bf5-388c-4a9f-90ea-f78310f950c3 {
  margin-top: 0px;
margin-left: 20px;
margin-bottom: 0px;
margin-right: 20px;
}

#s-b30cdf64-97c6-4055-b236-000674105cb3 {
  text-align: center;
}
@media (min-width: 1200px){#s-b30cdf64-97c6-4055-b236-000674105cb3 {
  display: none;
}
#s-b30cdf64-97c6-4055-b236-000674105cb3, #wrap-s-b30cdf64-97c6-4055-b236-000674105cb3 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b30cdf64-97c6-4055-b236-000674105cb3 {
  display: none;
}
#s-b30cdf64-97c6-4055-b236-000674105cb3, #wrap-s-b30cdf64-97c6-4055-b236-000674105cb3 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b30cdf64-97c6-4055-b236-000674105cb3 {
  display: none;
}
#s-b30cdf64-97c6-4055-b236-000674105cb3, #wrap-s-b30cdf64-97c6-4055-b236-000674105cb3 { display: none !important; }}






  #s-b30cdf64-97c6-4055-b236-000674105cb3 img.shogun-image {
    

    
    
    
  }


#s-b30cdf64-97c6-4055-b236-000674105cb3 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-df53534e-805c-4fac-8851-aa2efd5835ec {
  margin-top: 0px;
margin-left: 20px;
margin-bottom: 0px;
margin-right: 20px;
}

#s-107bcc92-c70c-4ad4-8e47-30aba3cad1c1 {
  text-align: center;
}
@media (min-width: 1200px){#s-107bcc92-c70c-4ad4-8e47-30aba3cad1c1 {
  display: none;
}
#s-107bcc92-c70c-4ad4-8e47-30aba3cad1c1, #wrap-s-107bcc92-c70c-4ad4-8e47-30aba3cad1c1 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-107bcc92-c70c-4ad4-8e47-30aba3cad1c1 {
  display: none;
}
#s-107bcc92-c70c-4ad4-8e47-30aba3cad1c1, #wrap-s-107bcc92-c70c-4ad4-8e47-30aba3cad1c1 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-107bcc92-c70c-4ad4-8e47-30aba3cad1c1 {
  display: none;
}
#s-107bcc92-c70c-4ad4-8e47-30aba3cad1c1, #wrap-s-107bcc92-c70c-4ad4-8e47-30aba3cad1c1 { display: none !important; }}






  #s-107bcc92-c70c-4ad4-8e47-30aba3cad1c1 img.shogun-image {
    

    
    
    
  }


#s-107bcc92-c70c-4ad4-8e47-30aba3cad1c1 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-93952408-6fe6-4f69-9c44-4698f0cd4f8d {
  margin-top: 0px;
margin-left: 20px;
margin-bottom: 0px;
margin-right: 20px;
}

#s-4f8ae493-44aa-49f0-a67b-587122611c17 {
  text-align: center;
}








#s-4f8ae493-44aa-49f0-a67b-587122611c17 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-8c16640c-c8ad-4e29-9ad1-26c715cbc85c {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
}

#s-8b3e89e2-9851-4f2b-a282-dc0c347bcbce {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-8b3e89e2-9851-4f2b-a282-dc0c347bcbce .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-8b3e89e2-9851-4f2b-a282-dc0c347bcbce .shg-sld-nav-button.shg-sld-left,
#s-8b3e89e2-9851-4f2b-a282-dc0c347bcbce .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-0a505389-c904-4c18-b1ac-966d06f0f2d7 {
  text-align: center;
}








#s-0a505389-c904-4c18-b1ac-966d06f0f2d7 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-52c5944e-ac95-4805-96ec-7cd28a60cb8c {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
}

#s-91d3eccd-ee5b-419c-a6c0-32cd84191ac4 {
  text-align: center;
}
@media (min-width: 1200px){#s-91d3eccd-ee5b-419c-a6c0-32cd84191ac4 {
  display: none;
}
#s-91d3eccd-ee5b-419c-a6c0-32cd84191ac4, #wrap-s-91d3eccd-ee5b-419c-a6c0-32cd84191ac4 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-91d3eccd-ee5b-419c-a6c0-32cd84191ac4 {
  display: none;
}
#s-91d3eccd-ee5b-419c-a6c0-32cd84191ac4, #wrap-s-91d3eccd-ee5b-419c-a6c0-32cd84191ac4 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-91d3eccd-ee5b-419c-a6c0-32cd84191ac4 {
  display: none;
}
#s-91d3eccd-ee5b-419c-a6c0-32cd84191ac4, #wrap-s-91d3eccd-ee5b-419c-a6c0-32cd84191ac4 { display: none !important; }}






  #s-91d3eccd-ee5b-419c-a6c0-32cd84191ac4 img.shogun-image {
    

    
    
    
  }


#s-91d3eccd-ee5b-419c-a6c0-32cd84191ac4 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-43e13d18-d5f3-4852-a9d8-1f1458634f43 {
  margin-top: 0px;
margin-left: 20px;
margin-bottom: 0px;
margin-right: 20px;
}

#s-df23c4ca-b741-4daf-857f-ec069013f7c5 {
  text-align: center;
}
@media (min-width: 1200px){#s-df23c4ca-b741-4daf-857f-ec069013f7c5 {
  display: none;
}
#s-df23c4ca-b741-4daf-857f-ec069013f7c5, #wrap-s-df23c4ca-b741-4daf-857f-ec069013f7c5 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-df23c4ca-b741-4daf-857f-ec069013f7c5 {
  display: none;
}
#s-df23c4ca-b741-4daf-857f-ec069013f7c5, #wrap-s-df23c4ca-b741-4daf-857f-ec069013f7c5 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-df23c4ca-b741-4daf-857f-ec069013f7c5 {
  display: none;
}
#s-df23c4ca-b741-4daf-857f-ec069013f7c5, #wrap-s-df23c4ca-b741-4daf-857f-ec069013f7c5 { display: none !important; }}






  #s-df23c4ca-b741-4daf-857f-ec069013f7c5 img.shogun-image {
    

    
    
    
  }


#s-df23c4ca-b741-4daf-857f-ec069013f7c5 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-b0c9cda8-230f-4619-a968-99f4c0eb19cb {
  margin-top: 0px;
margin-left: 20px;
margin-bottom: 0px;
margin-right: 20px;
}

#s-eb8a8e77-ade8-463c-8f30-7452e94fcf17 {
  text-align: center;
}
@media (min-width: 1200px){#s-eb8a8e77-ade8-463c-8f30-7452e94fcf17 {
  display: none;
}
#s-eb8a8e77-ade8-463c-8f30-7452e94fcf17, #wrap-s-eb8a8e77-ade8-463c-8f30-7452e94fcf17 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-eb8a8e77-ade8-463c-8f30-7452e94fcf17 {
  display: none;
}
#s-eb8a8e77-ade8-463c-8f30-7452e94fcf17, #wrap-s-eb8a8e77-ade8-463c-8f30-7452e94fcf17 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-eb8a8e77-ade8-463c-8f30-7452e94fcf17 {
  display: none;
}
#s-eb8a8e77-ade8-463c-8f30-7452e94fcf17, #wrap-s-eb8a8e77-ade8-463c-8f30-7452e94fcf17 { display: none !important; }}






  #s-eb8a8e77-ade8-463c-8f30-7452e94fcf17 img.shogun-image {
    

    
    
    
  }


#s-eb8a8e77-ade8-463c-8f30-7452e94fcf17 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-f8923e31-4a31-4e34-8b40-e9c8b7afdc6e {
  margin-top: 0px;
margin-left: 20px;
margin-bottom: 0px;
margin-right: 20px;
}

#s-197981ae-3eda-40bc-9cc0-3eab42af0b15 {
  text-align: center;
}
@media (min-width: 1200px){#s-197981ae-3eda-40bc-9cc0-3eab42af0b15 {
  display: none;
}
#s-197981ae-3eda-40bc-9cc0-3eab42af0b15, #wrap-s-197981ae-3eda-40bc-9cc0-3eab42af0b15 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-197981ae-3eda-40bc-9cc0-3eab42af0b15 {
  display: none;
}
#s-197981ae-3eda-40bc-9cc0-3eab42af0b15, #wrap-s-197981ae-3eda-40bc-9cc0-3eab42af0b15 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-197981ae-3eda-40bc-9cc0-3eab42af0b15 {
  display: none;
}
#s-197981ae-3eda-40bc-9cc0-3eab42af0b15, #wrap-s-197981ae-3eda-40bc-9cc0-3eab42af0b15 { display: none !important; }}






  #s-197981ae-3eda-40bc-9cc0-3eab42af0b15 img.shogun-image {
    

    
    
    
  }


#s-197981ae-3eda-40bc-9cc0-3eab42af0b15 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-125b3749-d52e-45e5-8c85-08b0db275aa0 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 10px;
}

#s-448cb7da-f7b4-4ee9-bb9a-272df8d70462 {
  margin-top: 40px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-left: 5%;
padding-right: 5%;
min-height: 50px;
}
@media (min-width: 1200px){#s-448cb7da-f7b4-4ee9-bb9a-272df8d70462 {
  display: none;
}
#s-448cb7da-f7b4-4ee9-bb9a-272df8d70462, #wrap-s-448cb7da-f7b4-4ee9-bb9a-272df8d70462 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-448cb7da-f7b4-4ee9-bb9a-272df8d70462 {
  display: none;
}
#s-448cb7da-f7b4-4ee9-bb9a-272df8d70462, #wrap-s-448cb7da-f7b4-4ee9-bb9a-272df8d70462 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-448cb7da-f7b4-4ee9-bb9a-272df8d70462 {
  display: none;
}
#s-448cb7da-f7b4-4ee9-bb9a-272df8d70462, #wrap-s-448cb7da-f7b4-4ee9-bb9a-272df8d70462 { display: none !important; }}@media (max-width: 767px){#s-448cb7da-f7b4-4ee9-bb9a-272df8d70462 {
  
}
}







#s-448cb7da-f7b4-4ee9-bb9a-272df8d70462 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-448cb7da-f7b4-4ee9-bb9a-272df8d70462.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-564b67ec-0e8d-4709-89d3-a519645e248a {
  padding-top: 40px;
padding-left: 0px;
padding-bottom: 20px;
padding-right: 0px;
text-align: center;
}








.s-564b67ec-0e8d-4709-89d3-a519645e248a .shogun-image-content {
  
    align-items: center;
  
}

.s-564b67ec-0e8d-4709-89d3-a519645e248a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-564b67ec-0e8d-4709-89d3-a519645e248a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-564b67ec-0e8d-4709-89d3-a519645e248a.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){






.s-564b67ec-0e8d-4709-89d3-a519645e248a .shogun-image-content {
  
    align-items: center;
  
}

.s-564b67ec-0e8d-4709-89d3-a519645e248a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-564b67ec-0e8d-4709-89d3-a519645e248a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-564b67ec-0e8d-4709-89d3-a519645e248a.shogun-image {
  box-sizing: border-box;
}



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






.s-564b67ec-0e8d-4709-89d3-a519645e248a .shogun-image-content {
  
    align-items: center;
  
}

.s-564b67ec-0e8d-4709-89d3-a519645e248a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-564b67ec-0e8d-4709-89d3-a519645e248a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-564b67ec-0e8d-4709-89d3-a519645e248a.shogun-image {
  box-sizing: border-box;
}



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






.s-564b67ec-0e8d-4709-89d3-a519645e248a .shogun-image-content {
  
    align-items: center;
  
}

.s-564b67ec-0e8d-4709-89d3-a519645e248a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-564b67ec-0e8d-4709-89d3-a519645e248a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-564b67ec-0e8d-4709-89d3-a519645e248a.shogun-image {
  box-sizing: border-box;
}



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






.s-564b67ec-0e8d-4709-89d3-a519645e248a .shogun-image-content {
  
    align-items: center;
  
}

.s-564b67ec-0e8d-4709-89d3-a519645e248a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-564b67ec-0e8d-4709-89d3-a519645e248a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-564b67ec-0e8d-4709-89d3-a519645e248a.shogun-image {
  box-sizing: border-box;
}



}

  video-section {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
  }

  video-section video {
    grid-row: 1;
    grid-column: 1;
  }

  .video-section__controls {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-row: 1;
    grid-column: 1;
    max-height: 100%;
    background-color: transparent;
    border: none;
    cursor: pointer;
  }

  .video-section__controls[data-state='pause'] {
    opacity: 0;
  }

  .video-section__controls .video-section__play {
    border: none;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.3);
    width: 80px;
    height: 80px;
    font-size: 0;
    text-align: center;
  }

  .video-section__controls .video-section__play:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 24px;
    border-color: transparent transparent transparent #ffffff;
  }

  .video-section__controls span {
    visibility: hidden;
    position: absolute;
  }
@media (min-width: 1200px){#s-7ceaca80-71a9-404d-b0c5-69cef0d6bc4b {
  display: none;
}
#s-7ceaca80-71a9-404d-b0c5-69cef0d6bc4b, #wrap-s-7ceaca80-71a9-404d-b0c5-69cef0d6bc4b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7ceaca80-71a9-404d-b0c5-69cef0d6bc4b {
  display: none;
}
#s-7ceaca80-71a9-404d-b0c5-69cef0d6bc4b, #wrap-s-7ceaca80-71a9-404d-b0c5-69cef0d6bc4b { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7ceaca80-71a9-404d-b0c5-69cef0d6bc4b {
  display: unset;
}
#s-7ceaca80-71a9-404d-b0c5-69cef0d6bc4b, #wrap-s-7ceaca80-71a9-404d-b0c5-69cef0d6bc4b { display: unset !important; }}
#s-d333be71-7652-40c8-9050-c4c12aa8a6af {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
}

#s-c2ce26bd-78ac-4407-8328-b2bb1dc1a65a {
  padding-top: 0px;
}
@media (min-width: 1200px){#s-c2ce26bd-78ac-4407-8328-b2bb1dc1a65a {
  display: none;
}
#s-c2ce26bd-78ac-4407-8328-b2bb1dc1a65a, #wrap-s-c2ce26bd-78ac-4407-8328-b2bb1dc1a65a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c2ce26bd-78ac-4407-8328-b2bb1dc1a65a {
  display: none;
}
#s-c2ce26bd-78ac-4407-8328-b2bb1dc1a65a, #wrap-s-c2ce26bd-78ac-4407-8328-b2bb1dc1a65a { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c2ce26bd-78ac-4407-8328-b2bb1dc1a65a {
  display: unset;
}
#s-c2ce26bd-78ac-4407-8328-b2bb1dc1a65a, #wrap-s-c2ce26bd-78ac-4407-8328-b2bb1dc1a65a { display: unset !important; }}
@media (min-width: 0px) {
[id="s-c2ce26bd-78ac-4407-8328-b2bb1dc1a65a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-c2ce26bd-78ac-4407-8328-b2bb1dc1a65a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-c2ce26bd-78ac-4407-8328-b2bb1dc1a65a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-c2ce26bd-78ac-4407-8328-b2bb1dc1a65a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-0b6f6459-c2ce-4ff4-8c53-fbd0a277b1d8 {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-0b6f6459-c2ce-4ff4-8c53-fbd0a277b1d8 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-0b6f6459-c2ce-4ff4-8c53-fbd0a277b1d8 .shg-sld-nav-button.shg-sld-left,
#s-0b6f6459-c2ce-4ff4-8c53-fbd0a277b1d8 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-83d6ae1e-d257-424e-a6db-735642a97718 {
  text-align: center;
}








#s-83d6ae1e-d257-424e-a6db-735642a97718 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-cbee4e72-9590-45d4-8668-69a31d5239b5 {
  text-align: center;
}
@media (min-width: 1200px){#s-cbee4e72-9590-45d4-8668-69a31d5239b5 {
  display: none;
}
#s-cbee4e72-9590-45d4-8668-69a31d5239b5, #wrap-s-cbee4e72-9590-45d4-8668-69a31d5239b5 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-cbee4e72-9590-45d4-8668-69a31d5239b5 {
  display: none;
}
#s-cbee4e72-9590-45d4-8668-69a31d5239b5, #wrap-s-cbee4e72-9590-45d4-8668-69a31d5239b5 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-cbee4e72-9590-45d4-8668-69a31d5239b5 {
  display: none;
}
#s-cbee4e72-9590-45d4-8668-69a31d5239b5, #wrap-s-cbee4e72-9590-45d4-8668-69a31d5239b5 { display: none !important; }}






  #s-cbee4e72-9590-45d4-8668-69a31d5239b5 img.shogun-image {
    

    
    
    
  }


#s-cbee4e72-9590-45d4-8668-69a31d5239b5 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-fb20979d-300d-49c8-8a61-edc593fa3e63 {
  margin-top: 0px;
margin-left: 20px;
margin-bottom: 0px;
margin-right: 20px;
}

#s-15878059-eedb-4579-b745-6e5d197823b4 {
  text-align: center;
}
@media (min-width: 1200px){#s-15878059-eedb-4579-b745-6e5d197823b4 {
  display: none;
}
#s-15878059-eedb-4579-b745-6e5d197823b4, #wrap-s-15878059-eedb-4579-b745-6e5d197823b4 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-15878059-eedb-4579-b745-6e5d197823b4 {
  display: none;
}
#s-15878059-eedb-4579-b745-6e5d197823b4, #wrap-s-15878059-eedb-4579-b745-6e5d197823b4 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-15878059-eedb-4579-b745-6e5d197823b4 {
  display: none;
}
#s-15878059-eedb-4579-b745-6e5d197823b4, #wrap-s-15878059-eedb-4579-b745-6e5d197823b4 { display: none !important; }}






  #s-15878059-eedb-4579-b745-6e5d197823b4 img.shogun-image {
    

    
    
    
  }


#s-15878059-eedb-4579-b745-6e5d197823b4 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-2639fd6e-0ac3-4f7c-abab-f0087ab5d38f {
  margin-top: 0px;
margin-left: 20px;
margin-bottom: 0px;
margin-right: 20px;
}

#s-a1bd228c-f002-468a-9001-55c400e354a5 {
  text-align: center;
}
@media (min-width: 1200px){#s-a1bd228c-f002-468a-9001-55c400e354a5 {
  display: none;
}
#s-a1bd228c-f002-468a-9001-55c400e354a5, #wrap-s-a1bd228c-f002-468a-9001-55c400e354a5 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a1bd228c-f002-468a-9001-55c400e354a5 {
  display: none;
}
#s-a1bd228c-f002-468a-9001-55c400e354a5, #wrap-s-a1bd228c-f002-468a-9001-55c400e354a5 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a1bd228c-f002-468a-9001-55c400e354a5 {
  display: none;
}
#s-a1bd228c-f002-468a-9001-55c400e354a5, #wrap-s-a1bd228c-f002-468a-9001-55c400e354a5 { display: none !important; }}






  #s-a1bd228c-f002-468a-9001-55c400e354a5 img.shogun-image {
    

    
    
    
  }


#s-a1bd228c-f002-468a-9001-55c400e354a5 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-83d12f23-3437-4825-84e7-aa09d5ce93cc {
  margin-top: 0px;
margin-left: 20px;
margin-bottom: 0px;
margin-right: 20px;
}

#s-00187dca-a9f3-40dc-ba8c-50a243bc321d {
  text-align: center;
}
@media (min-width: 1200px){#s-00187dca-a9f3-40dc-ba8c-50a243bc321d {
  display: none;
}
#s-00187dca-a9f3-40dc-ba8c-50a243bc321d, #wrap-s-00187dca-a9f3-40dc-ba8c-50a243bc321d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-00187dca-a9f3-40dc-ba8c-50a243bc321d {
  display: none;
}
#s-00187dca-a9f3-40dc-ba8c-50a243bc321d, #wrap-s-00187dca-a9f3-40dc-ba8c-50a243bc321d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-00187dca-a9f3-40dc-ba8c-50a243bc321d {
  display: none;
}
#s-00187dca-a9f3-40dc-ba8c-50a243bc321d, #wrap-s-00187dca-a9f3-40dc-ba8c-50a243bc321d { display: none !important; }}






  #s-00187dca-a9f3-40dc-ba8c-50a243bc321d img.shogun-image {
    

    
    
    
  }


#s-00187dca-a9f3-40dc-ba8c-50a243bc321d .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-d38fe2ed-5c6b-480c-a14a-11add6850b1c {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 10px;
}

#s-b13c67c8-dbc5-4af6-a33f-35ad64c1af84 {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-b13c67c8-dbc5-4af6-a33f-35ad64c1af84 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-b13c67c8-dbc5-4af6-a33f-35ad64c1af84 .shg-sld-nav-button.shg-sld-left,
#s-b13c67c8-dbc5-4af6-a33f-35ad64c1af84 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-41068b33-0bd2-462a-901a-7da14238b3e3 {
  text-align: center;
}








#s-41068b33-0bd2-462a-901a-7da14238b3e3 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-f7915878-253a-48a0-b8b8-500489a290fc {
  text-align: center;
}
@media (min-width: 1200px){#s-f7915878-253a-48a0-b8b8-500489a290fc {
  display: none;
}
#s-f7915878-253a-48a0-b8b8-500489a290fc, #wrap-s-f7915878-253a-48a0-b8b8-500489a290fc { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f7915878-253a-48a0-b8b8-500489a290fc {
  display: none;
}
#s-f7915878-253a-48a0-b8b8-500489a290fc, #wrap-s-f7915878-253a-48a0-b8b8-500489a290fc { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f7915878-253a-48a0-b8b8-500489a290fc {
  display: none;
}
#s-f7915878-253a-48a0-b8b8-500489a290fc, #wrap-s-f7915878-253a-48a0-b8b8-500489a290fc { display: none !important; }}






  #s-f7915878-253a-48a0-b8b8-500489a290fc img.shogun-image {
    

    
    
    
  }


#s-f7915878-253a-48a0-b8b8-500489a290fc .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-451c4fe5-2356-46ab-a1ba-3b64bc7991ec {
  margin-top: 0px;
margin-left: 20px;
margin-bottom: 0px;
margin-right: 20px;
}

#s-09b01dca-65d5-4539-b61c-6789c677e8cc {
  text-align: center;
}
@media (min-width: 1200px){#s-09b01dca-65d5-4539-b61c-6789c677e8cc {
  display: none;
}
#s-09b01dca-65d5-4539-b61c-6789c677e8cc, #wrap-s-09b01dca-65d5-4539-b61c-6789c677e8cc { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-09b01dca-65d5-4539-b61c-6789c677e8cc {
  display: none;
}
#s-09b01dca-65d5-4539-b61c-6789c677e8cc, #wrap-s-09b01dca-65d5-4539-b61c-6789c677e8cc { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-09b01dca-65d5-4539-b61c-6789c677e8cc {
  display: none;
}
#s-09b01dca-65d5-4539-b61c-6789c677e8cc, #wrap-s-09b01dca-65d5-4539-b61c-6789c677e8cc { display: none !important; }}






  #s-09b01dca-65d5-4539-b61c-6789c677e8cc img.shogun-image {
    

    
    
    
  }


#s-09b01dca-65d5-4539-b61c-6789c677e8cc .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-a2aae8ac-a686-4bb9-b24b-bb5b3113fe07 {
  margin-top: 0px;
margin-left: 20px;
margin-bottom: 0px;
margin-right: 20px;
}

#s-9c08d0ab-df4d-4606-8dbe-5872df770120 {
  text-align: center;
}
@media (min-width: 1200px){#s-9c08d0ab-df4d-4606-8dbe-5872df770120 {
  display: none;
}
#s-9c08d0ab-df4d-4606-8dbe-5872df770120, #wrap-s-9c08d0ab-df4d-4606-8dbe-5872df770120 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9c08d0ab-df4d-4606-8dbe-5872df770120 {
  display: none;
}
#s-9c08d0ab-df4d-4606-8dbe-5872df770120, #wrap-s-9c08d0ab-df4d-4606-8dbe-5872df770120 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-9c08d0ab-df4d-4606-8dbe-5872df770120 {
  display: none;
}
#s-9c08d0ab-df4d-4606-8dbe-5872df770120, #wrap-s-9c08d0ab-df4d-4606-8dbe-5872df770120 { display: none !important; }}






  #s-9c08d0ab-df4d-4606-8dbe-5872df770120 img.shogun-image {
    

    
    
    
  }


#s-9c08d0ab-df4d-4606-8dbe-5872df770120 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-ef8365ca-f684-4600-97a1-6e884e7296ee {
  margin-top: 0px;
margin-left: 20px;
margin-bottom: 0px;
margin-right: 20px;
}

#s-209ae0f4-6753-401b-9365-325bdb472919 {
  text-align: center;
}








#s-209ae0f4-6753-401b-9365-325bdb472919 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-61a9533c-b8a8-42bb-bbfd-a0362a005284 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 10px;
}

#s-ea645879-4093-4fcf-8c4f-ef01fd0121cc {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
}

#s-72be4bb4-fc6a-4f96-bbcd-9891fdb06c84 {
  padding-top: 60px;
padding-left: 0%;
padding-bottom: 60px;
padding-right: 0px;
min-height: 50px;
}
@media (min-width: 1200px){#s-72be4bb4-fc6a-4f96-bbcd-9891fdb06c84 {
  display: none;
}
#s-72be4bb4-fc6a-4f96-bbcd-9891fdb06c84, #wrap-s-72be4bb4-fc6a-4f96-bbcd-9891fdb06c84 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-72be4bb4-fc6a-4f96-bbcd-9891fdb06c84 {
  display: none;
}
#s-72be4bb4-fc6a-4f96-bbcd-9891fdb06c84, #wrap-s-72be4bb4-fc6a-4f96-bbcd-9891fdb06c84 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-72be4bb4-fc6a-4f96-bbcd-9891fdb06c84 {
  display: none;
}
#s-72be4bb4-fc6a-4f96-bbcd-9891fdb06c84, #wrap-s-72be4bb4-fc6a-4f96-bbcd-9891fdb06c84 { display: none !important; }}







#s-72be4bb4-fc6a-4f96-bbcd-9891fdb06c84 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-72be4bb4-fc6a-4f96-bbcd-9891fdb06c84.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2e749038-24b2-4fe8-b4b3-ac8c9ddab9f1 {
  padding-top: 0px;
padding-left: 5%;
padding-bottom: 10px;
padding-right: 5%;
text-align: center;
}








.s-2e749038-24b2-4fe8-b4b3-ac8c9ddab9f1 .shogun-image-content {
  
    align-items: center;
  
}

.s-2e749038-24b2-4fe8-b4b3-ac8c9ddab9f1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e749038-24b2-4fe8-b4b3-ac8c9ddab9f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e749038-24b2-4fe8-b4b3-ac8c9ddab9f1.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){






.s-2e749038-24b2-4fe8-b4b3-ac8c9ddab9f1 .shogun-image-content {
  
    align-items: center;
  
}

.s-2e749038-24b2-4fe8-b4b3-ac8c9ddab9f1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e749038-24b2-4fe8-b4b3-ac8c9ddab9f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e749038-24b2-4fe8-b4b3-ac8c9ddab9f1.shogun-image {
  box-sizing: border-box;
}



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






.s-2e749038-24b2-4fe8-b4b3-ac8c9ddab9f1 .shogun-image-content {
  
    align-items: center;
  
}

.s-2e749038-24b2-4fe8-b4b3-ac8c9ddab9f1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e749038-24b2-4fe8-b4b3-ac8c9ddab9f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e749038-24b2-4fe8-b4b3-ac8c9ddab9f1.shogun-image {
  box-sizing: border-box;
}



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






.s-2e749038-24b2-4fe8-b4b3-ac8c9ddab9f1 .shogun-image-content {
  
    align-items: center;
  
}

.s-2e749038-24b2-4fe8-b4b3-ac8c9ddab9f1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e749038-24b2-4fe8-b4b3-ac8c9ddab9f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e749038-24b2-4fe8-b4b3-ac8c9ddab9f1.shogun-image {
  box-sizing: border-box;
}



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






.s-2e749038-24b2-4fe8-b4b3-ac8c9ddab9f1 .shogun-image-content {
  
    align-items: center;
  
}

.s-2e749038-24b2-4fe8-b4b3-ac8c9ddab9f1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e749038-24b2-4fe8-b4b3-ac8c9ddab9f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e749038-24b2-4fe8-b4b3-ac8c9ddab9f1.shogun-image {
  box-sizing: border-box;
}



}
#s-c4213c6e-8616-46d2-add8-517b0bb3bb30 {
  max-width: 1920px;
aspect-ratio: 1920/714;
text-align: center;
}





  #s-c4213c6e-8616-46d2-add8-517b0bb3bb30 img.shogun-image,
  #s-c4213c6e-8616-46d2-add8-517b0bb3bb30 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c4213c6e-8616-46d2-add8-517b0bb3bb30 {
    width: 100%;
    height: auto;
  }

  #s-c4213c6e-8616-46d2-add8-517b0bb3bb30 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-c4213c6e-8616-46d2-add8-517b0bb3bb30 .shogun-image-content {
  
    align-items: center;
  
}

.s-c4213c6e-8616-46d2-add8-517b0bb3bb30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c4213c6e-8616-46d2-add8-517b0bb3bb30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c4213c6e-8616-46d2-add8-517b0bb3bb30.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c4213c6e-8616-46d2-add8-517b0bb3bb30 {
      --shg-aspect-ratio: calc(1920/714); 
    }

    .s-c4213c6e-8616-46d2-add8-517b0bb3bb30.shogun-image-container {
      position: relative;
    }

    .s-c4213c6e-8616-46d2-add8-517b0bb3bb30.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c4213c6e-8616-46d2-add8-517b0bb3bb30.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c4213c6e-8616-46d2-add8-517b0bb3bb30 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-c4213c6e-8616-46d2-add8-517b0bb3bb30 img.shogun-image,
  #s-c4213c6e-8616-46d2-add8-517b0bb3bb30 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c4213c6e-8616-46d2-add8-517b0bb3bb30 {
    width: 100%;
    height: auto;
  }

  #s-c4213c6e-8616-46d2-add8-517b0bb3bb30 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-c4213c6e-8616-46d2-add8-517b0bb3bb30 .shogun-image-content {
  
    align-items: center;
  
}

.s-c4213c6e-8616-46d2-add8-517b0bb3bb30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c4213c6e-8616-46d2-add8-517b0bb3bb30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c4213c6e-8616-46d2-add8-517b0bb3bb30.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c4213c6e-8616-46d2-add8-517b0bb3bb30 {
      --shg-aspect-ratio: calc(1920/714); 
    }

    .s-c4213c6e-8616-46d2-add8-517b0bb3bb30.shogun-image-container {
      position: relative;
    }

    .s-c4213c6e-8616-46d2-add8-517b0bb3bb30.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c4213c6e-8616-46d2-add8-517b0bb3bb30.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c4213c6e-8616-46d2-add8-517b0bb3bb30 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-c4213c6e-8616-46d2-add8-517b0bb3bb30 img.shogun-image,
  #s-c4213c6e-8616-46d2-add8-517b0bb3bb30 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c4213c6e-8616-46d2-add8-517b0bb3bb30 {
    width: 100%;
    height: auto;
  }

  #s-c4213c6e-8616-46d2-add8-517b0bb3bb30 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-c4213c6e-8616-46d2-add8-517b0bb3bb30 .shogun-image-content {
  
    align-items: center;
  
}

.s-c4213c6e-8616-46d2-add8-517b0bb3bb30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c4213c6e-8616-46d2-add8-517b0bb3bb30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c4213c6e-8616-46d2-add8-517b0bb3bb30.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c4213c6e-8616-46d2-add8-517b0bb3bb30 {
      --shg-aspect-ratio: calc(1920/714); 
    }

    .s-c4213c6e-8616-46d2-add8-517b0bb3bb30.shogun-image-container {
      position: relative;
    }

    .s-c4213c6e-8616-46d2-add8-517b0bb3bb30.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c4213c6e-8616-46d2-add8-517b0bb3bb30.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c4213c6e-8616-46d2-add8-517b0bb3bb30 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-c4213c6e-8616-46d2-add8-517b0bb3bb30 img.shogun-image,
  #s-c4213c6e-8616-46d2-add8-517b0bb3bb30 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c4213c6e-8616-46d2-add8-517b0bb3bb30 {
    width: 100%;
    height: auto;
  }

  #s-c4213c6e-8616-46d2-add8-517b0bb3bb30 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-c4213c6e-8616-46d2-add8-517b0bb3bb30 .shogun-image-content {
  
    align-items: center;
  
}

.s-c4213c6e-8616-46d2-add8-517b0bb3bb30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c4213c6e-8616-46d2-add8-517b0bb3bb30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c4213c6e-8616-46d2-add8-517b0bb3bb30.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c4213c6e-8616-46d2-add8-517b0bb3bb30 {
      --shg-aspect-ratio: calc(1920/714); 
    }

    .s-c4213c6e-8616-46d2-add8-517b0bb3bb30.shogun-image-container {
      position: relative;
    }

    .s-c4213c6e-8616-46d2-add8-517b0bb3bb30.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c4213c6e-8616-46d2-add8-517b0bb3bb30.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c4213c6e-8616-46d2-add8-517b0bb3bb30 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-c4213c6e-8616-46d2-add8-517b0bb3bb30 img.shogun-image,
  #s-c4213c6e-8616-46d2-add8-517b0bb3bb30 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c4213c6e-8616-46d2-add8-517b0bb3bb30 {
    width: 100%;
    height: auto;
  }

  #s-c4213c6e-8616-46d2-add8-517b0bb3bb30 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-c4213c6e-8616-46d2-add8-517b0bb3bb30 .shogun-image-content {
  
    align-items: center;
  
}

.s-c4213c6e-8616-46d2-add8-517b0bb3bb30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c4213c6e-8616-46d2-add8-517b0bb3bb30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c4213c6e-8616-46d2-add8-517b0bb3bb30.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c4213c6e-8616-46d2-add8-517b0bb3bb30 {
      --shg-aspect-ratio: calc(1920/714); 
    }

    .s-c4213c6e-8616-46d2-add8-517b0bb3bb30.shogun-image-container {
      position: relative;
    }

    .s-c4213c6e-8616-46d2-add8-517b0bb3bb30.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c4213c6e-8616-46d2-add8-517b0bb3bb30.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c4213c6e-8616-46d2-add8-517b0bb3bb30 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-bfd5d894-e9da-4f7b-bbc6-d7a4d6aa4737 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
}

#s-421e7e18-6b59-405c-a6d2-945bb8397943 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 10px;
min-height: 46px;
}
@media (min-width: 768px) and (max-width: 991px){#s-421e7e18-6b59-405c-a6d2-945bb8397943 {
  display: none;
}
#s-421e7e18-6b59-405c-a6d2-945bb8397943, #wrap-s-421e7e18-6b59-405c-a6d2-945bb8397943 { display: none !important; }}@media (max-width: 767px){#s-421e7e18-6b59-405c-a6d2-945bb8397943 {
  display: none;
}
#s-421e7e18-6b59-405c-a6d2-945bb8397943, #wrap-s-421e7e18-6b59-405c-a6d2-945bb8397943 { display: none !important; }}







#s-421e7e18-6b59-405c-a6d2-945bb8397943 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-421e7e18-6b59-405c-a6d2-945bb8397943.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-710993b2-b5d5-4190-80ca-32b8620516f0 {
  padding-top: 20px;
padding-bottom: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-710993b2-b5d5-4190-80ca-32b8620516f0 {
  display: none;
}
#s-710993b2-b5d5-4190-80ca-32b8620516f0, #wrap-s-710993b2-b5d5-4190-80ca-32b8620516f0 { display: none !important; }}@media (max-width: 767px){#s-710993b2-b5d5-4190-80ca-32b8620516f0 {
  display: none;
}
#s-710993b2-b5d5-4190-80ca-32b8620516f0, #wrap-s-710993b2-b5d5-4190-80ca-32b8620516f0 { display: none !important; }}
@media (min-width: 0px) {
[id="s-710993b2-b5d5-4190-80ca-32b8620516f0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-710993b2-b5d5-4190-80ca-32b8620516f0"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-710993b2-b5d5-4190-80ca-32b8620516f0"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-710993b2-b5d5-4190-80ca-32b8620516f0"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-710993b2-b5d5-4190-80ca-32b8620516f0"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-710993b2-b5d5-4190-80ca-32b8620516f0"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-710993b2-b5d5-4190-80ca-32b8620516f0"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

#s-4ff5c1d6-9926-4f0c-b438-ee75f8abe2f2 {
  min-height: 46px;
background-color: rgba(0, 0, 0, 0);
}








#s-4ff5c1d6-9926-4f0c-b438-ee75f8abe2f2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4ff5c1d6-9926-4f0c-b438-ee75f8abe2f2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-07691178-121c-4d67-ac46-822b0030c6d1 {
  padding-top: 0px;
min-height: 50px;
}
@media (max-width: 767px){#s-07691178-121c-4d67-ac46-822b0030c6d1 {
  display: none;
}
#s-07691178-121c-4d67-ac46-822b0030c6d1, #wrap-s-07691178-121c-4d67-ac46-822b0030c6d1 { display: none !important; }}







#s-07691178-121c-4d67-ac46-822b0030c6d1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-07691178-121c-4d67-ac46-822b0030c6d1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ceef857c-28b7-4870-967f-66c586b08b48 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-ceef857c-28b7-4870-967f-66c586b08b48 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-ceef857c-28b7-4870-967f-66c586b08b48 .shg-sld-nav-button.shg-sld-left,
#s-ceef857c-28b7-4870-967f-66c586b08b48 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-c69df173-6b25-4446-9d39-d4041a7979d7 {
  text-align: center;
}








.s-c69df173-6b25-4446-9d39-d4041a7979d7 .shogun-image-content {
  
    align-items: center;
  
}

.s-c69df173-6b25-4446-9d39-d4041a7979d7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c69df173-6b25-4446-9d39-d4041a7979d7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c69df173-6b25-4446-9d39-d4041a7979d7.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){






.s-c69df173-6b25-4446-9d39-d4041a7979d7 .shogun-image-content {
  
    align-items: center;
  
}

.s-c69df173-6b25-4446-9d39-d4041a7979d7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c69df173-6b25-4446-9d39-d4041a7979d7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c69df173-6b25-4446-9d39-d4041a7979d7.shogun-image {
  box-sizing: border-box;
}



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






.s-c69df173-6b25-4446-9d39-d4041a7979d7 .shogun-image-content {
  
    align-items: center;
  
}

.s-c69df173-6b25-4446-9d39-d4041a7979d7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c69df173-6b25-4446-9d39-d4041a7979d7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c69df173-6b25-4446-9d39-d4041a7979d7.shogun-image {
  box-sizing: border-box;
}



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






.s-c69df173-6b25-4446-9d39-d4041a7979d7 .shogun-image-content {
  
    align-items: center;
  
}

.s-c69df173-6b25-4446-9d39-d4041a7979d7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c69df173-6b25-4446-9d39-d4041a7979d7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c69df173-6b25-4446-9d39-d4041a7979d7.shogun-image {
  box-sizing: border-box;
}



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






.s-c69df173-6b25-4446-9d39-d4041a7979d7 .shogun-image-content {
  
    align-items: center;
  
}

.s-c69df173-6b25-4446-9d39-d4041a7979d7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c69df173-6b25-4446-9d39-d4041a7979d7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c69df173-6b25-4446-9d39-d4041a7979d7.shogun-image {
  box-sizing: border-box;
}



}
#s-f4ad72e6-9e1e-4bc5-9c04-1725ce9201ed {
  text-align: center;
}








.s-f4ad72e6-9e1e-4bc5-9c04-1725ce9201ed .shogun-image-content {
  
    align-items: center;
  
}

.s-f4ad72e6-9e1e-4bc5-9c04-1725ce9201ed.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f4ad72e6-9e1e-4bc5-9c04-1725ce9201ed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f4ad72e6-9e1e-4bc5-9c04-1725ce9201ed.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){






.s-f4ad72e6-9e1e-4bc5-9c04-1725ce9201ed .shogun-image-content {
  
    align-items: center;
  
}

.s-f4ad72e6-9e1e-4bc5-9c04-1725ce9201ed.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f4ad72e6-9e1e-4bc5-9c04-1725ce9201ed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f4ad72e6-9e1e-4bc5-9c04-1725ce9201ed.shogun-image {
  box-sizing: border-box;
}



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






.s-f4ad72e6-9e1e-4bc5-9c04-1725ce9201ed .shogun-image-content {
  
    align-items: center;
  
}

.s-f4ad72e6-9e1e-4bc5-9c04-1725ce9201ed.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f4ad72e6-9e1e-4bc5-9c04-1725ce9201ed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f4ad72e6-9e1e-4bc5-9c04-1725ce9201ed.shogun-image {
  box-sizing: border-box;
}



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






.s-f4ad72e6-9e1e-4bc5-9c04-1725ce9201ed .shogun-image-content {
  
    align-items: center;
  
}

.s-f4ad72e6-9e1e-4bc5-9c04-1725ce9201ed.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f4ad72e6-9e1e-4bc5-9c04-1725ce9201ed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f4ad72e6-9e1e-4bc5-9c04-1725ce9201ed.shogun-image {
  box-sizing: border-box;
}



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






.s-f4ad72e6-9e1e-4bc5-9c04-1725ce9201ed .shogun-image-content {
  
    align-items: center;
  
}

.s-f4ad72e6-9e1e-4bc5-9c04-1725ce9201ed.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f4ad72e6-9e1e-4bc5-9c04-1725ce9201ed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f4ad72e6-9e1e-4bc5-9c04-1725ce9201ed.shogun-image {
  box-sizing: border-box;
}



}
#s-c579d434-140f-4628-849a-eefe952e16f5 {
  margin-top: 0px;
padding-top: 20px;
padding-bottom: 0px;
}

#s-7e4da3bb-3622-45ec-acb6-221845ae5aed {
  margin-top: 0px;
padding-top: 20px;
padding-bottom: 0px;
}

#s-d6124003-f62d-400f-b1cf-23b7202c119f {
  margin-left: 0%;
margin-right: 0%;
padding-top: 40px;
padding-left: 15%;
padding-bottom: 0px;
padding-right: 15%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-d6124003-f62d-400f-b1cf-23b7202c119f {
  display: none;
}
#s-d6124003-f62d-400f-b1cf-23b7202c119f, #wrap-s-d6124003-f62d-400f-b1cf-23b7202c119f { display: none !important; }}@media (max-width: 767px){#s-d6124003-f62d-400f-b1cf-23b7202c119f {
  display: none;
}
#s-d6124003-f62d-400f-b1cf-23b7202c119f, #wrap-s-d6124003-f62d-400f-b1cf-23b7202c119f { display: none !important; }}







#s-d6124003-f62d-400f-b1cf-23b7202c119f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d6124003-f62d-400f-b1cf-23b7202c119f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c6e5935b-aeef-46e8-a40d-f819924ad985 {
  text-align: center;
}








.s-c6e5935b-aeef-46e8-a40d-f819924ad985 .shogun-image-content {
  
    align-items: center;
  
}

.s-c6e5935b-aeef-46e8-a40d-f819924ad985.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c6e5935b-aeef-46e8-a40d-f819924ad985.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c6e5935b-aeef-46e8-a40d-f819924ad985.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){






.s-c6e5935b-aeef-46e8-a40d-f819924ad985 .shogun-image-content {
  
    align-items: center;
  
}

.s-c6e5935b-aeef-46e8-a40d-f819924ad985.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c6e5935b-aeef-46e8-a40d-f819924ad985.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c6e5935b-aeef-46e8-a40d-f819924ad985.shogun-image {
  box-sizing: border-box;
}



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






.s-c6e5935b-aeef-46e8-a40d-f819924ad985 .shogun-image-content {
  
    align-items: center;
  
}

.s-c6e5935b-aeef-46e8-a40d-f819924ad985.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c6e5935b-aeef-46e8-a40d-f819924ad985.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c6e5935b-aeef-46e8-a40d-f819924ad985.shogun-image {
  box-sizing: border-box;
}



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






.s-c6e5935b-aeef-46e8-a40d-f819924ad985 .shogun-image-content {
  
    align-items: center;
  
}

.s-c6e5935b-aeef-46e8-a40d-f819924ad985.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c6e5935b-aeef-46e8-a40d-f819924ad985.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c6e5935b-aeef-46e8-a40d-f819924ad985.shogun-image {
  box-sizing: border-box;
}



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






.s-c6e5935b-aeef-46e8-a40d-f819924ad985 .shogun-image-content {
  
    align-items: center;
  
}

.s-c6e5935b-aeef-46e8-a40d-f819924ad985.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c6e5935b-aeef-46e8-a40d-f819924ad985.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c6e5935b-aeef-46e8-a40d-f819924ad985.shogun-image {
  box-sizing: border-box;
}



}
#s-6c7a772c-26df-4c61-a80f-0272cf0a0608 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 20px;
padding-bottom: 20px;
}
@media (min-width: 768px) and (max-width: 991px){#s-6c7a772c-26df-4c61-a80f-0272cf0a0608 {
  display: none;
}
#s-6c7a772c-26df-4c61-a80f-0272cf0a0608, #wrap-s-6c7a772c-26df-4c61-a80f-0272cf0a0608 { display: none !important; }}@media (max-width: 767px){#s-6c7a772c-26df-4c61-a80f-0272cf0a0608 {
  display: none;
}
#s-6c7a772c-26df-4c61-a80f-0272cf0a0608, #wrap-s-6c7a772c-26df-4c61-a80f-0272cf0a0608 { display: none !important; }}
#s-942c7409-40af-47d2-bcd2-cc3b11ac2025 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 20px;
padding-bottom: 20px;
}
@media (min-width: 1200px){#s-942c7409-40af-47d2-bcd2-cc3b11ac2025 {
  display: none;
}
#s-942c7409-40af-47d2-bcd2-cc3b11ac2025, #wrap-s-942c7409-40af-47d2-bcd2-cc3b11ac2025 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-942c7409-40af-47d2-bcd2-cc3b11ac2025 {
  display: none;
}
#s-942c7409-40af-47d2-bcd2-cc3b11ac2025, #wrap-s-942c7409-40af-47d2-bcd2-cc3b11ac2025 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-942c7409-40af-47d2-bcd2-cc3b11ac2025 {
  
}
}@media (max-width: 767px){#s-942c7409-40af-47d2-bcd2-cc3b11ac2025 {
  display: none;
}
#s-942c7409-40af-47d2-bcd2-cc3b11ac2025, #wrap-s-942c7409-40af-47d2-bcd2-cc3b11ac2025 { display: none !important; }}
#s-7eb29cbf-ba95-4a52-bb3f-ae6ff9a68dec {
  margin-left: 0%;
margin-right: 0%;
padding-top: 60px;
padding-left: 100px;
padding-bottom: 0px;
padding-right: 100px;
min-height: 50px;
}
@media (min-width: 1200px){#s-7eb29cbf-ba95-4a52-bb3f-ae6ff9a68dec {
  display: none;
}
#s-7eb29cbf-ba95-4a52-bb3f-ae6ff9a68dec, #wrap-s-7eb29cbf-ba95-4a52-bb3f-ae6ff9a68dec { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7eb29cbf-ba95-4a52-bb3f-ae6ff9a68dec {
  display: none;
}
#s-7eb29cbf-ba95-4a52-bb3f-ae6ff9a68dec, #wrap-s-7eb29cbf-ba95-4a52-bb3f-ae6ff9a68dec { display: none !important; }}@media (max-width: 767px){#s-7eb29cbf-ba95-4a52-bb3f-ae6ff9a68dec {
  display: none;
}
#s-7eb29cbf-ba95-4a52-bb3f-ae6ff9a68dec, #wrap-s-7eb29cbf-ba95-4a52-bb3f-ae6ff9a68dec { display: none !important; }}







#s-7eb29cbf-ba95-4a52-bb3f-ae6ff9a68dec > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7eb29cbf-ba95-4a52-bb3f-ae6ff9a68dec.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-79bc2db2-556b-4e6a-a146-a367935baa0e {
  text-align: center;
}







  img.s-79bc2db2-556b-4e6a-a146-a367935baa0e.shogun-image {
    
    
  }


.s-79bc2db2-556b-4e6a-a146-a367935baa0e .shogun-image-content {
  
    align-items: center;
  
}

.s-79bc2db2-556b-4e6a-a146-a367935baa0e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-79bc2db2-556b-4e6a-a146-a367935baa0e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-79bc2db2-556b-4e6a-a146-a367935baa0e.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-79bc2db2-556b-4e6a-a146-a367935baa0e.shogun-image {
    
    
  }


.s-79bc2db2-556b-4e6a-a146-a367935baa0e .shogun-image-content {
  
    align-items: center;
  
}

.s-79bc2db2-556b-4e6a-a146-a367935baa0e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-79bc2db2-556b-4e6a-a146-a367935baa0e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-79bc2db2-556b-4e6a-a146-a367935baa0e.shogun-image {
  box-sizing: border-box;
}



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





  img.s-79bc2db2-556b-4e6a-a146-a367935baa0e.shogun-image {
    
    
  }


.s-79bc2db2-556b-4e6a-a146-a367935baa0e .shogun-image-content {
  
    align-items: center;
  
}

.s-79bc2db2-556b-4e6a-a146-a367935baa0e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-79bc2db2-556b-4e6a-a146-a367935baa0e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-79bc2db2-556b-4e6a-a146-a367935baa0e.shogun-image {
  box-sizing: border-box;
}



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





  img.s-79bc2db2-556b-4e6a-a146-a367935baa0e.shogun-image {
    
    
  }


.s-79bc2db2-556b-4e6a-a146-a367935baa0e .shogun-image-content {
  
    align-items: center;
  
}

.s-79bc2db2-556b-4e6a-a146-a367935baa0e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-79bc2db2-556b-4e6a-a146-a367935baa0e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-79bc2db2-556b-4e6a-a146-a367935baa0e.shogun-image {
  box-sizing: border-box;
}



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





  img.s-79bc2db2-556b-4e6a-a146-a367935baa0e.shogun-image {
    
    
  }


.s-79bc2db2-556b-4e6a-a146-a367935baa0e .shogun-image-content {
  
    align-items: center;
  
}

.s-79bc2db2-556b-4e6a-a146-a367935baa0e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-79bc2db2-556b-4e6a-a146-a367935baa0e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-79bc2db2-556b-4e6a-a146-a367935baa0e.shogun-image {
  box-sizing: border-box;
}



}
#s-4afb1953-0a5d-479e-8ce5-87a9e17dbc72 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 20px;
padding-bottom: 20px;
}
@media (min-width: 768px) and (max-width: 991px){#s-4afb1953-0a5d-479e-8ce5-87a9e17dbc72 {
  display: none;
}
#s-4afb1953-0a5d-479e-8ce5-87a9e17dbc72, #wrap-s-4afb1953-0a5d-479e-8ce5-87a9e17dbc72 { display: none !important; }}@media (max-width: 767px){#s-4afb1953-0a5d-479e-8ce5-87a9e17dbc72 {
  display: none;
}
#s-4afb1953-0a5d-479e-8ce5-87a9e17dbc72, #wrap-s-4afb1953-0a5d-479e-8ce5-87a9e17dbc72 { display: none !important; }}
#s-c0596362-2028-4ca0-bb8d-9313f3bcccd0 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 20px;
padding-bottom: 20px;
}
@media (min-width: 1200px){#s-c0596362-2028-4ca0-bb8d-9313f3bcccd0 {
  display: none;
}
#s-c0596362-2028-4ca0-bb8d-9313f3bcccd0, #wrap-s-c0596362-2028-4ca0-bb8d-9313f3bcccd0 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c0596362-2028-4ca0-bb8d-9313f3bcccd0 {
  display: none;
}
#s-c0596362-2028-4ca0-bb8d-9313f3bcccd0, #wrap-s-c0596362-2028-4ca0-bb8d-9313f3bcccd0 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c0596362-2028-4ca0-bb8d-9313f3bcccd0 {
  
}
}@media (max-width: 767px){#s-c0596362-2028-4ca0-bb8d-9313f3bcccd0 {
  display: none;
}
#s-c0596362-2028-4ca0-bb8d-9313f3bcccd0, #wrap-s-c0596362-2028-4ca0-bb8d-9313f3bcccd0 { display: none !important; }}
#s-ecf9931e-3d9b-4658-85f2-b02091b7c2d1 {
  padding-top: 60px;
padding-left: 15%;
padding-bottom: 60px;
padding-right: 15%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-ecf9931e-3d9b-4658-85f2-b02091b7c2d1 {
  display: none;
}
#s-ecf9931e-3d9b-4658-85f2-b02091b7c2d1, #wrap-s-ecf9931e-3d9b-4658-85f2-b02091b7c2d1 { display: none !important; }}@media (max-width: 767px){#s-ecf9931e-3d9b-4658-85f2-b02091b7c2d1 {
  display: none;
}
#s-ecf9931e-3d9b-4658-85f2-b02091b7c2d1, #wrap-s-ecf9931e-3d9b-4658-85f2-b02091b7c2d1 { display: none !important; }}







#s-ecf9931e-3d9b-4658-85f2-b02091b7c2d1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ecf9931e-3d9b-4658-85f2-b02091b7c2d1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5a60d9cf-c887-4710-b4b7-e87b52c362ee {
  padding-top: 0px;
padding-bottom: 20px;
text-align: center;
}








.s-5a60d9cf-c887-4710-b4b7-e87b52c362ee .shogun-image-content {
  
    align-items: center;
  
}

.s-5a60d9cf-c887-4710-b4b7-e87b52c362ee.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5a60d9cf-c887-4710-b4b7-e87b52c362ee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5a60d9cf-c887-4710-b4b7-e87b52c362ee.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){






.s-5a60d9cf-c887-4710-b4b7-e87b52c362ee .shogun-image-content {
  
    align-items: center;
  
}

.s-5a60d9cf-c887-4710-b4b7-e87b52c362ee.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5a60d9cf-c887-4710-b4b7-e87b52c362ee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5a60d9cf-c887-4710-b4b7-e87b52c362ee.shogun-image {
  box-sizing: border-box;
}



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






.s-5a60d9cf-c887-4710-b4b7-e87b52c362ee .shogun-image-content {
  
    align-items: center;
  
}

.s-5a60d9cf-c887-4710-b4b7-e87b52c362ee.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5a60d9cf-c887-4710-b4b7-e87b52c362ee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5a60d9cf-c887-4710-b4b7-e87b52c362ee.shogun-image {
  box-sizing: border-box;
}



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






.s-5a60d9cf-c887-4710-b4b7-e87b52c362ee .shogun-image-content {
  
    align-items: center;
  
}

.s-5a60d9cf-c887-4710-b4b7-e87b52c362ee.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5a60d9cf-c887-4710-b4b7-e87b52c362ee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5a60d9cf-c887-4710-b4b7-e87b52c362ee.shogun-image {
  box-sizing: border-box;
}



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






.s-5a60d9cf-c887-4710-b4b7-e87b52c362ee .shogun-image-content {
  
    align-items: center;
  
}

.s-5a60d9cf-c887-4710-b4b7-e87b52c362ee.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5a60d9cf-c887-4710-b4b7-e87b52c362ee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5a60d9cf-c887-4710-b4b7-e87b52c362ee.shogun-image {
  box-sizing: border-box;
}



}
#s-d3aa866d-9d4a-46aa-895e-cf0a85fb099b {
  padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-d3aa866d-9d4a-46aa-895e-cf0a85fb099b"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 768px) {
[id="s-d3aa866d-9d4a-46aa-895e-cf0a85fb099b"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-d3aa866d-9d4a-46aa-895e-cf0a85fb099b"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-d3aa866d-9d4a-46aa-895e-cf0a85fb099b"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 7.5px);
}

}

#s-9f8ad46f-7a66-4057-a817-7d7fb82450e8 {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-9f8ad46f-7a66-4057-a817-7d7fb82450e8 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-9f8ad46f-7a66-4057-a817-7d7fb82450e8 .shg-sld-nav-button.shg-sld-left,
#s-9f8ad46f-7a66-4057-a817-7d7fb82450e8 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-06661e6b-02cd-44f2-b603-30b738582c11 {
  text-align: center;
}







  #s-06661e6b-02cd-44f2-b603-30b738582c11 img.shogun-image {
    

    
    
    
  }


#s-06661e6b-02cd-44f2-b603-30b738582c11 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-6744941b-f153-4c1d-b639-cb8333fb97dc {
  margin-top: 0px;
margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 991px){#s-6744941b-f153-4c1d-b639-cb8333fb97dc {
  
}
}@media (max-width: 767px){#s-6744941b-f153-4c1d-b639-cb8333fb97dc {
  display: none;
}
#s-6744941b-f153-4c1d-b639-cb8333fb97dc, #wrap-s-6744941b-f153-4c1d-b639-cb8333fb97dc { display: none !important; }}
#s-8876efc9-400f-4e01-8fc5-7f61e9b997d2 {
  aspect-ratio: 624/1080;
text-align: center;
}








#s-8876efc9-400f-4e01-8fc5-7f61e9b997d2 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-655c2d3f-7b7b-4e12-ac4a-dbc1cb34acff {
  margin-top: 0px;
margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 991px){#s-655c2d3f-7b7b-4e12-ac4a-dbc1cb34acff {
  
}
}@media (max-width: 767px){#s-655c2d3f-7b7b-4e12-ac4a-dbc1cb34acff {
  display: none;
}
#s-655c2d3f-7b7b-4e12-ac4a-dbc1cb34acff, #wrap-s-655c2d3f-7b7b-4e12-ac4a-dbc1cb34acff { display: none !important; }}
#s-c58b39da-3514-4903-8535-f273fc75f5a2 {
  text-align: center;
}







  #s-c58b39da-3514-4903-8535-f273fc75f5a2 img.shogun-image {
    

    
    
    
  }


#s-c58b39da-3514-4903-8535-f273fc75f5a2 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-1ff31b19-86fc-473e-ac87-dcc1fb5ed3f7 {
  margin-top: 0px;
margin-bottom: 5px;
}
@media (min-width: 768px) and (max-width: 991px){#s-1ff31b19-86fc-473e-ac87-dcc1fb5ed3f7 {
  
}
}@media (max-width: 767px){#s-1ff31b19-86fc-473e-ac87-dcc1fb5ed3f7 {
  display: none;
}
#s-1ff31b19-86fc-473e-ac87-dcc1fb5ed3f7, #wrap-s-1ff31b19-86fc-473e-ac87-dcc1fb5ed3f7 { display: none !important; }}
#s-ef854fd6-3831-4d10-9e54-65200aad7900 {
  text-align: center;
}







  #s-ef854fd6-3831-4d10-9e54-65200aad7900 img.shogun-image {
    

    
    
    
  }


#s-ef854fd6-3831-4d10-9e54-65200aad7900 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-8010ff3b-9424-4565-bec9-9085a09ec979 {
  margin-top: 0px;
margin-bottom: 5px;
}
@media (min-width: 768px) and (max-width: 991px){#s-8010ff3b-9424-4565-bec9-9085a09ec979 {
  
}
}@media (max-width: 767px){#s-8010ff3b-9424-4565-bec9-9085a09ec979 {
  display: none;
}
#s-8010ff3b-9424-4565-bec9-9085a09ec979, #wrap-s-8010ff3b-9424-4565-bec9-9085a09ec979 { display: none !important; }}
#s-e16f9bee-52f3-4f94-9718-dd3e08af64d7 {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-e16f9bee-52f3-4f94-9718-dd3e08af64d7 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-e16f9bee-52f3-4f94-9718-dd3e08af64d7 .shg-sld-nav-button.shg-sld-left,
#s-e16f9bee-52f3-4f94-9718-dd3e08af64d7 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-61e13e56-c05a-4770-8438-915d3bc47e58 {
  text-align: center;
}








#s-61e13e56-c05a-4770-8438-915d3bc47e58 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-1303c607-e1ed-4a44-85ad-fa1cd4e8bdbb {
  margin-top: 0px;
margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 991px){#s-1303c607-e1ed-4a44-85ad-fa1cd4e8bdbb {
  
}
}@media (max-width: 767px){#s-1303c607-e1ed-4a44-85ad-fa1cd4e8bdbb {
  display: none;
}
#s-1303c607-e1ed-4a44-85ad-fa1cd4e8bdbb, #wrap-s-1303c607-e1ed-4a44-85ad-fa1cd4e8bdbb { display: none !important; }}
#s-80d339d6-a6e9-407c-931f-631992bce6f9 {
  text-align: center;
}








#s-80d339d6-a6e9-407c-931f-631992bce6f9 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-b3986f3c-34ed-4673-98ce-754b01123724 {
  margin-top: 0px;
margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 991px){#s-b3986f3c-34ed-4673-98ce-754b01123724 {
  
}
}@media (max-width: 767px){#s-b3986f3c-34ed-4673-98ce-754b01123724 {
  display: none;
}
#s-b3986f3c-34ed-4673-98ce-754b01123724, #wrap-s-b3986f3c-34ed-4673-98ce-754b01123724 { display: none !important; }}
#s-2beb26ae-0cdf-4470-b7b5-8890bf5474a8 {
  text-align: center;
}







  #s-2beb26ae-0cdf-4470-b7b5-8890bf5474a8 img.shogun-image {
    

    
    
    
  }


#s-2beb26ae-0cdf-4470-b7b5-8890bf5474a8 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-241cafc9-6590-42f1-bf67-b25a2b2c506f {
  margin-top: 0px;
margin-bottom: 5px;
}
@media (min-width: 768px) and (max-width: 991px){#s-241cafc9-6590-42f1-bf67-b25a2b2c506f {
  
}
}@media (max-width: 767px){#s-241cafc9-6590-42f1-bf67-b25a2b2c506f {
  display: none;
}
#s-241cafc9-6590-42f1-bf67-b25a2b2c506f, #wrap-s-241cafc9-6590-42f1-bf67-b25a2b2c506f { display: none !important; }}
#s-799fa5b8-6e86-4fcc-8663-3a8f5200672f {
  text-align: center;
}







  #s-799fa5b8-6e86-4fcc-8663-3a8f5200672f img.shogun-image {
    

    
    
    
  }


#s-799fa5b8-6e86-4fcc-8663-3a8f5200672f .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-c0150057-ac3a-41cd-ba3b-7ad0be99d6d0 {
  margin-top: 0px;
margin-bottom: 5px;
}
@media (min-width: 768px) and (max-width: 991px){#s-c0150057-ac3a-41cd-ba3b-7ad0be99d6d0 {
  
}
}@media (max-width: 767px){#s-c0150057-ac3a-41cd-ba3b-7ad0be99d6d0 {
  display: none;
}
#s-c0150057-ac3a-41cd-ba3b-7ad0be99d6d0, #wrap-s-c0150057-ac3a-41cd-ba3b-7ad0be99d6d0 { display: none !important; }}
#s-23bcd2b6-e197-487a-a583-13fb9a9a30a2 {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-23bcd2b6-e197-487a-a583-13fb9a9a30a2 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-23bcd2b6-e197-487a-a583-13fb9a9a30a2 .shg-sld-nav-button.shg-sld-left,
#s-23bcd2b6-e197-487a-a583-13fb9a9a30a2 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-2223a1b9-5a7a-4814-a7d9-f902c206d73d {
  text-align: center;
}








#s-2223a1b9-5a7a-4814-a7d9-f902c206d73d .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-185e005b-0794-40d2-b89c-e0fe5988f2eb {
  margin-top: 0px;
margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 991px){#s-185e005b-0794-40d2-b89c-e0fe5988f2eb {
  
}
}@media (max-width: 767px){#s-185e005b-0794-40d2-b89c-e0fe5988f2eb {
  display: none;
}
#s-185e005b-0794-40d2-b89c-e0fe5988f2eb, #wrap-s-185e005b-0794-40d2-b89c-e0fe5988f2eb { display: none !important; }}
#s-3c07e4f6-8dc2-424c-ba16-1cf59b558562 {
  text-align: center;
}








#s-3c07e4f6-8dc2-424c-ba16-1cf59b558562 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-f9b056a3-18e8-4b19-8b69-a13fa04ecc4f {
  margin-top: 0px;
margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 991px){#s-f9b056a3-18e8-4b19-8b69-a13fa04ecc4f {
  
}
}@media (max-width: 767px){#s-f9b056a3-18e8-4b19-8b69-a13fa04ecc4f {
  display: none;
}
#s-f9b056a3-18e8-4b19-8b69-a13fa04ecc4f, #wrap-s-f9b056a3-18e8-4b19-8b69-a13fa04ecc4f { display: none !important; }}
#s-201456c5-eb87-46d2-8255-4f881f3f1703 {
  text-align: center;
}







  #s-201456c5-eb87-46d2-8255-4f881f3f1703 img.shogun-image {
    

    
    
    
  }


#s-201456c5-eb87-46d2-8255-4f881f3f1703 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-fc6d2191-2d1d-4643-a4c2-2685d42d2f4f {
  margin-top: 0px;
margin-bottom: 5px;
}
@media (min-width: 768px) and (max-width: 991px){#s-fc6d2191-2d1d-4643-a4c2-2685d42d2f4f {
  
}
}@media (max-width: 767px){#s-fc6d2191-2d1d-4643-a4c2-2685d42d2f4f {
  display: none;
}
#s-fc6d2191-2d1d-4643-a4c2-2685d42d2f4f, #wrap-s-fc6d2191-2d1d-4643-a4c2-2685d42d2f4f { display: none !important; }}
#s-df1052e5-d944-489d-8ad2-60525f9d2c7e {
  text-align: center;
}







  #s-df1052e5-d944-489d-8ad2-60525f9d2c7e img.shogun-image {
    

    
    
    
  }


#s-df1052e5-d944-489d-8ad2-60525f9d2c7e .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-dd779f2f-83a1-4a98-9879-a480d1f6c3d3 {
  margin-top: 0px;
margin-bottom: 5px;
}
@media (min-width: 768px) and (max-width: 991px){#s-dd779f2f-83a1-4a98-9879-a480d1f6c3d3 {
  
}
}@media (max-width: 767px){#s-dd779f2f-83a1-4a98-9879-a480d1f6c3d3 {
  display: none;
}
#s-dd779f2f-83a1-4a98-9879-a480d1f6c3d3, #wrap-s-dd779f2f-83a1-4a98-9879-a480d1f6c3d3 { display: none !important; }}
#s-6292c569-90b5-4269-8a5e-8901ea7d0f6a {
  padding-top: 0px;
padding-bottom: 10px;
}

#s-6292c569-90b5-4269-8a5e-8901ea7d0f6a .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-6292c569-90b5-4269-8a5e-8901ea7d0f6a .shg-sld-nav-button.shg-sld-left,
#s-6292c569-90b5-4269-8a5e-8901ea7d0f6a .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-66c9e917-b759-44d9-ade2-a71a808711a4 {
  text-align: center;
}








#s-66c9e917-b759-44d9-ade2-a71a808711a4 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-1057ee2e-d8e1-41da-b22b-c2c30ec1249d {
  margin-top: 0px;
margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 991px){#s-1057ee2e-d8e1-41da-b22b-c2c30ec1249d {
  
}
}@media (max-width: 767px){#s-1057ee2e-d8e1-41da-b22b-c2c30ec1249d {
  display: none;
}
#s-1057ee2e-d8e1-41da-b22b-c2c30ec1249d, #wrap-s-1057ee2e-d8e1-41da-b22b-c2c30ec1249d { display: none !important; }}
#s-fab92fe5-fb52-4ce9-9c63-3eade30c7d31 {
  text-align: center;
}








#s-fab92fe5-fb52-4ce9-9c63-3eade30c7d31 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-9c0e1c74-3065-4669-a87f-59879c04f9d6 {
  margin-top: 0px;
margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 991px){#s-9c0e1c74-3065-4669-a87f-59879c04f9d6 {
  
}
}@media (max-width: 767px){#s-9c0e1c74-3065-4669-a87f-59879c04f9d6 {
  display: none;
}
#s-9c0e1c74-3065-4669-a87f-59879c04f9d6, #wrap-s-9c0e1c74-3065-4669-a87f-59879c04f9d6 { display: none !important; }}
#s-037cf3e9-cec1-4dc4-90cb-a692c72cfd53 {
  text-align: center;
}







  #s-037cf3e9-cec1-4dc4-90cb-a692c72cfd53 img.shogun-image {
    

    
    
    
  }


#s-037cf3e9-cec1-4dc4-90cb-a692c72cfd53 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-ab235c8b-5239-450e-9c55-a9d2d04af3f2 {
  margin-top: 0px;
margin-bottom: 10px;
padding-bottom: 1px;
}
@media (min-width: 768px) and (max-width: 991px){#s-ab235c8b-5239-450e-9c55-a9d2d04af3f2 {
  
}
}@media (max-width: 767px){#s-ab235c8b-5239-450e-9c55-a9d2d04af3f2 {
  display: none;
}
#s-ab235c8b-5239-450e-9c55-a9d2d04af3f2, #wrap-s-ab235c8b-5239-450e-9c55-a9d2d04af3f2 { display: none !important; }}
#s-fa64a128-d251-4963-bdbd-3e5fcfbd9ffa {
  text-align: center;
}







  #s-fa64a128-d251-4963-bdbd-3e5fcfbd9ffa img.shogun-image {
    

    
    
    
  }


#s-fa64a128-d251-4963-bdbd-3e5fcfbd9ffa .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-8d388d28-07c2-488c-b9be-24861a98f739 {
  margin-top: 0px;
margin-bottom: 10px;
padding-bottom: 1px;
}
@media (min-width: 768px) and (max-width: 991px){#s-8d388d28-07c2-488c-b9be-24861a98f739 {
  
}
}@media (max-width: 767px){#s-8d388d28-07c2-488c-b9be-24861a98f739 {
  display: none;
}
#s-8d388d28-07c2-488c-b9be-24861a98f739, #wrap-s-8d388d28-07c2-488c-b9be-24861a98f739 { display: none !important; }}
#s-3ef3deb6-2d2f-487a-b22b-c03bd87cb38c {
  text-align: center;
}







  #s-3ef3deb6-2d2f-487a-b22b-c03bd87cb38c img.shogun-image {
    

    
    
    
  }


#s-3ef3deb6-2d2f-487a-b22b-c03bd87cb38c .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-fdbb4d38-b67d-451b-9a94-f4a3a0fe5f3e {
  margin-top: 0px;
margin-bottom: 10px;
padding-bottom: 1px;
}
@media (min-width: 768px) and (max-width: 991px){#s-fdbb4d38-b67d-451b-9a94-f4a3a0fe5f3e {
  
}
}@media (max-width: 767px){#s-fdbb4d38-b67d-451b-9a94-f4a3a0fe5f3e {
  display: none;
}
#s-fdbb4d38-b67d-451b-9a94-f4a3a0fe5f3e, #wrap-s-fdbb4d38-b67d-451b-9a94-f4a3a0fe5f3e { display: none !important; }}
#s-5118643e-6d0f-47e5-a9ad-dbd797b92a8f {
  margin-left: 0%;
margin-right: 0%;
padding-top: 20px;
padding-left: 15%;
padding-bottom: 0px;
padding-right: 15%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-5118643e-6d0f-47e5-a9ad-dbd797b92a8f {
  display: none;
}
#s-5118643e-6d0f-47e5-a9ad-dbd797b92a8f, #wrap-s-5118643e-6d0f-47e5-a9ad-dbd797b92a8f { display: none !important; }}@media (max-width: 767px){#s-5118643e-6d0f-47e5-a9ad-dbd797b92a8f {
  display: none;
}
#s-5118643e-6d0f-47e5-a9ad-dbd797b92a8f, #wrap-s-5118643e-6d0f-47e5-a9ad-dbd797b92a8f { display: none !important; }}







#s-5118643e-6d0f-47e5-a9ad-dbd797b92a8f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5118643e-6d0f-47e5-a9ad-dbd797b92a8f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ae777df4-f72a-4ef4-bc6d-5e2df9b0cb2d {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 20px;
padding-bottom: 20px;
}
@media (min-width: 1200px){#s-ae777df4-f72a-4ef4-bc6d-5e2df9b0cb2d {
  display: none;
}
#s-ae777df4-f72a-4ef4-bc6d-5e2df9b0cb2d, #wrap-s-ae777df4-f72a-4ef4-bc6d-5e2df9b0cb2d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ae777df4-f72a-4ef4-bc6d-5e2df9b0cb2d {
  display: none;
}
#s-ae777df4-f72a-4ef4-bc6d-5e2df9b0cb2d, #wrap-s-ae777df4-f72a-4ef4-bc6d-5e2df9b0cb2d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ae777df4-f72a-4ef4-bc6d-5e2df9b0cb2d {
  
}
}@media (max-width: 767px){#s-ae777df4-f72a-4ef4-bc6d-5e2df9b0cb2d {
  display: none;
}
#s-ae777df4-f72a-4ef4-bc6d-5e2df9b0cb2d, #wrap-s-ae777df4-f72a-4ef4-bc6d-5e2df9b0cb2d { display: none !important; }}
#s-f291e222-4899-43c7-9ebc-fc4a25951593 {
  padding-top: 0px;
padding-bottom: 20px;
text-align: center;
}








.s-f291e222-4899-43c7-9ebc-fc4a25951593 .shogun-image-content {
  
    align-items: center;
  
}

.s-f291e222-4899-43c7-9ebc-fc4a25951593.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f291e222-4899-43c7-9ebc-fc4a25951593.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f291e222-4899-43c7-9ebc-fc4a25951593.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){






.s-f291e222-4899-43c7-9ebc-fc4a25951593 .shogun-image-content {
  
    align-items: center;
  
}

.s-f291e222-4899-43c7-9ebc-fc4a25951593.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f291e222-4899-43c7-9ebc-fc4a25951593.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f291e222-4899-43c7-9ebc-fc4a25951593.shogun-image {
  box-sizing: border-box;
}



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






.s-f291e222-4899-43c7-9ebc-fc4a25951593 .shogun-image-content {
  
    align-items: center;
  
}

.s-f291e222-4899-43c7-9ebc-fc4a25951593.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f291e222-4899-43c7-9ebc-fc4a25951593.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f291e222-4899-43c7-9ebc-fc4a25951593.shogun-image {
  box-sizing: border-box;
}



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






.s-f291e222-4899-43c7-9ebc-fc4a25951593 .shogun-image-content {
  
    align-items: center;
  
}

.s-f291e222-4899-43c7-9ebc-fc4a25951593.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f291e222-4899-43c7-9ebc-fc4a25951593.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f291e222-4899-43c7-9ebc-fc4a25951593.shogun-image {
  box-sizing: border-box;
}



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






.s-f291e222-4899-43c7-9ebc-fc4a25951593 .shogun-image-content {
  
    align-items: center;
  
}

.s-f291e222-4899-43c7-9ebc-fc4a25951593.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f291e222-4899-43c7-9ebc-fc4a25951593.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f291e222-4899-43c7-9ebc-fc4a25951593.shogun-image {
  box-sizing: border-box;
}



}
#s-9432c03c-82e9-4436-84d2-dd99bc7dcde3 {
  padding-top: 60px;
padding-left: 10%;
padding-right: 10%;
min-height: 50px;
}
@media (min-width: 1200px){#s-9432c03c-82e9-4436-84d2-dd99bc7dcde3 {
  display: none;
}
#s-9432c03c-82e9-4436-84d2-dd99bc7dcde3, #wrap-s-9432c03c-82e9-4436-84d2-dd99bc7dcde3 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9432c03c-82e9-4436-84d2-dd99bc7dcde3 {
  display: none;
}
#s-9432c03c-82e9-4436-84d2-dd99bc7dcde3, #wrap-s-9432c03c-82e9-4436-84d2-dd99bc7dcde3 { display: none !important; }}@media (max-width: 767px){#s-9432c03c-82e9-4436-84d2-dd99bc7dcde3 {
  display: none;
}
#s-9432c03c-82e9-4436-84d2-dd99bc7dcde3, #wrap-s-9432c03c-82e9-4436-84d2-dd99bc7dcde3 { display: none !important; }}







#s-9432c03c-82e9-4436-84d2-dd99bc7dcde3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9432c03c-82e9-4436-84d2-dd99bc7dcde3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bb94cf24-5f58-4f7c-88e9-a3a8ce740d47 {
  padding-top: 0px;
padding-bottom: 20px;
text-align: center;
}








.s-bb94cf24-5f58-4f7c-88e9-a3a8ce740d47 .shogun-image-content {
  
    align-items: center;
  
}

.s-bb94cf24-5f58-4f7c-88e9-a3a8ce740d47.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bb94cf24-5f58-4f7c-88e9-a3a8ce740d47.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bb94cf24-5f58-4f7c-88e9-a3a8ce740d47.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){






.s-bb94cf24-5f58-4f7c-88e9-a3a8ce740d47 .shogun-image-content {
  
    align-items: center;
  
}

.s-bb94cf24-5f58-4f7c-88e9-a3a8ce740d47.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bb94cf24-5f58-4f7c-88e9-a3a8ce740d47.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bb94cf24-5f58-4f7c-88e9-a3a8ce740d47.shogun-image {
  box-sizing: border-box;
}



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






.s-bb94cf24-5f58-4f7c-88e9-a3a8ce740d47 .shogun-image-content {
  
    align-items: center;
  
}

.s-bb94cf24-5f58-4f7c-88e9-a3a8ce740d47.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bb94cf24-5f58-4f7c-88e9-a3a8ce740d47.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bb94cf24-5f58-4f7c-88e9-a3a8ce740d47.shogun-image {
  box-sizing: border-box;
}



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






.s-bb94cf24-5f58-4f7c-88e9-a3a8ce740d47 .shogun-image-content {
  
    align-items: center;
  
}

.s-bb94cf24-5f58-4f7c-88e9-a3a8ce740d47.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bb94cf24-5f58-4f7c-88e9-a3a8ce740d47.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bb94cf24-5f58-4f7c-88e9-a3a8ce740d47.shogun-image {
  box-sizing: border-box;
}



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






.s-bb94cf24-5f58-4f7c-88e9-a3a8ce740d47 .shogun-image-content {
  
    align-items: center;
  
}

.s-bb94cf24-5f58-4f7c-88e9-a3a8ce740d47.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bb94cf24-5f58-4f7c-88e9-a3a8ce740d47.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bb94cf24-5f58-4f7c-88e9-a3a8ce740d47.shogun-image {
  box-sizing: border-box;
}



}
#s-870aac87-3a05-4c08-ac6c-3dd3b784cc5c {
  padding-top: 0px;
padding-left: 0px;
padding-bottom: 80px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-870aac87-3a05-4c08-ac6c-3dd3b784cc5c"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 768px) {
[id="s-870aac87-3a05-4c08-ac6c-3dd3b784cc5c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-870aac87-3a05-4c08-ac6c-3dd3b784cc5c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-870aac87-3a05-4c08-ac6c-3dd3b784cc5c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 7.5px);
}

}

#s-42b4032f-9da6-4298-a8d5-5c4708655849 {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-42b4032f-9da6-4298-a8d5-5c4708655849 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-42b4032f-9da6-4298-a8d5-5c4708655849 .shg-sld-nav-button.shg-sld-left,
#s-42b4032f-9da6-4298-a8d5-5c4708655849 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-a055e64e-87ce-4f36-913d-97c78e51f371 {
  text-align: center;
}







  #s-a055e64e-87ce-4f36-913d-97c78e51f371 img.shogun-image {
    

    
    
    
  }


#s-a055e64e-87ce-4f36-913d-97c78e51f371 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-07a0c9e0-f670-4613-87ea-7dc1d75d4d3e {
  margin-top: 0px;
margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 991px){#s-07a0c9e0-f670-4613-87ea-7dc1d75d4d3e {
  
}
}@media (max-width: 767px){#s-07a0c9e0-f670-4613-87ea-7dc1d75d4d3e {
  display: none;
}
#s-07a0c9e0-f670-4613-87ea-7dc1d75d4d3e, #wrap-s-07a0c9e0-f670-4613-87ea-7dc1d75d4d3e { display: none !important; }}
#s-d9c84507-829b-4b3d-9aa4-64c01ada081c {
  text-align: center;
}








#s-d9c84507-829b-4b3d-9aa4-64c01ada081c .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-b962ef0e-f4ef-4116-8fb4-28a76a05c710 {
  margin-top: 0px;
margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 991px){#s-b962ef0e-f4ef-4116-8fb4-28a76a05c710 {
  
}
}@media (max-width: 767px){#s-b962ef0e-f4ef-4116-8fb4-28a76a05c710 {
  display: none;
}
#s-b962ef0e-f4ef-4116-8fb4-28a76a05c710, #wrap-s-b962ef0e-f4ef-4116-8fb4-28a76a05c710 { display: none !important; }}
#s-aabb6545-0ec3-49a9-82fe-732ee68644cf {
  text-align: center;
}







  #s-aabb6545-0ec3-49a9-82fe-732ee68644cf img.shogun-image {
    

    
    
    
  }


#s-aabb6545-0ec3-49a9-82fe-732ee68644cf .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-9984edc5-b542-4ee7-97ef-61c87d41d22e {
  margin-top: 0px;
margin-bottom: 5px;
}
@media (min-width: 768px) and (max-width: 991px){#s-9984edc5-b542-4ee7-97ef-61c87d41d22e {
  
}
}@media (max-width: 767px){#s-9984edc5-b542-4ee7-97ef-61c87d41d22e {
  display: none;
}
#s-9984edc5-b542-4ee7-97ef-61c87d41d22e, #wrap-s-9984edc5-b542-4ee7-97ef-61c87d41d22e { display: none !important; }}
#s-bd324c01-4161-4b45-8b72-7b030a92453f {
  text-align: center;
}







  #s-bd324c01-4161-4b45-8b72-7b030a92453f img.shogun-image {
    

    
    
    
  }


#s-bd324c01-4161-4b45-8b72-7b030a92453f .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-702ce441-2083-4b87-bb26-3d21f190dd3a {
  margin-top: 0px;
margin-bottom: 5px;
}
@media (min-width: 768px) and (max-width: 991px){#s-702ce441-2083-4b87-bb26-3d21f190dd3a {
  
}
}@media (max-width: 767px){#s-702ce441-2083-4b87-bb26-3d21f190dd3a {
  display: none;
}
#s-702ce441-2083-4b87-bb26-3d21f190dd3a, #wrap-s-702ce441-2083-4b87-bb26-3d21f190dd3a { display: none !important; }}
#s-f0ef4b5e-ff24-4133-8f26-9628c13a9812 {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-f0ef4b5e-ff24-4133-8f26-9628c13a9812 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-f0ef4b5e-ff24-4133-8f26-9628c13a9812 .shg-sld-nav-button.shg-sld-left,
#s-f0ef4b5e-ff24-4133-8f26-9628c13a9812 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-b13de104-d853-4e93-ba84-483e018c5a02 {
  text-align: center;
}








#s-b13de104-d853-4e93-ba84-483e018c5a02 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-75925018-6dde-48a6-a1ae-a4aa97244004 {
  margin-top: 0px;
margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 991px){#s-75925018-6dde-48a6-a1ae-a4aa97244004 {
  
}
}@media (max-width: 767px){#s-75925018-6dde-48a6-a1ae-a4aa97244004 {
  display: none;
}
#s-75925018-6dde-48a6-a1ae-a4aa97244004, #wrap-s-75925018-6dde-48a6-a1ae-a4aa97244004 { display: none !important; }}
#s-5e9e566b-aecd-4db4-8c32-88c105520327 {
  text-align: center;
}








#s-5e9e566b-aecd-4db4-8c32-88c105520327 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-f2f0de61-267c-42c6-9528-495bb3c45648 {
  margin-top: 0px;
margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 991px){#s-f2f0de61-267c-42c6-9528-495bb3c45648 {
  
}
}@media (max-width: 767px){#s-f2f0de61-267c-42c6-9528-495bb3c45648 {
  display: none;
}
#s-f2f0de61-267c-42c6-9528-495bb3c45648, #wrap-s-f2f0de61-267c-42c6-9528-495bb3c45648 { display: none !important; }}
#s-1845252d-1658-4157-bd4f-0e014c53a1b0 {
  text-align: center;
}







  #s-1845252d-1658-4157-bd4f-0e014c53a1b0 img.shogun-image {
    

    
    
    
  }


#s-1845252d-1658-4157-bd4f-0e014c53a1b0 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-555df5fb-8e78-450d-9f11-a8cc89fbce45 {
  margin-top: 0px;
margin-bottom: 5px;
}
@media (min-width: 768px) and (max-width: 991px){#s-555df5fb-8e78-450d-9f11-a8cc89fbce45 {
  
}
}@media (max-width: 767px){#s-555df5fb-8e78-450d-9f11-a8cc89fbce45 {
  display: none;
}
#s-555df5fb-8e78-450d-9f11-a8cc89fbce45, #wrap-s-555df5fb-8e78-450d-9f11-a8cc89fbce45 { display: none !important; }}
#s-5171470b-b1cb-4b97-95af-b3b0dba34898 {
  text-align: center;
}







  #s-5171470b-b1cb-4b97-95af-b3b0dba34898 img.shogun-image {
    

    
    
    
  }


#s-5171470b-b1cb-4b97-95af-b3b0dba34898 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-15c6b801-e337-4897-b097-19fb4b191712 {
  margin-top: 0px;
margin-bottom: 5px;
}
@media (min-width: 768px) and (max-width: 991px){#s-15c6b801-e337-4897-b097-19fb4b191712 {
  
}
}@media (max-width: 767px){#s-15c6b801-e337-4897-b097-19fb4b191712 {
  display: none;
}
#s-15c6b801-e337-4897-b097-19fb4b191712, #wrap-s-15c6b801-e337-4897-b097-19fb4b191712 { display: none !important; }}
#s-7e06403a-6cb0-4df8-adc2-c11bb4bc36f2 {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-7e06403a-6cb0-4df8-adc2-c11bb4bc36f2 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-7e06403a-6cb0-4df8-adc2-c11bb4bc36f2 .shg-sld-nav-button.shg-sld-left,
#s-7e06403a-6cb0-4df8-adc2-c11bb4bc36f2 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-2d8eddc9-3a9e-44cd-ba5c-780adc4f2473 {
  text-align: center;
}







  #s-2d8eddc9-3a9e-44cd-ba5c-780adc4f2473 img.shogun-image {
    

    
    
    
  }


#s-2d8eddc9-3a9e-44cd-ba5c-780adc4f2473 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-ab3291a5-ad18-4bc6-a242-dbd012f90585 {
  margin-top: 0px;
margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 991px){#s-ab3291a5-ad18-4bc6-a242-dbd012f90585 {
  
}
}@media (max-width: 767px){#s-ab3291a5-ad18-4bc6-a242-dbd012f90585 {
  display: none;
}
#s-ab3291a5-ad18-4bc6-a242-dbd012f90585, #wrap-s-ab3291a5-ad18-4bc6-a242-dbd012f90585 { display: none !important; }}
#s-724bd771-987c-4e1f-b2f3-cddc4ab024ea {
  text-align: center;
}








#s-724bd771-987c-4e1f-b2f3-cddc4ab024ea .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-7cd1a768-705b-4057-840d-4906cf290e77 {
  margin-top: 0px;
margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 991px){#s-7cd1a768-705b-4057-840d-4906cf290e77 {
  
}
}@media (max-width: 767px){#s-7cd1a768-705b-4057-840d-4906cf290e77 {
  display: none;
}
#s-7cd1a768-705b-4057-840d-4906cf290e77, #wrap-s-7cd1a768-705b-4057-840d-4906cf290e77 { display: none !important; }}
#s-80710140-aace-441e-96fd-1c9f81db3f5a {
  text-align: center;
}







  #s-80710140-aace-441e-96fd-1c9f81db3f5a img.shogun-image {
    

    
    
    
  }


#s-80710140-aace-441e-96fd-1c9f81db3f5a .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-1cb5e6ee-fee1-4bea-b030-0a87137ad019 {
  margin-top: 0px;
margin-bottom: 5px;
}
@media (min-width: 768px) and (max-width: 991px){#s-1cb5e6ee-fee1-4bea-b030-0a87137ad019 {
  
}
}@media (max-width: 767px){#s-1cb5e6ee-fee1-4bea-b030-0a87137ad019 {
  display: none;
}
#s-1cb5e6ee-fee1-4bea-b030-0a87137ad019, #wrap-s-1cb5e6ee-fee1-4bea-b030-0a87137ad019 { display: none !important; }}
#s-6e764129-e852-418e-bfa7-7549451f4112 {
  text-align: center;
}







  #s-6e764129-e852-418e-bfa7-7549451f4112 img.shogun-image {
    

    
    
    
  }


#s-6e764129-e852-418e-bfa7-7549451f4112 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-20516f96-b251-4143-a554-731c2dbdcf4f {
  margin-top: 0px;
margin-bottom: 5px;
}
@media (min-width: 768px) and (max-width: 991px){#s-20516f96-b251-4143-a554-731c2dbdcf4f {
  
}
}@media (max-width: 767px){#s-20516f96-b251-4143-a554-731c2dbdcf4f {
  display: none;
}
#s-20516f96-b251-4143-a554-731c2dbdcf4f, #wrap-s-20516f96-b251-4143-a554-731c2dbdcf4f { display: none !important; }}
#s-20869956-8ccd-459b-9dd8-a9ffb7c8bfa6 {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-20869956-8ccd-459b-9dd8-a9ffb7c8bfa6 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-20869956-8ccd-459b-9dd8-a9ffb7c8bfa6 .shg-sld-nav-button.shg-sld-left,
#s-20869956-8ccd-459b-9dd8-a9ffb7c8bfa6 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-97eb6f3f-a40d-41bf-b40d-41c1330d3136 {
  text-align: center;
}








#s-97eb6f3f-a40d-41bf-b40d-41c1330d3136 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-a0bf581d-ca74-4cce-ad2f-a3902d335be9 {
  margin-top: 0px;
margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 991px){#s-a0bf581d-ca74-4cce-ad2f-a3902d335be9 {
  
}
}@media (max-width: 767px){#s-a0bf581d-ca74-4cce-ad2f-a3902d335be9 {
  display: none;
}
#s-a0bf581d-ca74-4cce-ad2f-a3902d335be9, #wrap-s-a0bf581d-ca74-4cce-ad2f-a3902d335be9 { display: none !important; }}
#s-cc7dbad6-2c6e-4249-b093-0298db01a141 {
  text-align: center;
}








#s-cc7dbad6-2c6e-4249-b093-0298db01a141 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-885fccfa-ede4-409b-b621-d53596d9cded {
  margin-top: 0px;
margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 991px){#s-885fccfa-ede4-409b-b621-d53596d9cded {
  
}
}@media (max-width: 767px){#s-885fccfa-ede4-409b-b621-d53596d9cded {
  display: none;
}
#s-885fccfa-ede4-409b-b621-d53596d9cded, #wrap-s-885fccfa-ede4-409b-b621-d53596d9cded { display: none !important; }}
#s-7c08fb2e-042e-4be7-80b9-1f016c653e58 {
  text-align: center;
}







  #s-7c08fb2e-042e-4be7-80b9-1f016c653e58 img.shogun-image {
    

    
    
    
  }


#s-7c08fb2e-042e-4be7-80b9-1f016c653e58 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-bc9e1845-f2ad-433b-8697-7ced819f440e {
  margin-top: 0px;
margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 991px){#s-bc9e1845-f2ad-433b-8697-7ced819f440e {
  
}
}@media (max-width: 767px){#s-bc9e1845-f2ad-433b-8697-7ced819f440e {
  display: none;
}
#s-bc9e1845-f2ad-433b-8697-7ced819f440e, #wrap-s-bc9e1845-f2ad-433b-8697-7ced819f440e { display: none !important; }}
#s-d642c9bc-1c8e-408a-b735-3394af6b54ae {
  text-align: center;
}







  #s-d642c9bc-1c8e-408a-b735-3394af6b54ae img.shogun-image {
    

    
    
    
  }


#s-d642c9bc-1c8e-408a-b735-3394af6b54ae .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-19e297af-7ca8-4961-91eb-04a1a482babb {
  margin-top: 0px;
margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 991px){#s-19e297af-7ca8-4961-91eb-04a1a482babb {
  
}
}@media (max-width: 767px){#s-19e297af-7ca8-4961-91eb-04a1a482babb {
  display: none;
}
#s-19e297af-7ca8-4961-91eb-04a1a482babb, #wrap-s-19e297af-7ca8-4961-91eb-04a1a482babb { display: none !important; }}
#s-174f2fd9-0f76-44a0-ab3c-a69705e70c8a {
  text-align: center;
}







  #s-174f2fd9-0f76-44a0-ab3c-a69705e70c8a img.shogun-image {
    

    
    
    
  }


#s-174f2fd9-0f76-44a0-ab3c-a69705e70c8a .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-feed7993-5416-4ee2-baba-28c9f47b4902 {
  margin-top: 0px;
margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 991px){#s-feed7993-5416-4ee2-baba-28c9f47b4902 {
  
}
}@media (max-width: 767px){#s-feed7993-5416-4ee2-baba-28c9f47b4902 {
  display: none;
}
#s-feed7993-5416-4ee2-baba-28c9f47b4902, #wrap-s-feed7993-5416-4ee2-baba-28c9f47b4902 { display: none !important; }}
#s-261a106e-1972-41a5-a89d-03950a27231e {
  text-align: center;
}







  #s-261a106e-1972-41a5-a89d-03950a27231e img.shogun-image {
    

    
    
    
  }


#s-261a106e-1972-41a5-a89d-03950a27231e .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-a664e646-1431-49d7-9f95-70f088a174e4 {
  margin-top: 0px;
margin-bottom: 5px;
}
@media (min-width: 768px) and (max-width: 991px){#s-a664e646-1431-49d7-9f95-70f088a174e4 {
  
}
}@media (max-width: 767px){#s-a664e646-1431-49d7-9f95-70f088a174e4 {
  display: none;
}
#s-a664e646-1431-49d7-9f95-70f088a174e4, #wrap-s-a664e646-1431-49d7-9f95-70f088a174e4 { display: none !important; }}
#s-26838ec4-d0a7-4c78-9ae8-ed98b616f55c {
  text-align: center;
}







  #s-26838ec4-d0a7-4c78-9ae8-ed98b616f55c img.shogun-image {
    

    
    
    
  }


#s-26838ec4-d0a7-4c78-9ae8-ed98b616f55c .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-9ee21d12-fb6f-4804-bef8-48625b5f96c8 {
  margin-top: 0px;
margin-bottom: 5px;
}
@media (min-width: 768px) and (max-width: 991px){#s-9ee21d12-fb6f-4804-bef8-48625b5f96c8 {
  
}
}@media (max-width: 767px){#s-9ee21d12-fb6f-4804-bef8-48625b5f96c8 {
  display: none;
}
#s-9ee21d12-fb6f-4804-bef8-48625b5f96c8, #wrap-s-9ee21d12-fb6f-4804-bef8-48625b5f96c8 { display: none !important; }}
#s-c871463b-f3fb-4830-9636-8c55d866a660 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 80px;
padding-right: 0%;
min-height: 50px;
}
@media (min-width: 1200px){#s-c871463b-f3fb-4830-9636-8c55d866a660 {
  display: none;
}
#s-c871463b-f3fb-4830-9636-8c55d866a660, #wrap-s-c871463b-f3fb-4830-9636-8c55d866a660 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c871463b-f3fb-4830-9636-8c55d866a660 {
  display: none;
}
#s-c871463b-f3fb-4830-9636-8c55d866a660, #wrap-s-c871463b-f3fb-4830-9636-8c55d866a660 { display: none !important; }}@media (max-width: 767px){#s-c871463b-f3fb-4830-9636-8c55d866a660 {
  display: none;
}
#s-c871463b-f3fb-4830-9636-8c55d866a660, #wrap-s-c871463b-f3fb-4830-9636-8c55d866a660 { display: none !important; }}







#s-c871463b-f3fb-4830-9636-8c55d866a660 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c871463b-f3fb-4830-9636-8c55d866a660.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-959cc31e-19f6-4dfb-a3ec-760c0943b24d {
  padding-top: 0px;
padding-left: 10%;
padding-bottom: 20px;
padding-right: 10%;
text-align: center;
}
@media (min-width: 1200px){#s-959cc31e-19f6-4dfb-a3ec-760c0943b24d {
  display: none;
}
#s-959cc31e-19f6-4dfb-a3ec-760c0943b24d, #wrap-s-959cc31e-19f6-4dfb-a3ec-760c0943b24d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-959cc31e-19f6-4dfb-a3ec-760c0943b24d {
  display: none;
}
#s-959cc31e-19f6-4dfb-a3ec-760c0943b24d, #wrap-s-959cc31e-19f6-4dfb-a3ec-760c0943b24d { display: none !important; }}@media (max-width: 767px){#s-959cc31e-19f6-4dfb-a3ec-760c0943b24d {
  display: none;
}
#s-959cc31e-19f6-4dfb-a3ec-760c0943b24d, #wrap-s-959cc31e-19f6-4dfb-a3ec-760c0943b24d { display: none !important; }}







.s-959cc31e-19f6-4dfb-a3ec-760c0943b24d .shogun-image-content {
  
    align-items: center;
  
}

.s-959cc31e-19f6-4dfb-a3ec-760c0943b24d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-959cc31e-19f6-4dfb-a3ec-760c0943b24d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-959cc31e-19f6-4dfb-a3ec-760c0943b24d.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){






.s-959cc31e-19f6-4dfb-a3ec-760c0943b24d .shogun-image-content {
  
    align-items: center;
  
}

.s-959cc31e-19f6-4dfb-a3ec-760c0943b24d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-959cc31e-19f6-4dfb-a3ec-760c0943b24d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-959cc31e-19f6-4dfb-a3ec-760c0943b24d.shogun-image {
  box-sizing: border-box;
}



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






.s-959cc31e-19f6-4dfb-a3ec-760c0943b24d .shogun-image-content {
  
    align-items: center;
  
}

.s-959cc31e-19f6-4dfb-a3ec-760c0943b24d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-959cc31e-19f6-4dfb-a3ec-760c0943b24d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-959cc31e-19f6-4dfb-a3ec-760c0943b24d.shogun-image {
  box-sizing: border-box;
}



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






.s-959cc31e-19f6-4dfb-a3ec-760c0943b24d .shogun-image-content {
  
    align-items: center;
  
}

.s-959cc31e-19f6-4dfb-a3ec-760c0943b24d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-959cc31e-19f6-4dfb-a3ec-760c0943b24d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-959cc31e-19f6-4dfb-a3ec-760c0943b24d.shogun-image {
  box-sizing: border-box;
}



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






.s-959cc31e-19f6-4dfb-a3ec-760c0943b24d .shogun-image-content {
  
    align-items: center;
  
}

.s-959cc31e-19f6-4dfb-a3ec-760c0943b24d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-959cc31e-19f6-4dfb-a3ec-760c0943b24d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-959cc31e-19f6-4dfb-a3ec-760c0943b24d.shogun-image {
  box-sizing: border-box;
}



}
@media (min-width: 0px) {
[id="s-7ec12e91-3c3e-4313-b104-7aa25b82d735"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-7ec12e91-3c3e-4313-b104-7aa25b82d735"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 10.0px);
}

[id="s-7ec12e91-3c3e-4313-b104-7aa25b82d735"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-7ec12e91-3c3e-4313-b104-7aa25b82d735"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 10.0px);
}

[id="s-7ec12e91-3c3e-4313-b104-7aa25b82d735"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-7ec12e91-3c3e-4313-b104-7aa25b82d735"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 10.0px);
}

[id="s-7ec12e91-3c3e-4313-b104-7aa25b82d735"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 10.0px);
}

}

#s-8e930de6-d05f-4ae6-9766-7ee4ed6d9d9b {
  min-height: 50px;
}








#s-8e930de6-d05f-4ae6-9766-7ee4ed6d9d9b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8e930de6-d05f-4ae6-9766-7ee4ed6d9d9b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5f90bb6b-7e42-4be8-855f-bec2ae5a3587 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 5px;
}
@media (min-width: 768px) and (max-width: 991px){#s-5f90bb6b-7e42-4be8-855f-bec2ae5a3587 {
  
}
}@media (max-width: 767px){#s-5f90bb6b-7e42-4be8-855f-bec2ae5a3587 {
  display: none;
}
#s-5f90bb6b-7e42-4be8-855f-bec2ae5a3587, #wrap-s-5f90bb6b-7e42-4be8-855f-bec2ae5a3587 { display: none !important; }}
#s-73b33cee-f5eb-4a00-b73d-293d72447363 {
  min-height: 50px;
}








#s-73b33cee-f5eb-4a00-b73d-293d72447363 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-73b33cee-f5eb-4a00-b73d-293d72447363.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-c75d1a4f-6263-471d-a392-c1ab9e4ab1ab {
  padding-top: 0px;
padding-bottom: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-c75d1a4f-6263-471d-a392-c1ab9e4ab1ab {
  
}
}@media (max-width: 767px){#s-c75d1a4f-6263-471d-a392-c1ab9e4ab1ab {
  display: none;
}
#s-c75d1a4f-6263-471d-a392-c1ab9e4ab1ab, #wrap-s-c75d1a4f-6263-471d-a392-c1ab9e4ab1ab { display: none !important; }}
#s-c75d1a4f-6263-471d-a392-c1ab9e4ab1ab .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-c75d1a4f-6263-471d-a392-c1ab9e4ab1ab .shg-sld-nav-button.shg-sld-left,
#s-c75d1a4f-6263-471d-a392-c1ab9e4ab1ab .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-d43db867-3815-4197-9c57-4815247e8ae8 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
max-width: 624px;
aspect-ratio: 624/1080;
text-align: center;
}





  #s-d43db867-3815-4197-9c57-4815247e8ae8 img.shogun-image,
  #s-d43db867-3815-4197-9c57-4815247e8ae8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d43db867-3815-4197-9c57-4815247e8ae8 {
    width: 100%;
    height: auto;
  }




#s-d43db867-3815-4197-9c57-4815247e8ae8 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-ded31650-d089-4386-ac8f-25754860c0ec {
  padding-bottom: 50px;
text-align: center;
}







  #s-ded31650-d089-4386-ac8f-25754860c0ec img.shogun-image {
    

    
    
    
  }


#s-ded31650-d089-4386-ac8f-25754860c0ec .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-98d82b16-7c31-43ad-98fd-7537cc909379 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}








#s-98d82b16-7c31-43ad-98fd-7537cc909379 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-788cc997-1e08-4110-9cea-8285fa8bcfda {
  padding-bottom: 50px;
text-align: center;
}







  #s-788cc997-1e08-4110-9cea-8285fa8bcfda img.shogun-image {
    

    
    
    
  }


#s-788cc997-1e08-4110-9cea-8285fa8bcfda .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-2acca109-4e08-4951-a367-065b709f7f49 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 5px;
}
@media (min-width: 768px) and (max-width: 991px){#s-2acca109-4e08-4951-a367-065b709f7f49 {
  
}
}@media (max-width: 767px){#s-2acca109-4e08-4951-a367-065b709f7f49 {
  display: none;
}
#s-2acca109-4e08-4951-a367-065b709f7f49, #wrap-s-2acca109-4e08-4951-a367-065b709f7f49 { display: none !important; }}
#s-b30613a6-9d0c-4bb2-beb4-42f3f2dbba1c {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-left: 10%;
padding-bottom: 10px;
padding-right: 10%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-b30613a6-9d0c-4bb2-beb4-42f3f2dbba1c {
  display: none;
}
#s-b30613a6-9d0c-4bb2-beb4-42f3f2dbba1c, #wrap-s-b30613a6-9d0c-4bb2-beb4-42f3f2dbba1c { display: none !important; }}@media (max-width: 767px){#s-b30613a6-9d0c-4bb2-beb4-42f3f2dbba1c {
  display: none;
}
#s-b30613a6-9d0c-4bb2-beb4-42f3f2dbba1c, #wrap-s-b30613a6-9d0c-4bb2-beb4-42f3f2dbba1c { display: none !important; }}







#s-b30613a6-9d0c-4bb2-beb4-42f3f2dbba1c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b30613a6-9d0c-4bb2-beb4-42f3f2dbba1c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-83a302df-4151-4f9c-a04b-43670ab92791 {
  padding-top: 0px;
padding-left: 0%;
padding-bottom: 20px;
padding-right: 0%;
text-align: center;
}
@media (min-width: 1200px){#s-83a302df-4151-4f9c-a04b-43670ab92791 {
  display: none;
}
#s-83a302df-4151-4f9c-a04b-43670ab92791, #wrap-s-83a302df-4151-4f9c-a04b-43670ab92791 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-83a302df-4151-4f9c-a04b-43670ab92791 {
  display: none;
}
#s-83a302df-4151-4f9c-a04b-43670ab92791, #wrap-s-83a302df-4151-4f9c-a04b-43670ab92791 { display: none !important; }}@media (max-width: 767px){#s-83a302df-4151-4f9c-a04b-43670ab92791 {
  display: none;
}
#s-83a302df-4151-4f9c-a04b-43670ab92791, #wrap-s-83a302df-4151-4f9c-a04b-43670ab92791 { display: none !important; }}






  img.s-83a302df-4151-4f9c-a04b-43670ab92791.shogun-image {
    
    
  }


.s-83a302df-4151-4f9c-a04b-43670ab92791 .shogun-image-content {
  
    align-items: center;
  
}

.s-83a302df-4151-4f9c-a04b-43670ab92791.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83a302df-4151-4f9c-a04b-43670ab92791.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83a302df-4151-4f9c-a04b-43670ab92791.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-83a302df-4151-4f9c-a04b-43670ab92791.shogun-image {
    
    
  }


.s-83a302df-4151-4f9c-a04b-43670ab92791 .shogun-image-content {
  
    align-items: center;
  
}

.s-83a302df-4151-4f9c-a04b-43670ab92791.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83a302df-4151-4f9c-a04b-43670ab92791.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83a302df-4151-4f9c-a04b-43670ab92791.shogun-image {
  box-sizing: border-box;
}



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





  img.s-83a302df-4151-4f9c-a04b-43670ab92791.shogun-image {
    
    
  }


.s-83a302df-4151-4f9c-a04b-43670ab92791 .shogun-image-content {
  
    align-items: center;
  
}

.s-83a302df-4151-4f9c-a04b-43670ab92791.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83a302df-4151-4f9c-a04b-43670ab92791.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83a302df-4151-4f9c-a04b-43670ab92791.shogun-image {
  box-sizing: border-box;
}



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





  img.s-83a302df-4151-4f9c-a04b-43670ab92791.shogun-image {
    
    
  }


.s-83a302df-4151-4f9c-a04b-43670ab92791 .shogun-image-content {
  
    align-items: center;
  
}

.s-83a302df-4151-4f9c-a04b-43670ab92791.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83a302df-4151-4f9c-a04b-43670ab92791.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83a302df-4151-4f9c-a04b-43670ab92791.shogun-image {
  box-sizing: border-box;
}



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





  img.s-83a302df-4151-4f9c-a04b-43670ab92791.shogun-image {
    
    
  }


.s-83a302df-4151-4f9c-a04b-43670ab92791 .shogun-image-content {
  
    align-items: center;
  
}

.s-83a302df-4151-4f9c-a04b-43670ab92791.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83a302df-4151-4f9c-a04b-43670ab92791.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83a302df-4151-4f9c-a04b-43670ab92791.shogun-image {
  box-sizing: border-box;
}



}
@media (min-width: 0px) {
[id="s-5309b6b9-f020-452c-856a-d360436717c1"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-5309b6b9-f020-452c-856a-d360436717c1"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 10.0px);
}

[id="s-5309b6b9-f020-452c-856a-d360436717c1"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-5309b6b9-f020-452c-856a-d360436717c1"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 10.0px);
}

[id="s-5309b6b9-f020-452c-856a-d360436717c1"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-5309b6b9-f020-452c-856a-d360436717c1"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 10.0px);
}

[id="s-5309b6b9-f020-452c-856a-d360436717c1"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 10.0px);
}

}

#s-6d1b67ce-2081-40c1-a7cd-e146ed40681c {
  min-height: 50px;
}








#s-6d1b67ce-2081-40c1-a7cd-e146ed40681c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6d1b67ce-2081-40c1-a7cd-e146ed40681c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-db6b067e-01f8-48d8-9505-a0769c9c30ac {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 5px;
}
@media (min-width: 768px) and (max-width: 991px){#s-db6b067e-01f8-48d8-9505-a0769c9c30ac {
  
}
}@media (max-width: 767px){#s-db6b067e-01f8-48d8-9505-a0769c9c30ac {
  display: none;
}
#s-db6b067e-01f8-48d8-9505-a0769c9c30ac, #wrap-s-db6b067e-01f8-48d8-9505-a0769c9c30ac { display: none !important; }}
#s-af8a0233-cd0a-4f1c-8475-a39bb452560c {
  min-height: 50px;
}








#s-af8a0233-cd0a-4f1c-8475-a39bb452560c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-af8a0233-cd0a-4f1c-8475-a39bb452560c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a82bb651-7564-415e-a833-9ba8d3f9f3f4 {
  padding-top: 0px;
padding-bottom: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-a82bb651-7564-415e-a833-9ba8d3f9f3f4 {
  
}
}@media (max-width: 767px){#s-a82bb651-7564-415e-a833-9ba8d3f9f3f4 {
  display: none;
}
#s-a82bb651-7564-415e-a833-9ba8d3f9f3f4, #wrap-s-a82bb651-7564-415e-a833-9ba8d3f9f3f4 { display: none !important; }}
#s-a82bb651-7564-415e-a833-9ba8d3f9f3f4 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-a82bb651-7564-415e-a833-9ba8d3f9f3f4 .shg-sld-nav-button.shg-sld-left,
#s-a82bb651-7564-415e-a833-9ba8d3f9f3f4 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-902841dd-6d26-487b-8141-4c22d43c2206 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}








#s-902841dd-6d26-487b-8141-4c22d43c2206 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-efcaad30-f3d4-4370-ac69-797f2ff07508 {
  padding-bottom: 50px;
text-align: center;
}







  #s-efcaad30-f3d4-4370-ac69-797f2ff07508 img.shogun-image {
    

    
    
    
  }


#s-efcaad30-f3d4-4370-ac69-797f2ff07508 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-85bcbb75-85c6-441f-a907-ed7fd5256667 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}








#s-85bcbb75-85c6-441f-a907-ed7fd5256667 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-46b18367-19f4-4632-8c58-871e9ee67f08 {
  padding-bottom: 50px;
text-align: center;
}







  #s-46b18367-19f4-4632-8c58-871e9ee67f08 img.shogun-image {
    

    
    
    
  }


#s-46b18367-19f4-4632-8c58-871e9ee67f08 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-479f21e8-4129-46dc-98b0-74047415fc75 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 5px;
}
@media (min-width: 768px) and (max-width: 991px){#s-479f21e8-4129-46dc-98b0-74047415fc75 {
  
}
}@media (max-width: 767px){#s-479f21e8-4129-46dc-98b0-74047415fc75 {
  display: none;
}
#s-479f21e8-4129-46dc-98b0-74047415fc75, #wrap-s-479f21e8-4129-46dc-98b0-74047415fc75 { display: none !important; }}
#s-82141861-1451-4b9b-9c08-34c918c36e7c {
  margin-left: 0%;
margin-right: 0%;
padding-top: 80px;
padding-left: 15%;
padding-bottom: 0px;
padding-right: 15%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-82141861-1451-4b9b-9c08-34c918c36e7c {
  display: none;
}
#s-82141861-1451-4b9b-9c08-34c918c36e7c, #wrap-s-82141861-1451-4b9b-9c08-34c918c36e7c { display: none !important; }}@media (max-width: 767px){#s-82141861-1451-4b9b-9c08-34c918c36e7c {
  display: none;
}
#s-82141861-1451-4b9b-9c08-34c918c36e7c, #wrap-s-82141861-1451-4b9b-9c08-34c918c36e7c { display: none !important; }}







#s-82141861-1451-4b9b-9c08-34c918c36e7c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-82141861-1451-4b9b-9c08-34c918c36e7c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6588a73a-7a71-400f-a9d0-5f28c828a20c {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 20px;
padding-bottom: 20px;
}
@media (min-width: 1200px){#s-6588a73a-7a71-400f-a9d0-5f28c828a20c {
  display: none;
}
#s-6588a73a-7a71-400f-a9d0-5f28c828a20c, #wrap-s-6588a73a-7a71-400f-a9d0-5f28c828a20c { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6588a73a-7a71-400f-a9d0-5f28c828a20c {
  display: none;
}
#s-6588a73a-7a71-400f-a9d0-5f28c828a20c, #wrap-s-6588a73a-7a71-400f-a9d0-5f28c828a20c { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-6588a73a-7a71-400f-a9d0-5f28c828a20c {
  
}
}@media (max-width: 767px){#s-6588a73a-7a71-400f-a9d0-5f28c828a20c {
  display: none;
}
#s-6588a73a-7a71-400f-a9d0-5f28c828a20c, #wrap-s-6588a73a-7a71-400f-a9d0-5f28c828a20c { display: none !important; }}
#s-3de7eab9-7482-40e5-b737-3a452fa3abbf {
  padding-top: 0px;
padding-bottom: 20px;
text-align: center;
}








.s-3de7eab9-7482-40e5-b737-3a452fa3abbf .shogun-image-content {
  
    align-items: center;
  
}

.s-3de7eab9-7482-40e5-b737-3a452fa3abbf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3de7eab9-7482-40e5-b737-3a452fa3abbf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3de7eab9-7482-40e5-b737-3a452fa3abbf.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){






.s-3de7eab9-7482-40e5-b737-3a452fa3abbf .shogun-image-content {
  
    align-items: center;
  
}

.s-3de7eab9-7482-40e5-b737-3a452fa3abbf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3de7eab9-7482-40e5-b737-3a452fa3abbf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3de7eab9-7482-40e5-b737-3a452fa3abbf.shogun-image {
  box-sizing: border-box;
}



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






.s-3de7eab9-7482-40e5-b737-3a452fa3abbf .shogun-image-content {
  
    align-items: center;
  
}

.s-3de7eab9-7482-40e5-b737-3a452fa3abbf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3de7eab9-7482-40e5-b737-3a452fa3abbf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3de7eab9-7482-40e5-b737-3a452fa3abbf.shogun-image {
  box-sizing: border-box;
}



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






.s-3de7eab9-7482-40e5-b737-3a452fa3abbf .shogun-image-content {
  
    align-items: center;
  
}

.s-3de7eab9-7482-40e5-b737-3a452fa3abbf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3de7eab9-7482-40e5-b737-3a452fa3abbf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3de7eab9-7482-40e5-b737-3a452fa3abbf.shogun-image {
  box-sizing: border-box;
}



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






.s-3de7eab9-7482-40e5-b737-3a452fa3abbf .shogun-image-content {
  
    align-items: center;
  
}

.s-3de7eab9-7482-40e5-b737-3a452fa3abbf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3de7eab9-7482-40e5-b737-3a452fa3abbf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3de7eab9-7482-40e5-b737-3a452fa3abbf.shogun-image {
  box-sizing: border-box;
}



}
#s-eb393d67-41c4-46a6-8b3f-fe26a04f94a5 {
  padding-top: 0px;
padding-left: 10%;
padding-bottom: 20px;
padding-right: 10%;
text-align: center;
}
@media (min-width: 1200px){#s-eb393d67-41c4-46a6-8b3f-fe26a04f94a5 {
  display: none;
}
#s-eb393d67-41c4-46a6-8b3f-fe26a04f94a5, #wrap-s-eb393d67-41c4-46a6-8b3f-fe26a04f94a5 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-eb393d67-41c4-46a6-8b3f-fe26a04f94a5 {
  display: none;
}
#s-eb393d67-41c4-46a6-8b3f-fe26a04f94a5, #wrap-s-eb393d67-41c4-46a6-8b3f-fe26a04f94a5 { display: none !important; }}@media (max-width: 767px){#s-eb393d67-41c4-46a6-8b3f-fe26a04f94a5 {
  display: none;
}
#s-eb393d67-41c4-46a6-8b3f-fe26a04f94a5, #wrap-s-eb393d67-41c4-46a6-8b3f-fe26a04f94a5 { display: none !important; }}







.s-eb393d67-41c4-46a6-8b3f-fe26a04f94a5 .shogun-image-content {
  
    align-items: center;
  
}

.s-eb393d67-41c4-46a6-8b3f-fe26a04f94a5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eb393d67-41c4-46a6-8b3f-fe26a04f94a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eb393d67-41c4-46a6-8b3f-fe26a04f94a5.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){






.s-eb393d67-41c4-46a6-8b3f-fe26a04f94a5 .shogun-image-content {
  
    align-items: center;
  
}

.s-eb393d67-41c4-46a6-8b3f-fe26a04f94a5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eb393d67-41c4-46a6-8b3f-fe26a04f94a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eb393d67-41c4-46a6-8b3f-fe26a04f94a5.shogun-image {
  box-sizing: border-box;
}



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






.s-eb393d67-41c4-46a6-8b3f-fe26a04f94a5 .shogun-image-content {
  
    align-items: center;
  
}

.s-eb393d67-41c4-46a6-8b3f-fe26a04f94a5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eb393d67-41c4-46a6-8b3f-fe26a04f94a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eb393d67-41c4-46a6-8b3f-fe26a04f94a5.shogun-image {
  box-sizing: border-box;
}



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






.s-eb393d67-41c4-46a6-8b3f-fe26a04f94a5 .shogun-image-content {
  
    align-items: center;
  
}

.s-eb393d67-41c4-46a6-8b3f-fe26a04f94a5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eb393d67-41c4-46a6-8b3f-fe26a04f94a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eb393d67-41c4-46a6-8b3f-fe26a04f94a5.shogun-image {
  box-sizing: border-box;
}



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






.s-eb393d67-41c4-46a6-8b3f-fe26a04f94a5 .shogun-image-content {
  
    align-items: center;
  
}

.s-eb393d67-41c4-46a6-8b3f-fe26a04f94a5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eb393d67-41c4-46a6-8b3f-fe26a04f94a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eb393d67-41c4-46a6-8b3f-fe26a04f94a5.shogun-image {
  box-sizing: border-box;
}



}
#s-d83fbd1c-df52-4008-b40c-1ba07dfa243a {
  padding-top: 0px;
padding-left: 0px;
padding-bottom: 80px;
padding-right: 0px;
min-height: 50px;
}
@media (max-width: 767px){#s-d83fbd1c-df52-4008-b40c-1ba07dfa243a {
  display: none;
}
#s-d83fbd1c-df52-4008-b40c-1ba07dfa243a, #wrap-s-d83fbd1c-df52-4008-b40c-1ba07dfa243a { display: none !important; }}







#s-d83fbd1c-df52-4008-b40c-1ba07dfa243a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d83fbd1c-df52-4008-b40c-1ba07dfa243a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2ffe394e-cf1d-4310-a3d4-4582ef6a8c12 {
  text-align: center;
}








.s-2ffe394e-cf1d-4310-a3d4-4582ef6a8c12 .shogun-image-content {
  
    align-items: center;
  
}

.s-2ffe394e-cf1d-4310-a3d4-4582ef6a8c12.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2ffe394e-cf1d-4310-a3d4-4582ef6a8c12.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2ffe394e-cf1d-4310-a3d4-4582ef6a8c12.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){






.s-2ffe394e-cf1d-4310-a3d4-4582ef6a8c12 .shogun-image-content {
  
    align-items: center;
  
}

.s-2ffe394e-cf1d-4310-a3d4-4582ef6a8c12.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2ffe394e-cf1d-4310-a3d4-4582ef6a8c12.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2ffe394e-cf1d-4310-a3d4-4582ef6a8c12.shogun-image {
  box-sizing: border-box;
}



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






.s-2ffe394e-cf1d-4310-a3d4-4582ef6a8c12 .shogun-image-content {
  
    align-items: center;
  
}

.s-2ffe394e-cf1d-4310-a3d4-4582ef6a8c12.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2ffe394e-cf1d-4310-a3d4-4582ef6a8c12.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2ffe394e-cf1d-4310-a3d4-4582ef6a8c12.shogun-image {
  box-sizing: border-box;
}



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






.s-2ffe394e-cf1d-4310-a3d4-4582ef6a8c12 .shogun-image-content {
  
    align-items: center;
  
}

.s-2ffe394e-cf1d-4310-a3d4-4582ef6a8c12.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2ffe394e-cf1d-4310-a3d4-4582ef6a8c12.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2ffe394e-cf1d-4310-a3d4-4582ef6a8c12.shogun-image {
  box-sizing: border-box;
}



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






.s-2ffe394e-cf1d-4310-a3d4-4582ef6a8c12 .shogun-image-content {
  
    align-items: center;
  
}

.s-2ffe394e-cf1d-4310-a3d4-4582ef6a8c12.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2ffe394e-cf1d-4310-a3d4-4582ef6a8c12.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2ffe394e-cf1d-4310-a3d4-4582ef6a8c12.shogun-image {
  box-sizing: border-box;
}



}
#s-6a8b8bfc-e94a-4bc3-b93c-0116c9c748a9 {
  margin-top: 20px;
padding-bottom: 0px;
}

#s-4a8ce876-b20e-40fe-bf40-8d87dc75deb8 {
  margin-top: 0px;
margin-bottom: 40px;
min-height: 50px;
background-color: rgba(0, 0, 0, 0.03);
}
@media (max-width: 767px){#s-4a8ce876-b20e-40fe-bf40-8d87dc75deb8 {
  display: none;
}
#s-4a8ce876-b20e-40fe-bf40-8d87dc75deb8, #wrap-s-4a8ce876-b20e-40fe-bf40-8d87dc75deb8 { display: none !important; }}







#s-4a8ce876-b20e-40fe-bf40-8d87dc75deb8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4a8ce876-b20e-40fe-bf40-8d87dc75deb8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-067b0f6f-b8a4-4450-9e5e-bb90f6061298 {
  padding-top: 20px;
padding-left: 15%;
padding-bottom: 20px;
padding-right: 15%;
text-align: center;
}
@media (min-width: 1200px){#s-067b0f6f-b8a4-4450-9e5e-bb90f6061298 {
  display: none;
}
#s-067b0f6f-b8a4-4450-9e5e-bb90f6061298, #wrap-s-067b0f6f-b8a4-4450-9e5e-bb90f6061298 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-067b0f6f-b8a4-4450-9e5e-bb90f6061298 {
  display: none;
}
#s-067b0f6f-b8a4-4450-9e5e-bb90f6061298, #wrap-s-067b0f6f-b8a4-4450-9e5e-bb90f6061298 { display: none !important; }}@media (max-width: 767px){#s-067b0f6f-b8a4-4450-9e5e-bb90f6061298 {
  display: none;
}
#s-067b0f6f-b8a4-4450-9e5e-bb90f6061298, #wrap-s-067b0f6f-b8a4-4450-9e5e-bb90f6061298 { display: none !important; }}







.s-067b0f6f-b8a4-4450-9e5e-bb90f6061298 .shogun-image-content {
  
    align-items: center;
  
}

.s-067b0f6f-b8a4-4450-9e5e-bb90f6061298.shg-align-container {
  display: flex;
  justify-content: center
}

.s-067b0f6f-b8a4-4450-9e5e-bb90f6061298.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-067b0f6f-b8a4-4450-9e5e-bb90f6061298.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){






.s-067b0f6f-b8a4-4450-9e5e-bb90f6061298 .shogun-image-content {
  
    align-items: center;
  
}

.s-067b0f6f-b8a4-4450-9e5e-bb90f6061298.shg-align-container {
  display: flex;
  justify-content: center
}

.s-067b0f6f-b8a4-4450-9e5e-bb90f6061298.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-067b0f6f-b8a4-4450-9e5e-bb90f6061298.shogun-image {
  box-sizing: border-box;
}



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






.s-067b0f6f-b8a4-4450-9e5e-bb90f6061298 .shogun-image-content {
  
    align-items: center;
  
}

.s-067b0f6f-b8a4-4450-9e5e-bb90f6061298.shg-align-container {
  display: flex;
  justify-content: center
}

.s-067b0f6f-b8a4-4450-9e5e-bb90f6061298.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-067b0f6f-b8a4-4450-9e5e-bb90f6061298.shogun-image {
  box-sizing: border-box;
}



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






.s-067b0f6f-b8a4-4450-9e5e-bb90f6061298 .shogun-image-content {
  
    align-items: center;
  
}

.s-067b0f6f-b8a4-4450-9e5e-bb90f6061298.shg-align-container {
  display: flex;
  justify-content: center
}

.s-067b0f6f-b8a4-4450-9e5e-bb90f6061298.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-067b0f6f-b8a4-4450-9e5e-bb90f6061298.shogun-image {
  box-sizing: border-box;
}



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






.s-067b0f6f-b8a4-4450-9e5e-bb90f6061298 .shogun-image-content {
  
    align-items: center;
  
}

.s-067b0f6f-b8a4-4450-9e5e-bb90f6061298.shg-align-container {
  display: flex;
  justify-content: center
}

.s-067b0f6f-b8a4-4450-9e5e-bb90f6061298.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-067b0f6f-b8a4-4450-9e5e-bb90f6061298.shogun-image {
  box-sizing: border-box;
}



}
#s-26413111-4378-4830-90c8-20088af7e4f5 {
  margin-left: 0px;
margin-bottom: 20px;
margin-right: 0px;
padding-left: 100px;
padding-right: 100px;
}
@media (min-width: 1200px){#s-26413111-4378-4830-90c8-20088af7e4f5 {
  display: none;
}
#s-26413111-4378-4830-90c8-20088af7e4f5, #wrap-s-26413111-4378-4830-90c8-20088af7e4f5 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-26413111-4378-4830-90c8-20088af7e4f5 {
  display: none;
}
#s-26413111-4378-4830-90c8-20088af7e4f5, #wrap-s-26413111-4378-4830-90c8-20088af7e4f5 { display: none !important; }}@media (max-width: 767px){#s-26413111-4378-4830-90c8-20088af7e4f5 {
  display: none;
}
#s-26413111-4378-4830-90c8-20088af7e4f5, #wrap-s-26413111-4378-4830-90c8-20088af7e4f5 { display: none !important; }}
@media (min-width: 0px) {
[id="s-26413111-4378-4830-90c8-20088af7e4f5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-26413111-4378-4830-90c8-20088af7e4f5"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-26413111-4378-4830-90c8-20088af7e4f5"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-26413111-4378-4830-90c8-20088af7e4f5"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-ec8db79c-55d4-49fa-93f5-7c22569272a8 {
  text-align: center;
}








#s-ec8db79c-55d4-49fa-93f5-7c22569272a8 .shogun-image-content {
  
    align-items: center;
  
}

#s-492ed50e-004f-4c6b-9bb2-57db65ca8778 {
  margin-top: 10px;
margin-bottom: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-492ed50e-004f-4c6b-9bb2-57db65ca8778 {
  
}
}@media (max-width: 767px){#s-492ed50e-004f-4c6b-9bb2-57db65ca8778 {
  display: none;
}
#s-492ed50e-004f-4c6b-9bb2-57db65ca8778, #wrap-s-492ed50e-004f-4c6b-9bb2-57db65ca8778 { display: none !important; }}
#s-501af79a-1617-442c-9405-3a3172dcb88b {
  text-align: center;
}








#s-501af79a-1617-442c-9405-3a3172dcb88b .shogun-image-content {
  
    align-items: center;
  
}

#s-b4cfb4bf-beba-43a6-a154-985f4d4d73cd {
  margin-top: 10px;
margin-bottom: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-b4cfb4bf-beba-43a6-a154-985f4d4d73cd {
  
}
}@media (max-width: 767px){#s-b4cfb4bf-beba-43a6-a154-985f4d4d73cd {
  display: none;
}
#s-b4cfb4bf-beba-43a6-a154-985f4d4d73cd, #wrap-s-b4cfb4bf-beba-43a6-a154-985f4d4d73cd { display: none !important; }}
#s-a4dd9eb2-4620-43b2-93c8-8b62ebf4f028 {
  text-align: center;
}








#s-a4dd9eb2-4620-43b2-93c8-8b62ebf4f028 .shogun-image-content {
  
    align-items: center;
  
}

#s-540519a2-1cb8-4fad-befb-c3dd17a777df {
  margin-top: 10px;
margin-bottom: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-540519a2-1cb8-4fad-befb-c3dd17a777df {
  
}
}@media (max-width: 767px){#s-540519a2-1cb8-4fad-befb-c3dd17a777df {
  display: none;
}
#s-540519a2-1cb8-4fad-befb-c3dd17a777df, #wrap-s-540519a2-1cb8-4fad-befb-c3dd17a777df { display: none !important; }}
#s-5b2f9017-7fa6-4297-995e-5daf2b483656 {
  padding-top: 20px;
padding-left: 15%;
padding-bottom: 20px;
padding-right: 15%;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-5b2f9017-7fa6-4297-995e-5daf2b483656 {
  display: none;
}
#s-5b2f9017-7fa6-4297-995e-5daf2b483656, #wrap-s-5b2f9017-7fa6-4297-995e-5daf2b483656 { display: none !important; }}@media (max-width: 767px){#s-5b2f9017-7fa6-4297-995e-5daf2b483656 {
  display: none;
}
#s-5b2f9017-7fa6-4297-995e-5daf2b483656, #wrap-s-5b2f9017-7fa6-4297-995e-5daf2b483656 { display: none !important; }}







.s-5b2f9017-7fa6-4297-995e-5daf2b483656 .shogun-image-content {
  
    align-items: center;
  
}

.s-5b2f9017-7fa6-4297-995e-5daf2b483656.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b2f9017-7fa6-4297-995e-5daf2b483656.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b2f9017-7fa6-4297-995e-5daf2b483656.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){






.s-5b2f9017-7fa6-4297-995e-5daf2b483656 .shogun-image-content {
  
    align-items: center;
  
}

.s-5b2f9017-7fa6-4297-995e-5daf2b483656.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b2f9017-7fa6-4297-995e-5daf2b483656.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b2f9017-7fa6-4297-995e-5daf2b483656.shogun-image {
  box-sizing: border-box;
}



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






.s-5b2f9017-7fa6-4297-995e-5daf2b483656 .shogun-image-content {
  
    align-items: center;
  
}

.s-5b2f9017-7fa6-4297-995e-5daf2b483656.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b2f9017-7fa6-4297-995e-5daf2b483656.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b2f9017-7fa6-4297-995e-5daf2b483656.shogun-image {
  box-sizing: border-box;
}



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






.s-5b2f9017-7fa6-4297-995e-5daf2b483656 .shogun-image-content {
  
    align-items: center;
  
}

.s-5b2f9017-7fa6-4297-995e-5daf2b483656.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b2f9017-7fa6-4297-995e-5daf2b483656.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b2f9017-7fa6-4297-995e-5daf2b483656.shogun-image {
  box-sizing: border-box;
}



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






.s-5b2f9017-7fa6-4297-995e-5daf2b483656 .shogun-image-content {
  
    align-items: center;
  
}

.s-5b2f9017-7fa6-4297-995e-5daf2b483656.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b2f9017-7fa6-4297-995e-5daf2b483656.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b2f9017-7fa6-4297-995e-5daf2b483656.shogun-image {
  box-sizing: border-box;
}



}
#s-eeedc8a4-2d28-436e-94e3-af34083e62d3 {
  padding-left: 15%;
padding-bottom: 40px;
padding-right: 15%;
}
@media (min-width: 768px) and (max-width: 991px){#s-eeedc8a4-2d28-436e-94e3-af34083e62d3 {
  display: none;
}
#s-eeedc8a4-2d28-436e-94e3-af34083e62d3, #wrap-s-eeedc8a4-2d28-436e-94e3-af34083e62d3 { display: none !important; }}@media (max-width: 767px){#s-eeedc8a4-2d28-436e-94e3-af34083e62d3 {
  display: none;
}
#s-eeedc8a4-2d28-436e-94e3-af34083e62d3, #wrap-s-eeedc8a4-2d28-436e-94e3-af34083e62d3 { display: none !important; }}
@media (min-width: 0px) {
[id="s-eeedc8a4-2d28-436e-94e3-af34083e62d3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-eeedc8a4-2d28-436e-94e3-af34083e62d3"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-eeedc8a4-2d28-436e-94e3-af34083e62d3"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-eeedc8a4-2d28-436e-94e3-af34083e62d3"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-ae0858cd-ffb6-44b6-bffc-5270f817742c {
  text-align: center;
}








#s-ae0858cd-ffb6-44b6-bffc-5270f817742c .shogun-image-content {
  
    align-items: center;
  
}

#s-1f1fec21-5311-49a8-979e-b04574c218aa {
  margin-top: 20px;
margin-bottom: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-1f1fec21-5311-49a8-979e-b04574c218aa {
  
}
}@media (max-width: 767px){#s-1f1fec21-5311-49a8-979e-b04574c218aa {
  display: none;
}
#s-1f1fec21-5311-49a8-979e-b04574c218aa, #wrap-s-1f1fec21-5311-49a8-979e-b04574c218aa { display: none !important; }}
#s-2dddf48c-6e3c-4612-aad3-9dbdb8ed9d4c {
  text-align: center;
}








#s-2dddf48c-6e3c-4612-aad3-9dbdb8ed9d4c .shogun-image-content {
  
    align-items: center;
  
}

#s-7fc01dd6-be8a-43d7-9c85-74a52f4bcc6a {
  margin-top: 20px;
margin-bottom: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-7fc01dd6-be8a-43d7-9c85-74a52f4bcc6a {
  
}
}@media (max-width: 767px){#s-7fc01dd6-be8a-43d7-9c85-74a52f4bcc6a {
  display: none;
}
#s-7fc01dd6-be8a-43d7-9c85-74a52f4bcc6a, #wrap-s-7fc01dd6-be8a-43d7-9c85-74a52f4bcc6a { display: none !important; }}
#s-b33ecabf-6050-44b3-bc11-4031286050ab {
  text-align: center;
}








#s-b33ecabf-6050-44b3-bc11-4031286050ab .shogun-image-content {
  
    align-items: center;
  
}

#s-276c616f-4a22-4d13-9ae5-131ce6f74939 {
  margin-top: 20px;
margin-bottom: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-276c616f-4a22-4d13-9ae5-131ce6f74939 {
  
}
}@media (max-width: 767px){#s-276c616f-4a22-4d13-9ae5-131ce6f74939 {
  display: none;
}
#s-276c616f-4a22-4d13-9ae5-131ce6f74939, #wrap-s-276c616f-4a22-4d13-9ae5-131ce6f74939 { display: none !important; }}
#s-ad3be13e-acbd-4cd2-a5e4-8025e2484ae5 {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 20px;
min-height: 50px;
background-color: rgba(0, 0, 0, 0.03);
}
@media (min-width: 1200px){#s-ad3be13e-acbd-4cd2-a5e4-8025e2484ae5 {
  display: none;
}
#s-ad3be13e-acbd-4cd2-a5e4-8025e2484ae5, #wrap-s-ad3be13e-acbd-4cd2-a5e4-8025e2484ae5 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ad3be13e-acbd-4cd2-a5e4-8025e2484ae5 {
  display: none;
}
#s-ad3be13e-acbd-4cd2-a5e4-8025e2484ae5, #wrap-s-ad3be13e-acbd-4cd2-a5e4-8025e2484ae5 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ad3be13e-acbd-4cd2-a5e4-8025e2484ae5 {
  display: none;
}
#s-ad3be13e-acbd-4cd2-a5e4-8025e2484ae5, #wrap-s-ad3be13e-acbd-4cd2-a5e4-8025e2484ae5 { display: none !important; }}







#s-ad3be13e-acbd-4cd2-a5e4-8025e2484ae5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ad3be13e-acbd-4cd2-a5e4-8025e2484ae5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fdc3087e-3c77-49fe-8bcf-902a876fe94d {
  padding-top: 20px;
padding-bottom: 0px;
text-align: center;
}








.s-fdc3087e-3c77-49fe-8bcf-902a876fe94d .shogun-image-content {
  
    align-items: center;
  
}

.s-fdc3087e-3c77-49fe-8bcf-902a876fe94d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fdc3087e-3c77-49fe-8bcf-902a876fe94d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fdc3087e-3c77-49fe-8bcf-902a876fe94d.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){






.s-fdc3087e-3c77-49fe-8bcf-902a876fe94d .shogun-image-content {
  
    align-items: center;
  
}

.s-fdc3087e-3c77-49fe-8bcf-902a876fe94d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fdc3087e-3c77-49fe-8bcf-902a876fe94d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fdc3087e-3c77-49fe-8bcf-902a876fe94d.shogun-image {
  box-sizing: border-box;
}



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






.s-fdc3087e-3c77-49fe-8bcf-902a876fe94d .shogun-image-content {
  
    align-items: center;
  
}

.s-fdc3087e-3c77-49fe-8bcf-902a876fe94d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fdc3087e-3c77-49fe-8bcf-902a876fe94d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fdc3087e-3c77-49fe-8bcf-902a876fe94d.shogun-image {
  box-sizing: border-box;
}



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






.s-fdc3087e-3c77-49fe-8bcf-902a876fe94d .shogun-image-content {
  
    align-items: center;
  
}

.s-fdc3087e-3c77-49fe-8bcf-902a876fe94d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fdc3087e-3c77-49fe-8bcf-902a876fe94d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fdc3087e-3c77-49fe-8bcf-902a876fe94d.shogun-image {
  box-sizing: border-box;
}



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






.s-fdc3087e-3c77-49fe-8bcf-902a876fe94d .shogun-image-content {
  
    align-items: center;
  
}

.s-fdc3087e-3c77-49fe-8bcf-902a876fe94d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fdc3087e-3c77-49fe-8bcf-902a876fe94d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fdc3087e-3c77-49fe-8bcf-902a876fe94d.shogun-image {
  box-sizing: border-box;
}



}
#s-3a878499-03eb-43e4-bc86-4d682211fc46 {
  margin-top: 0px;
max-width: 0px;
text-align: center;
}








#s-3a878499-03eb-43e4-bc86-4d682211fc46 .shogun-image-content {
  
    align-items: center;
  
}

#s-14002a9e-19ff-40c0-a4f1-dcc14b03afc8 {
  margin-top: 0px;
margin-left: 10%;
margin-bottom: 0px;
margin-right: 10%;
padding-top: 20px;
text-align: center;
}








#s-14002a9e-19ff-40c0-a4f1-dcc14b03afc8 .shogun-image-content {
  
    align-items: center;
  
}

#s-2539822f-78f8-43e5-8ba9-9c4ff88f85ee {
  margin-top: 20px;
margin-left: 10%;
margin-bottom: 0px;
margin-right: 10%;
}

#s-7de1960c-6275-4632-8a59-c76a3a95328c {
  margin-top: 20px;
margin-left: 10%;
margin-right: 10%;
text-align: center;
}








#s-7de1960c-6275-4632-8a59-c76a3a95328c .shogun-image-content {
  
    align-items: center;
  
}

#s-1c47859c-4b2b-4837-9446-c4cd5f3499cd {
  margin-top: 20px;
margin-left: 10%;
margin-bottom: 0px;
margin-right: 10%;
}

#s-4d6430a0-d31f-4fb4-baf1-8218dc655b03 {
  margin-top: 20px;
margin-left: 10%;
margin-right: 10%;
text-align: center;
}








#s-4d6430a0-d31f-4fb4-baf1-8218dc655b03 .shogun-image-content {
  
    align-items: center;
  
}

#s-c2be1ec9-de19-4b56-8380-5b0944684ae3 {
  margin-top: 20px;
margin-left: 10%;
margin-bottom: 20px;
margin-right: 10%;
}

#s-ecb375d5-f441-496f-83a7-64d4001141c9 {
  margin-top: 20px;
margin-left: 60px;
margin-bottom: 20px;
margin-right: 60px;
padding-top: 0px;
padding-left: 300px;
padding-bottom: 0px;
padding-right: 300px;
min-height: 50px;
background-color: rgba(0, 0, 0, 0);
}
@media (min-width: 1200px){#s-ecb375d5-f441-496f-83a7-64d4001141c9 {
  display: none;
}
#s-ecb375d5-f441-496f-83a7-64d4001141c9, #wrap-s-ecb375d5-f441-496f-83a7-64d4001141c9 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ecb375d5-f441-496f-83a7-64d4001141c9 {
  display: none;
}
#s-ecb375d5-f441-496f-83a7-64d4001141c9, #wrap-s-ecb375d5-f441-496f-83a7-64d4001141c9 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ecb375d5-f441-496f-83a7-64d4001141c9 {
  display: none;
}
#s-ecb375d5-f441-496f-83a7-64d4001141c9, #wrap-s-ecb375d5-f441-496f-83a7-64d4001141c9 { display: none !important; }}@media (max-width: 767px){#s-ecb375d5-f441-496f-83a7-64d4001141c9 {
  display: none;
}
#s-ecb375d5-f441-496f-83a7-64d4001141c9, #wrap-s-ecb375d5-f441-496f-83a7-64d4001141c9 { display: none !important; }}







#s-ecb375d5-f441-496f-83a7-64d4001141c9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ecb375d5-f441-496f-83a7-64d4001141c9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

.shg-btn-text {
  font-weight: ;
  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-f94b60de-25bf-4598-a167-b1af8a81594b {
  border-style: solid;
padding-top: 10px;
padding-left: 40px;
padding-bottom: 10px;
padding-right: 40px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
letter-spacing: 1px;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-f94b60de-25bf-4598-a167-b1af8a81594b:hover {background-color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-f94b60de-25bf-4598-a167-b1af8a81594b:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-f94b60de-25bf-4598-a167-b1af8a81594b-root {
    text-align: center;
  }


#s-f94b60de-25bf-4598-a167-b1af8a81594b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Brandon Grotesque;
  display:  block ;
}
@media (min-width: 1200px){
  #s-f94b60de-25bf-4598-a167-b1af8a81594b-root {
    text-align: center;
  }


#s-f94b60de-25bf-4598-a167-b1af8a81594b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Brandon Grotesque;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f94b60de-25bf-4598-a167-b1af8a81594b-root {
    text-align: center;
  }


#s-f94b60de-25bf-4598-a167-b1af8a81594b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Brandon Grotesque;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f94b60de-25bf-4598-a167-b1af8a81594b-root {
    text-align: center;
  }


#s-f94b60de-25bf-4598-a167-b1af8a81594b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Brandon Grotesque;
  display:  block ;
}
}@media (max-width: 767px){
  #s-f94b60de-25bf-4598-a167-b1af8a81594b-root {
    text-align: center;
  }


#s-f94b60de-25bf-4598-a167-b1af8a81594b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Brandon Grotesque;
  display:  block ;
}
}
#s-166fdf98-7c10-4b85-ab3b-92c845868a0b {
  min-height: 50px;
}
@media (max-width: 767px){#s-166fdf98-7c10-4b85-ab3b-92c845868a0b {
  display: none;
}
#s-166fdf98-7c10-4b85-ab3b-92c845868a0b, #wrap-s-166fdf98-7c10-4b85-ab3b-92c845868a0b { display: none !important; }}







#s-166fdf98-7c10-4b85-ab3b-92c845868a0b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-166fdf98-7c10-4b85-ab3b-92c845868a0b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-hr-wrapper {
  padding: 30px 0;
}

.shg-hr-wrapper hr {
  margin: 0;
  border: 0;
  width: 100%;
}

#s-787b3d3f-f0c3-4bd9-8098-fa8190fa014a {
  padding-top: 20px;
}

#s-787b3d3f-f0c3-4bd9-8098-fa8190fa014a hr {
  border-top: 2px solid #ddd;
}

#s-762ff91c-a42c-463c-95a4-f5ef6b1c32c8 {
  min-height: 50px;
}








#s-762ff91c-a42c-463c-95a4-f5ef6b1c32c8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-762ff91c-a42c-463c-95a4-f5ef6b1c32c8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1f14e024-bbf2-4bac-836a-352d026a9b9d {
  padding-top: 30px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-1f14e024-bbf2-4bac-836a-352d026a9b9d {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-1f14e024-bbf2-4bac-836a-352d026a9b9d {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-1f14e024-bbf2-4bac-836a-352d026a9b9d {
  
}
}@media (max-width: 767px){#s-1f14e024-bbf2-4bac-836a-352d026a9b9d {
  
}
}
#s-f7a45d95-fa31-4c02-8298-bfc418b8753c {
  margin-top: 10px;
margin-bottom: 30px;
}
@media (min-width: 1200px){#s-f7a45d95-fa31-4c02-8298-bfc418b8753c {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f7a45d95-fa31-4c02-8298-bfc418b8753c {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-f7a45d95-fa31-4c02-8298-bfc418b8753c {
  
}
}@media (max-width: 767px){#s-f7a45d95-fa31-4c02-8298-bfc418b8753c {
  
}
}
/*
  $vgutter : 20px
  $hgutter : 10px;
*/

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

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

.shogun-root iframe {
  display: initial;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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