.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-690245c0-dcb5-450b-9108-a6767ce8a936 {
  min-height: 50px;
}








#s-690245c0-dcb5-450b-9108-a6767ce8a936 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-690245c0-dcb5-450b-9108-a6767ce8a936.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;
}

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;
}

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

.shogun-image.hover ~ * {
  z-index: 1;
}

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

#s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc {
  margin-top: 16px;
margin-bottom: 16px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
max-width: 230px;
aspect-ratio: 1600/432;
text-align: center;
}





  #s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc img.shogun-image,
  #s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc {
    width: 100%;
    height: auto;
  }



  img.s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc.shogun-image {
    
    
  }


.s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc .shogun-image-content {
  
    align-items: center;
  
}

.s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc.shg-align-container {
  text-align: center
}

.s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc img.shogun-image,
  #s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc {
    width: 100%;
    height: auto;
  }



  img.s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc.shogun-image {
    
    
  }


.s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc .shogun-image-content {
  
    align-items: center;
  
}

.s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc.shg-align-container {
  text-align: center
}

.s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc.shogun-image {
  box-sizing: border-box;
}


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



  #s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc img.shogun-image,
  #s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc {
    width: 100%;
    height: auto;
  }



  img.s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc.shogun-image {
    
    
  }


.s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc .shogun-image-content {
  
    align-items: center;
  
}

.s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc.shg-align-container {
  text-align: center
}

.s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc.shogun-image {
  box-sizing: border-box;
}


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



  #s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc img.shogun-image,
  #s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc {
    width: 100%;
    height: auto;
  }



  img.s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc.shogun-image {
    
    
  }


.s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc .shogun-image-content {
  
    align-items: center;
  
}

.s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc.shg-align-container {
  text-align: center
}

.s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc.shogun-image {
  box-sizing: border-box;
}


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



  #s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc img.shogun-image,
  #s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc {
    width: 100%;
    height: auto;
  }



  img.s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc.shogun-image {
    
    
  }


.s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc .shogun-image-content {
  
    align-items: center;
  
}

.s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc.shg-align-container {
  text-align: center
}

.s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-132a37bf-82d2-48bf-b6b6-b31c7f8fe6fc.shogun-image {
  box-sizing: border-box;
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-e5773517-7fa1-440a-bc5d-89dc4d399a8c {
  margin-top: -14px;
margin-bottom: -1px;
}

#s-2cece30a-5418-4efe-aebe-e2b445b2f7fe {
  background-repeat: no-repeat;
background-size: cover;
min-height: 720px;
background-position: center center;
}

#s-2cece30a-5418-4efe-aebe-e2b445b2f7fe {
  background-image: url(https://i.shgcdn.com/2c499770-0e39-418c-af11-0c3cc5a46cbb/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-2cece30a-5418-4efe-aebe-e2b445b2f7fe > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0.2;
}#s-2cece30a-5418-4efe-aebe-e2b445b2f7fe.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-837f0ffc-c375-4c89-b2a4-dca149cbef29 {
  min-height: 50px;
}








#s-837f0ffc-c375-4c89-b2a4-dca149cbef29 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-837f0ffc-c375-4c89-b2a4-dca149cbef29.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-16aaa873-2271-477e-93fc-7f695335bbc0 {
  padding-top: 1px;
padding-bottom: 1px;
text-align: center;
}
@media (min-width: 1200px){#s-16aaa873-2271-477e-93fc-7f695335bbc0 {
  
}
}@media (max-width: 767px){#s-16aaa873-2271-477e-93fc-7f695335bbc0 {
  display: none;
}
#s-16aaa873-2271-477e-93fc-7f695335bbc0, #wrap-s-16aaa873-2271-477e-93fc-7f695335bbc0 { display:none !important; }}
#s-16aaa873-2271-477e-93fc-7f695335bbc0 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  500 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 28px;
  line-height: 1.25em;
  letter-spacing: -2px;
  text-align: center;
}



#s-14f2fb15-7cab-4b98-b8de-7dc43e275edc {
  padding-top: 1px;
padding-left: 11%;
padding-bottom: 1px;
padding-right: 11%;
text-align: center;
}
@media (min-width: 1200px){#s-14f2fb15-7cab-4b98-b8de-7dc43e275edc {
  display: none;
}
#s-14f2fb15-7cab-4b98-b8de-7dc43e275edc, #wrap-s-14f2fb15-7cab-4b98-b8de-7dc43e275edc { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-14f2fb15-7cab-4b98-b8de-7dc43e275edc {
  display: none;
}
#s-14f2fb15-7cab-4b98-b8de-7dc43e275edc, #wrap-s-14f2fb15-7cab-4b98-b8de-7dc43e275edc { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-14f2fb15-7cab-4b98-b8de-7dc43e275edc {
  display: none;
}
#s-14f2fb15-7cab-4b98-b8de-7dc43e275edc, #wrap-s-14f2fb15-7cab-4b98-b8de-7dc43e275edc { display:none !important; }}@media (max-width: 767px){#s-14f2fb15-7cab-4b98-b8de-7dc43e275edc {
  
}
}
#s-14f2fb15-7cab-4b98-b8de-7dc43e275edc .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  500 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 28px;
  
  letter-spacing: -2px;
  text-align: center;
}



#s-6a82f0da-08b3-4e49-ab56-0de308f93905 {
  margin-left: 18%;
margin-right: 18%;
padding-left: 4%;
padding-right: 4%;
background-color: rgba(207, 207, 207, 0);
}

.shg-hr-wrapper {
  padding: 30px 0;
}

.shg-hr-wrapper hr {
  margin: 0;
  border: 0;
  width: 100%;
}

#s-22651f16-9bea-4ec6-acf3-d69550dcc72b hr {
  border-top: 1px solid #ddd;
}

#s-7b9b094d-0e78-4f9e-ac6a-2ff96b88d426 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7b9b094d-0e78-4f9e-ac6a-2ff96b88d426 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-98e7c6c9-feb1-4b36-acb6-0b58e3a62b8e {
  padding-left: 40px;
padding-right: 40px;
}

