.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-ebb0f159-093f-4bc9-8238-740c14e4458e {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 1200px;
}
@media (min-width: 1200px){#s-ebb0f159-093f-4bc9-8238-740c14e4458e {
  margin-top: 60px;
padding-left: 4%;
padding-right: 4%;
}
}







#s-ebb0f159-093f-4bc9-8238-740c14e4458e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ebb0f159-093f-4bc9-8238-740c14e4458e.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-c2e8e87d-f686-4e35-9119-6736a8c050dd {
  max-width: 2731px;
aspect-ratio: 2731/1697;
text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-c2e8e87d-f686-4e35-9119-6736a8c050dd {
  margin-top: 51px;
margin-left: 5%;
margin-bottom: 31px;
margin-right: 5%;
}
}@media (max-width: 767px){#s-c2e8e87d-f686-4e35-9119-6736a8c050dd {
  margin-left: 3%;
margin-right: 3%;
}
}




  #s-c2e8e87d-f686-4e35-9119-6736a8c050dd img.shogun-image,
  #s-c2e8e87d-f686-4e35-9119-6736a8c050dd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c2e8e87d-f686-4e35-9119-6736a8c050dd {
    width: 100%;
    height: auto;
  }



  #s-c2e8e87d-f686-4e35-9119-6736a8c050dd img.shogun-image {
    

    
    
    
  }


#s-c2e8e87d-f686-4e35-9119-6736a8c050dd .shogun-image-content {
  
    align-items: 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-3df6e8dd-33f9-4e82-8d91-260ed98b31ff {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-3df6e8dd-33f9-4e82-8d91-260ed98b31ff {
  margin-top: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-3df6e8dd-33f9-4e82-8d91-260ed98b31ff {
  margin-left: 17%;
margin-right: 17%;
}
}@media (max-width: 767px){#s-3df6e8dd-33f9-4e82-8d91-260ed98b31ff {
  margin-top: 43px;
padding-top: 15px;
padding-bottom: 15px;
}
}
#s-3df6e8dd-33f9-4e82-8d91-260ed98b31ff .shogun-heading-component h2 {
  color: rgba(219, 0, 50, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



.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-690c2cb5-35fb-4eaa-9a66-643b7f254f5e {
  margin-top: 50px;
margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
padding-left: 20px;
padding-right: 20px;
max-width: 900px;
}

#s-e53e7004-77a2-4699-9ff6-f8e29baf61eb {
  min-height: 50px;
}








#s-e53e7004-77a2-4699-9ff6-f8e29baf61eb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e53e7004-77a2-4699-9ff6-f8e29baf61eb.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-cc37220c-eb94-487b-ae42-b9384e01e5b4 {
  text-align: center;
}
@media (min-width: 1200px){#s-cc37220c-eb94-487b-ae42-b9384e01e5b4 {
  margin-left: 10%;
margin-right: 10%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-cc37220c-eb94-487b-ae42-b9384e01e5b4 {
  margin-top: 0px;
margin-left: 14%;
margin-bottom: 0px;
margin-right: 14%;
}
}






  img.s-cc37220c-eb94-487b-ae42-b9384e01e5b4.shogun-image {
    
    
  }


.s-cc37220c-eb94-487b-ae42-b9384e01e5b4 .shogun-image-content {
  
    align-items: center;
  
}

.s-cc37220c-eb94-487b-ae42-b9384e01e5b4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc37220c-eb94-487b-ae42-b9384e01e5b4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc37220c-eb94-487b-ae42-b9384e01e5b4.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-cc37220c-eb94-487b-ae42-b9384e01e5b4.shogun-image {
    
    
  }


.s-cc37220c-eb94-487b-ae42-b9384e01e5b4 .shogun-image-content {
  
    align-items: center;
  
}

.s-cc37220c-eb94-487b-ae42-b9384e01e5b4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc37220c-eb94-487b-ae42-b9384e01e5b4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc37220c-eb94-487b-ae42-b9384e01e5b4.shogun-image {
  box-sizing: border-box;
}

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





  img.s-cc37220c-eb94-487b-ae42-b9384e01e5b4.shogun-image {
    
    
  }


.s-cc37220c-eb94-487b-ae42-b9384e01e5b4 .shogun-image-content {
  
    align-items: center;
  
}

.s-cc37220c-eb94-487b-ae42-b9384e01e5b4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc37220c-eb94-487b-ae42-b9384e01e5b4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc37220c-eb94-487b-ae42-b9384e01e5b4.shogun-image {
  box-sizing: border-box;
}

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





  img.s-cc37220c-eb94-487b-ae42-b9384e01e5b4.shogun-image {
    
    
  }


.s-cc37220c-eb94-487b-ae42-b9384e01e5b4 .shogun-image-content {
  
    align-items: center;
  
}

