.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-fa31253f-d2f2-4d57-8d0b-f527bde65aca {
  min-height: 50px;
}








#s-fa31253f-d2f2-4d57-8d0b-f527bde65aca > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fa31253f-d2f2-4d57-8d0b-f527bde65aca.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b43a262e-dfb7-4886-bff5-04a5a513aabc {
  margin-top: 2%;
margin-bottom: 4%;
padding-left: 20%;
padding-right: 20%;
min-height: 50px;
}








#s-b43a262e-dfb7-4886-bff5-04a5a513aabc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b43a262e-dfb7-4886-bff5-04a5a513aabc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-b0a1ffe2-6752-43f4-bd58-e99d6b7df440 {
  min-height: 50px;
}








#s-b0a1ffe2-6752-43f4-bd58-e99d6b7df440 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b0a1ffe2-6752-43f4-bd58-e99d6b7df440.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-87f88f37-8a87-478d-9ba5-250f17a57ffa {
  min-height: 50px;
}








#s-87f88f37-8a87-478d-9ba5-250f17a57ffa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-87f88f37-8a87-478d-9ba5-250f17a57ffa.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

#s-11ba47a0-2385-4b71-b7dc-f89ec61ff7fa {
  margin-top: 20px;
margin-left: 10px;
margin-bottom: 20px;
margin-right: 10px;
background-color: rgba(245, 242, 242, 1);
}

@media (min-width: 0px) {
[id="s-11ba47a0-2385-4b71-b7dc-f89ec61ff7fa"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-11ba47a0-2385-4b71-b7dc-f89ec61ff7fa"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 8.0px);
}

}

@media (min-width: 992px) {
[id="s-11ba47a0-2385-4b71-b7dc-f89ec61ff7fa"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 8.0px);
}

}

@media (min-width: 1200px) {
[id="s-11ba47a0-2385-4b71-b7dc-f89ec61ff7fa"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 8.0px);
}

}

.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-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f {
  margin-bottom: 0px;
max-width: 1600px;
aspect-ratio: 1600/1067;
text-align: center;
}





  #s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f img.shogun-image,
  #s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f {
    width: 100%;
    height: auto;
  }

  #s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f.shogun-image {
    
    
  }


.s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f .shogun-image-content {
  
    align-items: center;
  
}

.s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f {
      --shg-aspect-ratio: calc(1600/1067); 
    }

    .s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f.shogun-image-container {
      position: relative;
    }

    .s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f img.shogun-image,
  #s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f {
    width: 100%;
    height: auto;
  }

  #s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f.shogun-image {
    
    
  }


.s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f .shogun-image-content {
  
    align-items: center;
  
}

.s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f {
      --shg-aspect-ratio: calc(1600/1067); 
    }

    .s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f.shogun-image-container {
      position: relative;
    }

    .s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f img.shogun-image,
  #s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f {
    width: 100%;
    height: auto;
  }

  #s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f.shogun-image {
    
    
  }


.s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f .shogun-image-content {
  
    align-items: center;
  
}

.s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f {
      --shg-aspect-ratio: calc(1600/1067); 
    }

    .s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f.shogun-image-container {
      position: relative;
    }

    .s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f img.shogun-image,
  #s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f {
    width: 100%;
    height: auto;
  }

  #s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f.shogun-image {
    
    
  }


.s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f .shogun-image-content {
  
    align-items: center;
  
}

.s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f {
      --shg-aspect-ratio: calc(1600/1067); 
    }

    .s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f.shogun-image-container {
      position: relative;
    }

    .s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f img.shogun-image,
  #s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f {
    width: 100%;
    height: auto;
  }

  #s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f.shogun-image {
    
    
  }


.s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f .shogun-image-content {
  
    align-items: center;
  
}

.s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f {
      --shg-aspect-ratio: calc(1600/1067); 
    }

    .s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f.shogun-image-container {
      position: relative;
    }

    .s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5ffc462f-2bf7-444c-8ad2-54ec1ee4462f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-d7ae2fa3-e529-46d4-b580-3df633e4e81e {
  margin-bottom: 10px;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(240, 240, 240, 1);
}








#s-d7ae2fa3-e529-46d4-b580-3df633e4e81e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d7ae2fa3-e529-46d4-b580-3df633e4e81e.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.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-5e3ecd07-7d8c-4475-8fe0-042b4e2f6daa {
  margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-5e3ecd07-7d8c-4475-8fe0-042b4e2f6daa .shogun-heading-component h5 {
  color: rgba(51, 51, 51, 1);
  font-weight:  600 ;
  font-family: "Rubik";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1em;
  
  text-align: left;
}



#s-88a56c04-eb2f-421b-9e18-351640eab683 {
  margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-88a56c04-eb2f-421b-9e18-351640eab683 .shogun-heading-component h2 {
  color: rgba(51, 51, 51, 1);
  font-weight:  600 ;
  font-family: "Rubik";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1em;
  
  text-align: left;
}



#s-584cc483-12c1-4cf8-9d12-b9e50e0c7ce4 {
  margin-bottom: 20px;
}

#s-9783a564-15ed-45cd-b1b1-9992f305637b {
  margin-bottom: 0px;
max-width: 1600px;
aspect-ratio: 1600/1067;
text-align: center;
}





  #s-9783a564-15ed-45cd-b1b1-9992f305637b img.shogun-image,
  #s-9783a564-15ed-45cd-b1b1-9992f305637b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9783a564-15ed-45cd-b1b1-9992f305637b {
    width: 100%;
    height: auto;
  }

  #s-9783a564-15ed-45cd-b1b1-9992f305637b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9783a564-15ed-45cd-b1b1-9992f305637b.shogun-image {
    
    
  }


.s-9783a564-15ed-45cd-b1b1-9992f305637b .shogun-image-content {
  
    align-items: center;
  
}

.s-9783a564-15ed-45cd-b1b1-9992f305637b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9783a564-15ed-45cd-b1b1-9992f305637b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9783a564-15ed-45cd-b1b1-9992f305637b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9783a564-15ed-45cd-b1b1-9992f305637b {
      --shg-aspect-ratio: calc(1600/1067); 
    }

    .s-9783a564-15ed-45cd-b1b1-9992f305637b.shogun-image-container {
      position: relative;
    }

    .s-9783a564-15ed-45cd-b1b1-9992f305637b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9783a564-15ed-45cd-b1b1-9992f305637b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9783a564-15ed-45cd-b1b1-9992f305637b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-9783a564-15ed-45cd-b1b1-9992f305637b img.shogun-image,
  #s-9783a564-15ed-45cd-b1b1-9992f305637b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9783a564-15ed-45cd-b1b1-9992f305637b {
    width: 100%;
    height: auto;
  }

  #s-9783a564-15ed-45cd-b1b1-9992f305637b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9783a564-15ed-45cd-b1b1-9992f305637b.shogun-image {
    
    
  }


.s-9783a564-15ed-45cd-b1b1-9992f305637b .shogun-image-content {
  
    align-items: center;
  
}

.s-9783a564-15ed-45cd-b1b1-9992f305637b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9783a564-15ed-45cd-b1b1-9992f305637b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9783a564-15ed-45cd-b1b1-9992f305637b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9783a564-15ed-45cd-b1b1-9992f305637b {
      --shg-aspect-ratio: calc(1600/1067); 
    }

    .s-9783a564-15ed-45cd-b1b1-9992f305637b.shogun-image-container {
      position: relative;
    }

    .s-9783a564-15ed-45cd-b1b1-9992f305637b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9783a564-15ed-45cd-b1b1-9992f305637b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9783a564-15ed-45cd-b1b1-9992f305637b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-9783a564-15ed-45cd-b1b1-9992f305637b img.shogun-image,
  #s-9783a564-15ed-45cd-b1b1-9992f305637b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9783a564-15ed-45cd-b1b1-9992f305637b {
    width: 100%;
    height: auto;
  }

  #s-9783a564-15ed-45cd-b1b1-9992f305637b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9783a564-15ed-45cd-b1b1-9992f305637b.shogun-image {
    
    
  }