.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-956646d8-6182-4dc6-b859-af063af2a833 {
  padding-left: 7%;
padding-right: 7%;
}

@media (min-width: 0px) {
[id="s-956646d8-6182-4dc6-b859-af063af2a833"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-956646d8-6182-4dc6-b859-af063af2a833"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-956646d8-6182-4dc6-b859-af063af2a833"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-956646d8-6182-4dc6-b859-af063af2a833"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-3cd52ace-107e-42dc-ae29-063698f25c74 {
  padding-top: 16%;
padding-left: 16%;
padding-bottom: 16%;
padding-right: 16%;
max-width: 512px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-3cd52ace-107e-42dc-ae29-063698f25c74 img.shogun-image,
  #s-3cd52ace-107e-42dc-ae29-063698f25c74 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3cd52ace-107e-42dc-ae29-063698f25c74 {
    width: 100%;
    height: auto;
  }



  img.s-3cd52ace-107e-42dc-ae29-063698f25c74.shogun-image {
    
    
  }


.s-3cd52ace-107e-42dc-ae29-063698f25c74 .shogun-image-content {
  
    align-items: center;
  
}

.s-3cd52ace-107e-42dc-ae29-063698f25c74.shg-align-container {
  text-align: center
}

.s-3cd52ace-107e-42dc-ae29-063698f25c74.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3cd52ace-107e-42dc-ae29-063698f25c74.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-3cd52ace-107e-42dc-ae29-063698f25c74 img.shogun-image,
  #s-3cd52ace-107e-42dc-ae29-063698f25c74 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3cd52ace-107e-42dc-ae29-063698f25c74 {
    width: 100%;
    height: auto;
  }



  img.s-3cd52ace-107e-42dc-ae29-063698f25c74.shogun-image {
    
    
  }


.s-3cd52ace-107e-42dc-ae29-063698f25c74 .shogun-image-content {
  
    align-items: center;
  
}

.s-3cd52ace-107e-42dc-ae29-063698f25c74.shg-align-container {
  text-align: center
}

.s-3cd52ace-107e-42dc-ae29-063698f25c74.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3cd52ace-107e-42dc-ae29-063698f25c74.shogun-image {
  box-sizing: border-box;
}


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



  #s-3cd52ace-107e-42dc-ae29-063698f25c74 img.shogun-image,
  #s-3cd52ace-107e-42dc-ae29-063698f25c74 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3cd52ace-107e-42dc-ae29-063698f25c74 {
    width: 100%;
    height: auto;
  }



  img.s-3cd52ace-107e-42dc-ae29-063698f25c74.shogun-image {
    
    
  }


.s-3cd52ace-107e-42dc-ae29-063698f25c74 .shogun-image-content {
  
    align-items: center;
  
}

.s-3cd52ace-107e-42dc-ae29-063698f25c74.shg-align-container {
  text-align: center
}

.s-3cd52ace-107e-42dc-ae29-063698f25c74.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3cd52ace-107e-42dc-ae29-063698f25c74.shogun-image {
  box-sizing: border-box;
}


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



  #s-3cd52ace-107e-42dc-ae29-063698f25c74 img.shogun-image,
  #s-3cd52ace-107e-42dc-ae29-063698f25c74 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3cd52ace-107e-42dc-ae29-063698f25c74 {
    width: 100%;
    height: auto;
  }



  img.s-3cd52ace-107e-42dc-ae29-063698f25c74.shogun-image {
    
    
  }


.s-3cd52ace-107e-42dc-ae29-063698f25c74 .shogun-image-content {
  
    align-items: center;
  
}

.s-3cd52ace-107e-42dc-ae29-063698f25c74.shg-align-container {
  text-align: center
}

.s-3cd52ace-107e-42dc-ae29-063698f25c74.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3cd52ace-107e-42dc-ae29-063698f25c74.shogun-image {
  box-sizing: border-box;
}


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



  #s-3cd52ace-107e-42dc-ae29-063698f25c74 img.shogun-image,
  #s-3cd52ace-107e-42dc-ae29-063698f25c74 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3cd52ace-107e-42dc-ae29-063698f25c74 {
    width: 100%;
    height: auto;
  }



  img.s-3cd52ace-107e-42dc-ae29-063698f25c74.shogun-image {
    
    
  }


.s-3cd52ace-107e-42dc-ae29-063698f25c74 .shogun-image-content {
  
    align-items: center;
  
}

.s-3cd52ace-107e-42dc-ae29-063698f25c74.shg-align-container {
  text-align: center
}

.s-3cd52ace-107e-42dc-ae29-063698f25c74.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3cd52ace-107e-42dc-ae29-063698f25c74.shogun-image {
  box-sizing: border-box;
}


}
#s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5 {
  padding-top: 16%;
padding-left: 16%;
padding-bottom: 16%;
padding-right: 16%;
max-width: 512px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5 img.shogun-image,
  #s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5 {
    width: 100%;
    height: auto;
  }



  img.s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5.shogun-image {
    
    
  }


.s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5 .shogun-image-content {
  
    align-items: center;
  
}

.s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5.shg-align-container {
  text-align: center
}

.s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5 img.shogun-image,
  #s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5 {
    width: 100%;
    height: auto;
  }



  img.s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5.shogun-image {
    
    
  }


.s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5 .shogun-image-content {
  
    align-items: center;
  
}

.s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5.shg-align-container {
  text-align: center
}

.s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5.shogun-image {
  box-sizing: border-box;
}


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



  #s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5 img.shogun-image,
  #s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5 {
    width: 100%;
    height: auto;
  }



  img.s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5.shogun-image {
    
    
  }


.s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5 .shogun-image-content {
  
    align-items: center;
  
}

.s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5.shg-align-container {
  text-align: center
}

.s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5.shogun-image {
  box-sizing: border-box;
}


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



  #s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5 img.shogun-image,
  #s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5 {
    width: 100%;
    height: auto;
  }



  img.s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5.shogun-image {
    
    
  }


.s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5 .shogun-image-content {
  
    align-items: center;
  
}

.s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5.shg-align-container {
  text-align: center
}