.s-cc37220c-eb94-487b-ae42-b9384e01e5b4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc37220c-eb94-487b-ae42-b9384e01e5b4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc37220c-eb94-487b-ae42-b9384e01e5b4.shogun-image {
  box-sizing: border-box;
}

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





  img.s-cc37220c-eb94-487b-ae42-b9384e01e5b4.shogun-image {
    
    
  }


.s-cc37220c-eb94-487b-ae42-b9384e01e5b4 .shogun-image-content {
  
    align-items: center;
  
}

.s-cc37220c-eb94-487b-ae42-b9384e01e5b4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc37220c-eb94-487b-ae42-b9384e01e5b4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc37220c-eb94-487b-ae42-b9384e01e5b4.shogun-image {
  box-sizing: border-box;
}

}
#s-a79b2c98-3b63-4ec3-b8c7-9c0cc1a33ce6 {
  margin-top: 50px;
margin-left: auto;
margin-right: auto;
padding-left: 20px;
padding-right: 20px;
}
@media (min-width: 1200px){#s-a79b2c98-3b63-4ec3-b8c7-9c0cc1a33ce6 {
  margin-top: 81px;
padding-top: 19px;
padding-bottom: 19px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a79b2c98-3b63-4ec3-b8c7-9c0cc1a33ce6 {
  padding-top: 12px;
padding-bottom: 12px;
}
}@media (max-width: 767px){#s-a79b2c98-3b63-4ec3-b8c7-9c0cc1a33ce6 {
  margin-top: 51px;
margin-bottom: 51px;
}
}
.shg-row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-height: inherit;
  max-height: inherit;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

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

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

@media (min-width: 0px) {
[id="s-87ce3391-9cc5-4bcf-acf3-3c3b2326a0cf"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-87ce3391-9cc5-4bcf-acf3-3c3b2326a0cf"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-87ce3391-9cc5-4bcf-acf3-3c3b2326a0cf"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-87ce3391-9cc5-4bcf-acf3-3c3b2326a0cf"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-5a1cd5b5-aa8b-4747-a038-c306505ffbe5 {
  padding-top: 5px;
padding-left: 5%;
padding-bottom: 5px;
padding-right: 5%;
min-height: 50px;
}








#s-5a1cd5b5-aa8b-4747-a038-c306505ffbe5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5a1cd5b5-aa8b-4747-a038-c306505ffbe5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-product-image-wrapper img.shogun-image,
.shogun-component img.shogun-image {
  display: inline-block;
  vertical-align: middle;
}

.shg-product-img-placeholder img {
  padding: 3rem;
  background: rgba(0, 0, 0, 0.1);
}

.shg-product-image-wrapper {
  display: none;
  position: relative;
  width: 100%;
}

.shg-product-image-wrapper.visible {
  display: inline-block;
}

.shg-product-image-wrapper .shg-product-image-wrapper a {
  text-decoration: none !important;
  border-bottom: 0 !important;
}

.shg-product-image-wrapper .shg-image-zoom {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  max-width: 100%;
  min-height: 100%;
}

.shg-c.shg-align-center .shg-image-zoom {
  margin: 0 auto;
}

.shg-c.shg-align-right .shg-image-zoom {
  margin-left: auto;
}

.shg-image-zoom .shg-image-zoom-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: transform 0.5s ease-out;
  transform: scale(1);
}

/**
  Fix for IE11, as min-width does not works there.
**/
@media screen\0 {
  .shg-product-image-wrapper > .shogun-image {
    width: 100%;
  }
}

#s-634b14e5-f861-476e-8834-69b4b7404bae {
  text-align: left;
}
@media (max-width: 767px){#s-634b14e5-f861-476e-8834-69b4b7404bae {
  margin-top: 20px;
}
}


.shg-c#s-634b14e5-f861-476e-8834-69b4b7404bae .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-634b14e5-f861-476e-8834-69b4b7404bae img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-634b14e5-f861-476e-8834-69b4b7404bae .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-634b14e5-f861-476e-8834-69b4b7404bae img.shogun-image {
  width: 100%;
}



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

.shg-c#s-634b14e5-f861-476e-8834-69b4b7404bae .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-634b14e5-f861-476e-8834-69b4b7404bae img.shogun-image {
  width: 100%;
}



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

.shg-c#s-634b14e5-f861-476e-8834-69b4b7404bae .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-634b14e5-f861-476e-8834-69b4b7404bae img.shogun-image {
  width: 100%;
}



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

.shg-c#s-634b14e5-f861-476e-8834-69b4b7404bae .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-634b14e5-f861-476e-8834-69b4b7404bae img.shogun-image {
  width: 100%;
}



}
#s-10cd9760-928c-473e-912b-3052492badf2 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 20px;
margin-right: 10px;
}

.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-6d463108-f114-4736-bcc1-b55810293b42 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-6d463108-f114-4736-bcc1-b55810293b42:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-6d463108-f114-4736-bcc1-b55810293b42:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-6d463108-f114-4736-bcc1-b55810293b42-root {
    text-align: center;
  }