.s-9783a564-15ed-45cd-b1b1-9992f305637b .shogun-image-content {
  
    align-items: center;
  
}

.s-9783a564-15ed-45cd-b1b1-9992f305637b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9783a564-15ed-45cd-b1b1-9992f305637b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9783a564-15ed-45cd-b1b1-9992f305637b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9783a564-15ed-45cd-b1b1-9992f305637b {
      --shg-aspect-ratio: calc(1600/1067); 
    }

    .s-9783a564-15ed-45cd-b1b1-9992f305637b.shogun-image-container {
      position: relative;
    }

    .s-9783a564-15ed-45cd-b1b1-9992f305637b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9783a564-15ed-45cd-b1b1-9992f305637b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9783a564-15ed-45cd-b1b1-9992f305637b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-9783a564-15ed-45cd-b1b1-9992f305637b img.shogun-image,
  #s-9783a564-15ed-45cd-b1b1-9992f305637b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9783a564-15ed-45cd-b1b1-9992f305637b {
    width: 100%;
    height: auto;
  }

  #s-9783a564-15ed-45cd-b1b1-9992f305637b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9783a564-15ed-45cd-b1b1-9992f305637b.shogun-image {
    
    
  }


.s-9783a564-15ed-45cd-b1b1-9992f305637b .shogun-image-content {
  
    align-items: center;
  
}

.s-9783a564-15ed-45cd-b1b1-9992f305637b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9783a564-15ed-45cd-b1b1-9992f305637b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9783a564-15ed-45cd-b1b1-9992f305637b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9783a564-15ed-45cd-b1b1-9992f305637b {
      --shg-aspect-ratio: calc(1600/1067); 
    }

    .s-9783a564-15ed-45cd-b1b1-9992f305637b.shogun-image-container {
      position: relative;
    }

    .s-9783a564-15ed-45cd-b1b1-9992f305637b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9783a564-15ed-45cd-b1b1-9992f305637b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9783a564-15ed-45cd-b1b1-9992f305637b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-9783a564-15ed-45cd-b1b1-9992f305637b img.shogun-image,
  #s-9783a564-15ed-45cd-b1b1-9992f305637b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9783a564-15ed-45cd-b1b1-9992f305637b {
    width: 100%;
    height: auto;
  }

  #s-9783a564-15ed-45cd-b1b1-9992f305637b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9783a564-15ed-45cd-b1b1-9992f305637b.shogun-image {
    
    
  }


.s-9783a564-15ed-45cd-b1b1-9992f305637b .shogun-image-content {
  
    align-items: center;
  
}

.s-9783a564-15ed-45cd-b1b1-9992f305637b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9783a564-15ed-45cd-b1b1-9992f305637b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9783a564-15ed-45cd-b1b1-9992f305637b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9783a564-15ed-45cd-b1b1-9992f305637b {
      --shg-aspect-ratio: calc(1600/1067); 
    }

    .s-9783a564-15ed-45cd-b1b1-9992f305637b.shogun-image-container {
      position: relative;
    }

    .s-9783a564-15ed-45cd-b1b1-9992f305637b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9783a564-15ed-45cd-b1b1-9992f305637b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9783a564-15ed-45cd-b1b1-9992f305637b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-240f3942-80d0-4c2b-bf0f-8308f0d1c35d {
  margin-bottom: 10px;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(240, 240, 240, 1);
}








#s-240f3942-80d0-4c2b-bf0f-8308f0d1c35d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-240f3942-80d0-4c2b-bf0f-8308f0d1c35d.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-e6159fdd-610a-4060-972d-23181a385897 {
  margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-e6159fdd-610a-4060-972d-23181a385897 .shogun-heading-component h5 {
  color: rgba(51, 51, 51, 1);
  font-weight:  600 ;
  font-family: "Rubik";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1em;
  
  text-align: left;
}



#s-184b11c1-e49e-4d3e-9955-a08a9617803e {
  margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-184b11c1-e49e-4d3e-9955-a08a9617803e .shogun-heading-component h2 {
  color: rgba(51, 51, 51, 1);
  font-weight:  600 ;
  font-family: "Rubik";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1em;
  
  text-align: left;
}



#s-941877e0-e66b-415a-a8d3-e874f8ce739d {
  margin-bottom: 20px;
}

#s-c023e1f9-b3d5-493d-848e-7de67ec9d316 {
  margin-bottom: 0px;
max-width: 1600px;
aspect-ratio: 1600/1067;
text-align: center;
}





  #s-c023e1f9-b3d5-493d-848e-7de67ec9d316 img.shogun-image,
  #s-c023e1f9-b3d5-493d-848e-7de67ec9d316 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c023e1f9-b3d5-493d-848e-7de67ec9d316 {
    width: 100%;
    height: auto;
  }

  #s-c023e1f9-b3d5-493d-848e-7de67ec9d316 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c023e1f9-b3d5-493d-848e-7de67ec9d316.shogun-image {
    
    
  }


.s-c023e1f9-b3d5-493d-848e-7de67ec9d316 .shogun-image-content {
  
    align-items: center;
  
}

.s-c023e1f9-b3d5-493d-848e-7de67ec9d316.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c023e1f9-b3d5-493d-848e-7de67ec9d316.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c023e1f9-b3d5-493d-848e-7de67ec9d316.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c023e1f9-b3d5-493d-848e-7de67ec9d316 {
      --shg-aspect-ratio: calc(1600/1067); 
    }

    .s-c023e1f9-b3d5-493d-848e-7de67ec9d316.shogun-image-container {
      position: relative;
    }

    .s-c023e1f9-b3d5-493d-848e-7de67ec9d316.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c023e1f9-b3d5-493d-848e-7de67ec9d316.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c023e1f9-b3d5-493d-848e-7de67ec9d316 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-c023e1f9-b3d5-493d-848e-7de67ec9d316 img.shogun-image,
  #s-c023e1f9-b3d5-493d-848e-7de67ec9d316 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c023e1f9-b3d5-493d-848e-7de67ec9d316 {
    width: 100%;
    height: auto;
  }

  #s-c023e1f9-b3d5-493d-848e-7de67ec9d316 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c023e1f9-b3d5-493d-848e-7de67ec9d316.shogun-image {
    
    
  }


.s-c023e1f9-b3d5-493d-848e-7de67ec9d316 .shogun-image-content {
  
    align-items: center;
  
}

.s-c023e1f9-b3d5-493d-848e-7de67ec9d316.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c023e1f9-b3d5-493d-848e-7de67ec9d316.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c023e1f9-b3d5-493d-848e-7de67ec9d316.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c023e1f9-b3d5-493d-848e-7de67ec9d316 {
      --shg-aspect-ratio: calc(1600/1067); 
    }

    .s-c023e1f9-b3d5-493d-848e-7de67ec9d316.shogun-image-container {
      position: relative;
    }

    .s-c023e1f9-b3d5-493d-848e-7de67ec9d316.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c023e1f9-b3d5-493d-848e-7de67ec9d316.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c023e1f9-b3d5-493d-848e-7de67ec9d316 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-c023e1f9-b3d5-493d-848e-7de67ec9d316 img.shogun-image,
  #s-c023e1f9-b3d5-493d-848e-7de67ec9d316 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c023e1f9-b3d5-493d-848e-7de67ec9d316 {
    width: 100%;
    height: auto;
  }

  #s-c023e1f9-b3d5-493d-848e-7de67ec9d316 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c023e1f9-b3d5-493d-848e-7de67ec9d316.shogun-image {
    
    
  }


