.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-0d91da50-d43a-4922-8eca-90d566de1adf {
  min-height: 50px;
}








#s-0d91da50-d43a-4922-8eca-90d566de1adf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0d91da50-d43a-4922-8eca-90d566de1adf.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-30cbcf07-ab2d-4f3c-bab5-c0052e4e5e52 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}







  #s-30cbcf07-ab2d-4f3c-bab5-c0052e4e5e52 img.shogun-image {
    

    
    
    
  }


#s-30cbcf07-ab2d-4f3c-bab5-c0052e4e5e52 .shogun-image-content {
  
    align-items: 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-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb {
  max-width: 1920px;
aspect-ratio: 1920/649;
text-align: center;
}





  #s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb img.shogun-image,
  #s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb {
    width: 100%;
    height: auto;
  }

  #s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb.shogun-image {
    
    
  }


.s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb .shogun-image-content {
  
    align-items: center;
  
}

.s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb img.shogun-image,
  #s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb {
    width: 100%;
    height: auto;
  }

  #s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb.shogun-image {
    
    
  }


.s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb .shogun-image-content {
  
    align-items: center;
  
}

.s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb.shogun-image {
  box-sizing: border-box;
}


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



  #s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb img.shogun-image,
  #s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb {
    width: 100%;
    height: auto;
  }

  #s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb.shogun-image {
    
    
  }


.s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb .shogun-image-content {
  
    align-items: center;
  
}

.s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb.shogun-image {
  box-sizing: border-box;
}


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



  #s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb img.shogun-image,
  #s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb {
    width: 100%;
    height: auto;
  }

  #s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb.shogun-image {
    
    
  }


.s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb .shogun-image-content {
  
    align-items: center;
  
}

.s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb.shogun-image {
  box-sizing: border-box;
}


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



  #s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb img.shogun-image,
  #s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb {
    width: 100%;
    height: auto;
  }

  #s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb.shogun-image {
    
    
  }


.s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb .shogun-image-content {
  
    align-items: center;
  
}

.s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc65e660-a337-4bdd-bff7-20fe8c4cb6fb.shogun-image {
  box-sizing: border-box;
}


}
#s-3b25e38a-db3c-45df-abd5-3086481ffa7f {
  background-repeat: repeat;
background-size: cover;
background-attachment: fixed;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
min-height: 50px;
background-position: center center;
}

#s-3b25e38a-db3c-45df-abd5-3086481ffa7f {
  background-image: url(https://i.shgcdn.com/a249654f-dd53-4623-9125-5fe5a0f62a11/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-3b25e38a-db3c-45df-abd5-3086481ffa7f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3b25e38a-db3c-45df-abd5-3086481ffa7f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a1aec7e0-fff3-4b14-a437-9a71384ff854 {
  margin-top: 0px;
margin-left: 5%;
margin-bottom: 20px;
margin-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
text-align: center;
}







  #s-a1aec7e0-fff3-4b14-a437-9a71384ff854 img.shogun-image {
    

    
    
    
  }


#s-a1aec7e0-fff3-4b14-a437-9a71384ff854 .shogun-image-content {
  
    align-items: center;
  
}

#s-7bd6bb11-3cf4-4258-bf2c-f9939597b0f9 {
  margin-top: 15px;
margin-left: 10%;
margin-bottom: 15px;
margin-right: 10%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
min-height: 50px;
background-color: rgba(255, 255, 255, 0.8);
}








#s-7bd6bb11-3cf4-4258-bf2c-f9939597b0f9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7bd6bb11-3cf4-4258-bf2c-f9939597b0f9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ce799db2-4f5c-4734-9f81-7eab19570b70 {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 15px;
margin-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
min-height: 50px;
background-color: rgba(255, 255, 255, 0.8);
}








#s-ce799db2-4f5c-4734-9f81-7eab19570b70 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ce799db2-4f5c-4734-9f81-7eab19570b70.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

#s-30056454-fb67-4ffd-a393-4d6e1f60e125 {
  margin-left: 5%;
margin-right: 5%;
}

@media (min-width: 0px) {
[id="s-30056454-fb67-4ffd-a393-4d6e1f60e125"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-30056454-fb67-4ffd-a393-4d6e1f60e125"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-30056454-fb67-4ffd-a393-4d6e1f60e125"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-30056454-fb67-4ffd-a393-4d6e1f60e125"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-88b467ec-7609-4965-a964-c73c1d818b5e"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-88b467ec-7609-4965-a964-c73c1d818b5e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-88b467ec-7609-4965-a964-c73c1d818b5e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-88b467ec-7609-4965-a964-c73c1d818b5e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-e35a89ee-da1d-41ab-b68e-34d19ae04ed8 {
  text-align: center;
opacity: 1;
}
#s-e35a89ee-da1d-41ab-b68e-34d19ae04ed8:hover {border-radius: 0px !important;
opacity: 0.8 !important;}






  #s-e35a89ee-da1d-41ab-b68e-34d19ae04ed8 img.shogun-image {
    

    
    
    
  }


#s-e35a89ee-da1d-41ab-b68e-34d19ae04ed8 .shogun-image-content {
  
    align-items: center;
  
}

#s-aec58f8b-129c-4722-ba44-01a3f9c000c0 {
  text-align: center;
}
#s-aec58f8b-129c-4722-ba44-01a3f9c000c0:hover {opacity: 0.8 !important;}






  #s-aec58f8b-129c-4722-ba44-01a3f9c000c0 img.shogun-image {
    

    
    
    
  }


#s-aec58f8b-129c-4722-ba44-01a3f9c000c0 .shogun-image-content {
  
    align-items: center;
  
}

#s-02bce130-3f1c-4ee5-a465-376429196277 {
  padding-top: 5px;
padding-bottom: 5px;
text-align: center;
}
#s-02bce130-3f1c-4ee5-a465-376429196277:hover {opacity: 0.8 !important;}






  #s-02bce130-3f1c-4ee5-a465-376429196277 img.shogun-image {
    

    
    
    
  }


#s-02bce130-3f1c-4ee5-a465-376429196277 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-3b8932fc-dc24-435f-b27a-3e646ab49e9a"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-3b8932fc-dc24-435f-b27a-3e646ab49e9a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-3b8932fc-dc24-435f-b27a-3e646ab49e9a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-3b8932fc-dc24-435f-b27a-3e646ab49e9a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-99dda9c1-1a8b-40e3-93f0-2bf22e8c7213 {
  padding-top: 5px;
padding-bottom: 5px;
text-align: center;
}
#s-99dda9c1-1a8b-40e3-93f0-2bf22e8c7213:hover {opacity: 0.8 !important;}






  #s-99dda9c1-1a8b-40e3-93f0-2bf22e8c7213 img.shogun-image {
    

    
    
    
  }


#s-99dda9c1-1a8b-40e3-93f0-2bf22e8c7213 .shogun-image-content {
  
    align-items: center;
  
}

#s-751ada0d-066b-41db-a57c-fa7525640538 {
  margin-top: 5px;
margin-bottom: 5px;
text-align: center;
opacity: 1;
}
#s-751ada0d-066b-41db-a57c-fa7525640538:hover {opacity: 0.8 !important;}






  #s-751ada0d-066b-41db-a57c-fa7525640538 img.shogun-image {
    

    
    
    
  }


#s-751ada0d-066b-41db-a57c-fa7525640538 .shogun-image-content {
  
    align-items: center;
  
}

#s-0bb53391-1889-4138-bce7-58e692abd45e {
  padding-top: 5px;
padding-bottom: 5px;
text-align: center;
}
#s-0bb53391-1889-4138-bce7-58e692abd45e:hover {opacity: 0.8 !important;}






  #s-0bb53391-1889-4138-bce7-58e692abd45e img.shogun-image {
    

    
    
    
  }


#s-0bb53391-1889-4138-bce7-58e692abd45e .shogun-image-content {
  
    align-items: center;
  
}

#s-b2efd807-958e-4cc4-b6a9-51792a0ad8db {
  margin-left: 5%;
margin-right: 5%;
}

@media (min-width: 0px) {
[id="s-b2efd807-958e-4cc4-b6a9-51792a0ad8db"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b2efd807-958e-4cc4-b6a9-51792a0ad8db"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b2efd807-958e-4cc4-b6a9-51792a0ad8db"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b2efd807-958e-4cc4-b6a9-51792a0ad8db"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-10b865ed-2c68-45f3-b4ef-d6185802bc79"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-10b865ed-2c68-45f3-b4ef-d6185802bc79"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-10b865ed-2c68-45f3-b4ef-d6185802bc79"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-10b865ed-2c68-45f3-b4ef-d6185802bc79"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-691ec185-63f6-4ab3-9055-d3f9c7220cf7 {
  text-align: center;
}
#s-691ec185-63f6-4ab3-9055-d3f9c7220cf7:hover {opacity: 0.8 !important;}






  #s-691ec185-63f6-4ab3-9055-d3f9c7220cf7 img.shogun-image {
    

    
    
    
  }


#s-691ec185-63f6-4ab3-9055-d3f9c7220cf7 .shogun-image-content {
  
    align-items: center;
  
}

#s-0308ff9d-aba7-44df-b52c-81c12c90097d {
  text-align: center;
}
#s-0308ff9d-aba7-44df-b52c-81c12c90097d:hover {opacity: 0.8 !important;}






  #s-0308ff9d-aba7-44df-b52c-81c12c90097d img.shogun-image {
    

    
    
    
  }


#s-0308ff9d-aba7-44df-b52c-81c12c90097d .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-49e2e8dd-09c6-4af5-ad60-cc97cce64101"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-49e2e8dd-09c6-4af5-ad60-cc97cce64101"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-49e2e8dd-09c6-4af5-ad60-cc97cce64101"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-49e2e8dd-09c6-4af5-ad60-cc97cce64101"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-e29d145f-ddec-457e-8f8d-44703c3178aa {
  padding-top: 5px;
padding-bottom: 5px;
text-align: center;
}
#s-e29d145f-ddec-457e-8f8d-44703c3178aa:hover {opacity: 0.8 !important;}






  #s-e29d145f-ddec-457e-8f8d-44703c3178aa img.shogun-image {
    

    
    
    
  }


#s-e29d145f-ddec-457e-8f8d-44703c3178aa .shogun-image-content {
  
    align-items: center;
  
}