#s-6d463108-f114-4736-bcc1-b55810293b42.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-6d463108-f114-4736-bcc1-b55810293b42-root {
    text-align: center;
  }


#s-6d463108-f114-4736-bcc1-b55810293b42.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6d463108-f114-4736-bcc1-b55810293b42-root {
    text-align: center;
  }


#s-6d463108-f114-4736-bcc1-b55810293b42.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6d463108-f114-4736-bcc1-b55810293b42-root {
    text-align: center;
  }


#s-6d463108-f114-4736-bcc1-b55810293b42.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-6d463108-f114-4736-bcc1-b55810293b42-root {
    text-align: center;
  }


#s-6d463108-f114-4736-bcc1-b55810293b42.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-bf103984-f574-45b3-aa64-f0fd6b91085f {
  padding-top: 5px;
padding-left: 5%;
padding-bottom: 5px;
padding-right: 5%;
min-height: 50px;
}








#s-bf103984-f574-45b3-aa64-f0fd6b91085f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bf103984-f574-45b3-aa64-f0fd6b91085f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ee8c3791-5f01-41f6-9626-be1dcf62d325 {
  text-align: left;
}



.shg-c#s-ee8c3791-5f01-41f6-9626-be1dcf62d325 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ee8c3791-5f01-41f6-9626-be1dcf62d325 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-ee8c3791-5f01-41f6-9626-be1dcf62d325 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ee8c3791-5f01-41f6-9626-be1dcf62d325 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ee8c3791-5f01-41f6-9626-be1dcf62d325 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ee8c3791-5f01-41f6-9626-be1dcf62d325 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ee8c3791-5f01-41f6-9626-be1dcf62d325 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ee8c3791-5f01-41f6-9626-be1dcf62d325 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ee8c3791-5f01-41f6-9626-be1dcf62d325 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ee8c3791-5f01-41f6-9626-be1dcf62d325 img.shogun-image {
  width: 100%;
}



}
#s-c2a28371-0a9e-412a-9a9b-61684034a04a {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 20px;
margin-right: 10px;
}

#s-75d59077-f7fb-4fb9-8a0b-ed59a06e24fc {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-75d59077-f7fb-4fb9-8a0b-ed59a06e24fc:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-75d59077-f7fb-4fb9-8a0b-ed59a06e24fc:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-75d59077-f7fb-4fb9-8a0b-ed59a06e24fc-root {
    text-align: center;
  }


#s-75d59077-f7fb-4fb9-8a0b-ed59a06e24fc.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-75d59077-f7fb-4fb9-8a0b-ed59a06e24fc-root {
    text-align: center;
  }


#s-75d59077-f7fb-4fb9-8a0b-ed59a06e24fc.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-75d59077-f7fb-4fb9-8a0b-ed59a06e24fc-root {
    text-align: center;
  }


#s-75d59077-f7fb-4fb9-8a0b-ed59a06e24fc.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-75d59077-f7fb-4fb9-8a0b-ed59a06e24fc-root {
    text-align: center;
  }


#s-75d59077-f7fb-4fb9-8a0b-ed59a06e24fc.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-75d59077-f7fb-4fb9-8a0b-ed59a06e24fc-root {
    text-align: center;
  }


#s-75d59077-f7fb-4fb9-8a0b-ed59a06e24fc.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-394bc337-0a6a-42e0-8a2f-e4c9932d2d44 {
  padding-top: 5px;
padding-left: 5%;
padding-bottom: 5px;
padding-right: 5%;
min-height: 50px;
}








#s-394bc337-0a6a-42e0-8a2f-e4c9932d2d44 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-394bc337-0a6a-42e0-8a2f-e4c9932d2d44.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d707b11f-0cda-4038-9c40-d1d681836fd7 {
  text-align: left;
}



.shg-c#s-d707b11f-0cda-4038-9c40-d1d681836fd7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d707b11f-0cda-4038-9c40-d1d681836fd7 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-d707b11f-0cda-4038-9c40-d1d681836fd7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d707b11f-0cda-4038-9c40-d1d681836fd7 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d707b11f-0cda-4038-9c40-d1d681836fd7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d707b11f-0cda-4038-9c40-d1d681836fd7 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d707b11f-0cda-4038-9c40-d1d681836fd7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d707b11f-0cda-4038-9c40-d1d681836fd7 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d707b11f-0cda-4038-9c40-d1d681836fd7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d707b11f-0cda-4038-9c40-d1d681836fd7 img.shogun-image {
  width: 100%;
}



}
#s-e098b90b-183c-4a66-8ad6-41825821717f {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 20px;
margin-right: 10px;
}

#s-511355ff-b40f-4860-813b-606b6e66e7bf {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-511355ff-b40f-4860-813b-606b6e66e7bf:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-511355ff-b40f-4860-813b-606b6e66e7bf:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-511355ff-b40f-4860-813b-606b6e66e7bf-root {
    text-align: center;
  }


