.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-15954454-74d2-42f1-85f8-8f128ea8e42b {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-15954454-74d2-42f1-85f8-8f128ea8e42b {
  display: none;
}
#s-15954454-74d2-42f1-85f8-8f128ea8e42b, #wrap-s-15954454-74d2-42f1-85f8-8f128ea8e42b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-15954454-74d2-42f1-85f8-8f128ea8e42b {
  display: none;
}
#s-15954454-74d2-42f1-85f8-8f128ea8e42b, #wrap-s-15954454-74d2-42f1-85f8-8f128ea8e42b { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-15954454-74d2-42f1-85f8-8f128ea8e42b {
  display: none;
}
#s-15954454-74d2-42f1-85f8-8f128ea8e42b, #wrap-s-15954454-74d2-42f1-85f8-8f128ea8e42b { display: none !important; }}@media (max-width: 767px){#s-15954454-74d2-42f1-85f8-8f128ea8e42b {
  
}
}
#s-15954454-74d2-42f1-85f8-8f128ea8e42b .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-15954454-74d2-42f1-85f8-8f128ea8e42b .shg-sld-nav-button.shg-sld-left,
#s-15954454-74d2-42f1-85f8-8f128ea8e42b .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

.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-6b1f19b9-5288-4c59-98e7-b3eaffdde7e1 {
  padding-left: 0px;
padding-right: 0px;
min-height: 50px;
}








#s-6b1f19b9-5288-4c59-98e7-b3eaffdde7e1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6b1f19b9-5288-4c59-98e7-b3eaffdde7e1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-image-content-wrapper .shogun-image.hover~* {
  z-index: 1;
}
#s-fe445d9e-d0d3-404b-8a26-9185d4f61bf2 {
  margin-top: 4em;
margin-left: 1.2em;
margin-bottom: 1.63em;
margin-right: 1.2em;
max-width: 300px;
text-align: left;
}







  img.s-fe445d9e-d0d3-404b-8a26-9185d4f61bf2.shogun-image {
    
    
  }


.s-fe445d9e-d0d3-404b-8a26-9185d4f61bf2 .shogun-image-content {
  
    align-items: center;
  
}

.s-fe445d9e-d0d3-404b-8a26-9185d4f61bf2.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-fe445d9e-d0d3-404b-8a26-9185d4f61bf2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fe445d9e-d0d3-404b-8a26-9185d4f61bf2.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-fe445d9e-d0d3-404b-8a26-9185d4f61bf2.shogun-image {
    
    
  }


.s-fe445d9e-d0d3-404b-8a26-9185d4f61bf2 .shogun-image-content {
  
    align-items: center;
  
}

.s-fe445d9e-d0d3-404b-8a26-9185d4f61bf2.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-fe445d9e-d0d3-404b-8a26-9185d4f61bf2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fe445d9e-d0d3-404b-8a26-9185d4f61bf2.shogun-image {
  box-sizing: border-box;
}



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





  img.s-fe445d9e-d0d3-404b-8a26-9185d4f61bf2.shogun-image {
    
    
  }


.s-fe445d9e-d0d3-404b-8a26-9185d4f61bf2 .shogun-image-content {
  
    align-items: center;
  
}

.s-fe445d9e-d0d3-404b-8a26-9185d4f61bf2.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-fe445d9e-d0d3-404b-8a26-9185d4f61bf2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fe445d9e-d0d3-404b-8a26-9185d4f61bf2.shogun-image {
  box-sizing: border-box;
}



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





  img.s-fe445d9e-d0d3-404b-8a26-9185d4f61bf2.shogun-image {
    
    
  }


.s-fe445d9e-d0d3-404b-8a26-9185d4f61bf2 .shogun-image-content {
  
    align-items: center;
  
}

.s-fe445d9e-d0d3-404b-8a26-9185d4f61bf2.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-fe445d9e-d0d3-404b-8a26-9185d4f61bf2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fe445d9e-d0d3-404b-8a26-9185d4f61bf2.shogun-image {
  box-sizing: border-box;
}



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





  img.s-fe445d9e-d0d3-404b-8a26-9185d4f61bf2.shogun-image {
    
    
  }


.s-fe445d9e-d0d3-404b-8a26-9185d4f61bf2 .shogun-image-content {
  
    align-items: center;
  
}

.s-fe445d9e-d0d3-404b-8a26-9185d4f61bf2.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-fe445d9e-d0d3-404b-8a26-9185d4f61bf2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fe445d9e-d0d3-404b-8a26-9185d4f61bf2.shogun-image {
  box-sizing: border-box;
}



}
.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-ca48488d-39f9-4f9a-b07a-71de94e93f89 {
  margin-bottom: 0%;
}
@media (max-width: 767px){#s-ca48488d-39f9-4f9a-b07a-71de94e93f89 {
  display: unset;
}
#s-ca48488d-39f9-4f9a-b07a-71de94e93f89, #wrap-s-ca48488d-39f9-4f9a-b07a-71de94e93f89 { display: unset !important; }}
#s-067d0d1f-f287-4adc-a031-6d204e656c27 {
  min-height: 50px;
}








#s-067d0d1f-f287-4adc-a031-6d204e656c27 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-067d0d1f-f287-4adc-a031-6d204e656c27.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d89cd16e-b258-4b76-9989-1b3e57802234 {
  max-width: 140px;
aspect-ratio: 430/68;
text-align: center;
}





  #s-d89cd16e-b258-4b76-9989-1b3e57802234 img.shogun-image,
  #s-d89cd16e-b258-4b76-9989-1b3e57802234 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d89cd16e-b258-4b76-9989-1b3e57802234 {
    width: 100%;
    height: auto;
  }

  #s-d89cd16e-b258-4b76-9989-1b3e57802234 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d89cd16e-b258-4b76-9989-1b3e57802234.shogun-image {
    
    
  }


.s-d89cd16e-b258-4b76-9989-1b3e57802234 .shogun-image-content {
  
    align-items: center;
  
}

.s-d89cd16e-b258-4b76-9989-1b3e57802234.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d89cd16e-b258-4b76-9989-1b3e57802234.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d89cd16e-b258-4b76-9989-1b3e57802234.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d89cd16e-b258-4b76-9989-1b3e57802234 {
      --shg-aspect-ratio: calc(430/68); 
    }

    .s-d89cd16e-b258-4b76-9989-1b3e57802234.shogun-image-container {
      position: relative;
    }

    .s-d89cd16e-b258-4b76-9989-1b3e57802234.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d89cd16e-b258-4b76-9989-1b3e57802234.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d89cd16e-b258-4b76-9989-1b3e57802234 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-d89cd16e-b258-4b76-9989-1b3e57802234 img.shogun-image,
  #s-d89cd16e-b258-4b76-9989-1b3e57802234 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d89cd16e-b258-4b76-9989-1b3e57802234 {
    width: 100%;
    height: auto;
  }

  #s-d89cd16e-b258-4b76-9989-1b3e57802234 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d89cd16e-b258-4b76-9989-1b3e57802234.shogun-image {
    
    
  }


.s-d89cd16e-b258-4b76-9989-1b3e57802234 .shogun-image-content {
  
    align-items: center;
  
}

.s-d89cd16e-b258-4b76-9989-1b3e57802234.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d89cd16e-b258-4b76-9989-1b3e57802234.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d89cd16e-b258-4b76-9989-1b3e57802234.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d89cd16e-b258-4b76-9989-1b3e57802234 {
      --shg-aspect-ratio: calc(430/68); 
    }

    .s-d89cd16e-b258-4b76-9989-1b3e57802234.shogun-image-container {
      position: relative;
    }

    .s-d89cd16e-b258-4b76-9989-1b3e57802234.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d89cd16e-b258-4b76-9989-1b3e57802234.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d89cd16e-b258-4b76-9989-1b3e57802234 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-d89cd16e-b258-4b76-9989-1b3e57802234 img.shogun-image,
  #s-d89cd16e-b258-4b76-9989-1b3e57802234 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d89cd16e-b258-4b76-9989-1b3e57802234 {
    width: 100%;
    height: auto;
  }

  #s-d89cd16e-b258-4b76-9989-1b3e57802234 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d89cd16e-b258-4b76-9989-1b3e57802234.shogun-image {
    
    
  }


.s-d89cd16e-b258-4b76-9989-1b3e57802234 .shogun-image-content {
  
    align-items: center;
  
}

.s-d89cd16e-b258-4b76-9989-1b3e57802234.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d89cd16e-b258-4b76-9989-1b3e57802234.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d89cd16e-b258-4b76-9989-1b3e57802234.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d89cd16e-b258-4b76-9989-1b3e57802234 {
      --shg-aspect-ratio: calc(430/68); 
    }

    .s-d89cd16e-b258-4b76-9989-1b3e57802234.shogun-image-container {
      position: relative;
    }

    .s-d89cd16e-b258-4b76-9989-1b3e57802234.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d89cd16e-b258-4b76-9989-1b3e57802234.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d89cd16e-b258-4b76-9989-1b3e57802234 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-d89cd16e-b258-4b76-9989-1b3e57802234 img.shogun-image,
  #s-d89cd16e-b258-4b76-9989-1b3e57802234 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d89cd16e-b258-4b76-9989-1b3e57802234 {
    width: 100%;
    height: auto;
  }

  #s-d89cd16e-b258-4b76-9989-1b3e57802234 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d89cd16e-b258-4b76-9989-1b3e57802234.shogun-image {
    
    
  }


.s-d89cd16e-b258-4b76-9989-1b3e57802234 .shogun-image-content {
  
    align-items: center;
  
}

.s-d89cd16e-b258-4b76-9989-1b3e57802234.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d89cd16e-b258-4b76-9989-1b3e57802234.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d89cd16e-b258-4b76-9989-1b3e57802234.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d89cd16e-b258-4b76-9989-1b3e57802234 {
      --shg-aspect-ratio: calc(430/68); 
    }

    .s-d89cd16e-b258-4b76-9989-1b3e57802234.shogun-image-container {
      position: relative;
    }

    .s-d89cd16e-b258-4b76-9989-1b3e57802234.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d89cd16e-b258-4b76-9989-1b3e57802234.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d89cd16e-b258-4b76-9989-1b3e57802234 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-d89cd16e-b258-4b76-9989-1b3e57802234 img.shogun-image,
  #s-d89cd16e-b258-4b76-9989-1b3e57802234 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d89cd16e-b258-4b76-9989-1b3e57802234 {
    width: 100%;
    height: auto;
  }

  #s-d89cd16e-b258-4b76-9989-1b3e57802234 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d89cd16e-b258-4b76-9989-1b3e57802234.shogun-image {
    
    
  }


.s-d89cd16e-b258-4b76-9989-1b3e57802234 .shogun-image-content {
  
    align-items: center;
  
}

.s-d89cd16e-b258-4b76-9989-1b3e57802234.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d89cd16e-b258-4b76-9989-1b3e57802234.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d89cd16e-b258-4b76-9989-1b3e57802234.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d89cd16e-b258-4b76-9989-1b3e57802234 {
      --shg-aspect-ratio: calc(430/68); 
    }

    .s-d89cd16e-b258-4b76-9989-1b3e57802234.shogun-image-container {
      position: relative;
    }

    .s-d89cd16e-b258-4b76-9989-1b3e57802234.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d89cd16e-b258-4b76-9989-1b3e57802234.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d89cd16e-b258-4b76-9989-1b3e57802234 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-9174376d-17db-404f-abea-b2fdf71a8b93 {
  margin-bottom: 0%;
padding-left: 16px;
padding-right: 16px;
}

#s-17f34687-f304-4775-9be1-13a99026694b {
  min-height: 50px;
}








#s-17f34687-f304-4775-9be1-13a99026694b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-17f34687-f304-4775-9be1-13a99026694b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8b6b8663-a447-419e-999c-cce12fc2d0ba {
  margin-bottom: 0%;
padding-top: 8%;
}

.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-3be2f5b7-1def-4cb8-9cbb-dfdd4e49b947 {
  margin-top: 58%;
padding-top: 12px;
padding-left: 19px;
padding-bottom: 12px;
padding-right: 19px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 8px;
background-color: rgba(255, 194, 34, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.5em;
}
#s-3be2f5b7-1def-4cb8-9cbb-dfdd4e49b947:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-3be2f5b7-1def-4cb8-9cbb-dfdd4e49b947:active {background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-3be2f5b7-1def-4cb8-9cbb-dfdd4e49b947-root {
    text-align: center;
  }


#s-3be2f5b7-1def-4cb8-9cbb-dfdd4e49b947.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-3be2f5b7-1def-4cb8-9cbb-dfdd4e49b947-root {
    text-align: center;
  }


#s-3be2f5b7-1def-4cb8-9cbb-dfdd4e49b947.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-3be2f5b7-1def-4cb8-9cbb-dfdd4e49b947-root {
    text-align: center;
  }


#s-3be2f5b7-1def-4cb8-9cbb-dfdd4e49b947.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-3be2f5b7-1def-4cb8-9cbb-dfdd4e49b947-root {
    text-align: center;
  }


#s-3be2f5b7-1def-4cb8-9cbb-dfdd4e49b947.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-3be2f5b7-1def-4cb8-9cbb-dfdd4e49b947-root {
    text-align: center;
  }


#s-3be2f5b7-1def-4cb8-9cbb-dfdd4e49b947.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-ad38d7f2-152c-4c78-99b0-3fc143f0a584 {
  margin-bottom: 0%;
padding-top: 3%;
}

#s-580edd45-3f52-4284-9e30-261b7d2d2372 {
  margin-top: 64%;
padding-top: 12px;
padding-left: 19px;
padding-bottom: 12px;
padding-right: 19px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 8px;
background-color: rgba(255, 194, 34, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.5em;
}
#s-580edd45-3f52-4284-9e30-261b7d2d2372:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-580edd45-3f52-4284-9e30-261b7d2d2372:active {background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-580edd45-3f52-4284-9e30-261b7d2d2372-root {
    text-align: center;
  }


#s-580edd45-3f52-4284-9e30-261b7d2d2372.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-580edd45-3f52-4284-9e30-261b7d2d2372-root {
    text-align: center;
  }


#s-580edd45-3f52-4284-9e30-261b7d2d2372.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-580edd45-3f52-4284-9e30-261b7d2d2372-root {
    text-align: center;
  }


#s-580edd45-3f52-4284-9e30-261b7d2d2372.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-580edd45-3f52-4284-9e30-261b7d2d2372-root {
    text-align: center;
  }


#s-580edd45-3f52-4284-9e30-261b7d2d2372.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-580edd45-3f52-4284-9e30-261b7d2d2372-root {
    text-align: center;
  }


#s-580edd45-3f52-4284-9e30-261b7d2d2372.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
.shg-row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-height: inherit;
  max-height: inherit;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

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

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

@media (min-width: 0px) {
[id="s-5f4678c1-9c1b-4b47-96a2-ff482e8ca365"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5f4678c1-9c1b-4b47-96a2-ff482e8ca365"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5f4678c1-9c1b-4b47-96a2-ff482e8ca365"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5f4678c1-9c1b-4b47-96a2-ff482e8ca365"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-cf4e80ad-1bd2-4a62-8556-5e038460f486 {
  margin-bottom: 0%;
padding-top: 3%;
}

#s-b5a63a90-86a9-4892-a643-93243dadaacd {
  margin-top: 64%;
padding-top: 12px;
padding-left: 19px;
padding-bottom: 12px;
padding-right: 19px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 8px;
background-color: rgba(255, 194, 34, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.5em;
}
#s-b5a63a90-86a9-4892-a643-93243dadaacd:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-b5a63a90-86a9-4892-a643-93243dadaacd:active {background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-b5a63a90-86a9-4892-a643-93243dadaacd-root {
    text-align: center;
  }


#s-b5a63a90-86a9-4892-a643-93243dadaacd.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-b5a63a90-86a9-4892-a643-93243dadaacd-root {
    text-align: center;
  }


#s-b5a63a90-86a9-4892-a643-93243dadaacd.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b5a63a90-86a9-4892-a643-93243dadaacd-root {
    text-align: center;
  }


#s-b5a63a90-86a9-4892-a643-93243dadaacd.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b5a63a90-86a9-4892-a643-93243dadaacd-root {
    text-align: center;
  }


#s-b5a63a90-86a9-4892-a643-93243dadaacd.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-b5a63a90-86a9-4892-a643-93243dadaacd-root {
    text-align: center;
  }


#s-b5a63a90-86a9-4892-a643-93243dadaacd.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
@media (min-width: 0px) {
[id="s-d7308a55-c267-44ee-908f-5a2a8db5a6ce"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d7308a55-c267-44ee-908f-5a2a8db5a6ce"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d7308a55-c267-44ee-908f-5a2a8db5a6ce"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d7308a55-c267-44ee-908f-5a2a8db5a6ce"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-2f1bc145-2aac-42ab-9402-0331e8469897 {
  margin-bottom: 0%;
padding-top: 3%;
}

#s-823fb1eb-a30f-4837-9ec4-1097b163f477 {
  margin-top: 6%;
padding-top: 12px;
padding-left: 19px;
padding-bottom: 12px;
padding-right: 19px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 8px;
background-color: rgba(255, 194, 34, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.5em;
}
#s-823fb1eb-a30f-4837-9ec4-1097b163f477:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-823fb1eb-a30f-4837-9ec4-1097b163f477:active {background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-823fb1eb-a30f-4837-9ec4-1097b163f477-root {
    text-align: center;
  }


#s-823fb1eb-a30f-4837-9ec4-1097b163f477.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-823fb1eb-a30f-4837-9ec4-1097b163f477-root {
    text-align: center;
  }


#s-823fb1eb-a30f-4837-9ec4-1097b163f477.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-823fb1eb-a30f-4837-9ec4-1097b163f477-root {
    text-align: center;
  }


#s-823fb1eb-a30f-4837-9ec4-1097b163f477.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-823fb1eb-a30f-4837-9ec4-1097b163f477-root {
    text-align: center;
  }


#s-823fb1eb-a30f-4837-9ec4-1097b163f477.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-823fb1eb-a30f-4837-9ec4-1097b163f477-root {
    text-align: center;
  }


#s-823fb1eb-a30f-4837-9ec4-1097b163f477.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
.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-c23f84c4-20b9-4bd2-bb03-93c7144b7b22 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}







  #s-c23f84c4-20b9-4bd2-bb03-93c7144b7b22 img.shogun-image {
    

    
    
    
  }


#s-c23f84c4-20b9-4bd2-bb03-93c7144b7b22 .shogun-image-content {
  
    align-items: center;
  
}

#s-88599689-fec9-4cd6-b0d5-c0e340745a9e {
  margin-bottom: 0%;
padding-top: 3%;
}

#s-d652b091-3e5b-4bb6-87ec-29a154e2c42a {
  margin-top: 6%;
padding-top: 12px;
padding-left: 19px;
padding-bottom: 12px;
padding-right: 19px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 8px;
background-color: rgba(255, 194, 34, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.5em;
}
#s-d652b091-3e5b-4bb6-87ec-29a154e2c42a:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-d652b091-3e5b-4bb6-87ec-29a154e2c42a:active {background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-d652b091-3e5b-4bb6-87ec-29a154e2c42a-root {
    text-align: center;
  }


#s-d652b091-3e5b-4bb6-87ec-29a154e2c42a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-d652b091-3e5b-4bb6-87ec-29a154e2c42a-root {
    text-align: center;
  }


#s-d652b091-3e5b-4bb6-87ec-29a154e2c42a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d652b091-3e5b-4bb6-87ec-29a154e2c42a-root {
    text-align: center;
  }


#s-d652b091-3e5b-4bb6-87ec-29a154e2c42a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d652b091-3e5b-4bb6-87ec-29a154e2c42a-root {
    text-align: center;
  }


#s-d652b091-3e5b-4bb6-87ec-29a154e2c42a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-d652b091-3e5b-4bb6-87ec-29a154e2c42a-root {
    text-align: center;
  }


#s-d652b091-3e5b-4bb6-87ec-29a154e2c42a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-1ebe25e3-22b5-477e-9155-f1814e9a4b69 {
  margin-bottom: 0%;
padding-top: 3%;
}

#s-d7a14dbe-612e-4e67-876d-2f101a9ba877 {
  margin-top: 7%;
padding-top: 12px;
padding-left: 19px;
padding-bottom: 12px;
padding-right: 19px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 8px;
background-color: rgba(255, 194, 34, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.5em;
}
#s-d7a14dbe-612e-4e67-876d-2f101a9ba877:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-d7a14dbe-612e-4e67-876d-2f101a9ba877:active {background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-d7a14dbe-612e-4e67-876d-2f101a9ba877-root {
    text-align: center;
  }


#s-d7a14dbe-612e-4e67-876d-2f101a9ba877.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-d7a14dbe-612e-4e67-876d-2f101a9ba877-root {
    text-align: center;
  }


#s-d7a14dbe-612e-4e67-876d-2f101a9ba877.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d7a14dbe-612e-4e67-876d-2f101a9ba877-root {
    text-align: center;
  }


#s-d7a14dbe-612e-4e67-876d-2f101a9ba877.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d7a14dbe-612e-4e67-876d-2f101a9ba877-root {
    text-align: center;
  }


#s-d7a14dbe-612e-4e67-876d-2f101a9ba877.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-d7a14dbe-612e-4e67-876d-2f101a9ba877-root {
    text-align: center;
  }


#s-d7a14dbe-612e-4e67-876d-2f101a9ba877.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
@media (min-width: 0px) {
[id="s-c4714c11-a63a-448d-8d23-1fbc9d28f9d5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c4714c11-a63a-448d-8d23-1fbc9d28f9d5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c4714c11-a63a-448d-8d23-1fbc9d28f9d5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c4714c11-a63a-448d-8d23-1fbc9d28f9d5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-6fb29ebb-953e-4e7e-b3af-9ee2603d74f1 {
  margin-bottom: 0%;
padding-top: 3%;
}

#s-8c05d594-790a-4ddb-9aa5-ba25e3981c9e {
  margin-top: 17px;
padding-top: 12px;
padding-left: 19px;
padding-bottom: 12px;
padding-right: 19px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 8px;
background-color: rgba(255, 194, 34, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.5em;
}
#s-8c05d594-790a-4ddb-9aa5-ba25e3981c9e:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-8c05d594-790a-4ddb-9aa5-ba25e3981c9e:active {background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-8c05d594-790a-4ddb-9aa5-ba25e3981c9e-root {
    text-align: center;
  }


#s-8c05d594-790a-4ddb-9aa5-ba25e3981c9e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-8c05d594-790a-4ddb-9aa5-ba25e3981c9e-root {
    text-align: center;
  }


#s-8c05d594-790a-4ddb-9aa5-ba25e3981c9e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-8c05d594-790a-4ddb-9aa5-ba25e3981c9e-root {
    text-align: center;
  }


#s-8c05d594-790a-4ddb-9aa5-ba25e3981c9e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-8c05d594-790a-4ddb-9aa5-ba25e3981c9e-root {
    text-align: center;
  }


#s-8c05d594-790a-4ddb-9aa5-ba25e3981c9e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-8c05d594-790a-4ddb-9aa5-ba25e3981c9e-root {
    text-align: center;
  }


#s-8c05d594-790a-4ddb-9aa5-ba25e3981c9e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
@media (min-width: 0px) {
[id="s-f716c5d9-d9b1-4449-a69b-675a9402e3dc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f716c5d9-d9b1-4449-a69b-675a9402e3dc"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f716c5d9-d9b1-4449-a69b-675a9402e3dc"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f716c5d9-d9b1-4449-a69b-675a9402e3dc"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-418c0ecc-00ed-4d5d-b1d4-0d1ea2bbb03b {
  text-align: center;
}







  #s-418c0ecc-00ed-4d5d-b1d4-0d1ea2bbb03b img.shogun-image {
    

    
    
    
  }


#s-418c0ecc-00ed-4d5d-b1d4-0d1ea2bbb03b .shogun-image-content {
  
    align-items: center;
  
}

#s-52885415-becc-415f-a712-194a5770e213 {
  margin-top: 5%;
padding-top: 12px;
padding-left: 19px;
padding-bottom: 12px;
padding-right: 19px;
border-radius: 8px;
background-color: rgba(255, 194, 34, 1);
text-align: center;
text-decoration: none;
line-height: 1.5em;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-52885415-becc-415f-a712-194a5770e213:hover {background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-52885415-becc-415f-a712-194a5770e213:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-52885415-becc-415f-a712-194a5770e213-root {
    text-align: center;
  }


#s-52885415-becc-415f-a712-194a5770e213.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-52885415-becc-415f-a712-194a5770e213-root {
    text-align: center;
  }