.s-c023e1f9-b3d5-493d-848e-7de67ec9d316 .shogun-image-content {
  
    align-items: center;
  
}

.s-c023e1f9-b3d5-493d-848e-7de67ec9d316.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c023e1f9-b3d5-493d-848e-7de67ec9d316.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c023e1f9-b3d5-493d-848e-7de67ec9d316.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c023e1f9-b3d5-493d-848e-7de67ec9d316 {
      --shg-aspect-ratio: calc(1600/1067); 
    }

    .s-c023e1f9-b3d5-493d-848e-7de67ec9d316.shogun-image-container {
      position: relative;
    }

    .s-c023e1f9-b3d5-493d-848e-7de67ec9d316.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c023e1f9-b3d5-493d-848e-7de67ec9d316.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c023e1f9-b3d5-493d-848e-7de67ec9d316 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-c023e1f9-b3d5-493d-848e-7de67ec9d316 img.shogun-image,
  #s-c023e1f9-b3d5-493d-848e-7de67ec9d316 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c023e1f9-b3d5-493d-848e-7de67ec9d316 {
    width: 100%;
    height: auto;
  }

  #s-c023e1f9-b3d5-493d-848e-7de67ec9d316 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c023e1f9-b3d5-493d-848e-7de67ec9d316.shogun-image {
    
    
  }


.s-c023e1f9-b3d5-493d-848e-7de67ec9d316 .shogun-image-content {
  
    align-items: center;
  
}

.s-c023e1f9-b3d5-493d-848e-7de67ec9d316.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c023e1f9-b3d5-493d-848e-7de67ec9d316.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c023e1f9-b3d5-493d-848e-7de67ec9d316.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c023e1f9-b3d5-493d-848e-7de67ec9d316 {
      --shg-aspect-ratio: calc(1600/1067); 
    }

    .s-c023e1f9-b3d5-493d-848e-7de67ec9d316.shogun-image-container {
      position: relative;
    }

    .s-c023e1f9-b3d5-493d-848e-7de67ec9d316.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c023e1f9-b3d5-493d-848e-7de67ec9d316.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c023e1f9-b3d5-493d-848e-7de67ec9d316 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-c023e1f9-b3d5-493d-848e-7de67ec9d316 img.shogun-image,
  #s-c023e1f9-b3d5-493d-848e-7de67ec9d316 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c023e1f9-b3d5-493d-848e-7de67ec9d316 {
    width: 100%;
    height: auto;
  }

  #s-c023e1f9-b3d5-493d-848e-7de67ec9d316 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c023e1f9-b3d5-493d-848e-7de67ec9d316.shogun-image {
    
    
  }


.s-c023e1f9-b3d5-493d-848e-7de67ec9d316 .shogun-image-content {
  
    align-items: center;
  
}

.s-c023e1f9-b3d5-493d-848e-7de67ec9d316.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c023e1f9-b3d5-493d-848e-7de67ec9d316.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c023e1f9-b3d5-493d-848e-7de67ec9d316.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c023e1f9-b3d5-493d-848e-7de67ec9d316 {
      --shg-aspect-ratio: calc(1600/1067); 
    }

    .s-c023e1f9-b3d5-493d-848e-7de67ec9d316.shogun-image-container {
      position: relative;
    }

    .s-c023e1f9-b3d5-493d-848e-7de67ec9d316.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c023e1f9-b3d5-493d-848e-7de67ec9d316.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c023e1f9-b3d5-493d-848e-7de67ec9d316 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-eeb1df64-6fdb-4291-936c-463003c7f319 {
  margin-bottom: 10px;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(240, 240, 240, 1);
}








#s-eeb1df64-6fdb-4291-936c-463003c7f319 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-eeb1df64-6fdb-4291-936c-463003c7f319.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-1cde1761-b5d6-4757-be65-c296b8fbaaf0 {
  margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-1cde1761-b5d6-4757-be65-c296b8fbaaf0 .shogun-heading-component h5 {
  color: rgba(51, 51, 51, 1);
  font-weight:  600 ;
  font-family: "Rubik";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1em;
  
  text-align: left;
}



#s-a61e710e-e98e-49e4-96b9-b6dd29a5c2b9 {
  margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-a61e710e-e98e-49e4-96b9-b6dd29a5c2b9 .shogun-heading-component h2 {
  color: rgba(51, 51, 51, 1);
  font-weight:  600 ;
  font-family: "Rubik";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1em;
  
  text-align: left;
}



#s-96ae844e-cb1b-4f82-b292-bf781b12a35c {
  margin-bottom: 20px;
}

#s-3c820432-2228-4f75-bcb2-e23728049d96 {
  margin-bottom: 0px;
max-width: 1600px;
aspect-ratio: 1600/1067;
text-align: center;
}





  #s-3c820432-2228-4f75-bcb2-e23728049d96 img.shogun-image,
  #s-3c820432-2228-4f75-bcb2-e23728049d96 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3c820432-2228-4f75-bcb2-e23728049d96 {
    width: 100%;
    height: auto;
  }

  #s-3c820432-2228-4f75-bcb2-e23728049d96 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3c820432-2228-4f75-bcb2-e23728049d96.shogun-image {
    
    
  }


.s-3c820432-2228-4f75-bcb2-e23728049d96 .shogun-image-content {
  
    align-items: center;
  
}

.s-3c820432-2228-4f75-bcb2-e23728049d96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3c820432-2228-4f75-bcb2-e23728049d96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3c820432-2228-4f75-bcb2-e23728049d96.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3c820432-2228-4f75-bcb2-e23728049d96 {
      --shg-aspect-ratio: calc(1600/1067); 
    }

    .s-3c820432-2228-4f75-bcb2-e23728049d96.shogun-image-container {
      position: relative;
    }

    .s-3c820432-2228-4f75-bcb2-e23728049d96.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3c820432-2228-4f75-bcb2-e23728049d96.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3c820432-2228-4f75-bcb2-e23728049d96 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-3c820432-2228-4f75-bcb2-e23728049d96 img.shogun-image,
  #s-3c820432-2228-4f75-bcb2-e23728049d96 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3c820432-2228-4f75-bcb2-e23728049d96 {
    width: 100%;
    height: auto;
  }

  #s-3c820432-2228-4f75-bcb2-e23728049d96 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3c820432-2228-4f75-bcb2-e23728049d96.shogun-image {
    
    
  }


.s-3c820432-2228-4f75-bcb2-e23728049d96 .shogun-image-content {
  
    align-items: center;
  
}

.s-3c820432-2228-4f75-bcb2-e23728049d96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3c820432-2228-4f75-bcb2-e23728049d96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3c820432-2228-4f75-bcb2-e23728049d96.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3c820432-2228-4f75-bcb2-e23728049d96 {
      --shg-aspect-ratio: calc(1600/1067); 
    }

    .s-3c820432-2228-4f75-bcb2-e23728049d96.shogun-image-container {
      position: relative;
    }

    .s-3c820432-2228-4f75-bcb2-e23728049d96.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3c820432-2228-4f75-bcb2-e23728049d96.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3c820432-2228-4f75-bcb2-e23728049d96 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-3c820432-2228-4f75-bcb2-e23728049d96 img.shogun-image,
  #s-3c820432-2228-4f75-bcb2-e23728049d96 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3c820432-2228-4f75-bcb2-e23728049d96 {
    width: 100%;
    height: auto;
  }

  #s-3c820432-2228-4f75-bcb2-e23728049d96 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3c820432-2228-4f75-bcb2-e23728049d96.shogun-image {
    
    
  }