#s-5b14654e-061b-4a1b-835b-4417b60a254d {
  text-align: center;
}
#s-5b14654e-061b-4a1b-835b-4417b60a254d:hover {opacity: 0.8 !important;}






  #s-5b14654e-061b-4a1b-835b-4417b60a254d img.shogun-image {
    

    
    
    
  }


#s-5b14654e-061b-4a1b-835b-4417b60a254d .shogun-image-content {
  
    align-items: center;
  
}

#s-da3975a4-16ca-4138-9b41-d076f160186d {
  text-align: center;
}
#s-da3975a4-16ca-4138-9b41-d076f160186d:hover {opacity: 0.8 !important;}






  #s-da3975a4-16ca-4138-9b41-d076f160186d img.shogun-image {
    

    
    
    
  }


#s-da3975a4-16ca-4138-9b41-d076f160186d .shogun-image-content {
  
    align-items: center;
  
}

#s-66ad2dad-6375-488f-aeea-bb06d2a4f7e0 {
  margin-left: 5%;
margin-right: 5%;
}

@media (min-width: 0px) {
[id="s-66ad2dad-6375-488f-aeea-bb06d2a4f7e0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-66ad2dad-6375-488f-aeea-bb06d2a4f7e0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-66ad2dad-6375-488f-aeea-bb06d2a4f7e0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-66ad2dad-6375-488f-aeea-bb06d2a4f7e0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-984a20b1-7bed-442f-8fe4-bf8b848a3b2f"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-984a20b1-7bed-442f-8fe4-bf8b848a3b2f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-984a20b1-7bed-442f-8fe4-bf8b848a3b2f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-984a20b1-7bed-442f-8fe4-bf8b848a3b2f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-115b21a3-34a5-4465-b59f-2ea4b905f7be {
  text-align: center;
}
#s-115b21a3-34a5-4465-b59f-2ea4b905f7be:hover {opacity: 0.8 !important;}






  #s-115b21a3-34a5-4465-b59f-2ea4b905f7be img.shogun-image {
    

    
    
    
  }


#s-115b21a3-34a5-4465-b59f-2ea4b905f7be .shogun-image-content {
  
    align-items: center;
  
}

#s-83ab1e43-3314-495d-b74d-c48e2514dbf1 {
  text-align: center;
}
#s-83ab1e43-3314-495d-b74d-c48e2514dbf1:hover {opacity: 0.8 !important;}






  #s-83ab1e43-3314-495d-b74d-c48e2514dbf1 img.shogun-image {
    

    
    
    
  }


#s-83ab1e43-3314-495d-b74d-c48e2514dbf1 .shogun-image-content {
  
    align-items: center;
  
}

#s-a77ef24b-691f-4b49-8487-d1f713a61daf {
  text-align: center;
}
#s-a77ef24b-691f-4b49-8487-d1f713a61daf:hover {opacity: 0.8 !important;}






  #s-a77ef24b-691f-4b49-8487-d1f713a61daf img.shogun-image {
    

    
    
    
  }


#s-a77ef24b-691f-4b49-8487-d1f713a61daf .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-227f7d4e-d062-4604-ad95-89bb9d118fb4"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-227f7d4e-d062-4604-ad95-89bb9d118fb4"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-227f7d4e-d062-4604-ad95-89bb9d118fb4"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-227f7d4e-d062-4604-ad95-89bb9d118fb4"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-b8aefa79-5dba-4b37-944d-b9fbf49e91f9 {
  text-align: center;
}
#s-b8aefa79-5dba-4b37-944d-b9fbf49e91f9:hover {opacity: 0.8 !important;}






  #s-b8aefa79-5dba-4b37-944d-b9fbf49e91f9 img.shogun-image {
    

    
    
    
  }


#s-b8aefa79-5dba-4b37-944d-b9fbf49e91f9 .shogun-image-content {
  
    align-items: center;
  
}

#s-724ddef3-2539-4c93-a27f-d5a48de8cb03 {
  text-align: center;
}
#s-724ddef3-2539-4c93-a27f-d5a48de8cb03:hover {opacity: 0.8 !important;}






  #s-724ddef3-2539-4c93-a27f-d5a48de8cb03 img.shogun-image {
    

    
    
    
  }


#s-724ddef3-2539-4c93-a27f-d5a48de8cb03 .shogun-image-content {
  
    align-items: center;
  
}

#s-452d896d-ad64-4c21-b309-cc2ecacd7694 {
  text-align: center;
}
#s-452d896d-ad64-4c21-b309-cc2ecacd7694:hover {opacity: 1 !important;}






  #s-452d896d-ad64-4c21-b309-cc2ecacd7694 img.shogun-image {
    

    
    
    
  }


#s-452d896d-ad64-4c21-b309-cc2ecacd7694 .shogun-image-content {
  
    align-items: center;
  
}

#s-41118874-774e-4031-849c-68c5ca751b59 {
  margin-top: 0px;
margin-left: 5%;
margin-bottom: 20px;
margin-right: 5%;
}

@media (min-width: 0px) {
[id="s-41118874-774e-4031-849c-68c5ca751b59"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-41118874-774e-4031-849c-68c5ca751b59"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-41118874-774e-4031-849c-68c5ca751b59"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-41118874-774e-4031-849c-68c5ca751b59"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-de1f7cbc-ee52-448e-8007-02774b8649ad"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-de1f7cbc-ee52-448e-8007-02774b8649ad"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-de1f7cbc-ee52-448e-8007-02774b8649ad"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-de1f7cbc-ee52-448e-8007-02774b8649ad"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-723ec59b-4ca0-4501-84f5-b27529dd30b7 {
  text-align: center;
}
#s-723ec59b-4ca0-4501-84f5-b27529dd30b7:hover {opacity: 0.8 !important;}






  #s-723ec59b-4ca0-4501-84f5-b27529dd30b7 img.shogun-image {
    

    
    
    
  }


#s-723ec59b-4ca0-4501-84f5-b27529dd30b7 .shogun-image-content {
  
    align-items: center;
  
}

#s-6a2366f4-744e-4f89-a33f-47c038c61e85 {
  text-align: center;
}
#s-6a2366f4-744e-4f89-a33f-47c038c61e85:hover {opacity: 0.8 !important;}






  #s-6a2366f4-744e-4f89-a33f-47c038c61e85 img.shogun-image {
    

    
    
    
  }


#s-6a2366f4-744e-4f89-a33f-47c038c61e85 .shogun-image-content {
  
    align-items: center;
  
}

#s-bc3d3bdd-d945-4c24-a761-7be864e71226 {
  text-align: center;
}
#s-bc3d3bdd-d945-4c24-a761-7be864e71226:hover {opacity: 0.8 !important;}






  #s-bc3d3bdd-d945-4c24-a761-7be864e71226 img.shogun-image {
    

    
    
    
  }


#s-bc3d3bdd-d945-4c24-a761-7be864e71226 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-091a533b-121a-4dd1-b4da-d62a898479a8"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-091a533b-121a-4dd1-b4da-d62a898479a8"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-091a533b-121a-4dd1-b4da-d62a898479a8"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-091a533b-121a-4dd1-b4da-d62a898479a8"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-4f2b6888-c36e-46c5-adf2-9596270f0fa1 {
  margin-top: 5px;
margin-bottom: 5px;
text-align: center;
}
#s-4f2b6888-c36e-46c5-adf2-9596270f0fa1:hover {opacity: 0.8 !important;}






  #s-4f2b6888-c36e-46c5-adf2-9596270f0fa1 img.shogun-image {
    

    
    
    
  }


#s-4f2b6888-c36e-46c5-adf2-9596270f0fa1 .shogun-image-content {
  
    align-items: center;
  
}

#s-e782f676-1387-4206-b2e1-5258ffb27a89 {
  margin-top: 5px;
margin-bottom: 5px;
text-align: center;
}
#s-e782f676-1387-4206-b2e1-5258ffb27a89:hover {opacity: 0.8 !important;}






  #s-e782f676-1387-4206-b2e1-5258ffb27a89 img.shogun-image {
    

    
    
    
  }


#s-e782f676-1387-4206-b2e1-5258ffb27a89 .shogun-image-content {
  
    align-items: center;
  
}

#s-b876bd6d-d071-4b69-ac4c-2328bca6fa9e {
  padding-top: 5px;
padding-bottom: 5px;
text-align: center;
}
#s-b876bd6d-d071-4b69-ac4c-2328bca6fa9e:hover {opacity: 0.8 !important;}






  #s-b876bd6d-d071-4b69-ac4c-2328bca6fa9e img.shogun-image {
    

    
    
    
  }


#s-b876bd6d-d071-4b69-ac4c-2328bca6fa9e .shogun-image-content {
  
    align-items: center;
  
}

.shg-sld-content {
  width: 100%;
  position: relative;
  z-index: 1;
}

.shg-sld-slides {
  word-break: break-word;
  position: relative;
}

.shg-sld-slides-padded {
  padding: 0 35px;
}

.shg-sld-nav-button {
  cursor: pointer;
  position: absolute;
  z-index: 10;
  top: 0;
  width: 35px;
  min-height: 35px;
  height: 100%;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.shg-sld-nav-button > svg {
  height: 100%;
  width: 100%;
}

.shg-sld-nav-button.shg-sld-left {
  left: 0;
}

.shg-sld-nav-button.shg-sld-left-over-content {
  left: 2%;
}

.shg-sld-nav-button.shg-sld-right {
  right: 0;
}

.shg-sld-nav-button.shg-sld-right-over-content {
  right: 2%;
}

.shg-sld-nav-button.shg-sld-disabled {
  cursor: default;
  opacity: 0.2;
}

.shg-sld-item {
  display: none;
}

.shg-sld-item.shg-sld-active {
  display: block;
}

.shg-sld-dots {
  margin-top: 10px;
  text-align: center;
  z-index: 1;
  position: relative;
}

.shg-sld-dots-on-top {
  margin-top: -30px !important;
}

.shg-sld-dot {
  cursor: pointer;
  display: inline-block !important;
  height: 14px;
  width: 14px;
  border-radius: 100%;
  margin-left: 5px;
  opacity: 0.5;
}

.shg-sld-dot:first-child {
  margin-left: 0px;
}

.shg-sld-dot.shg-sld-active {
  opacity: 1;
}

@keyframes shg-sld-fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

#s-22a0078f-9d5f-4ea6-be71-48680622c4ad {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-22a0078f-9d5f-4ea6-be71-48680622c4ad .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-22a0078f-9d5f-4ea6-be71-48680622c4ad .shg-sld-nav-button.shg-sld-left,
#s-22a0078f-9d5f-4ea6-be71-48680622c4ad .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-9575164b-66de-4c35-9659-0993bfca7cd5 {
  text-align: center;
}







  #s-9575164b-66de-4c35-9659-0993bfca7cd5 img.shogun-image {
    

    
    
    
  }