#s-52885415-becc-415f-a712-194a5770e213.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-52885415-becc-415f-a712-194a5770e213-root {
    text-align: center;
  }


#s-52885415-becc-415f-a712-194a5770e213.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-52885415-becc-415f-a712-194a5770e213-root {
    text-align: center;
  }


#s-52885415-becc-415f-a712-194a5770e213.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-52885415-becc-415f-a712-194a5770e213-root {
    text-align: center;
  }


#s-52885415-becc-415f-a712-194a5770e213.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-19b1e566-94e5-42f7-9f59-f3512028a020 {
  text-align: center;
}







  #s-19b1e566-94e5-42f7-9f59-f3512028a020 img.shogun-image {
    

    
    
    
  }


#s-19b1e566-94e5-42f7-9f59-f3512028a020 .shogun-image-content {
  
    align-items: center;
  
}

#s-c7a35a4a-376b-4c58-b99f-82954a6aff7e {
  margin-top: 6%;
margin-bottom: 0%;
}

#s-af35d145-1d44-489f-adc5-d185bb4b93b6 {
  margin-top: 12%;
margin-bottom: 0%;
}

#s-249819f0-c969-4caf-8f7e-54bb1fb63512 {
  margin-top: 68%;
margin-left: 5px;
padding-top: 12px;
padding-left: 19px;
padding-bottom: 12px;
padding-right: 19px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 8px;
background-color: rgba(255, 194, 34, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.5em;
}
#s-249819f0-c969-4caf-8f7e-54bb1fb63512:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-249819f0-c969-4caf-8f7e-54bb1fb63512:active {background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-249819f0-c969-4caf-8f7e-54bb1fb63512-root {
    text-align: center;
  }


#s-249819f0-c969-4caf-8f7e-54bb1fb63512.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-249819f0-c969-4caf-8f7e-54bb1fb63512-root {
    text-align: center;
  }


#s-249819f0-c969-4caf-8f7e-54bb1fb63512.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-249819f0-c969-4caf-8f7e-54bb1fb63512-root {
    text-align: center;
  }


#s-249819f0-c969-4caf-8f7e-54bb1fb63512.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-249819f0-c969-4caf-8f7e-54bb1fb63512-root {
    text-align: center;
  }


#s-249819f0-c969-4caf-8f7e-54bb1fb63512.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-249819f0-c969-4caf-8f7e-54bb1fb63512-root {
    text-align: center;
  }


#s-249819f0-c969-4caf-8f7e-54bb1fb63512.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
@media (min-width: 0px) {
[id="s-42ce2446-bd1d-454a-867a-ad71ceb28508"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-42ce2446-bd1d-454a-867a-ad71ceb28508"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-42ce2446-bd1d-454a-867a-ad71ceb28508"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-42ce2446-bd1d-454a-867a-ad71ceb28508"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-7c9e01d4-0b7d-4135-ae53-139b665703fa {
  margin-top: 70%;
margin-left: 5px;
padding-top: 12px;
padding-left: 19px;
padding-bottom: 12px;
padding-right: 19px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 8px;
background-color: rgba(255, 194, 34, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.5em;
}
#s-7c9e01d4-0b7d-4135-ae53-139b665703fa:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-7c9e01d4-0b7d-4135-ae53-139b665703fa:active {background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-7c9e01d4-0b7d-4135-ae53-139b665703fa-root {
    text-align: center;
  }


#s-7c9e01d4-0b7d-4135-ae53-139b665703fa.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-7c9e01d4-0b7d-4135-ae53-139b665703fa-root {
    text-align: center;
  }


#s-7c9e01d4-0b7d-4135-ae53-139b665703fa.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7c9e01d4-0b7d-4135-ae53-139b665703fa-root {
    text-align: center;
  }


#s-7c9e01d4-0b7d-4135-ae53-139b665703fa.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7c9e01d4-0b7d-4135-ae53-139b665703fa-root {
    text-align: center;
  }


#s-7c9e01d4-0b7d-4135-ae53-139b665703fa.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-7c9e01d4-0b7d-4135-ae53-139b665703fa-root {
    text-align: center;
  }


#s-7c9e01d4-0b7d-4135-ae53-139b665703fa.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
@media (min-width: 0px) {
[id="s-19f939e3-f38b-45e5-b968-936b1cb7dd33"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-19f939e3-f38b-45e5-b968-936b1cb7dd33"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-19f939e3-f38b-45e5-b968-936b1cb7dd33"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-19f939e3-f38b-45e5-b968-936b1cb7dd33"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-377c2419-584e-44fc-a542-0216dbdf0f30 {
  padding-top: 27%;
}

#s-94eba243-748e-45c8-ac83-61f489631ba8 {
  margin-top: 20px;
margin-left: 5px;
margin-bottom: 20px;
padding-top: 12px;
padding-left: 19px;
padding-bottom: 12px;
padding-right: 19px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 5px;
background-color: rgba(255, 194, 34, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.18em;
}
#s-94eba243-748e-45c8-ac83-61f489631ba8:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-94eba243-748e-45c8-ac83-61f489631ba8:active {border-radius: 5px !important;
background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-94eba243-748e-45c8-ac83-61f489631ba8-root {
    text-align: center;
  }


#s-94eba243-748e-45c8-ac83-61f489631ba8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-94eba243-748e-45c8-ac83-61f489631ba8-root {
    text-align: center;
  }


#s-94eba243-748e-45c8-ac83-61f489631ba8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-94eba243-748e-45c8-ac83-61f489631ba8-root {
    text-align: center;
  }


#s-94eba243-748e-45c8-ac83-61f489631ba8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-94eba243-748e-45c8-ac83-61f489631ba8-root {
    text-align: center;
  }


#s-94eba243-748e-45c8-ac83-61f489631ba8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-94eba243-748e-45c8-ac83-61f489631ba8-root {
    text-align: center;
  }


#s-94eba243-748e-45c8-ac83-61f489631ba8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-33e4a4c5-8586-4e42-8ed9-6de10702ff05 {
  margin-left: auto;
margin-right: auto;
max-width: 44px;
text-align: center;
}







  #s-33e4a4c5-8586-4e42-8ed9-6de10702ff05 img.shogun-image {
    

    
    
    
  }


#s-33e4a4c5-8586-4e42-8ed9-6de10702ff05 .shogun-image-content {
  
    align-items: center;
  
}

#s-7e27d31e-a4ca-45e9-9141-7a51b0033de1 {
  margin-top: 18px;
}

@media (min-width: 0px) {
[id="s-6e098b98-82d3-4c28-afb7-b687fc25de39"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6e098b98-82d3-4c28-afb7-b687fc25de39"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6e098b98-82d3-4c28-afb7-b687fc25de39"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6e098b98-82d3-4c28-afb7-b687fc25de39"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-4050e4d9-c943-4820-a0d4-0a739c5d50e0 {
  margin-top: 70%;
margin-left: 5px;
padding-top: 12px;
padding-left: 19px;
padding-bottom: 12px;
padding-right: 19px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 8px;
background-color: rgba(255, 194, 34, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.5em;
}
#s-4050e4d9-c943-4820-a0d4-0a739c5d50e0:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-4050e4d9-c943-4820-a0d4-0a739c5d50e0:active {background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-4050e4d9-c943-4820-a0d4-0a739c5d50e0-root {
    text-align: center;
  }


#s-4050e4d9-c943-4820-a0d4-0a739c5d50e0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-4050e4d9-c943-4820-a0d4-0a739c5d50e0-root {
    text-align: center;
  }


#s-4050e4d9-c943-4820-a0d4-0a739c5d50e0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4050e4d9-c943-4820-a0d4-0a739c5d50e0-root {
    text-align: center;
  }


#s-4050e4d9-c943-4820-a0d4-0a739c5d50e0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4050e4d9-c943-4820-a0d4-0a739c5d50e0-root {
    text-align: center;
  }


#s-4050e4d9-c943-4820-a0d4-0a739c5d50e0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-4050e4d9-c943-4820-a0d4-0a739c5d50e0-root {
    text-align: center;
  }


#s-4050e4d9-c943-4820-a0d4-0a739c5d50e0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
@media (min-width: 0px) {
[id="s-57218ec1-e3c6-4776-b012-94b4bbea66b2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-57218ec1-e3c6-4776-b012-94b4bbea66b2"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-57218ec1-e3c6-4776-b012-94b4bbea66b2"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-57218ec1-e3c6-4776-b012-94b4bbea66b2"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-a9d34caa-c590-449a-abe8-5a481e850575 {
  padding-top: 27%;
}

#s-006f04ec-7f25-4b26-a7e8-8d3c49beea87 {
  margin-top: 20px;
margin-left: 5px;
margin-bottom: 20px;
padding-top: 12px;
padding-left: 19px;
padding-bottom: 12px;
padding-right: 19px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 5px;
background-color: rgba(255, 194, 34, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.18em;
}
#s-006f04ec-7f25-4b26-a7e8-8d3c49beea87:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-006f04ec-7f25-4b26-a7e8-8d3c49beea87:active {border-radius: 5px !important;
background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-006f04ec-7f25-4b26-a7e8-8d3c49beea87-root {
    text-align: center;
  }


#s-006f04ec-7f25-4b26-a7e8-8d3c49beea87.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-006f04ec-7f25-4b26-a7e8-8d3c49beea87-root {
    text-align: center;
  }


#s-006f04ec-7f25-4b26-a7e8-8d3c49beea87.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-006f04ec-7f25-4b26-a7e8-8d3c49beea87-root {
    text-align: center;
  }


#s-006f04ec-7f25-4b26-a7e8-8d3c49beea87.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-006f04ec-7f25-4b26-a7e8-8d3c49beea87-root {
    text-align: center;
  }


#s-006f04ec-7f25-4b26-a7e8-8d3c49beea87.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-006f04ec-7f25-4b26-a7e8-8d3c49beea87-root {
    text-align: center;
  }


#s-006f04ec-7f25-4b26-a7e8-8d3c49beea87.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-dc6fd3c2-3df1-42ed-ba80-53a343011800 {
  margin-left: auto;
margin-right: auto;
padding-top: 17px;
padding-bottom: 20px;
min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}








#s-dc6fd3c2-3df1-42ed-ba80-53a343011800 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dc6fd3c2-3df1-42ed-ba80-53a343011800.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bc1bcb8a-5c56-4404-892b-e15c30bee70b {
  margin-top: 55px;
margin-left: auto;
margin-bottom: 55px;
margin-right: auto;
max-width: 210px;
text-align: center;
}







  #s-bc1bcb8a-5c56-4404-892b-e15c30bee70b img.shogun-image {
    

    
    
    
  }


#s-bc1bcb8a-5c56-4404-892b-e15c30bee70b .shogun-image-content {
  
    align-items: center;
  
}

#s-9645cc3e-b5de-4bc7-8e16-8878302c0fd9 {
  margin-top: 32px;
margin-left: 5px;
margin-bottom: 58px;
padding-top: 12px;
padding-left: 19px;
padding-bottom: 12px;
padding-right: 19px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 5px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.18em;
}
#s-9645cc3e-b5de-4bc7-8e16-8878302c0fd9:hover {border-radius: 5px !important;
background-color: rgba(240, 221, 125, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-9645cc3e-b5de-4bc7-8e16-8878302c0fd9:active {border-radius: 5px !important;
background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-9645cc3e-b5de-4bc7-8e16-8878302c0fd9-root {
    text-align: center;
  }


#s-9645cc3e-b5de-4bc7-8e16-8878302c0fd9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-9645cc3e-b5de-4bc7-8e16-8878302c0fd9-root {
    text-align: center;
  }


#s-9645cc3e-b5de-4bc7-8e16-8878302c0fd9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9645cc3e-b5de-4bc7-8e16-8878302c0fd9-root {
    text-align: center;
  }


#s-9645cc3e-b5de-4bc7-8e16-8878302c0fd9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9645cc3e-b5de-4bc7-8e16-8878302c0fd9-root {
    text-align: center;
  }


#s-9645cc3e-b5de-4bc7-8e16-8878302c0fd9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-9645cc3e-b5de-4bc7-8e16-8878302c0fd9-root {
    text-align: center;
  }


#s-9645cc3e-b5de-4bc7-8e16-8878302c0fd9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-4db5198f-e55b-4242-a905-16a8b10196b2 {
  margin-left: auto;
margin-right: auto;
min-height: 100px;
}

#s-4db5198f-e55b-4242-a905-16a8b10196b2 {
  background-image: url();
}








#s-4db5198f-e55b-4242-a905-16a8b10196b2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4db5198f-e55b-4242-a905-16a8b10196b2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c257d410-dd93-4e67-bcc4-6e78420e38a2 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 25px;
min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}








#s-c257d410-dd93-4e67-bcc4-6e78420e38a2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c257d410-dd93-4e67-bcc4-6e78420e38a2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a75ecac1-911d-4a91-b7be-42b7a074b80e {
  min-height: 50px;
}








#s-a75ecac1-911d-4a91-b7be-42b7a074b80e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a75ecac1-911d-4a91-b7be-42b7a074b80e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-47671f3c-5124-482e-855a-22fdd7c3aa23 {
  padding-top: 5px;
padding-bottom: 5px;
}

#s-924cf185-d453-4a77-b979-90ddacecfc50 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 5px;
background-color: rgba(255, 194, 34, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-924cf185-d453-4a77-b979-90ddacecfc50:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(236, 236, 236, 1) !important;}#s-924cf185-d453-4a77-b979-90ddacecfc50:active {border-radius: 5px !important;
background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-924cf185-d453-4a77-b979-90ddacecfc50-root {
    text-align: center;
  }


#s-924cf185-d453-4a77-b979-90ddacecfc50.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-924cf185-d453-4a77-b979-90ddacecfc50-root {
    text-align: center;
  }


#s-924cf185-d453-4a77-b979-90ddacecfc50.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-924cf185-d453-4a77-b979-90ddacecfc50-root {
    text-align: center;
  }


#s-924cf185-d453-4a77-b979-90ddacecfc50.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-924cf185-d453-4a77-b979-90ddacecfc50-root {
    text-align: center;
  }


#s-924cf185-d453-4a77-b979-90ddacecfc50.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-924cf185-d453-4a77-b979-90ddacecfc50-root {
    text-align: center;
  }


#s-924cf185-d453-4a77-b979-90ddacecfc50.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}
#s-7ff6eb02-58bb-4dac-a441-1c0f8cc54281 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-7ff6eb02-58bb-4dac-a441-1c0f8cc54281 {
  display: none;
}
#s-7ff6eb02-58bb-4dac-a441-1c0f8cc54281, #wrap-s-7ff6eb02-58bb-4dac-a441-1c0f8cc54281 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7ff6eb02-58bb-4dac-a441-1c0f8cc54281 {
  display: none;
}
#s-7ff6eb02-58bb-4dac-a441-1c0f8cc54281, #wrap-s-7ff6eb02-58bb-4dac-a441-1c0f8cc54281 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7ff6eb02-58bb-4dac-a441-1c0f8cc54281 {
  display: none;
}
#s-7ff6eb02-58bb-4dac-a441-1c0f8cc54281, #wrap-s-7ff6eb02-58bb-4dac-a441-1c0f8cc54281 { display: none !important; }}







#s-7ff6eb02-58bb-4dac-a441-1c0f8cc54281 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7ff6eb02-58bb-4dac-a441-1c0f8cc54281.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5ced9ddb-6211-4023-92a2-f8085e6e9924 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-5ced9ddb-6211-4023-92a2-f8085e6e9924 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5ced9ddb-6211-4023-92a2-f8085e6e9924.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3f0a876d-96fc-4b2c-89bf-ff0c998f54dc {
  margin-left: auto;
margin-right: auto;
padding-bottom: 20px;
min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}








#s-3f0a876d-96fc-4b2c-89bf-ff0c998f54dc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3f0a876d-96fc-4b2c-89bf-ff0c998f54dc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dd90ba44-8882-4570-ab2c-d1b8c3e200c6 {
  margin-top: 5px;
margin-bottom: -10px;
}

#s-a1ba8a9d-27a2-435a-b25e-57fe5cc86e5c {
  margin-bottom: 5px;
}

#s-89d2afd3-471f-4daf-b8a7-155a801e78c9 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 5px;
background-color: rgba(255, 194, 34, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-89d2afd3-471f-4daf-b8a7-155a801e78c9:hover {border-radius: 5px !important;
background-color: rgba(247, 187, 32, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-89d2afd3-471f-4daf-b8a7-155a801e78c9:active {border-radius: 5px !important;
background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-89d2afd3-471f-4daf-b8a7-155a801e78c9-root {
    text-align: center;
  }


#s-89d2afd3-471f-4daf-b8a7-155a801e78c9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-89d2afd3-471f-4daf-b8a7-155a801e78c9-root {
    text-align: center;
  }


#s-89d2afd3-471f-4daf-b8a7-155a801e78c9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-89d2afd3-471f-4daf-b8a7-155a801e78c9-root {
    text-align: center;
  }


#s-89d2afd3-471f-4daf-b8a7-155a801e78c9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-89d2afd3-471f-4daf-b8a7-155a801e78c9-root {
    text-align: center;
  }


#s-89d2afd3-471f-4daf-b8a7-155a801e78c9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-89d2afd3-471f-4daf-b8a7-155a801e78c9-root {
    text-align: center;
  }


#s-89d2afd3-471f-4daf-b8a7-155a801e78c9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}
#s-a8f722ec-b123-427d-862b-f296ec4072c3 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-a8f722ec-b123-427d-862b-f296ec4072c3 {
  display: none;
}
#s-a8f722ec-b123-427d-862b-f296ec4072c3, #wrap-s-a8f722ec-b123-427d-862b-f296ec4072c3 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a8f722ec-b123-427d-862b-f296ec4072c3 {
  display: none;
}
#s-a8f722ec-b123-427d-862b-f296ec4072c3, #wrap-s-a8f722ec-b123-427d-862b-f296ec4072c3 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a8f722ec-b123-427d-862b-f296ec4072c3 {
  display: none;
}
#s-a8f722ec-b123-427d-862b-f296ec4072c3, #wrap-s-a8f722ec-b123-427d-862b-f296ec4072c3 { display: none !important; }}







#s-a8f722ec-b123-427d-862b-f296ec4072c3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a8f722ec-b123-427d-862b-f296ec4072c3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-737cea8f-576e-46ef-8a26-1a18d9035b83 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-737cea8f-576e-46ef-8a26-1a18d9035b83 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-737cea8f-576e-46ef-8a26-1a18d9035b83.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7efea063-1965-4a4c-8f60-a97f9a551024 {
  margin-left: auto;
margin-right: auto;
padding-bottom: 20px;
min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}








#s-7efea063-1965-4a4c-8f60-a97f9a551024 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7efea063-1965-4a4c-8f60-a97f9a551024.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4f925381-3257-4f49-9249-661729668756 {
  margin-top: 15px;
margin-bottom: -10px;
}

#s-24abdcfc-fa6b-49ee-b0c8-a43b749c78f1 {
  margin-top: 7px;
padding-top: 5px;
padding-bottom: 5px;
}

#s-f520c6ab-d1bb-4b8f-a1a6-ad11f08b7283 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 5px;
background-color: rgba(255, 194, 34, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-f520c6ab-d1bb-4b8f-a1a6-ad11f08b7283:hover {border-radius: 5px !important;
background-color: rgba(247, 188, 35, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-f520c6ab-d1bb-4b8f-a1a6-ad11f08b7283:active {border-radius: 5px !important;
background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-f520c6ab-d1bb-4b8f-a1a6-ad11f08b7283-root {
    text-align: center;
  }


#s-f520c6ab-d1bb-4b8f-a1a6-ad11f08b7283.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-f520c6ab-d1bb-4b8f-a1a6-ad11f08b7283-root {
    text-align: center;
  }


#s-f520c6ab-d1bb-4b8f-a1a6-ad11f08b7283.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f520c6ab-d1bb-4b8f-a1a6-ad11f08b7283-root {
    text-align: center;
  }


#s-f520c6ab-d1bb-4b8f-a1a6-ad11f08b7283.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f520c6ab-d1bb-4b8f-a1a6-ad11f08b7283-root {
    text-align: center;
  }


#s-f520c6ab-d1bb-4b8f-a1a6-ad11f08b7283.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-f520c6ab-d1bb-4b8f-a1a6-ad11f08b7283-root {
    text-align: center;
  }


#s-f520c6ab-d1bb-4b8f-a1a6-ad11f08b7283.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}
#s-81c04e7e-d97d-4f21-8259-8daf453a35a4 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-81c04e7e-d97d-4f21-8259-8daf453a35a4 {
  display: none;
}
#s-81c04e7e-d97d-4f21-8259-8daf453a35a4, #wrap-s-81c04e7e-d97d-4f21-8259-8daf453a35a4 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-81c04e7e-d97d-4f21-8259-8daf453a35a4 {
  display: none;
}
#s-81c04e7e-d97d-4f21-8259-8daf453a35a4, #wrap-s-81c04e7e-d97d-4f21-8259-8daf453a35a4 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-81c04e7e-d97d-4f21-8259-8daf453a35a4 {
  display: none;
}
#s-81c04e7e-d97d-4f21-8259-8daf453a35a4, #wrap-s-81c04e7e-d97d-4f21-8259-8daf453a35a4 { display: none !important; }}







#s-81c04e7e-d97d-4f21-8259-8daf453a35a4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-81c04e7e-d97d-4f21-8259-8daf453a35a4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-05b7b567-af8d-4526-aea0-dcac7f1d5d92 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-05b7b567-af8d-4526-aea0-dcac7f1d5d92 {
  display: none;
}
#s-05b7b567-af8d-4526-aea0-dcac7f1d5d92, #wrap-s-05b7b567-af8d-4526-aea0-dcac7f1d5d92 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-05b7b567-af8d-4526-aea0-dcac7f1d5d92 {
  display: none;
}
#s-05b7b567-af8d-4526-aea0-dcac7f1d5d92, #wrap-s-05b7b567-af8d-4526-aea0-dcac7f1d5d92 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-05b7b567-af8d-4526-aea0-dcac7f1d5d92 {
  display: none;
}
#s-05b7b567-af8d-4526-aea0-dcac7f1d5d92, #wrap-s-05b7b567-af8d-4526-aea0-dcac7f1d5d92 { display: none !important; }}







#s-05b7b567-af8d-4526-aea0-dcac7f1d5d92 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-05b7b567-af8d-4526-aea0-dcac7f1d5d92.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6c4ebc1a-aa71-4bc8-9a76-86b1ca7568d8 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-6c4ebc1a-aa71-4bc8-9a76-86b1ca7568d8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6c4ebc1a-aa71-4bc8-9a76-86b1ca7568d8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5b4cf52a-50fe-4e50-8e08-f7a838e5a7e0 {
  margin-left: auto;
margin-right: auto;
padding-bottom: 20px;
min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}








#s-5b4cf52a-50fe-4e50-8e08-f7a838e5a7e0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5b4cf52a-50fe-4e50-8e08-f7a838e5a7e0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-15ad803d-a63d-442d-8dbd-19f5be526bcd {
  margin-bottom: -25px;
}

#s-13124bd1-4f85-4ccc-acff-3fcd87c7b62b {
  margin-top: 15px;
margin-bottom: 15px;
}

#s-24a539ee-89fe-4c31-94cf-8a29d0ff5454 {
  margin-left: auto;
margin-bottom: 33px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 5px;
background-color: rgba(255, 194, 34, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-24a539ee-89fe-4c31-94cf-8a29d0ff5454:hover {border-radius: 5px !important;
background-color: rgba(248, 188, 32, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-24a539ee-89fe-4c31-94cf-8a29d0ff5454:active {border-radius: 5px !important;
background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-24a539ee-89fe-4c31-94cf-8a29d0ff5454-root {
    text-align: center;
  }


#s-24a539ee-89fe-4c31-94cf-8a29d0ff5454.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-24a539ee-89fe-4c31-94cf-8a29d0ff5454-root {
    text-align: center;
  }


#s-24a539ee-89fe-4c31-94cf-8a29d0ff5454.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-24a539ee-89fe-4c31-94cf-8a29d0ff5454-root {
    text-align: center;
  }


#s-24a539ee-89fe-4c31-94cf-8a29d0ff5454.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-24a539ee-89fe-4c31-94cf-8a29d0ff5454-root {
    text-align: center;
  }


#s-24a539ee-89fe-4c31-94cf-8a29d0ff5454.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-24a539ee-89fe-4c31-94cf-8a29d0ff5454-root {
    text-align: center;
  }


