.shg-box {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  /**
   * 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;
}

.shg-box-vertical-align-wrapper, .shg-box-vertical-center-wrapper {
  display: flex;
  width: 100%;
}

.shg-box-vertical-align-top {
  justify-content: flex-start;
}

.shg-box-vertical-align-center, .shg-box-vertical-center {
  justify-content: center;
}

.shg-box-vertical-align-bottom {
  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-2660ea50-7bd9-4956-ba0d-02d2a9e28143 {
  margin-top: -20px;
min-height: 50px;
background-attachment: scroll;
}
@media (min-width: 1200px){#s-2660ea50-7bd9-4956-ba0d-02d2a9e28143 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2660ea50-7bd9-4956-ba0d-02d2a9e28143 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-2660ea50-7bd9-4956-ba0d-02d2a9e28143 {
  
}
}@media (max-width: 767px){#s-2660ea50-7bd9-4956-ba0d-02d2a9e28143 {
  
}
}







#s-2660ea50-7bd9-4956-ba0d-02d2a9e28143 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2660ea50-7bd9-4956-ba0d-02d2a9e28143.shg-box.shg-c {
  justify-content: flex-start;
}

#s-89070fd1-461c-4ff8-9eca-e7ceb7fa1b14 {
  min-height: 50px;
}








#s-89070fd1-461c-4ff8-9eca-e7ceb7fa1b14 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-89070fd1-461c-4ff8-9eca-e7ceb7fa1b14.shg-box.shg-c {
  justify-content: center;
}

#s-0bbf2009-aa6b-476f-b7c7-8ad58562a44b {
  min-height: 50px;
}








#s-0bbf2009-aa6b-476f-b7c7-8ad58562a44b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0bbf2009-aa6b-476f-b7c7-8ad58562a44b.shg-box.shg-c {
  justify-content: center;
}

.shg-row {
  display: flex;
  flex-wrap: wrap;
  min-height: inherit;
  max-height: inherit;
  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;
}

/* 
  Shopify base css adds display none to empty divs
  This causes items in the second column position to shift when
  the first column is empty. In order to overwrite that style,
  we have to manually set empty divs in the column to display block 
  so the whole element holds its positioning on published pages.
*/

.shg-row > div:empty {
  display: block;
}

@media (min-width: 0px) {
[id="s-4f9ecdae-25c3-4908-a854-f5e9509db0cc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4f9ecdae-25c3-4908-a854-f5e9509db0cc"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-4f9ecdae-25c3-4908-a854-f5e9509db0cc"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4f9ecdae-25c3-4908-a854-f5e9509db0cc"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-4f9ecdae-25c3-4908-a854-f5e9509db0cc"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4f9ecdae-25c3-4908-a854-f5e9509db0cc"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-4f9ecdae-25c3-4908-a854-f5e9509db0cc"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

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

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

.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-fbaf1e8d-faa9-4015-8ed7-d040dd5a892e {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
}

#s-fbaf1e8d-faa9-4015-8ed7-d040dd5a892e .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-fbaf1e8d-faa9-4015-8ed7-d040dd5a892e .shg-sld-nav-button.shg-sld-left,
#s-fbaf1e8d-faa9-4015-8ed7-d040dd5a892e .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

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

.shg-inner-inline-image {
  position: relative;
  display: block;
  overflow: hidden;
}

.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-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-imageV3-content {
  text-align: initial;
}

.shogun-image-content-v3 {
  display: flex;
  flex-direction: column;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  /* Ensures that the content children fills the container */
  align-items: stretch;
}

.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-top {
  align-items: flex-start;
}

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

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

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

.shogun-image-content-v3 > * {
  flex-shrink: 0; /* Prevents children from shrinking maintaining natural size*/
  width: 100%;
}
#s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f {
  margin-left: auto;
margin-right: auto;
max-width: 3000px;
text-align: center;
}

#s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f img.shogun-image {
  width: 100%;
  
  
  max-width: 3000px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dabf24db-4ad4-4463-ae0f-ffdc28b6a37f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
.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 {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
}

.shogun-image-contain {
  font-family: "object-fit: contain;";
  -o-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;
  flex-direction: column;
  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-273de216-87a8-4c21-b8d2-574f2aa8cbfa {
  text-align: center;
}

#s-273de216-87a8-4c21-b8d2-574f2aa8cbfa {
  overflow: hidden;
  
  
}







  #s-273de216-87a8-4c21-b8d2-574f2aa8cbfa img.shogun-image {
    

    
    
    
  }


#s-273de216-87a8-4c21-b8d2-574f2aa8cbfa .shogun-image-content {
  
    justify-content: center;
  
}

#s-f37257ec-76b8-428f-b9ea-bfd2131ecf89 {
  text-align: center;
}

#s-f37257ec-76b8-428f-b9ea-bfd2131ecf89 {
  overflow: hidden;
  
  
}







  #s-f37257ec-76b8-428f-b9ea-bfd2131ecf89 img.shogun-image {
    

    
    
    
  }


#s-f37257ec-76b8-428f-b9ea-bfd2131ecf89 .shogun-image-content {
  
    justify-content: center;
  
}

#s-ed7d9fbd-844c-43ec-bd48-579cccd066d2 {
  text-align: center;
}

#s-ed7d9fbd-844c-43ec-bd48-579cccd066d2 {
  overflow: hidden;
  
  
}







  #s-ed7d9fbd-844c-43ec-bd48-579cccd066d2 img.shogun-image {
    

    
    
    
  }


#s-ed7d9fbd-844c-43ec-bd48-579cccd066d2 .shogun-image-content {
  
    justify-content: center;
  
}

#s-c1a9f6bc-69b3-4776-a6a6-17587363456f {
  max-width: 3000px;
aspect-ratio: 3000/1759;
text-align: center;
}

#s-c1a9f6bc-69b3-4776-a6a6-17587363456f {
  overflow: hidden;
  
  
      max-width: 3000px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-c1a9f6bc-69b3-4776-a6a6-17587363456f img.shogun-image,
  #s-c1a9f6bc-69b3-4776-a6a6-17587363456f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c1a9f6bc-69b3-4776-a6a6-17587363456f {
    width: 100%;
    height: auto;
  }



  #s-c1a9f6bc-69b3-4776-a6a6-17587363456f img.shogun-image {
    

    
    
    
  }


#s-c1a9f6bc-69b3-4776-a6a6-17587363456f .shogun-image-content {
  
    justify-content: center;
  
}

#s-7640c0fe-e4e4-49bb-8620-6baa9daf03e4 {
  max-width: 3000px;
aspect-ratio: 3000/1759;
text-align: center;
}

#s-7640c0fe-e4e4-49bb-8620-6baa9daf03e4 {
  overflow: hidden;
  
  
      max-width: 3000px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-7640c0fe-e4e4-49bb-8620-6baa9daf03e4 img.shogun-image,
  #s-7640c0fe-e4e4-49bb-8620-6baa9daf03e4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7640c0fe-e4e4-49bb-8620-6baa9daf03e4 {
    width: 100%;
    height: auto;
  }



  #s-7640c0fe-e4e4-49bb-8620-6baa9daf03e4 img.shogun-image {
    

    
    
    
  }