#s-9575164b-66de-4c35-9659-0993bfca7cd5 .shogun-image-content {
  
    align-items: center;
  
}

#s-cec0fd9a-4a1f-4969-bcf7-309b5d40046b {
  text-align: center;
}







  #s-cec0fd9a-4a1f-4969-bcf7-309b5d40046b img.shogun-image {
    

    
    
    
  }


#s-cec0fd9a-4a1f-4969-bcf7-309b5d40046b .shogun-image-content {
  
    align-items: center;
  
}

#s-210e59e9-54e6-478f-a2b9-90a83021d542 {
  text-align: center;
}







  #s-210e59e9-54e6-478f-a2b9-90a83021d542 img.shogun-image {
    

    
    
    
  }


#s-210e59e9-54e6-478f-a2b9-90a83021d542 .shogun-image-content {
  
    align-items: center;
  
}

#s-8436cbb7-558a-43c9-b0e5-85c44f8c00e1 {
  text-align: center;
}







  #s-8436cbb7-558a-43c9-b0e5-85c44f8c00e1 img.shogun-image {
    

    
    
    
  }


#s-8436cbb7-558a-43c9-b0e5-85c44f8c00e1 .shogun-image-content {
  
    align-items: center;
  
}

#s-296013b4-76b1-46a2-9530-ec40099206ed {
  text-align: center;
}







  #s-296013b4-76b1-46a2-9530-ec40099206ed img.shogun-image {
    

    
    
    
  }


#s-296013b4-76b1-46a2-9530-ec40099206ed .shogun-image-content {
  
    align-items: center;
  
}

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

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

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

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

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

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

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

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

#s-41fc05b6-e061-4cb8-b2df-8898d3584002 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 100px;
background-color: rgba(195, 38, 46, 1);
text-align: center;
text-decoration: none;
}
#s-41fc05b6-e061-4cb8-b2df-8898d3584002:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-41fc05b6-e061-4cb8-b2df-8898d3584002:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-41fc05b6-e061-4cb8-b2df-8898d3584002-root {
    text-align: center;
  }


#s-41fc05b6-e061-4cb8-b2df-8898d3584002.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-41fc05b6-e061-4cb8-b2df-8898d3584002-root {
    text-align: center;
  }


#s-41fc05b6-e061-4cb8-b2df-8898d3584002.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-41fc05b6-e061-4cb8-b2df-8898d3584002-root {
    text-align: center;
  }


#s-41fc05b6-e061-4cb8-b2df-8898d3584002.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-41fc05b6-e061-4cb8-b2df-8898d3584002-root {
    text-align: center;
  }


#s-41fc05b6-e061-4cb8-b2df-8898d3584002.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-41fc05b6-e061-4cb8-b2df-8898d3584002-root {
    text-align: center;
  }


#s-41fc05b6-e061-4cb8-b2df-8898d3584002.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
  #s-41fc05b6-e061-4cb8-b2df-8898d3584002-root {
    text-align: center;
  }


#s-41fc05b6-e061-4cb8-b2df-8898d3584002.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-24094a1d-c24f-43f1-a5cb-d5c479560881 {
  margin-left: 5%;
margin-right: 5%;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
text-align: center;
}







  #s-24094a1d-c24f-43f1-a5cb-d5c479560881 img.shogun-image {
    

    
    
    
  }


#s-24094a1d-c24f-43f1-a5cb-d5c479560881 .shogun-image-content {
  
    align-items: center;
  
}

#s-f6ec1f1a-f146-454e-b04b-cf39e8d4ac51 {
  margin-top: 15px;
margin-left: 10%;
margin-bottom: 15px;
margin-right: 10%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
min-height: 50px;
background-color: rgba(255, 255, 255, 0.8);
}








#s-f6ec1f1a-f146-454e-b04b-cf39e8d4ac51 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f6ec1f1a-f146-454e-b04b-cf39e8d4ac51.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-16f44d9f-d692-41e4-85b2-611d7c746085 {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 15px;
margin-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
min-height: 50px;
background-color: rgba(255, 255, 255, 0.8);
}








#s-16f44d9f-d692-41e4-85b2-611d7c746085 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-16f44d9f-d692-41e4-85b2-611d7c746085.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

.shg-category-grid {
  margin: -20px 0;
}

.shg-category-row,
.shg-category-row-hor {
  display: flex;
  margin: 20px 0;
}

.shg-category-col,
.shg-category-col-1 {
  flex: 1;
  padding: 0 10px;
}

.shg-category-col:last-child {
  padding-right: 0;
}

.shg-category-col:first-child {
  padding-left: 0;
}

.shg-category-col-2 {
  flex: 2;
  padding: 0 20px;
}

.shg-category-col-3 {
  flex: 3;
  padding: 0 30px;
}

.shg-category-col-4 {
  flex: 4;
  padding: 0 40px;
}

.shg-category-col-5 {
  flex: 5;
  padding: 0 50px;
}

@media (max-width: 768px) {
  .shg-category-row.stacked {
    display: block;
  }

  .shg-category-row .shg-category-col {
    padding: 20px 0;
  }

  .shg-category-row .shg-category-col:first-child {
    padding-top: 0;
  }

  .shg-category-row .shg-category-col:last-child {
    padding-bottom: 0;
  }
}

@media (max-width: 480px) {
  .shg-category-row-hor {
    display: flex;
    flex-wrap: wrap;
  }

  .shg-category-row-hor .shg-category-col,
  .shg-category-row-hor .shg-category-col:first-child,
  .shg-category-row-hor .shg-category-col:last-child {
    min-width: 50%;
    max-width: 50%;
    padding-top: 0;
    padding-left: 3px;
    padding-right: 3px;
    padding-bottom: 3px;
  }
}

#s-da31cb29-b561-4cf1-9001-54bd90496f13 {
  margin-top: 20px;
margin-left: 5%;
margin-bottom: 20px;
margin-right: 5%;
}

.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-80cf3739-9d81-4fa5-ac43-1436ee837fce {
  text-align: left;
}



.shg-c#s-80cf3739-9d81-4fa5-ac43-1436ee837fce .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-80cf3739-9d81-4fa5-ac43-1436ee837fce img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-80cf3739-9d81-4fa5-ac43-1436ee837fce .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-80cf3739-9d81-4fa5-ac43-1436ee837fce img.shogun-image {
  width: 100%;
}



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

.shg-c#s-80cf3739-9d81-4fa5-ac43-1436ee837fce .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-80cf3739-9d81-4fa5-ac43-1436ee837fce img.shogun-image {
  width: 100%;
}



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

.shg-c#s-80cf3739-9d81-4fa5-ac43-1436ee837fce .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-80cf3739-9d81-4fa5-ac43-1436ee837fce img.shogun-image {
  width: 100%;
}



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

.shg-c#s-80cf3739-9d81-4fa5-ac43-1436ee837fce .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-80cf3739-9d81-4fa5-ac43-1436ee837fce img.shogun-image {
  width: 100%;
}



}

.shg-c#s-80cf3739-9d81-4fa5-ac43-1436ee837fce .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-80cf3739-9d81-4fa5-ac43-1436ee837fce img.shogun-image {
  width: 100%;
}




.shg-product-title-component h1,
.shg-product-title-component h2,
.shg-product-title-component h3,
.shg-product-title-component h4,
.shg-product-title-component h5,
.shg-product-title-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;
}

.shg-product-title-component a {
  text-decoration: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

#s-8bf20b7b-1e70-4e4b-a2d4-eab46bf15a48 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8bf20b7b-1e70-4e4b-a2d4-eab46bf15a48 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-91c86310-1b20-41a8-90d7-8caeee2eb116 {
  text-align: center;
}

#s-91c86310-1b20-41a8-90d7-8caeee2eb116 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-91c86310-1b20-41a8-90d7-8caeee2eb116 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-91c86310-1b20-41a8-90d7-8caeee2eb116 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

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

.shg-product-atc-wrapper {
  position: relative;
}

.shg-product-atc-btn {
  position: relative;
  z-index: 2;
  display: block;
  border: none;
  align-items: normal;
  box-sizing: border-box;
  cursor: pointer;
  transition: opacity 200ms linear;
  opacity: 1;
}

.shg-product-atc-btn-opaque {
  opacity: 0;
}

.shg-product-atc-info-box {
  position: absolute;
  z-index: 1;
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  text-align: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

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

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

#s-6543a483-c980-4250-ac94-ab4c9f6ca3c7 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 100px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-6543a483-c980-4250-ac94-ab4c9f6ca3c7:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-6543a483-c980-4250-ac94-ab4c9f6ca3c7:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-6543a483-c980-4250-ac94-ab4c9f6ca3c7 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-6543a483-c980-4250-ac94-ab4c9f6ca3c7.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-6543a483-c980-4250-ac94-ab4c9f6ca3c7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-6543a483-c980-4250-ac94-ab4c9f6ca3c7.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-1a23326e-6183-4b32-88dc-241d2314adcb {
  text-align: left;
}



.shg-c#s-1a23326e-6183-4b32-88dc-241d2314adcb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1a23326e-6183-4b32-88dc-241d2314adcb img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-1a23326e-6183-4b32-88dc-241d2314adcb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1a23326e-6183-4b32-88dc-241d2314adcb img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1a23326e-6183-4b32-88dc-241d2314adcb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1a23326e-6183-4b32-88dc-241d2314adcb img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1a23326e-6183-4b32-88dc-241d2314adcb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1a23326e-6183-4b32-88dc-241d2314adcb img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1a23326e-6183-4b32-88dc-241d2314adcb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1a23326e-6183-4b32-88dc-241d2314adcb img.shogun-image {
  width: 100%;
}



}