#s-24a539ee-89fe-4c31-94cf-8a29d0ff5454.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}
#s-3b9762f4-9cef-454f-bc09-c169e9dfe4c8 {
  background-repeat: no-repeat;
background-size: cover;
padding-top: 13%;
padding-left: 5%;
padding-bottom: 13%;
padding-right: 5%;
min-height: 300px;
max-width: 1920px;
background-position: center center;
background-attachment: scroll;
}

#s-3b9762f4-9cef-454f-bc09-c169e9dfe4c8 {
  background-image: url(https://i.shgcdn.com/91465ee0-a634-4884-a722-a30bd77d4b3a/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-3b9762f4-9cef-454f-bc09-c169e9dfe4c8 > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0;
}#s-3b9762f4-9cef-454f-bc09-c169e9dfe4c8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-00e75085-cfc3-4d18-882a-b2daf31911e3 {
  background-color: rgba(0, 0, 0, 0);
}
@media (min-width: 768px) and (max-width: 991px){#s-00e75085-cfc3-4d18-882a-b2daf31911e3 {
  
}
}@media (max-width: 767px){#s-00e75085-cfc3-4d18-882a-b2daf31911e3 {
  
}
}
@media (min-width: 0px) {
[id="s-00e75085-cfc3-4d18-882a-b2daf31911e3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-00e75085-cfc3-4d18-882a-b2daf31911e3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-00e75085-cfc3-4d18-882a-b2daf31911e3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-00e75085-cfc3-4d18-882a-b2daf31911e3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-f667a24a-d496-480f-a311-1e80d23ae2ce {
  min-height: 350px;
}








#s-f667a24a-d496-480f-a311-1e80d23ae2ce > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f667a24a-d496-480f-a311-1e80d23ae2ce.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

#s-66988b38-071d-4c65-b5a8-955481957df0 {
  text-align: left;
}

#s-66988b38-071d-4c65-b5a8-955481957df0 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "HK Grotesk Pro";
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: left;
}



#s-4648d215-3ddd-4945-a41f-352b3ad27e55 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 6px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-4648d215-3ddd-4945-a41f-352b3ad27e55: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-4648d215-3ddd-4945-a41f-352b3ad27e55:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-4648d215-3ddd-4945-a41f-352b3ad27e55-root {
    text-align: left;
  }


#s-4648d215-3ddd-4945-a41f-352b3ad27e55.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-4648d215-3ddd-4945-a41f-352b3ad27e55-root {
    text-align: left;
  }


#s-4648d215-3ddd-4945-a41f-352b3ad27e55.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4648d215-3ddd-4945-a41f-352b3ad27e55-root {
    text-align: left;
  }


#s-4648d215-3ddd-4945-a41f-352b3ad27e55.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4648d215-3ddd-4945-a41f-352b3ad27e55-root {
    text-align: left;
  }


#s-4648d215-3ddd-4945-a41f-352b3ad27e55.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-4648d215-3ddd-4945-a41f-352b3ad27e55-root {
    text-align: left;
  }


#s-4648d215-3ddd-4945-a41f-352b3ad27e55.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}
#s-603b8915-c21a-429d-8c2e-23f14e783b57 {
  text-align: center;
}







  #s-603b8915-c21a-429d-8c2e-23f14e783b57 img.shogun-image {
    

    
    
    
  }


#s-603b8915-c21a-429d-8c2e-23f14e783b57 .shogun-image-content {
  
    align-items: center;
  
}

#s-7a5f30fb-c5f6-4689-bea7-d8a66f398e58 {
  margin-left: auto;
margin-right: auto;
padding-bottom: 20px;
min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}








#s-7a5f30fb-c5f6-4689-bea7-d8a66f398e58 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7a5f30fb-c5f6-4689-bea7-d8a66f398e58.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-edbb8e3c-ac22-430b-ab63-3f6aafa8f462 {
  margin-top: 15px;
margin-bottom: -10px;
}

#s-e4c870c1-c48e-45c8-84c3-b3a282c29954 {
  margin-top: 6px;
margin-bottom: 5px;
}

#s-9bfd6b3c-16e9-4381-8495-36bf1fcb0333 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 5px;
background-color: rgba(255, 194, 34, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-9bfd6b3c-16e9-4381-8495-36bf1fcb0333:hover {border-radius: 5px !important;
background-color: rgba(247, 188, 35, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-9bfd6b3c-16e9-4381-8495-36bf1fcb0333:active {border-radius: 5px !important;
background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-9bfd6b3c-16e9-4381-8495-36bf1fcb0333-root {
    text-align: center;
  }


#s-9bfd6b3c-16e9-4381-8495-36bf1fcb0333.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-9bfd6b3c-16e9-4381-8495-36bf1fcb0333-root {
    text-align: center;
  }


#s-9bfd6b3c-16e9-4381-8495-36bf1fcb0333.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9bfd6b3c-16e9-4381-8495-36bf1fcb0333-root {
    text-align: center;
  }


#s-9bfd6b3c-16e9-4381-8495-36bf1fcb0333.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9bfd6b3c-16e9-4381-8495-36bf1fcb0333-root {
    text-align: center;
  }


#s-9bfd6b3c-16e9-4381-8495-36bf1fcb0333.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-9bfd6b3c-16e9-4381-8495-36bf1fcb0333-root {
    text-align: center;
  }


#s-9bfd6b3c-16e9-4381-8495-36bf1fcb0333.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}
#s-e2942438-fdde-4f23-92ac-24921a06b001 {
  margin-left: auto;
margin-right: auto;
padding-top: 17px;
padding-bottom: 20px;
min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}








#s-e2942438-fdde-4f23-92ac-24921a06b001 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e2942438-fdde-4f23-92ac-24921a06b001.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1cc4ba59-e75e-43a0-b245-bea878e04b5c {
  margin-top: 32px;
margin-left: 5px;
margin-bottom: 58px;
padding-top: 12px;
padding-left: 19px;
padding-bottom: 12px;
padding-right: 19px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 5px;
background-color: rgba(255, 194, 34, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.5em;
}
#s-1cc4ba59-e75e-43a0-b245-bea878e04b5c:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-1cc4ba59-e75e-43a0-b245-bea878e04b5c:active {border-radius: 5px !important;
background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-1cc4ba59-e75e-43a0-b245-bea878e04b5c-root {
    text-align: center;
  }


#s-1cc4ba59-e75e-43a0-b245-bea878e04b5c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-1cc4ba59-e75e-43a0-b245-bea878e04b5c-root {
    text-align: center;
  }


#s-1cc4ba59-e75e-43a0-b245-bea878e04b5c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-1cc4ba59-e75e-43a0-b245-bea878e04b5c-root {
    text-align: center;
  }


#s-1cc4ba59-e75e-43a0-b245-bea878e04b5c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-1cc4ba59-e75e-43a0-b245-bea878e04b5c-root {
    text-align: center;
  }


#s-1cc4ba59-e75e-43a0-b245-bea878e04b5c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-1cc4ba59-e75e-43a0-b245-bea878e04b5c-root {
    text-align: center;
  }


#s-1cc4ba59-e75e-43a0-b245-bea878e04b5c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-ef81a671-c94e-4c80-a088-7e50d2a8c37e {
  margin-left: auto;
margin-right: auto;
padding-bottom: 20px;
min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}








#s-ef81a671-c94e-4c80-a088-7e50d2a8c37e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ef81a671-c94e-4c80-a088-7e50d2a8c37e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-476c134f-ee49-4911-9072-9fffe84f3987 {
  margin-top: 9px;
margin-bottom: -25px;
}

#s-47ebfd5c-fccb-4f5b-82bd-9c7b960d8e5c {
  margin-top: 15px;
padding-top: 5px;
padding-bottom: 5px;
}

#s-3fb80616-220b-4c4c-bb9f-7ef053eeed8c {
  margin-left: 5px;
margin-bottom: 30px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 5px;
background-color: rgba(255, 194, 34, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-3fb80616-220b-4c4c-bb9f-7ef053eeed8c:hover {border-radius: 5px !important;
background-color: rgba(241, 184, 33, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-3fb80616-220b-4c4c-bb9f-7ef053eeed8c:active {border-radius: 5px !important;
background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-3fb80616-220b-4c4c-bb9f-7ef053eeed8c-root {
    text-align: center;
  }


#s-3fb80616-220b-4c4c-bb9f-7ef053eeed8c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-3fb80616-220b-4c4c-bb9f-7ef053eeed8c-root {
    text-align: center;
  }


#s-3fb80616-220b-4c4c-bb9f-7ef053eeed8c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-3fb80616-220b-4c4c-bb9f-7ef053eeed8c-root {
    text-align: center;
  }


#s-3fb80616-220b-4c4c-bb9f-7ef053eeed8c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-3fb80616-220b-4c4c-bb9f-7ef053eeed8c-root {
    text-align: center;
  }


#s-3fb80616-220b-4c4c-bb9f-7ef053eeed8c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-3fb80616-220b-4c4c-bb9f-7ef053eeed8c-root {
    text-align: center;
  }


#s-3fb80616-220b-4c4c-bb9f-7ef053eeed8c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}
#s-a615dcde-ca9a-429c-9040-065eb3333b66 {
  margin-left: auto;
margin-right: auto;
padding-top: 17px;
padding-bottom: 20px;
min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}








#s-a615dcde-ca9a-429c-9040-065eb3333b66 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a615dcde-ca9a-429c-9040-065eb3333b66.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6fb7008a-638a-43c3-895f-f92ee9f14db8 {
  padding-top: 5px;
padding-bottom: 5px;
}

#s-08573a29-ccdb-42b7-8956-46dd06833f37 {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 25px;
padding-top: 15px;
padding-left: 37px;
padding-bottom: 15px;
padding-right: 38px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 5px;
background-color: rgba(255, 194, 34, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
line-height: 1.5em;
}
#s-08573a29-ccdb-42b7-8956-46dd06833f37:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-08573a29-ccdb-42b7-8956-46dd06833f37:active {border-radius: 5px !important;
background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-08573a29-ccdb-42b7-8956-46dd06833f37-root {
    text-align: center;
  }


#s-08573a29-ccdb-42b7-8956-46dd06833f37.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-08573a29-ccdb-42b7-8956-46dd06833f37-root {
    text-align: center;
  }


#s-08573a29-ccdb-42b7-8956-46dd06833f37.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-08573a29-ccdb-42b7-8956-46dd06833f37-root {
    text-align: center;
  }


#s-08573a29-ccdb-42b7-8956-46dd06833f37.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-08573a29-ccdb-42b7-8956-46dd06833f37-root {
    text-align: center;
  }


#s-08573a29-ccdb-42b7-8956-46dd06833f37.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-08573a29-ccdb-42b7-8956-46dd06833f37-root {
    text-align: center;
  }


#s-08573a29-ccdb-42b7-8956-46dd06833f37.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-1870ab80-e2ea-4633-8d16-4455507f9bba {
  margin-left: auto;
margin-bottom: -8px;
margin-right: auto;
padding-left: 1px;
padding-right: 1px;
max-width: 1400px;
}
@media (min-width: 1200px){#s-1870ab80-e2ea-4633-8d16-4455507f9bba {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-1870ab80-e2ea-4633-8d16-4455507f9bba {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-1870ab80-e2ea-4633-8d16-4455507f9bba {
  display: none;
}
#s-1870ab80-e2ea-4633-8d16-4455507f9bba, #wrap-s-1870ab80-e2ea-4633-8d16-4455507f9bba { display: none !important; }}@media (max-width: 767px){#s-1870ab80-e2ea-4633-8d16-4455507f9bba {
  display: none;
}
#s-1870ab80-e2ea-4633-8d16-4455507f9bba, #wrap-s-1870ab80-e2ea-4633-8d16-4455507f9bba { display: none !important; }}
#s-1870ab80-e2ea-4633-8d16-4455507f9bba .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-1870ab80-e2ea-4633-8d16-4455507f9bba .shg-sld-nav-button.shg-sld-left,
#s-1870ab80-e2ea-4633-8d16-4455507f9bba .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-bf3af307-fd96-4377-b247-f36c1eb75b0c {
  margin-left: 4%;
margin-right: 4%;
padding-left: 50px;
padding-right: 50px;
min-height: 50px;
max-width: 1000px;
}








#s-bf3af307-fd96-4377-b247-f36c1eb75b0c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bf3af307-fd96-4377-b247-f36c1eb75b0c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df {
  max-width: 375px;
aspect-ratio: 375/263;
text-align: left;
}





  #s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df img.shogun-image,
  #s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df {
    width: 100%;
    height: auto;
  }

  #s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df.shogun-image {
    
    
  }


.s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df .shogun-image-content {
  
    align-items: center;
  
}

.s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df {
      --shg-aspect-ratio: calc(375/263); 
    }

    .s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df.shogun-image-container {
      position: relative;
    }

    .s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df img.shogun-image,
  #s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df {
    width: 100%;
    height: auto;
  }

  #s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df.shogun-image {
    
    
  }


.s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df .shogun-image-content {
  
    align-items: center;
  
}

.s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df {
      --shg-aspect-ratio: calc(375/263); 
    }

    .s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df.shogun-image-container {
      position: relative;
    }

    .s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df img.shogun-image,
  #s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df {
    width: 100%;
    height: auto;
  }

  #s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df.shogun-image {
    
    
  }


.s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df .shogun-image-content {
  
    align-items: center;
  
}

.s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df {
      --shg-aspect-ratio: calc(375/263); 
    }

    .s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df.shogun-image-container {
      position: relative;
    }

    .s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df img.shogun-image,
  #s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df {
    width: 100%;
    height: auto;
  }

  #s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df.shogun-image {
    
    
  }


.s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df .shogun-image-content {
  
    align-items: center;
  
}

.s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df {
      --shg-aspect-ratio: calc(375/263); 
    }

    .s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df.shogun-image-container {
      position: relative;
    }

    .s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df img.shogun-image,
  #s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df {
    width: 100%;
    height: auto;
  }

  #s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df.shogun-image {
    
    
  }


.s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df .shogun-image-content {
  
    align-items: center;
  
}

.s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df {
      --shg-aspect-ratio: calc(375/263); 
    }

    .s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df.shogun-image-container {
      position: relative;
    }

    .s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3af95c05-0d61-4570-9abe-c3a7a3f2b8df img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-29fb0659-fb0b-42dd-b84e-adbaca8d3848 {
  text-align: left;
}

#s-3a69ea1c-57a9-4409-8b1d-6b8e20d8dfb2 {
  margin-top: 6%;
}
@media (min-width: 1200px){#s-3a69ea1c-57a9-4409-8b1d-6b8e20d8dfb2 {
  display: none;
}
#s-3a69ea1c-57a9-4409-8b1d-6b8e20d8dfb2, #wrap-s-3a69ea1c-57a9-4409-8b1d-6b8e20d8dfb2 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3a69ea1c-57a9-4409-8b1d-6b8e20d8dfb2 {
  display: none;
}
#s-3a69ea1c-57a9-4409-8b1d-6b8e20d8dfb2, #wrap-s-3a69ea1c-57a9-4409-8b1d-6b8e20d8dfb2 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3a69ea1c-57a9-4409-8b1d-6b8e20d8dfb2 {
  display: none;
}
#s-3a69ea1c-57a9-4409-8b1d-6b8e20d8dfb2, #wrap-s-3a69ea1c-57a9-4409-8b1d-6b8e20d8dfb2 { display: none !important; }}@media (max-width: 767px){#s-3a69ea1c-57a9-4409-8b1d-6b8e20d8dfb2 {
  display: none;
}
#s-3a69ea1c-57a9-4409-8b1d-6b8e20d8dfb2, #wrap-s-3a69ea1c-57a9-4409-8b1d-6b8e20d8dfb2 { display: none !important; }}
#s-d9f5efb3-722e-40de-80d5-ae1148439502 {
  margin-left: 4%;
margin-right: 4%;
padding-left: 50px;
padding-right: 50px;
min-height: 50px;
max-width: 1000px;
}








#s-d9f5efb3-722e-40de-80d5-ae1148439502 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d9f5efb3-722e-40de-80d5-ae1148439502.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5f623918-254d-49a2-bc0a-8e4f87929dc9 {
  max-width: 215px;
aspect-ratio: 430/68;
text-align: left;
}





  #s-5f623918-254d-49a2-bc0a-8e4f87929dc9 img.shogun-image,
  #s-5f623918-254d-49a2-bc0a-8e4f87929dc9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5f623918-254d-49a2-bc0a-8e4f87929dc9 {
    width: 100%;
    height: auto;
  }

  #s-5f623918-254d-49a2-bc0a-8e4f87929dc9 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5f623918-254d-49a2-bc0a-8e4f87929dc9.shogun-image {
    
    
  }


.s-5f623918-254d-49a2-bc0a-8e4f87929dc9 .shogun-image-content {
  
    align-items: center;
  
}

.s-5f623918-254d-49a2-bc0a-8e4f87929dc9.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-5f623918-254d-49a2-bc0a-8e4f87929dc9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5f623918-254d-49a2-bc0a-8e4f87929dc9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5f623918-254d-49a2-bc0a-8e4f87929dc9 {
      --shg-aspect-ratio: calc(430/68); 
    }

    .s-5f623918-254d-49a2-bc0a-8e4f87929dc9.shogun-image-container {
      position: relative;
    }

    .s-5f623918-254d-49a2-bc0a-8e4f87929dc9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5f623918-254d-49a2-bc0a-8e4f87929dc9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5f623918-254d-49a2-bc0a-8e4f87929dc9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-5f623918-254d-49a2-bc0a-8e4f87929dc9 img.shogun-image,
  #s-5f623918-254d-49a2-bc0a-8e4f87929dc9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5f623918-254d-49a2-bc0a-8e4f87929dc9 {
    width: 100%;
    height: auto;
  }

  #s-5f623918-254d-49a2-bc0a-8e4f87929dc9 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5f623918-254d-49a2-bc0a-8e4f87929dc9.shogun-image {
    
    
  }


.s-5f623918-254d-49a2-bc0a-8e4f87929dc9 .shogun-image-content {
  
    align-items: center;
  
}

.s-5f623918-254d-49a2-bc0a-8e4f87929dc9.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-5f623918-254d-49a2-bc0a-8e4f87929dc9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5f623918-254d-49a2-bc0a-8e4f87929dc9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5f623918-254d-49a2-bc0a-8e4f87929dc9 {
      --shg-aspect-ratio: calc(430/68); 
    }

    .s-5f623918-254d-49a2-bc0a-8e4f87929dc9.shogun-image-container {
      position: relative;
    }

    .s-5f623918-254d-49a2-bc0a-8e4f87929dc9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5f623918-254d-49a2-bc0a-8e4f87929dc9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5f623918-254d-49a2-bc0a-8e4f87929dc9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-5f623918-254d-49a2-bc0a-8e4f87929dc9 img.shogun-image,
  #s-5f623918-254d-49a2-bc0a-8e4f87929dc9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5f623918-254d-49a2-bc0a-8e4f87929dc9 {
    width: 100%;
    height: auto;
  }

  #s-5f623918-254d-49a2-bc0a-8e4f87929dc9 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5f623918-254d-49a2-bc0a-8e4f87929dc9.shogun-image {
    
    
  }


.s-5f623918-254d-49a2-bc0a-8e4f87929dc9 .shogun-image-content {
  
    align-items: center;
  
}

.s-5f623918-254d-49a2-bc0a-8e4f87929dc9.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-5f623918-254d-49a2-bc0a-8e4f87929dc9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5f623918-254d-49a2-bc0a-8e4f87929dc9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5f623918-254d-49a2-bc0a-8e4f87929dc9 {
      --shg-aspect-ratio: calc(430/68); 
    }

    .s-5f623918-254d-49a2-bc0a-8e4f87929dc9.shogun-image-container {
      position: relative;
    }

    .s-5f623918-254d-49a2-bc0a-8e4f87929dc9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5f623918-254d-49a2-bc0a-8e4f87929dc9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5f623918-254d-49a2-bc0a-8e4f87929dc9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-5f623918-254d-49a2-bc0a-8e4f87929dc9 img.shogun-image,
  #s-5f623918-254d-49a2-bc0a-8e4f87929dc9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5f623918-254d-49a2-bc0a-8e4f87929dc9 {
    width: 100%;
    height: auto;
  }

  #s-5f623918-254d-49a2-bc0a-8e4f87929dc9 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5f623918-254d-49a2-bc0a-8e4f87929dc9.shogun-image {
    
    
  }


.s-5f623918-254d-49a2-bc0a-8e4f87929dc9 .shogun-image-content {
  
    align-items: center;
  
}

.s-5f623918-254d-49a2-bc0a-8e4f87929dc9.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-5f623918-254d-49a2-bc0a-8e4f87929dc9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5f623918-254d-49a2-bc0a-8e4f87929dc9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5f623918-254d-49a2-bc0a-8e4f87929dc9 {
      --shg-aspect-ratio: calc(430/68); 
    }

    .s-5f623918-254d-49a2-bc0a-8e4f87929dc9.shogun-image-container {
      position: relative;
    }

    .s-5f623918-254d-49a2-bc0a-8e4f87929dc9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5f623918-254d-49a2-bc0a-8e4f87929dc9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5f623918-254d-49a2-bc0a-8e4f87929dc9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-5f623918-254d-49a2-bc0a-8e4f87929dc9 img.shogun-image,
  #s-5f623918-254d-49a2-bc0a-8e4f87929dc9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5f623918-254d-49a2-bc0a-8e4f87929dc9 {
    width: 100%;
    height: auto;
  }

  #s-5f623918-254d-49a2-bc0a-8e4f87929dc9 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5f623918-254d-49a2-bc0a-8e4f87929dc9.shogun-image {
    
    
  }


.s-5f623918-254d-49a2-bc0a-8e4f87929dc9 .shogun-image-content {
  
    align-items: center;
  
}

.s-5f623918-254d-49a2-bc0a-8e4f87929dc9.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-5f623918-254d-49a2-bc0a-8e4f87929dc9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5f623918-254d-49a2-bc0a-8e4f87929dc9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5f623918-254d-49a2-bc0a-8e4f87929dc9 {
      --shg-aspect-ratio: calc(430/68); 
    }

    .s-5f623918-254d-49a2-bc0a-8e4f87929dc9.shogun-image-container {
      position: relative;
    }

    .s-5f623918-254d-49a2-bc0a-8e4f87929dc9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5f623918-254d-49a2-bc0a-8e4f87929dc9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5f623918-254d-49a2-bc0a-8e4f87929dc9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-1ff985ac-6f1d-4a24-a7f8-091a52d580e2 {
  padding-top: 35px;
}

#s-2096963b-ffe3-4b27-92af-6a055396545a {
  text-align: left;
}

#s-53dc1314-2dd3-46f9-86e2-27f70b277235 {
  margin-top: 6%;
}
@media (min-width: 1200px){#s-53dc1314-2dd3-46f9-86e2-27f70b277235 {
  display: none;
}
#s-53dc1314-2dd3-46f9-86e2-27f70b277235, #wrap-s-53dc1314-2dd3-46f9-86e2-27f70b277235 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-53dc1314-2dd3-46f9-86e2-27f70b277235 {
  display: none;
}
#s-53dc1314-2dd3-46f9-86e2-27f70b277235, #wrap-s-53dc1314-2dd3-46f9-86e2-27f70b277235 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-53dc1314-2dd3-46f9-86e2-27f70b277235 {
  display: none;
}
#s-53dc1314-2dd3-46f9-86e2-27f70b277235, #wrap-s-53dc1314-2dd3-46f9-86e2-27f70b277235 { display: none !important; }}@media (max-width: 767px){#s-53dc1314-2dd3-46f9-86e2-27f70b277235 {
  display: none;
}
#s-53dc1314-2dd3-46f9-86e2-27f70b277235, #wrap-s-53dc1314-2dd3-46f9-86e2-27f70b277235 { display: none !important; }}
#s-637f9942-eb61-4732-961f-14ba946dcac0 {
  margin-left: 4%;