#s-7640c0fe-e4e4-49bb-8620-6baa9daf03e4 .shogun-image-content {
  
    justify-content: center;
  
}

#s-8a05a761-c535-4d8b-9eb0-253da959a238 {
  text-align: center;
}

#s-8a05a761-c535-4d8b-9eb0-253da959a238 {
  overflow: hidden;
  
  
}







  #s-8a05a761-c535-4d8b-9eb0-253da959a238 img.shogun-image {
    

    
    
    
  }


#s-8a05a761-c535-4d8b-9eb0-253da959a238 .shogun-image-content {
  
    justify-content: center;
  
}

#s-4fb59922-23ba-423e-b9ad-795106a7d80d {
  max-width: 3000px;
aspect-ratio: 3000/1759;
text-align: center;
}

#s-4fb59922-23ba-423e-b9ad-795106a7d80d {
  overflow: hidden;
  
  
      max-width: 3000px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-4fb59922-23ba-423e-b9ad-795106a7d80d img.shogun-image,
  #s-4fb59922-23ba-423e-b9ad-795106a7d80d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4fb59922-23ba-423e-b9ad-795106a7d80d {
    width: 100%;
    height: auto;
  }



  #s-4fb59922-23ba-423e-b9ad-795106a7d80d img.shogun-image {
    

    
    
    
  }


#s-4fb59922-23ba-423e-b9ad-795106a7d80d .shogun-image-content {
  
    justify-content: center;
  
}

#s-c8a9366b-77c5-4a71-91a9-aa2f6efd29e7 {
  text-align: center;
}

#s-c8a9366b-77c5-4a71-91a9-aa2f6efd29e7 {
  overflow: hidden;
  
  
}







  #s-c8a9366b-77c5-4a71-91a9-aa2f6efd29e7 img.shogun-image {
    

    
    
    
  }


#s-c8a9366b-77c5-4a71-91a9-aa2f6efd29e7 .shogun-image-content {
  
    justify-content: center;
  
}

#s-4c3a8605-90a4-4b3f-8706-2321a629e293 {
  text-align: center;
}

#s-4c3a8605-90a4-4b3f-8706-2321a629e293 {
  overflow: hidden;
  
  
}







  #s-4c3a8605-90a4-4b3f-8706-2321a629e293 img.shogun-image {
    

    
    
    
  }


#s-4c3a8605-90a4-4b3f-8706-2321a629e293 .shogun-image-content {
  
    justify-content: center;
  
}

#s-9f443577-b4fb-4e86-bfbb-eec4668716ca {
  text-align: center;
}

#s-9f443577-b4fb-4e86-bfbb-eec4668716ca {
  overflow: hidden;
  
  
}







  #s-9f443577-b4fb-4e86-bfbb-eec4668716ca img.shogun-image {
    

    
    
    
  }


#s-9f443577-b4fb-4e86-bfbb-eec4668716ca .shogun-image-content {
  
    justify-content: center;
  
}

#s-b196687a-8e81-4f2c-99e8-efedfbacfc9c {
  min-height: 50px;
}








#s-b196687a-8e81-4f2c-99e8-efedfbacfc9c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b196687a-8e81-4f2c-99e8-efedfbacfc9c.shg-box.shg-c {
  justify-content: center;
}

#s-b45567fb-100b-4a27-a864-93bfbe3b835c {
  min-height: 50px;
}








#s-b45567fb-100b-4a27-a864-93bfbe3b835c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b45567fb-100b-4a27-a864-93bfbe3b835c.shg-box.shg-c {
  justify-content: center;
}

.shogun-video {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.shogun-video-16x9 {
  padding-bottom: 56.25%;
}

.shogun-video-4x3 {
  padding-bottom: 75%;
}

.shogun-video-embed {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

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

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

#s-0f72e94f-a670-43a1-938b-9ec2d77e4a82 {
  padding-top: 11px;
padding-bottom: 11px;
}
@media (min-width: 1200px){#s-0f72e94f-a670-43a1-938b-9ec2d77e4a82 {
  display: none;
}
#s-0f72e94f-a670-43a1-938b-9ec2d77e4a82, #wrap-s-0f72e94f-a670-43a1-938b-9ec2d77e4a82, #wrap-content-s-0f72e94f-a670-43a1-938b-9ec2d77e4a82 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-0f72e94f-a670-43a1-938b-9ec2d77e4a82 {
  display: none;
}
#s-0f72e94f-a670-43a1-938b-9ec2d77e4a82, #wrap-s-0f72e94f-a670-43a1-938b-9ec2d77e4a82, #wrap-content-s-0f72e94f-a670-43a1-938b-9ec2d77e4a82 { display: none !important; }}
#s-0f72e94f-a670-43a1-938b-9ec2d77e4a82 hr {
  border-top: 4px solid #ddd;
}

#s-61addbe1-2d05-40bf-be32-adb086ef61d2 {
  text-align: center;
}

#s-61addbe1-2d05-40bf-be32-adb086ef61d2 {
  overflow: hidden;
  
  
}







  #s-61addbe1-2d05-40bf-be32-adb086ef61d2 img.shogun-image {
    

    
    
    
  }


#s-61addbe1-2d05-40bf-be32-adb086ef61d2 .shogun-image-content {
  
    justify-content: center;
  
}

#s-65467900-9a8a-4a8f-ae72-f1cf88dfc117 {
  padding-top: 14px;
padding-bottom: 14px;
}
@media (min-width: 1200px){#s-65467900-9a8a-4a8f-ae72-f1cf88dfc117 {
  display: none;
}
#s-65467900-9a8a-4a8f-ae72-f1cf88dfc117, #wrap-s-65467900-9a8a-4a8f-ae72-f1cf88dfc117, #wrap-content-s-65467900-9a8a-4a8f-ae72-f1cf88dfc117 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-65467900-9a8a-4a8f-ae72-f1cf88dfc117 {
  display: none;
}
#s-65467900-9a8a-4a8f-ae72-f1cf88dfc117, #wrap-s-65467900-9a8a-4a8f-ae72-f1cf88dfc117, #wrap-content-s-65467900-9a8a-4a8f-ae72-f1cf88dfc117 { display: none !important; }}
#s-65467900-9a8a-4a8f-ae72-f1cf88dfc117 hr {
  border-top: 4px solid #ddd;
}

#s-bb203296-7155-46c5-b4a7-d528b1b49bb3 {
  margin-top: 5px;
margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
min-height: 45px;
max-width: 200px;
}
@media (min-width: 768px) and (max-width: 991px){#s-bb203296-7155-46c5-b4a7-d528b1b49bb3 {
  
}
}@media (max-width: 767px){#s-bb203296-7155-46c5-b4a7-d528b1b49bb3 {
  
}
}







