.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-378adc87-1a9a-41d1-a533-9c53aaacedbc {
  min-height: 50px;
}
@media (min-width: 1200px){#s-378adc87-1a9a-41d1-a533-9c53aaacedbc {
  
}
}@media (min-width: 1200px){#s-378adc87-1a9a-41d1-a533-9c53aaacedbc, #wrap-s-378adc87-1a9a-41d1-a533-9c53aaacedbc { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-378adc87-1a9a-41d1-a533-9c53aaacedbc {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-378adc87-1a9a-41d1-a533-9c53aaacedbc, #wrap-s-378adc87-1a9a-41d1-a533-9c53aaacedbc { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-378adc87-1a9a-41d1-a533-9c53aaacedbc {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-378adc87-1a9a-41d1-a533-9c53aaacedbc, #wrap-s-378adc87-1a9a-41d1-a533-9c53aaacedbc { display: none !important; }}@media (max-width: 767px){#s-378adc87-1a9a-41d1-a533-9c53aaacedbc {
  
}
}@media (max-width: 767px){#s-378adc87-1a9a-41d1-a533-9c53aaacedbc, #wrap-s-378adc87-1a9a-41d1-a533-9c53aaacedbc { display: none !important; }}







#s-378adc87-1a9a-41d1-a533-9c53aaacedbc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-378adc87-1a9a-41d1-a533-9c53aaacedbc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-image-content-wrapper .shogun-image.hover~* {
  z-index: 1;
}
#s-09d8e0c9-b86a-4a03-b28c-1339f878c945 {
  max-width: 3000px;
aspect-ratio: 3000/729;
text-align: center;
}





  #s-09d8e0c9-b86a-4a03-b28c-1339f878c945 img.shogun-image,
  #s-09d8e0c9-b86a-4a03-b28c-1339f878c945 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-09d8e0c9-b86a-4a03-b28c-1339f878c945 {
    width: 100%;
    height: auto;
  }

  #s-09d8e0c9-b86a-4a03-b28c-1339f878c945 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-09d8e0c9-b86a-4a03-b28c-1339f878c945.shogun-image {
    
    
  }


.s-09d8e0c9-b86a-4a03-b28c-1339f878c945 .shogun-image-content {
  
    align-items: center;
  
}

.s-09d8e0c9-b86a-4a03-b28c-1339f878c945.shg-align-container {
  display: flex;
  justify-content: center
}

.s-09d8e0c9-b86a-4a03-b28c-1339f878c945.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-09d8e0c9-b86a-4a03-b28c-1339f878c945.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-09d8e0c9-b86a-4a03-b28c-1339f878c945 img.shogun-image,
  #s-09d8e0c9-b86a-4a03-b28c-1339f878c945 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-09d8e0c9-b86a-4a03-b28c-1339f878c945 {
    width: 100%;
    height: auto;
  }

  #s-09d8e0c9-b86a-4a03-b28c-1339f878c945 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-09d8e0c9-b86a-4a03-b28c-1339f878c945.shogun-image {
    
    
  }


.s-09d8e0c9-b86a-4a03-b28c-1339f878c945 .shogun-image-content {
  
    align-items: center;
  
}

.s-09d8e0c9-b86a-4a03-b28c-1339f878c945.shg-align-container {
  display: flex;
  justify-content: center
}

.s-09d8e0c9-b86a-4a03-b28c-1339f878c945.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-09d8e0c9-b86a-4a03-b28c-1339f878c945.shogun-image {
  box-sizing: border-box;
}


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



  #s-09d8e0c9-b86a-4a03-b28c-1339f878c945 img.shogun-image,
  #s-09d8e0c9-b86a-4a03-b28c-1339f878c945 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-09d8e0c9-b86a-4a03-b28c-1339f878c945 {
    width: 100%;
    height: auto;
  }

  #s-09d8e0c9-b86a-4a03-b28c-1339f878c945 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-09d8e0c9-b86a-4a03-b28c-1339f878c945.shogun-image {
    
    
  }


.s-09d8e0c9-b86a-4a03-b28c-1339f878c945 .shogun-image-content {
  
    align-items: center;
  
}

.s-09d8e0c9-b86a-4a03-b28c-1339f878c945.shg-align-container {
  display: flex;
  justify-content: center
}

.s-09d8e0c9-b86a-4a03-b28c-1339f878c945.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-09d8e0c9-b86a-4a03-b28c-1339f878c945.shogun-image {
  box-sizing: border-box;
}


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



  #s-09d8e0c9-b86a-4a03-b28c-1339f878c945 img.shogun-image,
  #s-09d8e0c9-b86a-4a03-b28c-1339f878c945 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-09d8e0c9-b86a-4a03-b28c-1339f878c945 {
    width: 100%;
    height: auto;
  }

  #s-09d8e0c9-b86a-4a03-b28c-1339f878c945 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-09d8e0c9-b86a-4a03-b28c-1339f878c945.shogun-image {
    
    
  }


.s-09d8e0c9-b86a-4a03-b28c-1339f878c945 .shogun-image-content {
  
    align-items: center;
  
}

.s-09d8e0c9-b86a-4a03-b28c-1339f878c945.shg-align-container {
  display: flex;
  justify-content: center
}

.s-09d8e0c9-b86a-4a03-b28c-1339f878c945.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-09d8e0c9-b86a-4a03-b28c-1339f878c945.shogun-image {
  box-sizing: border-box;
}


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



  #s-09d8e0c9-b86a-4a03-b28c-1339f878c945 img.shogun-image,
  #s-09d8e0c9-b86a-4a03-b28c-1339f878c945 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-09d8e0c9-b86a-4a03-b28c-1339f878c945 {
    width: 100%;
    height: auto;
  }

  #s-09d8e0c9-b86a-4a03-b28c-1339f878c945 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-09d8e0c9-b86a-4a03-b28c-1339f878c945.shogun-image {
    
    
  }


.s-09d8e0c9-b86a-4a03-b28c-1339f878c945 .shogun-image-content {
  
    align-items: center;
  
}

.s-09d8e0c9-b86a-4a03-b28c-1339f878c945.shg-align-container {
  display: flex;
  justify-content: center
}

.s-09d8e0c9-b86a-4a03-b28c-1339f878c945.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-09d8e0c9-b86a-4a03-b28c-1339f878c945.shogun-image {
  box-sizing: border-box;
}


}
#s-85120edb-5754-4d43-b562-02610a92a715 {
  min-height: 50px;
}








#s-85120edb-5754-4d43-b562-02610a92a715 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-85120edb-5754-4d43-b562-02610a92a715.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

#s-e614f675-3b20-458c-8ce0-4748929e305c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e614f675-3b20-458c-8ce0-4748929e305c .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



.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-38dd0d93-d1c6-4c10-ae5c-92dbcf1eb48d {
  margin-left: 10%;
margin-right: 10%;
}

#s-afa0e252-502d-499a-8d9a-f76f3b28310e {
  min-height: 25px;
}








#s-afa0e252-502d-499a-8d9a-f76f3b28310e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-afa0e252-502d-499a-8d9a-f76f3b28310e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a9b6d0d7-979a-468c-bfdb-095d4d0a6d90 {
  min-height: 25px;
}
@media (min-width: 1200px){#s-a9b6d0d7-979a-468c-bfdb-095d4d0a6d90 {
  
}
}@media (min-width: 1200px){#s-a9b6d0d7-979a-468c-bfdb-095d4d0a6d90, #wrap-s-a9b6d0d7-979a-468c-bfdb-095d4d0a6d90 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a9b6d0d7-979a-468c-bfdb-095d4d0a6d90 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a9b6d0d7-979a-468c-bfdb-095d4d0a6d90, #wrap-s-a9b6d0d7-979a-468c-bfdb-095d4d0a6d90 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a9b6d0d7-979a-468c-bfdb-095d4d0a6d90 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-a9b6d0d7-979a-468c-bfdb-095d4d0a6d90, #wrap-s-a9b6d0d7-979a-468c-bfdb-095d4d0a6d90 { display: none !important; }}@media (max-width: 767px){#s-a9b6d0d7-979a-468c-bfdb-095d4d0a6d90 {
  
}
}







#s-a9b6d0d7-979a-468c-bfdb-095d4d0a6d90 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a9b6d0d7-979a-468c-bfdb-095d4d0a6d90.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1a8e0b59-df6c-469e-86e9-186a689a74c0 {
  min-height: 50px;
background-color: rgba(163, 183, 158, 1);
}
@media (max-width: 767px){#s-1a8e0b59-df6c-469e-86e9-186a689a74c0 {
  
}
}@media (max-width: 767px){#s-1a8e0b59-df6c-469e-86e9-186a689a74c0, #wrap-s-1a8e0b59-df6c-469e-86e9-186a689a74c0 { display: none !important; }}







#s-1a8e0b59-df6c-469e-86e9-186a689a74c0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1a8e0b59-df6c-469e-86e9-186a689a74c0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-14608315-7361-40a2-8c3c-953ce685bcb5 {
  min-height: 50px;
background-color: rgba(163, 183, 158, 1);
}








#s-14608315-7361-40a2-8c3c-953ce685bcb5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-14608315-7361-40a2-8c3c-953ce685bcb5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-22169ba3-0865-48ed-b3dc-2e9832827c75 {
  margin-left: 16%;
margin-right: 16%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-22169ba3-0865-48ed-b3dc-2e9832827c75 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}


#s-22169ba3-0865-48ed-b3dc-2e9832827c75 .shogun-heading-component h2 a {
  color: ;
}


#s-7048da2a-5dd5-463e-9e77-e1182bdc0b52 {
  min-height: 50px;
background-color: rgba(163, 183, 158, 1);
}








#s-7048da2a-5dd5-463e-9e77-e1182bdc0b52 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7048da2a-5dd5-463e-9e77-e1182bdc0b52.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-8730d883-ebca-4ea9-b507-5d55167636a1 {
  background-color: rgba(163, 183, 158, 1);
}
@media (min-width: 1200px){#s-8730d883-ebca-4ea9-b507-5d55167636a1 {
  margin-left: 300px;
margin-right: 300px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-8730d883-ebca-4ea9-b507-5d55167636a1 {
  margin-left: 150px;
margin-right: 150px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-8730d883-ebca-4ea9-b507-5d55167636a1 {
  margin-left: 25px;
margin-right: 25px;
}
}@media (max-width: 767px){#s-8730d883-ebca-4ea9-b507-5d55167636a1 {
  margin-left: 20px;
margin-right: 20px;
}
}
@media (min-width: 0px) {
[id="s-8730d883-ebca-4ea9-b507-5d55167636a1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8730d883-ebca-4ea9-b507-5d55167636a1"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8730d883-ebca-4ea9-b507-5d55167636a1"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8730d883-ebca-4ea9-b507-5d55167636a1"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-8730d883-ebca-4ea9-b507-5d55167636a1"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-3508c8f2-7a47-47bc-b6d0-62d964c29c51 {
  background-repeat: no-repeat;
background-size: cover;
margin-left: auto;
margin-right: auto;
min-height: 400px;
background-position: center center;
}








#s-3508c8f2-7a47-47bc-b6d0-62d964c29c51 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3508c8f2-7a47-47bc-b6d0-62d964c29c51.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-583d151e-3a5a-4821-9bd1-dee359f5b4fe {
  min-height: 25px;
}
@media (max-width: 767px){#s-583d151e-3a5a-4821-9bd1-dee359f5b4fe {
  
}
}







#s-583d151e-3a5a-4821-9bd1-dee359f5b4fe > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-583d151e-3a5a-4821-9bd1-dee359f5b4fe.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

#s-e50ae839-073a-4e5b-806b-d68c91ebb73e {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 30px;
background-color: rgba(20, 20, 20, 1);
text-align: left;
text-decoration: none;
}
#s-e50ae839-073a-4e5b-806b-d68c91ebb73e:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e50ae839-073a-4e5b-806b-d68c91ebb73e:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-e50ae839-073a-4e5b-806b-d68c91ebb73e-root {
    text-align: left;
  }


#s-e50ae839-073a-4e5b-806b-d68c91ebb73e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e50ae839-073a-4e5b-806b-d68c91ebb73e-root {
    text-align: left;
  }


#s-e50ae839-073a-4e5b-806b-d68c91ebb73e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e50ae839-073a-4e5b-806b-d68c91ebb73e-root {
    text-align: left;
  }


#s-e50ae839-073a-4e5b-806b-d68c91ebb73e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e50ae839-073a-4e5b-806b-d68c91ebb73e-root {
    text-align: left;
  }


#s-e50ae839-073a-4e5b-806b-d68c91ebb73e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e50ae839-073a-4e5b-806b-d68c91ebb73e-root {
    text-align: left;
  }


#s-e50ae839-073a-4e5b-806b-d68c91ebb73e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-1c27bd2c-5ef7-4850-9ff0-ef44759d00a4 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-1c27bd2c-5ef7-4850-9ff0-ef44759d00a4 {
  
}
}@media (min-width: 1200px){#s-1c27bd2c-5ef7-4850-9ff0-ef44759d00a4, #wrap-s-1c27bd2c-5ef7-4850-9ff0-ef44759d00a4 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1c27bd2c-5ef7-4850-9ff0-ef44759d00a4 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-1c27bd2c-5ef7-4850-9ff0-ef44759d00a4, #wrap-s-1c27bd2c-5ef7-4850-9ff0-ef44759d00a4 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1c27bd2c-5ef7-4850-9ff0-ef44759d00a4 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-1c27bd2c-5ef7-4850-9ff0-ef44759d00a4, #wrap-s-1c27bd2c-5ef7-4850-9ff0-ef44759d00a4 { display: none !important; }}







#s-1c27bd2c-5ef7-4850-9ff0-ef44759d00a4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1c27bd2c-5ef7-4850-9ff0-ef44759d00a4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bee8f881-839a-4fd1-9ac4-0fe0286d2878 {
  min-height: 50px;
background-color: rgba(163, 183, 158, 1);
}
@media (max-width: 767px){#s-bee8f881-839a-4fd1-9ac4-0fe0286d2878 {
  
}
}@media (max-width: 767px){#s-bee8f881-839a-4fd1-9ac4-0fe0286d2878, #wrap-s-bee8f881-839a-4fd1-9ac4-0fe0286d2878 { display: none !important; }}







#s-bee8f881-839a-4fd1-9ac4-0fe0286d2878 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bee8f881-839a-4fd1-9ac4-0fe0286d2878.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ebb72f4d-6808-4a67-8b26-bb54b57cb140 {
  min-height: 50px;
}








#s-ebb72f4d-6808-4a67-8b26-bb54b57cb140 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ebb72f4d-6808-4a67-8b26-bb54b57cb140.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-23cd0ad9-8fa4-4bc7-9d0f-d5603012cc8b {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-23cd0ad9-8fa4-4bc7-9d0f-d5603012cc8b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-23cd0ad9-8fa4-4bc7-9d0f-d5603012cc8b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8e235f1a-1076-4f87-b15a-d2afb737749d {
  margin-left: 16%;
margin-right: 16%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8e235f1a-1076-4f87-b15a-d2afb737749d .shogun-heading-component h3 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}


#s-8e235f1a-1076-4f87-b15a-d2afb737749d .shogun-heading-component h3 a {
  color: ;
}


#s-2111addd-6b52-4465-944a-b83d740124bd {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-2111addd-6b52-4465-944a-b83d740124bd"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-2111addd-6b52-4465-944a-b83d740124bd"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-2111addd-6b52-4465-944a-b83d740124bd"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-2111addd-6b52-4465-944a-b83d740124bd"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40 {
  max-width: 1200px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40 img.shogun-image,
  #s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40 {
    width: 100%;
    height: auto;
  }

  #s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40.shogun-image {
    
    
  }


.s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40 .shogun-image-content {
  
    align-items: center;
  
}

.s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40 img.shogun-image,
  #s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40 {
    width: 100%;
    height: auto;
  }

  #s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40.shogun-image {
    
    
  }


.s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40 .shogun-image-content {
  
    align-items: center;
  
}

.s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40.shogun-image {
  box-sizing: border-box;
}


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



  #s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40 img.shogun-image,
  #s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40 {
    width: 100%;
    height: auto;
  }

  #s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40.shogun-image {
    
    
  }


.s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40 .shogun-image-content {
  
    align-items: center;
  
}

.s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40.shogun-image {
  box-sizing: border-box;
}


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



  #s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40 img.shogun-image,
  #s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40 {
    width: 100%;
    height: auto;
  }

  #s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40.shogun-image {
    
    
  }


.s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40 .shogun-image-content {
  
    align-items: center;
  
}

.s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40.shogun-image {
  box-sizing: border-box;
}


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



  #s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40 img.shogun-image,
  #s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40 {
    width: 100%;
    height: auto;
  }

  #s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40.shogun-image {
    
    
  }


.s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40 .shogun-image-content {
  
    align-items: center;
  
}

.s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c41121c6-2a4c-4e15-a7dc-06f25cfeed40.shogun-image {
  box-sizing: border-box;
}


}
#s-cf77957c-d533-4318-a5c9-4e8ecdb3297b {
  max-width: 1200px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-cf77957c-d533-4318-a5c9-4e8ecdb3297b img.shogun-image,
  #s-cf77957c-d533-4318-a5c9-4e8ecdb3297b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cf77957c-d533-4318-a5c9-4e8ecdb3297b {
    width: 100%;
    height: auto;
  }

  #s-cf77957c-d533-4318-a5c9-4e8ecdb3297b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cf77957c-d533-4318-a5c9-4e8ecdb3297b.shogun-image {
    
    
  }


.s-cf77957c-d533-4318-a5c9-4e8ecdb3297b .shogun-image-content {
  
    align-items: center;
  
}

.s-cf77957c-d533-4318-a5c9-4e8ecdb3297b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cf77957c-d533-4318-a5c9-4e8ecdb3297b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cf77957c-d533-4318-a5c9-4e8ecdb3297b.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-cf77957c-d533-4318-a5c9-4e8ecdb3297b img.shogun-image,
  #s-cf77957c-d533-4318-a5c9-4e8ecdb3297b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cf77957c-d533-4318-a5c9-4e8ecdb3297b {
    width: 100%;
    height: auto;
  }

  #s-cf77957c-d533-4318-a5c9-4e8ecdb3297b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cf77957c-d533-4318-a5c9-4e8ecdb3297b.shogun-image {
    
    
  }