margin-right: 4%;
padding-left: 50px;
padding-right: 50px;
min-height: 50px;
max-width: 1000px;
}








#s-637f9942-eb61-4732-961f-14ba946dcac0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-637f9942-eb61-4732-961f-14ba946dcac0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cee2a1fd-e821-4917-9811-3a88b28fbbb5 {
  max-width: 215px;
aspect-ratio: 430/68;
text-align: left;
}





  #s-cee2a1fd-e821-4917-9811-3a88b28fbbb5 img.shogun-image,
  #s-cee2a1fd-e821-4917-9811-3a88b28fbbb5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cee2a1fd-e821-4917-9811-3a88b28fbbb5 {
    width: 100%;
    height: auto;
  }

  #s-cee2a1fd-e821-4917-9811-3a88b28fbbb5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cee2a1fd-e821-4917-9811-3a88b28fbbb5.shogun-image {
    
    
  }


.s-cee2a1fd-e821-4917-9811-3a88b28fbbb5 .shogun-image-content {
  
    align-items: center;
  
}

.s-cee2a1fd-e821-4917-9811-3a88b28fbbb5.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-cee2a1fd-e821-4917-9811-3a88b28fbbb5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cee2a1fd-e821-4917-9811-3a88b28fbbb5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cee2a1fd-e821-4917-9811-3a88b28fbbb5 {
      --shg-aspect-ratio: calc(430/68); 
    }

    .s-cee2a1fd-e821-4917-9811-3a88b28fbbb5.shogun-image-container {
      position: relative;
    }

    .s-cee2a1fd-e821-4917-9811-3a88b28fbbb5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cee2a1fd-e821-4917-9811-3a88b28fbbb5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cee2a1fd-e821-4917-9811-3a88b28fbbb5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-cee2a1fd-e821-4917-9811-3a88b28fbbb5 img.shogun-image,
  #s-cee2a1fd-e821-4917-9811-3a88b28fbbb5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cee2a1fd-e821-4917-9811-3a88b28fbbb5 {
    width: 100%;
    height: auto;
  }

  #s-cee2a1fd-e821-4917-9811-3a88b28fbbb5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cee2a1fd-e821-4917-9811-3a88b28fbbb5.shogun-image {
    
    
  }


.s-cee2a1fd-e821-4917-9811-3a88b28fbbb5 .shogun-image-content {
  
    align-items: center;
  
}

.s-cee2a1fd-e821-4917-9811-3a88b28fbbb5.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-cee2a1fd-e821-4917-9811-3a88b28fbbb5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cee2a1fd-e821-4917-9811-3a88b28fbbb5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cee2a1fd-e821-4917-9811-3a88b28fbbb5 {
      --shg-aspect-ratio: calc(430/68); 
    }

    .s-cee2a1fd-e821-4917-9811-3a88b28fbbb5.shogun-image-container {
      position: relative;
    }

    .s-cee2a1fd-e821-4917-9811-3a88b28fbbb5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cee2a1fd-e821-4917-9811-3a88b28fbbb5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cee2a1fd-e821-4917-9811-3a88b28fbbb5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-cee2a1fd-e821-4917-9811-3a88b28fbbb5 img.shogun-image,
  #s-cee2a1fd-e821-4917-9811-3a88b28fbbb5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cee2a1fd-e821-4917-9811-3a88b28fbbb5 {
    width: 100%;
    height: auto;
  }

  #s-cee2a1fd-e821-4917-9811-3a88b28fbbb5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cee2a1fd-e821-4917-9811-3a88b28fbbb5.shogun-image {
    
    
  }


.s-cee2a1fd-e821-4917-9811-3a88b28fbbb5 .shogun-image-content {
  
    align-items: center;
  
}

.s-cee2a1fd-e821-4917-9811-3a88b28fbbb5.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-cee2a1fd-e821-4917-9811-3a88b28fbbb5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cee2a1fd-e821-4917-9811-3a88b28fbbb5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cee2a1fd-e821-4917-9811-3a88b28fbbb5 {
      --shg-aspect-ratio: calc(430/68); 
    }

    .s-cee2a1fd-e821-4917-9811-3a88b28fbbb5.shogun-image-container {
      position: relative;
    }

    .s-cee2a1fd-e821-4917-9811-3a88b28fbbb5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cee2a1fd-e821-4917-9811-3a88b28fbbb5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cee2a1fd-e821-4917-9811-3a88b28fbbb5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-cee2a1fd-e821-4917-9811-3a88b28fbbb5 img.shogun-image,
  #s-cee2a1fd-e821-4917-9811-3a88b28fbbb5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cee2a1fd-e821-4917-9811-3a88b28fbbb5 {
    width: 100%;
    height: auto;
  }

  #s-cee2a1fd-e821-4917-9811-3a88b28fbbb5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cee2a1fd-e821-4917-9811-3a88b28fbbb5.shogun-image {
    
    
  }


.s-cee2a1fd-e821-4917-9811-3a88b28fbbb5 .shogun-image-content {
  
    align-items: center;
  
}

.s-cee2a1fd-e821-4917-9811-3a88b28fbbb5.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-cee2a1fd-e821-4917-9811-3a88b28fbbb5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cee2a1fd-e821-4917-9811-3a88b28fbbb5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cee2a1fd-e821-4917-9811-3a88b28fbbb5 {
      --shg-aspect-ratio: calc(430/68); 
    }

    .s-cee2a1fd-e821-4917-9811-3a88b28fbbb5.shogun-image-container {
      position: relative;
    }

    .s-cee2a1fd-e821-4917-9811-3a88b28fbbb5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cee2a1fd-e821-4917-9811-3a88b28fbbb5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cee2a1fd-e821-4917-9811-3a88b28fbbb5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-cee2a1fd-e821-4917-9811-3a88b28fbbb5 img.shogun-image,
  #s-cee2a1fd-e821-4917-9811-3a88b28fbbb5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cee2a1fd-e821-4917-9811-3a88b28fbbb5 {
    width: 100%;
    height: auto;
  }

  #s-cee2a1fd-e821-4917-9811-3a88b28fbbb5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cee2a1fd-e821-4917-9811-3a88b28fbbb5.shogun-image {
    
    
  }


.s-cee2a1fd-e821-4917-9811-3a88b28fbbb5 .shogun-image-content {
  
    align-items: center;
  
}

.s-cee2a1fd-e821-4917-9811-3a88b28fbbb5.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-cee2a1fd-e821-4917-9811-3a88b28fbbb5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cee2a1fd-e821-4917-9811-3a88b28fbbb5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cee2a1fd-e821-4917-9811-3a88b28fbbb5 {
      --shg-aspect-ratio: calc(430/68); 
    }

    .s-cee2a1fd-e821-4917-9811-3a88b28fbbb5.shogun-image-container {
      position: relative;
    }

    .s-cee2a1fd-e821-4917-9811-3a88b28fbbb5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cee2a1fd-e821-4917-9811-3a88b28fbbb5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cee2a1fd-e821-4917-9811-3a88b28fbbb5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-0d8b4052-73aa-4831-8c41-ec9ec1b5cc27 {
  padding-top: 35px;
}

#s-ebf5d5f3-ad1b-4296-b7a1-0dd6b952d572 {
  text-align: left;
}

#s-7c817aa0-fd1a-4a26-9ed4-5c017bb162d4 {
  margin-top: 6%;
}
@media (min-width: 1200px){#s-7c817aa0-fd1a-4a26-9ed4-5c017bb162d4 {
  display: none;
}
#s-7c817aa0-fd1a-4a26-9ed4-5c017bb162d4, #wrap-s-7c817aa0-fd1a-4a26-9ed4-5c017bb162d4 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7c817aa0-fd1a-4a26-9ed4-5c017bb162d4 {
  display: none;
}
#s-7c817aa0-fd1a-4a26-9ed4-5c017bb162d4, #wrap-s-7c817aa0-fd1a-4a26-9ed4-5c017bb162d4 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7c817aa0-fd1a-4a26-9ed4-5c017bb162d4 {
  display: none;
}
#s-7c817aa0-fd1a-4a26-9ed4-5c017bb162d4, #wrap-s-7c817aa0-fd1a-4a26-9ed4-5c017bb162d4 { display: none !important; }}@media (max-width: 767px){#s-7c817aa0-fd1a-4a26-9ed4-5c017bb162d4 {
  display: none;
}
#s-7c817aa0-fd1a-4a26-9ed4-5c017bb162d4, #wrap-s-7c817aa0-fd1a-4a26-9ed4-5c017bb162d4 { display: none !important; }}
#s-111cc786-fb27-44c1-8008-6e72194537f1 {
  margin-left: 4%;
margin-right: 4%;
padding-left: 50px;
padding-right: 50px;
min-height: 50px;
max-width: 1000px;
}








#s-111cc786-fb27-44c1-8008-6e72194537f1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-111cc786-fb27-44c1-8008-6e72194537f1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e79b8a6f-a350-44c3-bc1b-f52ea213813d {
  margin-top: 36px;
margin-left: 5px;
padding-top: 18px;
padding-left: 37px;
padding-bottom: 19px;
padding-right: 39px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 8px;
background-color: rgba(255, 194, 34, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.5em;
}
#s-e79b8a6f-a350-44c3-bc1b-f52ea213813d:hover {border-radius: 5px !important;
background-color: rgba(255, 194, 34, 0.7) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-e79b8a6f-a350-44c3-bc1b-f52ea213813d:active {background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-e79b8a6f-a350-44c3-bc1b-f52ea213813d-root {
    text-align: left;
  }


#s-e79b8a6f-a350-44c3-bc1b-f52ea213813d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e79b8a6f-a350-44c3-bc1b-f52ea213813d-root {
    text-align: left;
  }


#s-e79b8a6f-a350-44c3-bc1b-f52ea213813d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e79b8a6f-a350-44c3-bc1b-f52ea213813d-root {
    text-align: left;
  }


#s-e79b8a6f-a350-44c3-bc1b-f52ea213813d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e79b8a6f-a350-44c3-bc1b-f52ea213813d-root {
    text-align: left;
  }


#s-e79b8a6f-a350-44c3-bc1b-f52ea213813d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e79b8a6f-a350-44c3-bc1b-f52ea213813d-root {
    text-align: left;
  }


#s-e79b8a6f-a350-44c3-bc1b-f52ea213813d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-174e5102-9722-4299-897f-bd7ba9467dc4 {
  margin-top: 6%;
}
@media (min-width: 1200px){#s-174e5102-9722-4299-897f-bd7ba9467dc4 {
  display: none;
}
#s-174e5102-9722-4299-897f-bd7ba9467dc4, #wrap-s-174e5102-9722-4299-897f-bd7ba9467dc4 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-174e5102-9722-4299-897f-bd7ba9467dc4 {
  display: none;
}
#s-174e5102-9722-4299-897f-bd7ba9467dc4, #wrap-s-174e5102-9722-4299-897f-bd7ba9467dc4 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-174e5102-9722-4299-897f-bd7ba9467dc4 {
  display: none;
}
#s-174e5102-9722-4299-897f-bd7ba9467dc4, #wrap-s-174e5102-9722-4299-897f-bd7ba9467dc4 { display: none !important; }}@media (max-width: 767px){#s-174e5102-9722-4299-897f-bd7ba9467dc4 {
  display: none;
}
#s-174e5102-9722-4299-897f-bd7ba9467dc4, #wrap-s-174e5102-9722-4299-897f-bd7ba9467dc4 { display: none !important; }}
#s-8609279c-4f50-4214-a59c-d9afe91271d5 {
  margin-left: auto;
margin-right: auto;
padding-left: 50px;
padding-right: 50px;
min-height: 50px;
}








#s-8609279c-4f50-4214-a59c-d9afe91271d5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8609279c-4f50-4214-a59c-d9afe91271d5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e92d3bc0-702c-44a0-82e5-4a609f0b66c0 {
  margin-top: 0%;
margin-left: auto;
margin-bottom: 0%;
margin-right: auto;
}

#s-e0851ca9-eeab-45e9-829d-f468fd9cbd3a {
  margin-top: 24px;
padding-top: 16px;
padding-left: 24px;
padding-bottom: 16px;
padding-right: 24px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 8px;
background-color: rgba(255, 194, 34, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.5em;
}
#s-e0851ca9-eeab-45e9-829d-f468fd9cbd3a:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-e0851ca9-eeab-45e9-829d-f468fd9cbd3a:active {background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-e0851ca9-eeab-45e9-829d-f468fd9cbd3a-root {
    text-align: center;
  }


#s-e0851ca9-eeab-45e9-829d-f468fd9cbd3a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e0851ca9-eeab-45e9-829d-f468fd9cbd3a-root {
    text-align: center;
  }


#s-e0851ca9-eeab-45e9-829d-f468fd9cbd3a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e0851ca9-eeab-45e9-829d-f468fd9cbd3a-root {
    text-align: center;
  }


#s-e0851ca9-eeab-45e9-829d-f468fd9cbd3a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e0851ca9-eeab-45e9-829d-f468fd9cbd3a-root {
    text-align: center;
  }


#s-e0851ca9-eeab-45e9-829d-f468fd9cbd3a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e0851ca9-eeab-45e9-829d-f468fd9cbd3a-root {
    text-align: center;
  }


#s-e0851ca9-eeab-45e9-829d-f468fd9cbd3a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-c3ace0d3-3693-4f06-aefe-5590d068fecc {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-c3ace0d3-3693-4f06-aefe-5590d068fecc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c3ace0d3-3693-4f06-aefe-5590d068fecc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4512aab5-6846-47b8-9d97-1a99785b3004 {
  margin-left: 5%;
margin-right: 5%;
padding-left: 50px;
padding-right: 50px;
min-height: 50px;
max-width: 800px;
}








#s-4512aab5-6846-47b8-9d97-1a99785b3004 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4512aab5-6846-47b8-9d97-1a99785b3004.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-82b02bfb-62cd-4744-b12a-39b15d2cb28a {
  margin-top: 46px;
margin-left: 5px;
padding-top: 16px;
padding-left: 24px;
padding-bottom: 16px;
padding-right: 24px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 8px;
background-color: rgba(255, 194, 34, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.5em;
}
#s-82b02bfb-62cd-4744-b12a-39b15d2cb28a:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-82b02bfb-62cd-4744-b12a-39b15d2cb28a:active {background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-82b02bfb-62cd-4744-b12a-39b15d2cb28a-root {
    text-align: left;
  }


#s-82b02bfb-62cd-4744-b12a-39b15d2cb28a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-82b02bfb-62cd-4744-b12a-39b15d2cb28a-root {
    text-align: left;
  }


#s-82b02bfb-62cd-4744-b12a-39b15d2cb28a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-82b02bfb-62cd-4744-b12a-39b15d2cb28a-root {
    text-align: left;
  }


#s-82b02bfb-62cd-4744-b12a-39b15d2cb28a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-82b02bfb-62cd-4744-b12a-39b15d2cb28a-root {
    text-align: left;
  }


#s-82b02bfb-62cd-4744-b12a-39b15d2cb28a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-82b02bfb-62cd-4744-b12a-39b15d2cb28a-root {
    text-align: left;
  }


#s-82b02bfb-62cd-4744-b12a-39b15d2cb28a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-87614ef6-abe3-4abd-b87a-dea253efd460 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-87614ef6-abe3-4abd-b87a-dea253efd460 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-87614ef6-abe3-4abd-b87a-dea253efd460.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-feb66b1c-2175-453c-9f0b-0fe44f5a7df0 {
  margin-left: 7%;
margin-right: 7%;
padding-left: 50px;
padding-right: 50px;
min-height: 50px;
max-width: 600px;
}








#s-feb66b1c-2175-453c-9f0b-0fe44f5a7df0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-feb66b1c-2175-453c-9f0b-0fe44f5a7df0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1e494a14-a204-427a-a716-96d7873cca63 {
  margin-top: 36px;
margin-left: 5px;
padding-top: 18px;
padding-left: 37px;
padding-bottom: 19px;
padding-right: 39px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 8px;
background-color: rgba(255, 194, 34, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.5em;
}
#s-1e494a14-a204-427a-a716-96d7873cca63:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-1e494a14-a204-427a-a716-96d7873cca63:active {background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-1e494a14-a204-427a-a716-96d7873cca63-root {
    text-align: left;
  }


#s-1e494a14-a204-427a-a716-96d7873cca63.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-1e494a14-a204-427a-a716-96d7873cca63-root {
    text-align: left;
  }


#s-1e494a14-a204-427a-a716-96d7873cca63.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-1e494a14-a204-427a-a716-96d7873cca63-root {
    text-align: left;
  }


#s-1e494a14-a204-427a-a716-96d7873cca63.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-1e494a14-a204-427a-a716-96d7873cca63-root {
    text-align: left;
  }


#s-1e494a14-a204-427a-a716-96d7873cca63.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-1e494a14-a204-427a-a716-96d7873cca63-root {
    text-align: left;
  }


#s-1e494a14-a204-427a-a716-96d7873cca63.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-ae8a8a53-ca2a-4493-a2c4-3735b865d4f2 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-ae8a8a53-ca2a-4493-a2c4-3735b865d4f2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ae8a8a53-ca2a-4493-a2c4-3735b865d4f2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0d878996-0e38-4605-a956-2c4b4e2eb6d0 {
  margin-left: auto;
margin-right: auto;
padding-left: 50px;
padding-right: 50px;
min-height: 50px;
}








#s-0d878996-0e38-4605-a956-2c4b4e2eb6d0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0d878996-0e38-4605-a956-2c4b4e2eb6d0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b912f492-179c-4e61-af62-a6ffec79e81d {
  margin-top: 3%;
margin-left: auto;
margin-right: auto;
max-width: 150px;
text-align: center;
}







  #s-b912f492-179c-4e61-af62-a6ffec79e81d img.shogun-image {
    

    
    
    
  }


#s-b912f492-179c-4e61-af62-a6ffec79e81d .shogun-image-content {
  
    align-items: center;
  
}

#s-2c0d5cd1-9b6c-4280-a6fe-a4ea60749d01 {
  margin-top: 1%;
margin-left: auto;
margin-bottom: 0%;
margin-right: auto;
}

#s-5a841f6e-0839-40f5-9e6c-a3042b4b843c {
  margin-top: 2%;
padding-top: 16px;
padding-left: 24px;
padding-bottom: 16px;
padding-right: 24px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 8px;
background-color: rgba(255, 194, 34, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.5em;
}
#s-5a841f6e-0839-40f5-9e6c-a3042b4b843c:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-5a841f6e-0839-40f5-9e6c-a3042b4b843c:active {background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-5a841f6e-0839-40f5-9e6c-a3042b4b843c-root {
    text-align: center;
  }


#s-5a841f6e-0839-40f5-9e6c-a3042b4b843c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-5a841f6e-0839-40f5-9e6c-a3042b4b843c-root {
    text-align: center;
  }


#s-5a841f6e-0839-40f5-9e6c-a3042b4b843c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-5a841f6e-0839-40f5-9e6c-a3042b4b843c-root {
    text-align: center;
  }


#s-5a841f6e-0839-40f5-9e6c-a3042b4b843c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-5a841f6e-0839-40f5-9e6c-a3042b4b843c-root {
    text-align: center;
  }


#s-5a841f6e-0839-40f5-9e6c-a3042b4b843c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-5a841f6e-0839-40f5-9e6c-a3042b4b843c-root {
    text-align: center;
  }


#s-5a841f6e-0839-40f5-9e6c-a3042b4b843c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-cdc9f722-d451-4524-bc7c-a7a4403bb005 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-cdc9f722-d451-4524-bc7c-a7a4403bb005 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cdc9f722-d451-4524-bc7c-a7a4403bb005.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bdb45c1b-3aa2-42e3-895f-19c5645d8b19 {
  margin-left: auto;
margin-right: auto;
padding-left: 50px;
padding-right: 50px;
min-height: 50px;
}








#s-bdb45c1b-3aa2-42e3-895f-19c5645d8b19 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bdb45c1b-3aa2-42e3-895f-19c5645d8b19.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0152531b-529c-4b4f-9dc1-56c5f0a54582 {
  margin-top: 3%;
margin-left: auto;
margin-bottom: 0%;
margin-right: auto;
}

#s-27296860-f3ad-4705-b8d1-bf734250889c {
  margin-top: 2%;
padding-top: 16px;
padding-left: 24px;
padding-bottom: 16px;
padding-right: 24px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 8px;
background-color: rgba(255, 194, 34, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.5em;
}
#s-27296860-f3ad-4705-b8d1-bf734250889c:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-27296860-f3ad-4705-b8d1-bf734250889c:active {background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-27296860-f3ad-4705-b8d1-bf734250889c-root {
    text-align: center;
  }


#s-27296860-f3ad-4705-b8d1-bf734250889c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-27296860-f3ad-4705-b8d1-bf734250889c-root {
    text-align: center;
  }


#s-27296860-f3ad-4705-b8d1-bf734250889c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-27296860-f3ad-4705-b8d1-bf734250889c-root {
    text-align: center;
  }


#s-27296860-f3ad-4705-b8d1-bf734250889c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-27296860-f3ad-4705-b8d1-bf734250889c-root {
    text-align: center;
  }


#s-27296860-f3ad-4705-b8d1-bf734250889c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-27296860-f3ad-4705-b8d1-bf734250889c-root {
    text-align: center;
  }


#s-27296860-f3ad-4705-b8d1-bf734250889c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-96a27abb-55b3-46c9-b7b3-b046064a3f44 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-96a27abb-55b3-46c9-b7b3-b046064a3f44 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-96a27abb-55b3-46c9-b7b3-b046064a3f44.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ec7dd2fb-87b4-47ac-82d2-aaf8b211309d {
  margin-left: auto;
margin-right: auto;
padding-left: 50px;
padding-right: 50px;
min-height: 50px;
}








#s-ec7dd2fb-87b4-47ac-82d2-aaf8b211309d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ec7dd2fb-87b4-47ac-82d2-aaf8b211309d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3a7c9766-cc48-4375-8189-a053939e7731 {
  margin-left: auto;
margin-right: auto;
}

#s-2ca9be35-b3f1-473f-a887-c28096d48d2f {
  margin-top: 36px;
margin-left: 5px;
padding-top: 18px;
padding-left: 37px;
padding-bottom: 19px;
padding-right: 39px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 8px;
background-color: rgba(255, 194, 34, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.5em;
}
#s-2ca9be35-b3f1-473f-a887-c28096d48d2f:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-2ca9be35-b3f1-473f-a887-c28096d48d2f:active {background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-2ca9be35-b3f1-473f-a887-c28096d48d2f-root {
    text-align: center;
  }


#s-2ca9be35-b3f1-473f-a887-c28096d48d2f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-2ca9be35-b3f1-473f-a887-c28096d48d2f-root {
    text-align: center;
  }


#s-2ca9be35-b3f1-473f-a887-c28096d48d2f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-2ca9be35-b3f1-473f-a887-c28096d48d2f-root {
    text-align: center;
  }


#s-2ca9be35-b3f1-473f-a887-c28096d48d2f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-2ca9be35-b3f1-473f-a887-c28096d48d2f-root {
    text-align: center;
  }


#s-2ca9be35-b3f1-473f-a887-c28096d48d2f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-2ca9be35-b3f1-473f-a887-c28096d48d2f-root {
    text-align: center;
  }


#s-2ca9be35-b3f1-473f-a887-c28096d48d2f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-f6a046d6-adee-47ee-b40e-ea3938776998 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-f6a046d6-adee-47ee-b40e-ea3938776998 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f6a046d6-adee-47ee-b40e-ea3938776998.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-efba5dfd-109e-4306-883e-c2d3f9b0a2cc {
  margin-left: 7%;
margin-right: 7%;
padding-left: 50px;
padding-right: 50px;
min-height: 50px;
}








#s-efba5dfd-109e-4306-883e-c2d3f9b0a2cc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-efba5dfd-109e-4306-883e-c2d3f9b0a2cc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-04e6a5b1-8e9e-4d10-9978-7f03596d3238 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}







  #s-04e6a5b1-8e9e-4d10-9978-7f03596d3238 img.shogun-image {
    

    
    
    
  }


#s-04e6a5b1-8e9e-4d10-9978-7f03596d3238 .shogun-image-content {
  
    align-items: center;
  
}

#s-cbe0fb42-aba8-4a02-b66c-c2391eb32230 {
  margin-top: 5%;