.shg-c#s-1a23326e-6183-4b32-88dc-241d2314adcb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1a23326e-6183-4b32-88dc-241d2314adcb img.shogun-image {
  width: 100%;
}




#s-3c209da3-d2aa-49de-ae22-01799e5f5f54 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3c209da3-d2aa-49de-ae22-01799e5f5f54 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-2f25471d-2022-4e50-abb7-3d8cdc90ddd1 {
  text-align: center;
}

#s-2f25471d-2022-4e50-abb7-3d8cdc90ddd1 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-2f25471d-2022-4e50-abb7-3d8cdc90ddd1 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-2f25471d-2022-4e50-abb7-3d8cdc90ddd1 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-ea3b2f16-1d0f-446e-ad8c-3d0615d0f6db {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 100px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-ea3b2f16-1d0f-446e-ad8c-3d0615d0f6db:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ea3b2f16-1d0f-446e-ad8c-3d0615d0f6db:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-ea3b2f16-1d0f-446e-ad8c-3d0615d0f6db {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-ea3b2f16-1d0f-446e-ad8c-3d0615d0f6db.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-ea3b2f16-1d0f-446e-ad8c-3d0615d0f6db.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-ea3b2f16-1d0f-446e-ad8c-3d0615d0f6db.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-73be62a2-404e-43fd-a182-164dd6fa028b {
  text-align: left;
}



.shg-c#s-73be62a2-404e-43fd-a182-164dd6fa028b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-73be62a2-404e-43fd-a182-164dd6fa028b img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-73be62a2-404e-43fd-a182-164dd6fa028b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-73be62a2-404e-43fd-a182-164dd6fa028b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-73be62a2-404e-43fd-a182-164dd6fa028b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-73be62a2-404e-43fd-a182-164dd6fa028b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-73be62a2-404e-43fd-a182-164dd6fa028b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-73be62a2-404e-43fd-a182-164dd6fa028b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-73be62a2-404e-43fd-a182-164dd6fa028b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-73be62a2-404e-43fd-a182-164dd6fa028b img.shogun-image {
  width: 100%;
}



}

.shg-c#s-73be62a2-404e-43fd-a182-164dd6fa028b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-73be62a2-404e-43fd-a182-164dd6fa028b img.shogun-image {
  width: 100%;
}




#s-8f3273ec-8589-4e12-ae49-9676e893c30a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8f3273ec-8589-4e12-ae49-9676e893c30a .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-0e7ad557-acb7-4dd1-8b82-5ffae3293440 {
  text-align: center;
}

#s-0e7ad557-acb7-4dd1-8b82-5ffae3293440 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-0e7ad557-acb7-4dd1-8b82-5ffae3293440 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-0e7ad557-acb7-4dd1-8b82-5ffae3293440 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-dbe47a2e-1675-4305-8545-166ebf4af0f2 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 100px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-dbe47a2e-1675-4305-8545-166ebf4af0f2:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-dbe47a2e-1675-4305-8545-166ebf4af0f2:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-dbe47a2e-1675-4305-8545-166ebf4af0f2 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-dbe47a2e-1675-4305-8545-166ebf4af0f2.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-dbe47a2e-1675-4305-8545-166ebf4af0f2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-dbe47a2e-1675-4305-8545-166ebf4af0f2.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-1884f368-506e-4d03-b458-c565c73474d8 {
  text-align: left;
}



.shg-c#s-1884f368-506e-4d03-b458-c565c73474d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1884f368-506e-4d03-b458-c565c73474d8 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-1884f368-506e-4d03-b458-c565c73474d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1884f368-506e-4d03-b458-c565c73474d8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1884f368-506e-4d03-b458-c565c73474d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1884f368-506e-4d03-b458-c565c73474d8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1884f368-506e-4d03-b458-c565c73474d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1884f368-506e-4d03-b458-c565c73474d8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1884f368-506e-4d03-b458-c565c73474d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1884f368-506e-4d03-b458-c565c73474d8 img.shogun-image {
  width: 100%;
}



}

.shg-c#s-1884f368-506e-4d03-b458-c565c73474d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1884f368-506e-4d03-b458-c565c73474d8 img.shogun-image {
  width: 100%;
}




#s-96808334-b2aa-470a-9a88-3f0cac2d783e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-96808334-b2aa-470a-9a88-3f0cac2d783e .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-5c8fd7ce-3f26-48e3-89ed-39c8456bdb34 {
  text-align: center;
}

#s-5c8fd7ce-3f26-48e3-89ed-39c8456bdb34 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-5c8fd7ce-3f26-48e3-89ed-39c8456bdb34 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-5c8fd7ce-3f26-48e3-89ed-39c8456bdb34 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-19b8506c-234e-4a9e-aa1d-7f422d5e2ea8 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 100px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-19b8506c-234e-4a9e-aa1d-7f422d5e2ea8:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-19b8506c-234e-4a9e-aa1d-7f422d5e2ea8:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-19b8506c-234e-4a9e-aa1d-7f422d5e2ea8 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-19b8506c-234e-4a9e-aa1d-7f422d5e2ea8.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-19b8506c-234e-4a9e-aa1d-7f422d5e2ea8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-19b8506c-234e-4a9e-aa1d-7f422d5e2ea8.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-c4fcc430-5e3c-4dad-9d10-fae40ad3593c {
  text-align: left;
}



.shg-c#s-c4fcc430-5e3c-4dad-9d10-fae40ad3593c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c4fcc430-5e3c-4dad-9d10-fae40ad3593c img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-c4fcc430-5e3c-4dad-9d10-fae40ad3593c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c4fcc430-5e3c-4dad-9d10-fae40ad3593c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c4fcc430-5e3c-4dad-9d10-fae40ad3593c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c4fcc430-5e3c-4dad-9d10-fae40ad3593c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c4fcc430-5e3c-4dad-9d10-fae40ad3593c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c4fcc430-5e3c-4dad-9d10-fae40ad3593c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c4fcc430-5e3c-4dad-9d10-fae40ad3593c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c4fcc430-5e3c-4dad-9d10-fae40ad3593c img.shogun-image {
  width: 100%;
}



}

.shg-c#s-c4fcc430-5e3c-4dad-9d10-fae40ad3593c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c4fcc430-5e3c-4dad-9d10-fae40ad3593c img.shogun-image {
  width: 100%;
}




#s-cf932798-2295-4ac2-b7f5-7dc0da9ec647 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-cf932798-2295-4ac2-b7f5-7dc0da9ec647 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-bd062544-31e3-4def-9e09-ffc978aef7f5 {
  text-align: center;
}

#s-bd062544-31e3-4def-9e09-ffc978aef7f5 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-bd062544-31e3-4def-9e09-ffc978aef7f5 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-bd062544-31e3-4def-9e09-ffc978aef7f5 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-cd06abb7-5044-43a4-b92b-364ce524f275 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 100px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-cd06abb7-5044-43a4-b92b-364ce524f275:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-cd06abb7-5044-43a4-b92b-364ce524f275:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-cd06abb7-5044-43a4-b92b-364ce524f275 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-cd06abb7-5044-43a4-b92b-364ce524f275.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-cd06abb7-5044-43a4-b92b-364ce524f275.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-cd06abb7-5044-43a4-b92b-364ce524f275.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-9f7118c1-e8bb-4356-94d6-b8cc080a7da5 {
  text-align: left;
}



.shg-c#s-9f7118c1-e8bb-4356-94d6-b8cc080a7da5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9f7118c1-e8bb-4356-94d6-b8cc080a7da5 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-9f7118c1-e8bb-4356-94d6-b8cc080a7da5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9f7118c1-e8bb-4356-94d6-b8cc080a7da5 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9f7118c1-e8bb-4356-94d6-b8cc080a7da5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9f7118c1-e8bb-4356-94d6-b8cc080a7da5 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9f7118c1-e8bb-4356-94d6-b8cc080a7da5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9f7118c1-e8bb-4356-94d6-b8cc080a7da5 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9f7118c1-e8bb-4356-94d6-b8cc080a7da5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9f7118c1-e8bb-4356-94d6-b8cc080a7da5 img.shogun-image {
  width: 100%;
}



}

.shg-c#s-9f7118c1-e8bb-4356-94d6-b8cc080a7da5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9f7118c1-e8bb-4356-94d6-b8cc080a7da5 img.shogun-image {
  width: 100%;
}




#s-f29c6d1f-9b5b-47d9-b1b5-ff1508aea4a9 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f29c6d1f-9b5b-47d9-b1b5-ff1508aea4a9 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-dc28d46e-7096-4bf6-bca6-825641c3616f {
  text-align: center;
}

#s-dc28d46e-7096-4bf6-bca6-825641c3616f .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-dc28d46e-7096-4bf6-bca6-825641c3616f .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-dc28d46e-7096-4bf6-bca6-825641c3616f .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-0629e3ab-d5f2-4926-ace2-8db739c79986 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 100px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-0629e3ab-d5f2-4926-ace2-8db739c79986:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-0629e3ab-d5f2-4926-ace2-8db739c79986:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-0629e3ab-d5f2-4926-ace2-8db739c79986 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-0629e3ab-d5f2-4926-ace2-8db739c79986.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-0629e3ab-d5f2-4926-ace2-8db739c79986.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-0629e3ab-d5f2-4926-ace2-8db739c79986.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-b9223500-ec8d-43f2-9f03-3eb4cacedff7 {
  margin-top: 0px;
margin-left: 5%;
margin-bottom: 0px;
margin-right: 5%;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
text-align: center;
}







  #s-b9223500-ec8d-43f2-9f03-3eb4cacedff7 img.shogun-image {
    

    
    
    
  }


#s-b9223500-ec8d-43f2-9f03-3eb4cacedff7 .shogun-image-content {
  
    align-items: center;
  
}

#s-1e94b6da-da6c-4581-92aa-1563165461ba {
  margin-top: 15px;
margin-left: 10%;
margin-bottom: 15px;
margin-right: 10%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
min-height: 50px;
background-color: rgba(255, 255, 255, 0.8);
}








#s-1e94b6da-da6c-4581-92aa-1563165461ba > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1e94b6da-da6c-4581-92aa-1563165461ba.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-082661ec-5c35-46bf-ab54-b415a3ea4dbf {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 15px;
margin-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
min-height: 50px;
background-color: rgba(255, 255, 255, 0.8);
}