#s-511355ff-b40f-4860-813b-606b6e66e7bf.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-511355ff-b40f-4860-813b-606b6e66e7bf-root {
    text-align: center;
  }


#s-511355ff-b40f-4860-813b-606b6e66e7bf.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-511355ff-b40f-4860-813b-606b6e66e7bf-root {
    text-align: center;
  }


#s-511355ff-b40f-4860-813b-606b6e66e7bf.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-511355ff-b40f-4860-813b-606b6e66e7bf-root {
    text-align: center;
  }


#s-511355ff-b40f-4860-813b-606b6e66e7bf.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-511355ff-b40f-4860-813b-606b6e66e7bf-root {
    text-align: center;
  }


#s-511355ff-b40f-4860-813b-606b6e66e7bf.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
@media (min-width: 0px) {
[id="s-80b906c9-5525-4d9f-9e18-b91df9c3acb8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-80b906c9-5525-4d9f-9e18-b91df9c3acb8"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-80b906c9-5525-4d9f-9e18-b91df9c3acb8"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-80b906c9-5525-4d9f-9e18-b91df9c3acb8"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-971a9a45-7118-411c-b53c-c66c2f783f36 {
  padding-top: 5px;
padding-left: 5%;
padding-bottom: 5px;
padding-right: 5%;
min-height: 50px;
}








#s-971a9a45-7118-411c-b53c-c66c2f783f36 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-971a9a45-7118-411c-b53c-c66c2f783f36.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1e9be646-c045-4640-93a7-714a8d3817cc {
  text-align: left;
}



.shg-c#s-1e9be646-c045-4640-93a7-714a8d3817cc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1e9be646-c045-4640-93a7-714a8d3817cc img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-1e9be646-c045-4640-93a7-714a8d3817cc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1e9be646-c045-4640-93a7-714a8d3817cc img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1e9be646-c045-4640-93a7-714a8d3817cc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1e9be646-c045-4640-93a7-714a8d3817cc img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1e9be646-c045-4640-93a7-714a8d3817cc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1e9be646-c045-4640-93a7-714a8d3817cc img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1e9be646-c045-4640-93a7-714a8d3817cc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1e9be646-c045-4640-93a7-714a8d3817cc img.shogun-image {
  width: 100%;
}



}
#s-9c8cc927-b38e-4598-a76a-ac218e1e25cf {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 20px;
margin-right: 10px;
}

#s-7d21b305-2f37-4ad1-978b-27b7da8bbd63 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-7d21b305-2f37-4ad1-978b-27b7da8bbd63:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-7d21b305-2f37-4ad1-978b-27b7da8bbd63:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-7d21b305-2f37-4ad1-978b-27b7da8bbd63-root {
    text-align: center;
  }


#s-7d21b305-2f37-4ad1-978b-27b7da8bbd63.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-7d21b305-2f37-4ad1-978b-27b7da8bbd63-root {
    text-align: center;
  }


#s-7d21b305-2f37-4ad1-978b-27b7da8bbd63.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7d21b305-2f37-4ad1-978b-27b7da8bbd63-root {
    text-align: center;
  }


#s-7d21b305-2f37-4ad1-978b-27b7da8bbd63.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7d21b305-2f37-4ad1-978b-27b7da8bbd63-root {
    text-align: center;
  }


#s-7d21b305-2f37-4ad1-978b-27b7da8bbd63.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-7d21b305-2f37-4ad1-978b-27b7da8bbd63-root {
    text-align: center;
  }


#s-7d21b305-2f37-4ad1-978b-27b7da8bbd63.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-8ac67930-8c6f-44b6-9820-69746f5d9e5f {
  padding-top: 5px;
padding-left: 5%;
padding-bottom: 5px;
padding-right: 5%;
min-height: 50px;
}








#s-8ac67930-8c6f-44b6-9820-69746f5d9e5f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8ac67930-8c6f-44b6-9820-69746f5d9e5f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6574226e-ae67-4280-bfee-3ad207f0bd47 {
  text-align: left;
}
@media (max-width: 767px){#s-6574226e-ae67-4280-bfee-3ad207f0bd47 {
  margin-top: 20px;
}
}


.shg-c#s-6574226e-ae67-4280-bfee-3ad207f0bd47 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6574226e-ae67-4280-bfee-3ad207f0bd47 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-6574226e-ae67-4280-bfee-3ad207f0bd47 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6574226e-ae67-4280-bfee-3ad207f0bd47 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6574226e-ae67-4280-bfee-3ad207f0bd47 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6574226e-ae67-4280-bfee-3ad207f0bd47 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6574226e-ae67-4280-bfee-3ad207f0bd47 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6574226e-ae67-4280-bfee-3ad207f0bd47 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6574226e-ae67-4280-bfee-3ad207f0bd47 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6574226e-ae67-4280-bfee-3ad207f0bd47 img.shogun-image {
  width: 100%;
}



}
#s-4c69bcbf-7247-42ee-a947-8efacef21353 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 20px;
margin-right: 10px;
}