#s-bb203296-7155-46c5-b4a7-d528b1b49bb3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-bb203296-7155-46c5-b4a7-d528b1b49bb3.shg-box.shg-c {
  justify-content: flex-start;
}

.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 {
  
  
  
}

.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 ::-moz-selection, .shg-default-text-content *::-moz-selection {
  background: #accef7;
}
.shg-default-text-content ::selection,
.shg-default-text-content *::selection {
  background: #accef7;
}

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

.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 {
  
  
  
}

.shg-theme-text-content p {
  
  
  
}

#s-33adb4b5-f3c6-4a1a-9594-39c4504dd6b9 {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
}

#s-0a6354b5-0cf8-4de1-9c45-ec9ab4864b75 {
  margin-top: -20px;
padding-left: 15px;
padding-right: 15px;
}

#s-0a6354b5-0cf8-4de1-9c45-ec9ab4864b75 hr {
  border-top: 4px solid rgba(0, 0, 0, 1);
}

#s-ad35d2c4-907e-4251-935f-4e93f7446711 {
  padding-top: 0px;
padding-bottom: 0px;
min-height: 50px;
}








#s-ad35d2c4-907e-4251-935f-4e93f7446711 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ad35d2c4-907e-4251-935f-4e93f7446711.shg-box.shg-c {
  justify-content: flex-start;
}

#s-db2ec9db-2ff5-4aa8-a82c-a1f667527a11 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-left: 45px;
padding-right: 45px;
max-width: 1026px;
}

#s-286790c7-2342-4ed9-bd88-34e23b17d42d {
  margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-left: 30px;
padding-right: 30px;
max-width: 986px;
}
@media (min-width: 1200px){#s-286790c7-2342-4ed9-bd88-34e23b17d42d {
  display: none;
}
#s-286790c7-2342-4ed9-bd88-34e23b17d42d, #wrap-s-286790c7-2342-4ed9-bd88-34e23b17d42d, #wrap-content-s-286790c7-2342-4ed9-bd88-34e23b17d42d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-286790c7-2342-4ed9-bd88-34e23b17d42d {
  display: none;
}
#s-286790c7-2342-4ed9-bd88-34e23b17d42d, #wrap-s-286790c7-2342-4ed9-bd88-34e23b17d42d, #wrap-content-s-286790c7-2342-4ed9-bd88-34e23b17d42d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-286790c7-2342-4ed9-bd88-34e23b17d42d {
  display: none;
}
#s-286790c7-2342-4ed9-bd88-34e23b17d42d, #wrap-s-286790c7-2342-4ed9-bd88-34e23b17d42d, #wrap-content-s-286790c7-2342-4ed9-bd88-34e23b17d42d { display: none !important; }}
@media (min-width: 0px) {
[id="s-286790c7-2342-4ed9-bd88-34e23b17d42d"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 768px) {
[id="s-286790c7-2342-4ed9-bd88-34e23b17d42d"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-286790c7-2342-4ed9-bd88-34e23b17d42d"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-286790c7-2342-4ed9-bd88-34e23b17d42d"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 7.5px);
}

}

#s-9a35676b-9437-4064-97e4-e095ce60c3db {
  text-align: center;
}
#s-9a35676b-9437-4064-97e4-e095ce60c3db:hover {opacity: 0.6 !important;}
#s-9a35676b-9437-4064-97e4-e095ce60c3db {
  overflow: hidden;
  
  
}







  #s-9a35676b-9437-4064-97e4-e095ce60c3db img.shogun-image {
    

    
    
    
  }


#s-9a35676b-9437-4064-97e4-e095ce60c3db .shogun-image-content {
  
    justify-content:  flex-start;
  
}

#s-841a713c-fd90-4059-9a58-8f588876eba1 {
  text-align: center;
}
#s-841a713c-fd90-4059-9a58-8f588876eba1:hover {opacity: 0.6 !important;}
#s-841a713c-fd90-4059-9a58-8f588876eba1 {
  overflow: hidden;
  
  
}







  #s-841a713c-fd90-4059-9a58-8f588876eba1 img.shogun-image {
    

    
    
    
  }


#s-841a713c-fd90-4059-9a58-8f588876eba1 .shogun-image-content {
  
    justify-content:  flex-start;
  
}

#s-30e15622-be88-4ac5-a144-2f9f5e5d747a {
  text-align: center;
}
#s-30e15622-be88-4ac5-a144-2f9f5e5d747a:hover {opacity: 0.6 !important;}
#s-30e15622-be88-4ac5-a144-2f9f5e5d747a {
  overflow: hidden;
  
  
}







  #s-30e15622-be88-4ac5-a144-2f9f5e5d747a img.shogun-image {
    

    
    
    
  }


#s-30e15622-be88-4ac5-a144-2f9f5e5d747a .shogun-image-content {
  
    justify-content:  flex-start;
  
}

#s-c8c5a24f-554f-4535-896a-a96bf2af4790 {
  text-align: center;
}
#s-c8c5a24f-554f-4535-896a-a96bf2af4790:hover {opacity: 0.6 !important;}
#s-c8c5a24f-554f-4535-896a-a96bf2af4790 {
  overflow: hidden;
  
  
}







  #s-c8c5a24f-554f-4535-896a-a96bf2af4790 img.shogun-image {
    

    
    
    
  }


#s-c8c5a24f-554f-4535-896a-a96bf2af4790 .shogun-image-content {
  
    justify-content:  flex-start;
  
}

#s-29f02778-3e9f-4d52-a473-9b4c2f0aaf9b {
  margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-left: 30px;
padding-right: 30px;
max-width: 986px;
}
@media (max-width: 767px){#s-29f02778-3e9f-4d52-a473-9b4c2f0aaf9b {
  display: none;
}
#s-29f02778-3e9f-4d52-a473-9b4c2f0aaf9b, #wrap-s-29f02778-3e9f-4d52-a473-9b4c2f0aaf9b, #wrap-content-s-29f02778-3e9f-4d52-a473-9b4c2f0aaf9b { display: none !important; }}
@media (min-width: 0px) {
[id="s-29f02778-3e9f-4d52-a473-9b4c2f0aaf9b"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 50.0px);
}

}

@media (min-width: 768px) {
[id="s-29f02778-3e9f-4d52-a473-9b4c2f0aaf9b"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 75.0px);
}

}

@media (min-width: 992px) {
[id="s-29f02778-3e9f-4d52-a473-9b4c2f0aaf9b"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 75.0px);
}

}

@media (min-width: 1200px) {
[id="s-29f02778-3e9f-4d52-a473-9b4c2f0aaf9b"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 75.0px);
}

}

#s-78654c1d-f376-46d2-9f64-100cd1da7243 {
  text-align: center;
}
#s-78654c1d-f376-46d2-9f64-100cd1da7243:hover {opacity: 0.6 !important;}
#s-78654c1d-f376-46d2-9f64-100cd1da7243 {
  overflow: hidden;
  
  
}







  #s-78654c1d-f376-46d2-9f64-100cd1da7243 img.shogun-image {
    

    
    
    
  }