.s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5.shogun-image {
  box-sizing: border-box;
}


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



  #s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5 img.shogun-image,
  #s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5 {
    width: 100%;
    height: auto;
  }



  img.s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5.shogun-image {
    
    
  }


.s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5 .shogun-image-content {
  
    align-items: center;
  
}

.s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5.shg-align-container {
  text-align: center
}

.s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f6fb27e7-5ec2-4777-ae94-749ae909d2e5.shogun-image {
  box-sizing: border-box;
}


}
#s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9 {
  padding-top: 16%;
padding-left: 16%;
padding-bottom: 16%;
padding-right: 16%;
max-width: 512px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9 img.shogun-image,
  #s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9 {
    width: 100%;
    height: auto;
  }



  img.s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9.shogun-image {
    
    
  }


.s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9 .shogun-image-content {
  
    align-items: center;
  
}

.s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9.shg-align-container {
  text-align: center
}

.s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9 img.shogun-image,
  #s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9 {
    width: 100%;
    height: auto;
  }



  img.s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9.shogun-image {
    
    
  }


.s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9 .shogun-image-content {
  
    align-items: center;
  
}

.s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9.shg-align-container {
  text-align: center
}

.s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9.shogun-image {
  box-sizing: border-box;
}


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



  #s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9 img.shogun-image,
  #s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9 {
    width: 100%;
    height: auto;
  }



  img.s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9.shogun-image {
    
    
  }


.s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9 .shogun-image-content {
  
    align-items: center;
  
}

.s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9.shg-align-container {
  text-align: center
}

.s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9.shogun-image {
  box-sizing: border-box;
}


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



  #s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9 img.shogun-image,
  #s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9 {
    width: 100%;
    height: auto;
  }



  img.s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9.shogun-image {
    
    
  }


.s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9 .shogun-image-content {
  
    align-items: center;
  
}

.s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9.shg-align-container {
  text-align: center
}

.s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9.shogun-image {
  box-sizing: border-box;
}


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



  #s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9 img.shogun-image,
  #s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9 {
    width: 100%;
    height: auto;
  }



  img.s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9.shogun-image {
    
    
  }


.s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9 .shogun-image-content {
  
    align-items: center;
  
}

.s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9.shg-align-container {
  text-align: center
}

.s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b7d7011b-7f1e-41f0-b49e-d1b1b1e0dff9.shogun-image {
  box-sizing: border-box;
}


}
#s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e {
  padding-top: 16%;
padding-left: 16%;
padding-bottom: 16%;
padding-right: 16%;
max-width: 512px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e img.shogun-image,
  #s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e {
    width: 100%;
    height: auto;
  }



  img.s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e.shogun-image {
    
    
  }


.s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e .shogun-image-content {
  
    align-items: center;
  
}

.s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e.shg-align-container {
  text-align: center
}

.s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e img.shogun-image,
  #s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e {
    width: 100%;
    height: auto;
  }



  img.s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e.shogun-image {
    
    
  }


.s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e .shogun-image-content {
  
    align-items: center;
  
}

.s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e.shg-align-container {
  text-align: center
}

.s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e.shogun-image {
  box-sizing: border-box;
}


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



  #s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e img.shogun-image,
  #s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e {
    width: 100%;
    height: auto;
  }



  img.s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e.shogun-image {
    
    
  }


.s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e .shogun-image-content {
  
    align-items: center;
  
}

.s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e.shg-align-container {
  text-align: center
}

.s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e.shogun-image {
  box-sizing: border-box;
}


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



  #s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e img.shogun-image,
  #s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e {
    width: 100%;
    height: auto;
  }



  img.s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e.shogun-image {
    
    
  }


.s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e .shogun-image-content {
  
    align-items: center;
  
}

.s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e.shg-align-container {
  text-align: center
}

.s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e.shogun-image {
  box-sizing: border-box;
}


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



  #s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e img.shogun-image,
  #s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e {
    width: 100%;
    height: auto;
  }



  img.s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e.shogun-image {
    
    
  }


.s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e .shogun-image-content {
  
    align-items: center;
  
}

.s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e.shg-align-container {
  text-align: center
}

.s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0df6d5dd-5bbd-40d1-b9f8-3528bbe8ea9e.shogun-image {
  box-sizing: border-box;
}


}
#s-df5c6ee1-a45a-437f-954a-04698f5ea0d9 {
  padding-top: 16%;
padding-left: 16%;
padding-bottom: 16%;
padding-right: 16%;
max-width: 512px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-df5c6ee1-a45a-437f-954a-04698f5ea0d9 img.shogun-image,
  #s-df5c6ee1-a45a-437f-954a-04698f5ea0d9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-df5c6ee1-a45a-437f-954a-04698f5ea0d9 {
    width: 100%;
    height: auto;
  }



  img.s-df5c6ee1-a45a-437f-954a-04698f5ea0d9.shogun-image {
    
    
  }


.s-df5c6ee1-a45a-437f-954a-04698f5ea0d9 .shogun-image-content {
  
    align-items: center;
  
}

.s-df5c6ee1-a45a-437f-954a-04698f5ea0d9.shg-align-container {
  text-align: center
}

.s-df5c6ee1-a45a-437f-954a-04698f5ea0d9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df5c6ee1-a45a-437f-954a-04698f5ea0d9.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-df5c6ee1-a45a-437f-954a-04698f5ea0d9 img.shogun-image,
  #s-df5c6ee1-a45a-437f-954a-04698f5ea0d9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-df5c6ee1-a45a-437f-954a-04698f5ea0d9 {
    width: 100%;
    height: auto;
  }



  img.s-df5c6ee1-a45a-437f-954a-04698f5ea0d9.shogun-image {
    
    
  }


.s-df5c6ee1-a45a-437f-954a-04698f5ea0d9 .shogun-image-content {
  
    align-items: center;
  
}

.s-df5c6ee1-a45a-437f-954a-04698f5ea0d9.shg-align-container {
  text-align: center
}