.s-cf77957c-d533-4318-a5c9-4e8ecdb3297b .shogun-image-content {
  
    align-items: center;
  
}

.s-cf77957c-d533-4318-a5c9-4e8ecdb3297b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cf77957c-d533-4318-a5c9-4e8ecdb3297b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cf77957c-d533-4318-a5c9-4e8ecdb3297b.shogun-image {
  box-sizing: border-box;
}


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



  #s-cf77957c-d533-4318-a5c9-4e8ecdb3297b img.shogun-image,
  #s-cf77957c-d533-4318-a5c9-4e8ecdb3297b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cf77957c-d533-4318-a5c9-4e8ecdb3297b {
    width: 100%;
    height: auto;
  }

  #s-cf77957c-d533-4318-a5c9-4e8ecdb3297b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cf77957c-d533-4318-a5c9-4e8ecdb3297b.shogun-image {
    
    
  }


.s-cf77957c-d533-4318-a5c9-4e8ecdb3297b .shogun-image-content {
  
    align-items: center;
  
}

.s-cf77957c-d533-4318-a5c9-4e8ecdb3297b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cf77957c-d533-4318-a5c9-4e8ecdb3297b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cf77957c-d533-4318-a5c9-4e8ecdb3297b.shogun-image {
  box-sizing: border-box;
}


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



  #s-cf77957c-d533-4318-a5c9-4e8ecdb3297b img.shogun-image,
  #s-cf77957c-d533-4318-a5c9-4e8ecdb3297b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cf77957c-d533-4318-a5c9-4e8ecdb3297b {
    width: 100%;
    height: auto;
  }

  #s-cf77957c-d533-4318-a5c9-4e8ecdb3297b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cf77957c-d533-4318-a5c9-4e8ecdb3297b.shogun-image {
    
    
  }


.s-cf77957c-d533-4318-a5c9-4e8ecdb3297b .shogun-image-content {
  
    align-items: center;
  
}

.s-cf77957c-d533-4318-a5c9-4e8ecdb3297b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cf77957c-d533-4318-a5c9-4e8ecdb3297b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cf77957c-d533-4318-a5c9-4e8ecdb3297b.shogun-image {
  box-sizing: border-box;
}


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



  #s-cf77957c-d533-4318-a5c9-4e8ecdb3297b img.shogun-image,
  #s-cf77957c-d533-4318-a5c9-4e8ecdb3297b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cf77957c-d533-4318-a5c9-4e8ecdb3297b {
    width: 100%;
    height: auto;
  }

  #s-cf77957c-d533-4318-a5c9-4e8ecdb3297b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cf77957c-d533-4318-a5c9-4e8ecdb3297b.shogun-image {
    
    
  }


.s-cf77957c-d533-4318-a5c9-4e8ecdb3297b .shogun-image-content {
  
    align-items: center;
  
}

.s-cf77957c-d533-4318-a5c9-4e8ecdb3297b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cf77957c-d533-4318-a5c9-4e8ecdb3297b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cf77957c-d533-4318-a5c9-4e8ecdb3297b.shogun-image {
  box-sizing: border-box;
}


}
#s-c13bdae9-ba66-4f89-ab7d-753acbf08023 {
  max-width: 1200px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-c13bdae9-ba66-4f89-ab7d-753acbf08023 img.shogun-image,
  #s-c13bdae9-ba66-4f89-ab7d-753acbf08023 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c13bdae9-ba66-4f89-ab7d-753acbf08023 {
    width: 100%;
    height: auto;
  }

  #s-c13bdae9-ba66-4f89-ab7d-753acbf08023 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c13bdae9-ba66-4f89-ab7d-753acbf08023.shogun-image {
    
    
  }


.s-c13bdae9-ba66-4f89-ab7d-753acbf08023 .shogun-image-content {
  
    align-items: center;
  
}

.s-c13bdae9-ba66-4f89-ab7d-753acbf08023.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c13bdae9-ba66-4f89-ab7d-753acbf08023.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c13bdae9-ba66-4f89-ab7d-753acbf08023.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-c13bdae9-ba66-4f89-ab7d-753acbf08023 img.shogun-image,
  #s-c13bdae9-ba66-4f89-ab7d-753acbf08023 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c13bdae9-ba66-4f89-ab7d-753acbf08023 {
    width: 100%;
    height: auto;
  }

  #s-c13bdae9-ba66-4f89-ab7d-753acbf08023 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c13bdae9-ba66-4f89-ab7d-753acbf08023.shogun-image {
    
    
  }


.s-c13bdae9-ba66-4f89-ab7d-753acbf08023 .shogun-image-content {
  
    align-items: center;
  
}

.s-c13bdae9-ba66-4f89-ab7d-753acbf08023.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c13bdae9-ba66-4f89-ab7d-753acbf08023.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c13bdae9-ba66-4f89-ab7d-753acbf08023.shogun-image {
  box-sizing: border-box;
}


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



  #s-c13bdae9-ba66-4f89-ab7d-753acbf08023 img.shogun-image,
  #s-c13bdae9-ba66-4f89-ab7d-753acbf08023 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c13bdae9-ba66-4f89-ab7d-753acbf08023 {
    width: 100%;
    height: auto;
  }

  #s-c13bdae9-ba66-4f89-ab7d-753acbf08023 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c13bdae9-ba66-4f89-ab7d-753acbf08023.shogun-image {
    
    
  }


.s-c13bdae9-ba66-4f89-ab7d-753acbf08023 .shogun-image-content {
  
    align-items: center;
  
}

.s-c13bdae9-ba66-4f89-ab7d-753acbf08023.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c13bdae9-ba66-4f89-ab7d-753acbf08023.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c13bdae9-ba66-4f89-ab7d-753acbf08023.shogun-image {
  box-sizing: border-box;
}


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



  #s-c13bdae9-ba66-4f89-ab7d-753acbf08023 img.shogun-image,
  #s-c13bdae9-ba66-4f89-ab7d-753acbf08023 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c13bdae9-ba66-4f89-ab7d-753acbf08023 {
    width: 100%;
    height: auto;
  }

  #s-c13bdae9-ba66-4f89-ab7d-753acbf08023 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c13bdae9-ba66-4f89-ab7d-753acbf08023.shogun-image {
    
    
  }


.s-c13bdae9-ba66-4f89-ab7d-753acbf08023 .shogun-image-content {
  
    align-items: center;
  
}

.s-c13bdae9-ba66-4f89-ab7d-753acbf08023.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c13bdae9-ba66-4f89-ab7d-753acbf08023.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c13bdae9-ba66-4f89-ab7d-753acbf08023.shogun-image {
  box-sizing: border-box;
}


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



  #s-c13bdae9-ba66-4f89-ab7d-753acbf08023 img.shogun-image,
  #s-c13bdae9-ba66-4f89-ab7d-753acbf08023 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c13bdae9-ba66-4f89-ab7d-753acbf08023 {
    width: 100%;
    height: auto;
  }

  #s-c13bdae9-ba66-4f89-ab7d-753acbf08023 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c13bdae9-ba66-4f89-ab7d-753acbf08023.shogun-image {
    
    
  }


.s-c13bdae9-ba66-4f89-ab7d-753acbf08023 .shogun-image-content {
  
    align-items: center;
  
}

.s-c13bdae9-ba66-4f89-ab7d-753acbf08023.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c13bdae9-ba66-4f89-ab7d-753acbf08023.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c13bdae9-ba66-4f89-ab7d-753acbf08023.shogun-image {
  box-sizing: border-box;
}


}
#s-a79866e7-6a26-4570-83d6-a8d21fe824a0 {
  max-width: 1200px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-a79866e7-6a26-4570-83d6-a8d21fe824a0 img.shogun-image,
  #s-a79866e7-6a26-4570-83d6-a8d21fe824a0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a79866e7-6a26-4570-83d6-a8d21fe824a0 {
    width: 100%;
    height: auto;
  }

  #s-a79866e7-6a26-4570-83d6-a8d21fe824a0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a79866e7-6a26-4570-83d6-a8d21fe824a0.shogun-image {
    
    
  }


.s-a79866e7-6a26-4570-83d6-a8d21fe824a0 .shogun-image-content {
  
    align-items: center;
  
}

.s-a79866e7-6a26-4570-83d6-a8d21fe824a0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a79866e7-6a26-4570-83d6-a8d21fe824a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a79866e7-6a26-4570-83d6-a8d21fe824a0.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-a79866e7-6a26-4570-83d6-a8d21fe824a0 img.shogun-image,
  #s-a79866e7-6a26-4570-83d6-a8d21fe824a0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a79866e7-6a26-4570-83d6-a8d21fe824a0 {
    width: 100%;
    height: auto;
  }

  #s-a79866e7-6a26-4570-83d6-a8d21fe824a0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a79866e7-6a26-4570-83d6-a8d21fe824a0.shogun-image {
    
    
  }


.s-a79866e7-6a26-4570-83d6-a8d21fe824a0 .shogun-image-content {
  
    align-items: center;
  
}

.s-a79866e7-6a26-4570-83d6-a8d21fe824a0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a79866e7-6a26-4570-83d6-a8d21fe824a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a79866e7-6a26-4570-83d6-a8d21fe824a0.shogun-image {
  box-sizing: border-box;
}


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



  #s-a79866e7-6a26-4570-83d6-a8d21fe824a0 img.shogun-image,
  #s-a79866e7-6a26-4570-83d6-a8d21fe824a0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a79866e7-6a26-4570-83d6-a8d21fe824a0 {
    width: 100%;
    height: auto;
  }

  #s-a79866e7-6a26-4570-83d6-a8d21fe824a0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a79866e7-6a26-4570-83d6-a8d21fe824a0.shogun-image {
    
    
  }


.s-a79866e7-6a26-4570-83d6-a8d21fe824a0 .shogun-image-content {
  
    align-items: center;
  
}

.s-a79866e7-6a26-4570-83d6-a8d21fe824a0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a79866e7-6a26-4570-83d6-a8d21fe824a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a79866e7-6a26-4570-83d6-a8d21fe824a0.shogun-image {
  box-sizing: border-box;
}


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



  #s-a79866e7-6a26-4570-83d6-a8d21fe824a0 img.shogun-image,
  #s-a79866e7-6a26-4570-83d6-a8d21fe824a0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a79866e7-6a26-4570-83d6-a8d21fe824a0 {
    width: 100%;
    height: auto;
  }

  #s-a79866e7-6a26-4570-83d6-a8d21fe824a0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a79866e7-6a26-4570-83d6-a8d21fe824a0.shogun-image {
    
    
  }


.s-a79866e7-6a26-4570-83d6-a8d21fe824a0 .shogun-image-content {
  
    align-items: center;
  
}

.s-a79866e7-6a26-4570-83d6-a8d21fe824a0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a79866e7-6a26-4570-83d6-a8d21fe824a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a79866e7-6a26-4570-83d6-a8d21fe824a0.shogun-image {
  box-sizing: border-box;
}


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



  #s-a79866e7-6a26-4570-83d6-a8d21fe824a0 img.shogun-image,
  #s-a79866e7-6a26-4570-83d6-a8d21fe824a0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a79866e7-6a26-4570-83d6-a8d21fe824a0 {
    width: 100%;
    height: auto;
  }

  #s-a79866e7-6a26-4570-83d6-a8d21fe824a0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a79866e7-6a26-4570-83d6-a8d21fe824a0.shogun-image {
    
    
  }


.s-a79866e7-6a26-4570-83d6-a8d21fe824a0 .shogun-image-content {
  
    align-items: center;
  
}

.s-a79866e7-6a26-4570-83d6-a8d21fe824a0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a79866e7-6a26-4570-83d6-a8d21fe824a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a79866e7-6a26-4570-83d6-a8d21fe824a0.shogun-image {
  box-sizing: border-box;
}


}
#s-6818b43a-7aaf-4a99-a6a9-d7c9a88a29eb {
  min-height: 50px;
background-color: rgba(240, 168, 202, 1);
}








#s-6818b43a-7aaf-4a99-a6a9-d7c9a88a29eb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6818b43a-7aaf-4a99-a6a9-d7c9a88a29eb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dc2a6772-7068-45e3-8304-d34b98e77db1 {
  min-height: 50px;
background-color: rgba(240, 168, 202, 1);
}








#s-dc2a6772-7068-45e3-8304-d34b98e77db1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dc2a6772-7068-45e3-8304-d34b98e77db1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2a0f6fd3-49ae-44a8-b2c1-d5b6f4f7dea4 {
  margin-left: 16%;
margin-right: 16%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2a0f6fd3-49ae-44a8-b2c1-d5b6f4f7dea4 .shogun-heading-component h3 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}


#s-2a0f6fd3-49ae-44a8-b2c1-d5b6f4f7dea4 .shogun-heading-component h3 a {
  color: ;
}


#s-323b5341-ad09-47c3-89b2-d6ec0d26796e {
  min-height: 50px;
background-color: rgba(240, 168, 202, 1);
}








#s-323b5341-ad09-47c3-89b2-d6ec0d26796e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-323b5341-ad09-47c3-89b2-d6ec0d26796e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 1200px){#s-21008c41-1fe9-4ff3-ad7c-84a058a9710c {
  margin-left: 300px;
margin-right: 300px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-21008c41-1fe9-4ff3-ad7c-84a058a9710c {
  margin-left: 150px;
margin-right: 150px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-21008c41-1fe9-4ff3-ad7c-84a058a9710c {
  margin-left: 25px;
margin-right: 25px;
}
}@media (max-width: 767px){#s-21008c41-1fe9-4ff3-ad7c-84a058a9710c {
  margin-left: 20px;
margin-right: 20px;
}
}
@media (min-width: 0px) {
[id="s-21008c41-1fe9-4ff3-ad7c-84a058a9710c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-21008c41-1fe9-4ff3-ad7c-84a058a9710c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-21008c41-1fe9-4ff3-ad7c-84a058a9710c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-21008c41-1fe9-4ff3-ad7c-84a058a9710c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-d6034122-0878-43a5-8a25-4487b593e6ef {
  margin-top: 7px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}

#s-6c1e0894-9eb6-4698-b7b4-d01f3dffbd6e {
  min-height: 50px;
}
@media (min-width: 1200px){#s-6c1e0894-9eb6-4698-b7b4-d01f3dffbd6e {
  
}
}@media (min-width: 1200px){#s-6c1e0894-9eb6-4698-b7b4-d01f3dffbd6e, #wrap-s-6c1e0894-9eb6-4698-b7b4-d01f3dffbd6e { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6c1e0894-9eb6-4698-b7b4-d01f3dffbd6e {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-6c1e0894-9eb6-4698-b7b4-d01f3dffbd6e, #wrap-s-6c1e0894-9eb6-4698-b7b4-d01f3dffbd6e { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-6c1e0894-9eb6-4698-b7b4-d01f3dffbd6e {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-6c1e0894-9eb6-4698-b7b4-d01f3dffbd6e, #wrap-s-6c1e0894-9eb6-4698-b7b4-d01f3dffbd6e { display: none !important; }}@media (max-width: 767px){#s-6c1e0894-9eb6-4698-b7b4-d01f3dffbd6e {
  
}
}@media (max-width: 767px){#s-6c1e0894-9eb6-4698-b7b4-d01f3dffbd6e, #wrap-s-6c1e0894-9eb6-4698-b7b4-d01f3dffbd6e { display: none !important; }}







#s-6c1e0894-9eb6-4698-b7b4-d01f3dffbd6e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6c1e0894-9eb6-4698-b7b4-d01f3dffbd6e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-761b12ca-0a27-4652-a33b-5c3fb2322145 {
  min-height: 25px;
}
@media (min-width: 1200px){#s-761b12ca-0a27-4652-a33b-5c3fb2322145 {
  
}
}@media (min-width: 1200px){#s-761b12ca-0a27-4652-a33b-5c3fb2322145, #wrap-s-761b12ca-0a27-4652-a33b-5c3fb2322145 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-761b12ca-0a27-4652-a33b-5c3fb2322145 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-761b12ca-0a27-4652-a33b-5c3fb2322145, #wrap-s-761b12ca-0a27-4652-a33b-5c3fb2322145 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-761b12ca-0a27-4652-a33b-5c3fb2322145 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-761b12ca-0a27-4652-a33b-5c3fb2322145, #wrap-s-761b12ca-0a27-4652-a33b-5c3fb2322145 { display: none !important; }}







#s-761b12ca-0a27-4652-a33b-5c3fb2322145 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-761b12ca-0a27-4652-a33b-5c3fb2322145.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4fc0d9df-ba06-4f51-a84f-b8181f071d98 {
  max-width: 6720px;
aspect-ratio: 6720/4480;
text-align: center;
}





  #s-4fc0d9df-ba06-4f51-a84f-b8181f071d98 img.shogun-image,
  #s-4fc0d9df-ba06-4f51-a84f-b8181f071d98 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4fc0d9df-ba06-4f51-a84f-b8181f071d98 {
    width: 100%;
    height: auto;
  }

  #s-4fc0d9df-ba06-4f51-a84f-b8181f071d98 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4fc0d9df-ba06-4f51-a84f-b8181f071d98.shogun-image {
    
    
  }


.s-4fc0d9df-ba06-4f51-a84f-b8181f071d98 .shogun-image-content {
  
    align-items: center;
  
}

.s-4fc0d9df-ba06-4f51-a84f-b8181f071d98.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4fc0d9df-ba06-4f51-a84f-b8181f071d98.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4fc0d9df-ba06-4f51-a84f-b8181f071d98.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-4fc0d9df-ba06-4f51-a84f-b8181f071d98 img.shogun-image,
  #s-4fc0d9df-ba06-4f51-a84f-b8181f071d98 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4fc0d9df-ba06-4f51-a84f-b8181f071d98 {
    width: 100%;
    height: auto;
  }

  #s-4fc0d9df-ba06-4f51-a84f-b8181f071d98 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4fc0d9df-ba06-4f51-a84f-b8181f071d98.shogun-image {
    
    
  }