.s-3c820432-2228-4f75-bcb2-e23728049d96 .shogun-image-content {
  
    align-items: center;
  
}

.s-3c820432-2228-4f75-bcb2-e23728049d96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3c820432-2228-4f75-bcb2-e23728049d96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3c820432-2228-4f75-bcb2-e23728049d96.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3c820432-2228-4f75-bcb2-e23728049d96 {
      --shg-aspect-ratio: calc(1600/1067); 
    }

    .s-3c820432-2228-4f75-bcb2-e23728049d96.shogun-image-container {
      position: relative;
    }

    .s-3c820432-2228-4f75-bcb2-e23728049d96.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3c820432-2228-4f75-bcb2-e23728049d96.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3c820432-2228-4f75-bcb2-e23728049d96 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-3c820432-2228-4f75-bcb2-e23728049d96 img.shogun-image,
  #s-3c820432-2228-4f75-bcb2-e23728049d96 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3c820432-2228-4f75-bcb2-e23728049d96 {
    width: 100%;
    height: auto;
  }

  #s-3c820432-2228-4f75-bcb2-e23728049d96 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3c820432-2228-4f75-bcb2-e23728049d96.shogun-image {
    
    
  }


.s-3c820432-2228-4f75-bcb2-e23728049d96 .shogun-image-content {
  
    align-items: center;
  
}

.s-3c820432-2228-4f75-bcb2-e23728049d96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3c820432-2228-4f75-bcb2-e23728049d96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3c820432-2228-4f75-bcb2-e23728049d96.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3c820432-2228-4f75-bcb2-e23728049d96 {
      --shg-aspect-ratio: calc(1600/1067); 
    }

    .s-3c820432-2228-4f75-bcb2-e23728049d96.shogun-image-container {
      position: relative;
    }

    .s-3c820432-2228-4f75-bcb2-e23728049d96.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3c820432-2228-4f75-bcb2-e23728049d96.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3c820432-2228-4f75-bcb2-e23728049d96 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-3c820432-2228-4f75-bcb2-e23728049d96 img.shogun-image,
  #s-3c820432-2228-4f75-bcb2-e23728049d96 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3c820432-2228-4f75-bcb2-e23728049d96 {
    width: 100%;
    height: auto;
  }

  #s-3c820432-2228-4f75-bcb2-e23728049d96 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3c820432-2228-4f75-bcb2-e23728049d96.shogun-image {
    
    
  }


.s-3c820432-2228-4f75-bcb2-e23728049d96 .shogun-image-content {
  
    align-items: center;
  
}

.s-3c820432-2228-4f75-bcb2-e23728049d96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3c820432-2228-4f75-bcb2-e23728049d96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3c820432-2228-4f75-bcb2-e23728049d96.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3c820432-2228-4f75-bcb2-e23728049d96 {
      --shg-aspect-ratio: calc(1600/1067); 
    }

    .s-3c820432-2228-4f75-bcb2-e23728049d96.shogun-image-container {
      position: relative;
    }

    .s-3c820432-2228-4f75-bcb2-e23728049d96.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3c820432-2228-4f75-bcb2-e23728049d96.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3c820432-2228-4f75-bcb2-e23728049d96 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-7e886375-1061-4119-bddb-bfcb431e2c47 {
  margin-bottom: 10px;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(240, 240, 240, 1);
}








#s-7e886375-1061-4119-bddb-bfcb431e2c47 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7e886375-1061-4119-bddb-bfcb431e2c47.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-cb63afbe-7bdb-46f6-b7fe-55dfc2713ce0 {
  margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-cb63afbe-7bdb-46f6-b7fe-55dfc2713ce0 .shogun-heading-component h5 {
  color: rgba(51, 51, 51, 1);
  font-weight:  600 ;
  font-family: "Rubik";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1em;
  
  text-align: left;
}



#s-de0313c0-bdb2-4de9-ba48-d3fc370ba68b {
  margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-de0313c0-bdb2-4de9-ba48-d3fc370ba68b .shogun-heading-component h2 {
  color: rgba(51, 51, 51, 1);
  font-weight:  600 ;
  font-family: "Rubik";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1em;
  
  text-align: left;
}



#s-1f178b0f-28d6-4faf-8280-65d0b23ebbcb {
  margin-bottom: 20px;
}

#s-13ad1822-8abb-4213-92f6-d928fd2f7d1e {
  margin-bottom: 0px;
max-width: 1600px;
aspect-ratio: 1600/1067;
text-align: center;
}





  #s-13ad1822-8abb-4213-92f6-d928fd2f7d1e img.shogun-image,
  #s-13ad1822-8abb-4213-92f6-d928fd2f7d1e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-13ad1822-8abb-4213-92f6-d928fd2f7d1e {
    width: 100%;
    height: auto;
  }

  #s-13ad1822-8abb-4213-92f6-d928fd2f7d1e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-13ad1822-8abb-4213-92f6-d928fd2f7d1e.shogun-image {
    
    
  }


.s-13ad1822-8abb-4213-92f6-d928fd2f7d1e .shogun-image-content {
  
    align-items: center;
  
}

.s-13ad1822-8abb-4213-92f6-d928fd2f7d1e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13ad1822-8abb-4213-92f6-d928fd2f7d1e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13ad1822-8abb-4213-92f6-d928fd2f7d1e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-13ad1822-8abb-4213-92f6-d928fd2f7d1e {
      --shg-aspect-ratio: calc(1600/1067); 
    }

    .s-13ad1822-8abb-4213-92f6-d928fd2f7d1e.shogun-image-container {
      position: relative;
    }

    .s-13ad1822-8abb-4213-92f6-d928fd2f7d1e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-13ad1822-8abb-4213-92f6-d928fd2f7d1e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-13ad1822-8abb-4213-92f6-d928fd2f7d1e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-13ad1822-8abb-4213-92f6-d928fd2f7d1e img.shogun-image,
  #s-13ad1822-8abb-4213-92f6-d928fd2f7d1e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-13ad1822-8abb-4213-92f6-d928fd2f7d1e {
    width: 100%;
    height: auto;
  }

  #s-13ad1822-8abb-4213-92f6-d928fd2f7d1e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-13ad1822-8abb-4213-92f6-d928fd2f7d1e.shogun-image {
    
    
  }


.s-13ad1822-8abb-4213-92f6-d928fd2f7d1e .shogun-image-content {
  
    align-items: center;
  
}

.s-13ad1822-8abb-4213-92f6-d928fd2f7d1e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13ad1822-8abb-4213-92f6-d928fd2f7d1e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13ad1822-8abb-4213-92f6-d928fd2f7d1e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-13ad1822-8abb-4213-92f6-d928fd2f7d1e {
      --shg-aspect-ratio: calc(1600/1067); 
    }

    .s-13ad1822-8abb-4213-92f6-d928fd2f7d1e.shogun-image-container {
      position: relative;
    }

    .s-13ad1822-8abb-4213-92f6-d928fd2f7d1e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-13ad1822-8abb-4213-92f6-d928fd2f7d1e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-13ad1822-8abb-4213-92f6-d928fd2f7d1e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-13ad1822-8abb-4213-92f6-d928fd2f7d1e img.shogun-image,
  #s-13ad1822-8abb-4213-92f6-d928fd2f7d1e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-13ad1822-8abb-4213-92f6-d928fd2f7d1e {
    width: 100%;
    height: auto;
  }

  #s-13ad1822-8abb-4213-92f6-d928fd2f7d1e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-13ad1822-8abb-4213-92f6-d928fd2f7d1e.shogun-image {
    
    
  }