#s-528ff4eb-b90d-4642-a419-d5c8804bb392 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-528ff4eb-b90d-4642-a419-d5c8804bb392:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-528ff4eb-b90d-4642-a419-d5c8804bb392:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-528ff4eb-b90d-4642-a419-d5c8804bb392-root {
    text-align: center;
  }


#s-528ff4eb-b90d-4642-a419-d5c8804bb392.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-528ff4eb-b90d-4642-a419-d5c8804bb392-root {
    text-align: center;
  }


#s-528ff4eb-b90d-4642-a419-d5c8804bb392.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-528ff4eb-b90d-4642-a419-d5c8804bb392-root {
    text-align: center;
  }


#s-528ff4eb-b90d-4642-a419-d5c8804bb392.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-528ff4eb-b90d-4642-a419-d5c8804bb392-root {
    text-align: center;
  }


#s-528ff4eb-b90d-4642-a419-d5c8804bb392.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-528ff4eb-b90d-4642-a419-d5c8804bb392-root {
    text-align: center;
  }


#s-528ff4eb-b90d-4642-a419-d5c8804bb392.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-9d29c99a-a2fd-489c-8b00-8c3fe7e5b87b {
  padding-top: 5px;
padding-left: 5%;
padding-bottom: 5px;
padding-right: 5%;
min-height: 50px;
}








#s-9d29c99a-a2fd-489c-8b00-8c3fe7e5b87b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9d29c99a-a2fd-489c-8b00-8c3fe7e5b87b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8319adb2-7947-4395-9457-de4105e7a05a {
  text-align: left;
}
@media (max-width: 767px){#s-8319adb2-7947-4395-9457-de4105e7a05a {
  margin-top: 21px;
}
}


.shg-c#s-8319adb2-7947-4395-9457-de4105e7a05a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8319adb2-7947-4395-9457-de4105e7a05a img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-8319adb2-7947-4395-9457-de4105e7a05a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8319adb2-7947-4395-9457-de4105e7a05a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8319adb2-7947-4395-9457-de4105e7a05a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8319adb2-7947-4395-9457-de4105e7a05a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8319adb2-7947-4395-9457-de4105e7a05a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8319adb2-7947-4395-9457-de4105e7a05a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8319adb2-7947-4395-9457-de4105e7a05a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8319adb2-7947-4395-9457-de4105e7a05a img.shogun-image {
  width: 100%;
}



}
#s-d2f56806-099a-492c-9821-ac74cc48d823 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 20px;
margin-right: 10px;
}

#s-36e5645a-c706-4627-a655-c69ae5d0abbc {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-36e5645a-c706-4627-a655-c69ae5d0abbc:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-36e5645a-c706-4627-a655-c69ae5d0abbc:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-36e5645a-c706-4627-a655-c69ae5d0abbc-root {
    text-align: center;
  }


#s-36e5645a-c706-4627-a655-c69ae5d0abbc.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-36e5645a-c706-4627-a655-c69ae5d0abbc-root {
    text-align: center;
  }


#s-36e5645a-c706-4627-a655-c69ae5d0abbc.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-36e5645a-c706-4627-a655-c69ae5d0abbc-root {
    text-align: center;
  }


#s-36e5645a-c706-4627-a655-c69ae5d0abbc.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-36e5645a-c706-4627-a655-c69ae5d0abbc-root {
    text-align: center;
  }


#s-36e5645a-c706-4627-a655-c69ae5d0abbc.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-36e5645a-c706-4627-a655-c69ae5d0abbc-root {
    text-align: center;
  }


#s-36e5645a-c706-4627-a655-c69ae5d0abbc.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
@media (min-width: 0px) {
[id="s-df751676-b24a-4843-aeb8-9d9b26c1ed14"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-df751676-b24a-4843-aeb8-9d9b26c1ed14"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-df751676-b24a-4843-aeb8-9d9b26c1ed14"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-df751676-b24a-4843-aeb8-9d9b26c1ed14"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-329ff78c-6621-4429-acf7-c359642ebf56 {
  padding-top: 5px;
padding-left: 5%;
padding-bottom: 5px;
padding-right: 5%;
min-height: 50px;
}








#s-329ff78c-6621-4429-acf7-c359642ebf56 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-329ff78c-6621-4429-acf7-c359642ebf56.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-04a5a177-6b05-4a80-b8ed-569f138e1d13 {
  text-align: left;
}