.s-4fc0d9df-ba06-4f51-a84f-b8181f071d98 .shogun-image-content {
  
    align-items: center;
  
}

.s-4fc0d9df-ba06-4f51-a84f-b8181f071d98.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4fc0d9df-ba06-4f51-a84f-b8181f071d98.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4fc0d9df-ba06-4f51-a84f-b8181f071d98.shogun-image {
  box-sizing: border-box;
}


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



  #s-4fc0d9df-ba06-4f51-a84f-b8181f071d98 img.shogun-image,
  #s-4fc0d9df-ba06-4f51-a84f-b8181f071d98 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4fc0d9df-ba06-4f51-a84f-b8181f071d98 {
    width: 100%;
    height: auto;
  }

  #s-4fc0d9df-ba06-4f51-a84f-b8181f071d98 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4fc0d9df-ba06-4f51-a84f-b8181f071d98.shogun-image {
    
    
  }


.s-4fc0d9df-ba06-4f51-a84f-b8181f071d98 .shogun-image-content {
  
    align-items: center;
  
}

.s-4fc0d9df-ba06-4f51-a84f-b8181f071d98.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4fc0d9df-ba06-4f51-a84f-b8181f071d98.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4fc0d9df-ba06-4f51-a84f-b8181f071d98.shogun-image {
  box-sizing: border-box;
}


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



  #s-4fc0d9df-ba06-4f51-a84f-b8181f071d98 img.shogun-image,
  #s-4fc0d9df-ba06-4f51-a84f-b8181f071d98 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4fc0d9df-ba06-4f51-a84f-b8181f071d98 {
    width: 100%;
    height: auto;
  }

  #s-4fc0d9df-ba06-4f51-a84f-b8181f071d98 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4fc0d9df-ba06-4f51-a84f-b8181f071d98.shogun-image {
    
    
  }


.s-4fc0d9df-ba06-4f51-a84f-b8181f071d98 .shogun-image-content {
  
    align-items: center;
  
}

.s-4fc0d9df-ba06-4f51-a84f-b8181f071d98.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4fc0d9df-ba06-4f51-a84f-b8181f071d98.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4fc0d9df-ba06-4f51-a84f-b8181f071d98.shogun-image {
  box-sizing: border-box;
}


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



  #s-4fc0d9df-ba06-4f51-a84f-b8181f071d98 img.shogun-image,
  #s-4fc0d9df-ba06-4f51-a84f-b8181f071d98 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4fc0d9df-ba06-4f51-a84f-b8181f071d98 {
    width: 100%;
    height: auto;
  }

  #s-4fc0d9df-ba06-4f51-a84f-b8181f071d98 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4fc0d9df-ba06-4f51-a84f-b8181f071d98.shogun-image {
    
    
  }


.s-4fc0d9df-ba06-4f51-a84f-b8181f071d98 .shogun-image-content {
  
    align-items: center;
  
}

.s-4fc0d9df-ba06-4f51-a84f-b8181f071d98.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4fc0d9df-ba06-4f51-a84f-b8181f071d98.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4fc0d9df-ba06-4f51-a84f-b8181f071d98.shogun-image {
  box-sizing: border-box;
}


}
#s-2ce52090-8fd4-461d-a2b2-26876efe4c74 {
  min-height: 50px;
background-color: rgba(240, 168, 202, 1);
}
@media (max-width: 767px){#s-2ce52090-8fd4-461d-a2b2-26876efe4c74 {
  
}
}@media (max-width: 767px){#s-2ce52090-8fd4-461d-a2b2-26876efe4c74, #wrap-s-2ce52090-8fd4-461d-a2b2-26876efe4c74 { display: none !important; }}







#s-2ce52090-8fd4-461d-a2b2-26876efe4c74 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2ce52090-8fd4-461d-a2b2-26876efe4c74.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-815c7183-924c-41a3-a2d9-00f95517e8bb {
  min-height: 25px;
}
@media (min-width: 1200px){#s-815c7183-924c-41a3-a2d9-00f95517e8bb {
  
}
}@media (min-width: 1200px){#s-815c7183-924c-41a3-a2d9-00f95517e8bb, #wrap-s-815c7183-924c-41a3-a2d9-00f95517e8bb { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-815c7183-924c-41a3-a2d9-00f95517e8bb {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-815c7183-924c-41a3-a2d9-00f95517e8bb, #wrap-s-815c7183-924c-41a3-a2d9-00f95517e8bb { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-815c7183-924c-41a3-a2d9-00f95517e8bb {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-815c7183-924c-41a3-a2d9-00f95517e8bb, #wrap-s-815c7183-924c-41a3-a2d9-00f95517e8bb { display: none !important; }}







#s-815c7183-924c-41a3-a2d9-00f95517e8bb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-815c7183-924c-41a3-a2d9-00f95517e8bb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shogun-image-container {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image.hover {
  opacity: 0;
  z-index: 200;
  position: absolute;
  left: 0;
  top: 0;
}

.shogun-image.hover:hover {
  opacity: 1;
}

#s-cdaf6123-1200-4710-8def-764095522266 {
  text-align: center;
}
@media (min-width: 1200px){#s-cdaf6123-1200-4710-8def-764095522266 {
  
}
}@media (min-width: 1200px){#s-cdaf6123-1200-4710-8def-764095522266, #wrap-s-cdaf6123-1200-4710-8def-764095522266 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-cdaf6123-1200-4710-8def-764095522266 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-cdaf6123-1200-4710-8def-764095522266, #wrap-s-cdaf6123-1200-4710-8def-764095522266 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-cdaf6123-1200-4710-8def-764095522266 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-cdaf6123-1200-4710-8def-764095522266, #wrap-s-cdaf6123-1200-4710-8def-764095522266 { display: none !important; }}@media (max-width: 767px){#s-cdaf6123-1200-4710-8def-764095522266 {
  
}
}@media (max-width: 767px){#s-cdaf6123-1200-4710-8def-764095522266, #wrap-s-cdaf6123-1200-4710-8def-764095522266 { display: none !important; }}






  #s-cdaf6123-1200-4710-8def-764095522266 img.shogun-image {
    

    
    
    
  }


#s-cdaf6123-1200-4710-8def-764095522266 .shogun-image-content {
  
    align-items: center;
  
}

#s-45ca4ca2-2945-44e9-9117-32d29bb78c84 {
  background-color: rgba(240, 168, 202, 1);
}

@media (min-width: 0px) {
[id="s-45ca4ca2-2945-44e9-9117-32d29bb78c84"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-45ca4ca2-2945-44e9-9117-32d29bb78c84"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-45ca4ca2-2945-44e9-9117-32d29bb78c84"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-45ca4ca2-2945-44e9-9117-32d29bb78c84"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-96ee1a1e-c159-4683-951d-276a3e26a664 {
  max-width: 6720px;
aspect-ratio: 6720/4111;
text-align: center;
}





  #s-96ee1a1e-c159-4683-951d-276a3e26a664 img.shogun-image,
  #s-96ee1a1e-c159-4683-951d-276a3e26a664 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-96ee1a1e-c159-4683-951d-276a3e26a664 {
    width: 100%;
    height: auto;
  }

  #s-96ee1a1e-c159-4683-951d-276a3e26a664 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-96ee1a1e-c159-4683-951d-276a3e26a664.shogun-image {
    
    
  }


.s-96ee1a1e-c159-4683-951d-276a3e26a664 .shogun-image-content {
  
    align-items: center;
  
}

.s-96ee1a1e-c159-4683-951d-276a3e26a664.shg-align-container {
  display: flex;
  justify-content: center
}

.s-96ee1a1e-c159-4683-951d-276a3e26a664.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-96ee1a1e-c159-4683-951d-276a3e26a664.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-96ee1a1e-c159-4683-951d-276a3e26a664 img.shogun-image,
  #s-96ee1a1e-c159-4683-951d-276a3e26a664 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-96ee1a1e-c159-4683-951d-276a3e26a664 {
    width: 100%;
    height: auto;
  }

  #s-96ee1a1e-c159-4683-951d-276a3e26a664 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-96ee1a1e-c159-4683-951d-276a3e26a664.shogun-image {
    
    
  }


.s-96ee1a1e-c159-4683-951d-276a3e26a664 .shogun-image-content {
  
    align-items: center;
  
}

.s-96ee1a1e-c159-4683-951d-276a3e26a664.shg-align-container {
  display: flex;
  justify-content: center
}

.s-96ee1a1e-c159-4683-951d-276a3e26a664.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-96ee1a1e-c159-4683-951d-276a3e26a664.shogun-image {
  box-sizing: border-box;
}


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



  #s-96ee1a1e-c159-4683-951d-276a3e26a664 img.shogun-image,
  #s-96ee1a1e-c159-4683-951d-276a3e26a664 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-96ee1a1e-c159-4683-951d-276a3e26a664 {
    width: 100%;
    height: auto;
  }

  #s-96ee1a1e-c159-4683-951d-276a3e26a664 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-96ee1a1e-c159-4683-951d-276a3e26a664.shogun-image {
    
    
  }


.s-96ee1a1e-c159-4683-951d-276a3e26a664 .shogun-image-content {
  
    align-items: center;
  
}

.s-96ee1a1e-c159-4683-951d-276a3e26a664.shg-align-container {
  display: flex;
  justify-content: center
}

.s-96ee1a1e-c159-4683-951d-276a3e26a664.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-96ee1a1e-c159-4683-951d-276a3e26a664.shogun-image {
  box-sizing: border-box;
}


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



  #s-96ee1a1e-c159-4683-951d-276a3e26a664 img.shogun-image,
  #s-96ee1a1e-c159-4683-951d-276a3e26a664 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-96ee1a1e-c159-4683-951d-276a3e26a664 {
    width: 100%;
    height: auto;
  }

  #s-96ee1a1e-c159-4683-951d-276a3e26a664 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-96ee1a1e-c159-4683-951d-276a3e26a664.shogun-image {
    
    
  }


.s-96ee1a1e-c159-4683-951d-276a3e26a664 .shogun-image-content {
  
    align-items: center;
  
}

.s-96ee1a1e-c159-4683-951d-276a3e26a664.shg-align-container {
  display: flex;
  justify-content: center
}

.s-96ee1a1e-c159-4683-951d-276a3e26a664.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-96ee1a1e-c159-4683-951d-276a3e26a664.shogun-image {
  box-sizing: border-box;
}


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



  #s-96ee1a1e-c159-4683-951d-276a3e26a664 img.shogun-image,
  #s-96ee1a1e-c159-4683-951d-276a3e26a664 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-96ee1a1e-c159-4683-951d-276a3e26a664 {
    width: 100%;
    height: auto;
  }

  #s-96ee1a1e-c159-4683-951d-276a3e26a664 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-96ee1a1e-c159-4683-951d-276a3e26a664.shogun-image {
    
    
  }


.s-96ee1a1e-c159-4683-951d-276a3e26a664 .shogun-image-content {
  
    align-items: center;
  
}

.s-96ee1a1e-c159-4683-951d-276a3e26a664.shg-align-container {
  display: flex;
  justify-content: center
}

.s-96ee1a1e-c159-4683-951d-276a3e26a664.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-96ee1a1e-c159-4683-951d-276a3e26a664.shogun-image {
  box-sizing: border-box;
}


}
#s-c06f7dea-65e2-4d01-b087-0229cb5d7b9f {
  max-width: 3000px;
aspect-ratio: 3000/1828;
text-align: center;
}





  #s-c06f7dea-65e2-4d01-b087-0229cb5d7b9f img.shogun-image,
  #s-c06f7dea-65e2-4d01-b087-0229cb5d7b9f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c06f7dea-65e2-4d01-b087-0229cb5d7b9f {
    width: 100%;
    height: auto;
  }



  #s-c06f7dea-65e2-4d01-b087-0229cb5d7b9f img.shogun-image {
    

    
    
    
  }


#s-c06f7dea-65e2-4d01-b087-0229cb5d7b9f .shogun-image-content {
  
    align-items: center;
  
}

#s-51e448c8-04b6-4b4b-a4d4-00299cb615ad {
  max-width: 3000px;
aspect-ratio: 3000/1824;
text-align: center;
}





  #s-51e448c8-04b6-4b4b-a4d4-00299cb615ad img.shogun-image,
  #s-51e448c8-04b6-4b4b-a4d4-00299cb615ad .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-51e448c8-04b6-4b4b-a4d4-00299cb615ad {
    width: 100%;
    height: auto;
  }

  #s-51e448c8-04b6-4b4b-a4d4-00299cb615ad img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-51e448c8-04b6-4b4b-a4d4-00299cb615ad.shogun-image {
    
    
  }


.s-51e448c8-04b6-4b4b-a4d4-00299cb615ad .shogun-image-content {
  
    align-items: center;
  
}

.s-51e448c8-04b6-4b4b-a4d4-00299cb615ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-51e448c8-04b6-4b4b-a4d4-00299cb615ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51e448c8-04b6-4b4b-a4d4-00299cb615ad.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-51e448c8-04b6-4b4b-a4d4-00299cb615ad img.shogun-image,
  #s-51e448c8-04b6-4b4b-a4d4-00299cb615ad .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-51e448c8-04b6-4b4b-a4d4-00299cb615ad {
    width: 100%;
    height: auto;
  }

  #s-51e448c8-04b6-4b4b-a4d4-00299cb615ad img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-51e448c8-04b6-4b4b-a4d4-00299cb615ad.shogun-image {
    
    
  }


.s-51e448c8-04b6-4b4b-a4d4-00299cb615ad .shogun-image-content {
  
    align-items: center;
  
}

.s-51e448c8-04b6-4b4b-a4d4-00299cb615ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-51e448c8-04b6-4b4b-a4d4-00299cb615ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51e448c8-04b6-4b4b-a4d4-00299cb615ad.shogun-image {
  box-sizing: border-box;
}


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



  #s-51e448c8-04b6-4b4b-a4d4-00299cb615ad img.shogun-image,
  #s-51e448c8-04b6-4b4b-a4d4-00299cb615ad .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-51e448c8-04b6-4b4b-a4d4-00299cb615ad {
    width: 100%;
    height: auto;
  }

  #s-51e448c8-04b6-4b4b-a4d4-00299cb615ad img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-51e448c8-04b6-4b4b-a4d4-00299cb615ad.shogun-image {
    
    
  }


.s-51e448c8-04b6-4b4b-a4d4-00299cb615ad .shogun-image-content {
  
    align-items: center;
  
}

.s-51e448c8-04b6-4b4b-a4d4-00299cb615ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-51e448c8-04b6-4b4b-a4d4-00299cb615ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51e448c8-04b6-4b4b-a4d4-00299cb615ad.shogun-image {
  box-sizing: border-box;
}


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



  #s-51e448c8-04b6-4b4b-a4d4-00299cb615ad img.shogun-image,
  #s-51e448c8-04b6-4b4b-a4d4-00299cb615ad .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-51e448c8-04b6-4b4b-a4d4-00299cb615ad {
    width: 100%;
    height: auto;
  }

  #s-51e448c8-04b6-4b4b-a4d4-00299cb615ad img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-51e448c8-04b6-4b4b-a4d4-00299cb615ad.shogun-image {
    
    
  }


.s-51e448c8-04b6-4b4b-a4d4-00299cb615ad .shogun-image-content {
  
    align-items: center;
  
}

.s-51e448c8-04b6-4b4b-a4d4-00299cb615ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-51e448c8-04b6-4b4b-a4d4-00299cb615ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51e448c8-04b6-4b4b-a4d4-00299cb615ad.shogun-image {
  box-sizing: border-box;
}


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



  #s-51e448c8-04b6-4b4b-a4d4-00299cb615ad img.shogun-image,
  #s-51e448c8-04b6-4b4b-a4d4-00299cb615ad .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-51e448c8-04b6-4b4b-a4d4-00299cb615ad {
    width: 100%;
    height: auto;
  }

  #s-51e448c8-04b6-4b4b-a4d4-00299cb615ad img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-51e448c8-04b6-4b4b-a4d4-00299cb615ad.shogun-image {
    
    
  }


.s-51e448c8-04b6-4b4b-a4d4-00299cb615ad .shogun-image-content {
  
    align-items: center;
  
}

.s-51e448c8-04b6-4b4b-a4d4-00299cb615ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-51e448c8-04b6-4b4b-a4d4-00299cb615ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51e448c8-04b6-4b4b-a4d4-00299cb615ad.shogun-image {
  box-sizing: border-box;
}


}
@media (min-width: 0px) {
[id="s-f18d623d-4d2d-4700-a444-e0938c2cef18"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f18d623d-4d2d-4700-a444-e0938c2cef18"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f18d623d-4d2d-4700-a444-e0938c2cef18"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f18d623d-4d2d-4700-a444-e0938c2cef18"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f18d623d-4d2d-4700-a444-e0938c2cef18"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f18d623d-4d2d-4700-a444-e0938c2cef18"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f18d623d-4d2d-4700-a444-e0938c2cef18"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

#s-942041ed-7ba9-44c8-9164-d1e63b48475c {
  min-height: 50px;
background-color: rgba(240, 168, 202, 1);
}
@media (max-width: 767px){#s-942041ed-7ba9-44c8-9164-d1e63b48475c {
  
}
}@media (max-width: 767px){#s-942041ed-7ba9-44c8-9164-d1e63b48475c, #wrap-s-942041ed-7ba9-44c8-9164-d1e63b48475c { display: none !important; }}







#s-942041ed-7ba9-44c8-9164-d1e63b48475c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-942041ed-7ba9-44c8-9164-d1e63b48475c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-621445bc-052a-4291-ae4a-f080ed609c33 {
  min-height: 50px;
}








#s-621445bc-052a-4291-ae4a-f080ed609c33 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-621445bc-052a-4291-ae4a-f080ed609c33.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1d939214-014d-441e-8cc9-797a5b135ed0 {
  margin-left: 16%;
margin-right: 16%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1d939214-014d-441e-8cc9-797a5b135ed0 .shogun-heading-component h3 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}