padding-top: 17px;
padding-left: 39px;
padding-bottom: 19px;
padding-right: 37px;
border-radius: 8px;
background-color: rgba(255, 194, 34, 1);
text-align: center;
text-decoration: none;
line-height: 1.5em;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-cbe0fb42-aba8-4a02-b66c-c2391eb32230:hover {background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-cbe0fb42-aba8-4a02-b66c-c2391eb32230:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-cbe0fb42-aba8-4a02-b66c-c2391eb32230-root {
    text-align: center;
  }


#s-cbe0fb42-aba8-4a02-b66c-c2391eb32230.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-cbe0fb42-aba8-4a02-b66c-c2391eb32230-root {
    text-align: center;
  }


#s-cbe0fb42-aba8-4a02-b66c-c2391eb32230.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-cbe0fb42-aba8-4a02-b66c-c2391eb32230-root {
    text-align: center;
  }


#s-cbe0fb42-aba8-4a02-b66c-c2391eb32230.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-cbe0fb42-aba8-4a02-b66c-c2391eb32230-root {
    text-align: center;
  }


#s-cbe0fb42-aba8-4a02-b66c-c2391eb32230.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-cbe0fb42-aba8-4a02-b66c-c2391eb32230-root {
    text-align: center;
  }


#s-cbe0fb42-aba8-4a02-b66c-c2391eb32230.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-0279149f-d0c4-4e15-8dc3-f7598e85cf0b {
  margin-left: 7%;
margin-right: 7%;
padding-left: 50px;
padding-right: 50px;
min-height: 50px;
}








#s-0279149f-d0c4-4e15-8dc3-f7598e85cf0b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0279149f-d0c4-4e15-8dc3-f7598e85cf0b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0c2f601a-1750-4be2-af0f-fadcaaa1c8d8 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}







  #s-0c2f601a-1750-4be2-af0f-fadcaaa1c8d8 img.shogun-image {
    

    
    
    
  }


#s-0c2f601a-1750-4be2-af0f-fadcaaa1c8d8 .shogun-image-content {
  
    align-items: center;
  
}

#s-1e4a79e4-afb2-40c9-ac14-778f4150fcc1 {
  margin-top: 3%;
margin-bottom: 0%;
}

#s-bdf3b8fc-079f-413a-bf11-fe968f4f76e4 {
  margin-top: 7%;
}

#s-0ce76d27-e5bd-4ae0-aa96-b7b72a7193dd {
  margin-left: 7%;
margin-right: 7%;
padding-left: 50px;
padding-right: 50px;
min-height: 50px;
max-width: 600px;
}








#s-0ce76d27-e5bd-4ae0-aa96-b7b72a7193dd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0ce76d27-e5bd-4ae0-aa96-b7b72a7193dd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-50e72e57-00d6-4190-b0a2-d4d25d3d5ae1 {
  margin-top: 36px;
margin-left: 5px;
padding-top: 18px;
padding-left: 37px;
padding-bottom: 19px;
padding-right: 39px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 8px;
background-color: rgba(255, 194, 34, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.5em;
}
#s-50e72e57-00d6-4190-b0a2-d4d25d3d5ae1:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-50e72e57-00d6-4190-b0a2-d4d25d3d5ae1:active {background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-50e72e57-00d6-4190-b0a2-d4d25d3d5ae1-root {
    text-align: left;
  }


#s-50e72e57-00d6-4190-b0a2-d4d25d3d5ae1.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-50e72e57-00d6-4190-b0a2-d4d25d3d5ae1-root {
    text-align: left;
  }


#s-50e72e57-00d6-4190-b0a2-d4d25d3d5ae1.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-50e72e57-00d6-4190-b0a2-d4d25d3d5ae1-root {
    text-align: left;
  }


#s-50e72e57-00d6-4190-b0a2-d4d25d3d5ae1.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-50e72e57-00d6-4190-b0a2-d4d25d3d5ae1-root {
    text-align: left;
  }


#s-50e72e57-00d6-4190-b0a2-d4d25d3d5ae1.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-50e72e57-00d6-4190-b0a2-d4d25d3d5ae1-root {
    text-align: left;
  }


#s-50e72e57-00d6-4190-b0a2-d4d25d3d5ae1.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-fa86c27a-aded-48d7-8cf8-bd98dedbd3bc {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-fa86c27a-aded-48d7-8cf8-bd98dedbd3bc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fa86c27a-aded-48d7-8cf8-bd98dedbd3bc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-27915183-5062-460c-bce9-a3e7aa9fa67a {
  margin-left: 7%;
margin-right: 7%;
padding-left: 50px;
padding-right: 50px;
min-height: 50px;
max-width: 600px;
}








#s-27915183-5062-460c-bce9-a3e7aa9fa67a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-27915183-5062-460c-bce9-a3e7aa9fa67a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d90638fe-ed81-4f48-8b93-1415ef4a49a8 {
  margin-top: 36px;
margin-left: 5px;
padding-top: 18px;
padding-left: 37px;
padding-bottom: 19px;
padding-right: 39px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 8px;
background-color: rgba(255, 194, 34, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.5em;
}
#s-d90638fe-ed81-4f48-8b93-1415ef4a49a8:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-d90638fe-ed81-4f48-8b93-1415ef4a49a8:active {background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-d90638fe-ed81-4f48-8b93-1415ef4a49a8-root {
    text-align: left;
  }


#s-d90638fe-ed81-4f48-8b93-1415ef4a49a8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-d90638fe-ed81-4f48-8b93-1415ef4a49a8-root {
    text-align: left;
  }


#s-d90638fe-ed81-4f48-8b93-1415ef4a49a8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d90638fe-ed81-4f48-8b93-1415ef4a49a8-root {
    text-align: left;
  }


#s-d90638fe-ed81-4f48-8b93-1415ef4a49a8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d90638fe-ed81-4f48-8b93-1415ef4a49a8-root {
    text-align: left;
  }


#s-d90638fe-ed81-4f48-8b93-1415ef4a49a8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-d90638fe-ed81-4f48-8b93-1415ef4a49a8-root {
    text-align: left;
  }


#s-d90638fe-ed81-4f48-8b93-1415ef4a49a8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-c28cee12-9b2b-4fe5-9910-9e6bfb6cd55f {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-c28cee12-9b2b-4fe5-9910-9e6bfb6cd55f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c28cee12-9b2b-4fe5-9910-9e6bfb6cd55f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d09a2929-8001-47e3-8c7c-4379e67151ab {
  margin-left: 7%;
margin-right: 7%;
padding-left: 50px;
padding-right: 50px;
min-height: 50px;
}








#s-d09a2929-8001-47e3-8c7c-4379e67151ab > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d09a2929-8001-47e3-8c7c-4379e67151ab.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-79d1a035-deea-4c77-b7ed-f11b5b410453 {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
max-width: 51px;
text-align: center;
}







  #s-79d1a035-deea-4c77-b7ed-f11b5b410453 img.shogun-image {
    

    
    
    
  }


#s-79d1a035-deea-4c77-b7ed-f11b5b410453 .shogun-image-content {
  
    align-items: center;
  
}

#s-ba487481-cd82-46d3-b7b8-0a8c742ba932 {
  margin-top: 51px;
}

#s-3737f942-12ff-4e78-8be9-e5a6f05ad65a {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-3737f942-12ff-4e78-8be9-e5a6f05ad65a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3737f942-12ff-4e78-8be9-e5a6f05ad65a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ef55a140-8bda-4225-a605-4c3d2e20a9da {
  min-height: 50px;
}








#s-ef55a140-8bda-4225-a605-4c3d2e20a9da > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ef55a140-8bda-4225-a605-4c3d2e20a9da.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c1081152-50d1-4a94-a2b2-1410791b6787 {
  padding-top: 8px;
max-width: 100%;
}

#s-809bea91-5d43-4748-9503-89d3210a6ff8 {
  padding-top: 11%;
}

#s-e61dc9b6-83f0-4e35-8df1-e194047fa8a0 {
  margin-top: 39px;
margin-left: 5px;
padding-top: 18px;
padding-left: 37px;
padding-bottom: 19px;
padding-right: 39px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 5px;
background-color: rgba(255, 194, 34, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.18em;
}
#s-e61dc9b6-83f0-4e35-8df1-e194047fa8a0:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-e61dc9b6-83f0-4e35-8df1-e194047fa8a0:active {border-radius: 5px !important;
background-color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-e61dc9b6-83f0-4e35-8df1-e194047fa8a0-root {
    text-align: center;
  }


#s-e61dc9b6-83f0-4e35-8df1-e194047fa8a0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e61dc9b6-83f0-4e35-8df1-e194047fa8a0-root {
    text-align: center;
  }


#s-e61dc9b6-83f0-4e35-8df1-e194047fa8a0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e61dc9b6-83f0-4e35-8df1-e194047fa8a0-root {
    text-align: center;
  }


#s-e61dc9b6-83f0-4e35-8df1-e194047fa8a0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e61dc9b6-83f0-4e35-8df1-e194047fa8a0-root {
    text-align: center;
  }


#s-e61dc9b6-83f0-4e35-8df1-e194047fa8a0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e61dc9b6-83f0-4e35-8df1-e194047fa8a0-root {
    text-align: center;
  }


#s-e61dc9b6-83f0-4e35-8df1-e194047fa8a0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-0be4d137-1ff8-418c-8cb6-a2832a349af1 {
  margin-left: 7%;
margin-right: 7%;
padding-left: 50px;
padding-right: 50px;
min-height: 50px;
max-width: 600px;
}








#s-0be4d137-1ff8-418c-8cb6-a2832a349af1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0be4d137-1ff8-418c-8cb6-a2832a349af1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-37e62e13-4e03-4c47-8283-ddaa9f5768f9 {
  margin-top: 36px;
margin-left: 5px;
padding-top: 18px;
padding-left: 37px;
padding-bottom: 19px;
padding-right: 39px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 8px;
background-color: rgba(255, 194, 34, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.5em;
}
#s-37e62e13-4e03-4c47-8283-ddaa9f5768f9:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-37e62e13-4e03-4c47-8283-ddaa9f5768f9:active {background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-37e62e13-4e03-4c47-8283-ddaa9f5768f9-root {
    text-align: left;
  }


#s-37e62e13-4e03-4c47-8283-ddaa9f5768f9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-37e62e13-4e03-4c47-8283-ddaa9f5768f9-root {
    text-align: left;
  }


#s-37e62e13-4e03-4c47-8283-ddaa9f5768f9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-37e62e13-4e03-4c47-8283-ddaa9f5768f9-root {
    text-align: left;
  }


#s-37e62e13-4e03-4c47-8283-ddaa9f5768f9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-37e62e13-4e03-4c47-8283-ddaa9f5768f9-root {
    text-align: left;
  }


#s-37e62e13-4e03-4c47-8283-ddaa9f5768f9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-37e62e13-4e03-4c47-8283-ddaa9f5768f9-root {
    text-align: left;
  }


#s-37e62e13-4e03-4c47-8283-ddaa9f5768f9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-5125a7de-c7fa-469b-a9ba-7b3678d9bdf1 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-5125a7de-c7fa-469b-a9ba-7b3678d9bdf1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5125a7de-c7fa-469b-a9ba-7b3678d9bdf1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-291ff441-d8fd-4b98-86df-83807b2d62e0 {
  padding-left: 50px;
padding-right: 50px;
min-height: 50px;
max-width: 600px;
}








#s-291ff441-d8fd-4b98-86df-83807b2d62e0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-291ff441-d8fd-4b98-86df-83807b2d62e0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cd1a341c-5aba-48e2-8cd6-6e4165564713 {
  margin-left: 0px;
margin-right: 0px;
text-align: left;
}

#s-cd1a341c-5aba-48e2-8cd6-6e4165564713 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "HK Grotesk Pro";
  font-style:  normal ;
  font-size: 80px;
  line-height: 1em;
  
  text-align: left;
}



#s-67518f8a-d24d-4cd1-8450-205646d8a932 {
  margin-top: 36px;
margin-left: 5px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 5px;
background-color: rgba(255, 194, 34, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-67518f8a-d24d-4cd1-8450-205646d8a932:hover {border-radius: 5px !important;
background-color: rgba(240, 182, 32, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-67518f8a-d24d-4cd1-8450-205646d8a932:active {border-radius: 5px !important;
background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-67518f8a-d24d-4cd1-8450-205646d8a932-root {
    text-align: left;
  }


#s-67518f8a-d24d-4cd1-8450-205646d8a932.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-67518f8a-d24d-4cd1-8450-205646d8a932-root {
    text-align: left;
  }


#s-67518f8a-d24d-4cd1-8450-205646d8a932.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-67518f8a-d24d-4cd1-8450-205646d8a932-root {
    text-align: left;
  }


#s-67518f8a-d24d-4cd1-8450-205646d8a932.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-67518f8a-d24d-4cd1-8450-205646d8a932-root {
    text-align: left;
  }


#s-67518f8a-d24d-4cd1-8450-205646d8a932.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-67518f8a-d24d-4cd1-8450-205646d8a932-root {
    text-align: left;
  }


#s-67518f8a-d24d-4cd1-8450-205646d8a932.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}
#s-16443ba9-94da-4ec5-ab3d-f286f6902996 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-16443ba9-94da-4ec5-ab3d-f286f6902996 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-16443ba9-94da-4ec5-ab3d-f286f6902996.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e3973ef6-6243-48ec-88fd-783fbcea4f60 {
  min-height: 50px;
}








#s-e3973ef6-6243-48ec-88fd-783fbcea4f60 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e3973ef6-6243-48ec-88fd-783fbcea4f60.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1f759bef-7d2c-469c-a220-fdc599d5acfb {
  padding-top: 8px;
max-width: 100%;
}

#s-a149902b-1cf3-451e-8729-4afa1b07b328 {
  padding-top: 11%;
}

#s-5d5fee92-b85b-4be8-8b32-7aee72ca4302 {
  margin-top: 39px;
margin-left: 5px;
padding-top: 18px;
padding-left: 37px;
padding-bottom: 19px;
padding-right: 39px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 5px;
background-color: rgba(255, 194, 34, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.18em;
}
#s-5d5fee92-b85b-4be8-8b32-7aee72ca4302:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-5d5fee92-b85b-4be8-8b32-7aee72ca4302:active {border-radius: 5px !important;
background-color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-5d5fee92-b85b-4be8-8b32-7aee72ca4302-root {
    text-align: center;
  }


#s-5d5fee92-b85b-4be8-8b32-7aee72ca4302.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-5d5fee92-b85b-4be8-8b32-7aee72ca4302-root {
    text-align: center;
  }


#s-5d5fee92-b85b-4be8-8b32-7aee72ca4302.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-5d5fee92-b85b-4be8-8b32-7aee72ca4302-root {
    text-align: center;
  }


#s-5d5fee92-b85b-4be8-8b32-7aee72ca4302.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-5d5fee92-b85b-4be8-8b32-7aee72ca4302-root {
    text-align: center;
  }


#s-5d5fee92-b85b-4be8-8b32-7aee72ca4302.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-5d5fee92-b85b-4be8-8b32-7aee72ca4302-root {
    text-align: center;
  }


#s-5d5fee92-b85b-4be8-8b32-7aee72ca4302.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-b82a6d62-66bf-4315-bb11-0a2d7047659a {
  min-height: 50px;
}








#s-b82a6d62-66bf-4315-bb11-0a2d7047659a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b82a6d62-66bf-4315-bb11-0a2d7047659a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-aea6c460-9e8f-4719-8539-ce0efae44b0f {
  padding-top: 8px;
max-width: 100%;
}

#s-fb261fdd-600a-404c-9910-0dbfb6998d20 {
  margin-top: 39px;
margin-left: 5px;
padding-top: 18px;
padding-left: 37px;
padding-bottom: 19px;
padding-right: 39px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 5px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.18em;
}
#s-fb261fdd-600a-404c-9910-0dbfb6998d20:hover {border-radius: 5px !important;
background-color: rgba(240, 221, 125, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-fb261fdd-600a-404c-9910-0dbfb6998d20:active {border-radius: 5px !important;
background-color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-fb261fdd-600a-404c-9910-0dbfb6998d20-root {
    text-align: center;
  }


#s-fb261fdd-600a-404c-9910-0dbfb6998d20.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-fb261fdd-600a-404c-9910-0dbfb6998d20-root {
    text-align: center;
  }


#s-fb261fdd-600a-404c-9910-0dbfb6998d20.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-fb261fdd-600a-404c-9910-0dbfb6998d20-root {
    text-align: center;
  }


#s-fb261fdd-600a-404c-9910-0dbfb6998d20.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-fb261fdd-600a-404c-9910-0dbfb6998d20-root {
    text-align: center;
  }


#s-fb261fdd-600a-404c-9910-0dbfb6998d20.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-fb261fdd-600a-404c-9910-0dbfb6998d20-root {
    text-align: center;
  }


#s-fb261fdd-600a-404c-9910-0dbfb6998d20.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-0a898212-07ac-44e8-8689-52b418f0bcc9 {
  padding-left: 117px;
min-height: 50px;
}








#s-0a898212-07ac-44e8-8689-52b418f0bcc9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0a898212-07ac-44e8-8689-52b418f0bcc9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6f697d5e-420f-4338-a13f-8940077eeca6 {
  max-width: 50%;
}

#s-4e6dbe7b-5c9c-44ef-adbb-b1910cfccaa6 {
  margin-top: 51px;
margin-left: 5px;
padding-top: 18px;
padding-left: 37px;
padding-bottom: 19px;
padding-right: 39px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 5px;
background-color: rgba(0, 0, 0, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
line-height: 1.18em;
}
#s-4e6dbe7b-5c9c-44ef-adbb-b1910cfccaa6:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-4e6dbe7b-5c9c-44ef-adbb-b1910cfccaa6:active {border-radius: 5px !important;
background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-4e6dbe7b-5c9c-44ef-adbb-b1910cfccaa6-root {
    text-align: left;
  }


#s-4e6dbe7b-5c9c-44ef-adbb-b1910cfccaa6.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-4e6dbe7b-5c9c-44ef-adbb-b1910cfccaa6-root {
    text-align: left;
  }


#s-4e6dbe7b-5c9c-44ef-adbb-b1910cfccaa6.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4e6dbe7b-5c9c-44ef-adbb-b1910cfccaa6-root {
    text-align: left;
  }


#s-4e6dbe7b-5c9c-44ef-adbb-b1910cfccaa6.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4e6dbe7b-5c9c-44ef-adbb-b1910cfccaa6-root {
    text-align: left;
  }


#s-4e6dbe7b-5c9c-44ef-adbb-b1910cfccaa6.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-4e6dbe7b-5c9c-44ef-adbb-b1910cfccaa6-root {
    text-align: left;
  }


#s-4e6dbe7b-5c9c-44ef-adbb-b1910cfccaa6.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-ac1df703-bd75-45c1-92da-2a8a66b91399 {
  padding-left: 115px;
min-height: 50px;
}








#s-ac1df703-bd75-45c1-92da-2a8a66b91399 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ac1df703-bd75-45c1-92da-2a8a66b91399.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-09d7aced-e726-4d82-aaf1-f5989746f4f8 {
  margin-left: 2px;
}

#s-7acc4bff-5155-4acd-a40a-d6584efcf13a {
  margin-left: 0px;
margin-bottom: 5px;
margin-right: 0px;
text-align: left;
}

#s-7acc4bff-5155-4acd-a40a-d6584efcf13a .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "HK Grotesk Pro";
  font-style:  normal ;
  font-size: 80px;
  line-height: 1em;
  
  text-align: left;
}



#s-a8e42955-ac73-4d91-9e5a-77a837384163 {
  margin-left: 2px;
margin-right: 2px;
}

#s-61520675-0578-4051-bc48-9f7ea3a070c1 {
  margin-top: 26px;
margin-left: 5px;
padding-top: 15px;
padding-left: 37px;
padding-bottom: 15px;
padding-right: 38px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 5px;
background-color: rgba(255, 194, 34, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
line-height: 1.5em;
}
#s-61520675-0578-4051-bc48-9f7ea3a070c1:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-61520675-0578-4051-bc48-9f7ea3a070c1:active {border-radius: 5px !important;
background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-61520675-0578-4051-bc48-9f7ea3a070c1-root {
    text-align: left;
  }


#s-61520675-0578-4051-bc48-9f7ea3a070c1.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-61520675-0578-4051-bc48-9f7ea3a070c1-root {
    text-align: left;
  }


#s-61520675-0578-4051-bc48-9f7ea3a070c1.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-61520675-0578-4051-bc48-9f7ea3a070c1-root {
    text-align: left;
  }


#s-61520675-0578-4051-bc48-9f7ea3a070c1.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-61520675-0578-4051-bc48-9f7ea3a070c1-root {
    text-align: left;
  }


#s-61520675-0578-4051-bc48-9f7ea3a070c1.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-61520675-0578-4051-bc48-9f7ea3a070c1-root {
    text-align: left;
  }


#s-61520675-0578-4051-bc48-9f7ea3a070c1.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-74760899-6041-4647-9aa9-96d5fcbc15c0 {
  margin-left: 10%;
margin-right: auto;
min-height: 50px;
max-width: 600px;
}








#s-74760899-6041-4647-9aa9-96d5fcbc15c0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-74760899-6041-4647-9aa9-96d5fcbc15c0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e1cb9281-4ed3-42dc-bdad-f69af03e5e98 {
  margin-top: 15px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 5px;
background-color: rgba(255, 194, 34, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-e1cb9281-4ed3-42dc-bdad-f69af03e5e98:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(236, 236, 236, 1) !important;}#s-e1cb9281-4ed3-42dc-bdad-f69af03e5e98:active {border-radius: 5px !important;
background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-e1cb9281-4ed3-42dc-bdad-f69af03e5e98-root {
    text-align: left;
  }


#s-e1cb9281-4ed3-42dc-bdad-f69af03e5e98.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e1cb9281-4ed3-42dc-bdad-f69af03e5e98-root {
    text-align: left;
  }


#s-e1cb9281-4ed3-42dc-bdad-f69af03e5e98.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e1cb9281-4ed3-42dc-bdad-f69af03e5e98-root {
    text-align: left;
  }


#s-e1cb9281-4ed3-42dc-bdad-f69af03e5e98.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e1cb9281-4ed3-42dc-bdad-f69af03e5e98-root {
    text-align: left;
  }


#s-e1cb9281-4ed3-42dc-bdad-f69af03e5e98.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e1cb9281-4ed3-42dc-bdad-f69af03e5e98-root {
    text-align: left;
  }


#s-e1cb9281-4ed3-42dc-bdad-f69af03e5e98.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}
#s-e80209ed-4a5e-4ccd-be44-882054510a2b {
  padding-left: 50px;
padding-right: 50px;
min-height: 50px;
max-width: 600px;
}








#s-e80209ed-4a5e-4ccd-be44-882054510a2b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e80209ed-4a5e-4ccd-be44-882054510a2b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ee3fef6c-83cf-4baf-92ae-0bc52337085c {
  margin-left: 0px;
margin-bottom: -5px;
margin-right: 0px;
text-align: left;
}

#s-ee3fef6c-83cf-4baf-92ae-0bc52337085c .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "HK Grotesk Pro";
  font-style:  normal ;
  font-size: 80px;
  line-height: 1em;
  
  text-align: left;
}



#s-de6a58f1-b08a-4471-8931-d65097b651c1 {
  margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
padding-top: 10px;
padding-left: 7px;
}

#s-7e578aef-4c6a-4bd1-995b-e206f6200af3 {
  margin-left: 5px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 5px;
background-color: rgba(255, 194, 34, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-7e578aef-4c6a-4bd1-995b-e206f6200af3:hover {border-radius: 5px !important;
background-color: rgba(240, 182, 32, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-7e578aef-4c6a-4bd1-995b-e206f6200af3:active {border-radius: 5px !important;
background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-7e578aef-4c6a-4bd1-995b-e206f6200af3-root {
    text-align: left;
  }


#s-7e578aef-4c6a-4bd1-995b-e206f6200af3.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-7e578aef-4c6a-4bd1-995b-e206f6200af3-root {
    text-align: left;
  }


#s-7e578aef-4c6a-4bd1-995b-e206f6200af3.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7e578aef-4c6a-4bd1-995b-e206f6200af3-root {
    text-align: left;
  }


#s-7e578aef-4c6a-4bd1-995b-e206f6200af3.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7e578aef-4c6a-4bd1-995b-e206f6200af3-root {
    text-align: left;
  }


#s-7e578aef-4c6a-4bd1-995b-e206f6200af3.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-7e578aef-4c6a-4bd1-995b-e206f6200af3-root {
    text-align: left;
  }