.shg-c#s-04a5a177-6b05-4a80-b8ed-569f138e1d13 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-04a5a177-6b05-4a80-b8ed-569f138e1d13 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-04a5a177-6b05-4a80-b8ed-569f138e1d13 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-04a5a177-6b05-4a80-b8ed-569f138e1d13 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-04a5a177-6b05-4a80-b8ed-569f138e1d13 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-04a5a177-6b05-4a80-b8ed-569f138e1d13 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-04a5a177-6b05-4a80-b8ed-569f138e1d13 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-04a5a177-6b05-4a80-b8ed-569f138e1d13 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-04a5a177-6b05-4a80-b8ed-569f138e1d13 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-04a5a177-6b05-4a80-b8ed-569f138e1d13 img.shogun-image {
  width: 100%;
}



}
#s-57c59d52-769d-4051-8e14-a85a58794030 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 20px;
margin-right: 10px;
}

#s-9b95ce66-b1fb-4188-a8de-90cfd9a419a9 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-9b95ce66-b1fb-4188-a8de-90cfd9a419a9:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-9b95ce66-b1fb-4188-a8de-90cfd9a419a9:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-9b95ce66-b1fb-4188-a8de-90cfd9a419a9-root {
    text-align: center;
  }


#s-9b95ce66-b1fb-4188-a8de-90cfd9a419a9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-9b95ce66-b1fb-4188-a8de-90cfd9a419a9-root {
    text-align: center;
  }


#s-9b95ce66-b1fb-4188-a8de-90cfd9a419a9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9b95ce66-b1fb-4188-a8de-90cfd9a419a9-root {
    text-align: center;
  }


#s-9b95ce66-b1fb-4188-a8de-90cfd9a419a9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9b95ce66-b1fb-4188-a8de-90cfd9a419a9-root {
    text-align: center;
  }


#s-9b95ce66-b1fb-4188-a8de-90cfd9a419a9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-9b95ce66-b1fb-4188-a8de-90cfd9a419a9-root {
    text-align: center;
  }


#s-9b95ce66-b1fb-4188-a8de-90cfd9a419a9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-a288761d-c27f-4824-9560-3fb67590ff53 {
  padding-top: 5px;
padding-left: 5%;
padding-bottom: 5px;
padding-right: 5%;
min-height: 50px;
}








#s-a288761d-c27f-4824-9560-3fb67590ff53 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a288761d-c27f-4824-9560-3fb67590ff53.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-86c8be2c-f4f4-4c28-a1f8-154b76a014e1 {
  text-align: left;
}



.shg-c#s-86c8be2c-f4f4-4c28-a1f8-154b76a014e1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-86c8be2c-f4f4-4c28-a1f8-154b76a014e1 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-86c8be2c-f4f4-4c28-a1f8-154b76a014e1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-86c8be2c-f4f4-4c28-a1f8-154b76a014e1 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-86c8be2c-f4f4-4c28-a1f8-154b76a014e1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-86c8be2c-f4f4-4c28-a1f8-154b76a014e1 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-86c8be2c-f4f4-4c28-a1f8-154b76a014e1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-86c8be2c-f4f4-4c28-a1f8-154b76a014e1 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-86c8be2c-f4f4-4c28-a1f8-154b76a014e1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-86c8be2c-f4f4-4c28-a1f8-154b76a014e1 img.shogun-image {
  width: 100%;
}



}
#s-10ae07e2-3cc6-4aff-bcb9-c77d7cda65e6 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 20px;
margin-right: 10px;
}

#s-b77e0c5c-7235-476a-a6fc-016d2780dcb7 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-b77e0c5c-7235-476a-a6fc-016d2780dcb7:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-b77e0c5c-7235-476a-a6fc-016d2780dcb7:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-b77e0c5c-7235-476a-a6fc-016d2780dcb7-root {
    text-align: center;
  }


#s-b77e0c5c-7235-476a-a6fc-016d2780dcb7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-b77e0c5c-7235-476a-a6fc-016d2780dcb7-root {
    text-align: center;
  }


#s-b77e0c5c-7235-476a-a6fc-016d2780dcb7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b77e0c5c-7235-476a-a6fc-016d2780dcb7-root {
    text-align: center;
  }


#s-b77e0c5c-7235-476a-a6fc-016d2780dcb7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b77e0c5c-7235-476a-a6fc-016d2780dcb7-root {
    text-align: center;
  }


#s-b77e0c5c-7235-476a-a6fc-016d2780dcb7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-b77e0c5c-7235-476a-a6fc-016d2780dcb7-root {
    text-align: center;
  }


#s-b77e0c5c-7235-476a-a6fc-016d2780dcb7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-af566c88-8ecb-4da8-96ab-61fd4f47ebe7 {
  padding-top: 5px;
padding-left: 5%;
padding-bottom: 5px;
padding-right: 5%;
min-height: 50px;
}








#s-af566c88-8ecb-4da8-96ab-61fd4f47ebe7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-af566c88-8ecb-4da8-96ab-61fd4f47ebe7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-76ff1754-b90a-4521-a6d8-7888e0bd07c2 {
  text-align: left;
}