#s-78654c1d-f376-46d2-9f64-100cd1da7243 .shogun-image-content {
  
    justify-content:  flex-start;
  
}

#s-1792da19-a44d-4cef-94bf-0f49402fdd41 {
  text-align: center;
}
#s-1792da19-a44d-4cef-94bf-0f49402fdd41:hover {opacity: 0.6 !important;}
#s-1792da19-a44d-4cef-94bf-0f49402fdd41 {
  overflow: hidden;
  
  
}







  #s-1792da19-a44d-4cef-94bf-0f49402fdd41 img.shogun-image {
    

    
    
    
  }


#s-1792da19-a44d-4cef-94bf-0f49402fdd41 .shogun-image-content {
  
    justify-content:  flex-start;
  
}

#s-442359b0-7c7c-4b7e-aeb0-aac9e6227dbf {
  max-width: 350px;
aspect-ratio: 1/1;
text-align: center;
}
#s-442359b0-7c7c-4b7e-aeb0-aac9e6227dbf:hover {opacity: 0.6 !important;}
#s-442359b0-7c7c-4b7e-aeb0-aac9e6227dbf {
  overflow: hidden;
  
  
      max-width: 350px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-442359b0-7c7c-4b7e-aeb0-aac9e6227dbf img.shogun-image,
  #s-442359b0-7c7c-4b7e-aeb0-aac9e6227dbf .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-442359b0-7c7c-4b7e-aeb0-aac9e6227dbf {
    width: 100%;
    height: auto;
  }



  #s-442359b0-7c7c-4b7e-aeb0-aac9e6227dbf img.shogun-image {
    

    
    
    
  }


#s-442359b0-7c7c-4b7e-aeb0-aac9e6227dbf .shogun-image-content {
  
    justify-content:  flex-start;
  
}

#s-482ce029-3fd8-4136-8e60-b42a88d654a0 {
  text-align: center;
}
#s-482ce029-3fd8-4136-8e60-b42a88d654a0:hover {opacity: 0.6 !important;}
#s-482ce029-3fd8-4136-8e60-b42a88d654a0 {
  overflow: hidden;
  
  
}







  #s-482ce029-3fd8-4136-8e60-b42a88d654a0 img.shogun-image {
    

    
    
    
  }


#s-482ce029-3fd8-4136-8e60-b42a88d654a0 .shogun-image-content {
  
    justify-content:  flex-start;
  
}

#s-8eab588e-ab32-42e5-be1a-6777f434455a {
  margin-top: 0px;
min-height: 50px;
background-color: rgba(241, 241, 241, 1);
}








#s-8eab588e-ab32-42e5-be1a-6777f434455a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8eab588e-ab32-42e5-be1a-6777f434455a.shg-box.shg-c {
  justify-content: flex-start;
}

#s-30225de7-7d86-4e4d-bbac-42b5fd820fcf {
  margin-top: 50px;
margin-bottom: px;
}
@media (min-width: 768px) and (max-width: 991px){#s-30225de7-7d86-4e4d-bbac-42b5fd820fcf {
  
}
}@media (max-width: 767px){#s-30225de7-7d86-4e4d-bbac-42b5fd820fcf {
  
}
}
@media (min-width: 0px) {
[id="s-30225de7-7d86-4e4d-bbac-42b5fd820fcf"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-30225de7-7d86-4e4d-bbac-42b5fd820fcf"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-30225de7-7d86-4e4d-bbac-42b5fd820fcf"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-30225de7-7d86-4e4d-bbac-42b5fd820fcf"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-30225de7-7d86-4e4d-bbac-42b5fd820fcf"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-30225de7-7d86-4e4d-bbac-42b5fd820fcf"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-30225de7-7d86-4e4d-bbac-42b5fd820fcf"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

#s-3aefe296-c75b-4702-8116-a1df425af8da {
  margin-top: 35px;
}

#s-3aefe296-c75b-4702-8116-a1df425af8da hr {
  border-top: 1px solid #ddd;
}

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

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

#s-78a4d9ed-8660-4428-a3a9-65404fa3e069 {
  text-align: center;
}

#s-78a4d9ed-8660-4428-a3a9-65404fa3e069 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Allura";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}



#s-73b83272-62c2-4664-8761-24c072331a96 {
  margin-top: -10px;
text-align: center;
}

#s-73b83272-62c2-4664-8761-24c072331a96 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Allura";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-47232766-bcd9-47cd-b5b5-0848e04179cf {
  margin-top: 35px;
}

#s-47232766-bcd9-47cd-b5b5-0848e04179cf hr {
  border-top: 1px solid #ddd;
}

#s-b47749ad-1339-4cad-be58-de31a578bf03 {
  margin-top: 22px;
margin-left: auto;
margin-right: auto;
min-height: 450px;
background-color: rgba(229, 229, 229, 0);
}
@media (min-width: 1200px){#s-b47749ad-1339-4cad-be58-de31a578bf03 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b47749ad-1339-4cad-be58-de31a578bf03 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-b47749ad-1339-4cad-be58-de31a578bf03 {
  
}
}@media (max-width: 767px){#s-b47749ad-1339-4cad-be58-de31a578bf03 {
  
}
}







#s-b47749ad-1339-4cad-be58-de31a578bf03 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b47749ad-1339-4cad-be58-de31a578bf03.shg-box.shg-c {
  justify-content: flex-start;
}

@media (min-width: 0px) {
[id="s-1c44ba4f-f6f5-4be8-afb5-16504c203fe9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1c44ba4f-f6f5-4be8-afb5-16504c203fe9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-1c44ba4f-f6f5-4be8-afb5-16504c203fe9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-1c44ba4f-f6f5-4be8-afb5-16504c203fe9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-81bb0909-c5e1-49ce-a1f7-52338a270dbe {
  min-height: 50px;
}








#s-81bb0909-c5e1-49ce-a1f7-52338a270dbe > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-81bb0909-c5e1-49ce-a1f7-52338a270dbe.shg-box.shg-c {
  justify-content: center;
}

#s-88b66788-ea5b-4c9e-8e61-843a7b046629 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 10px;
margin-bottom: 10px;
min-height: 450px;
background-position: center center;
}








#s-88b66788-ea5b-4c9e-8e61-843a7b046629 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-88b66788-ea5b-4c9e-8e61-843a7b046629.shg-box.shg-c {
  justify-content: center;
}

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

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

.shg-btn-text {
  
  
}

.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-c28c16b1-8012-4668-aace-15ba7be4a90e {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(2, 2, 2, 0.31);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
line-height: 1.5em;
letter-spacing: 0px;
}
#s-c28c16b1-8012-4668-aace-15ba7be4a90e:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c28c16b1-8012-4668-aace-15ba7be4a90e:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-c28c16b1-8012-4668-aace-15ba7be4a90e-root {
    text-align: center;
  }


#s-c28c16b1-8012-4668-aace-15ba7be4a90e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c28c16b1-8012-4668-aace-15ba7be4a90e-root {
    text-align: center;
  }