#s-082661ec-5c35-46bf-ab54-b415a3ea4dbf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-082661ec-5c35-46bf-ab54-b415a3ea4dbf.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-59d36d4c-f1e5-426a-ba9a-d4f876ef905c {
  margin-left: 0%;
margin-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
min-height: 50px;
background-color: rgba(201, 39, 39, 0.75);
}








#s-59d36d4c-f1e5-426a-ba9a-d4f876ef905c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-59d36d4c-f1e5-426a-ba9a-d4f876ef905c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d4c65bb9-6a71-4622-95a4-0c0ec1fa86ba {
  margin-left: 1%;
margin-right: 1%;
}

@media (min-width: 0px) {
[id="s-d4c65bb9-6a71-4622-95a4-0c0ec1fa86ba"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d4c65bb9-6a71-4622-95a4-0c0ec1fa86ba"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-d4c65bb9-6a71-4622-95a4-0c0ec1fa86ba"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-d4c65bb9-6a71-4622-95a4-0c0ec1fa86ba"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-982b0ebb-c089-40ba-b4f4-4a51ec153737 {
  margin-left: -1%;
margin-right: -1%;
}

@media (min-width: 0px) {
[id="s-982b0ebb-c089-40ba-b4f4-4a51ec153737"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-982b0ebb-c089-40ba-b4f4-4a51ec153737"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-982b0ebb-c089-40ba-b4f4-4a51ec153737"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-982b0ebb-c089-40ba-b4f4-4a51ec153737"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-19e4c39c-c2f6-4f3f-af1d-ef10bd2392ce {
  margin-top: 0px;
margin-left: -10%;
margin-bottom: 0px;
margin-right: -10%;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
#s-19e4c39c-c2f6-4f3f-af1d-ef10bd2392ce:hover {opacity: 0.8 !important;}






  #s-19e4c39c-c2f6-4f3f-af1d-ef10bd2392ce img.shogun-image {
    

    
    
    
  }


#s-19e4c39c-c2f6-4f3f-af1d-ef10bd2392ce .shogun-image-content {
  
    align-items: center;
  
}

#s-4b86246c-98fe-4f05-9f32-90432ad6a870 {
  margin-top: 0px;
margin-left: -10%;
margin-bottom: 0px;
margin-right: -10%;
text-align: center;
}
#s-4b86246c-98fe-4f05-9f32-90432ad6a870:hover {opacity: 0.8 !important;}






  #s-4b86246c-98fe-4f05-9f32-90432ad6a870 img.shogun-image {
    

    
    
    
  }


#s-4b86246c-98fe-4f05-9f32-90432ad6a870 .shogun-image-content {
  
    align-items: center;
  
}

#s-6cabb6d6-30b3-49f4-be73-3836b5b19364 {
  margin-top: 0px;
margin-left: -10%;
margin-bottom: 0px;
margin-right: -10%;
text-align: center;
}
#s-6cabb6d6-30b3-49f4-be73-3836b5b19364:hover {opacity: 0.8 !important;}






  #s-6cabb6d6-30b3-49f4-be73-3836b5b19364 img.shogun-image {
    

    
    
    
  }


#s-6cabb6d6-30b3-49f4-be73-3836b5b19364 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-0839fc5b-127d-42e0-828f-62c90a0d1f5f"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-0839fc5b-127d-42e0-828f-62c90a0d1f5f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-0839fc5b-127d-42e0-828f-62c90a0d1f5f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-0839fc5b-127d-42e0-828f-62c90a0d1f5f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-616df6df-bacb-4da5-b9e3-216df2ced311 {
  margin-top: 0px;
margin-left: -10%;
margin-bottom: 0px;
margin-right: -10%;
text-align: center;
}
#s-616df6df-bacb-4da5-b9e3-216df2ced311:hover {opacity: 0.8 !important;}






  #s-616df6df-bacb-4da5-b9e3-216df2ced311 img.shogun-image {
    

    
    
    
  }


#s-616df6df-bacb-4da5-b9e3-216df2ced311 .shogun-image-content {
  
    align-items: center;
  
}

#s-2432d809-40ff-4ec7-90ae-73fade2daf63 {
  margin-top: 0px;
margin-left: -10%;
margin-bottom: 0px;
margin-right: -10%;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
#s-2432d809-40ff-4ec7-90ae-73fade2daf63:hover {opacity: 0.8 !important;}






  #s-2432d809-40ff-4ec7-90ae-73fade2daf63 img.shogun-image {
    

    
    
    
  }


#s-2432d809-40ff-4ec7-90ae-73fade2daf63 .shogun-image-content {
  
    align-items: center;
  
}

#s-e8edb165-4317-40fb-a81a-30ce377cf3ea {
  margin-top: 0px;
margin-left: -10%;
margin-bottom: 0px;
margin-right: -10%;
text-align: center;
}
#s-e8edb165-4317-40fb-a81a-30ce377cf3ea:hover {opacity: 0.8 !important;}






  #s-e8edb165-4317-40fb-a81a-30ce377cf3ea img.shogun-image {
    

    
    
    
  }


#s-e8edb165-4317-40fb-a81a-30ce377cf3ea .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-524f8de4-d9da-4422-ab08-bd358cd88288"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-524f8de4-d9da-4422-ab08-bd358cd88288"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-524f8de4-d9da-4422-ab08-bd358cd88288"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-524f8de4-d9da-4422-ab08-bd358cd88288"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-26e8954d-2168-475a-a6d6-20945a49a28c {
  margin-left: -10%;
margin-right: -10%;
text-align: center;
}
#s-26e8954d-2168-475a-a6d6-20945a49a28c:hover {opacity: 0.8 !important;}






  #s-26e8954d-2168-475a-a6d6-20945a49a28c img.shogun-image {
    

    
    
    
  }


#s-26e8954d-2168-475a-a6d6-20945a49a28c .shogun-image-content {
  
    align-items: center;
  
}

#s-4936a7b2-90ba-4f98-b7b8-f91015c7c758 {
  margin-left: -10%;
margin-right: -10%;
text-align: center;
}
#s-4936a7b2-90ba-4f98-b7b8-f91015c7c758:hover {opacity: 0.8 !important;}






  #s-4936a7b2-90ba-4f98-b7b8-f91015c7c758 img.shogun-image {
    

    
    
    
  }


#s-4936a7b2-90ba-4f98-b7b8-f91015c7c758 .shogun-image-content {
  
    align-items: center;
  
}

#s-c22263b7-4c90-422b-93e1-044161840f26 {
  margin-left: -10%;
margin-right: -10%;
text-align: center;
}
#s-c22263b7-4c90-422b-93e1-044161840f26:hover {opacity: 0.8 !important;}






  #s-c22263b7-4c90-422b-93e1-044161840f26 img.shogun-image {
    

    
    
    
  }


#s-c22263b7-4c90-422b-93e1-044161840f26 .shogun-image-content {
  
    align-items: center;
  
}

#s-e252d0dc-4643-4c67-ab7b-2aafea3497c3 {
  margin-top: 20px;
margin-left: 5%;
margin-right: 5%;
padding-top: 0px;
padding-bottom: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
text-align: center;
}







  #s-e252d0dc-4643-4c67-ab7b-2aafea3497c3 img.shogun-image {
    

    
    
    
  }


#s-e252d0dc-4643-4c67-ab7b-2aafea3497c3 .shogun-image-content {
  
    align-items: center;
  
}

#s-e73f2a2e-60bd-4bf1-9ed9-485794c74ad5 {
  margin-top: 15px;
margin-left: 10%;
margin-bottom: 15px;
margin-right: 10%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
min-height: 50px;
background-color: rgba(255, 255, 255, 0.8);
}








#s-e73f2a2e-60bd-4bf1-9ed9-485794c74ad5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e73f2a2e-60bd-4bf1-9ed9-485794c74ad5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dade584b-d523-4586-b4cb-05f4e5ed4bee {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 15px;
margin-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
min-height: 50px;
background-color: rgba(255, 255, 255, 0.8);
}








#s-dade584b-d523-4586-b4cb-05f4e5ed4bee > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dade584b-d523-4586-b4cb-05f4e5ed4bee.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c876cba9-9248-470b-9c08-0cff6349851b {
  margin-left: 5%;
margin-right: 5%;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
background-color: rgba(193, 39, 45, 0);
}

@media (min-width: 0px) {
[id="s-c876cba9-9248-470b-9c08-0cff6349851b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c876cba9-9248-470b-9c08-0cff6349851b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c876cba9-9248-470b-9c08-0cff6349851b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c876cba9-9248-470b-9c08-0cff6349851b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-d12bdf37-c2e3-461f-97dc-b89b9069d227 {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
background-color: rgba(193, 39, 45, 0);
}

@media (min-width: 0px) {
[id="s-d12bdf37-c2e3-461f-97dc-b89b9069d227"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 768px) {
[id="s-d12bdf37-c2e3-461f-97dc-b89b9069d227"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-d12bdf37-c2e3-461f-97dc-b89b9069d227"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-d12bdf37-c2e3-461f-97dc-b89b9069d227"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-597ee045-627b-4a8c-80fc-2a59aa618d18 {
  text-align: center;
}
#s-597ee045-627b-4a8c-80fc-2a59aa618d18:hover {opacity: 0.8 !important;}






  #s-597ee045-627b-4a8c-80fc-2a59aa618d18 img.shogun-image {
    

    
    
    
  }


#s-597ee045-627b-4a8c-80fc-2a59aa618d18 .shogun-image-content {
  
    align-items: center;
  
}

#s-593d96e3-5113-45fa-9f9e-7f6eb3453832 {
  text-align: center;
}
#s-593d96e3-5113-45fa-9f9e-7f6eb3453832:hover {opacity: 0.8 !important;}






  #s-593d96e3-5113-45fa-9f9e-7f6eb3453832 img.shogun-image {
    

    
    
    
  }


#s-593d96e3-5113-45fa-9f9e-7f6eb3453832 .shogun-image-content {
  
    align-items: center;
  
}