#s-7e578aef-4c6a-4bd1-995b-e206f6200af3.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}
#s-968837ae-03f4-43a5-8135-56c78c6d58ad {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-968837ae-03f4-43a5-8135-56c78c6d58ad > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-968837ae-03f4-43a5-8135-56c78c6d58ad.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4a346fca-ad1b-48c9-ab42-10c4723ca95a {
  margin-left: 15%;
margin-right: auto;
min-height: 50px;
max-width: 600px;
}








#s-4a346fca-ad1b-48c9-ab42-10c4723ca95a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4a346fca-ad1b-48c9-ab42-10c4723ca95a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-26f4b83a-9239-484f-8f60-de9de552df82 {
  text-align: left;
}

#s-26f4b83a-9239-484f-8f60-de9de552df82 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "HK Grotesk Pro";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}



#s-29db5618-b3ec-4b62-9182-44ec51cfdeb9 {
  margin-top: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 5px;
background-color: rgba(255, 194, 34, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-29db5618-b3ec-4b62-9182-44ec51cfdeb9:hover {border-radius: 5px !important;
background-color: rgba(241, 184, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-29db5618-b3ec-4b62-9182-44ec51cfdeb9:active {border-radius: 5px !important;
background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-29db5618-b3ec-4b62-9182-44ec51cfdeb9-root {
    text-align: left;
  }


#s-29db5618-b3ec-4b62-9182-44ec51cfdeb9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-29db5618-b3ec-4b62-9182-44ec51cfdeb9-root {
    text-align: left;
  }


#s-29db5618-b3ec-4b62-9182-44ec51cfdeb9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-29db5618-b3ec-4b62-9182-44ec51cfdeb9-root {
    text-align: left;
  }


#s-29db5618-b3ec-4b62-9182-44ec51cfdeb9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-29db5618-b3ec-4b62-9182-44ec51cfdeb9-root {
    text-align: left;
  }


#s-29db5618-b3ec-4b62-9182-44ec51cfdeb9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-29db5618-b3ec-4b62-9182-44ec51cfdeb9-root {
    text-align: left;
  }


#s-29db5618-b3ec-4b62-9182-44ec51cfdeb9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}
#s-b8e1d580-736d-4088-83d6-a3bac7f27a33 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 1920px;
}








#s-b8e1d580-736d-4088-83d6-a3bac7f27a33 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b8e1d580-736d-4088-83d6-a3bac7f27a33.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a1bcfb7c-03dd-4642-b87e-b0049cd2ccaf {
  margin-left: auto;
margin-bottom: -15px;
margin-right: auto;
text-align: center;
}

#s-a1bcfb7c-03dd-4642-b87e-b0049cd2ccaf .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "HK Grotesk Pro";
  font-style:  normal ;
  font-size: 145px;
  
  
  text-align: center;
}



#s-3d1ce7f3-0ac6-434c-8aa4-ddcf1a4624d6 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-3d1ce7f3-0ac6-434c-8aa4-ddcf1a4624d6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3d1ce7f3-0ac6-434c-8aa4-ddcf1a4624d6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2dfdeaae-eb3f-418f-b1f3-3afddd44f3d4 {
  margin-bottom: 15px;
}

#s-446e6f1a-d2bb-457d-af9b-7158fe43ac2a {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 5px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-446e6f1a-d2bb-457d-af9b-7158fe43ac2a:hover {border-radius: 5px !important;
background-color: rgba(255, 227, 166, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-446e6f1a-d2bb-457d-af9b-7158fe43ac2a:active {border-radius: 5px !important;
background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-446e6f1a-d2bb-457d-af9b-7158fe43ac2a-root {
    text-align: center;
  }


#s-446e6f1a-d2bb-457d-af9b-7158fe43ac2a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-446e6f1a-d2bb-457d-af9b-7158fe43ac2a-root {
    text-align: center;
  }


#s-446e6f1a-d2bb-457d-af9b-7158fe43ac2a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-446e6f1a-d2bb-457d-af9b-7158fe43ac2a-root {
    text-align: center;
  }


#s-446e6f1a-d2bb-457d-af9b-7158fe43ac2a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-446e6f1a-d2bb-457d-af9b-7158fe43ac2a-root {
    text-align: center;
  }


#s-446e6f1a-d2bb-457d-af9b-7158fe43ac2a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-446e6f1a-d2bb-457d-af9b-7158fe43ac2a-root {
    text-align: center;
  }


#s-446e6f1a-d2bb-457d-af9b-7158fe43ac2a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}
#s-70e5259e-ad22-45df-b704-1d2be18356ef {
  background-repeat: no-repeat;
background-size: cover;
padding-top: 13%;
padding-left: 5%;
padding-bottom: 13%;
padding-right: 5%;
min-height: 300px;
max-width: 1920px;
background-position: center center;
background-attachment: scroll;
}

#s-70e5259e-ad22-45df-b704-1d2be18356ef {
  background-image: url(https://i.shgcdn.com/91465ee0-a634-4884-a722-a30bd77d4b3a/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-70e5259e-ad22-45df-b704-1d2be18356ef > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0;
}#s-70e5259e-ad22-45df-b704-1d2be18356ef.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c1c6a21a-be3a-490f-b8ba-98236f403cc5 {
  background-color: rgba(0, 0, 0, 0);
}
@media (min-width: 768px) and (max-width: 991px){#s-c1c6a21a-be3a-490f-b8ba-98236f403cc5 {
  
}
}@media (max-width: 767px){#s-c1c6a21a-be3a-490f-b8ba-98236f403cc5 {
  
}
}
@media (min-width: 0px) {
[id="s-c1c6a21a-be3a-490f-b8ba-98236f403cc5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c1c6a21a-be3a-490f-b8ba-98236f403cc5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c1c6a21a-be3a-490f-b8ba-98236f403cc5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c1c6a21a-be3a-490f-b8ba-98236f403cc5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-e8eafc9b-94d9-4715-9a8d-5d6439ce6223 {
  min-height: 350px;
}








#s-e8eafc9b-94d9-4715-9a8d-5d6439ce6223 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e8eafc9b-94d9-4715-9a8d-5d6439ce6223.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-26546701-996b-432d-9be3-db1e416810c4 {
  text-align: left;
}

#s-26546701-996b-432d-9be3-db1e416810c4 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "HK Grotesk Pro";
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: left;
}



#s-a15d8150-fce5-4346-b32f-7ef739af037f {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 6px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-a15d8150-fce5-4346-b32f-7ef739af037f: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-a15d8150-fce5-4346-b32f-7ef739af037f:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-a15d8150-fce5-4346-b32f-7ef739af037f-root {
    text-align: left;
  }


#s-a15d8150-fce5-4346-b32f-7ef739af037f.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-a15d8150-fce5-4346-b32f-7ef739af037f-root {
    text-align: left;
  }


#s-a15d8150-fce5-4346-b32f-7ef739af037f.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a15d8150-fce5-4346-b32f-7ef739af037f-root {
    text-align: left;
  }


#s-a15d8150-fce5-4346-b32f-7ef739af037f.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a15d8150-fce5-4346-b32f-7ef739af037f-root {
    text-align: left;
  }


#s-a15d8150-fce5-4346-b32f-7ef739af037f.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-a15d8150-fce5-4346-b32f-7ef739af037f-root {
    text-align: left;
  }


#s-a15d8150-fce5-4346-b32f-7ef739af037f.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}
#s-0544194f-96b8-42ba-ade7-3206aeb4b98a {
  text-align: center;
}







  #s-0544194f-96b8-42ba-ade7-3206aeb4b98a img.shogun-image {
    

    
    
    
  }


#s-0544194f-96b8-42ba-ade7-3206aeb4b98a .shogun-image-content {
  
    align-items: center;
  
}

#s-12b0a555-a8a4-45b5-9079-be3ec9aa74ab {
  margin-left: auto;
margin-bottom: -8px;
margin-right: auto;
padding-left: 1px;
padding-right: 1px;
}
@media (min-width: 1200px){#s-12b0a555-a8a4-45b5-9079-be3ec9aa74ab {
  display: none;
}
#s-12b0a555-a8a4-45b5-9079-be3ec9aa74ab, #wrap-s-12b0a555-a8a4-45b5-9079-be3ec9aa74ab { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-12b0a555-a8a4-45b5-9079-be3ec9aa74ab {
  display: none;
}
#s-12b0a555-a8a4-45b5-9079-be3ec9aa74ab, #wrap-s-12b0a555-a8a4-45b5-9079-be3ec9aa74ab { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-12b0a555-a8a4-45b5-9079-be3ec9aa74ab {
  
}
}@media (max-width: 767px){#s-12b0a555-a8a4-45b5-9079-be3ec9aa74ab {
  display: none;
}
#s-12b0a555-a8a4-45b5-9079-be3ec9aa74ab, #wrap-s-12b0a555-a8a4-45b5-9079-be3ec9aa74ab { display: none !important; }}
#s-12b0a555-a8a4-45b5-9079-be3ec9aa74ab .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-12b0a555-a8a4-45b5-9079-be3ec9aa74ab .shg-sld-nav-button.shg-sld-left,
#s-12b0a555-a8a4-45b5-9079-be3ec9aa74ab .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-32c8f62f-9b0b-4130-9e53-dde802045e57 {
  margin-left: 4%;
margin-right: 4%;
padding-left: 50px;
padding-right: 50px;
min-height: 50px;
max-width: 1000px;
}








#s-32c8f62f-9b0b-4130-9e53-dde802045e57 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-32c8f62f-9b0b-4130-9e53-dde802045e57.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-270c5238-de2b-4d5c-8614-49bf3fb42d34 {
  max-width: 225px;
text-align: left;
}







  img.s-270c5238-de2b-4d5c-8614-49bf3fb42d34.shogun-image {
    
    
  }


.s-270c5238-de2b-4d5c-8614-49bf3fb42d34 .shogun-image-content {
  
    align-items: center;
  
}

.s-270c5238-de2b-4d5c-8614-49bf3fb42d34.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-270c5238-de2b-4d5c-8614-49bf3fb42d34.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-270c5238-de2b-4d5c-8614-49bf3fb42d34.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-270c5238-de2b-4d5c-8614-49bf3fb42d34.shogun-image {
    
    
  }


.s-270c5238-de2b-4d5c-8614-49bf3fb42d34 .shogun-image-content {
  
    align-items: center;
  
}

.s-270c5238-de2b-4d5c-8614-49bf3fb42d34.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-270c5238-de2b-4d5c-8614-49bf3fb42d34.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-270c5238-de2b-4d5c-8614-49bf3fb42d34.shogun-image {
  box-sizing: border-box;
}



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





  img.s-270c5238-de2b-4d5c-8614-49bf3fb42d34.shogun-image {
    
    
  }


.s-270c5238-de2b-4d5c-8614-49bf3fb42d34 .shogun-image-content {
  
    align-items: center;
  
}

.s-270c5238-de2b-4d5c-8614-49bf3fb42d34.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-270c5238-de2b-4d5c-8614-49bf3fb42d34.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-270c5238-de2b-4d5c-8614-49bf3fb42d34.shogun-image {
  box-sizing: border-box;
}



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





  img.s-270c5238-de2b-4d5c-8614-49bf3fb42d34.shogun-image {
    
    
  }


.s-270c5238-de2b-4d5c-8614-49bf3fb42d34 .shogun-image-content {
  
    align-items: center;
  
}

.s-270c5238-de2b-4d5c-8614-49bf3fb42d34.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-270c5238-de2b-4d5c-8614-49bf3fb42d34.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-270c5238-de2b-4d5c-8614-49bf3fb42d34.shogun-image {
  box-sizing: border-box;
}



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





  img.s-270c5238-de2b-4d5c-8614-49bf3fb42d34.shogun-image {
    
    
  }


.s-270c5238-de2b-4d5c-8614-49bf3fb42d34 .shogun-image-content {
  
    align-items: center;
  
}

.s-270c5238-de2b-4d5c-8614-49bf3fb42d34.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-270c5238-de2b-4d5c-8614-49bf3fb42d34.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-270c5238-de2b-4d5c-8614-49bf3fb42d34.shogun-image {
  box-sizing: border-box;
}



}
#s-8017174a-207c-40cb-b917-ea53c1465eee {
  padding-top: 14px;
}

#s-10d31336-dc3e-41f6-89b9-9d0dacde7c2b {
  text-align: left;
}

#s-441e53e6-ae7f-4fea-b220-9fd038ee8c57 {
  margin-top: 6%;
}
@media (min-width: 1200px){#s-441e53e6-ae7f-4fea-b220-9fd038ee8c57 {
  display: none;
}
#s-441e53e6-ae7f-4fea-b220-9fd038ee8c57, #wrap-s-441e53e6-ae7f-4fea-b220-9fd038ee8c57 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-441e53e6-ae7f-4fea-b220-9fd038ee8c57 {
  display: none;
}
#s-441e53e6-ae7f-4fea-b220-9fd038ee8c57, #wrap-s-441e53e6-ae7f-4fea-b220-9fd038ee8c57 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-441e53e6-ae7f-4fea-b220-9fd038ee8c57 {
  display: none;
}
#s-441e53e6-ae7f-4fea-b220-9fd038ee8c57, #wrap-s-441e53e6-ae7f-4fea-b220-9fd038ee8c57 { display: none !important; }}@media (max-width: 767px){#s-441e53e6-ae7f-4fea-b220-9fd038ee8c57 {
  display: none;
}
#s-441e53e6-ae7f-4fea-b220-9fd038ee8c57, #wrap-s-441e53e6-ae7f-4fea-b220-9fd038ee8c57 { display: none !important; }}
#s-d7699580-2690-4e1a-ac4c-841b4c23115d {
  margin-left: 4%;
padding-left: 50px;
padding-right: 50px;
min-height: 50px;
max-width: 550px;
}








#s-d7699580-2690-4e1a-ac4c-841b4c23115d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d7699580-2690-4e1a-ac4c-841b4c23115d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e808ed2d-afde-44d4-9249-ac2a394cf0f1 {
  max-width: 215px;
aspect-ratio: 430/68;
text-align: left;
}





  #s-e808ed2d-afde-44d4-9249-ac2a394cf0f1 img.shogun-image,
  #s-e808ed2d-afde-44d4-9249-ac2a394cf0f1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e808ed2d-afde-44d4-9249-ac2a394cf0f1 {
    width: 100%;
    height: auto;
  }

  #s-e808ed2d-afde-44d4-9249-ac2a394cf0f1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e808ed2d-afde-44d4-9249-ac2a394cf0f1.shogun-image {
    
    
  }


.s-e808ed2d-afde-44d4-9249-ac2a394cf0f1 .shogun-image-content {
  
    align-items: center;
  
}

.s-e808ed2d-afde-44d4-9249-ac2a394cf0f1.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-e808ed2d-afde-44d4-9249-ac2a394cf0f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e808ed2d-afde-44d4-9249-ac2a394cf0f1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e808ed2d-afde-44d4-9249-ac2a394cf0f1 {
      --shg-aspect-ratio: calc(430/68); 
    }

    .s-e808ed2d-afde-44d4-9249-ac2a394cf0f1.shogun-image-container {
      position: relative;
    }

    .s-e808ed2d-afde-44d4-9249-ac2a394cf0f1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e808ed2d-afde-44d4-9249-ac2a394cf0f1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e808ed2d-afde-44d4-9249-ac2a394cf0f1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-e808ed2d-afde-44d4-9249-ac2a394cf0f1 img.shogun-image,
  #s-e808ed2d-afde-44d4-9249-ac2a394cf0f1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e808ed2d-afde-44d4-9249-ac2a394cf0f1 {
    width: 100%;
    height: auto;
  }

  #s-e808ed2d-afde-44d4-9249-ac2a394cf0f1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e808ed2d-afde-44d4-9249-ac2a394cf0f1.shogun-image {
    
    
  }


.s-e808ed2d-afde-44d4-9249-ac2a394cf0f1 .shogun-image-content {
  
    align-items: center;
  
}

.s-e808ed2d-afde-44d4-9249-ac2a394cf0f1.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-e808ed2d-afde-44d4-9249-ac2a394cf0f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e808ed2d-afde-44d4-9249-ac2a394cf0f1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e808ed2d-afde-44d4-9249-ac2a394cf0f1 {
      --shg-aspect-ratio: calc(430/68); 
    }

    .s-e808ed2d-afde-44d4-9249-ac2a394cf0f1.shogun-image-container {
      position: relative;
    }

    .s-e808ed2d-afde-44d4-9249-ac2a394cf0f1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e808ed2d-afde-44d4-9249-ac2a394cf0f1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e808ed2d-afde-44d4-9249-ac2a394cf0f1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-e808ed2d-afde-44d4-9249-ac2a394cf0f1 img.shogun-image,
  #s-e808ed2d-afde-44d4-9249-ac2a394cf0f1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e808ed2d-afde-44d4-9249-ac2a394cf0f1 {
    width: 100%;
    height: auto;
  }

  #s-e808ed2d-afde-44d4-9249-ac2a394cf0f1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e808ed2d-afde-44d4-9249-ac2a394cf0f1.shogun-image {
    
    
  }


.s-e808ed2d-afde-44d4-9249-ac2a394cf0f1 .shogun-image-content {
  
    align-items: center;
  
}

.s-e808ed2d-afde-44d4-9249-ac2a394cf0f1.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-e808ed2d-afde-44d4-9249-ac2a394cf0f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e808ed2d-afde-44d4-9249-ac2a394cf0f1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e808ed2d-afde-44d4-9249-ac2a394cf0f1 {
      --shg-aspect-ratio: calc(430/68); 
    }

    .s-e808ed2d-afde-44d4-9249-ac2a394cf0f1.shogun-image-container {
      position: relative;
    }

    .s-e808ed2d-afde-44d4-9249-ac2a394cf0f1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e808ed2d-afde-44d4-9249-ac2a394cf0f1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e808ed2d-afde-44d4-9249-ac2a394cf0f1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-e808ed2d-afde-44d4-9249-ac2a394cf0f1 img.shogun-image,
  #s-e808ed2d-afde-44d4-9249-ac2a394cf0f1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e808ed2d-afde-44d4-9249-ac2a394cf0f1 {
    width: 100%;
    height: auto;
  }

  #s-e808ed2d-afde-44d4-9249-ac2a394cf0f1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e808ed2d-afde-44d4-9249-ac2a394cf0f1.shogun-image {
    
    
  }


.s-e808ed2d-afde-44d4-9249-ac2a394cf0f1 .shogun-image-content {
  
    align-items: center;
  
}

.s-e808ed2d-afde-44d4-9249-ac2a394cf0f1.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-e808ed2d-afde-44d4-9249-ac2a394cf0f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e808ed2d-afde-44d4-9249-ac2a394cf0f1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e808ed2d-afde-44d4-9249-ac2a394cf0f1 {
      --shg-aspect-ratio: calc(430/68); 
    }

    .s-e808ed2d-afde-44d4-9249-ac2a394cf0f1.shogun-image-container {
      position: relative;
    }

    .s-e808ed2d-afde-44d4-9249-ac2a394cf0f1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e808ed2d-afde-44d4-9249-ac2a394cf0f1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e808ed2d-afde-44d4-9249-ac2a394cf0f1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-e808ed2d-afde-44d4-9249-ac2a394cf0f1 img.shogun-image,
  #s-e808ed2d-afde-44d4-9249-ac2a394cf0f1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e808ed2d-afde-44d4-9249-ac2a394cf0f1 {
    width: 100%;
    height: auto;
  }

  #s-e808ed2d-afde-44d4-9249-ac2a394cf0f1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e808ed2d-afde-44d4-9249-ac2a394cf0f1.shogun-image {
    
    
  }


.s-e808ed2d-afde-44d4-9249-ac2a394cf0f1 .shogun-image-content {
  
    align-items: center;
  
}

.s-e808ed2d-afde-44d4-9249-ac2a394cf0f1.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-e808ed2d-afde-44d4-9249-ac2a394cf0f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e808ed2d-afde-44d4-9249-ac2a394cf0f1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e808ed2d-afde-44d4-9249-ac2a394cf0f1 {
      --shg-aspect-ratio: calc(430/68); 
    }

    .s-e808ed2d-afde-44d4-9249-ac2a394cf0f1.shogun-image-container {
      position: relative;
    }

    .s-e808ed2d-afde-44d4-9249-ac2a394cf0f1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e808ed2d-afde-44d4-9249-ac2a394cf0f1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e808ed2d-afde-44d4-9249-ac2a394cf0f1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-d1af7404-4da4-456b-adbe-acbbd361a6fc {
  padding-top: 35px;
}

#s-99dee496-206f-430a-aae9-7870299980c2 {
  text-align: left;
}

#s-d9b9229d-08b5-4e06-a389-24efb6212ae6 {
  margin-top: 6%;
}
@media (min-width: 1200px){#s-d9b9229d-08b5-4e06-a389-24efb6212ae6 {
  display: none;
}
#s-d9b9229d-08b5-4e06-a389-24efb6212ae6, #wrap-s-d9b9229d-08b5-4e06-a389-24efb6212ae6 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d9b9229d-08b5-4e06-a389-24efb6212ae6 {
  display: none;
}
#s-d9b9229d-08b5-4e06-a389-24efb6212ae6, #wrap-s-d9b9229d-08b5-4e06-a389-24efb6212ae6 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d9b9229d-08b5-4e06-a389-24efb6212ae6 {
  display: none;
}
#s-d9b9229d-08b5-4e06-a389-24efb6212ae6, #wrap-s-d9b9229d-08b5-4e06-a389-24efb6212ae6 { display: none !important; }}@media (max-width: 767px){#s-d9b9229d-08b5-4e06-a389-24efb6212ae6 {
  display: none;
}
#s-d9b9229d-08b5-4e06-a389-24efb6212ae6, #wrap-s-d9b9229d-08b5-4e06-a389-24efb6212ae6 { display: none !important; }}
#s-7991b399-764c-4d5d-a650-2c396519b0c9 {
  margin-left: 0%;
margin-right: 0%;
padding-left: 50px;
padding-right: 50px;
min-height: 50px;
max-width: 600px;
}








#s-7991b399-764c-4d5d-a650-2c396519b0c9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7991b399-764c-4d5d-a650-2c396519b0c9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-13750aa0-cc26-435a-aa38-aceaa9adbd12 {
  margin-top: 38px;
margin-bottom: 38px;
}

#s-a08a6ac1-4f1d-40cb-a37f-a73a99cb8a51 {
  text-align: left;
}

#s-4c6a85f4-22c6-4745-98e3-a24430453a12 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-4c6a85f4-22c6-4745-98e3-a24430453a12 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4c6a85f4-22c6-4745-98e3-a24430453a12.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a0333588-f503-4473-968d-93a3b88a179b {
  margin-left: 4%;
padding-left: 50px;
padding-right: 50px;
min-height: 50px;
max-width: 550px;
}








#s-a0333588-f503-4473-968d-93a3b88a179b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a0333588-f503-4473-968d-93a3b88a179b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c1e948f8-b673-438e-8d48-3b221c6a41d4 {
  margin-top: 36px;
margin-left: 5px;
padding-top: 18px;
padding-left: 37px;
padding-bottom: 19px;
padding-right: 39px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 8px;
background-color: rgba(255, 194, 34, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.5em;
}
#s-c1e948f8-b673-438e-8d48-3b221c6a41d4:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-c1e948f8-b673-438e-8d48-3b221c6a41d4:active {background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-c1e948f8-b673-438e-8d48-3b221c6a41d4-root {
    text-align: left;
  }


#s-c1e948f8-b673-438e-8d48-3b221c6a41d4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c1e948f8-b673-438e-8d48-3b221c6a41d4-root {
    text-align: left;
  }


#s-c1e948f8-b673-438e-8d48-3b221c6a41d4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c1e948f8-b673-438e-8d48-3b221c6a41d4-root {
    text-align: left;
  }


#s-c1e948f8-b673-438e-8d48-3b221c6a41d4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c1e948f8-b673-438e-8d48-3b221c6a41d4-root {
    text-align: left;
  }