#s-c28c16b1-8012-4668-aace-15ba7be4a90e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c28c16b1-8012-4668-aace-15ba7be4a90e-root {
    text-align: center;
  }


#s-c28c16b1-8012-4668-aace-15ba7be4a90e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c28c16b1-8012-4668-aace-15ba7be4a90e-root {
    text-align: center;
  }


#s-c28c16b1-8012-4668-aace-15ba7be4a90e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c28c16b1-8012-4668-aace-15ba7be4a90e-root {
    text-align: center;
  }


#s-c28c16b1-8012-4668-aace-15ba7be4a90e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
@media (min-width: 0px) {
[id="s-e7252abc-55c2-4a4c-927e-2331548e8f64"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e7252abc-55c2-4a4c-927e-2331548e8f64"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-e7252abc-55c2-4a4c-927e-2331548e8f64"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-e7252abc-55c2-4a4c-927e-2331548e8f64"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-fe1e029c-6cce-4fad-ad7f-94f955121130 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 10px;
margin-bottom: 10px;
min-height: 450px;
background-position: center center;
}








#s-fe1e029c-6cce-4fad-ad7f-94f955121130 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fe1e029c-6cce-4fad-ad7f-94f955121130.shg-box.shg-c {
  justify-content: center;
}

#s-8d826647-6558-4aab-9238-73dfec3695e2 {
  padding-top: 12px;
padding-left: 28px;
padding-bottom: 12px;
padding-right: 28px;
border-radius: 2px;
text-align: center;
background-color: rgba(37, 37, 37, 0.3);
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-8d826647-6558-4aab-9238-73dfec3695e2:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-8d826647-6558-4aab-9238-73dfec3695e2:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-8d826647-6558-4aab-9238-73dfec3695e2-root {
    text-align: center;
  }


#s-8d826647-6558-4aab-9238-73dfec3695e2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-8d826647-6558-4aab-9238-73dfec3695e2-root {
    text-align: center;
  }


#s-8d826647-6558-4aab-9238-73dfec3695e2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-8d826647-6558-4aab-9238-73dfec3695e2-root {
    text-align: center;
  }


#s-8d826647-6558-4aab-9238-73dfec3695e2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-8d826647-6558-4aab-9238-73dfec3695e2-root {
    text-align: center;
  }


#s-8d826647-6558-4aab-9238-73dfec3695e2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-8d826647-6558-4aab-9238-73dfec3695e2-root {
    text-align: center;
  }


#s-8d826647-6558-4aab-9238-73dfec3695e2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-b7dc43f7-4392-4f21-9137-ca47b9280a1a {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 10px;
margin-bottom: 10px;
min-height: 450px;
background-position: center center;
}








#s-b7dc43f7-4392-4f21-9137-ca47b9280a1a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b7dc43f7-4392-4f21-9137-ca47b9280a1a.shg-box.shg-c {
  justify-content: center;
}

#s-648f6845-b2b3-4147-947c-871b8d880329 {
  padding-top: 12px;
padding-left: 28px;
padding-bottom: 12px;
padding-right: 28px;
border-radius: 2px;
text-align: center;
background-color: rgba(37, 37, 37, 0.58);
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-648f6845-b2b3-4147-947c-871b8d880329:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-648f6845-b2b3-4147-947c-871b8d880329:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-648f6845-b2b3-4147-947c-871b8d880329-root {
    text-align: center;
  }


#s-648f6845-b2b3-4147-947c-871b8d880329.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-648f6845-b2b3-4147-947c-871b8d880329-root {
    text-align: center;
  }


#s-648f6845-b2b3-4147-947c-871b8d880329.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-648f6845-b2b3-4147-947c-871b8d880329-root {
    text-align: center;
  }


#s-648f6845-b2b3-4147-947c-871b8d880329.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-648f6845-b2b3-4147-947c-871b8d880329-root {
    text-align: center;
  }


#s-648f6845-b2b3-4147-947c-871b8d880329.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-648f6845-b2b3-4147-947c-871b8d880329-root {
    text-align: center;
  }


#s-648f6845-b2b3-4147-947c-871b8d880329.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
@media (min-width: 0px) {
[id="s-41f4daf0-9cc2-418d-aaa5-335f147fd85d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-41f4daf0-9cc2-418d-aaa5-335f147fd85d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-41f4daf0-9cc2-418d-aaa5-335f147fd85d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-41f4daf0-9cc2-418d-aaa5-335f147fd85d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 0px) {
[id="s-609af570-f52e-407f-958c-7d39c5913134"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-609af570-f52e-407f-958c-7d39c5913134"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-609af570-f52e-407f-958c-7d39c5913134"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-609af570-f52e-407f-958c-7d39c5913134"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-76d8ff00-10dc-4fbe-bfbc-5adc5e764757 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 10px;
min-height: 450px;
background-position: center center;
}








#s-76d8ff00-10dc-4fbe-bfbc-5adc5e764757 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-76d8ff00-10dc-4fbe-bfbc-5adc5e764757.shg-box.shg-c {
  justify-content: center;
}

#s-7246ba29-3222-419d-b15a-5c0c780a3031 {
  padding-top: 14px;
padding-left: 30px;
padding-bottom: 14px;
padding-right: 30px;
border-radius: 2px;
text-align: center;
background-color: rgba(37, 37, 37, 0.45);
text-decoration: none;
}
#s-7246ba29-3222-419d-b15a-5c0c780a3031:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-7246ba29-3222-419d-b15a-5c0c780a3031:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-7246ba29-3222-419d-b15a-5c0c780a3031-root {
    text-align: center;
  }


#s-7246ba29-3222-419d-b15a-5c0c780a3031.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-7246ba29-3222-419d-b15a-5c0c780a3031-root {
    text-align: center;
  }


#s-7246ba29-3222-419d-b15a-5c0c780a3031.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7246ba29-3222-419d-b15a-5c0c780a3031-root {
    text-align: center;
  }


#s-7246ba29-3222-419d-b15a-5c0c780a3031.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7246ba29-3222-419d-b15a-5c0c780a3031-root {
    text-align: center;
  }


#s-7246ba29-3222-419d-b15a-5c0c780a3031.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-7246ba29-3222-419d-b15a-5c0c780a3031-root {
    text-align: center;
  }


#s-7246ba29-3222-419d-b15a-5c0c780a3031.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-926b16e1-895b-444a-b043-cb291e60bb66 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 10px;
min-height: 450px;
background-position: center center;
}








#s-926b16e1-895b-444a-b043-cb291e60bb66 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-926b16e1-895b-444a-b043-cb291e60bb66.shg-box.shg-c {
  justify-content: center;
}

#s-6ee17f84-9b3a-4963-a037-30b320c108ef {
  padding-top: 14px;
padding-left: 30px;
padding-bottom: 14px;
padding-right: 30px;
border-radius: 2px;
text-align: center;
background-color: rgba(37, 37, 37, 0.45);
text-decoration: none;
}
#s-6ee17f84-9b3a-4963-a037-30b320c108ef:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-6ee17f84-9b3a-4963-a037-30b320c108ef:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-6ee17f84-9b3a-4963-a037-30b320c108ef-root {
    text-align: center;
  }