.s-df5c6ee1-a45a-437f-954a-04698f5ea0d9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df5c6ee1-a45a-437f-954a-04698f5ea0d9.shogun-image {
  box-sizing: border-box;
}


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



  #s-df5c6ee1-a45a-437f-954a-04698f5ea0d9 img.shogun-image,
  #s-df5c6ee1-a45a-437f-954a-04698f5ea0d9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-df5c6ee1-a45a-437f-954a-04698f5ea0d9 {
    width: 100%;
    height: auto;
  }



  img.s-df5c6ee1-a45a-437f-954a-04698f5ea0d9.shogun-image {
    
    
  }


.s-df5c6ee1-a45a-437f-954a-04698f5ea0d9 .shogun-image-content {
  
    align-items: center;
  
}

.s-df5c6ee1-a45a-437f-954a-04698f5ea0d9.shg-align-container {
  text-align: center
}

.s-df5c6ee1-a45a-437f-954a-04698f5ea0d9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df5c6ee1-a45a-437f-954a-04698f5ea0d9.shogun-image {
  box-sizing: border-box;
}


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



  #s-df5c6ee1-a45a-437f-954a-04698f5ea0d9 img.shogun-image,
  #s-df5c6ee1-a45a-437f-954a-04698f5ea0d9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-df5c6ee1-a45a-437f-954a-04698f5ea0d9 {
    width: 100%;
    height: auto;
  }



  img.s-df5c6ee1-a45a-437f-954a-04698f5ea0d9.shogun-image {
    
    
  }


.s-df5c6ee1-a45a-437f-954a-04698f5ea0d9 .shogun-image-content {
  
    align-items: center;
  
}

.s-df5c6ee1-a45a-437f-954a-04698f5ea0d9.shg-align-container {
  text-align: center
}

.s-df5c6ee1-a45a-437f-954a-04698f5ea0d9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df5c6ee1-a45a-437f-954a-04698f5ea0d9.shogun-image {
  box-sizing: border-box;
}


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



  #s-df5c6ee1-a45a-437f-954a-04698f5ea0d9 img.shogun-image,
  #s-df5c6ee1-a45a-437f-954a-04698f5ea0d9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-df5c6ee1-a45a-437f-954a-04698f5ea0d9 {
    width: 100%;
    height: auto;
  }



  img.s-df5c6ee1-a45a-437f-954a-04698f5ea0d9.shogun-image {
    
    
  }


.s-df5c6ee1-a45a-437f-954a-04698f5ea0d9 .shogun-image-content {
  
    align-items: center;
  
}

.s-df5c6ee1-a45a-437f-954a-04698f5ea0d9.shg-align-container {
  text-align: center
}

.s-df5c6ee1-a45a-437f-954a-04698f5ea0d9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df5c6ee1-a45a-437f-954a-04698f5ea0d9.shogun-image {
  box-sizing: border-box;
}


}
#s-514da9c0-a2bc-422f-ada2-3183ea1fc706 {
  padding-top: 16%;
padding-left: 16%;
padding-bottom: 16%;
padding-right: 16%;
max-width: 512px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-514da9c0-a2bc-422f-ada2-3183ea1fc706 img.shogun-image,
  #s-514da9c0-a2bc-422f-ada2-3183ea1fc706 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-514da9c0-a2bc-422f-ada2-3183ea1fc706 {
    width: 100%;
    height: auto;
  }



  img.s-514da9c0-a2bc-422f-ada2-3183ea1fc706.shogun-image {
    
    
  }


.s-514da9c0-a2bc-422f-ada2-3183ea1fc706 .shogun-image-content {
  
    align-items: center;
  
}

.s-514da9c0-a2bc-422f-ada2-3183ea1fc706.shg-align-container {
  text-align: center
}

.s-514da9c0-a2bc-422f-ada2-3183ea1fc706.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-514da9c0-a2bc-422f-ada2-3183ea1fc706.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-514da9c0-a2bc-422f-ada2-3183ea1fc706 img.shogun-image,
  #s-514da9c0-a2bc-422f-ada2-3183ea1fc706 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-514da9c0-a2bc-422f-ada2-3183ea1fc706 {
    width: 100%;
    height: auto;
  }



  img.s-514da9c0-a2bc-422f-ada2-3183ea1fc706.shogun-image {
    
    
  }


.s-514da9c0-a2bc-422f-ada2-3183ea1fc706 .shogun-image-content {
  
    align-items: center;
  
}

.s-514da9c0-a2bc-422f-ada2-3183ea1fc706.shg-align-container {
  text-align: center
}

.s-514da9c0-a2bc-422f-ada2-3183ea1fc706.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-514da9c0-a2bc-422f-ada2-3183ea1fc706.shogun-image {
  box-sizing: border-box;
}


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



  #s-514da9c0-a2bc-422f-ada2-3183ea1fc706 img.shogun-image,
  #s-514da9c0-a2bc-422f-ada2-3183ea1fc706 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-514da9c0-a2bc-422f-ada2-3183ea1fc706 {
    width: 100%;
    height: auto;
  }



  img.s-514da9c0-a2bc-422f-ada2-3183ea1fc706.shogun-image {
    
    
  }


.s-514da9c0-a2bc-422f-ada2-3183ea1fc706 .shogun-image-content {
  
    align-items: center;
  
}

.s-514da9c0-a2bc-422f-ada2-3183ea1fc706.shg-align-container {
  text-align: center
}

.s-514da9c0-a2bc-422f-ada2-3183ea1fc706.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-514da9c0-a2bc-422f-ada2-3183ea1fc706.shogun-image {
  box-sizing: border-box;
}


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



  #s-514da9c0-a2bc-422f-ada2-3183ea1fc706 img.shogun-image,
  #s-514da9c0-a2bc-422f-ada2-3183ea1fc706 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-514da9c0-a2bc-422f-ada2-3183ea1fc706 {
    width: 100%;
    height: auto;
  }



  img.s-514da9c0-a2bc-422f-ada2-3183ea1fc706.shogun-image {
    
    
  }


.s-514da9c0-a2bc-422f-ada2-3183ea1fc706 .shogun-image-content {
  
    align-items: center;
  
}

.s-514da9c0-a2bc-422f-ada2-3183ea1fc706.shg-align-container {
  text-align: center
}