#s-c84ac45d-b9f5-4c37-a10a-c3b47934363c {
  text-align: center;
}
#s-c84ac45d-b9f5-4c37-a10a-c3b47934363c:hover {opacity: 0.8 !important;}






  #s-c84ac45d-b9f5-4c37-a10a-c3b47934363c img.shogun-image {
    

    
    
    
  }


#s-c84ac45d-b9f5-4c37-a10a-c3b47934363c .shogun-image-content {
  
    align-items: center;
  
}

#s-05b39737-27cf-4c35-8191-e102a8ebea0e {
  text-align: center;
}
#s-05b39737-27cf-4c35-8191-e102a8ebea0e:hover {opacity: 0.8 !important;}






  #s-05b39737-27cf-4c35-8191-e102a8ebea0e img.shogun-image {
    

    
    
    
  }


#s-05b39737-27cf-4c35-8191-e102a8ebea0e .shogun-image-content {
  
    align-items: center;
  
}

#s-7889491e-ba32-4a9e-907d-8b1154abbc02 {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
background-color: rgba(193, 39, 45, 0);
}

@media (min-width: 0px) {
[id="s-7889491e-ba32-4a9e-907d-8b1154abbc02"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 768px) {
[id="s-7889491e-ba32-4a9e-907d-8b1154abbc02"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-7889491e-ba32-4a9e-907d-8b1154abbc02"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-7889491e-ba32-4a9e-907d-8b1154abbc02"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-b28e6743-feed-475a-bb88-36f9ffcf8f20 {
  text-align: center;
}
#s-b28e6743-feed-475a-bb88-36f9ffcf8f20:hover {opacity: 0.8 !important;}






  #s-b28e6743-feed-475a-bb88-36f9ffcf8f20 img.shogun-image {
    

    
    
    
  }


#s-b28e6743-feed-475a-bb88-36f9ffcf8f20 .shogun-image-content {
  
    align-items: center;
  
}

#s-45030a74-bab0-4bf3-9dfb-9c344488a630 {
  text-align: center;
}
#s-45030a74-bab0-4bf3-9dfb-9c344488a630:hover {opacity: 0.8 !important;}






  #s-45030a74-bab0-4bf3-9dfb-9c344488a630 img.shogun-image {
    

    
    
    
  }


#s-45030a74-bab0-4bf3-9dfb-9c344488a630 .shogun-image-content {
  
    align-items: center;
  
}

#s-cbd6a5d0-0fe5-4b92-a890-4c32b1a699a4 {
  text-align: center;
}
#s-cbd6a5d0-0fe5-4b92-a890-4c32b1a699a4:hover {opacity: 0.8 !important;}






  #s-cbd6a5d0-0fe5-4b92-a890-4c32b1a699a4 img.shogun-image {
    

    
    
    
  }


#s-cbd6a5d0-0fe5-4b92-a890-4c32b1a699a4 .shogun-image-content {
  
    align-items: center;
  
}

#s-e8a1115a-239f-426b-9498-07bc677e1ed9 {
  margin-left: 5%;
margin-right: 5%;
padding-top: 15px;
padding-bottom: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
text-align: center;
}







  #s-e8a1115a-239f-426b-9498-07bc677e1ed9 img.shogun-image {
    

    
    
    
  }


#s-e8a1115a-239f-426b-9498-07bc677e1ed9 .shogun-image-content {
  
    align-items: center;
  
}

#s-2e6b8e2e-59bd-4a14-9e83-962be61568aa {
  margin-top: 15px;
margin-left: 10%;
margin-bottom: 15px;
margin-right: 10%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
min-height: 50px;
background-color: rgba(255, 255, 255, 0.8);
}








#s-2e6b8e2e-59bd-4a14-9e83-962be61568aa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2e6b8e2e-59bd-4a14-9e83-962be61568aa.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-25ed34ba-0e02-4da1-b2fc-e5cb627c4263 {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 15px;
margin-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
min-height: 50px;
background-color: rgba(255, 255, 255, 0.8);
}








#s-25ed34ba-0e02-4da1-b2fc-e5cb627c4263 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-25ed34ba-0e02-4da1-b2fc-e5cb627c4263.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8597cfd4-fabf-425c-b6b6-85cb879b1764 {
  margin-left: 5%;
margin-right: 5%;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
background-color: rgba(193, 39, 45, 0);
}

@media (min-width: 0px) {
[id="s-8597cfd4-fabf-425c-b6b6-85cb879b1764"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8597cfd4-fabf-425c-b6b6-85cb879b1764"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8597cfd4-fabf-425c-b6b6-85cb879b1764"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8597cfd4-fabf-425c-b6b6-85cb879b1764"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-1c0c159b-2818-4698-9c11-a3aa22b235f5 {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
background-color: rgba(193, 39, 45, 0);
}

@media (min-width: 0px) {
[id="s-1c0c159b-2818-4698-9c11-a3aa22b235f5"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 768px) {
[id="s-1c0c159b-2818-4698-9c11-a3aa22b235f5"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-1c0c159b-2818-4698-9c11-a3aa22b235f5"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-1c0c159b-2818-4698-9c11-a3aa22b235f5"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-4a12c70d-5afa-4a10-99b0-e2ad8a63eca8 {
  text-align: center;
}
#s-4a12c70d-5afa-4a10-99b0-e2ad8a63eca8:hover {opacity: 0.8 !important;}






  #s-4a12c70d-5afa-4a10-99b0-e2ad8a63eca8 img.shogun-image {
    

    
    
    
  }


#s-4a12c70d-5afa-4a10-99b0-e2ad8a63eca8 .shogun-image-content {
  
    align-items: center;
  
}

#s-14ce4744-2899-426c-9b6d-0ea2e9e95839 {
  text-align: center;
}
#s-14ce4744-2899-426c-9b6d-0ea2e9e95839:hover {opacity: 0.8 !important;}






  #s-14ce4744-2899-426c-9b6d-0ea2e9e95839 img.shogun-image {
    

    
    
    
  }


#s-14ce4744-2899-426c-9b6d-0ea2e9e95839 .shogun-image-content {
  
    align-items: center;
  
}

#s-b8370565-d5e1-4abb-9216-47ba13b333aa {
  text-align: center;
}
#s-b8370565-d5e1-4abb-9216-47ba13b333aa:hover {opacity: 0.8 !important;}






  #s-b8370565-d5e1-4abb-9216-47ba13b333aa img.shogun-image {
    

    
    
    
  }


#s-b8370565-d5e1-4abb-9216-47ba13b333aa .shogun-image-content {
  
    align-items: center;
  
}

#s-6686117a-c72c-47a6-858b-3d30cd327b50 {
  text-align: center;
}
#s-6686117a-c72c-47a6-858b-3d30cd327b50:hover {opacity: 0.8 !important;}






  #s-6686117a-c72c-47a6-858b-3d30cd327b50 img.shogun-image {
    

    
    
    
  }


#s-6686117a-c72c-47a6-858b-3d30cd327b50 .shogun-image-content {
  
    align-items: center;
  
}

#s-cd760f76-85d0-4d9e-96a6-8a1d17848350 {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
background-color: rgba(193, 39, 45, 0);
}

@media (min-width: 0px) {
[id="s-cd760f76-85d0-4d9e-96a6-8a1d17848350"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 768px) {
[id="s-cd760f76-85d0-4d9e-96a6-8a1d17848350"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-cd760f76-85d0-4d9e-96a6-8a1d17848350"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-cd760f76-85d0-4d9e-96a6-8a1d17848350"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-127c7eac-19bf-4d08-b5a0-2879888bbfd1 {
  text-align: center;
}
#s-127c7eac-19bf-4d08-b5a0-2879888bbfd1:hover {opacity: 0.8 !important;}






  #s-127c7eac-19bf-4d08-b5a0-2879888bbfd1 img.shogun-image {
    

    
    
    
  }


#s-127c7eac-19bf-4d08-b5a0-2879888bbfd1 .shogun-image-content {
  
    align-items: center;
  
}

#s-ec729c7a-5d14-476e-b40d-fbee7d3e3f93 {
  text-align: center;
}
#s-ec729c7a-5d14-476e-b40d-fbee7d3e3f93:hover {opacity: 0.8 !important;}






  #s-ec729c7a-5d14-476e-b40d-fbee7d3e3f93 img.shogun-image {
    

    
    
    
  }


#s-ec729c7a-5d14-476e-b40d-fbee7d3e3f93 .shogun-image-content {
  
    align-items: center;
  
}

#s-9e398353-b145-4d2a-afb6-d5932fb4352e {
  text-align: center;
}
#s-9e398353-b145-4d2a-afb6-d5932fb4352e:hover {opacity: 0.8 !important;}






  #s-9e398353-b145-4d2a-afb6-d5932fb4352e img.shogun-image {
    

    
    
    
  }


#s-9e398353-b145-4d2a-afb6-d5932fb4352e .shogun-image-content {
  
    align-items: center;
  
}

#s-b84a0196-d94a-4f17-8991-b12f3a1ebb78 {
  margin-top: 15px;
margin-left: 10%;
margin-bottom: 15px;
margin-right: 10%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
min-height: 50px;
background-color: rgba(255, 255, 255, 0.8);
}








#s-b84a0196-d94a-4f17-8991-b12f3a1ebb78 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b84a0196-d94a-4f17-8991-b12f3a1ebb78.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ad6a76da-ac6a-4e40-8467-33daa7ee815a {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 15px;
margin-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
min-height: 50px;
background-color: rgba(214, 19, 19, 0.8);
}








#s-ad6a76da-ac6a-4e40-8467-33daa7ee815a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ad6a76da-ac6a-4e40-8467-33daa7ee815a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3d25637b-4357-4df1-9fa7-8aa6a37d16fc {
  margin-top: 20px;
margin-left: 5%;
margin-bottom: 10px;
margin-right: 5%;
}

@media (min-width: 0px) {
[id="s-3d25637b-4357-4df1-9fa7-8aa6a37d16fc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3d25637b-4357-4df1-9fa7-8aa6a37d16fc"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3d25637b-4357-4df1-9fa7-8aa6a37d16fc"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3d25637b-4357-4df1-9fa7-8aa6a37d16fc"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-47b6ac7b-f284-4cf4-9f6a-648cc72bc2f0"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-47b6ac7b-f284-4cf4-9f6a-648cc72bc2f0"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-47b6ac7b-f284-4cf4-9f6a-648cc72bc2f0"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-47b6ac7b-f284-4cf4-9f6a-648cc72bc2f0"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-91e15876-3b18-4217-abb0-92c03ef8e0e0 {
  text-align: center;
}
#s-91e15876-3b18-4217-abb0-92c03ef8e0e0:hover {opacity: 0.8 !important;}






  #s-91e15876-3b18-4217-abb0-92c03ef8e0e0 img.shogun-image {
    

    
    
    
  }


#s-91e15876-3b18-4217-abb0-92c03ef8e0e0 .shogun-image-content {
  
    align-items: center;
  
}