#s-1d939214-014d-441e-8cc9-797a5b135ed0 .shogun-heading-component h3 a {
  color: ;
}


#s-1c1f8e65-9bea-445f-84e9-1cb8d84bfc2a {
  margin-top: 30px;
margin-bottom: 30px;
padding-top: 0px;
padding-left: 300px;
padding-bottom: 0px;
padding-right: 300px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 992px) and (max-width: 1199px){#s-1c1f8e65-9bea-445f-84e9-1cb8d84bfc2a {
  padding-left: 150px;
padding-right: 150px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-1c1f8e65-9bea-445f-84e9-1cb8d84bfc2a {
  padding-left: 25px;
padding-right: 25px;
}
}@media (max-width: 767px){#s-1c1f8e65-9bea-445f-84e9-1cb8d84bfc2a {
  padding-left: 20px;
padding-right: 20px;
}
}
@media (min-width: 0px) {
[id="s-1c1f8e65-9bea-445f-84e9-1cb8d84bfc2a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1c1f8e65-9bea-445f-84e9-1cb8d84bfc2a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-1c1f8e65-9bea-445f-84e9-1cb8d84bfc2a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-1c1f8e65-9bea-445f-84e9-1cb8d84bfc2a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (max-width: 767px) {
  [id="s-1c1f8e65-9bea-445f-84e9-1cb8d84bfc2a"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-262fc13f-9dd9-4330-b151-31d4f08e68ec {
  background-repeat: no-repeat;
background-size: cover;
margin-left: auto;
margin-right: auto;
min-height: 650px;
max-width: 100%;
background-position: center center;
}
@media (max-width: 767px){#s-262fc13f-9dd9-4330-b151-31d4f08e68ec {
  
}
}







#s-262fc13f-9dd9-4330-b151-31d4f08e68ec > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-262fc13f-9dd9-4330-b151-31d4f08e68ec.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-8a645e35-553e-49e1-a974-07d0f6342946"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-8a645e35-553e-49e1-a974-07d0f6342946"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-8a645e35-553e-49e1-a974-07d0f6342946"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-8a645e35-553e-49e1-a974-07d0f6342946"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-8925d46b-8e27-4382-9666-7874c893d6cc {
  margin-top: 7px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}

#s-23e74779-6579-423f-a5a8-f450e71385fc {
  margin-top: 7px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}

#s-aaa5292f-ec91-4e50-a827-1021c8459fe4 {
  margin-top: 7px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}

#s-2ed31860-d85b-4d9d-80a6-c3096c43020c {
  margin-top: 7px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}

#s-ca45d92a-240d-4952-a2cf-fafa54ac2656 {
  min-height: 25px;
}
@media (min-width: 1200px){#s-ca45d92a-240d-4952-a2cf-fafa54ac2656 {
  
}
}@media (min-width: 1200px){#s-ca45d92a-240d-4952-a2cf-fafa54ac2656, #wrap-s-ca45d92a-240d-4952-a2cf-fafa54ac2656 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ca45d92a-240d-4952-a2cf-fafa54ac2656 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ca45d92a-240d-4952-a2cf-fafa54ac2656, #wrap-s-ca45d92a-240d-4952-a2cf-fafa54ac2656 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ca45d92a-240d-4952-a2cf-fafa54ac2656 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-ca45d92a-240d-4952-a2cf-fafa54ac2656, #wrap-s-ca45d92a-240d-4952-a2cf-fafa54ac2656 { display: none !important; }}@media (max-width: 767px){#s-ca45d92a-240d-4952-a2cf-fafa54ac2656 {
  
}
}@media (max-width: 767px){#s-ca45d92a-240d-4952-a2cf-fafa54ac2656, #wrap-s-ca45d92a-240d-4952-a2cf-fafa54ac2656 { display: none !important; }}







#s-ca45d92a-240d-4952-a2cf-fafa54ac2656 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ca45d92a-240d-4952-a2cf-fafa54ac2656.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f1e6a380-7084-45e9-99ac-7d37228f5cf0 {
  margin-top: 7px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}

#s-2349ab9b-084c-4294-9765-380185a1d201 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-2349ab9b-084c-4294-9765-380185a1d201 {
  
}
}@media (min-width: 1200px){#s-2349ab9b-084c-4294-9765-380185a1d201, #wrap-s-2349ab9b-084c-4294-9765-380185a1d201 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2349ab9b-084c-4294-9765-380185a1d201 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2349ab9b-084c-4294-9765-380185a1d201, #wrap-s-2349ab9b-084c-4294-9765-380185a1d201 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2349ab9b-084c-4294-9765-380185a1d201 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-2349ab9b-084c-4294-9765-380185a1d201, #wrap-s-2349ab9b-084c-4294-9765-380185a1d201 { display: none !important; }}







#s-2349ab9b-084c-4294-9765-380185a1d201 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2349ab9b-084c-4294-9765-380185a1d201.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-45a53555-8a43-4103-8fe3-0f91f79cdaa2 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 30px;
background-color: rgba(20, 20, 20, 1);
text-align: left;
text-decoration: none;
}
#s-45a53555-8a43-4103-8fe3-0f91f79cdaa2:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-45a53555-8a43-4103-8fe3-0f91f79cdaa2:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-45a53555-8a43-4103-8fe3-0f91f79cdaa2-root {
    text-align: left;
  }


#s-45a53555-8a43-4103-8fe3-0f91f79cdaa2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-45a53555-8a43-4103-8fe3-0f91f79cdaa2-root {
    text-align: left;
  }


#s-45a53555-8a43-4103-8fe3-0f91f79cdaa2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-45a53555-8a43-4103-8fe3-0f91f79cdaa2-root {
    text-align: left;
  }


#s-45a53555-8a43-4103-8fe3-0f91f79cdaa2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-45a53555-8a43-4103-8fe3-0f91f79cdaa2-root {
    text-align: left;
  }


#s-45a53555-8a43-4103-8fe3-0f91f79cdaa2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-45a53555-8a43-4103-8fe3-0f91f79cdaa2-root {
    text-align: left;
  }


#s-45a53555-8a43-4103-8fe3-0f91f79cdaa2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-0cea955e-de12-4fb9-bd0b-ab9c3e824a07 {
  min-height: 50px;
}
@media (max-width: 767px){#s-0cea955e-de12-4fb9-bd0b-ab9c3e824a07 {
  
}
}@media (max-width: 767px){#s-0cea955e-de12-4fb9-bd0b-ab9c3e824a07, #wrap-s-0cea955e-de12-4fb9-bd0b-ab9c3e824a07 { display: none !important; }}







#s-0cea955e-de12-4fb9-bd0b-ab9c3e824a07 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0cea955e-de12-4fb9-bd0b-ab9c3e824a07.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1ee95bf4-f4d9-4967-968c-ac0661a01d8b {
  text-align: center;
}
@media (min-width: 1200px){#s-1ee95bf4-f4d9-4967-968c-ac0661a01d8b {
  
}
}@media (min-width: 1200px){#s-1ee95bf4-f4d9-4967-968c-ac0661a01d8b, #wrap-s-1ee95bf4-f4d9-4967-968c-ac0661a01d8b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1ee95bf4-f4d9-4967-968c-ac0661a01d8b {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-1ee95bf4-f4d9-4967-968c-ac0661a01d8b, #wrap-s-1ee95bf4-f4d9-4967-968c-ac0661a01d8b { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1ee95bf4-f4d9-4967-968c-ac0661a01d8b {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-1ee95bf4-f4d9-4967-968c-ac0661a01d8b, #wrap-s-1ee95bf4-f4d9-4967-968c-ac0661a01d8b { display: none !important; }}@media (max-width: 767px){#s-1ee95bf4-f4d9-4967-968c-ac0661a01d8b {
  
}
}@media (max-width: 767px){#s-1ee95bf4-f4d9-4967-968c-ac0661a01d8b, #wrap-s-1ee95bf4-f4d9-4967-968c-ac0661a01d8b { display: none !important; }}






  #s-1ee95bf4-f4d9-4967-968c-ac0661a01d8b img.shogun-image {
    

    
    
    
  }


#s-1ee95bf4-f4d9-4967-968c-ac0661a01d8b .shogun-image-content {
  
    align-items: center;
  
}

#s-864535bc-44ed-4638-bcbc-5e7251613a7f {
  min-height: 50px;
background-color: rgba(163, 183, 158, 1);
}








#s-864535bc-44ed-4638-bcbc-5e7251613a7f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-864535bc-44ed-4638-bcbc-5e7251613a7f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5e8ef193-7100-4d10-87e8-691c52e85281 {
  background-color: rgba(163, 183, 158, 1);
}
@media (min-width: 1200px){#s-5e8ef193-7100-4d10-87e8-691c52e85281 {
  margin-left: 300px;
margin-right: 300px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-5e8ef193-7100-4d10-87e8-691c52e85281 {
  margin-left: 150px;
margin-right: 150px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-5e8ef193-7100-4d10-87e8-691c52e85281 {
  margin-left: 25px;
margin-right: 25px;
}
}@media (max-width: 767px){#s-5e8ef193-7100-4d10-87e8-691c52e85281 {
  margin-left: 20px;
margin-right: 20px;
}
}
@media (min-width: 0px) {
[id="s-5e8ef193-7100-4d10-87e8-691c52e85281"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5e8ef193-7100-4d10-87e8-691c52e85281"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5e8ef193-7100-4d10-87e8-691c52e85281"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5e8ef193-7100-4d10-87e8-691c52e85281"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-5e8ef193-7100-4d10-87e8-691c52e85281"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-e6502c17-424c-44ab-bdce-637c3381d0bc {
  margin-left: 10%;
margin-right: 10%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-e6502c17-424c-44ab-bdce-637c3381d0bc .shogun-heading-component h2 {
  color: rgba(20, 20, 20, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}


#s-e6502c17-424c-44ab-bdce-637c3381d0bc .shogun-heading-component h2 a {
  color: rgba(20, 20, 20, 1);
}


#s-98bec596-5b8c-4d95-816d-dd07d515b8b1 {
  min-height: 25px;
}
@media (max-width: 767px){#s-98bec596-5b8c-4d95-816d-dd07d515b8b1 {
  
}
}







#s-98bec596-5b8c-4d95-816d-dd07d515b8b1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-98bec596-5b8c-4d95-816d-dd07d515b8b1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e4e8d380-f2e5-4823-a042-ca818176ee37 {
  min-height: 50px;
}








#s-e4e8d380-f2e5-4823-a042-ca818176ee37 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e4e8d380-f2e5-4823-a042-ca818176ee37.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-90480dd3-4e0d-4d4d-a736-410c0cf7844d {
  min-height: 50px;
}








#s-90480dd3-4e0d-4d4d-a736-410c0cf7844d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-90480dd3-4e0d-4d4d-a736-410c0cf7844d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 1200px){#s-654fca28-5333-426e-b2b8-a75db0d9bff9 {
  margin-left: 300px;
margin-right: 300px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-654fca28-5333-426e-b2b8-a75db0d9bff9 {
  margin-left: 150px;
margin-right: 150px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-654fca28-5333-426e-b2b8-a75db0d9bff9 {
  margin-left: 25px;
margin-right: 25px;
}
}@media (max-width: 767px){#s-654fca28-5333-426e-b2b8-a75db0d9bff9 {
  margin-left: 20px;
margin-right: 20px;
}
}
@media (min-width: 0px) {
[id="s-654fca28-5333-426e-b2b8-a75db0d9bff9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-654fca28-5333-426e-b2b8-a75db0d9bff9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-654fca28-5333-426e-b2b8-a75db0d9bff9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-654fca28-5333-426e-b2b8-a75db0d9bff9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-62187519-cb21-45f1-85b0-f748e4813471 {
  max-width: 6720px;
aspect-ratio: 6720/4480;
text-align: center;
}





  #s-62187519-cb21-45f1-85b0-f748e4813471 img.shogun-image,
  #s-62187519-cb21-45f1-85b0-f748e4813471 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-62187519-cb21-45f1-85b0-f748e4813471 {
    width: 100%;
    height: auto;
  }



  #s-62187519-cb21-45f1-85b0-f748e4813471 img.shogun-image {
    

    
    
    
  }


#s-62187519-cb21-45f1-85b0-f748e4813471 .shogun-image-content {
  
    align-items: center;
  
}

#s-5d1ecddd-c36c-48a3-882b-6926597f4c73 {
  min-height: 25px;
}
@media (min-width: 1200px){#s-5d1ecddd-c36c-48a3-882b-6926597f4c73 {
  
}
}@media (min-width: 1200px){#s-5d1ecddd-c36c-48a3-882b-6926597f4c73, #wrap-s-5d1ecddd-c36c-48a3-882b-6926597f4c73 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5d1ecddd-c36c-48a3-882b-6926597f4c73 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-5d1ecddd-c36c-48a3-882b-6926597f4c73, #wrap-s-5d1ecddd-c36c-48a3-882b-6926597f4c73 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-5d1ecddd-c36c-48a3-882b-6926597f4c73 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-5d1ecddd-c36c-48a3-882b-6926597f4c73, #wrap-s-5d1ecddd-c36c-48a3-882b-6926597f4c73 { display: none !important; }}







#s-5d1ecddd-c36c-48a3-882b-6926597f4c73 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5d1ecddd-c36c-48a3-882b-6926597f4c73.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-89f138f6-0e98-45ab-aa01-df372df37aa2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-89f138f6-0e98-45ab-aa01-df372df37aa2 .shogun-heading-component h2 {
  color: rgba(20, 20, 20, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



#s-e13e3cbb-d0d3-4525-92e4-ba8f67bbc6eb {
  min-height: 25px;
}
@media (max-width: 767px){#s-e13e3cbb-d0d3-4525-92e4-ba8f67bbc6eb {
  
}
}







#s-e13e3cbb-d0d3-4525-92e4-ba8f67bbc6eb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e13e3cbb-d0d3-4525-92e4-ba8f67bbc6eb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-96191d97-0914-468a-b641-fb49ae817e87 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 30px;
background-color: rgba(20, 20, 20, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-96191d97-0914-468a-b641-fb49ae817e87:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-96191d97-0914-468a-b641-fb49ae817e87:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-96191d97-0914-468a-b641-fb49ae817e87-root {
    text-align: left;
  }


#s-96191d97-0914-468a-b641-fb49ae817e87.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-96191d97-0914-468a-b641-fb49ae817e87-root {
    text-align: left;
  }


#s-96191d97-0914-468a-b641-fb49ae817e87.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-96191d97-0914-468a-b641-fb49ae817e87-root {
    text-align: left;
  }


#s-96191d97-0914-468a-b641-fb49ae817e87.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-96191d97-0914-468a-b641-fb49ae817e87-root {
    text-align: left;
  }


#s-96191d97-0914-468a-b641-fb49ae817e87.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-96191d97-0914-468a-b641-fb49ae817e87-root {
    text-align: left;
  }


#s-96191d97-0914-468a-b641-fb49ae817e87.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-bd2cee7e-04aa-4901-a0f4-dab2392613c0 {
  min-height: 25px;
}
@media (min-width: 1200px){#s-bd2cee7e-04aa-4901-a0f4-dab2392613c0 {
  
}
}@media (min-width: 1200px){#s-bd2cee7e-04aa-4901-a0f4-dab2392613c0, #wrap-s-bd2cee7e-04aa-4901-a0f4-dab2392613c0 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-bd2cee7e-04aa-4901-a0f4-dab2392613c0 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-bd2cee7e-04aa-4901-a0f4-dab2392613c0, #wrap-s-bd2cee7e-04aa-4901-a0f4-dab2392613c0 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-bd2cee7e-04aa-4901-a0f4-dab2392613c0 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-bd2cee7e-04aa-4901-a0f4-dab2392613c0, #wrap-s-bd2cee7e-04aa-4901-a0f4-dab2392613c0 { display: none !important; }}@media (max-width: 767px){#s-bd2cee7e-04aa-4901-a0f4-dab2392613c0 {
  
}
}@media (max-width: 767px){#s-bd2cee7e-04aa-4901-a0f4-dab2392613c0, #wrap-s-bd2cee7e-04aa-4901-a0f4-dab2392613c0 { display: none !important; }}







#s-bd2cee7e-04aa-4901-a0f4-dab2392613c0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bd2cee7e-04aa-4901-a0f4-dab2392613c0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9cc26efb-a755-42eb-ba71-5ba175fc588d {
  text-align: center;
}
@media (min-width: 1200px){#s-9cc26efb-a755-42eb-ba71-5ba175fc588d {
  
}
}@media (min-width: 1200px){#s-9cc26efb-a755-42eb-ba71-5ba175fc588d, #wrap-s-9cc26efb-a755-42eb-ba71-5ba175fc588d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9cc26efb-a755-42eb-ba71-5ba175fc588d {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-9cc26efb-a755-42eb-ba71-5ba175fc588d, #wrap-s-9cc26efb-a755-42eb-ba71-5ba175fc588d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-9cc26efb-a755-42eb-ba71-5ba175fc588d {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-9cc26efb-a755-42eb-ba71-5ba175fc588d, #wrap-s-9cc26efb-a755-42eb-ba71-5ba175fc588d { display: none !important; }}@media (max-width: 767px){#s-9cc26efb-a755-42eb-ba71-5ba175fc588d {
  
}
}@media (max-width: 767px){#s-9cc26efb-a755-42eb-ba71-5ba175fc588d, #wrap-s-9cc26efb-a755-42eb-ba71-5ba175fc588d { display: none !important; }}






  #s-9cc26efb-a755-42eb-ba71-5ba175fc588d img.shogun-image {
    

    
    
    
  }


#s-9cc26efb-a755-42eb-ba71-5ba175fc588d .shogun-image-content {
  
    align-items: center;
  
}

#s-0e0e2774-5a4a-4a45-9bfa-66ad1a418c29 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-0e0e2774-5a4a-4a45-9bfa-66ad1a418c29 {
  
}
}