#s-6ee17f84-9b3a-4963-a037-30b320c108ef.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-6ee17f84-9b3a-4963-a037-30b320c108ef-root {
    text-align: center;
  }


#s-6ee17f84-9b3a-4963-a037-30b320c108ef.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6ee17f84-9b3a-4963-a037-30b320c108ef-root {
    text-align: center;
  }


#s-6ee17f84-9b3a-4963-a037-30b320c108ef.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6ee17f84-9b3a-4963-a037-30b320c108ef-root {
    text-align: center;
  }


#s-6ee17f84-9b3a-4963-a037-30b320c108ef.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-6ee17f84-9b3a-4963-a037-30b320c108ef-root {
    text-align: center;
  }


#s-6ee17f84-9b3a-4963-a037-30b320c108ef.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
@media (min-width: 0px) {
[id="s-a98c9f29-e612-44b3-9f06-08fb944b13bc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a98c9f29-e612-44b3-9f06-08fb944b13bc"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-a98c9f29-e612-44b3-9f06-08fb944b13bc"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-a98c9f29-e612-44b3-9f06-08fb944b13bc"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-b264a429-15e6-4163-8caf-b7187c26341b {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 10px;
min-height: 450px;
background-position: center center;
}








#s-b264a429-15e6-4163-8caf-b7187c26341b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b264a429-15e6-4163-8caf-b7187c26341b.shg-box.shg-c {
  justify-content: center;
}

#s-171f0bdf-fa10-4c0c-bba0-bb0b311ecb2a {
  padding-top: 14px;
padding-left: 30px;
padding-bottom: 14px;
padding-right: 30px;
border-radius: 2px;
text-align: center;
background-color: rgba(37, 37, 37, 0.47);
text-decoration: none;
}
#s-171f0bdf-fa10-4c0c-bba0-bb0b311ecb2a:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-171f0bdf-fa10-4c0c-bba0-bb0b311ecb2a:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-171f0bdf-fa10-4c0c-bba0-bb0b311ecb2a-root {
    text-align: center;
  }


#s-171f0bdf-fa10-4c0c-bba0-bb0b311ecb2a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-171f0bdf-fa10-4c0c-bba0-bb0b311ecb2a-root {
    text-align: center;
  }


#s-171f0bdf-fa10-4c0c-bba0-bb0b311ecb2a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-171f0bdf-fa10-4c0c-bba0-bb0b311ecb2a-root {
    text-align: center;
  }


#s-171f0bdf-fa10-4c0c-bba0-bb0b311ecb2a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-171f0bdf-fa10-4c0c-bba0-bb0b311ecb2a-root {
    text-align: center;
  }


#s-171f0bdf-fa10-4c0c-bba0-bb0b311ecb2a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-171f0bdf-fa10-4c0c-bba0-bb0b311ecb2a-root {
    text-align: center;
  }


#s-171f0bdf-fa10-4c0c-bba0-bb0b311ecb2a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-ca24afdc-229f-4747-8aca-a4250097ae67 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 10px;
min-height: 450px;
background-position: center center;
}








#s-ca24afdc-229f-4747-8aca-a4250097ae67 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ca24afdc-229f-4747-8aca-a4250097ae67.shg-box.shg-c {
  justify-content: center;
}

#s-31973ef9-8cbf-41da-9b1f-21593bf6dccf {
  padding-top: 14px;
padding-left: 30px;
padding-bottom: 14px;
padding-right: 30px;
border-radius: 2px;
text-align: center;
background-color: rgba(37, 37, 37, 0.45);
text-decoration: none;
}
#s-31973ef9-8cbf-41da-9b1f-21593bf6dccf:hover {background-color: #424242 !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}#s-31973ef9-8cbf-41da-9b1f-21593bf6dccf:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-31973ef9-8cbf-41da-9b1f-21593bf6dccf-root {
    text-align: center;
  }


#s-31973ef9-8cbf-41da-9b1f-21593bf6dccf.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-31973ef9-8cbf-41da-9b1f-21593bf6dccf-root {
    text-align: center;
  }


#s-31973ef9-8cbf-41da-9b1f-21593bf6dccf.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-31973ef9-8cbf-41da-9b1f-21593bf6dccf-root {
    text-align: center;
  }


#s-31973ef9-8cbf-41da-9b1f-21593bf6dccf.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-31973ef9-8cbf-41da-9b1f-21593bf6dccf-root {
    text-align: center;
  }


#s-31973ef9-8cbf-41da-9b1f-21593bf6dccf.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-31973ef9-8cbf-41da-9b1f-21593bf6dccf-root {
    text-align: center;
  }


#s-31973ef9-8cbf-41da-9b1f-21593bf6dccf.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-ccefb638-2a85-4a89-a745-3bfdf6739960 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYzg4ZmFhZDYtODhkNy00MWQ2LTgxNGQtMjNiYzFkNWZhMDE4IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwLjAwIiBzdHlsZT0ic3RvcC1jb2xvcjojMDAwMDAwO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxLjAwIiBzdHlsZT0ic3RvcC1jb2xvcjojMDQwNDA0O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNjODhmYWFkNi04OGQ3LTQxZDYtODE0ZC0yM2JjMWQ1ZmEwMTgpIi8+PC9zdmc+);
background-repeat: no-repeat;
margin-top: 34px;
margin-left: auto;
margin-bottom: 48px;
margin-right: auto;
padding-top: 20px;
padding-left: 32px;
padding-bottom: 20px;
padding-right: 32px;
max-width: 254px;
text-align: center;
text-decoration: none;
hover-type: gradient;
background-gradient: [{"id"=>1, "pos"=>"0.00", "color"=>"#000000"}, {"id"=>2, "pos"=>"1.00", "color"=>"#040404"}];
}
#s-ccefb638-2a85-4a89-a745-3bfdf6739960:hover {background-color: rgba(52, 113, 135, 1) !important;
text-decoration: none !important;}#s-ccefb638-2a85-4a89-a745-3bfdf6739960:active {margin-top: 25px !important;
margin-left: px !important;
margin-bottom: 50px !important;
max-width: 254px !important;
background-color: rgba(43, 95, 114, 1) !important;
text-decoration: none !important;}

  #s-ccefb638-2a85-4a89-a745-3bfdf6739960-root {
    text-align: center;
  }


#s-ccefb638-2a85-4a89-a745-3bfdf6739960.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 17px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-ccefb638-2a85-4a89-a745-3bfdf6739960-root {
    text-align: center;
  }


#s-ccefb638-2a85-4a89-a745-3bfdf6739960.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ccefb638-2a85-4a89-a745-3bfdf6739960-root {
    text-align: center;
  }


#s-ccefb638-2a85-4a89-a745-3bfdf6739960.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ccefb638-2a85-4a89-a745-3bfdf6739960-root {
    text-align: center;
  }