.s-13ad1822-8abb-4213-92f6-d928fd2f7d1e .shogun-image-content {
  
    align-items: center;
  
}

.s-13ad1822-8abb-4213-92f6-d928fd2f7d1e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13ad1822-8abb-4213-92f6-d928fd2f7d1e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13ad1822-8abb-4213-92f6-d928fd2f7d1e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-13ad1822-8abb-4213-92f6-d928fd2f7d1e {
      --shg-aspect-ratio: calc(1600/1067); 
    }

    .s-13ad1822-8abb-4213-92f6-d928fd2f7d1e.shogun-image-container {
      position: relative;
    }

    .s-13ad1822-8abb-4213-92f6-d928fd2f7d1e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-13ad1822-8abb-4213-92f6-d928fd2f7d1e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-13ad1822-8abb-4213-92f6-d928fd2f7d1e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-13ad1822-8abb-4213-92f6-d928fd2f7d1e img.shogun-image,
  #s-13ad1822-8abb-4213-92f6-d928fd2f7d1e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-13ad1822-8abb-4213-92f6-d928fd2f7d1e {
    width: 100%;
    height: auto;
  }

  #s-13ad1822-8abb-4213-92f6-d928fd2f7d1e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-13ad1822-8abb-4213-92f6-d928fd2f7d1e.shogun-image {
    
    
  }


.s-13ad1822-8abb-4213-92f6-d928fd2f7d1e .shogun-image-content {
  
    align-items: center;
  
}

.s-13ad1822-8abb-4213-92f6-d928fd2f7d1e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13ad1822-8abb-4213-92f6-d928fd2f7d1e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13ad1822-8abb-4213-92f6-d928fd2f7d1e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-13ad1822-8abb-4213-92f6-d928fd2f7d1e {
      --shg-aspect-ratio: calc(1600/1067); 
    }

    .s-13ad1822-8abb-4213-92f6-d928fd2f7d1e.shogun-image-container {
      position: relative;
    }

    .s-13ad1822-8abb-4213-92f6-d928fd2f7d1e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-13ad1822-8abb-4213-92f6-d928fd2f7d1e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-13ad1822-8abb-4213-92f6-d928fd2f7d1e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-13ad1822-8abb-4213-92f6-d928fd2f7d1e img.shogun-image,
  #s-13ad1822-8abb-4213-92f6-d928fd2f7d1e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-13ad1822-8abb-4213-92f6-d928fd2f7d1e {
    width: 100%;
    height: auto;
  }

  #s-13ad1822-8abb-4213-92f6-d928fd2f7d1e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-13ad1822-8abb-4213-92f6-d928fd2f7d1e.shogun-image {
    
    
  }


.s-13ad1822-8abb-4213-92f6-d928fd2f7d1e .shogun-image-content {
  
    align-items: center;
  
}

.s-13ad1822-8abb-4213-92f6-d928fd2f7d1e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13ad1822-8abb-4213-92f6-d928fd2f7d1e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13ad1822-8abb-4213-92f6-d928fd2f7d1e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-13ad1822-8abb-4213-92f6-d928fd2f7d1e {
      --shg-aspect-ratio: calc(1600/1067); 
    }

    .s-13ad1822-8abb-4213-92f6-d928fd2f7d1e.shogun-image-container {
      position: relative;
    }

    .s-13ad1822-8abb-4213-92f6-d928fd2f7d1e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-13ad1822-8abb-4213-92f6-d928fd2f7d1e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-13ad1822-8abb-4213-92f6-d928fd2f7d1e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-351750c4-7e57-4eef-92b5-785283b99aac {
  margin-bottom: 10px;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(240, 240, 240, 1);
}








#s-351750c4-7e57-4eef-92b5-785283b99aac > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-351750c4-7e57-4eef-92b5-785283b99aac.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-c7470b6d-926e-4b21-933e-3df4f4211fa5 {
  margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-c7470b6d-926e-4b21-933e-3df4f4211fa5 .shogun-heading-component h5 {
  color: rgba(51, 51, 51, 1);
  font-weight:  600 ;
  font-family: "Rubik";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1em;
  
  text-align: left;
}



#s-ec741bee-4924-4bd8-9e41-21e757fad172 {
  margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-ec741bee-4924-4bd8-9e41-21e757fad172 .shogun-heading-component h2 {
  color: rgba(51, 51, 51, 1);
  font-weight:  600 ;
  font-family: "Rubik";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1em;
  
  text-align: left;
}



#s-8d5b3dbc-035b-4e6e-ac5b-8a050b4d0616 {
  margin-bottom: 20px;
}

#s-3d681801-f23f-4a3e-8438-0a08a0935976 {
  min-height: 50px;
}








#s-3d681801-f23f-4a3e-8438-0a08a0935976 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3d681801-f23f-4a3e-8438-0a08a0935976.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef {
  max-width: 1920px;
aspect-ratio: 1920/730;
text-align: center;
background-color: rgba(209, 207, 207, 1);
}





  #s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef img.shogun-image,
  #s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef {
    width: 100%;
    height: auto;
  }

  #s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef.shogun-image {
    
    
  }


.s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef .shogun-image-content {
  
    align-items: center;
  
}

.s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef {
      --shg-aspect-ratio: calc(1920/730); 
    }

    .s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef.shogun-image-container {
      position: relative;
    }

    .s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef img.shogun-image,
  #s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef {
    width: 100%;
    height: auto;
  }

  #s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef.shogun-image {
    
    
  }


.s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef .shogun-image-content {
  
    align-items: center;
  
}

.s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef {
      --shg-aspect-ratio: calc(1920/730); 
    }

    .s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef.shogun-image-container {
      position: relative;
    }

    .s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef img.shogun-image,
  #s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef {
    width: 100%;
    height: auto;
  }

  #s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef.shogun-image {
    
    
  }


.s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef .shogun-image-content {
  
    align-items: center;
  
}

.s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef {
      --shg-aspect-ratio: calc(1920/730); 
    }

    .s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef.shogun-image-container {
      position: relative;
    }

    .s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef img.shogun-image,
  #s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef {
    width: 100%;
    height: auto;
  }

  #s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef.shogun-image {
    
    
  }


.s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef .shogun-image-content {
  
    align-items: center;
  
}

.s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef {
      --shg-aspect-ratio: calc(1920/730); 
    }

    .s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef.shogun-image-container {
      position: relative;
    }

    .s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef img.shogun-image,
  #s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef {
    width: 100%;
    height: auto;
  }

  #s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef.shogun-image {
    
    
  }


.s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef .shogun-image-content {
  
    align-items: center;
  
}

.s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef {
      --shg-aspect-ratio: calc(1920/730); 
    }

    .s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef.shogun-image-container {
      position: relative;
    }

    .s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-83b5b332-aaa5-4bfd-8990-445e4f3a5fef img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-0d502e9f-afa0-4967-b219-af5beff34f2e {
  min-height: 50px;
}