.shg-c#s-76ff1754-b90a-4521-a6d8-7888e0bd07c2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-76ff1754-b90a-4521-a6d8-7888e0bd07c2 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-76ff1754-b90a-4521-a6d8-7888e0bd07c2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-76ff1754-b90a-4521-a6d8-7888e0bd07c2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-76ff1754-b90a-4521-a6d8-7888e0bd07c2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-76ff1754-b90a-4521-a6d8-7888e0bd07c2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-76ff1754-b90a-4521-a6d8-7888e0bd07c2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-76ff1754-b90a-4521-a6d8-7888e0bd07c2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-76ff1754-b90a-4521-a6d8-7888e0bd07c2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-76ff1754-b90a-4521-a6d8-7888e0bd07c2 img.shogun-image {
  width: 100%;
}



}
#s-208f87ec-eb66-4f19-8f4f-d9992bba6877 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 20px;
margin-right: 10px;
}

#s-2f7f6b89-1442-4774-9495-0fe2ccd8bad0 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-2f7f6b89-1442-4774-9495-0fe2ccd8bad0:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-2f7f6b89-1442-4774-9495-0fe2ccd8bad0:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-2f7f6b89-1442-4774-9495-0fe2ccd8bad0-root {
    text-align: center;
  }


#s-2f7f6b89-1442-4774-9495-0fe2ccd8bad0.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-2f7f6b89-1442-4774-9495-0fe2ccd8bad0-root {
    text-align: center;
  }


#s-2f7f6b89-1442-4774-9495-0fe2ccd8bad0.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-2f7f6b89-1442-4774-9495-0fe2ccd8bad0-root {
    text-align: center;
  }


#s-2f7f6b89-1442-4774-9495-0fe2ccd8bad0.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-2f7f6b89-1442-4774-9495-0fe2ccd8bad0-root {
    text-align: center;
  }


#s-2f7f6b89-1442-4774-9495-0fe2ccd8bad0.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-2f7f6b89-1442-4774-9495-0fe2ccd8bad0-root {
    text-align: center;
  }


#s-2f7f6b89-1442-4774-9495-0fe2ccd8bad0.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
@media (min-width: 1200px){#s-831e1157-a564-44e3-b14a-61598afff6f2 {
  margin-left: 7%;
margin-right: 7%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-831e1157-a564-44e3-b14a-61598afff6f2 {
  margin-left: 16%;
margin-right: 16%;
}
}
@media (min-width: 0px) {
[id="s-831e1157-a564-44e3-b14a-61598afff6f2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-831e1157-a564-44e3-b14a-61598afff6f2"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-831e1157-a564-44e3-b14a-61598afff6f2"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-831e1157-a564-44e3-b14a-61598afff6f2"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-ce60f068-d447-40d3-a3e1-e830671e1947 {
  padding-top: 5px;
padding-left: 5%;
padding-bottom: 5px;
padding-right: 5%;
min-height: 50px;
}








#s-ce60f068-d447-40d3-a3e1-e830671e1947 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ce60f068-d447-40d3-a3e1-e830671e1947.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-013eb935-3a4a-4d36-9d1b-ad67ce23475b {
  text-align: left;
}



.shg-c#s-013eb935-3a4a-4d36-9d1b-ad67ce23475b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-013eb935-3a4a-4d36-9d1b-ad67ce23475b img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-013eb935-3a4a-4d36-9d1b-ad67ce23475b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-013eb935-3a4a-4d36-9d1b-ad67ce23475b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-013eb935-3a4a-4d36-9d1b-ad67ce23475b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-013eb935-3a4a-4d36-9d1b-ad67ce23475b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-013eb935-3a4a-4d36-9d1b-ad67ce23475b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-013eb935-3a4a-4d36-9d1b-ad67ce23475b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-013eb935-3a4a-4d36-9d1b-ad67ce23475b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-013eb935-3a4a-4d36-9d1b-ad67ce23475b img.shogun-image {
  width: 100%;
}



}
#s-33db4c44-1dd5-4854-ae85-8fc61dd41d99 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 20px;
margin-right: 10px;
}

#s-681cc2fc-dc34-4adf-9f48-241be7809e67 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-681cc2fc-dc34-4adf-9f48-241be7809e67:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-681cc2fc-dc34-4adf-9f48-241be7809e67:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-681cc2fc-dc34-4adf-9f48-241be7809e67-root {
    text-align: center;
  }


#s-681cc2fc-dc34-4adf-9f48-241be7809e67.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-681cc2fc-dc34-4adf-9f48-241be7809e67-root {
    text-align: center;
  }


#s-681cc2fc-dc34-4adf-9f48-241be7809e67.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-681cc2fc-dc34-4adf-9f48-241be7809e67-root {
    text-align: center;
  }


#s-681cc2fc-dc34-4adf-9f48-241be7809e67.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-681cc2fc-dc34-4adf-9f48-241be7809e67-root {
    text-align: center;
  }


#s-681cc2fc-dc34-4adf-9f48-241be7809e67.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-681cc2fc-dc34-4adf-9f48-241be7809e67-root {
    text-align: center;
  }