.s-514da9c0-a2bc-422f-ada2-3183ea1fc706.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-514da9c0-a2bc-422f-ada2-3183ea1fc706.shogun-image {
  box-sizing: border-box;
}


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



  #s-514da9c0-a2bc-422f-ada2-3183ea1fc706 img.shogun-image,
  #s-514da9c0-a2bc-422f-ada2-3183ea1fc706 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-514da9c0-a2bc-422f-ada2-3183ea1fc706 {
    width: 100%;
    height: auto;
  }



  img.s-514da9c0-a2bc-422f-ada2-3183ea1fc706.shogun-image {
    
    
  }


.s-514da9c0-a2bc-422f-ada2-3183ea1fc706 .shogun-image-content {
  
    align-items: center;
  
}

.s-514da9c0-a2bc-422f-ada2-3183ea1fc706.shg-align-container {
  text-align: center
}

.s-514da9c0-a2bc-422f-ada2-3183ea1fc706.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-514da9c0-a2bc-422f-ada2-3183ea1fc706.shogun-image {
  box-sizing: border-box;
}


}
#s-ac979a13-127f-4f7d-9235-423400b729a1 hr {
  border-top: 2px solid #ddd;
}

#s-6168466e-5e30-4488-870b-bd32673ed576 {
  margin-left: 0px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-6168466e-5e30-4488-870b-bd32673ed576 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-6168466e-5e30-4488-870b-bd32673ed576 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-6168466e-5e30-4488-870b-bd32673ed576 {
  
}
}@media (max-width: 767px){#s-6168466e-5e30-4488-870b-bd32673ed576 {
  
}
}
@media (min-width: 0px) {
[id="s-6168466e-5e30-4488-870b-bd32673ed576"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6168466e-5e30-4488-870b-bd32673ed576"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-6168466e-5e30-4488-870b-bd32673ed576"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-6168466e-5e30-4488-870b-bd32673ed576"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-6168466e-5e30-4488-870b-bd32673ed576"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-d2ff93ea-8cc6-41de-b3be-a278e2aabc60 {
  margin-top: 0px;
margin-bottom: 0px;
padding-left: 10%;
padding-right: 10%;
min-height: 500px;
background-color: rgba(0, 0, 0, 0.04);
}
@media (min-width: 1200px){#s-d2ff93ea-8cc6-41de-b3be-a278e2aabc60 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-d2ff93ea-8cc6-41de-b3be-a278e2aabc60 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-d2ff93ea-8cc6-41de-b3be-a278e2aabc60 {
  
}
}@media (max-width: 767px){#s-d2ff93ea-8cc6-41de-b3be-a278e2aabc60 {
  padding-top: 60px;
padding-left: 20px;
padding-bottom: 60px;
padding-right: 20px;
}
}







#s-d2ff93ea-8cc6-41de-b3be-a278e2aabc60 > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-d2ff93ea-8cc6-41de-b3be-a278e2aabc60.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-960353c2-2ada-4ef4-b8f0-078cbecd8113 {
  margin-top: 0px;
margin-bottom: 30px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-960353c2-2ada-4ef4-b8f0-078cbecd8113 .shogun-heading-component h2 {
  color: rgba(33, 33, 33, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 24px;
  
  letter-spacing: -2px;
  text-align: center;
}



#s-80b2fa6d-2ae4-4818-ae88-73c62f88ec67 {
  margin-top: -22px;
margin-bottom: 19px;
}

.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-26a7b756-bd93-4178-bb48-9fa7b13e38e7 {
  padding-top: 19px;
padding-left: 20%;
padding-bottom: 19px;
padding-right: 20%;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: rgba(81, 151, 152, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(81, 151, 152, 1);
letter-spacing: 3px;
}
#s-26a7b756-bd93-4178-bb48-9fa7b13e38e7:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: #2C2A34 !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-26a7b756-bd93-4178-bb48-9fa7b13e38e7:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-26a7b756-bd93-4178-bb48-9fa7b13e38e7-root {
    text-align: center;
  }


#s-26a7b756-bd93-4178-bb48-9fa7b13e38e7.shg-btn {
  color: rgba(81, 151, 152, 1);
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-26a7b756-bd93-4178-bb48-9fa7b13e38e7-root {
    text-align: center;
  }


#s-26a7b756-bd93-4178-bb48-9fa7b13e38e7.shg-btn {
  color: rgba(81, 151, 152, 1);
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-26a7b756-bd93-4178-bb48-9fa7b13e38e7-root {
    text-align: center;
  }


#s-26a7b756-bd93-4178-bb48-9fa7b13e38e7.shg-btn {
  color: rgba(81, 151, 152, 1);
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-26a7b756-bd93-4178-bb48-9fa7b13e38e7-root {
    text-align: center;
  }


#s-26a7b756-bd93-4178-bb48-9fa7b13e38e7.shg-btn {
  color: rgba(81, 151, 152, 1);
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-26a7b756-bd93-4178-bb48-9fa7b13e38e7-root {
    text-align: center;
  }


#s-26a7b756-bd93-4178-bb48-9fa7b13e38e7.shg-btn {
  color: rgba(81, 151, 152, 1);
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-0d114cab-c037-429c-90a2-c9c64f36af19 {
  background-repeat: no-repeat;
background-size: cover;
border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
min-height: 500px;
background-position: center center;
}
@media (min-width: 1200px){#s-0d114cab-c037-429c-90a2-c9c64f36af19 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0d114cab-c037-429c-90a2-c9c64f36af19 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-0d114cab-c037-429c-90a2-c9c64f36af19 {
  
}
}@media (max-width: 767px){#s-0d114cab-c037-429c-90a2-c9c64f36af19 {
  
}
}







#s-0d114cab-c037-429c-90a2-c9c64f36af19 > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-0d114cab-c037-429c-90a2-c9c64f36af19.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-84c66372-9ef0-46ad-a6de-36d09f8edb8e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-84c66372-9ef0-46ad-a6de-36d09f8edb8e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-84c66372-9ef0-46ad-a6de-36d09f8edb8e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-84c66372-9ef0-46ad-a6de-36d09f8edb8e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-5a8b9047-923f-4d55-878c-3f4426793012 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 500px;
background-position: center center;
}