#s-0d502e9f-afa0-4967-b219-af5beff34f2e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0d502e9f-afa0-4967-b219-af5beff34f2e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7cfb98ce-721c-4801-ab1a-9809a1dd8adb {
  min-height: 50px;
}








#s-7cfb98ce-721c-4801-ab1a-9809a1dd8adb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7cfb98ce-721c-4801-ab1a-9809a1dd8adb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bf97980c-f9e4-401c-be46-94ae3bad1ad3 {
  margin-left: 2%;
margin-right: 2%;
min-height: 500px;
}








#s-bf97980c-f9e4-401c-be46-94ae3bad1ad3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bf97980c-f9e4-401c-be46-94ae3bad1ad3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5054180e-4ae7-4998-8eb6-7e2afd3fcf58 {
  margin-top: 50px;
margin-bottom: 50px;
}

@media (min-width: 0px) {
[id="s-5054180e-4ae7-4998-8eb6-7e2afd3fcf58"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-5054180e-4ae7-4998-8eb6-7e2afd3fcf58"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-5054180e-4ae7-4998-8eb6-7e2afd3fcf58"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-5054180e-4ae7-4998-8eb6-7e2afd3fcf58"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-d9e358de-ea7f-412f-a190-eb7a08940e49 {
  padding-top: 6px;
padding-left: 8%;
padding-bottom: 6px;
padding-right: 8%;
min-height: 500px;
}








#s-d9e358de-ea7f-412f-a190-eb7a08940e49 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d9e358de-ea7f-412f-a190-eb7a08940e49.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.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-f037172e-9383-46ec-b79f-3079d96c18e4 {
  max-width: 355px;
aspect-ratio: 355/238;
text-align: center;
}





  #s-f037172e-9383-46ec-b79f-3079d96c18e4 img.shogun-image,
  #s-f037172e-9383-46ec-b79f-3079d96c18e4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f037172e-9383-46ec-b79f-3079d96c18e4 {
    width: 100%;
    height: auto;
  }



  #s-f037172e-9383-46ec-b79f-3079d96c18e4 img.shogun-image {
    

    
    
    
  }


#s-f037172e-9383-46ec-b79f-3079d96c18e4 .shogun-image-content {
  
    align-items: center;
  
}

#s-0beac71d-5d90-4724-8dc2-d25a50bfbc25 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-0beac71d-5d90-4724-8dc2-d25a50bfbc25 .shogun-heading-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



#s-3bc9d3d0-314a-4b6d-bc79-6cce0d363672 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-3bc9d3d0-314a-4b6d-bc79-6cce0d363672 .shogun-heading-component h5 {
  color: #000;
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: left;
}



#s-50cc2971-6630-4e3c-96c6-29a940edc070 {
  padding-top: 6px;
padding-left: 8%;
padding-bottom: 6px;
padding-right: 8%;
min-height: 500px;
}








#s-50cc2971-6630-4e3c-96c6-29a940edc070 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-50cc2971-6630-4e3c-96c6-29a940edc070.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-ef9d6c0a-ab73-41a8-9cca-4cfe05cf1863 {
  max-width: 358px;
aspect-ratio: 358/238;
text-align: center;
}





  #s-ef9d6c0a-ab73-41a8-9cca-4cfe05cf1863 img.shogun-image,
  #s-ef9d6c0a-ab73-41a8-9cca-4cfe05cf1863 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ef9d6c0a-ab73-41a8-9cca-4cfe05cf1863 {
    width: 100%;
    height: auto;
  }



  #s-ef9d6c0a-ab73-41a8-9cca-4cfe05cf1863 img.shogun-image {
    

    
    
    
  }


#s-ef9d6c0a-ab73-41a8-9cca-4cfe05cf1863 .shogun-image-content {
  
    align-items: center;
  
}

#s-37cfbed8-f6d9-4dc7-8d02-f6678d40d079 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-37cfbed8-f6d9-4dc7-8d02-f6678d40d079 .shogun-heading-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



#s-22a42959-6fad-4e02-ad6b-8f52a6b2d0ab {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-22a42959-6fad-4e02-ad6b-8f52a6b2d0ab .shogun-heading-component h5 {
  color: #000;
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: left;
}



#s-b3b1ced2-8faf-4382-ad4c-6f69d0a09701 {
  padding-top: 6px;
padding-left: 8%;
padding-bottom: 6px;
padding-right: 8%;
min-height: 500px;
}








#s-b3b1ced2-8faf-4382-ad4c-6f69d0a09701 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b3b1ced2-8faf-4382-ad4c-6f69d0a09701.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-0bd971a1-97d6-41b0-86d3-b4bc2a42624d {
  max-width: 357px;
aspect-ratio: 357/242;
text-align: center;
}





  #s-0bd971a1-97d6-41b0-86d3-b4bc2a42624d img.shogun-image,
  #s-0bd971a1-97d6-41b0-86d3-b4bc2a42624d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0bd971a1-97d6-41b0-86d3-b4bc2a42624d {
    width: 100%;
    height: auto;
  }



  #s-0bd971a1-97d6-41b0-86d3-b4bc2a42624d img.shogun-image {
    

    
    
    
  }


#s-0bd971a1-97d6-41b0-86d3-b4bc2a42624d .shogun-image-content {
  
    align-items: center;
  
}

#s-16dff1f9-7048-40c1-967f-9181328a58a7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-16dff1f9-7048-40c1-967f-9181328a58a7 .shogun-heading-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



#s-d1f90d39-e732-425a-9562-232e6c2ac18d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-d1f90d39-e732-425a-9562-232e6c2ac18d .shogun-heading-component h5 {
  color: #000;
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: left;
}



#s-b44f991a-223d-4975-b560-a02bf8c3ff54 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 6px;
padding-left: 8%;
padding-bottom: 6px;
padding-right: 8%;
min-height: 500px;
}








#s-b44f991a-223d-4975-b560-a02bf8c3ff54 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b44f991a-223d-4975-b560-a02bf8c3ff54.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-ccc2c06e-18e8-4b63-b676-2bd78ea2d2c3 {
  max-width: 357px;
aspect-ratio: 357/238;
text-align: center;
}





  #s-ccc2c06e-18e8-4b63-b676-2bd78ea2d2c3 img.shogun-image,
  #s-ccc2c06e-18e8-4b63-b676-2bd78ea2d2c3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ccc2c06e-18e8-4b63-b676-2bd78ea2d2c3 {
    width: 100%;
    height: auto;
  }



  #s-ccc2c06e-18e8-4b63-b676-2bd78ea2d2c3 img.shogun-image {
    

    
    
    
  }


#s-ccc2c06e-18e8-4b63-b676-2bd78ea2d2c3 .shogun-image-content {
  
    align-items: center;
  
}

#s-2c791d76-d667-44e0-8fec-a7a282609625 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-2c791d76-d667-44e0-8fec-a7a282609625 .shogun-heading-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



#s-da2f74b9-3317-4fa1-a61a-685011b522a4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-da2f74b9-3317-4fa1-a61a-685011b522a4 .shogun-heading-component h5 {
  color: #000;
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: left;
}



#s-60347a79-74d2-4377-927b-5388f8ce485e {
  margin-top: 50px;
margin-bottom: 50px;
}