#s-0e0e2774-5a4a-4a45-9bfa-66ad1a418c29 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0e0e2774-5a4a-4a45-9bfa-66ad1a418c29.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-de77f961-22a9-4399-b22c-9d7e6e54ef55 {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-de77f961-22a9-4399-b22c-9d7e6e54ef55"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-de77f961-22a9-4399-b22c-9d7e6e54ef55"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-de77f961-22a9-4399-b22c-9d7e6e54ef55"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-de77f961-22a9-4399-b22c-9d7e6e54ef55"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-3988ecdd-7781-48ee-92f4-231625e1c064 {
  max-width: 1200px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-3988ecdd-7781-48ee-92f4-231625e1c064 img.shogun-image,
  #s-3988ecdd-7781-48ee-92f4-231625e1c064 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3988ecdd-7781-48ee-92f4-231625e1c064 {
    width: 100%;
    height: auto;
  }

  #s-3988ecdd-7781-48ee-92f4-231625e1c064 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3988ecdd-7781-48ee-92f4-231625e1c064.shogun-image {
    
    
  }


.s-3988ecdd-7781-48ee-92f4-231625e1c064 .shogun-image-content {
  
    align-items: center;
  
}

.s-3988ecdd-7781-48ee-92f4-231625e1c064.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3988ecdd-7781-48ee-92f4-231625e1c064.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3988ecdd-7781-48ee-92f4-231625e1c064.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-3988ecdd-7781-48ee-92f4-231625e1c064 img.shogun-image,
  #s-3988ecdd-7781-48ee-92f4-231625e1c064 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3988ecdd-7781-48ee-92f4-231625e1c064 {
    width: 100%;
    height: auto;
  }

  #s-3988ecdd-7781-48ee-92f4-231625e1c064 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3988ecdd-7781-48ee-92f4-231625e1c064.shogun-image {
    
    
  }


.s-3988ecdd-7781-48ee-92f4-231625e1c064 .shogun-image-content {
  
    align-items: center;
  
}

.s-3988ecdd-7781-48ee-92f4-231625e1c064.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3988ecdd-7781-48ee-92f4-231625e1c064.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3988ecdd-7781-48ee-92f4-231625e1c064.shogun-image {
  box-sizing: border-box;
}


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



  #s-3988ecdd-7781-48ee-92f4-231625e1c064 img.shogun-image,
  #s-3988ecdd-7781-48ee-92f4-231625e1c064 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3988ecdd-7781-48ee-92f4-231625e1c064 {
    width: 100%;
    height: auto;
  }

  #s-3988ecdd-7781-48ee-92f4-231625e1c064 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3988ecdd-7781-48ee-92f4-231625e1c064.shogun-image {
    
    
  }


.s-3988ecdd-7781-48ee-92f4-231625e1c064 .shogun-image-content {
  
    align-items: center;
  
}

.s-3988ecdd-7781-48ee-92f4-231625e1c064.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3988ecdd-7781-48ee-92f4-231625e1c064.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3988ecdd-7781-48ee-92f4-231625e1c064.shogun-image {
  box-sizing: border-box;
}


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



  #s-3988ecdd-7781-48ee-92f4-231625e1c064 img.shogun-image,
  #s-3988ecdd-7781-48ee-92f4-231625e1c064 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3988ecdd-7781-48ee-92f4-231625e1c064 {
    width: 100%;
    height: auto;
  }

  #s-3988ecdd-7781-48ee-92f4-231625e1c064 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3988ecdd-7781-48ee-92f4-231625e1c064.shogun-image {
    
    
  }


.s-3988ecdd-7781-48ee-92f4-231625e1c064 .shogun-image-content {
  
    align-items: center;
  
}

.s-3988ecdd-7781-48ee-92f4-231625e1c064.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3988ecdd-7781-48ee-92f4-231625e1c064.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3988ecdd-7781-48ee-92f4-231625e1c064.shogun-image {
  box-sizing: border-box;
}


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



  #s-3988ecdd-7781-48ee-92f4-231625e1c064 img.shogun-image,
  #s-3988ecdd-7781-48ee-92f4-231625e1c064 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3988ecdd-7781-48ee-92f4-231625e1c064 {
    width: 100%;
    height: auto;
  }

  #s-3988ecdd-7781-48ee-92f4-231625e1c064 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3988ecdd-7781-48ee-92f4-231625e1c064.shogun-image {
    
    
  }


.s-3988ecdd-7781-48ee-92f4-231625e1c064 .shogun-image-content {
  
    align-items: center;
  
}

.s-3988ecdd-7781-48ee-92f4-231625e1c064.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3988ecdd-7781-48ee-92f4-231625e1c064.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3988ecdd-7781-48ee-92f4-231625e1c064.shogun-image {
  box-sizing: border-box;
}


}
#s-204b7fac-3252-4c4a-b2d3-1b140682942b {
  max-width: 1200px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-204b7fac-3252-4c4a-b2d3-1b140682942b img.shogun-image,
  #s-204b7fac-3252-4c4a-b2d3-1b140682942b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-204b7fac-3252-4c4a-b2d3-1b140682942b {
    width: 100%;
    height: auto;
  }

  #s-204b7fac-3252-4c4a-b2d3-1b140682942b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-204b7fac-3252-4c4a-b2d3-1b140682942b.shogun-image {
    
    
  }


.s-204b7fac-3252-4c4a-b2d3-1b140682942b .shogun-image-content {
  
    align-items: center;
  
}

.s-204b7fac-3252-4c4a-b2d3-1b140682942b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-204b7fac-3252-4c4a-b2d3-1b140682942b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-204b7fac-3252-4c4a-b2d3-1b140682942b.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-204b7fac-3252-4c4a-b2d3-1b140682942b img.shogun-image,
  #s-204b7fac-3252-4c4a-b2d3-1b140682942b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-204b7fac-3252-4c4a-b2d3-1b140682942b {
    width: 100%;
    height: auto;
  }

  #s-204b7fac-3252-4c4a-b2d3-1b140682942b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-204b7fac-3252-4c4a-b2d3-1b140682942b.shogun-image {
    
    
  }


.s-204b7fac-3252-4c4a-b2d3-1b140682942b .shogun-image-content {
  
    align-items: center;
  
}

.s-204b7fac-3252-4c4a-b2d3-1b140682942b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-204b7fac-3252-4c4a-b2d3-1b140682942b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-204b7fac-3252-4c4a-b2d3-1b140682942b.shogun-image {
  box-sizing: border-box;
}


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



  #s-204b7fac-3252-4c4a-b2d3-1b140682942b img.shogun-image,
  #s-204b7fac-3252-4c4a-b2d3-1b140682942b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-204b7fac-3252-4c4a-b2d3-1b140682942b {
    width: 100%;
    height: auto;
  }

  #s-204b7fac-3252-4c4a-b2d3-1b140682942b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-204b7fac-3252-4c4a-b2d3-1b140682942b.shogun-image {
    
    
  }


.s-204b7fac-3252-4c4a-b2d3-1b140682942b .shogun-image-content {
  
    align-items: center;
  
}

.s-204b7fac-3252-4c4a-b2d3-1b140682942b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-204b7fac-3252-4c4a-b2d3-1b140682942b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-204b7fac-3252-4c4a-b2d3-1b140682942b.shogun-image {
  box-sizing: border-box;
}


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



  #s-204b7fac-3252-4c4a-b2d3-1b140682942b img.shogun-image,
  #s-204b7fac-3252-4c4a-b2d3-1b140682942b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-204b7fac-3252-4c4a-b2d3-1b140682942b {
    width: 100%;
    height: auto;
  }

  #s-204b7fac-3252-4c4a-b2d3-1b140682942b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-204b7fac-3252-4c4a-b2d3-1b140682942b.shogun-image {
    
    
  }


.s-204b7fac-3252-4c4a-b2d3-1b140682942b .shogun-image-content {
  
    align-items: center;
  
}

.s-204b7fac-3252-4c4a-b2d3-1b140682942b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-204b7fac-3252-4c4a-b2d3-1b140682942b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-204b7fac-3252-4c4a-b2d3-1b140682942b.shogun-image {
  box-sizing: border-box;
}


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



  #s-204b7fac-3252-4c4a-b2d3-1b140682942b img.shogun-image,
  #s-204b7fac-3252-4c4a-b2d3-1b140682942b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-204b7fac-3252-4c4a-b2d3-1b140682942b {
    width: 100%;
    height: auto;
  }

  #s-204b7fac-3252-4c4a-b2d3-1b140682942b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-204b7fac-3252-4c4a-b2d3-1b140682942b.shogun-image {
    
    
  }


.s-204b7fac-3252-4c4a-b2d3-1b140682942b .shogun-image-content {
  
    align-items: center;
  
}

.s-204b7fac-3252-4c4a-b2d3-1b140682942b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-204b7fac-3252-4c4a-b2d3-1b140682942b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-204b7fac-3252-4c4a-b2d3-1b140682942b.shogun-image {
  box-sizing: border-box;
}


}
#s-89cf0d36-7ccd-4d9b-8208-a565fca17262 {
  max-width: 1200px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-89cf0d36-7ccd-4d9b-8208-a565fca17262 img.shogun-image,
  #s-89cf0d36-7ccd-4d9b-8208-a565fca17262 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-89cf0d36-7ccd-4d9b-8208-a565fca17262 {
    width: 100%;
    height: auto;
  }

  #s-89cf0d36-7ccd-4d9b-8208-a565fca17262 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-89cf0d36-7ccd-4d9b-8208-a565fca17262.shogun-image {
    
    
  }


.s-89cf0d36-7ccd-4d9b-8208-a565fca17262 .shogun-image-content {
  
    align-items: center;
  
}

.s-89cf0d36-7ccd-4d9b-8208-a565fca17262.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89cf0d36-7ccd-4d9b-8208-a565fca17262.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89cf0d36-7ccd-4d9b-8208-a565fca17262.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-89cf0d36-7ccd-4d9b-8208-a565fca17262 img.shogun-image,
  #s-89cf0d36-7ccd-4d9b-8208-a565fca17262 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-89cf0d36-7ccd-4d9b-8208-a565fca17262 {
    width: 100%;
    height: auto;
  }

  #s-89cf0d36-7ccd-4d9b-8208-a565fca17262 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-89cf0d36-7ccd-4d9b-8208-a565fca17262.shogun-image {
    
    
  }


.s-89cf0d36-7ccd-4d9b-8208-a565fca17262 .shogun-image-content {
  
    align-items: center;
  
}

.s-89cf0d36-7ccd-4d9b-8208-a565fca17262.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89cf0d36-7ccd-4d9b-8208-a565fca17262.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89cf0d36-7ccd-4d9b-8208-a565fca17262.shogun-image {
  box-sizing: border-box;
}


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



  #s-89cf0d36-7ccd-4d9b-8208-a565fca17262 img.shogun-image,
  #s-89cf0d36-7ccd-4d9b-8208-a565fca17262 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-89cf0d36-7ccd-4d9b-8208-a565fca17262 {
    width: 100%;
    height: auto;
  }

  #s-89cf0d36-7ccd-4d9b-8208-a565fca17262 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-89cf0d36-7ccd-4d9b-8208-a565fca17262.shogun-image {
    
    
  }


.s-89cf0d36-7ccd-4d9b-8208-a565fca17262 .shogun-image-content {
  
    align-items: center;
  
}

.s-89cf0d36-7ccd-4d9b-8208-a565fca17262.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89cf0d36-7ccd-4d9b-8208-a565fca17262.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89cf0d36-7ccd-4d9b-8208-a565fca17262.shogun-image {
  box-sizing: border-box;
}


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



  #s-89cf0d36-7ccd-4d9b-8208-a565fca17262 img.shogun-image,
  #s-89cf0d36-7ccd-4d9b-8208-a565fca17262 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-89cf0d36-7ccd-4d9b-8208-a565fca17262 {
    width: 100%;
    height: auto;
  }

  #s-89cf0d36-7ccd-4d9b-8208-a565fca17262 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-89cf0d36-7ccd-4d9b-8208-a565fca17262.shogun-image {
    
    
  }


.s-89cf0d36-7ccd-4d9b-8208-a565fca17262 .shogun-image-content {
  
    align-items: center;
  
}

.s-89cf0d36-7ccd-4d9b-8208-a565fca17262.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89cf0d36-7ccd-4d9b-8208-a565fca17262.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89cf0d36-7ccd-4d9b-8208-a565fca17262.shogun-image {
  box-sizing: border-box;
}


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



  #s-89cf0d36-7ccd-4d9b-8208-a565fca17262 img.shogun-image,
  #s-89cf0d36-7ccd-4d9b-8208-a565fca17262 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-89cf0d36-7ccd-4d9b-8208-a565fca17262 {
    width: 100%;
    height: auto;
  }

  #s-89cf0d36-7ccd-4d9b-8208-a565fca17262 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-89cf0d36-7ccd-4d9b-8208-a565fca17262.shogun-image {
    
    
  }


.s-89cf0d36-7ccd-4d9b-8208-a565fca17262 .shogun-image-content {
  
    align-items: center;
  
}

.s-89cf0d36-7ccd-4d9b-8208-a565fca17262.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89cf0d36-7ccd-4d9b-8208-a565fca17262.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89cf0d36-7ccd-4d9b-8208-a565fca17262.shogun-image {
  box-sizing: border-box;
}


}
#s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e {
  max-width: 1200px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e img.shogun-image,
  #s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e {
    width: 100%;
    height: auto;
  }

  #s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e.shogun-image {
    
    
  }


.s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e .shogun-image-content {
  
    align-items: center;
  
}

.s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e img.shogun-image,
  #s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e {
    width: 100%;
    height: auto;
  }

  #s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e.shogun-image {
    
    
  }


.s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e .shogun-image-content {
  
    align-items: center;
  
}

.s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e.shogun-image {
  box-sizing: border-box;
}


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



  #s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e img.shogun-image,
  #s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e {
    width: 100%;
    height: auto;
  }

  #s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e.shogun-image {
    
    
  }


.s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e .shogun-image-content {
  
    align-items: center;
  
}

.s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e.shogun-image {
  box-sizing: border-box;
}


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



  #s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e img.shogun-image,
  #s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e {
    width: 100%;
    height: auto;
  }

  #s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e.shogun-image {
    
    
  }


.s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e .shogun-image-content {
  
    align-items: center;
  
}

.s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e.shogun-image {
  box-sizing: border-box;
}


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



  #s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e img.shogun-image,
  #s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e {
    width: 100%;
    height: auto;
  }

  #s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e.shogun-image {
    
    
  }


.s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e .shogun-image-content {
  
    align-items: center;
  
}

.s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7bb9ea79-22ee-429c-b6ea-7c51a2f60b2e.shogun-image {
  box-sizing: border-box;
}


}
#s-31529d5e-6a5f-4bcd-b394-8e16b79fef15 {
  min-height: 25px;
}
@media (max-width: 767px){#s-31529d5e-6a5f-4bcd-b394-8e16b79fef15 {
  
}
}@media (max-width: 767px){#s-31529d5e-6a5f-4bcd-b394-8e16b79fef15, #wrap-s-31529d5e-6a5f-4bcd-b394-8e16b79fef15 { display: none !important; }}







#s-31529d5e-6a5f-4bcd-b394-8e16b79fef15 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-31529d5e-6a5f-4bcd-b394-8e16b79fef15.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-eb68cbd9-f198-4b1d-acda-5a781805cd25 {
  min-height: 50px;
}








#s-eb68cbd9-f198-4b1d-acda-5a781805cd25 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-eb68cbd9-f198-4b1d-acda-5a781805cd25.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bc2dc9fa-4304-4e22-b962-012c373f70a2 {
  text-align: center;
}
@media (min-width: 1200px){#s-bc2dc9fa-4304-4e22-b962-012c373f70a2 {
  
}
}@media (min-width: 1200px){#s-bc2dc9fa-4304-4e22-b962-012c373f70a2, #wrap-s-bc2dc9fa-4304-4e22-b962-012c373f70a2 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-bc2dc9fa-4304-4e22-b962-012c373f70a2 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-bc2dc9fa-4304-4e22-b962-012c373f70a2, #wrap-s-bc2dc9fa-4304-4e22-b962-012c373f70a2 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-bc2dc9fa-4304-4e22-b962-012c373f70a2 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-bc2dc9fa-4304-4e22-b962-012c373f70a2, #wrap-s-bc2dc9fa-4304-4e22-b962-012c373f70a2 { display: none !important; }}@media (max-width: 767px){#s-bc2dc9fa-4304-4e22-b962-012c373f70a2 {
  
}
}@media (max-width: 767px){#s-bc2dc9fa-4304-4e22-b962-012c373f70a2, #wrap-s-bc2dc9fa-4304-4e22-b962-012c373f70a2 { display: none !important; }}






  #s-bc2dc9fa-4304-4e22-b962-012c373f70a2 img.shogun-image {
    

    
    
    
  }


#s-bc2dc9fa-4304-4e22-b962-012c373f70a2 .shogun-image-content {
  
    align-items: center;
  
}

#s-59505b59-b411-4276-8332-6c8fa875f01f {
  margin-left: 0%;
margin-right: 0%;
background-color: rgba(222, 189, 212, 1);
}