#s-5a8b9047-923f-4d55-878c-3f4426793012 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5a8b9047-923f-4d55-878c-3f4426793012.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ba47b7ba-3445-4c8e-9ddf-83f12131ec1f {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0%;
padding-left: 10%;
padding-bottom: 0%;
padding-right: 10%;
min-height: 500px;
background-color: rgba(0, 0, 0, 0.04);
}
@media (min-width: 1200px){#s-ba47b7ba-3445-4c8e-9ddf-83f12131ec1f {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ba47b7ba-3445-4c8e-9ddf-83f12131ec1f {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-ba47b7ba-3445-4c8e-9ddf-83f12131ec1f {
  
}
}@media (max-width: 767px){#s-ba47b7ba-3445-4c8e-9ddf-83f12131ec1f {
  
}
}







#s-ba47b7ba-3445-4c8e-9ddf-83f12131ec1f > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-ba47b7ba-3445-4c8e-9ddf-83f12131ec1f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0c194ca4-2349-4ac6-972c-c86c82fdca98 {
  margin-top: 0px;
margin-bottom: 30px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-0c194ca4-2349-4ac6-972c-c86c82fdca98 .shogun-heading-component h2 {
  color: rgba(33, 33, 33, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 24px;
  
  letter-spacing: -2px;
  text-align: center;
}



#s-d9c918e4-72d4-4fc1-ac5f-a4cf3e7ce9e7 {
  margin-top: -22px;
margin-bottom: 19px;
padding-left: 15%;
padding-right: 15%;
}

#s-b85afe7d-b6c2-47f2-81c7-029e1b81a91c {
  padding-top: 19px;
padding-left: 20%;
padding-bottom: 19px;
padding-right: 20%;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: rgba(81, 151, 152, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(81, 151, 152, 1);
letter-spacing: 3px;
}
#s-b85afe7d-b6c2-47f2-81c7-029e1b81a91c:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: #2C2A34 !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-b85afe7d-b6c2-47f2-81c7-029e1b81a91c:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-b85afe7d-b6c2-47f2-81c7-029e1b81a91c-root {
    text-align: center;
  }


#s-b85afe7d-b6c2-47f2-81c7-029e1b81a91c.shg-btn {
  color: rgba(81, 151, 152, 1);
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-b85afe7d-b6c2-47f2-81c7-029e1b81a91c-root {
    text-align: center;
  }


#s-b85afe7d-b6c2-47f2-81c7-029e1b81a91c.shg-btn {
  color: rgba(81, 151, 152, 1);
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b85afe7d-b6c2-47f2-81c7-029e1b81a91c-root {
    text-align: center;
  }


#s-b85afe7d-b6c2-47f2-81c7-029e1b81a91c.shg-btn {
  color: rgba(81, 151, 152, 1);
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b85afe7d-b6c2-47f2-81c7-029e1b81a91c-root {
    text-align: center;
  }


#s-b85afe7d-b6c2-47f2-81c7-029e1b81a91c.shg-btn {
  color: rgba(81, 151, 152, 1);
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-b85afe7d-b6c2-47f2-81c7-029e1b81a91c-root {
    text-align: center;
  }


#s-b85afe7d-b6c2-47f2-81c7-029e1b81a91c.shg-btn {
  color: rgba(81, 151, 152, 1);
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-16c17c9e-6d7a-4d58-8e4c-5eecb6ced306 {
  margin-left: 0px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-16c17c9e-6d7a-4d58-8e4c-5eecb6ced306 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-16c17c9e-6d7a-4d58-8e4c-5eecb6ced306 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-16c17c9e-6d7a-4d58-8e4c-5eecb6ced306 {
  
}
}@media (max-width: 767px){#s-16c17c9e-6d7a-4d58-8e4c-5eecb6ced306 {
  
}
}
@media (min-width: 0px) {
[id="s-16c17c9e-6d7a-4d58-8e4c-5eecb6ced306"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-16c17c9e-6d7a-4d58-8e4c-5eecb6ced306"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-16c17c9e-6d7a-4d58-8e4c-5eecb6ced306"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-16c17c9e-6d7a-4d58-8e4c-5eecb6ced306"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-16c17c9e-6d7a-4d58-8e4c-5eecb6ced306"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-6fdddaad-dd59-4150-892c-068e79829f88 {
  margin-top: 0px;
margin-bottom: 0px;
padding-left: 10%;
padding-right: 10%;
min-height: 500px;
background-color: rgba(0, 0, 0, 0.04);
}
@media (min-width: 1200px){#s-6fdddaad-dd59-4150-892c-068e79829f88 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-6fdddaad-dd59-4150-892c-068e79829f88 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-6fdddaad-dd59-4150-892c-068e79829f88 {
  
}
}@media (max-width: 767px){#s-6fdddaad-dd59-4150-892c-068e79829f88 {
  padding-top: 60px;
padding-left: 20px;
padding-bottom: 60px;
padding-right: 20px;
}
}







#s-6fdddaad-dd59-4150-892c-068e79829f88 > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-6fdddaad-dd59-4150-892c-068e79829f88.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9f60c1a7-3dc0-4797-be02-4fa3482a7e04 {
  margin-top: 0px;
margin-bottom: 30px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-9f60c1a7-3dc0-4797-be02-4fa3482a7e04 .shogun-heading-component h2 {
  color: rgba(33, 33, 33, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 24px;
  
  letter-spacing: -2px;
  text-align: center;
}



#s-21168ac1-2698-4274-b6df-eb250ca0a9ae {
  margin-top: -22px;
margin-bottom: 19px;
}

#s-80d284d7-430c-4e74-88fb-371530bcbbf6 {
  padding-top: 19px;
padding-left: 20%;
padding-bottom: 19px;
padding-right: 20%;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: rgba(81, 151, 152, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(81, 151, 152, 1);
letter-spacing: 3px;
}
#s-80d284d7-430c-4e74-88fb-371530bcbbf6:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: #2C2A34 !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-80d284d7-430c-4e74-88fb-371530bcbbf6:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-80d284d7-430c-4e74-88fb-371530bcbbf6-root {
    text-align: center;
  }