#s-03f2e884-4b3a-45ce-946c-66109f186bc4 {
  text-align: center;
}
#s-03f2e884-4b3a-45ce-946c-66109f186bc4:hover {opacity: 0.8 !important;}






  #s-03f2e884-4b3a-45ce-946c-66109f186bc4 img.shogun-image {
    

    
    
    
  }


#s-03f2e884-4b3a-45ce-946c-66109f186bc4 .shogun-image-content {
  
    align-items: center;
  
}

#s-cbf57193-3c6e-4433-be9a-e2bd929cad56 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
#s-cbf57193-3c6e-4433-be9a-e2bd929cad56:hover {opacity: 0.8 !important;}






  #s-cbf57193-3c6e-4433-be9a-e2bd929cad56 img.shogun-image {
    

    
    
    
  }


#s-cbf57193-3c6e-4433-be9a-e2bd929cad56 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-77dda514-1abc-401e-a610-87f30d623210"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-77dda514-1abc-401e-a610-87f30d623210"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-77dda514-1abc-401e-a610-87f30d623210"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-77dda514-1abc-401e-a610-87f30d623210"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-5e8af117-8946-4f51-8255-aadc7c39ec62 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
#s-5e8af117-8946-4f51-8255-aadc7c39ec62:hover {opacity: 0.8 !important;}






  #s-5e8af117-8946-4f51-8255-aadc7c39ec62 img.shogun-image {
    

    
    
    
  }


#s-5e8af117-8946-4f51-8255-aadc7c39ec62 .shogun-image-content {
  
    align-items: center;
  
}

#s-13ac09b0-e6c0-452a-a486-20b09589a428 {
  text-align: center;
}
#s-13ac09b0-e6c0-452a-a486-20b09589a428:hover {opacity: 0.8 !important;}






  #s-13ac09b0-e6c0-452a-a486-20b09589a428 img.shogun-image {
    

    
    
    
  }


#s-13ac09b0-e6c0-452a-a486-20b09589a428 .shogun-image-content {
  
    align-items: center;
  
}

#s-80376a5f-779d-4b86-93db-a37d5414f4a1 {
  text-align: center;
}
#s-80376a5f-779d-4b86-93db-a37d5414f4a1:hover {opacity: 0.8 !important;}






  #s-80376a5f-779d-4b86-93db-a37d5414f4a1 img.shogun-image {
    

    
    
    
  }


#s-80376a5f-779d-4b86-93db-a37d5414f4a1 .shogun-image-content {
  
    align-items: center;
  
}

#s-67f861c2-f0de-4464-a790-cccd385e54ff {
  margin-top: 10px;
margin-left: 5%;
margin-bottom: 10px;
margin-right: 5%;
}

@media (min-width: 0px) {
[id="s-67f861c2-f0de-4464-a790-cccd385e54ff"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-67f861c2-f0de-4464-a790-cccd385e54ff"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-67f861c2-f0de-4464-a790-cccd385e54ff"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-67f861c2-f0de-4464-a790-cccd385e54ff"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-31d33dff-51b5-46f5-a793-a3df5265771d"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-31d33dff-51b5-46f5-a793-a3df5265771d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-31d33dff-51b5-46f5-a793-a3df5265771d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-31d33dff-51b5-46f5-a793-a3df5265771d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-0eecd4b1-88ab-4688-a9dc-2edcb6ca245a {
  text-align: center;
}
#s-0eecd4b1-88ab-4688-a9dc-2edcb6ca245a:hover {opacity: 0.8 !important;}






  #s-0eecd4b1-88ab-4688-a9dc-2edcb6ca245a img.shogun-image {
    

    
    
    
  }


#s-0eecd4b1-88ab-4688-a9dc-2edcb6ca245a .shogun-image-content {
  
    align-items: center;
  
}

#s-188ab2ad-293a-4a6d-ad74-b6e70058e2f7 {
  text-align: center;
}
#s-188ab2ad-293a-4a6d-ad74-b6e70058e2f7:hover {opacity: 0.8 !important;}






  #s-188ab2ad-293a-4a6d-ad74-b6e70058e2f7 img.shogun-image {
    

    
    
    
  }


#s-188ab2ad-293a-4a6d-ad74-b6e70058e2f7 .shogun-image-content {
  
    align-items: center;
  
}

#s-91e85f44-e54c-4a15-84b1-6e77c2e19e21 {
  text-align: center;
}
#s-91e85f44-e54c-4a15-84b1-6e77c2e19e21:hover {opacity: 0.8 !important;}






  #s-91e85f44-e54c-4a15-84b1-6e77c2e19e21 img.shogun-image {
    

    
    
    
  }


#s-91e85f44-e54c-4a15-84b1-6e77c2e19e21 .shogun-image-content {
  
    align-items: center;
  
}

#s-11ba2762-7c4c-430d-a0f9-dc6d57069133 {
  margin-top: 1px;
margin-bottom: 1px;
}

@media (min-width: 0px) {
[id="s-11ba2762-7c4c-430d-a0f9-dc6d57069133"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-11ba2762-7c4c-430d-a0f9-dc6d57069133"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-11ba2762-7c4c-430d-a0f9-dc6d57069133"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-11ba2762-7c4c-430d-a0f9-dc6d57069133"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-4b3791ba-3d4f-43c6-afea-8d613284366e {
  text-align: center;
}
#s-4b3791ba-3d4f-43c6-afea-8d613284366e:hover {opacity: 0.8 !important;}






  #s-4b3791ba-3d4f-43c6-afea-8d613284366e img.shogun-image {
    

    
    
    
  }


#s-4b3791ba-3d4f-43c6-afea-8d613284366e .shogun-image-content {
  
    align-items: center;
  
}

#s-9f0ecc3a-8412-41d1-888e-75b4715a7007 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
#s-9f0ecc3a-8412-41d1-888e-75b4715a7007:hover {opacity: 0.8 !important;}






  #s-9f0ecc3a-8412-41d1-888e-75b4715a7007 img.shogun-image {
    

    
    
    
  }


#s-9f0ecc3a-8412-41d1-888e-75b4715a7007 .shogun-image-content {
  
    align-items: center;
  
}

#s-6f9ec939-d15c-494e-bc36-0ecadc428f50 {
  text-align: center;
}
#s-6f9ec939-d15c-494e-bc36-0ecadc428f50:hover {opacity: 0.8 !important;}






  #s-6f9ec939-d15c-494e-bc36-0ecadc428f50 img.shogun-image {
    

    
    
    
  }


#s-6f9ec939-d15c-494e-bc36-0ecadc428f50 .shogun-image-content {
  
    align-items: center;
  
}

#s-eff53e94-fc60-47cb-856a-92c5527f71f3 {
  margin-left: 5%;
margin-right: 5%;
padding-top: 10px;
padding-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-eff53e94-fc60-47cb-856a-92c5527f71f3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-eff53e94-fc60-47cb-856a-92c5527f71f3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-eff53e94-fc60-47cb-856a-92c5527f71f3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-eff53e94-fc60-47cb-856a-92c5527f71f3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-7da0dfd8-b1f5-4b0f-b998-d72ea103e88a"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-7da0dfd8-b1f5-4b0f-b998-d72ea103e88a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-7da0dfd8-b1f5-4b0f-b998-d72ea103e88a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-7da0dfd8-b1f5-4b0f-b998-d72ea103e88a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-36b2f593-ffe1-45f0-9767-0f028f8b4fcc {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
#s-36b2f593-ffe1-45f0-9767-0f028f8b4fcc:hover {opacity: 0.8 !important;}






  #s-36b2f593-ffe1-45f0-9767-0f028f8b4fcc img.shogun-image {
    

    
    
    
  }


#s-36b2f593-ffe1-45f0-9767-0f028f8b4fcc .shogun-image-content {
  
    align-items: center;
  
}

#s-8e0d883b-c642-4aa1-9f3a-bef135d64e1b {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
#s-8e0d883b-c642-4aa1-9f3a-bef135d64e1b:hover {opacity: 0.8 !important;}






  #s-8e0d883b-c642-4aa1-9f3a-bef135d64e1b img.shogun-image {
    

    
    
    
  }


#s-8e0d883b-c642-4aa1-9f3a-bef135d64e1b .shogun-image-content {
  
    align-items: center;
  
}

#s-4cdaf504-11ed-41e3-b081-bb19782f0e28 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
#s-4cdaf504-11ed-41e3-b081-bb19782f0e28:hover {opacity: 0.8 !important;}






  #s-4cdaf504-11ed-41e3-b081-bb19782f0e28 img.shogun-image {
    

    
    
    
  }


#s-4cdaf504-11ed-41e3-b081-bb19782f0e28 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-77d3d5eb-f544-4472-9c9f-4955fd98e9be"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-77d3d5eb-f544-4472-9c9f-4955fd98e9be"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-77d3d5eb-f544-4472-9c9f-4955fd98e9be"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-77d3d5eb-f544-4472-9c9f-4955fd98e9be"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-cca3ece2-ae5b-4a56-9a60-bc9087b7c344 {
  text-align: center;
}
#s-cca3ece2-ae5b-4a56-9a60-bc9087b7c344:hover {opacity: 0.8 !important;}






  #s-cca3ece2-ae5b-4a56-9a60-bc9087b7c344 img.shogun-image {
    

    
    
    
  }


#s-cca3ece2-ae5b-4a56-9a60-bc9087b7c344 .shogun-image-content {
  
    align-items: center;
  
}

#s-01acb8d9-b98d-4bf2-8870-340873e2e943 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
#s-01acb8d9-b98d-4bf2-8870-340873e2e943:hover {opacity: 0.8 !important;}






  #s-01acb8d9-b98d-4bf2-8870-340873e2e943 img.shogun-image {
    

    
    
    
  }