@media (min-width: 0px) {
[id="s-59505b59-b411-4276-8332-6c8fa875f01f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-59505b59-b411-4276-8332-6c8fa875f01f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-59505b59-b411-4276-8332-6c8fa875f01f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-59505b59-b411-4276-8332-6c8fa875f01f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-ba77d80b-0ef9-443b-84d7-e90a693e3623 {
  margin-left: 10%;
margin-right: 10%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-ba77d80b-0ef9-443b-84d7-e90a693e3623 .shogun-heading-component h2 {
  color: rgba(20, 20, 20, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



#s-18c56eb3-eec3-40be-9d49-02163e8baeb8 {
  margin-top: 0px;
margin-bottom: 0px;
min-height: 25px;
background-color: rgba(222, 189, 212, 1);
}
@media (max-width: 767px){#s-18c56eb3-eec3-40be-9d49-02163e8baeb8 {
  
}
}







#s-18c56eb3-eec3-40be-9d49-02163e8baeb8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-18c56eb3-eec3-40be-9d49-02163e8baeb8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 1200px){#s-bde0ce97-ba54-4234-8fef-54c568a1aa00 {
  margin-left: 300px;
margin-right: 300px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-bde0ce97-ba54-4234-8fef-54c568a1aa00 {
  margin-left: 150px;
margin-right: 150px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-bde0ce97-ba54-4234-8fef-54c568a1aa00 {
  margin-left: 25px;
margin-right: 25px;
}
}@media (max-width: 767px){#s-bde0ce97-ba54-4234-8fef-54c568a1aa00 {
  margin-left: 20px;
margin-right: 20px;
}
}
@media (min-width: 0px) {
[id="s-bde0ce97-ba54-4234-8fef-54c568a1aa00"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bde0ce97-ba54-4234-8fef-54c568a1aa00"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-bde0ce97-ba54-4234-8fef-54c568a1aa00"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-bde0ce97-ba54-4234-8fef-54c568a1aa00"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-5db20f20-b513-46de-9a33-e61bfd863699 {
  max-width: 2284px;
aspect-ratio: 2284/2518;
text-align: center;
}





  #s-5db20f20-b513-46de-9a33-e61bfd863699 img.shogun-image,
  #s-5db20f20-b513-46de-9a33-e61bfd863699 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5db20f20-b513-46de-9a33-e61bfd863699 {
    width: 100%;
    height: auto;
  }

  #s-5db20f20-b513-46de-9a33-e61bfd863699 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5db20f20-b513-46de-9a33-e61bfd863699.shogun-image {
    
    
  }


.s-5db20f20-b513-46de-9a33-e61bfd863699 .shogun-image-content {
  
    align-items: center;
  
}

.s-5db20f20-b513-46de-9a33-e61bfd863699.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5db20f20-b513-46de-9a33-e61bfd863699.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5db20f20-b513-46de-9a33-e61bfd863699.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-5db20f20-b513-46de-9a33-e61bfd863699 img.shogun-image,
  #s-5db20f20-b513-46de-9a33-e61bfd863699 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5db20f20-b513-46de-9a33-e61bfd863699 {
    width: 100%;
    height: auto;
  }

  #s-5db20f20-b513-46de-9a33-e61bfd863699 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5db20f20-b513-46de-9a33-e61bfd863699.shogun-image {
    
    
  }


.s-5db20f20-b513-46de-9a33-e61bfd863699 .shogun-image-content {
  
    align-items: center;
  
}

.s-5db20f20-b513-46de-9a33-e61bfd863699.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5db20f20-b513-46de-9a33-e61bfd863699.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5db20f20-b513-46de-9a33-e61bfd863699.shogun-image {
  box-sizing: border-box;
}


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



  #s-5db20f20-b513-46de-9a33-e61bfd863699 img.shogun-image,
  #s-5db20f20-b513-46de-9a33-e61bfd863699 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5db20f20-b513-46de-9a33-e61bfd863699 {
    width: 100%;
    height: auto;
  }

  #s-5db20f20-b513-46de-9a33-e61bfd863699 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5db20f20-b513-46de-9a33-e61bfd863699.shogun-image {
    
    
  }


.s-5db20f20-b513-46de-9a33-e61bfd863699 .shogun-image-content {
  
    align-items: center;
  
}

.s-5db20f20-b513-46de-9a33-e61bfd863699.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5db20f20-b513-46de-9a33-e61bfd863699.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5db20f20-b513-46de-9a33-e61bfd863699.shogun-image {
  box-sizing: border-box;
}


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



  #s-5db20f20-b513-46de-9a33-e61bfd863699 img.shogun-image,
  #s-5db20f20-b513-46de-9a33-e61bfd863699 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5db20f20-b513-46de-9a33-e61bfd863699 {
    width: 100%;
    height: auto;
  }

  #s-5db20f20-b513-46de-9a33-e61bfd863699 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5db20f20-b513-46de-9a33-e61bfd863699.shogun-image {
    
    
  }


.s-5db20f20-b513-46de-9a33-e61bfd863699 .shogun-image-content {
  
    align-items: center;
  
}

.s-5db20f20-b513-46de-9a33-e61bfd863699.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5db20f20-b513-46de-9a33-e61bfd863699.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5db20f20-b513-46de-9a33-e61bfd863699.shogun-image {
  box-sizing: border-box;
}


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



  #s-5db20f20-b513-46de-9a33-e61bfd863699 img.shogun-image,
  #s-5db20f20-b513-46de-9a33-e61bfd863699 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5db20f20-b513-46de-9a33-e61bfd863699 {
    width: 100%;
    height: auto;
  }

  #s-5db20f20-b513-46de-9a33-e61bfd863699 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5db20f20-b513-46de-9a33-e61bfd863699.shogun-image {
    
    
  }


.s-5db20f20-b513-46de-9a33-e61bfd863699 .shogun-image-content {
  
    align-items: center;
  
}

.s-5db20f20-b513-46de-9a33-e61bfd863699.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5db20f20-b513-46de-9a33-e61bfd863699.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5db20f20-b513-46de-9a33-e61bfd863699.shogun-image {
  box-sizing: border-box;
}


}
#s-23b5b178-64cd-4589-b1d9-fc6f85128935 {
  min-height: 25px;
}
@media (min-width: 1200px){#s-23b5b178-64cd-4589-b1d9-fc6f85128935 {
  
}
}@media (min-width: 1200px){#s-23b5b178-64cd-4589-b1d9-fc6f85128935, #wrap-s-23b5b178-64cd-4589-b1d9-fc6f85128935 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-23b5b178-64cd-4589-b1d9-fc6f85128935 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-23b5b178-64cd-4589-b1d9-fc6f85128935, #wrap-s-23b5b178-64cd-4589-b1d9-fc6f85128935 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-23b5b178-64cd-4589-b1d9-fc6f85128935 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-23b5b178-64cd-4589-b1d9-fc6f85128935, #wrap-s-23b5b178-64cd-4589-b1d9-fc6f85128935 { display: none !important; }}







#s-23b5b178-64cd-4589-b1d9-fc6f85128935 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-23b5b178-64cd-4589-b1d9-fc6f85128935.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fd02f6c8-4d7f-413b-bf50-b820a7c8c1f6 {
  min-height: 25px;
}
@media (max-width: 767px){#s-fd02f6c8-4d7f-413b-bf50-b820a7c8c1f6 {
  
}
}







#s-fd02f6c8-4d7f-413b-bf50-b820a7c8c1f6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fd02f6c8-4d7f-413b-bf50-b820a7c8c1f6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-57d86dfb-3c1a-4352-8838-ff14cdf933cb {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 30px;
background-color: rgba(20, 20, 20, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-57d86dfb-3c1a-4352-8838-ff14cdf933cb:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-57d86dfb-3c1a-4352-8838-ff14cdf933cb:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-57d86dfb-3c1a-4352-8838-ff14cdf933cb-root {
    text-align: left;
  }


#s-57d86dfb-3c1a-4352-8838-ff14cdf933cb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-57d86dfb-3c1a-4352-8838-ff14cdf933cb-root {
    text-align: left;
  }


#s-57d86dfb-3c1a-4352-8838-ff14cdf933cb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-57d86dfb-3c1a-4352-8838-ff14cdf933cb-root {
    text-align: left;
  }


#s-57d86dfb-3c1a-4352-8838-ff14cdf933cb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-57d86dfb-3c1a-4352-8838-ff14cdf933cb-root {
    text-align: left;
  }


#s-57d86dfb-3c1a-4352-8838-ff14cdf933cb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-57d86dfb-3c1a-4352-8838-ff14cdf933cb-root {
    text-align: left;
  }


#s-57d86dfb-3c1a-4352-8838-ff14cdf933cb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-4b5f514b-bcc7-473f-8631-5be47c8ef786 {
  min-height: 25px;
}
@media (max-width: 767px){#s-4b5f514b-bcc7-473f-8631-5be47c8ef786 {
  
}
}







#s-4b5f514b-bcc7-473f-8631-5be47c8ef786 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4b5f514b-bcc7-473f-8631-5be47c8ef786.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-de463d7f-9efb-49a4-bbae-b533151ff32f {
  min-height: 50px;
}








#s-de463d7f-9efb-49a4-bbae-b533151ff32f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-de463d7f-9efb-49a4-bbae-b533151ff32f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-745fcdc8-06c2-4057-81d3-c3c27ac4d6ae {
  margin-left: 20%;
margin-right: 20%;
}

@media (min-width: 0px) {
[id="s-745fcdc8-06c2-4057-81d3-c3c27ac4d6ae"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-745fcdc8-06c2-4057-81d3-c3c27ac4d6ae"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-745fcdc8-06c2-4057-81d3-c3c27ac4d6ae"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-745fcdc8-06c2-4057-81d3-c3c27ac4d6ae"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-db10bb0d-356c-4e56-b4cc-2428df0dced7 {
  max-width: 2400px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-db10bb0d-356c-4e56-b4cc-2428df0dced7 img.shogun-image,
  #s-db10bb0d-356c-4e56-b4cc-2428df0dced7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-db10bb0d-356c-4e56-b4cc-2428df0dced7 {
    width: 100%;
    height: auto;
  }



  #s-db10bb0d-356c-4e56-b4cc-2428df0dced7 img.shogun-image {
    

    
    
    
  }


#s-db10bb0d-356c-4e56-b4cc-2428df0dced7 .shogun-image-content {
  
    align-items: center;
  
}

#s-f7b18928-7536-41ca-b015-64ba8ab685c2 {
  margin-top: 7px;
margin-left: 0px;
margin-right: 0px;
}

#s-04526299-f6cf-45be-a901-cf3258584378 {
  min-height: 25px;
}
@media (min-width: 1200px){#s-04526299-f6cf-45be-a901-cf3258584378 {
  
}
}@media (min-width: 1200px){#s-04526299-f6cf-45be-a901-cf3258584378, #wrap-s-04526299-f6cf-45be-a901-cf3258584378 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-04526299-f6cf-45be-a901-cf3258584378 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-04526299-f6cf-45be-a901-cf3258584378, #wrap-s-04526299-f6cf-45be-a901-cf3258584378 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-04526299-f6cf-45be-a901-cf3258584378 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-04526299-f6cf-45be-a901-cf3258584378, #wrap-s-04526299-f6cf-45be-a901-cf3258584378 { display: none !important; }}







#s-04526299-f6cf-45be-a901-cf3258584378 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-04526299-f6cf-45be-a901-cf3258584378.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f4e7afac-8bfb-46b7-af5b-b7b95e630799 {
  max-width: 2400px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-f4e7afac-8bfb-46b7-af5b-b7b95e630799 img.shogun-image,
  #s-f4e7afac-8bfb-46b7-af5b-b7b95e630799 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f4e7afac-8bfb-46b7-af5b-b7b95e630799 {
    width: 100%;
    height: auto;
  }



  #s-f4e7afac-8bfb-46b7-af5b-b7b95e630799 img.shogun-image {
    

    
    
    
  }


#s-f4e7afac-8bfb-46b7-af5b-b7b95e630799 .shogun-image-content {
  
    align-items: center;
  
}

#s-b0f07975-4355-479f-a114-b91ada8e4388 {
  min-height: 25px;
}
@media (max-width: 767px){#s-b0f07975-4355-479f-a114-b91ada8e4388 {
  
}
}@media (max-width: 767px){#s-b0f07975-4355-479f-a114-b91ada8e4388, #wrap-s-b0f07975-4355-479f-a114-b91ada8e4388 { display: none !important; }}







#s-b0f07975-4355-479f-a114-b91ada8e4388 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b0f07975-4355-479f-a114-b91ada8e4388.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bd23088a-7771-4546-805a-6fdbfc0bf249 {
  min-height: 25px;
}
@media (max-width: 767px){#s-bd23088a-7771-4546-805a-6fdbfc0bf249 {
  
}
}







#s-bd23088a-7771-4546-805a-6fdbfc0bf249 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bd23088a-7771-4546-805a-6fdbfc0bf249.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-62faef46-a917-4d4c-8961-fd25a39fa840 {
  text-align: center;
}
@media (min-width: 1200px){#s-62faef46-a917-4d4c-8961-fd25a39fa840 {
  
}
}@media (min-width: 1200px){#s-62faef46-a917-4d4c-8961-fd25a39fa840, #wrap-s-62faef46-a917-4d4c-8961-fd25a39fa840 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-62faef46-a917-4d4c-8961-fd25a39fa840 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-62faef46-a917-4d4c-8961-fd25a39fa840, #wrap-s-62faef46-a917-4d4c-8961-fd25a39fa840 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-62faef46-a917-4d4c-8961-fd25a39fa840 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-62faef46-a917-4d4c-8961-fd25a39fa840, #wrap-s-62faef46-a917-4d4c-8961-fd25a39fa840 { display: none !important; }}@media (max-width: 767px){#s-62faef46-a917-4d4c-8961-fd25a39fa840 {
  
}
}@media (max-width: 767px){#s-62faef46-a917-4d4c-8961-fd25a39fa840, #wrap-s-62faef46-a917-4d4c-8961-fd25a39fa840 { display: none !important; }}






  #s-62faef46-a917-4d4c-8961-fd25a39fa840 img.shogun-image {
    

    
    
    
  }


#s-62faef46-a917-4d4c-8961-fd25a39fa840 .shogun-image-content {
  
    align-items: center;
  
}

#s-8ad76462-d979-4b31-b855-8bb760a5e885 {
  text-align: center;
}
@media (min-width: 1200px){#s-8ad76462-d979-4b31-b855-8bb760a5e885 {
  
}
}@media (min-width: 1200px){#s-8ad76462-d979-4b31-b855-8bb760a5e885, #wrap-s-8ad76462-d979-4b31-b855-8bb760a5e885 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8ad76462-d979-4b31-b855-8bb760a5e885 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-8ad76462-d979-4b31-b855-8bb760a5e885, #wrap-s-8ad76462-d979-4b31-b855-8bb760a5e885 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-8ad76462-d979-4b31-b855-8bb760a5e885 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-8ad76462-d979-4b31-b855-8bb760a5e885, #wrap-s-8ad76462-d979-4b31-b855-8bb760a5e885 { display: none !important; }}@media (max-width: 767px){#s-8ad76462-d979-4b31-b855-8bb760a5e885 {
  
}
}@media (max-width: 767px){#s-8ad76462-d979-4b31-b855-8bb760a5e885, #wrap-s-8ad76462-d979-4b31-b855-8bb760a5e885 { display: none !important; }}






  #s-8ad76462-d979-4b31-b855-8bb760a5e885 img.shogun-image {
    

    
    
    
  }


#s-8ad76462-d979-4b31-b855-8bb760a5e885 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-099fd031-77d5-4911-a255-bd28379101ef"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-099fd031-77d5-4911-a255-bd28379101ef"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-099fd031-77d5-4911-a255-bd28379101ef"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-099fd031-77d5-4911-a255-bd28379101ef"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-c7d720a9-f7f4-4c64-8047-88edc5411f27 {
  margin-left: 10%;
margin-right: 10%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c7d720a9-f7f4-4c64-8047-88edc5411f27 .shogun-heading-component h3 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



@media (min-width: 0px) {
[id="s-484e27b3-d183-4a8e-a7e8-eefa71782f72"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-484e27b3-d183-4a8e-a7e8-eefa71782f72"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-484e27b3-d183-4a8e-a7e8-eefa71782f72"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-484e27b3-d183-4a8e-a7e8-eefa71782f72"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-b777663f-5996-445b-9928-3e87335fb441 {
  max-width: 2400px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-b777663f-5996-445b-9928-3e87335fb441 img.shogun-image,
  #s-b777663f-5996-445b-9928-3e87335fb441 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b777663f-5996-445b-9928-3e87335fb441 {
    width: 100%;
    height: auto;
  }

  #s-b777663f-5996-445b-9928-3e87335fb441 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b777663f-5996-445b-9928-3e87335fb441.shogun-image {
    
    
  }


.s-b777663f-5996-445b-9928-3e87335fb441 .shogun-image-content {
  
    align-items: center;
  
}

.s-b777663f-5996-445b-9928-3e87335fb441.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b777663f-5996-445b-9928-3e87335fb441.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b777663f-5996-445b-9928-3e87335fb441.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-b777663f-5996-445b-9928-3e87335fb441 img.shogun-image,
  #s-b777663f-5996-445b-9928-3e87335fb441 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b777663f-5996-445b-9928-3e87335fb441 {
    width: 100%;
    height: auto;
  }

  #s-b777663f-5996-445b-9928-3e87335fb441 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b777663f-5996-445b-9928-3e87335fb441.shogun-image {
    
    
  }


.s-b777663f-5996-445b-9928-3e87335fb441 .shogun-image-content {
  
    align-items: center;
  
}

.s-b777663f-5996-445b-9928-3e87335fb441.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b777663f-5996-445b-9928-3e87335fb441.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b777663f-5996-445b-9928-3e87335fb441.shogun-image {
  box-sizing: border-box;
}


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



  #s-b777663f-5996-445b-9928-3e87335fb441 img.shogun-image,
  #s-b777663f-5996-445b-9928-3e87335fb441 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b777663f-5996-445b-9928-3e87335fb441 {
    width: 100%;
    height: auto;
  }

  #s-b777663f-5996-445b-9928-3e87335fb441 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b777663f-5996-445b-9928-3e87335fb441.shogun-image {
    
    
  }


.s-b777663f-5996-445b-9928-3e87335fb441 .shogun-image-content {
  
    align-items: center;
  
}

.s-b777663f-5996-445b-9928-3e87335fb441.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b777663f-5996-445b-9928-3e87335fb441.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b777663f-5996-445b-9928-3e87335fb441.shogun-image {
  box-sizing: border-box;
}


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



  #s-b777663f-5996-445b-9928-3e87335fb441 img.shogun-image,
  #s-b777663f-5996-445b-9928-3e87335fb441 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b777663f-5996-445b-9928-3e87335fb441 {
    width: 100%;
    height: auto;
  }

  #s-b777663f-5996-445b-9928-3e87335fb441 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b777663f-5996-445b-9928-3e87335fb441.shogun-image {
    
    
  }


.s-b777663f-5996-445b-9928-3e87335fb441 .shogun-image-content {
  
    align-items: center;
  
}