@media (min-width: 0px) {
[id="s-60347a79-74d2-4377-927b-5388f8ce485e"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-60347a79-74d2-4377-927b-5388f8ce485e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-60347a79-74d2-4377-927b-5388f8ce485e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-60347a79-74d2-4377-927b-5388f8ce485e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-0d0ec4f9-1a76-4800-91de-8b776d3f387b {
  padding-top: 6px;
padding-left: 8%;
padding-bottom: 6px;
padding-right: 8%;
min-height: 500px;
}








#s-0d0ec4f9-1a76-4800-91de-8b776d3f387b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0d0ec4f9-1a76-4800-91de-8b776d3f387b.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-2716dbd7-907f-4277-bd14-9d1a8e3d1f25 {
  max-width: 359px;
aspect-ratio: 359/238;
text-align: center;
}





  #s-2716dbd7-907f-4277-bd14-9d1a8e3d1f25 img.shogun-image,
  #s-2716dbd7-907f-4277-bd14-9d1a8e3d1f25 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2716dbd7-907f-4277-bd14-9d1a8e3d1f25 {
    width: 100%;
    height: auto;
  }



  #s-2716dbd7-907f-4277-bd14-9d1a8e3d1f25 img.shogun-image {
    

    
    
    
  }


#s-2716dbd7-907f-4277-bd14-9d1a8e3d1f25 .shogun-image-content {
  
    align-items: center;
  
}

#s-5c8c79d5-a870-4f18-9ab0-0ccc2867e655 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-5c8c79d5-a870-4f18-9ab0-0ccc2867e655 .shogun-heading-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



#s-48102d00-df17-4a53-a02e-b9b5bd69462a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-48102d00-df17-4a53-a02e-b9b5bd69462a .shogun-heading-component h5 {
  color: #000;
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: left;
}



#s-3e49d343-e8c5-42c8-9c7c-f0f8c7724b2a {
  padding-top: 6px;
padding-left: 8%;
padding-bottom: 6px;
padding-right: 8%;
min-height: 500px;
}








#s-3e49d343-e8c5-42c8-9c7c-f0f8c7724b2a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3e49d343-e8c5-42c8-9c7c-f0f8c7724b2a.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-fc360340-2c35-43cc-ab3a-999e53a60e44 {
  max-width: 357px;
aspect-ratio: 357/236;
text-align: center;
}





  #s-fc360340-2c35-43cc-ab3a-999e53a60e44 img.shogun-image,
  #s-fc360340-2c35-43cc-ab3a-999e53a60e44 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fc360340-2c35-43cc-ab3a-999e53a60e44 {
    width: 100%;
    height: auto;
  }



  #s-fc360340-2c35-43cc-ab3a-999e53a60e44 img.shogun-image {
    

    
    
    
  }


#s-fc360340-2c35-43cc-ab3a-999e53a60e44 .shogun-image-content {
  
    align-items: center;
  
}

#s-b23e5318-13b2-443e-bd95-5eb55cf1a66c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-b23e5318-13b2-443e-bd95-5eb55cf1a66c .shogun-heading-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



#s-d9722f32-7bdb-4368-839e-e99232ce3979 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-d9722f32-7bdb-4368-839e-e99232ce3979 .shogun-heading-component h5 {
  color: #000;
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: left;
}



#s-0e84e3b2-7f1a-41e5-9e54-cf64fba2235b {
  padding-top: 6px;
padding-left: 8%;
padding-bottom: 6px;
padding-right: 8%;
min-height: 500px;
}








#s-0e84e3b2-7f1a-41e5-9e54-cf64fba2235b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0e84e3b2-7f1a-41e5-9e54-cf64fba2235b.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-17fe900c-b72e-466d-b229-ba4d1c814200 {
  max-width: 357px;
aspect-ratio: 357/237;
text-align: center;
}





  #s-17fe900c-b72e-466d-b229-ba4d1c814200 img.shogun-image,
  #s-17fe900c-b72e-466d-b229-ba4d1c814200 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-17fe900c-b72e-466d-b229-ba4d1c814200 {
    width: 100%;
    height: auto;
  }



  #s-17fe900c-b72e-466d-b229-ba4d1c814200 img.shogun-image {
    

    
    
    
  }


#s-17fe900c-b72e-466d-b229-ba4d1c814200 .shogun-image-content {
  
    align-items: center;
  
}

#s-bec36412-d6e8-4e4c-a35f-b6786934aad8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-bec36412-d6e8-4e4c-a35f-b6786934aad8 .shogun-heading-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



#s-21a94f43-5c2b-47ee-9f4e-0946ad145550 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-21a94f43-5c2b-47ee-9f4e-0946ad145550 .shogun-heading-component h5 {
  color: #000;
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: left;
}



#s-ddbd52b6-ea82-45c8-8438-20dca23950db {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 6px;
padding-left: 8%;
padding-bottom: 6px;
padding-right: 8%;
min-height: 500px;
}








#s-ddbd52b6-ea82-45c8-8438-20dca23950db > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ddbd52b6-ea82-45c8-8438-20dca23950db.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-f219616c-8561-4456-a9d1-166a09d8016b {
  max-width: 357px;
aspect-ratio: 357/239;
text-align: center;
}





  #s-f219616c-8561-4456-a9d1-166a09d8016b img.shogun-image,
  #s-f219616c-8561-4456-a9d1-166a09d8016b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f219616c-8561-4456-a9d1-166a09d8016b {
    width: 100%;
    height: auto;
  }



  #s-f219616c-8561-4456-a9d1-166a09d8016b img.shogun-image {
    

    
    
    
  }


#s-f219616c-8561-4456-a9d1-166a09d8016b .shogun-image-content {
  
    align-items: center;
  
}

#s-fc20fc92-5b69-404e-aa0c-20842b96ac54 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-fc20fc92-5b69-404e-aa0c-20842b96ac54 .shogun-heading-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



#s-46abc01d-b2eb-44bd-b2bb-ef2007330ecf {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-46abc01d-b2eb-44bd-b2bb-ef2007330ecf .shogun-heading-component h5 {
  color: #000;
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: left;
}



#s-9a4ce283-96f0-488e-9be4-6ee5ce64ff41 {
  min-height: 50px;
}








#s-9a4ce283-96f0-488e-9be4-6ee5ce64ff41 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9a4ce283-96f0-488e-9be4-6ee5ce64ff41.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bb8f4c12-4c2f-4515-bddf-19e8b96cd046 {
  margin-top: 10px;
margin-left: 2%;
margin-bottom: 10px;
margin-right: 2%;
}

@media (min-width: 0px) {
[id="s-bb8f4c12-4c2f-4515-bddf-19e8b96cd046"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-bb8f4c12-4c2f-4515-bddf-19e8b96cd046"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 992px) {
[id="s-bb8f4c12-4c2f-4515-bddf-19e8b96cd046"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 1200px) {
[id="s-bb8f4c12-4c2f-4515-bddf-19e8b96cd046"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 24.0px);
}

}

#s-47271213-3694-445f-89b0-fb69e4253829 {
  min-height: 50px;
}








#s-47271213-3694-445f-89b0-fb69e4253829 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-47271213-3694-445f-89b0-fb69e4253829.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b7525f20-70d3-448a-bb1a-5bc05024d47d {
  max-width: 359px;
aspect-ratio: 359/239;
text-align: center;
}





  #s-b7525f20-70d3-448a-bb1a-5bc05024d47d img.shogun-image,
  #s-b7525f20-70d3-448a-bb1a-5bc05024d47d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b7525f20-70d3-448a-bb1a-5bc05024d47d {
    width: 100%;
    height: auto;
  }



  #s-b7525f20-70d3-448a-bb1a-5bc05024d47d img.shogun-image {
    

    
    
    
  }


#s-b7525f20-70d3-448a-bb1a-5bc05024d47d .shogun-image-content {
  
    align-items: center;
  
}