#s-c1e948f8-b673-438e-8d48-3b221c6a41d4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c1e948f8-b673-438e-8d48-3b221c6a41d4-root {
    text-align: left;
  }


#s-c1e948f8-b673-438e-8d48-3b221c6a41d4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-9a5fb94a-7734-4e97-a6ab-8c0d3b035e04 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-9a5fb94a-7734-4e97-a6ab-8c0d3b035e04 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9a5fb94a-7734-4e97-a6ab-8c0d3b035e04.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3cf279fd-0d4a-44ce-af88-206abcf435df {
  padding-left: 50px;
padding-right: 50px;
min-height: 50px;
max-width: 550px;
}








#s-3cf279fd-0d4a-44ce-af88-206abcf435df > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3cf279fd-0d4a-44ce-af88-206abcf435df.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-22f8c8d3-76c1-4601-a372-7d9da18e649b {
  margin-top: 36px;
margin-left: 5px;
padding-top: 16px;
padding-left: 24px;
padding-bottom: 16px;
padding-right: 24px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 8px;
background-color: rgba(255, 194, 34, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.5em;
}
#s-22f8c8d3-76c1-4601-a372-7d9da18e649b:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-22f8c8d3-76c1-4601-a372-7d9da18e649b:active {background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-22f8c8d3-76c1-4601-a372-7d9da18e649b-root {
    text-align: left;
  }


#s-22f8c8d3-76c1-4601-a372-7d9da18e649b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-22f8c8d3-76c1-4601-a372-7d9da18e649b-root {
    text-align: left;
  }


#s-22f8c8d3-76c1-4601-a372-7d9da18e649b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-22f8c8d3-76c1-4601-a372-7d9da18e649b-root {
    text-align: left;
  }


#s-22f8c8d3-76c1-4601-a372-7d9da18e649b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-22f8c8d3-76c1-4601-a372-7d9da18e649b-root {
    text-align: left;
  }


#s-22f8c8d3-76c1-4601-a372-7d9da18e649b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-22f8c8d3-76c1-4601-a372-7d9da18e649b-root {
    text-align: left;
  }


#s-22f8c8d3-76c1-4601-a372-7d9da18e649b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-3e6ffc3e-1b7f-49be-9584-80425fb1af64 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-3e6ffc3e-1b7f-49be-9584-80425fb1af64 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3e6ffc3e-1b7f-49be-9584-80425fb1af64.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3519a525-a8eb-45c0-965f-55565ab54f46 {
  padding-left: 50px;
padding-right: 50px;
min-height: 50px;
max-width: 550px;
}








#s-3519a525-a8eb-45c0-965f-55565ab54f46 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3519a525-a8eb-45c0-965f-55565ab54f46.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-54fed714-cf2b-45e6-a2bf-bb5bbe69070a {
  margin-top: 36px;
margin-left: 5px;
padding-top: 18px;
padding-left: 37px;
padding-bottom: 19px;
padding-right: 39px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 8px;
background-color: rgba(255, 194, 34, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.5em;
}
#s-54fed714-cf2b-45e6-a2bf-bb5bbe69070a:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-54fed714-cf2b-45e6-a2bf-bb5bbe69070a:active {background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-54fed714-cf2b-45e6-a2bf-bb5bbe69070a-root {
    text-align: left;
  }


#s-54fed714-cf2b-45e6-a2bf-bb5bbe69070a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-54fed714-cf2b-45e6-a2bf-bb5bbe69070a-root {
    text-align: left;
  }


#s-54fed714-cf2b-45e6-a2bf-bb5bbe69070a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-54fed714-cf2b-45e6-a2bf-bb5bbe69070a-root {
    text-align: left;
  }


#s-54fed714-cf2b-45e6-a2bf-bb5bbe69070a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-54fed714-cf2b-45e6-a2bf-bb5bbe69070a-root {
    text-align: left;
  }


#s-54fed714-cf2b-45e6-a2bf-bb5bbe69070a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-54fed714-cf2b-45e6-a2bf-bb5bbe69070a-root {
    text-align: left;
  }


#s-54fed714-cf2b-45e6-a2bf-bb5bbe69070a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-11977ac3-d15c-4d20-a955-d8e7e5392a07 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-11977ac3-d15c-4d20-a955-d8e7e5392a07 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-11977ac3-d15c-4d20-a955-d8e7e5392a07.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ce0fb037-5f2b-45a9-a340-0bc89035a68b {
  margin-left: auto;
margin-right: auto;
max-width: 125px;
text-align: center;
}







  #s-ce0fb037-5f2b-45a9-a340-0bc89035a68b img.shogun-image {
    

    
    
    
  }


#s-ce0fb037-5f2b-45a9-a340-0bc89035a68b .shogun-image-content {
  
    align-items: center;
  
}

#s-111e7d23-766d-4c58-b48b-dd1e764d6717 {
  margin-left: auto;
margin-right: auto;
padding-left: 50px;
padding-right: 50px;
min-height: 50px;
}








#s-111e7d23-766d-4c58-b48b-dd1e764d6717 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-111e7d23-766d-4c58-b48b-dd1e764d6717.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-10887552-5766-4e73-8ae0-4c9707b10e59 {
  margin-top: 4%;
margin-left: auto;
margin-right: auto;
}

#s-2752a853-1e0c-4e26-8388-ff4ed7942691 {
  margin-top: 2%;
margin-left: 5px;
padding-top: 16px;
padding-left: 24px;
padding-bottom: 16px;
padding-right: 24px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 8px;
background-color: rgba(255, 194, 34, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.5em;
}
#s-2752a853-1e0c-4e26-8388-ff4ed7942691:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-2752a853-1e0c-4e26-8388-ff4ed7942691:active {background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-2752a853-1e0c-4e26-8388-ff4ed7942691-root {
    text-align: center;
  }


#s-2752a853-1e0c-4e26-8388-ff4ed7942691.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-2752a853-1e0c-4e26-8388-ff4ed7942691-root {
    text-align: center;
  }


#s-2752a853-1e0c-4e26-8388-ff4ed7942691.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-2752a853-1e0c-4e26-8388-ff4ed7942691-root {
    text-align: center;
  }


#s-2752a853-1e0c-4e26-8388-ff4ed7942691.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-2752a853-1e0c-4e26-8388-ff4ed7942691-root {
    text-align: center;
  }


#s-2752a853-1e0c-4e26-8388-ff4ed7942691.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-2752a853-1e0c-4e26-8388-ff4ed7942691-root {
    text-align: center;
  }


#s-2752a853-1e0c-4e26-8388-ff4ed7942691.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-b3277d0a-ac4c-4f3d-81a8-e5dd6583fbfe {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-b3277d0a-ac4c-4f3d-81a8-e5dd6583fbfe > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b3277d0a-ac4c-4f3d-81a8-e5dd6583fbfe.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-42cbf0e3-a7c8-4600-895d-0ab7e601cdbf {
  margin-left: auto;
margin-right: auto;
padding-left: 50px;
padding-right: 50px;
min-height: 50px;
}








#s-42cbf0e3-a7c8-4600-895d-0ab7e601cdbf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-42cbf0e3-a7c8-4600-895d-0ab7e601cdbf.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ac1c6b5d-9dac-4eec-8035-6bb8eacd3121 {
  margin-top: 4%;
margin-left: auto;
margin-right: auto;
}

#s-b07608fe-f8e8-4ed9-919b-ad1d73dbdf69 {
  margin-top: 2%;
margin-left: 5px;
padding-top: 16px;
padding-left: 24px;
padding-bottom: 16px;
padding-right: 24px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 8px;
background-color: rgba(255, 194, 34, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.5em;
}
#s-b07608fe-f8e8-4ed9-919b-ad1d73dbdf69:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-b07608fe-f8e8-4ed9-919b-ad1d73dbdf69:active {background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-b07608fe-f8e8-4ed9-919b-ad1d73dbdf69-root {
    text-align: center;
  }


#s-b07608fe-f8e8-4ed9-919b-ad1d73dbdf69.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-b07608fe-f8e8-4ed9-919b-ad1d73dbdf69-root {
    text-align: center;
  }


#s-b07608fe-f8e8-4ed9-919b-ad1d73dbdf69.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b07608fe-f8e8-4ed9-919b-ad1d73dbdf69-root {
    text-align: center;
  }


#s-b07608fe-f8e8-4ed9-919b-ad1d73dbdf69.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b07608fe-f8e8-4ed9-919b-ad1d73dbdf69-root {
    text-align: center;
  }


#s-b07608fe-f8e8-4ed9-919b-ad1d73dbdf69.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-b07608fe-f8e8-4ed9-919b-ad1d73dbdf69-root {
    text-align: center;
  }


#s-b07608fe-f8e8-4ed9-919b-ad1d73dbdf69.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-3d292022-524f-485d-9b03-8ca4aecf8912 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-3d292022-524f-485d-9b03-8ca4aecf8912 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3d292022-524f-485d-9b03-8ca4aecf8912.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5c7e96d3-d08e-4644-b83c-e571e5915e1d {
  margin-left: auto;
margin-right: auto;
padding-left: 50px;
padding-right: 50px;
min-height: 50px;
}








#s-5c7e96d3-d08e-4644-b83c-e571e5915e1d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5c7e96d3-d08e-4644-b83c-e571e5915e1d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3f7a0561-c40d-4220-89eb-cae6ed70d050 {
  margin-top: 3%;
margin-left: auto;
margin-right: auto;
}

#s-5b327923-933e-46c8-aaa4-bca13e45600f {
  margin-top: 2%;
margin-left: 5px;
padding-top: 16px;
padding-left: 24px;
padding-bottom: 16px;
padding-right: 24px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 8px;
background-color: rgba(255, 194, 34, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.5em;
}
#s-5b327923-933e-46c8-aaa4-bca13e45600f:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-5b327923-933e-46c8-aaa4-bca13e45600f:active {background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-5b327923-933e-46c8-aaa4-bca13e45600f-root {
    text-align: center;
  }


#s-5b327923-933e-46c8-aaa4-bca13e45600f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-5b327923-933e-46c8-aaa4-bca13e45600f-root {
    text-align: center;
  }


#s-5b327923-933e-46c8-aaa4-bca13e45600f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-5b327923-933e-46c8-aaa4-bca13e45600f-root {
    text-align: center;
  }


#s-5b327923-933e-46c8-aaa4-bca13e45600f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-5b327923-933e-46c8-aaa4-bca13e45600f-root {
    text-align: center;
  }


#s-5b327923-933e-46c8-aaa4-bca13e45600f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-5b327923-933e-46c8-aaa4-bca13e45600f-root {
    text-align: center;
  }


#s-5b327923-933e-46c8-aaa4-bca13e45600f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-4007b9aa-625c-4332-8ae6-29f48e19a81e {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-4007b9aa-625c-4332-8ae6-29f48e19a81e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4007b9aa-625c-4332-8ae6-29f48e19a81e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-511ac30b-e25b-4081-86f1-876f674588c9 {
  margin-left: auto;
margin-right: auto;
padding-left: 50px;
padding-right: 50px;
min-height: 50px;
}








#s-511ac30b-e25b-4081-86f1-876f674588c9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-511ac30b-e25b-4081-86f1-876f674588c9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5d032baf-c462-4c05-aae9-150ab14c8189 {
  margin-left: auto;
margin-right: auto;
}

#s-ace47936-5d2e-430a-ac8b-f4909c7b0ebc {
  margin-top: 36px;
margin-left: 5px;
padding-top: 18px;
padding-left: 37px;
padding-bottom: 19px;
padding-right: 39px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 8px;
background-color: rgba(255, 194, 34, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.5em;
}
#s-ace47936-5d2e-430a-ac8b-f4909c7b0ebc:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-ace47936-5d2e-430a-ac8b-f4909c7b0ebc:active {background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-ace47936-5d2e-430a-ac8b-f4909c7b0ebc-root {
    text-align: center;
  }


#s-ace47936-5d2e-430a-ac8b-f4909c7b0ebc.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ace47936-5d2e-430a-ac8b-f4909c7b0ebc-root {
    text-align: center;
  }


#s-ace47936-5d2e-430a-ac8b-f4909c7b0ebc.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ace47936-5d2e-430a-ac8b-f4909c7b0ebc-root {
    text-align: center;
  }


#s-ace47936-5d2e-430a-ac8b-f4909c7b0ebc.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ace47936-5d2e-430a-ac8b-f4909c7b0ebc-root {
    text-align: center;
  }


#s-ace47936-5d2e-430a-ac8b-f4909c7b0ebc.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ace47936-5d2e-430a-ac8b-f4909c7b0ebc-root {
    text-align: center;
  }


#s-ace47936-5d2e-430a-ac8b-f4909c7b0ebc.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-5fcab398-3e9e-4b8e-a939-4d9dd81b728b {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-5fcab398-3e9e-4b8e-a939-4d9dd81b728b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5fcab398-3e9e-4b8e-a939-4d9dd81b728b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-eac1a7ba-3b04-4597-987a-c4cad1fe8bec {
  min-height: 50px;
}








#s-eac1a7ba-3b04-4597-987a-c4cad1fe8bec > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-eac1a7ba-3b04-4597-987a-c4cad1fe8bec.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c0c5a634-3f5d-491a-a102-03e99737bf47 {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
text-align: center;
}







  #s-c0c5a634-3f5d-491a-a102-03e99737bf47 img.shogun-image {
    

    
    
    
  }


#s-c0c5a634-3f5d-491a-a102-03e99737bf47 .shogun-image-content {
  
    align-items: center;
  
}

#s-c890527c-df07-4f25-88c4-fb4a7f492fe3 {
  margin-top: 5%;
padding-top: 12px;
padding-left: 29px;
padding-bottom: 12px;
padding-right: 27px;
border-radius: 8px;
background-color: rgba(255, 194, 34, 1);
text-align: center;
text-decoration: none;
line-height: 1.5em;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-c890527c-df07-4f25-88c4-fb4a7f492fe3:hover {background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-c890527c-df07-4f25-88c4-fb4a7f492fe3:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-c890527c-df07-4f25-88c4-fb4a7f492fe3-root {
    text-align: center;
  }


#s-c890527c-df07-4f25-88c4-fb4a7f492fe3.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c890527c-df07-4f25-88c4-fb4a7f492fe3-root {
    text-align: center;
  }


#s-c890527c-df07-4f25-88c4-fb4a7f492fe3.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c890527c-df07-4f25-88c4-fb4a7f492fe3-root {
    text-align: center;
  }


#s-c890527c-df07-4f25-88c4-fb4a7f492fe3.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c890527c-df07-4f25-88c4-fb4a7f492fe3-root {
    text-align: center;
  }


#s-c890527c-df07-4f25-88c4-fb4a7f492fe3.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c890527c-df07-4f25-88c4-fb4a7f492fe3-root {
    text-align: center;
  }


#s-c890527c-df07-4f25-88c4-fb4a7f492fe3.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-94495044-8253-4b17-9ad2-5229042e80c0 {
  min-height: 50px;
}








#s-94495044-8253-4b17-9ad2-5229042e80c0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-94495044-8253-4b17-9ad2-5229042e80c0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3c7b9e5b-6c07-45c8-9314-cfd05a65c57b {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
text-align: center;
}







  #s-3c7b9e5b-6c07-45c8-9314-cfd05a65c57b img.shogun-image {
    

    
    
    
  }


#s-3c7b9e5b-6c07-45c8-9314-cfd05a65c57b .shogun-image-content {
  
    align-items: center;
  
}

#s-89d0295f-92df-4cc0-bc0d-b047ad444f14 {
  margin-top: 2%;
margin-bottom: 0%;
}

#s-dc0b7f2f-a170-485e-b906-53fa7146543b {
  margin-top: 5%;
}

#s-bfbc5245-1536-4ea3-8991-2cb7560767bf {
  padding-left: 50px;
padding-right: 50px;
min-height: 50px;
max-width: 550px;
}








#s-bfbc5245-1536-4ea3-8991-2cb7560767bf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bfbc5245-1536-4ea3-8991-2cb7560767bf.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-42a91481-5ae6-4ce5-a7cf-a845de55dade {
  margin-top: 36px;
margin-left: 5px;
padding-top: 18px;
padding-left: 37px;
padding-bottom: 19px;
padding-right: 39px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 8px;
background-color: rgba(255, 194, 34, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.5em;
}
#s-42a91481-5ae6-4ce5-a7cf-a845de55dade:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-42a91481-5ae6-4ce5-a7cf-a845de55dade:active {background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-42a91481-5ae6-4ce5-a7cf-a845de55dade-root {
    text-align: left;
  }


#s-42a91481-5ae6-4ce5-a7cf-a845de55dade.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-42a91481-5ae6-4ce5-a7cf-a845de55dade-root {
    text-align: left;
  }


#s-42a91481-5ae6-4ce5-a7cf-a845de55dade.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-42a91481-5ae6-4ce5-a7cf-a845de55dade-root {
    text-align: left;
  }


#s-42a91481-5ae6-4ce5-a7cf-a845de55dade.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-42a91481-5ae6-4ce5-a7cf-a845de55dade-root {
    text-align: left;
  }


#s-42a91481-5ae6-4ce5-a7cf-a845de55dade.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-42a91481-5ae6-4ce5-a7cf-a845de55dade-root {
    text-align: left;
  }


#s-42a91481-5ae6-4ce5-a7cf-a845de55dade.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-62a67ee6-fb68-466e-a996-485cc3888624 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-62a67ee6-fb68-466e-a996-485cc3888624 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-62a67ee6-fb68-466e-a996-485cc3888624.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-83ab00be-07b8-43b1-864a-5bb5e4e52cb7 {
  padding-left: 50px;
padding-right: 50px;
min-height: 50px;
max-width: 550px;
}








#s-83ab00be-07b8-43b1-864a-5bb5e4e52cb7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-83ab00be-07b8-43b1-864a-5bb5e4e52cb7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b2961f36-ff0d-4149-b319-b41947ecbdfd {
  margin-top: 36px;
margin-left: 5px;
padding-top: 18px;
padding-left: 37px;
padding-bottom: 19px;
padding-right: 39px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 8px;
background-color: rgba(255, 194, 34, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.5em;
}
#s-b2961f36-ff0d-4149-b319-b41947ecbdfd:hover {border-radius: 5px !important;
background-color: rgba(255, 194, 34, 0.7) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-b2961f36-ff0d-4149-b319-b41947ecbdfd:active {background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-b2961f36-ff0d-4149-b319-b41947ecbdfd-root {
    text-align: left;
  }


#s-b2961f36-ff0d-4149-b319-b41947ecbdfd.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-b2961f36-ff0d-4149-b319-b41947ecbdfd-root {
    text-align: left;
  }


#s-b2961f36-ff0d-4149-b319-b41947ecbdfd.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b2961f36-ff0d-4149-b319-b41947ecbdfd-root {
    text-align: left;
  }


#s-b2961f36-ff0d-4149-b319-b41947ecbdfd.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b2961f36-ff0d-4149-b319-b41947ecbdfd-root {
    text-align: left;
  }


#s-b2961f36-ff0d-4149-b319-b41947ecbdfd.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-b2961f36-ff0d-4149-b319-b41947ecbdfd-root {
    text-align: left;
  }


#s-b2961f36-ff0d-4149-b319-b41947ecbdfd.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-6ad8c807-2d54-4dfa-b5c5-f76df7067b9a {
  margin-left: 4%;
padding-left: 50px;
padding-right: 50px;
min-height: 50px;
}








#s-6ad8c807-2d54-4dfa-b5c5-f76df7067b9a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6ad8c807-2d54-4dfa-b5c5-f76df7067b9a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-aee5f7a0-8d53-416e-81d4-076c0e295d7d {
  margin-left: auto;
margin-right: auto;
max-width: 51px;
text-align: center;
}







  #s-aee5f7a0-8d53-416e-81d4-076c0e295d7d img.shogun-image {
    

    
    
    
  }


#s-aee5f7a0-8d53-416e-81d4-076c0e295d7d .shogun-image-content {
  
    align-items: center;
  
}

#s-7d9915ba-1a4a-4059-8702-c5dcb0de4df1 {
  margin-top: 26px;
}

#s-9cbb333b-44ca-4edb-9408-86457cffc3c7 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-9cbb333b-44ca-4edb-9408-86457cffc3c7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9cbb333b-44ca-4edb-9408-86457cffc3c7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fee2bc40-29e4-4bf1-a484-2bda7eaedcaa {
  min-height: 50px;
}








#s-fee2bc40-29e4-4bf1-a484-2bda7eaedcaa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fee2bc40-29e4-4bf1-a484-2bda7eaedcaa.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-664511c0-8e34-4dbf-93aa-52efe07aca71 {
  padding-top: 8px;
max-width: 100%;
}

#s-ebd45544-e685-400a-a6bf-2076a574ba20 {
  padding-top: 12%;
}

#s-8df9db32-da77-4fb7-9a38-92cf9a153214 {
  margin-top: 19px;
margin-left: 5px;
margin-bottom: 20px;
padding-top: 12px;
padding-left: 19px;
padding-bottom: 12px;
padding-right: 19px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 5px;
background-color: rgba(255, 194, 34, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.18em;
}
#s-8df9db32-da77-4fb7-9a38-92cf9a153214:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-8df9db32-da77-4fb7-9a38-92cf9a153214:active {border-radius: 5px !important;
background-color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-8df9db32-da77-4fb7-9a38-92cf9a153214-root {
    text-align: center;
  }


#s-8df9db32-da77-4fb7-9a38-92cf9a153214.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-8df9db32-da77-4fb7-9a38-92cf9a153214-root {
    text-align: center;
  }


#s-8df9db32-da77-4fb7-9a38-92cf9a153214.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-8df9db32-da77-4fb7-9a38-92cf9a153214-root {
    text-align: center;
  }


#s-8df9db32-da77-4fb7-9a38-92cf9a153214.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-8df9db32-da77-4fb7-9a38-92cf9a153214-root {
    text-align: center;
  }


#s-8df9db32-da77-4fb7-9a38-92cf9a153214.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-8df9db32-da77-4fb7-9a38-92cf9a153214-root {
    text-align: center;
  }


#s-8df9db32-da77-4fb7-9a38-92cf9a153214.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-6deaabb6-ddda-459b-80ec-b0446f202931 {
  margin-left: 4%;
padding-left: 50px;
padding-right: 50px;
min-height: 50px;
max-width: 550px;
}








#s-6deaabb6-ddda-459b-80ec-b0446f202931 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6deaabb6-ddda-459b-80ec-b0446f202931.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e9a88e0d-0107-44e8-8afe-8a6b2c984d77 {
  margin-top: 36px;
margin-left: 5px;
padding-top: 18px;
padding-left: 37px;
padding-bottom: 19px;
padding-right: 39px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 8px;
background-color: rgba(255, 194, 34, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.5em;
}
#s-e9a88e0d-0107-44e8-8afe-8a6b2c984d77:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-e9a88e0d-0107-44e8-8afe-8a6b2c984d77:active {background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-e9a88e0d-0107-44e8-8afe-8a6b2c984d77-root {
    text-align: left;
  }


#s-e9a88e0d-0107-44e8-8afe-8a6b2c984d77.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e9a88e0d-0107-44e8-8afe-8a6b2c984d77-root {
    text-align: left;
  }


#s-e9a88e0d-0107-44e8-8afe-8a6b2c984d77.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e9a88e0d-0107-44e8-8afe-8a6b2c984d77-root {
    text-align: left;
  }


#s-e9a88e0d-0107-44e8-8afe-8a6b2c984d77.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e9a88e0d-0107-44e8-8afe-8a6b2c984d77-root {
    text-align: left;
  }


#s-e9a88e0d-0107-44e8-8afe-8a6b2c984d77.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e9a88e0d-0107-44e8-8afe-8a6b2c984d77-root {
    text-align: left;
  }


#s-e9a88e0d-0107-44e8-8afe-8a6b2c984d77.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-03ee0018-13c6-4dbc-b4f8-65175219715e {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-03ee0018-13c6-4dbc-b4f8-65175219715e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-03ee0018-13c6-4dbc-b4f8-65175219715e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3c1f9aac-1f5b-47f4-b1ae-b38d0b9bb9e7 {
  min-height: 50px;
}








#s-3c1f9aac-1f5b-47f4-b1ae-b38d0b9bb9e7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3c1f9aac-1f5b-47f4-b1ae-b38d0b9bb9e7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ae7be0ad-18f8-4886-bb14-1255261de486 {
  padding-top: 8px;