.s-b777663f-5996-445b-9928-3e87335fb441.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b777663f-5996-445b-9928-3e87335fb441.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b777663f-5996-445b-9928-3e87335fb441.shogun-image {
  box-sizing: border-box;
}


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



  #s-b777663f-5996-445b-9928-3e87335fb441 img.shogun-image,
  #s-b777663f-5996-445b-9928-3e87335fb441 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b777663f-5996-445b-9928-3e87335fb441 {
    width: 100%;
    height: auto;
  }

  #s-b777663f-5996-445b-9928-3e87335fb441 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b777663f-5996-445b-9928-3e87335fb441.shogun-image {
    
    
  }


.s-b777663f-5996-445b-9928-3e87335fb441 .shogun-image-content {
  
    align-items: center;
  
}

.s-b777663f-5996-445b-9928-3e87335fb441.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b777663f-5996-445b-9928-3e87335fb441.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b777663f-5996-445b-9928-3e87335fb441.shogun-image {
  box-sizing: border-box;
}


}
#s-cbd8a375-4354-4027-9c99-387e066c0406 {
  max-width: 2400px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-cbd8a375-4354-4027-9c99-387e066c0406 img.shogun-image,
  #s-cbd8a375-4354-4027-9c99-387e066c0406 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cbd8a375-4354-4027-9c99-387e066c0406 {
    width: 100%;
    height: auto;
  }

  #s-cbd8a375-4354-4027-9c99-387e066c0406 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cbd8a375-4354-4027-9c99-387e066c0406.shogun-image {
    
    
  }


.s-cbd8a375-4354-4027-9c99-387e066c0406 .shogun-image-content {
  
    align-items: center;
  
}

.s-cbd8a375-4354-4027-9c99-387e066c0406.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cbd8a375-4354-4027-9c99-387e066c0406.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cbd8a375-4354-4027-9c99-387e066c0406.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-cbd8a375-4354-4027-9c99-387e066c0406 img.shogun-image,
  #s-cbd8a375-4354-4027-9c99-387e066c0406 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cbd8a375-4354-4027-9c99-387e066c0406 {
    width: 100%;
    height: auto;
  }

  #s-cbd8a375-4354-4027-9c99-387e066c0406 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cbd8a375-4354-4027-9c99-387e066c0406.shogun-image {
    
    
  }


.s-cbd8a375-4354-4027-9c99-387e066c0406 .shogun-image-content {
  
    align-items: center;
  
}

.s-cbd8a375-4354-4027-9c99-387e066c0406.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cbd8a375-4354-4027-9c99-387e066c0406.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cbd8a375-4354-4027-9c99-387e066c0406.shogun-image {
  box-sizing: border-box;
}


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



  #s-cbd8a375-4354-4027-9c99-387e066c0406 img.shogun-image,
  #s-cbd8a375-4354-4027-9c99-387e066c0406 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cbd8a375-4354-4027-9c99-387e066c0406 {
    width: 100%;
    height: auto;
  }

  #s-cbd8a375-4354-4027-9c99-387e066c0406 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cbd8a375-4354-4027-9c99-387e066c0406.shogun-image {
    
    
  }


.s-cbd8a375-4354-4027-9c99-387e066c0406 .shogun-image-content {
  
    align-items: center;
  
}

.s-cbd8a375-4354-4027-9c99-387e066c0406.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cbd8a375-4354-4027-9c99-387e066c0406.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cbd8a375-4354-4027-9c99-387e066c0406.shogun-image {
  box-sizing: border-box;
}


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



  #s-cbd8a375-4354-4027-9c99-387e066c0406 img.shogun-image,
  #s-cbd8a375-4354-4027-9c99-387e066c0406 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cbd8a375-4354-4027-9c99-387e066c0406 {
    width: 100%;
    height: auto;
  }

  #s-cbd8a375-4354-4027-9c99-387e066c0406 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cbd8a375-4354-4027-9c99-387e066c0406.shogun-image {
    
    
  }


.s-cbd8a375-4354-4027-9c99-387e066c0406 .shogun-image-content {
  
    align-items: center;
  
}

.s-cbd8a375-4354-4027-9c99-387e066c0406.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cbd8a375-4354-4027-9c99-387e066c0406.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cbd8a375-4354-4027-9c99-387e066c0406.shogun-image {
  box-sizing: border-box;
}


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



  #s-cbd8a375-4354-4027-9c99-387e066c0406 img.shogun-image,
  #s-cbd8a375-4354-4027-9c99-387e066c0406 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cbd8a375-4354-4027-9c99-387e066c0406 {
    width: 100%;
    height: auto;
  }

  #s-cbd8a375-4354-4027-9c99-387e066c0406 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cbd8a375-4354-4027-9c99-387e066c0406.shogun-image {
    
    
  }


.s-cbd8a375-4354-4027-9c99-387e066c0406 .shogun-image-content {
  
    align-items: center;
  
}

.s-cbd8a375-4354-4027-9c99-387e066c0406.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cbd8a375-4354-4027-9c99-387e066c0406.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cbd8a375-4354-4027-9c99-387e066c0406.shogun-image {
  box-sizing: border-box;
}


}
#s-3f544cb6-7591-4439-b200-d75c44bf923f {
  max-width: 2400px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-3f544cb6-7591-4439-b200-d75c44bf923f img.shogun-image,
  #s-3f544cb6-7591-4439-b200-d75c44bf923f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3f544cb6-7591-4439-b200-d75c44bf923f {
    width: 100%;
    height: auto;
  }

  #s-3f544cb6-7591-4439-b200-d75c44bf923f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3f544cb6-7591-4439-b200-d75c44bf923f.shogun-image {
    
    
  }


.s-3f544cb6-7591-4439-b200-d75c44bf923f .shogun-image-content {
  
    align-items: center;
  
}

.s-3f544cb6-7591-4439-b200-d75c44bf923f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3f544cb6-7591-4439-b200-d75c44bf923f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3f544cb6-7591-4439-b200-d75c44bf923f.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-3f544cb6-7591-4439-b200-d75c44bf923f img.shogun-image,
  #s-3f544cb6-7591-4439-b200-d75c44bf923f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3f544cb6-7591-4439-b200-d75c44bf923f {
    width: 100%;
    height: auto;
  }

  #s-3f544cb6-7591-4439-b200-d75c44bf923f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3f544cb6-7591-4439-b200-d75c44bf923f.shogun-image {
    
    
  }


.s-3f544cb6-7591-4439-b200-d75c44bf923f .shogun-image-content {
  
    align-items: center;
  
}

.s-3f544cb6-7591-4439-b200-d75c44bf923f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3f544cb6-7591-4439-b200-d75c44bf923f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3f544cb6-7591-4439-b200-d75c44bf923f.shogun-image {
  box-sizing: border-box;
}


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



  #s-3f544cb6-7591-4439-b200-d75c44bf923f img.shogun-image,
  #s-3f544cb6-7591-4439-b200-d75c44bf923f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3f544cb6-7591-4439-b200-d75c44bf923f {
    width: 100%;
    height: auto;
  }

  #s-3f544cb6-7591-4439-b200-d75c44bf923f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3f544cb6-7591-4439-b200-d75c44bf923f.shogun-image {
    
    
  }


.s-3f544cb6-7591-4439-b200-d75c44bf923f .shogun-image-content {
  
    align-items: center;
  
}

.s-3f544cb6-7591-4439-b200-d75c44bf923f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3f544cb6-7591-4439-b200-d75c44bf923f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3f544cb6-7591-4439-b200-d75c44bf923f.shogun-image {
  box-sizing: border-box;
}


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



  #s-3f544cb6-7591-4439-b200-d75c44bf923f img.shogun-image,
  #s-3f544cb6-7591-4439-b200-d75c44bf923f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3f544cb6-7591-4439-b200-d75c44bf923f {
    width: 100%;
    height: auto;
  }

  #s-3f544cb6-7591-4439-b200-d75c44bf923f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3f544cb6-7591-4439-b200-d75c44bf923f.shogun-image {
    
    
  }


.s-3f544cb6-7591-4439-b200-d75c44bf923f .shogun-image-content {
  
    align-items: center;
  
}

.s-3f544cb6-7591-4439-b200-d75c44bf923f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3f544cb6-7591-4439-b200-d75c44bf923f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3f544cb6-7591-4439-b200-d75c44bf923f.shogun-image {
  box-sizing: border-box;
}


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



  #s-3f544cb6-7591-4439-b200-d75c44bf923f img.shogun-image,
  #s-3f544cb6-7591-4439-b200-d75c44bf923f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3f544cb6-7591-4439-b200-d75c44bf923f {
    width: 100%;
    height: auto;
  }

  #s-3f544cb6-7591-4439-b200-d75c44bf923f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3f544cb6-7591-4439-b200-d75c44bf923f.shogun-image {
    
    
  }


.s-3f544cb6-7591-4439-b200-d75c44bf923f .shogun-image-content {
  
    align-items: center;
  
}

.s-3f544cb6-7591-4439-b200-d75c44bf923f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3f544cb6-7591-4439-b200-d75c44bf923f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3f544cb6-7591-4439-b200-d75c44bf923f.shogun-image {
  box-sizing: border-box;
}


}
#s-ab4766e5-fcc1-42f5-8824-c70f91f6c235 {
  max-width: 2400px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-ab4766e5-fcc1-42f5-8824-c70f91f6c235 img.shogun-image,
  #s-ab4766e5-fcc1-42f5-8824-c70f91f6c235 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ab4766e5-fcc1-42f5-8824-c70f91f6c235 {
    width: 100%;
    height: auto;
  }

  #s-ab4766e5-fcc1-42f5-8824-c70f91f6c235 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ab4766e5-fcc1-42f5-8824-c70f91f6c235.shogun-image {
    
    
  }


.s-ab4766e5-fcc1-42f5-8824-c70f91f6c235 .shogun-image-content {
  
    align-items: center;
  
}

.s-ab4766e5-fcc1-42f5-8824-c70f91f6c235.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ab4766e5-fcc1-42f5-8824-c70f91f6c235.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ab4766e5-fcc1-42f5-8824-c70f91f6c235.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-ab4766e5-fcc1-42f5-8824-c70f91f6c235 img.shogun-image,
  #s-ab4766e5-fcc1-42f5-8824-c70f91f6c235 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ab4766e5-fcc1-42f5-8824-c70f91f6c235 {
    width: 100%;
    height: auto;
  }

  #s-ab4766e5-fcc1-42f5-8824-c70f91f6c235 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ab4766e5-fcc1-42f5-8824-c70f91f6c235.shogun-image {
    
    
  }


.s-ab4766e5-fcc1-42f5-8824-c70f91f6c235 .shogun-image-content {
  
    align-items: center;
  
}

.s-ab4766e5-fcc1-42f5-8824-c70f91f6c235.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ab4766e5-fcc1-42f5-8824-c70f91f6c235.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ab4766e5-fcc1-42f5-8824-c70f91f6c235.shogun-image {
  box-sizing: border-box;
}


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



  #s-ab4766e5-fcc1-42f5-8824-c70f91f6c235 img.shogun-image,
  #s-ab4766e5-fcc1-42f5-8824-c70f91f6c235 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ab4766e5-fcc1-42f5-8824-c70f91f6c235 {
    width: 100%;
    height: auto;
  }

  #s-ab4766e5-fcc1-42f5-8824-c70f91f6c235 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ab4766e5-fcc1-42f5-8824-c70f91f6c235.shogun-image {
    
    
  }


.s-ab4766e5-fcc1-42f5-8824-c70f91f6c235 .shogun-image-content {
  
    align-items: center;
  
}

.s-ab4766e5-fcc1-42f5-8824-c70f91f6c235.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ab4766e5-fcc1-42f5-8824-c70f91f6c235.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ab4766e5-fcc1-42f5-8824-c70f91f6c235.shogun-image {
  box-sizing: border-box;
}


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



  #s-ab4766e5-fcc1-42f5-8824-c70f91f6c235 img.shogun-image,
  #s-ab4766e5-fcc1-42f5-8824-c70f91f6c235 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ab4766e5-fcc1-42f5-8824-c70f91f6c235 {
    width: 100%;
    height: auto;
  }

  #s-ab4766e5-fcc1-42f5-8824-c70f91f6c235 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ab4766e5-fcc1-42f5-8824-c70f91f6c235.shogun-image {
    
    
  }


.s-ab4766e5-fcc1-42f5-8824-c70f91f6c235 .shogun-image-content {
  
    align-items: center;
  
}

.s-ab4766e5-fcc1-42f5-8824-c70f91f6c235.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ab4766e5-fcc1-42f5-8824-c70f91f6c235.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ab4766e5-fcc1-42f5-8824-c70f91f6c235.shogun-image {
  box-sizing: border-box;
}


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



  #s-ab4766e5-fcc1-42f5-8824-c70f91f6c235 img.shogun-image,
  #s-ab4766e5-fcc1-42f5-8824-c70f91f6c235 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ab4766e5-fcc1-42f5-8824-c70f91f6c235 {
    width: 100%;
    height: auto;
  }

  #s-ab4766e5-fcc1-42f5-8824-c70f91f6c235 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ab4766e5-fcc1-42f5-8824-c70f91f6c235.shogun-image {
    
    
  }


.s-ab4766e5-fcc1-42f5-8824-c70f91f6c235 .shogun-image-content {
  
    align-items: center;
  
}

.s-ab4766e5-fcc1-42f5-8824-c70f91f6c235.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ab4766e5-fcc1-42f5-8824-c70f91f6c235.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ab4766e5-fcc1-42f5-8824-c70f91f6c235.shogun-image {
  box-sizing: border-box;
}


}
#s-e7a4c23f-3840-4ab8-ab59-2dda5f1043dc {
  min-height: 50px;
}








#s-e7a4c23f-3840-4ab8-ab59-2dda5f1043dc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e7a4c23f-3840-4ab8-ab59-2dda5f1043dc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-20b9926d-cdfe-4d2f-9cd4-c54cd024b4ef {
  min-height: 25px;
}
@media (max-width: 767px){#s-20b9926d-cdfe-4d2f-9cd4-c54cd024b4ef {
  
}
}







#s-20b9926d-cdfe-4d2f-9cd4-c54cd024b4ef > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-20b9926d-cdfe-4d2f-9cd4-c54cd024b4ef.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-eef1c633-e1ab-4531-a4c4-7416569c0766 {
  margin-left: 15%;
margin-right: 15%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-eef1c633-e1ab-4531-a4c4-7416569c0766 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



#s-70a8618e-204e-47a4-99f0-e8a8fcd2e1f8 {
  margin-left: 15%;
margin-right: 15%;
}

@media (min-width: 0px) {
[id="s-70a8618e-204e-47a4-99f0-e8a8fcd2e1f8"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-70a8618e-204e-47a4-99f0-e8a8fcd2e1f8"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 992px) {
[id="s-70a8618e-204e-47a4-99f0-e8a8fcd2e1f8"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 1200px) {
[id="s-70a8618e-204e-47a4-99f0-e8a8fcd2e1f8"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 24.0px);
}

}

#s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08 {
  max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08 img.shogun-image,
  #s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08 {
    width: 100%;
    height: auto;
  }

  #s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08.shogun-image {
    
    
  }


.s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08 .shogun-image-content {
  
    align-items: center;
  
}

.s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08 img.shogun-image,
  #s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08 {
    width: 100%;
    height: auto;
  }

  #s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08.shogun-image {
    
    
  }


.s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08 .shogun-image-content {
  
    align-items: center;
  
}

.s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08.shogun-image {
  box-sizing: border-box;
}


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



  #s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08 img.shogun-image,
  #s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08 {
    width: 100%;
    height: auto;
  }

  #s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08.shogun-image {
    
    
  }


.s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08 .shogun-image-content {
  
    align-items: center;
  
}

.s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08.shogun-image {
  box-sizing: border-box;
}


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



  #s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08 img.shogun-image,
  #s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08 {
    width: 100%;
    height: auto;
  }

  #s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08.shogun-image {
    
    
  }


.s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08 .shogun-image-content {
  
    align-items: center;
  
}

.s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08.shogun-image {
  box-sizing: border-box;
}


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



  #s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08 img.shogun-image,
  #s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08 {
    width: 100%;
    height: auto;
  }

  #s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08.shogun-image {
    
    
  }


.s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08 .shogun-image-content {
  
    align-items: center;
  
}

.s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8eb9f321-b1d9-40e9-b969-b8f24bf48f08.shogun-image {
  box-sizing: border-box;
}


}
#s-b5a1ba89-14d1-4bf6-a790-f017c41ee87f {
  min-height: 10px;
}








#s-b5a1ba89-14d1-4bf6-a790-f017c41ee87f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b5a1ba89-14d1-4bf6-a790-f017c41ee87f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0846bf16-cf2b-48f1-b29b-b29323d41c01 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0846bf16-cf2b-48f1-b29b-b29323d41c01 .shogun-heading-component h5 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  line-height: 0.85em;
  
  text-align: left;
}


#s-0846bf16-cf2b-48f1-b29b-b29323d41c01 .shogun-heading-component h5 a {
  color: ;
}


#s-295a7667-bd9c-427f-b775-6ea7fba6a882 {
  max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-295a7667-bd9c-427f-b775-6ea7fba6a882 img.shogun-image,
  #s-295a7667-bd9c-427f-b775-6ea7fba6a882 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-295a7667-bd9c-427f-b775-6ea7fba6a882 {
    width: 100%;
    height: auto;
  }

  #s-295a7667-bd9c-427f-b775-6ea7fba6a882 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-295a7667-bd9c-427f-b775-6ea7fba6a882.shogun-image {
    
    
  }


.s-295a7667-bd9c-427f-b775-6ea7fba6a882 .shogun-image-content {
  
    align-items: center;
  
}

.s-295a7667-bd9c-427f-b775-6ea7fba6a882.shg-align-container {
  display: flex;
  justify-content: center
}