#s-80d284d7-430c-4e74-88fb-371530bcbbf6.shg-btn {
  color: rgba(81, 151, 152, 1);
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-80d284d7-430c-4e74-88fb-371530bcbbf6-root {
    text-align: center;
  }


#s-80d284d7-430c-4e74-88fb-371530bcbbf6.shg-btn {
  color: rgba(81, 151, 152, 1);
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-80d284d7-430c-4e74-88fb-371530bcbbf6-root {
    text-align: center;
  }


#s-80d284d7-430c-4e74-88fb-371530bcbbf6.shg-btn {
  color: rgba(81, 151, 152, 1);
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-80d284d7-430c-4e74-88fb-371530bcbbf6-root {
    text-align: center;
  }


#s-80d284d7-430c-4e74-88fb-371530bcbbf6.shg-btn {
  color: rgba(81, 151, 152, 1);
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-80d284d7-430c-4e74-88fb-371530bcbbf6-root {
    text-align: center;
  }


#s-80d284d7-430c-4e74-88fb-371530bcbbf6.shg-btn {
  color: rgba(81, 151, 152, 1);
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-f696167e-a7a2-4ee6-adb7-d1d2241773dd {
  background-repeat: no-repeat;
background-size: cover;
border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
min-height: 500px;
background-position: center center;
}
@media (min-width: 1200px){#s-f696167e-a7a2-4ee6-adb7-d1d2241773dd {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f696167e-a7a2-4ee6-adb7-d1d2241773dd {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-f696167e-a7a2-4ee6-adb7-d1d2241773dd {
  
}
}@media (max-width: 767px){#s-f696167e-a7a2-4ee6-adb7-d1d2241773dd {
  
}
}







#s-f696167e-a7a2-4ee6-adb7-d1d2241773dd > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-f696167e-a7a2-4ee6-adb7-d1d2241773dd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d16078df-7070-4b09-978d-de8de86faa30 hr {
  border-top: 25px solid #ddd;
}

#s-de6f2269-68b3-41a2-8e77-c9d914dde19c {
  margin-bottom: -20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-de6f2269-68b3-41a2-8e77-c9d914dde19c .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-50986d75-1be8-4a06-8f00-9ce358063ef4 {
  margin-left: 10%;
margin-right: 10%;
}

#s-cc0eeb24-ed88-471b-bbcb-386fa7ec0048 {
  margin-left: 4%;
margin-right: 4%;
}

@media (min-width: 0px) {
[id="s-cc0eeb24-ed88-471b-bbcb-386fa7ec0048"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cc0eeb24-ed88-471b-bbcb-386fa7ec0048"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-cc0eeb24-ed88-471b-bbcb-386fa7ec0048"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-cc0eeb24-ed88-471b-bbcb-386fa7ec0048"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-15fbed88-a2bb-47f6-8f4e-f936c0b257ff {
  background-repeat: no-repeat;
background-size: contain;
margin-left: 0%;
margin-right: 0%;
min-height: 500px;
background-position: center center;
}








#s-15fbed88-a2bb-47f6-8f4e-f936c0b257ff > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-15fbed88-a2bb-47f6-8f4e-f936c0b257ff.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b4122137-0f6e-4fd1-b079-7142d4e5578d {
  margin-top: -20px;
margin-bottom: -20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b4122137-0f6e-4fd1-b079-7142d4e5578d .shogun-heading-component h3 {
  color: ;
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 3px;
  
}



#s-570ec65c-0795-47b5-8fd1-8df48039cfad {
  padding-left: 22%;
padding-right: 22%;
}

#s-4f8a1bbf-5a99-44de-ac49-297b3e8c465a {
  background-repeat: no-repeat;
background-size: contain;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 0%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 0%;
min-height: 500px;
background-position: center center;
}
@media (min-width: 1200px){#s-4f8a1bbf-5a99-44de-ac49-297b3e8c465a {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-4f8a1bbf-5a99-44de-ac49-297b3e8c465a {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-4f8a1bbf-5a99-44de-ac49-297b3e8c465a {
  
}
}@media (max-width: 767px){#s-4f8a1bbf-5a99-44de-ac49-297b3e8c465a {
  
}
}







#s-4f8a1bbf-5a99-44de-ac49-297b3e8c465a > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-4f8a1bbf-5a99-44de-ac49-297b3e8c465a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ad284710-536c-4aa9-bee7-0d016f0a6377 {
  margin-top: -20px;
margin-bottom: -20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ad284710-536c-4aa9-bee7-0d016f0a6377 .shogun-heading-component h3 {
  color: ;
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 3px;
  
}



#s-397f5da9-fd9d-4997-9df9-2ee632395090 {
  padding-left: 22%;
padding-right: 22%;
}

#s-a2a8a65e-1af7-40f4-81ab-4e74743e6f3d hr {
  border-top: 2px solid #ddd;
}

#s-acfa5a18-c839-461e-917e-12df6f93bcc4 {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
background-color: rgba(81, 151, 152, 1);
}








#s-acfa5a18-c839-461e-917e-12df6f93bcc4 > .shg-box-overlay {
  background-color: rgba(152, 36, 36, 1);
  opacity: 0;
}#s-acfa5a18-c839-461e-917e-12df6f93bcc4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-89847743-480b-4d6c-b092-47a1c1041469 {
  margin-top: 100px;
margin-left: 10%;
margin-bottom: -20px;
margin-right: 10%;
padding-left: 8%;
padding-right: 8%;
}

#s-5a66dbbb-61f9-4128-bbfd-d3fb7f08307e {
  margin-left: 10%;
margin-bottom: 13px;
margin-right: 10%;
}

#s-11e12fef-d1c3-4f76-9cce-4ad0c7056dcd {
  margin-bottom: 100px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
}

#s-11e12fef-d1c3-4f76-9cce-4ad0c7056dcd .shogun-form-box label.shogun-form-label {
  display: flex;
  font-weight:  normal;
  color: #000;
  
  
  
  
  
  
  padding-top: 0px;
  padding-bottom: 0px;
  
  
}