#s-333a3d28-f9ac-4270-ad5f-0eab3a07562c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-333a3d28-f9ac-4270-ad5f-0eab3a07562c .shogun-heading-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



#s-059b2e59-321c-4b5e-a84b-98a087768052 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-059b2e59-321c-4b5e-a84b-98a087768052 .shogun-heading-component h5 {
  color: #000;
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: left;
}



#s-7123db88-c12c-4564-989d-6349fd3d7a9a {
  min-height: 50px;
}








#s-7123db88-c12c-4564-989d-6349fd3d7a9a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7123db88-c12c-4564-989d-6349fd3d7a9a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-59d9548d-2529-404b-8a82-ae2499c04238 {
  max-width: 357px;
aspect-ratio: 357/239;
text-align: center;
}





  #s-59d9548d-2529-404b-8a82-ae2499c04238 img.shogun-image,
  #s-59d9548d-2529-404b-8a82-ae2499c04238 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-59d9548d-2529-404b-8a82-ae2499c04238 {
    width: 100%;
    height: auto;
  }



  #s-59d9548d-2529-404b-8a82-ae2499c04238 img.shogun-image {
    

    
    
    
  }


#s-59d9548d-2529-404b-8a82-ae2499c04238 .shogun-image-content {
  
    align-items: center;
  
}

#s-5e6e70ab-ea09-4888-9fa9-9c53713ec5ac {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-5e6e70ab-ea09-4888-9fa9-9c53713ec5ac .shogun-heading-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



#s-d843238a-fbe0-466c-b0fb-f866d6576e53 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-d843238a-fbe0-466c-b0fb-f866d6576e53 .shogun-heading-component h5 {
  color: #000;
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: left;
}



#s-69fd6d13-be07-4e65-85f8-0be46d523ad6 {
  min-height: 50px;
}








#s-69fd6d13-be07-4e65-85f8-0be46d523ad6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-69fd6d13-be07-4e65-85f8-0be46d523ad6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1e61ae00-067b-4cf4-9a27-d50fc2ed6a6d {
  max-width: 357px;
aspect-ratio: 357/239;
text-align: center;
}





  #s-1e61ae00-067b-4cf4-9a27-d50fc2ed6a6d img.shogun-image,
  #s-1e61ae00-067b-4cf4-9a27-d50fc2ed6a6d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1e61ae00-067b-4cf4-9a27-d50fc2ed6a6d {
    width: 100%;
    height: auto;
  }



  #s-1e61ae00-067b-4cf4-9a27-d50fc2ed6a6d img.shogun-image {
    

    
    
    
  }


#s-1e61ae00-067b-4cf4-9a27-d50fc2ed6a6d .shogun-image-content {
  
    align-items: center;
  
}

#s-30fc9e08-c9e1-40c1-b8df-82bf63f0a991 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-30fc9e08-c9e1-40c1-b8df-82bf63f0a991 .shogun-heading-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



#s-e59ea696-adc5-4348-9772-4e6b3221379d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-e59ea696-adc5-4348-9772-4e6b3221379d .shogun-heading-component h5 {
  color: #000;
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: left;
}



#s-1c4489b4-3e11-4c00-b34b-cbcdb514115f {
  max-width: 356px;
aspect-ratio: 356/237;
text-align: center;
}





  #s-1c4489b4-3e11-4c00-b34b-cbcdb514115f img.shogun-image,
  #s-1c4489b4-3e11-4c00-b34b-cbcdb514115f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1c4489b4-3e11-4c00-b34b-cbcdb514115f {
    width: 100%;
    height: auto;
  }



  #s-1c4489b4-3e11-4c00-b34b-cbcdb514115f img.shogun-image {
    

    
    
    
  }


#s-1c4489b4-3e11-4c00-b34b-cbcdb514115f .shogun-image-content {
  
    align-items: center;
  
}

#s-39982397-c937-46d2-bc67-63395231104e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-39982397-c937-46d2-bc67-63395231104e .shogun-heading-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



#s-575a67e1-36a5-4e89-8bfe-ff30dbcafabe {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-575a67e1-36a5-4e89-8bfe-ff30dbcafabe .shogun-heading-component h5 {
  color: #000;
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: left;
}



#s-c6d6f1c8-77ca-4bce-a61c-150fb8441de4 {
  max-width: 357px;
aspect-ratio: 357/237;
text-align: center;
}





  #s-c6d6f1c8-77ca-4bce-a61c-150fb8441de4 img.shogun-image,
  #s-c6d6f1c8-77ca-4bce-a61c-150fb8441de4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c6d6f1c8-77ca-4bce-a61c-150fb8441de4 {
    width: 100%;
    height: auto;
  }



  #s-c6d6f1c8-77ca-4bce-a61c-150fb8441de4 img.shogun-image {
    

    
    
    
  }


#s-c6d6f1c8-77ca-4bce-a61c-150fb8441de4 .shogun-image-content {
  
    align-items: center;
  
}

#s-d765949f-352c-4a32-ab8c-4d0ab6e10854 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-d765949f-352c-4a32-ab8c-4d0ab6e10854 .shogun-heading-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



#s-7cae3104-cfad-4e5d-8925-faa801cf8841 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-7cae3104-cfad-4e5d-8925-faa801cf8841 .shogun-heading-component h5 {
  color: #000;
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: left;
}



#s-fa90f80f-231b-411d-bf8f-0c273fab5bdc {
  min-height: 50px;
}








#s-fa90f80f-231b-411d-bf8f-0c273fab5bdc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fa90f80f-231b-411d-bf8f-0c273fab5bdc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be {
  max-width: 1431px;
aspect-ratio: 1431/853;
text-align: center;
}





  #s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be img.shogun-image,
  #s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be {
    width: 100%;
    height: auto;
  }

  #s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be.shogun-image {
    
    
  }


.s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be .shogun-image-content {
  
    align-items: center;
  
}

.s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be {
      --shg-aspect-ratio: calc(1431/853); 
    }

    .s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be.shogun-image-container {
      position: relative;
    }

    .s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be img.shogun-image,
  #s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be {
    width: 100%;
    height: auto;
  }

  #s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be.shogun-image {
    
    
  }


.s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be .shogun-image-content {
  
    align-items: center;
  
}

.s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be {
      --shg-aspect-ratio: calc(1431/853); 
    }

    .s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be.shogun-image-container {
      position: relative;
    }

    .s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be img.shogun-image,
  #s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be {
    width: 100%;
    height: auto;
  }

  #s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be.shogun-image {
    
    
  }


.s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be .shogun-image-content {
  
    align-items: center;
  
}

.s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be {
      --shg-aspect-ratio: calc(1431/853); 
    }

    .s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be.shogun-image-container {
      position: relative;
    }

    .s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be img.shogun-image,
  #s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be {
    width: 100%;
    height: auto;
  }

  #s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be.shogun-image {
    
    
  }


.s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be .shogun-image-content {
  
    align-items: center;
  
}

.s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be {
      --shg-aspect-ratio: calc(1431/853); 
    }

    .s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be.shogun-image-container {
      position: relative;
    }

    .s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be img.shogun-image,
  #s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be {
    width: 100%;
    height: auto;
  }

  #s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be.shogun-image {
    
    
  }


.s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be .shogun-image-content {
  
    align-items: center;
  
}

.s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be {
      --shg-aspect-ratio: calc(1431/853); 
    }

    .s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be.shogun-image-container {
      position: relative;
    }

    .s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f0b7ecd2-961a-44c1-a8dd-73a8fb9758be img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
/*
  $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}