#s-ccefb638-2a85-4a89-a745-3bfdf6739960.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-ccefb638-2a85-4a89-a745-3bfdf6739960-root {
    text-align: center;
  }


#s-ccefb638-2a85-4a89-a745-3bfdf6739960.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 17px;
  
  
  
  display:  block ;
}
}
#s-9530f721-02bd-418c-ac69-43c586ea8b1a {
  margin-top: 50px;
margin-bottom: px;
}
@media (min-width: 768px) and (max-width: 991px){#s-9530f721-02bd-418c-ac69-43c586ea8b1a {
  
}
}@media (max-width: 767px){#s-9530f721-02bd-418c-ac69-43c586ea8b1a {
  
}
}
@media (min-width: 0px) {
[id="s-9530f721-02bd-418c-ac69-43c586ea8b1a"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-9530f721-02bd-418c-ac69-43c586ea8b1a"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-9530f721-02bd-418c-ac69-43c586ea8b1a"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-9530f721-02bd-418c-ac69-43c586ea8b1a"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-9530f721-02bd-418c-ac69-43c586ea8b1a"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-9530f721-02bd-418c-ac69-43c586ea8b1a"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-9530f721-02bd-418c-ac69-43c586ea8b1a"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

#s-0496fb2d-b485-44c1-9715-0f04e147b60e {
  margin-top: 35px;
}

#s-0496fb2d-b485-44c1-9715-0f04e147b60e hr {
  border-top: 1px solid #ddd;
}

#s-5a1bb233-5516-489e-8e93-ef68a196abb0 {
  text-align: center;
}

#s-5a1bb233-5516-489e-8e93-ef68a196abb0 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Allura";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}



#s-49eb3f16-efb5-49ab-934d-2cc3b83acf9e {
  margin-top: -10px;
text-align: center;
}

#s-49eb3f16-efb5-49ab-934d-2cc3b83acf9e .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Allura";
  font-style:  normal ;
  font-size: 22px;
  
  
  
}



#s-b1b28e51-6672-4f84-a1c1-34ff07f40a3c {
  margin-top: 35px;
}

#s-b1b28e51-6672-4f84-a1c1-34ff07f40a3c hr {
  border-top: 1px solid #ddd;
}

#s-7b9f08c4-8290-4e7c-8e7c-8769dee0c6ab {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-7b9f08c4-8290-4e7c-8e7c-8769dee0c6ab .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-7b9f08c4-8290-4e7c-8e7c-8769dee0c6ab .shg-sld-nav-button.shg-sld-left,
#s-7b9f08c4-8290-4e7c-8e7c-8769dee0c6ab .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-7536e7e5-ad87-42fa-bd75-eac14aa731aa {
  margin-top: 15px;
margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-7536e7e5-ad87-42fa-bd75-eac14aa731aa"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7536e7e5-ad87-42fa-bd75-eac14aa731aa"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-7536e7e5-ad87-42fa-bd75-eac14aa731aa"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-7536e7e5-ad87-42fa-bd75-eac14aa731aa"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-4e43a409-1b1c-4938-9533-4b716479c389 {
  background-repeat: no-repeat;
background-size: cover;
margin-bottom: 15px;
min-height: 360px;
background-position: center center;
background-attachment: scroll;
}

#s-4e43a409-1b1c-4938-9533-4b716479c389 {
  background-image: url(https://i.shgcdn.com/47bffabc-8ca7-4842-915f-ed7b752b820a/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-4e43a409-1b1c-4938-9533-4b716479c389 > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0.25;
  display: block;
}#s-4e43a409-1b1c-4938-9533-4b716479c389.shg-box.shg-c {
  justify-content: center;
}

#s-4d1b2742-7bb5-44f6-b6e0-7c8a31f84e71 {
  margin-top: 190px;
margin-left: 30px;
margin-right: 30px;
}

#s-9f3603a5-0b43-409c-9ca7-839ecbe63c6b {
  border-style: solid;
margin-left: 30px;
margin-bottom: 40px;
margin-right: 30px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 0.2);
border-radius: 0px;
opacity: 1;
text-align: center;
background-color: rgba(255, 255, 255, 0);
font-size: 16px;
font-weight: bold;
color: rgba(255, 255, 255, 1);
text-decoration: none;
}
#s-9f3603a5-0b43-409c-9ca7-839ecbe63c6b:hover {opacity: 1 !important;
background-color: rgba(255, 255, 255, 1) !important;
color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;}#s-9f3603a5-0b43-409c-9ca7-839ecbe63c6b:active {opacity: 1 !important;
background-color: rgba(255, 255, 255, 1) !important;
color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;}

  #s-9f3603a5-0b43-409c-9ca7-839ecbe63c6b-root {
    text-align: center;
  }


#s-9f3603a5-0b43-409c-9ca7-839ecbe63c6b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-9f3603a5-0b43-409c-9ca7-839ecbe63c6b-root {
    text-align: center;
  }


#s-9f3603a5-0b43-409c-9ca7-839ecbe63c6b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9f3603a5-0b43-409c-9ca7-839ecbe63c6b-root {
    text-align: center;
  }


#s-9f3603a5-0b43-409c-9ca7-839ecbe63c6b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9f3603a5-0b43-409c-9ca7-839ecbe63c6b-root {
    text-align: center;
  }


#s-9f3603a5-0b43-409c-9ca7-839ecbe63c6b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-9f3603a5-0b43-409c-9ca7-839ecbe63c6b-root {
    text-align: center;
  }


#s-9f3603a5-0b43-409c-9ca7-839ecbe63c6b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
#s-7c47fdef-d26b-40e0-b987-7763e114589d {
  background-repeat: no-repeat;
background-size: cover;
margin-bottom: 15px;
padding-top: 1px;
padding-bottom: 1px;
min-height: 360px;
background-position: center center;
}

#s-7c47fdef-d26b-40e0-b987-7763e114589d {
  background-image: url(https://i.shgcdn.com/b586dd70-2fe7-462a-8990-29431e097638/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-7c47fdef-d26b-40e0-b987-7763e114589d > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0.25;
  display: block;
}#s-7c47fdef-d26b-40e0-b987-7763e114589d.shg-box.shg-c {
  justify-content: center;
}

#s-0b948dcc-d601-4fcc-8d57-c9e9fe2f4eb3 {
  margin-top: 190px;
margin-left: 30px;
margin-right: 30px;
}

#s-b9aa165a-3aa7-4bca-902b-ea3e9fa7a57c {
  border-style: solid;
margin-left: 30px;
margin-bottom: 40px;
margin-right: 30px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 0.2);
border-radius: 0px;
opacity: 1;
text-align: center;
background-color: rgba(255, 255, 255, 0);
font-size: 16px;
font-weight: bold;
color: rgba(255, 255, 255, 1);
text-decoration: none;
}
#s-b9aa165a-3aa7-4bca-902b-ea3e9fa7a57c:hover {opacity: 1 !important;
background-color: rgba(255, 255, 255, 1) !important;
color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;}#s-b9aa165a-3aa7-4bca-902b-ea3e9fa7a57c:active {opacity: 1 !important;
background-color: rgba(255, 255, 255, 1) !important;
color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;}

  #s-b9aa165a-3aa7-4bca-902b-ea3e9fa7a57c-root {
    text-align: center;
  }