.s-295a7667-bd9c-427f-b775-6ea7fba6a882.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-295a7667-bd9c-427f-b775-6ea7fba6a882.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-295a7667-bd9c-427f-b775-6ea7fba6a882 img.shogun-image,
  #s-295a7667-bd9c-427f-b775-6ea7fba6a882 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-295a7667-bd9c-427f-b775-6ea7fba6a882 {
    width: 100%;
    height: auto;
  }

  #s-295a7667-bd9c-427f-b775-6ea7fba6a882 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-295a7667-bd9c-427f-b775-6ea7fba6a882.shogun-image {
    
    
  }


.s-295a7667-bd9c-427f-b775-6ea7fba6a882 .shogun-image-content {
  
    align-items: center;
  
}

.s-295a7667-bd9c-427f-b775-6ea7fba6a882.shg-align-container {
  display: flex;
  justify-content: center
}

.s-295a7667-bd9c-427f-b775-6ea7fba6a882.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-295a7667-bd9c-427f-b775-6ea7fba6a882.shogun-image {
  box-sizing: border-box;
}


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



  #s-295a7667-bd9c-427f-b775-6ea7fba6a882 img.shogun-image,
  #s-295a7667-bd9c-427f-b775-6ea7fba6a882 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-295a7667-bd9c-427f-b775-6ea7fba6a882 {
    width: 100%;
    height: auto;
  }

  #s-295a7667-bd9c-427f-b775-6ea7fba6a882 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-295a7667-bd9c-427f-b775-6ea7fba6a882.shogun-image {
    
    
  }


.s-295a7667-bd9c-427f-b775-6ea7fba6a882 .shogun-image-content {
  
    align-items: center;
  
}

.s-295a7667-bd9c-427f-b775-6ea7fba6a882.shg-align-container {
  display: flex;
  justify-content: center
}

.s-295a7667-bd9c-427f-b775-6ea7fba6a882.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-295a7667-bd9c-427f-b775-6ea7fba6a882.shogun-image {
  box-sizing: border-box;
}


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



  #s-295a7667-bd9c-427f-b775-6ea7fba6a882 img.shogun-image,
  #s-295a7667-bd9c-427f-b775-6ea7fba6a882 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-295a7667-bd9c-427f-b775-6ea7fba6a882 {
    width: 100%;
    height: auto;
  }

  #s-295a7667-bd9c-427f-b775-6ea7fba6a882 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-295a7667-bd9c-427f-b775-6ea7fba6a882.shogun-image {
    
    
  }


.s-295a7667-bd9c-427f-b775-6ea7fba6a882 .shogun-image-content {
  
    align-items: center;
  
}

.s-295a7667-bd9c-427f-b775-6ea7fba6a882.shg-align-container {
  display: flex;
  justify-content: center
}

.s-295a7667-bd9c-427f-b775-6ea7fba6a882.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-295a7667-bd9c-427f-b775-6ea7fba6a882.shogun-image {
  box-sizing: border-box;
}


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



  #s-295a7667-bd9c-427f-b775-6ea7fba6a882 img.shogun-image,
  #s-295a7667-bd9c-427f-b775-6ea7fba6a882 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-295a7667-bd9c-427f-b775-6ea7fba6a882 {
    width: 100%;
    height: auto;
  }

  #s-295a7667-bd9c-427f-b775-6ea7fba6a882 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-295a7667-bd9c-427f-b775-6ea7fba6a882.shogun-image {
    
    
  }


.s-295a7667-bd9c-427f-b775-6ea7fba6a882 .shogun-image-content {
  
    align-items: center;
  
}

.s-295a7667-bd9c-427f-b775-6ea7fba6a882.shg-align-container {
  display: flex;
  justify-content: center
}

.s-295a7667-bd9c-427f-b775-6ea7fba6a882.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-295a7667-bd9c-427f-b775-6ea7fba6a882.shogun-image {
  box-sizing: border-box;
}


}
#s-989e1382-28cd-486c-9a79-44c865e0765f {
  min-height: 10px;
}








#s-989e1382-28cd-486c-9a79-44c865e0765f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-989e1382-28cd-486c-9a79-44c865e0765f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-74a6276a-0047-4a3c-9c2b-2fe87ca6ffcb {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-74a6276a-0047-4a3c-9c2b-2fe87ca6ffcb .shogun-heading-component h5 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  line-height: 0.85em;
  
  text-align: left;
}


#s-74a6276a-0047-4a3c-9c2b-2fe87ca6ffcb .shogun-heading-component h5 a {
  color: ;
}


#s-521c57c8-deb1-4483-b389-af361d6501be {
  min-height: 10px;
}








#s-521c57c8-deb1-4483-b389-af361d6501be > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-521c57c8-deb1-4483-b389-af361d6501be.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a7324215-2aa5-44fa-ab96-5343d2e82689 {
  max-width: 1200px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-a7324215-2aa5-44fa-ab96-5343d2e82689 img.shogun-image,
  #s-a7324215-2aa5-44fa-ab96-5343d2e82689 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a7324215-2aa5-44fa-ab96-5343d2e82689 {
    width: 100%;
    height: auto;
  }

  #s-a7324215-2aa5-44fa-ab96-5343d2e82689 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a7324215-2aa5-44fa-ab96-5343d2e82689.shogun-image {
    
    
  }


.s-a7324215-2aa5-44fa-ab96-5343d2e82689 .shogun-image-content {
  
    align-items: center;
  
}

.s-a7324215-2aa5-44fa-ab96-5343d2e82689.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a7324215-2aa5-44fa-ab96-5343d2e82689.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a7324215-2aa5-44fa-ab96-5343d2e82689.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-a7324215-2aa5-44fa-ab96-5343d2e82689 img.shogun-image,
  #s-a7324215-2aa5-44fa-ab96-5343d2e82689 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a7324215-2aa5-44fa-ab96-5343d2e82689 {
    width: 100%;
    height: auto;
  }

  #s-a7324215-2aa5-44fa-ab96-5343d2e82689 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a7324215-2aa5-44fa-ab96-5343d2e82689.shogun-image {
    
    
  }


.s-a7324215-2aa5-44fa-ab96-5343d2e82689 .shogun-image-content {
  
    align-items: center;
  
}

.s-a7324215-2aa5-44fa-ab96-5343d2e82689.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a7324215-2aa5-44fa-ab96-5343d2e82689.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a7324215-2aa5-44fa-ab96-5343d2e82689.shogun-image {
  box-sizing: border-box;
}


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



  #s-a7324215-2aa5-44fa-ab96-5343d2e82689 img.shogun-image,
  #s-a7324215-2aa5-44fa-ab96-5343d2e82689 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a7324215-2aa5-44fa-ab96-5343d2e82689 {
    width: 100%;
    height: auto;
  }

  #s-a7324215-2aa5-44fa-ab96-5343d2e82689 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a7324215-2aa5-44fa-ab96-5343d2e82689.shogun-image {
    
    
  }


.s-a7324215-2aa5-44fa-ab96-5343d2e82689 .shogun-image-content {
  
    align-items: center;
  
}

.s-a7324215-2aa5-44fa-ab96-5343d2e82689.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a7324215-2aa5-44fa-ab96-5343d2e82689.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a7324215-2aa5-44fa-ab96-5343d2e82689.shogun-image {
  box-sizing: border-box;
}


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



  #s-a7324215-2aa5-44fa-ab96-5343d2e82689 img.shogun-image,
  #s-a7324215-2aa5-44fa-ab96-5343d2e82689 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a7324215-2aa5-44fa-ab96-5343d2e82689 {
    width: 100%;
    height: auto;
  }

  #s-a7324215-2aa5-44fa-ab96-5343d2e82689 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a7324215-2aa5-44fa-ab96-5343d2e82689.shogun-image {
    
    
  }


.s-a7324215-2aa5-44fa-ab96-5343d2e82689 .shogun-image-content {
  
    align-items: center;
  
}

.s-a7324215-2aa5-44fa-ab96-5343d2e82689.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a7324215-2aa5-44fa-ab96-5343d2e82689.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a7324215-2aa5-44fa-ab96-5343d2e82689.shogun-image {
  box-sizing: border-box;
}


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



  #s-a7324215-2aa5-44fa-ab96-5343d2e82689 img.shogun-image,
  #s-a7324215-2aa5-44fa-ab96-5343d2e82689 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a7324215-2aa5-44fa-ab96-5343d2e82689 {
    width: 100%;
    height: auto;
  }

  #s-a7324215-2aa5-44fa-ab96-5343d2e82689 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a7324215-2aa5-44fa-ab96-5343d2e82689.shogun-image {
    
    
  }


.s-a7324215-2aa5-44fa-ab96-5343d2e82689 .shogun-image-content {
  
    align-items: center;
  
}

.s-a7324215-2aa5-44fa-ab96-5343d2e82689.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a7324215-2aa5-44fa-ab96-5343d2e82689.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a7324215-2aa5-44fa-ab96-5343d2e82689.shogun-image {
  box-sizing: border-box;
}


}
#s-d3172eea-c9cd-40d2-af0a-4b52a5cbc4df {
  min-height: 10px;
}








#s-d3172eea-c9cd-40d2-af0a-4b52a5cbc4df > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d3172eea-c9cd-40d2-af0a-4b52a5cbc4df.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bc404ee4-32d4-43e7-8341-04dd7d2baac1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-bc404ee4-32d4-43e7-8341-04dd7d2baac1 .shogun-heading-component h5 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  line-height: 0.85em;
  
  text-align: left;
}


#s-bc404ee4-32d4-43e7-8341-04dd7d2baac1 .shogun-heading-component h5 a {
  color: ;
}


#s-0fa4cf80-6401-491e-a316-5ff891ac0032 {
  max-width: 960px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-0fa4cf80-6401-491e-a316-5ff891ac0032 img.shogun-image,
  #s-0fa4cf80-6401-491e-a316-5ff891ac0032 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0fa4cf80-6401-491e-a316-5ff891ac0032 {
    width: 100%;
    height: auto;
  }

  #s-0fa4cf80-6401-491e-a316-5ff891ac0032 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0fa4cf80-6401-491e-a316-5ff891ac0032.shogun-image {
    
    
  }


.s-0fa4cf80-6401-491e-a316-5ff891ac0032 .shogun-image-content {
  
    align-items: center;
  
}

.s-0fa4cf80-6401-491e-a316-5ff891ac0032.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0fa4cf80-6401-491e-a316-5ff891ac0032.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0fa4cf80-6401-491e-a316-5ff891ac0032.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-0fa4cf80-6401-491e-a316-5ff891ac0032 img.shogun-image,
  #s-0fa4cf80-6401-491e-a316-5ff891ac0032 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0fa4cf80-6401-491e-a316-5ff891ac0032 {
    width: 100%;
    height: auto;
  }

  #s-0fa4cf80-6401-491e-a316-5ff891ac0032 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0fa4cf80-6401-491e-a316-5ff891ac0032.shogun-image {
    
    
  }


.s-0fa4cf80-6401-491e-a316-5ff891ac0032 .shogun-image-content {
  
    align-items: center;
  
}

.s-0fa4cf80-6401-491e-a316-5ff891ac0032.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0fa4cf80-6401-491e-a316-5ff891ac0032.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0fa4cf80-6401-491e-a316-5ff891ac0032.shogun-image {
  box-sizing: border-box;
}


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



  #s-0fa4cf80-6401-491e-a316-5ff891ac0032 img.shogun-image,
  #s-0fa4cf80-6401-491e-a316-5ff891ac0032 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0fa4cf80-6401-491e-a316-5ff891ac0032 {
    width: 100%;
    height: auto;
  }

  #s-0fa4cf80-6401-491e-a316-5ff891ac0032 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0fa4cf80-6401-491e-a316-5ff891ac0032.shogun-image {
    
    
  }


.s-0fa4cf80-6401-491e-a316-5ff891ac0032 .shogun-image-content {
  
    align-items: center;
  
}

.s-0fa4cf80-6401-491e-a316-5ff891ac0032.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0fa4cf80-6401-491e-a316-5ff891ac0032.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0fa4cf80-6401-491e-a316-5ff891ac0032.shogun-image {
  box-sizing: border-box;
}


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



  #s-0fa4cf80-6401-491e-a316-5ff891ac0032 img.shogun-image,
  #s-0fa4cf80-6401-491e-a316-5ff891ac0032 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0fa4cf80-6401-491e-a316-5ff891ac0032 {
    width: 100%;
    height: auto;
  }

  #s-0fa4cf80-6401-491e-a316-5ff891ac0032 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0fa4cf80-6401-491e-a316-5ff891ac0032.shogun-image {
    
    
  }


.s-0fa4cf80-6401-491e-a316-5ff891ac0032 .shogun-image-content {
  
    align-items: center;
  
}

.s-0fa4cf80-6401-491e-a316-5ff891ac0032.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0fa4cf80-6401-491e-a316-5ff891ac0032.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0fa4cf80-6401-491e-a316-5ff891ac0032.shogun-image {
  box-sizing: border-box;
}


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



  #s-0fa4cf80-6401-491e-a316-5ff891ac0032 img.shogun-image,
  #s-0fa4cf80-6401-491e-a316-5ff891ac0032 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0fa4cf80-6401-491e-a316-5ff891ac0032 {
    width: 100%;
    height: auto;
  }

  #s-0fa4cf80-6401-491e-a316-5ff891ac0032 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0fa4cf80-6401-491e-a316-5ff891ac0032.shogun-image {
    
    
  }


.s-0fa4cf80-6401-491e-a316-5ff891ac0032 .shogun-image-content {
  
    align-items: center;
  
}

.s-0fa4cf80-6401-491e-a316-5ff891ac0032.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0fa4cf80-6401-491e-a316-5ff891ac0032.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0fa4cf80-6401-491e-a316-5ff891ac0032.shogun-image {
  box-sizing: border-box;
}


}
#s-24492fec-5933-4b4f-9581-d0bd35891931 {
  min-height: 10px;
}








#s-24492fec-5933-4b4f-9581-d0bd35891931 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-24492fec-5933-4b4f-9581-d0bd35891931.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9d098876-75fc-49f5-8c40-5abc9e08e204 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-9d098876-75fc-49f5-8c40-5abc9e08e204 .shogun-heading-component h5 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}


#s-9d098876-75fc-49f5-8c40-5abc9e08e204 .shogun-heading-component h5 a {
  color: ;
}


#s-c6e27e9c-3db6-4887-aec7-dfa732950535 {
  min-height: 10px;
}








#s-c6e27e9c-3db6-4887-aec7-dfa732950535 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c6e27e9c-3db6-4887-aec7-dfa732950535.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a {
  max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a img.shogun-image,
  #s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a {
    width: 100%;
    height: auto;
  }

  #s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a.shogun-image {
    
    
  }


.s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a .shogun-image-content {
  
    align-items: center;
  
}

.s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a img.shogun-image,
  #s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a {
    width: 100%;
    height: auto;
  }

  #s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a.shogun-image {
    
    
  }


.s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a .shogun-image-content {
  
    align-items: center;
  
}

.s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a.shogun-image {
  box-sizing: border-box;
}


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



  #s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a img.shogun-image,
  #s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a {
    width: 100%;
    height: auto;
  }

  #s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a.shogun-image {
    
    
  }


.s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a .shogun-image-content {
  
    align-items: center;
  
}

.s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a.shogun-image {
  box-sizing: border-box;
}


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



  #s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a img.shogun-image,
  #s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a {
    width: 100%;
    height: auto;
  }

  #s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a.shogun-image {
    
    
  }


.s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a .shogun-image-content {
  
    align-items: center;
  
}

.s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a.shogun-image {
  box-sizing: border-box;
}


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



  #s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a img.shogun-image,
  #s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a {
    width: 100%;
    height: auto;
  }

  #s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a.shogun-image {
    
    
  }


.s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a .shogun-image-content {
  
    align-items: center;
  
}

.s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-11885521-0a3f-4fdb-8ecf-99aa5aa4322a.shogun-image {
  box-sizing: border-box;
}


}
#s-f82f1837-c088-4f5c-9b7d-1b74cd0206f5 {
  min-height: 10px;
}








#s-f82f1837-c088-4f5c-9b7d-1b74cd0206f5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f82f1837-c088-4f5c-9b7d-1b74cd0206f5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6a48c6e7-66ad-456c-8dc8-7d87fe0276dc {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6a48c6e7-66ad-456c-8dc8-7d87fe0276dc .shogun-heading-component h5 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  line-height: 0.85em;
  
  text-align: left;
}


#s-6a48c6e7-66ad-456c-8dc8-7d87fe0276dc .shogun-heading-component h5 a {
  color: ;
}


#s-ae2ceed2-36a1-4b03-bbd3-dd3a424fc2bd {
  min-height: 50px;
}








#s-ae2ceed2-36a1-4b03-bbd3-dd3a424fc2bd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ae2ceed2-36a1-4b03-bbd3-dd3a424fc2bd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-55e3519b-f053-4393-a6a7-063a53e98f5a {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 30px;
background-color: rgba(20, 20, 20, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-55e3519b-f053-4393-a6a7-063a53e98f5a:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-55e3519b-f053-4393-a6a7-063a53e98f5a:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-55e3519b-f053-4393-a6a7-063a53e98f5a-root {
    text-align: center;
  }


#s-55e3519b-f053-4393-a6a7-063a53e98f5a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-55e3519b-f053-4393-a6a7-063a53e98f5a-root {
    text-align: center;
  }


#s-55e3519b-f053-4393-a6a7-063a53e98f5a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-55e3519b-f053-4393-a6a7-063a53e98f5a-root {
    text-align: center;
  }


#s-55e3519b-f053-4393-a6a7-063a53e98f5a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-55e3519b-f053-4393-a6a7-063a53e98f5a-root {
    text-align: center;
  }


#s-55e3519b-f053-4393-a6a7-063a53e98f5a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-55e3519b-f053-4393-a6a7-063a53e98f5a-root {
    text-align: center;
  }


#s-55e3519b-f053-4393-a6a7-063a53e98f5a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-2a218cf6-8c98-46d1-8778-6d5325fbf900 {
  min-height: 50px;
}








#s-2a218cf6-8c98-46d1-8778-6d5325fbf900 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2a218cf6-8c98-46d1-8778-6d5325fbf900.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

/*
  $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}