max-width: 100%;
}

#s-382b5b08-eba4-4576-93a7-3f32f0dfe707 {
  padding-top: 12%;
}

#s-2f5ccff1-88f9-4fcc-88fd-6cfeed7d049f {
  margin-top: 19px;
margin-left: 5px;
margin-bottom: 20px;
padding-top: 12px;
padding-left: 19px;
padding-bottom: 12px;
padding-right: 19px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 5px;
background-color: rgba(255, 194, 34, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.18em;
}
#s-2f5ccff1-88f9-4fcc-88fd-6cfeed7d049f:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-2f5ccff1-88f9-4fcc-88fd-6cfeed7d049f:active {border-radius: 5px !important;
background-color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-2f5ccff1-88f9-4fcc-88fd-6cfeed7d049f-root {
    text-align: center;
  }


#s-2f5ccff1-88f9-4fcc-88fd-6cfeed7d049f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-2f5ccff1-88f9-4fcc-88fd-6cfeed7d049f-root {
    text-align: center;
  }


#s-2f5ccff1-88f9-4fcc-88fd-6cfeed7d049f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-2f5ccff1-88f9-4fcc-88fd-6cfeed7d049f-root {
    text-align: center;
  }


#s-2f5ccff1-88f9-4fcc-88fd-6cfeed7d049f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-2f5ccff1-88f9-4fcc-88fd-6cfeed7d049f-root {
    text-align: center;
  }


#s-2f5ccff1-88f9-4fcc-88fd-6cfeed7d049f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-2f5ccff1-88f9-4fcc-88fd-6cfeed7d049f-root {
    text-align: center;
  }


#s-2f5ccff1-88f9-4fcc-88fd-6cfeed7d049f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-4e308132-e882-40da-a7f5-67630fc2c358 {
  min-height: 50px;
}








#s-4e308132-e882-40da-a7f5-67630fc2c358 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4e308132-e882-40da-a7f5-67630fc2c358.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b92aed4c-b314-456f-8046-38d66b671ed8 {
  padding-top: 8px;
max-width: 100%;
}

#s-d17c78cc-96ce-44f9-838b-cbdb8b45cbc3 {
  margin-top: 19px;
margin-left: 5px;
margin-bottom: 20px;
padding-top: 12px;
padding-left: 19px;
padding-bottom: 12px;
padding-right: 19px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 5px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1.18em;
}
#s-d17c78cc-96ce-44f9-838b-cbdb8b45cbc3:hover {border-radius: 5px !important;
background-color: rgba(240, 221, 125, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-d17c78cc-96ce-44f9-838b-cbdb8b45cbc3:active {border-radius: 5px !important;
background-color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-d17c78cc-96ce-44f9-838b-cbdb8b45cbc3-root {
    text-align: center;
  }


#s-d17c78cc-96ce-44f9-838b-cbdb8b45cbc3.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-d17c78cc-96ce-44f9-838b-cbdb8b45cbc3-root {
    text-align: center;
  }


#s-d17c78cc-96ce-44f9-838b-cbdb8b45cbc3.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d17c78cc-96ce-44f9-838b-cbdb8b45cbc3-root {
    text-align: center;
  }


#s-d17c78cc-96ce-44f9-838b-cbdb8b45cbc3.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d17c78cc-96ce-44f9-838b-cbdb8b45cbc3-root {
    text-align: center;
  }


#s-d17c78cc-96ce-44f9-838b-cbdb8b45cbc3.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-d17c78cc-96ce-44f9-838b-cbdb8b45cbc3-root {
    text-align: center;
  }


#s-d17c78cc-96ce-44f9-838b-cbdb8b45cbc3.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-d9ee6023-766b-4c7b-b0b3-bbb189ddd71c {
  padding-left: 35px;
min-height: 50px;
max-width: 350px;
}








#s-d9ee6023-766b-4c7b-b0b3-bbb189ddd71c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d9ee6023-766b-4c7b-b0b3-bbb189ddd71c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7e9b7449-a1be-447f-a0c5-1326342491f8 {
  margin-top: 15px;
padding-top: 15px;
padding-left: 37px;
padding-bottom: 15px;
padding-right: 38px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 5px;
background-color: rgba(0, 0, 0, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
line-height: 1.5em;
}
#s-7e9b7449-a1be-447f-a0c5-1326342491f8:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-7e9b7449-a1be-447f-a0c5-1326342491f8:active {border-radius: 5px !important;
background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-7e9b7449-a1be-447f-a0c5-1326342491f8-root {
    text-align: left;
  }


#s-7e9b7449-a1be-447f-a0c5-1326342491f8.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-7e9b7449-a1be-447f-a0c5-1326342491f8-root {
    text-align: left;
  }


#s-7e9b7449-a1be-447f-a0c5-1326342491f8.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7e9b7449-a1be-447f-a0c5-1326342491f8-root {
    text-align: left;
  }


#s-7e9b7449-a1be-447f-a0c5-1326342491f8.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7e9b7449-a1be-447f-a0c5-1326342491f8-root {
    text-align: left;
  }


#s-7e9b7449-a1be-447f-a0c5-1326342491f8.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-7e9b7449-a1be-447f-a0c5-1326342491f8-root {
    text-align: left;
  }


#s-7e9b7449-a1be-447f-a0c5-1326342491f8.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-f62b459c-ec22-4a0c-b98b-2e997bdb9271 {
  padding-left: 35px;
min-height: 50px;
max-width: 350px;
}








#s-f62b459c-ec22-4a0c-b98b-2e997bdb9271 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f62b459c-ec22-4a0c-b98b-2e997bdb9271.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-91730cdf-e103-4976-99a2-813b0be8fdff {
  margin-left: 2px;
}

#s-a7cbea9a-a727-4dcc-a7c5-9e5d31ec1b07 {
  margin-left: 0px;
margin-bottom: 4px;
margin-right: 0px;
text-align: left;
}

#s-a7cbea9a-a727-4dcc-a7c5-9e5d31ec1b07 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "HK Grotesk Pro";
  font-style:  normal ;
  font-size: 40px;
  line-height: 1em;
  
  text-align: left;
}



#s-3d39cb51-df4c-4960-b04a-fda67af865c3 {
  margin-left: 2px;
margin-right: 2px;
padding-top: 2px;
padding-bottom: 0px;
}

#s-c8bb66fe-d41a-448b-8668-637b97021341 {
  margin-top: 26px;
margin-left: 5px;
padding-top: 15px;
padding-left: 37px;
padding-bottom: 15px;
padding-right: 38px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 5px;
background-color: rgba(255, 194, 34, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
line-height: 1.5em;
}
#s-c8bb66fe-d41a-448b-8668-637b97021341:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-c8bb66fe-d41a-448b-8668-637b97021341:active {border-radius: 5px !important;
background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-c8bb66fe-d41a-448b-8668-637b97021341-root {
    text-align: left;
  }


#s-c8bb66fe-d41a-448b-8668-637b97021341.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c8bb66fe-d41a-448b-8668-637b97021341-root {
    text-align: left;
  }


#s-c8bb66fe-d41a-448b-8668-637b97021341.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c8bb66fe-d41a-448b-8668-637b97021341-root {
    text-align: left;
  }


#s-c8bb66fe-d41a-448b-8668-637b97021341.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c8bb66fe-d41a-448b-8668-637b97021341-root {
    text-align: left;
  }


#s-c8bb66fe-d41a-448b-8668-637b97021341.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c8bb66fe-d41a-448b-8668-637b97021341-root {
    text-align: left;
  }


#s-c8bb66fe-d41a-448b-8668-637b97021341.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HKGP700;
  display:  inline-block ;
}
}
#s-86ec9886-36fb-4209-be18-bf2fb1bd4777 {
  margin-left: 4%;
margin-right: auto;
min-height: 50px;
max-width: 550px;
}








#s-86ec9886-36fb-4209-be18-bf2fb1bd4777 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-86ec9886-36fb-4209-be18-bf2fb1bd4777.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e7416a39-bd09-4227-942c-abdc6329c60e {
  margin-top: 15px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 5px;
background-color: rgba(255, 194, 34, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-e7416a39-bd09-4227-942c-abdc6329c60e:hover {border-radius: 5px !important;
background-color: rgba(147, 149, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(236, 236, 236, 1) !important;}#s-e7416a39-bd09-4227-942c-abdc6329c60e:active {border-radius: 5px !important;
background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-e7416a39-bd09-4227-942c-abdc6329c60e-root {
    text-align: left;
  }


#s-e7416a39-bd09-4227-942c-abdc6329c60e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e7416a39-bd09-4227-942c-abdc6329c60e-root {
    text-align: left;
  }


#s-e7416a39-bd09-4227-942c-abdc6329c60e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e7416a39-bd09-4227-942c-abdc6329c60e-root {
    text-align: left;
  }


#s-e7416a39-bd09-4227-942c-abdc6329c60e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e7416a39-bd09-4227-942c-abdc6329c60e-root {
    text-align: left;
  }


#s-e7416a39-bd09-4227-942c-abdc6329c60e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e7416a39-bd09-4227-942c-abdc6329c60e-root {
    text-align: left;
  }


#s-e7416a39-bd09-4227-942c-abdc6329c60e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}
#s-b274f563-b1f4-421c-b921-5404200ba7b3 {
  padding-left: 35px;
padding-right: 35px;
min-height: 50px;
max-width: 350px;
}








#s-b274f563-b1f4-421c-b921-5404200ba7b3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b274f563-b1f4-421c-b921-5404200ba7b3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-35d4d5b4-4acd-4a62-894d-72c9125e331d {
  margin-left: 0px;
margin-bottom: -5px;
margin-right: 0px;
text-align: left;
}

#s-35d4d5b4-4acd-4a62-894d-72c9125e331d .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "HK Grotesk Pro";
  font-style:  normal ;
  font-size: 40px;
  line-height: 1em;
  
  text-align: left;
}



#s-6cf205f1-8c74-4116-8536-864ea4d7292a {
  margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
padding-top: 10px;
padding-left: 1px;
}

#s-2ada59eb-a95c-46b1-abba-6b14e78a018b {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 5px;
background-color: rgba(255, 194, 34, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-2ada59eb-a95c-46b1-abba-6b14e78a018b:hover {border-radius: 5px !important;
background-color: rgba(235, 179, 32, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-2ada59eb-a95c-46b1-abba-6b14e78a018b:active {border-radius: 5px !important;
background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-2ada59eb-a95c-46b1-abba-6b14e78a018b-root {
    text-align: left;
  }


#s-2ada59eb-a95c-46b1-abba-6b14e78a018b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-2ada59eb-a95c-46b1-abba-6b14e78a018b-root {
    text-align: left;
  }


#s-2ada59eb-a95c-46b1-abba-6b14e78a018b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-2ada59eb-a95c-46b1-abba-6b14e78a018b-root {
    text-align: left;
  }


#s-2ada59eb-a95c-46b1-abba-6b14e78a018b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-2ada59eb-a95c-46b1-abba-6b14e78a018b-root {
    text-align: left;
  }


#s-2ada59eb-a95c-46b1-abba-6b14e78a018b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-2ada59eb-a95c-46b1-abba-6b14e78a018b-root {
    text-align: left;
  }


#s-2ada59eb-a95c-46b1-abba-6b14e78a018b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}
#s-29febb1b-2e3b-4417-bcd8-397092de536f {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-29febb1b-2e3b-4417-bcd8-397092de536f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-29febb1b-2e3b-4417-bcd8-397092de536f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-809c80c6-6565-4340-8da0-4cd0b4703d99 {
  padding-left: 35px;
padding-right: 35px;
min-height: 50px;
max-width: 350px;
}








#s-809c80c6-6565-4340-8da0-4cd0b4703d99 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-809c80c6-6565-4340-8da0-4cd0b4703d99.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4669ae51-e2d9-40f5-b688-2e4c7796e4ca {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-left: 1px;
}

#s-7e504f66-7d1b-4711-b760-778bfe020bd1 {
  margin-left: 5px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 5px;
background-color: rgba(255, 194, 34, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-7e504f66-7d1b-4711-b760-778bfe020bd1:hover {border-radius: 5px !important;
background-color: rgba(235, 179, 32, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-7e504f66-7d1b-4711-b760-778bfe020bd1:active {border-radius: 5px !important;
background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-7e504f66-7d1b-4711-b760-778bfe020bd1-root {
    text-align: left;
  }


#s-7e504f66-7d1b-4711-b760-778bfe020bd1.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-7e504f66-7d1b-4711-b760-778bfe020bd1-root {
    text-align: left;
  }


#s-7e504f66-7d1b-4711-b760-778bfe020bd1.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7e504f66-7d1b-4711-b760-778bfe020bd1-root {
    text-align: left;
  }


#s-7e504f66-7d1b-4711-b760-778bfe020bd1.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7e504f66-7d1b-4711-b760-778bfe020bd1-root {
    text-align: left;
  }


#s-7e504f66-7d1b-4711-b760-778bfe020bd1.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-7e504f66-7d1b-4711-b760-778bfe020bd1-root {
    text-align: left;
  }


#s-7e504f66-7d1b-4711-b760-778bfe020bd1.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}
#s-347aa5b4-5965-43d4-ac87-938fa93388ae {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-347aa5b4-5965-43d4-ac87-938fa93388ae > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-347aa5b4-5965-43d4-ac87-938fa93388ae.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e3a8bd32-791d-4264-93ed-08e4e4eaecb1 {
  margin-left: auto;
margin-right: 0%;
min-height: 50px;
max-width: 350px;
}








#s-e3a8bd32-791d-4264-93ed-08e4e4eaecb1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e3a8bd32-791d-4264-93ed-08e4e4eaecb1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8a47d2c6-1239-4384-9b2c-7e10d424b202 {
  text-align: left;
}

#s-8a47d2c6-1239-4384-9b2c-7e10d424b202 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "HK Grotesk Pro";
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: left;
}



#s-515af209-852c-45b1-ba3f-de313410294f {
  margin-top: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 5px;
background-color: rgba(255, 194, 34, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-515af209-852c-45b1-ba3f-de313410294f:hover {border-radius: 5px !important;
background-color: rgba(245, 187, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-515af209-852c-45b1-ba3f-de313410294f:active {border-radius: 5px !important;
background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-515af209-852c-45b1-ba3f-de313410294f-root {
    text-align: left;
  }


#s-515af209-852c-45b1-ba3f-de313410294f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-515af209-852c-45b1-ba3f-de313410294f-root {
    text-align: left;
  }


#s-515af209-852c-45b1-ba3f-de313410294f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-515af209-852c-45b1-ba3f-de313410294f-root {
    text-align: left;
  }


#s-515af209-852c-45b1-ba3f-de313410294f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-515af209-852c-45b1-ba3f-de313410294f-root {
    text-align: left;
  }


#s-515af209-852c-45b1-ba3f-de313410294f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-515af209-852c-45b1-ba3f-de313410294f-root {
    text-align: left;
  }


#s-515af209-852c-45b1-ba3f-de313410294f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}
#s-6fb59acc-f7fc-4644-abb1-7403241ebe18 {
  margin-left: 10%;
margin-right: auto;
min-height: 50px;
max-width: 550px;
}








#s-6fb59acc-f7fc-4644-abb1-7403241ebe18 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6fb59acc-f7fc-4644-abb1-7403241ebe18.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f7422c4b-516b-4c80-994b-b0a5355916c5 {
  text-align: left;
}

#s-f7422c4b-516b-4c80-994b-b0a5355916c5 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "HK Grotesk Pro";
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: left;
}



#s-992760ef-7b2c-4344-b6aa-7a032d0aa0e3 {
  margin-top: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 5px;
background-color: rgba(255, 194, 34, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-992760ef-7b2c-4344-b6aa-7a032d0aa0e3:hover {border-radius: 5px !important;
background-color: rgba(243, 186, 33, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-992760ef-7b2c-4344-b6aa-7a032d0aa0e3:active {border-radius: 5px !important;
background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-992760ef-7b2c-4344-b6aa-7a032d0aa0e3-root {
    text-align: left;
  }


#s-992760ef-7b2c-4344-b6aa-7a032d0aa0e3.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-992760ef-7b2c-4344-b6aa-7a032d0aa0e3-root {
    text-align: left;
  }


#s-992760ef-7b2c-4344-b6aa-7a032d0aa0e3.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-992760ef-7b2c-4344-b6aa-7a032d0aa0e3-root {
    text-align: left;
  }


#s-992760ef-7b2c-4344-b6aa-7a032d0aa0e3.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-992760ef-7b2c-4344-b6aa-7a032d0aa0e3-root {
    text-align: left;
  }


#s-992760ef-7b2c-4344-b6aa-7a032d0aa0e3.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-992760ef-7b2c-4344-b6aa-7a032d0aa0e3-root {
    text-align: left;
  }


#s-992760ef-7b2c-4344-b6aa-7a032d0aa0e3.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}
#s-9266d4a7-2fbc-4142-bf00-e8b9a9678496 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-9266d4a7-2fbc-4142-bf00-e8b9a9678496 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9266d4a7-2fbc-4142-bf00-e8b9a9678496.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-26880b51-ca43-40cf-9b51-888e924956ef {
  margin-left: auto;
margin-bottom: -15px;
margin-right: auto;
text-align: center;
}

#s-26880b51-ca43-40cf-9b51-888e924956ef .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "HK Grotesk Pro";
  font-style:  normal ;
  font-size: 105px;
  
  
  text-align: center;
}



#s-02a01457-ba78-4f4e-8ce3-d0db725473ab {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-02a01457-ba78-4f4e-8ce3-d0db725473ab > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-02a01457-ba78-4f4e-8ce3-d0db725473ab.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5b6ef275-1981-47f3-91b5-2e297f1c2d08 {
  margin-bottom: 15px;
}

#s-5fe41e1b-2d6e-4c11-ad9f-1238e97bd60d {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 5px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-5fe41e1b-2d6e-4c11-ad9f-1238e97bd60d:hover {border-radius: 5px !important;
background-color: rgba(255, 227, 166, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-5fe41e1b-2d6e-4c11-ad9f-1238e97bd60d:active {border-radius: 5px !important;
background-color: rgba(255, 194, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-5fe41e1b-2d6e-4c11-ad9f-1238e97bd60d-root {
    text-align: center;
  }


#s-5fe41e1b-2d6e-4c11-ad9f-1238e97bd60d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-5fe41e1b-2d6e-4c11-ad9f-1238e97bd60d-root {
    text-align: center;
  }


#s-5fe41e1b-2d6e-4c11-ad9f-1238e97bd60d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-5fe41e1b-2d6e-4c11-ad9f-1238e97bd60d-root {
    text-align: center;
  }


#s-5fe41e1b-2d6e-4c11-ad9f-1238e97bd60d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-5fe41e1b-2d6e-4c11-ad9f-1238e97bd60d-root {
    text-align: center;
  }


#s-5fe41e1b-2d6e-4c11-ad9f-1238e97bd60d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-5fe41e1b-2d6e-4c11-ad9f-1238e97bd60d-root {
    text-align: center;
  }


#s-5fe41e1b-2d6e-4c11-ad9f-1238e97bd60d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}
#s-cfdebedc-60d9-4a8c-ae35-996303b5b354 {
  background-repeat: no-repeat;
background-size: cover;
padding-top: 13%;
padding-left: 5%;
padding-bottom: 13%;
padding-right: 5%;
min-height: 300px;
max-width: 1920px;
background-position: center center;
background-attachment: scroll;
}

#s-cfdebedc-60d9-4a8c-ae35-996303b5b354 {
  background-image: url(https://i.shgcdn.com/91465ee0-a634-4884-a722-a30bd77d4b3a/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-cfdebedc-60d9-4a8c-ae35-996303b5b354 > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0;
}#s-cfdebedc-60d9-4a8c-ae35-996303b5b354.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dec0ff8a-ea06-4da5-9368-7954bcbcd51b {
  background-color: rgba(0, 0, 0, 0);
}
@media (min-width: 768px) and (max-width: 991px){#s-dec0ff8a-ea06-4da5-9368-7954bcbcd51b {
  
}
}@media (max-width: 767px){#s-dec0ff8a-ea06-4da5-9368-7954bcbcd51b {
  
}
}
@media (min-width: 0px) {
[id="s-dec0ff8a-ea06-4da5-9368-7954bcbcd51b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-dec0ff8a-ea06-4da5-9368-7954bcbcd51b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-dec0ff8a-ea06-4da5-9368-7954bcbcd51b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-dec0ff8a-ea06-4da5-9368-7954bcbcd51b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-909f0c48-9767-4861-a21b-a6763e1f1e0b {
  min-height: 350px;
}








#s-909f0c48-9767-4861-a21b-a6763e1f1e0b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-909f0c48-9767-4861-a21b-a6763e1f1e0b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3d246196-d645-49ff-bbe5-818faf3dd8a3 {
  text-align: left;
}

#s-3d246196-d645-49ff-bbe5-818faf3dd8a3 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "HK Grotesk Pro";
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: left;
}



#s-2c5b1557-ffb7-43ef-aefa-c038f74356d2 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 6px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-2c5b1557-ffb7-43ef-aefa-c038f74356d2: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-2c5b1557-ffb7-43ef-aefa-c038f74356d2:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-2c5b1557-ffb7-43ef-aefa-c038f74356d2-root {
    text-align: left;
  }


#s-2c5b1557-ffb7-43ef-aefa-c038f74356d2.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-2c5b1557-ffb7-43ef-aefa-c038f74356d2-root {
    text-align: left;
  }


#s-2c5b1557-ffb7-43ef-aefa-c038f74356d2.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-2c5b1557-ffb7-43ef-aefa-c038f74356d2-root {
    text-align: left;
  }


#s-2c5b1557-ffb7-43ef-aefa-c038f74356d2.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-2c5b1557-ffb7-43ef-aefa-c038f74356d2-root {
    text-align: left;
  }


#s-2c5b1557-ffb7-43ef-aefa-c038f74356d2.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-2c5b1557-ffb7-43ef-aefa-c038f74356d2-root {
    text-align: left;
  }


#s-2c5b1557-ffb7-43ef-aefa-c038f74356d2.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  font-family: HK Grotesk Pro;
  display:  inline-block ;
}
}
#s-c580bbb8-771f-45e4-bf3b-ce94b0711385 {
  text-align: center;
}







  #s-c580bbb8-771f-45e4-bf3b-ce94b0711385 img.shogun-image {
    

    
    
    
  }


#s-c580bbb8-771f-45e4-bf3b-ce94b0711385 .shogun-image-content {
  
    align-items: center;
  
}

.featured-products-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 15px;
    font-family: 'HK Grotesk Pro', sans-serif;
    background-color: #F2F1EA;
    padding: 15px;
}
@media (min-width: 1200px) {
    .featured-products-container {
        background-color: #FFF;
        grid-gap: 0px;
        padding: 0;
    }
    .featured-products--product--border {
        border-left: 1px solid black;
    }
}
.featured-products-container p {
    margin: 0;
}
.featured-products--product-row {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 15px;
}

.featured-products--product {
    display: flex;
    /*grid-template-columns: 2fr 3fr;*/
    /*margin: 15px;*/
    background-color: white;
    min-height: 100px;
    margin: 0;
    cursor: pointer;
    text-decoration: none !important;
}
.featured-products--product:hover {
    text-decoration: none !important;
}
@media (min-width: 1200px) {
    .featured-products--product-row {
        grid-gap: 0px;
    }
    .featured-products--product {
        margin: 15px 0;
    }
}
.featured-products--product--left {
    height: auto;
    margin: auto 15px auto auto;
    padding-left: 10px;
    /*max-width: 85px;*/
}
@media (min-width: 1200px) {
    .featured-products--product--left {
        margin: auto;
    }
}
.featured-products--product--left img {
    margin: 5px 0;
}
.featured-products--product--right {
    margin: auto 10px;
    flex: 1;
    max-width: 60%;
}
.featured-products--product--title {
    font-weight: bold;
    color: black;
    line-height: 1.4em;
}
.featured-products--product--tagline {
    color: black;
}
@media (min-width: 768px) {
    .featured-products--product-row {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 1200px) {
    .featured-products-container {
        grid-template-columns: 1fr 1fr;
    }
}
#s-51dde221-5471-4f6a-8d78-68913d245118 {
  margin-left: auto;
margin-right: auto;
max-width: 1400px;
}

/*
  $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}