#s-b9aa165a-3aa7-4bca-902b-ea3e9fa7a57c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-b9aa165a-3aa7-4bca-902b-ea3e9fa7a57c-root {
    text-align: center;
  }


#s-b9aa165a-3aa7-4bca-902b-ea3e9fa7a57c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b9aa165a-3aa7-4bca-902b-ea3e9fa7a57c-root {
    text-align: center;
  }


#s-b9aa165a-3aa7-4bca-902b-ea3e9fa7a57c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b9aa165a-3aa7-4bca-902b-ea3e9fa7a57c-root {
    text-align: center;
  }


#s-b9aa165a-3aa7-4bca-902b-ea3e9fa7a57c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-b9aa165a-3aa7-4bca-902b-ea3e9fa7a57c-root {
    text-align: center;
  }


#s-b9aa165a-3aa7-4bca-902b-ea3e9fa7a57c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
#s-a38f89ab-e188-4060-81b5-4162c87fe163 {
  background-repeat: no-repeat;
background-size: cover;
margin-bottom: 15px;
min-height: 360px;
background-position: center center;
}

#s-a38f89ab-e188-4060-81b5-4162c87fe163 {
  background-image: url(https://i.shgcdn.com/b86c37cb-d9c5-4366-9257-e3de81797080/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-a38f89ab-e188-4060-81b5-4162c87fe163 > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0.25;
  display: block;
}#s-a38f89ab-e188-4060-81b5-4162c87fe163.shg-box.shg-c {
  justify-content: center;
}

#s-556bd9a0-322a-4e05-91fb-9e633c8ef41c {
  margin-top: 190px;
margin-left: 30px;
margin-right: 30px;
}

#s-21d3703d-54e3-4d6e-8305-9ccb8a0f3bab {
  border-style: solid;
margin-left: 30px;
margin-bottom: 40px;
margin-right: 30px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 0.2);
border-radius: 0px;
opacity: 1;
text-align: center;
background-color: rgba(255, 255, 255, 0);
font-size: 16px;
font-weight: bold;
color: rgba(255, 255, 255, 1);
text-decoration: none;
}
#s-21d3703d-54e3-4d6e-8305-9ccb8a0f3bab:hover {opacity: 1 !important;
background-color: rgba(255, 255, 255, 1) !important;
color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;}#s-21d3703d-54e3-4d6e-8305-9ccb8a0f3bab:active {opacity: 1 !important;
background-color: rgba(255, 255, 255, 1) !important;
color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;}

  #s-21d3703d-54e3-4d6e-8305-9ccb8a0f3bab-root {
    text-align: center;
  }


#s-21d3703d-54e3-4d6e-8305-9ccb8a0f3bab.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-21d3703d-54e3-4d6e-8305-9ccb8a0f3bab-root {
    text-align: center;
  }


#s-21d3703d-54e3-4d6e-8305-9ccb8a0f3bab.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-21d3703d-54e3-4d6e-8305-9ccb8a0f3bab-root {
    text-align: center;
  }


#s-21d3703d-54e3-4d6e-8305-9ccb8a0f3bab.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-21d3703d-54e3-4d6e-8305-9ccb8a0f3bab-root {
    text-align: center;
  }


#s-21d3703d-54e3-4d6e-8305-9ccb8a0f3bab.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-21d3703d-54e3-4d6e-8305-9ccb8a0f3bab-root {
    text-align: center;
  }


#s-21d3703d-54e3-4d6e-8305-9ccb8a0f3bab.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
#s-8690b651-2447-4012-ad5a-f36566a3de19 {
  margin-top: 15px;
margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-8690b651-2447-4012-ad5a-f36566a3de19"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8690b651-2447-4012-ad5a-f36566a3de19"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-8690b651-2447-4012-ad5a-f36566a3de19"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-8690b651-2447-4012-ad5a-f36566a3de19"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-9be734fd-9a3a-4a9d-b072-bf927f40ab66 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 8030px;
aspect-ratio: 8030/5293;
text-align: center;
}

#s-9be734fd-9a3a-4a9d-b072-bf927f40ab66 {
  overflow: hidden;
  
  
      max-width: 8030px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-9be734fd-9a3a-4a9d-b072-bf927f40ab66 img.shogun-image,
  #s-9be734fd-9a3a-4a9d-b072-bf927f40ab66 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9be734fd-9a3a-4a9d-b072-bf927f40ab66 {
    width: 100%;
    height: auto;
  }



  #s-9be734fd-9a3a-4a9d-b072-bf927f40ab66 img.shogun-image {
    

    
    
    
  }


#s-9be734fd-9a3a-4a9d-b072-bf927f40ab66 .shogun-image-content {
  
    justify-content: center;
  
}

#s-a2279a3a-9364-451b-84f0-21ab983cabe8 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 8030px;
aspect-ratio: 8030/5293;
text-align: center;
}

#s-a2279a3a-9364-451b-84f0-21ab983cabe8 {
  overflow: hidden;
  
  
      max-width: 8030px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-a2279a3a-9364-451b-84f0-21ab983cabe8 img.shogun-image,
  #s-a2279a3a-9364-451b-84f0-21ab983cabe8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a2279a3a-9364-451b-84f0-21ab983cabe8 {
    width: 100%;
    height: auto;
  }



  #s-a2279a3a-9364-451b-84f0-21ab983cabe8 img.shogun-image {
    

    
    
    
  }


#s-a2279a3a-9364-451b-84f0-21ab983cabe8 .shogun-image-content {
  
    justify-content: center;
  
}

#s-df7ee2e6-1240-4db9-ae80-6d51ab6d2b97 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 8030px;
aspect-ratio: 8030/5293;
text-align: center;
}

#s-df7ee2e6-1240-4db9-ae80-6d51ab6d2b97 {
  overflow: hidden;
  
  
      max-width: 8030px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-df7ee2e6-1240-4db9-ae80-6d51ab6d2b97 img.shogun-image,
  #s-df7ee2e6-1240-4db9-ae80-6d51ab6d2b97 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-df7ee2e6-1240-4db9-ae80-6d51ab6d2b97 {
    width: 100%;
    height: auto;
  }



  #s-df7ee2e6-1240-4db9-ae80-6d51ab6d2b97 img.shogun-image {
    

    
    
    
  }


#s-df7ee2e6-1240-4db9-ae80-6d51ab6d2b97 .shogun-image-content {
  
    justify-content: center;
  
}

#s-ebbff045-6106-4c13-8fb7-f765c3b5aff6 {
  text-align: left;
}

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

#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;
  -webkit-user-select: none;
     -moz-user-select: none;
          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-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:not(.shopify-section *):not([id^="wistia"]) {
  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;
}