#s-11e12fef-d1c3-4f76-9cce-4ad0c7056dcd .shogun-form-success-msg {
  visibility: hidden;
  display: flex;
  align-items: center;
  font-size: ;
  font-style: ;
  color: rgba(81, 151, 152, 1);
  font-family: Poppins;
  font-weight: ;
  line-height: 3em;
  
  justify-content: center;
}

#s-11e12fef-d1c3-4f76-9cce-4ad0c7056dcd .shogun-form-success-msg > svg {
  margin-right: 4px;
  stroke: rgba(81, 151, 152, 1);
}

#s-11e12fef-d1c3-4f76-9cce-4ad0c7056dcd .shogun-form-error-msg-container, #s-11e12fef-d1c3-4f76-9cce-4ad0c7056dcd .shogun-form-field-error-msg-container {
  display: none;
}

#s-11e12fef-d1c3-4f76-9cce-4ad0c7056dcd .shogun-form-error-msg {
  
  
  color: #ff0000;
  font-family: Poppins;
  
  line-height: 3em;
  
  
}

#s-11e12fef-d1c3-4f76-9cce-4ad0c7056dcd .shogun-form-field-error-msg > svg {
  margin-right: 4px;
  stroke: #ff0000;
}

#s-fa96c543-0243-4f88-b211-fe3cb9eb0e64 {
  padding-left: 8%;
padding-right: 8%;
}

@media (min-width: 0px) {
[id="s-fa96c543-0243-4f88-b211-fe3cb9eb0e64"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fa96c543-0243-4f88-b211-fe3cb9eb0e64"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-fa96c543-0243-4f88-b211-fe3cb9eb0e64"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-fa96c543-0243-4f88-b211-fe3cb9eb0e64"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-fa96c543-0243-4f88-b211-fe3cb9eb0e64"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-fa96c543-0243-4f88-b211-fe3cb9eb0e64"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-fa96c543-0243-4f88-b211-fe3cb9eb0e64"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 0px) {
[id="s-ff373d58-2074-4c2e-8908-a4ad85c2027d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ff373d58-2074-4c2e-8908-a4ad85c2027d"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-ff373d58-2074-4c2e-8908-a4ad85c2027d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ff373d58-2074-4c2e-8908-a4ad85c2027d"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-ff373d58-2074-4c2e-8908-a4ad85c2027d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ff373d58-2074-4c2e-8908-a4ad85c2027d"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-ff373d58-2074-4c2e-8908-a4ad85c2027d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

.shogun-form-text-input-field {
  width: 100%;
}

.shogun-form-text-input-field:focus {
  outline: none;
}

textarea.shogun-form-text-input-field {
  resize: none;
  overflow: hidden;
  min-height: 70px !important;
}

#s-e8002b48-446b-46c7-9a08-6643fd83dcc8 {
  margin-top: 0px;
margin-bottom: 0px;
}

#s-e8002b48-446b-46c7-9a08-6643fd83dcc8  .shogun-form-text-input-field {
  border-width: 1px;
  border-color: rgba(255, 255, 255, 1);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 1);
  
  font-size: ;
  font-style: ;
  color: rgba(0, 0, 0, 1);
  font-family: Poppins;
  font-weight: ;
  line-height: 2.75em;
  
}

#s-e8002b48-446b-46c7-9a08-6643fd83dcc8  .shogun-form-text-input-field::placeholder {
  font-size: ;
  font-style: ;
  color: rgba(81, 151, 152, 1);
  font-family: ;
  font-weight: ;
  
  
}


#s-e8002b48-446b-46c7-9a08-6643fd83dcc8 .shogun-form-text-input-field:hover {
  border-width: 1px;
  border-color: rgba(81, 151, 152, 1);
  border-radius: 2px;
  
  color: rgba(81, 151, 152, 1);
}



#s-e8002b48-446b-46c7-9a08-6643fd83dcc8 .shogun-form-text-input-field:focus {
  border-width: 1px;
  border-color: rgba(81, 151, 152, 1);
  border-radius: 2px;
  
  color: rgba(255, 255, 255, 1);
}


.shogun-form-box-submit {
  border: 0;
  font-size: 1em;
  line-height: 1.8;
}

.shogun-form-box-submit:focus {
  outline: none;
}

.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-14061f51-9956-4ceb-93e1-b67d3ac707dd {
  margin-top: 5px;
padding-top: 13px;
padding-left: 20px;
padding-bottom: 13px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 0px;
color: #FFFFFF;
background-color: rgba(81, 151, 152, 0);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
font-family: Poppins;
letter-spacing: 3px;
}
#s-14061f51-9956-4ceb-93e1-b67d3ac707dd:hover {border-style: solid !important;
border-top-width: 0px !important;
border-left-width: 0px !important;
border-bottom-width: 0px !important;
border-right-width: 0px !important;
border-color: #2C2A34 !important;
border-radius: 4px !important;
background-color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-14061f51-9956-4ceb-93e1-b67d3ac707dd:active {border-style: solid !important;
border-top-width: 0px !important;
border-left-width: 0px !important;
border-bottom-width: 0px !important;
border-right-width: 0px !important;
border-color: #2C2A34 !important;
border-radius: 4px !important;
background-color: rgba(81, 151, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (max-width: 767px){#s-14061f51-9956-4ceb-93e1-b67d3ac707dd {
  margin-top: 20px;
}
}
#s-14061f51-9956-4ceb-93e1-b67d3ac707dd[disabled],
#s-14061f51-9956-4ceb-93e1-b67d3ac707dd[disabled]:hover,
#s-14061f51-9956-4ceb-93e1-b67d3ac707dd[disabled]:focus {
  background-color: #D7D5E2 !important;
}

#s-14061f51-9956-4ceb-93e1-b67d3ac707dd {
  display:  block ;
  width:  100% ;
}


#s-bff3f530-5c58-432a-9f94-78bc74263573 hr {
  border-top: 2px solid #ddd;
}

/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

@media (max-width: 1024px) {
  .shg-c,
  .shg-box {
    background-attachment: scroll !important;
  }
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape) {
  .shg-box {
    background-attachment: scroll !important;
  }
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}
.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-lazyload-bg-image {
  display: none;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}
/* <-- User Content Animations */

.shogun-form-error-msg, .shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}

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