#s-01acb8d9-b98d-4bf2-8870-340873e2e943 .shogun-image-content {
  
    align-items: center;
  
}

#s-ef0e304d-a0c8-4e22-bd10-034d1f08f11a {
  text-align: center;
}
#s-ef0e304d-a0c8-4e22-bd10-034d1f08f11a:hover {opacity: 0.8 !important;}






  #s-ef0e304d-a0c8-4e22-bd10-034d1f08f11a img.shogun-image {
    

    
    
    
  }


#s-ef0e304d-a0c8-4e22-bd10-034d1f08f11a .shogun-image-content {
  
    align-items: center;
  
}

#s-f0178a9a-c564-46df-868a-9bbdf5eb7f08 {
  margin-top: 10px;
margin-left: 5%;
margin-bottom: 10px;
margin-right: 5%;
}

@media (min-width: 0px) {
[id="s-f0178a9a-c564-46df-868a-9bbdf5eb7f08"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f0178a9a-c564-46df-868a-9bbdf5eb7f08"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f0178a9a-c564-46df-868a-9bbdf5eb7f08"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f0178a9a-c564-46df-868a-9bbdf5eb7f08"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-61cc6d64-3c59-4de6-a166-85d5de1173da"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-61cc6d64-3c59-4de6-a166-85d5de1173da"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-61cc6d64-3c59-4de6-a166-85d5de1173da"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-61cc6d64-3c59-4de6-a166-85d5de1173da"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-58ff380f-2eab-460e-b433-54d7503fff5e {
  text-align: center;
}
#s-58ff380f-2eab-460e-b433-54d7503fff5e:hover {opacity: 0.8 !important;}






  #s-58ff380f-2eab-460e-b433-54d7503fff5e img.shogun-image {
    

    
    
    
  }


#s-58ff380f-2eab-460e-b433-54d7503fff5e .shogun-image-content {
  
    align-items: center;
  
}

#s-fec85e7d-98a1-4b99-b525-bb416f11cc85 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
#s-fec85e7d-98a1-4b99-b525-bb416f11cc85:hover {opacity: 0.8 !important;}






  #s-fec85e7d-98a1-4b99-b525-bb416f11cc85 img.shogun-image {
    

    
    
    
  }


#s-fec85e7d-98a1-4b99-b525-bb416f11cc85 .shogun-image-content {
  
    align-items: center;
  
}

#s-e176be20-e3c1-4a71-bf98-f024db5c76ef {
  text-align: center;
}
#s-e176be20-e3c1-4a71-bf98-f024db5c76ef:hover {opacity: 0.8 !important;}






  #s-e176be20-e3c1-4a71-bf98-f024db5c76ef img.shogun-image {
    

    
    
    
  }


#s-e176be20-e3c1-4a71-bf98-f024db5c76ef .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-72a1eaa4-173d-4a8f-8acc-2be8f207a17f"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-72a1eaa4-173d-4a8f-8acc-2be8f207a17f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-72a1eaa4-173d-4a8f-8acc-2be8f207a17f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-72a1eaa4-173d-4a8f-8acc-2be8f207a17f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-4a96f8cc-75cc-45fb-a938-e11628540f7a {
  text-align: center;
}
#s-4a96f8cc-75cc-45fb-a938-e11628540f7a:hover {opacity: 0.8 !important;}






  #s-4a96f8cc-75cc-45fb-a938-e11628540f7a img.shogun-image {
    

    
    
    
  }


#s-4a96f8cc-75cc-45fb-a938-e11628540f7a .shogun-image-content {
  
    align-items: center;
  
}

#s-f62d9f86-e876-4fbb-a0b8-7a7fe90a52c2 {
  text-align: center;
}
#s-f62d9f86-e876-4fbb-a0b8-7a7fe90a52c2:hover {opacity: 0.8 !important;}






  #s-f62d9f86-e876-4fbb-a0b8-7a7fe90a52c2 img.shogun-image {
    

    
    
    
  }


#s-f62d9f86-e876-4fbb-a0b8-7a7fe90a52c2 .shogun-image-content {
  
    align-items: center;
  
}

#s-fca8021f-6cac-4526-b624-2b0529ac4317 {
  text-align: center;
}
#s-fca8021f-6cac-4526-b624-2b0529ac4317:hover {opacity: 0.8 !important;}






  #s-fca8021f-6cac-4526-b624-2b0529ac4317 img.shogun-image {
    

    
    
    
  }


#s-fca8021f-6cac-4526-b624-2b0529ac4317 .shogun-image-content {
  
    align-items: center;
  
}

#s-141bf8fe-2780-4405-b543-80e05d5b3e39 {
  margin-top: 10px;
margin-left: 5%;
margin-bottom: 20px;
margin-right: 5%;
}

@media (min-width: 0px) {
[id="s-141bf8fe-2780-4405-b543-80e05d5b3e39"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-141bf8fe-2780-4405-b543-80e05d5b3e39"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-141bf8fe-2780-4405-b543-80e05d5b3e39"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-141bf8fe-2780-4405-b543-80e05d5b3e39"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-0d0078e2-d571-4c2a-8d49-5fbd4ce31525"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-0d0078e2-d571-4c2a-8d49-5fbd4ce31525"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-0d0078e2-d571-4c2a-8d49-5fbd4ce31525"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-0d0078e2-d571-4c2a-8d49-5fbd4ce31525"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-7c2430cc-5a6d-4698-9f21-5eb249ea4d21 {
  text-align: center;
}
#s-7c2430cc-5a6d-4698-9f21-5eb249ea4d21:hover {opacity: 0.8 !important;}






  #s-7c2430cc-5a6d-4698-9f21-5eb249ea4d21 img.shogun-image {
    

    
    
    
  }


#s-7c2430cc-5a6d-4698-9f21-5eb249ea4d21 .shogun-image-content {
  
    align-items: center;
  
}

#s-3e2e864d-e974-4a8d-8017-0d738b0b4573 {
  text-align: center;
}
#s-3e2e864d-e974-4a8d-8017-0d738b0b4573:hover {opacity: 0.8 !important;}






  #s-3e2e864d-e974-4a8d-8017-0d738b0b4573 img.shogun-image {
    

    
    
    
  }


#s-3e2e864d-e974-4a8d-8017-0d738b0b4573 .shogun-image-content {
  
    align-items: center;
  
}

#s-40a5241e-ca96-40a9-879f-3a6b2d6af4a4 {
  text-align: center;
}
#s-40a5241e-ca96-40a9-879f-3a6b2d6af4a4:hover {opacity: 0.8 !important;}






  #s-40a5241e-ca96-40a9-879f-3a6b2d6af4a4 img.shogun-image {
    

    
    
    
  }


#s-40a5241e-ca96-40a9-879f-3a6b2d6af4a4 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-0d7263a3-e336-464b-9975-f91491e389cc"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-0d7263a3-e336-464b-9975-f91491e389cc"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-0d7263a3-e336-464b-9975-f91491e389cc"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-0d7263a3-e336-464b-9975-f91491e389cc"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-7caf3663-6d74-4e5f-a820-2c7abc3afd69 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
#s-7caf3663-6d74-4e5f-a820-2c7abc3afd69:hover {opacity: 0.8 !important;}






  #s-7caf3663-6d74-4e5f-a820-2c7abc3afd69 img.shogun-image {
    

    
    
    
  }


#s-7caf3663-6d74-4e5f-a820-2c7abc3afd69 .shogun-image-content {
  
    align-items: center;
  
}

#s-6f26a8e8-055e-4e53-963c-afb9e36574c3 {
  text-align: center;
}
#s-6f26a8e8-055e-4e53-963c-afb9e36574c3:hover {opacity: 0.8 !important;}






  #s-6f26a8e8-055e-4e53-963c-afb9e36574c3 img.shogun-image {
    

    
    
    
  }


#s-6f26a8e8-055e-4e53-963c-afb9e36574c3 .shogun-image-content {
  
    align-items: center;
  
}

#s-a8a04cb2-447f-4a25-8d41-8d490708e5f6 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
#s-a8a04cb2-447f-4a25-8d41-8d490708e5f6:hover {opacity: 0.8 !important;}






  #s-a8a04cb2-447f-4a25-8d41-8d490708e5f6 img.shogun-image {
    

    
    
    
  }


#s-a8a04cb2-447f-4a25-8d41-8d490708e5f6 .shogun-image-content {
  
    align-items: center;
  
}

#s-d66658dd-bba8-4cbf-9b2e-cb93213d2cf0 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-d66658dd-bba8-4cbf-9b2e-cb93213d2cf0 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-d66658dd-bba8-4cbf-9b2e-cb93213d2cf0 .shg-sld-nav-button.shg-sld-left,
#s-d66658dd-bba8-4cbf-9b2e-cb93213d2cf0 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-f71bdd73-b50a-47aa-b4dc-862abe54b8a6 {
  text-align: center;
}







  #s-f71bdd73-b50a-47aa-b4dc-862abe54b8a6 img.shogun-image {
    

    
    
    
  }


#s-f71bdd73-b50a-47aa-b4dc-862abe54b8a6 .shogun-image-content {
  
    align-items: center;
  
}

#s-d1552ac8-7a50-4c4d-ae97-f427dfb95668 {
  text-align: center;
}







  #s-d1552ac8-7a50-4c4d-ae97-f427dfb95668 img.shogun-image {
    

    
    
    
  }


#s-d1552ac8-7a50-4c4d-ae97-f427dfb95668 .shogun-image-content {
  
    align-items: center;
  
}

#s-3644c827-0bbd-4feb-8f0f-ac579a565bd8 {
  text-align: center;
}







  #s-3644c827-0bbd-4feb-8f0f-ac579a565bd8 img.shogun-image {
    

    
    
    
  }


#s-3644c827-0bbd-4feb-8f0f-ac579a565bd8 .shogun-image-content {
  
    align-items: center;
  
}

#s-661d376a-5dce-487e-84e3-4c3e76da885e {
  text-align: center;
}







  #s-661d376a-5dce-487e-84e3-4c3e76da885e img.shogun-image {
    

    
    
    
  }


#s-661d376a-5dce-487e-84e3-4c3e76da885e .shogun-image-content {
  
    align-items: center;
  
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*
  $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}