#s-681cc2fc-dc34-4adf-9f48-241be7809e67.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-4dc0528e-3908-4654-9cc8-7e08f625f63e {
  padding-top: 5px;
padding-left: 5%;
padding-bottom: 5px;
padding-right: 5%;
min-height: 50px;
}








#s-4dc0528e-3908-4654-9cc8-7e08f625f63e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4dc0528e-3908-4654-9cc8-7e08f625f63e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f72d6120-7d55-417b-b6db-357d9aca9538 {
  text-align: left;
}



.shg-c#s-f72d6120-7d55-417b-b6db-357d9aca9538 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f72d6120-7d55-417b-b6db-357d9aca9538 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-f72d6120-7d55-417b-b6db-357d9aca9538 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f72d6120-7d55-417b-b6db-357d9aca9538 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f72d6120-7d55-417b-b6db-357d9aca9538 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f72d6120-7d55-417b-b6db-357d9aca9538 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f72d6120-7d55-417b-b6db-357d9aca9538 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f72d6120-7d55-417b-b6db-357d9aca9538 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f72d6120-7d55-417b-b6db-357d9aca9538 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f72d6120-7d55-417b-b6db-357d9aca9538 img.shogun-image {
  width: 100%;
}



}
#s-1c6f3769-02a1-413f-95f5-ff4b23e84503 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 20px;
margin-right: 10px;
}

#s-05d2c4e7-ae9c-4e04-a5b3-02757dbf732f {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-05d2c4e7-ae9c-4e04-a5b3-02757dbf732f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-05d2c4e7-ae9c-4e04-a5b3-02757dbf732f:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-05d2c4e7-ae9c-4e04-a5b3-02757dbf732f-root {
    text-align: center;
  }


#s-05d2c4e7-ae9c-4e04-a5b3-02757dbf732f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-05d2c4e7-ae9c-4e04-a5b3-02757dbf732f-root {
    text-align: center;
  }


#s-05d2c4e7-ae9c-4e04-a5b3-02757dbf732f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-05d2c4e7-ae9c-4e04-a5b3-02757dbf732f-root {
    text-align: center;
  }


#s-05d2c4e7-ae9c-4e04-a5b3-02757dbf732f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-05d2c4e7-ae9c-4e04-a5b3-02757dbf732f-root {
    text-align: center;
  }


#s-05d2c4e7-ae9c-4e04-a5b3-02757dbf732f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-05d2c4e7-ae9c-4e04-a5b3-02757dbf732f-root {
    text-align: center;
  }


#s-05d2c4e7-ae9c-4e04-a5b3-02757dbf732f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-e448f1f1-b2ac-4b21-a2d5-54ca5495c6bc {
  margin-top: 50px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-e448f1f1-b2ac-4b21-a2d5-54ca5495c6bc:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e448f1f1-b2ac-4b21-a2d5-54ca5495c6bc:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-e448f1f1-b2ac-4b21-a2d5-54ca5495c6bc-root {
    text-align: center;
  }


#s-e448f1f1-b2ac-4b21-a2d5-54ca5495c6bc.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e448f1f1-b2ac-4b21-a2d5-54ca5495c6bc-root {
    text-align: center;
  }


#s-e448f1f1-b2ac-4b21-a2d5-54ca5495c6bc.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e448f1f1-b2ac-4b21-a2d5-54ca5495c6bc-root {
    text-align: center;
  }


#s-e448f1f1-b2ac-4b21-a2d5-54ca5495c6bc.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e448f1f1-b2ac-4b21-a2d5-54ca5495c6bc-root {
    text-align: center;
  }


#s-e448f1f1-b2ac-4b21-a2d5-54ca5495c6bc.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e448f1f1-b2ac-4b21-a2d5-54ca5495c6bc-root {
    text-align: center;
  }


#s-e448f1f1-b2ac-4b21-a2d5-54ca5495c6bc.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-b757385e-5d40-48dc-842c-7c1de82b3821 {
  margin-top: 100px;
margin-bottom: 10px;
background-color: rgba(255, 255, 255, 1);
}








#s-b757385e-5d40-48dc-842c-7c1de82b3821 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b757385e-5d40-48dc-842c-7c1de82b3821.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c31ea514-eace-4af2-934e-f097414eeec8 {
  margin-top: 50px;
margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
padding-left: 20px;
padding-right: 20px;
max-width: 900px;
}
@media (max-width: 767px){#s-c31ea514-eace-4af2-934e-f097414eeec8 {
  margin-top: -38px;
padding-top: 0px;
}
}
#s-8ba4c6c3-df8c-41a8-80c0-a3eaff215046 {
  text-align: center;
}







  #s-8ba4c6c3-df8c-41a8-80c0-a3eaff215046 img.shogun-image {
    

    
    
    
  }


#s-8ba4c6c3-df8c-41a8-80c0-a3eaff215046 .shogun-image-content {
  
    align-items: 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}
