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

.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-10d7c4b9-67a0-4e11-a9ac-f613b46243ab {
  margin-top: 60px;
margin-left: 10%;
margin-bottom: 60px;
margin-right: 10%;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-10d7c4b9-67a0-4e11-a9ac-f613b46243ab {
  margin-left: -16%;
margin-right: -16%;
}
}







#s-10d7c4b9-67a0-4e11-a9ac-f613b46243ab > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-10d7c4b9-67a0-4e11-a9ac-f613b46243ab.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;
}

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

#s-ea5cb937-d46b-4863-9b48-cc35e9bc05d1 {
  margin-left: 10%;
margin-right: 10%;
}

@media (min-width: 0px) {
[id="s-ea5cb937-d46b-4863-9b48-cc35e9bc05d1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ea5cb937-d46b-4863-9b48-cc35e9bc05d1"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-ea5cb937-d46b-4863-9b48-cc35e9bc05d1"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ea5cb937-d46b-4863-9b48-cc35e9bc05d1"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-ea5cb937-d46b-4863-9b48-cc35e9bc05d1"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ea5cb937-d46b-4863-9b48-cc35e9bc05d1"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-ea5cb937-d46b-4863-9b48-cc35e9bc05d1"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

}

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

.shg-image-content-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}

.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;
  flex-direction: column;
  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;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  min-width: 100%;
  min-height: 100%;
  /* 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-image-content-wrapper .shogun-image.hover~* {
  z-index: 1;
}

.shogun-image-content > * {
  flex-shrink: 0; /* Prevents children from shrinking maintaining natural size*/
  width: 100%;
}
#s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 {
  margin-top: 20px;
margin-bottom: 20px;
max-width: 3103px;
aspect-ratio: 3103/3253;
text-align: center;
}
@media (max-width: 767px){#s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 {
  margin: 0 !important;
  overflow: visible;
}

#s-78aea8ec-ab1a-4ba8-baba-3873cd892df7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 20px;
  margin-bottom: 20px;
}

.shg-image-content-margin-container-s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 img.shogun-image {
  /* Add background color handling */
  
}

#s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 .shg-image-content-wrapper {
      aspect-ratio: 3103/3253;
      min-width: 100%;
      height: auto;
    }

    #s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 .shogun-image-link {
      aspect-ratio: 3103/3253;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3103px;
  }



  img.s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shogun-image {
    
    
    
    max-height: 3103px;
  }


.s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shogun-image {
  box-sizing: border-box;
}



.s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 {
      --shg-aspect-ratio: calc(3103/3253); 
    }

    .s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shogun-image-container {
      position: relative;
    }

    .s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3103px;
    }
  }

@media (min-width: 1200px){#s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 {
  margin: 0 !important;
  overflow: visible;
}

#s-78aea8ec-ab1a-4ba8-baba-3873cd892df7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 img.shogun-image {
  /* Add background color handling */
  
}

#s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 .shg-image-content-wrapper {
      aspect-ratio: 3103/3253;
      min-width: 100%;
      height: auto;
    }

    #s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 .shogun-image-link {
      aspect-ratio: 3103/3253;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3103px;
  }



  img.s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shogun-image {
    
    
    
    max-height: 3103px;
  }


.s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shogun-image {
  box-sizing: border-box;
}



.s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 {
      --shg-aspect-ratio: calc(3103/3253); 
    }

    .s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shogun-image-container {
      position: relative;
    }

    .s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3103px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 {
  margin: 0 !important;
  overflow: visible;
}

#s-78aea8ec-ab1a-4ba8-baba-3873cd892df7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 img.shogun-image {
  /* Add background color handling */
  
}

#s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 .shg-image-content-wrapper {
      aspect-ratio: 3103/3253;
      min-width: 100%;
      height: auto;
    }

    #s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 .shogun-image-link {
      aspect-ratio: 3103/3253;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3103px;
  }



  img.s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shogun-image {
    
    
    
    max-height: 3103px;
  }


.s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shogun-image {
  box-sizing: border-box;
}



.s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 {
      --shg-aspect-ratio: calc(3103/3253); 
    }

    .s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shogun-image-container {
      position: relative;
    }

    .s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3103px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 {
  margin: 0 !important;
  overflow: visible;
}

#s-78aea8ec-ab1a-4ba8-baba-3873cd892df7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 img.shogun-image {
  /* Add background color handling */
  
}

#s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 .shg-image-content-wrapper {
      aspect-ratio: 3103/3253;
      min-width: 100%;
      height: auto;
    }

    #s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 .shogun-image-link {
      aspect-ratio: 3103/3253;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3103px;
  }



  img.s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shogun-image {
    
    
    
    max-height: 3103px;
  }


.s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shogun-image {
  box-sizing: border-box;
}



.s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 {
      --shg-aspect-ratio: calc(3103/3253); 
    }

    .s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shogun-image-container {
      position: relative;
    }

    .s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3103px;
    }
  }

}@media (max-width: 767px){#s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 {
  margin: 0 !important;
  overflow: visible;
}

#s-78aea8ec-ab1a-4ba8-baba-3873cd892df7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 0px;
  margin-bottom: 0px;
}

.shg-image-content-margin-container-s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 img.shogun-image {
  /* Add background color handling */
  
}

#s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 .shg-image-content-wrapper {
      aspect-ratio: 3103/3253;
      min-width: 100%;
      height: auto;
    }

    #s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 .shogun-image-link {
      aspect-ratio: 3103/3253;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3103px;
  }



  img.s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shogun-image {
    
    
    
    max-height: 3103px;
  }


.s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shogun-image {
  box-sizing: border-box;
}



.s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 {
      --shg-aspect-ratio: calc(3103/3253); 
    }

    .s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shogun-image-container {
      position: relative;
    }

    .s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-78aea8ec-ab1a-4ba8-baba-3873cd892df7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-78aea8ec-ab1a-4ba8-baba-3873cd892df7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3103px;
    }
  }

}
.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: 400;
  font-family: "DIN Next";
}

.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-be780cb5-ddca-4b08-86db-c076e6f140b0 {
  margin-top: 100px;
padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 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: 0px;
background-color: rgba(0, 171, 196, 1);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
}
#s-be780cb5-ddca-4b08-86db-c076e6f140b0:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-be780cb5-ddca-4b08-86db-c076e6f140b0:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-be780cb5-ddca-4b08-86db-c076e6f140b0 {
  margin-top: 0px;
margin-bottom: 10px;
}
}

  #s-be780cb5-ddca-4b08-86db-c076e6f140b0-root {
    text-align: center;
  }


#s-be780cb5-ddca-4b08-86db-c076e6f140b0.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
@media (min-width: 1200px){
  #s-be780cb5-ddca-4b08-86db-c076e6f140b0-root {
    text-align: center;
  }


#s-be780cb5-ddca-4b08-86db-c076e6f140b0.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-be780cb5-ddca-4b08-86db-c076e6f140b0-root {
    text-align: center;
  }


#s-be780cb5-ddca-4b08-86db-c076e6f140b0.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-be780cb5-ddca-4b08-86db-c076e6f140b0-root {
    text-align: center;
  }


#s-be780cb5-ddca-4b08-86db-c076e6f140b0.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (max-width: 767px){
  #s-be780cb5-ddca-4b08-86db-c076e6f140b0-root {
    text-align: center;
  }


#s-be780cb5-ddca-4b08-86db-c076e6f140b0.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}
#s-2004ebcc-2229-459c-9956-213352d78458 {
  margin-top: 10px;
margin-left: 10%;
margin-bottom: 10px;
margin-right: 10%;
padding-top: 0px;
padding-bottom: 0px;
}
@media (max-width: 767px){#s-2004ebcc-2229-459c-9956-213352d78458 {
  margin-left: 10%;
margin-right: 10%;
}
}
@media (min-width: 0px) {
[id="s-2004ebcc-2229-459c-9956-213352d78458"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-2004ebcc-2229-459c-9956-213352d78458"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-2004ebcc-2229-459c-9956-213352d78458"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-2004ebcc-2229-459c-9956-213352d78458"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

.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;
  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-740619ad-21b3-4ab4-b150-31919413a374 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-740619ad-21b3-4ab4-b150-31919413a374 {
  overflow: hidden;
  
  
      max-width: 500px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-740619ad-21b3-4ab4-b150-31919413a374 img.shogun-image,
  #s-740619ad-21b3-4ab4-b150-31919413a374 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-740619ad-21b3-4ab4-b150-31919413a374 {
    width: 100%;
    height: auto;
  }



  #s-740619ad-21b3-4ab4-b150-31919413a374 img.shogun-image {
    

    
    
    
  }


#s-740619ad-21b3-4ab4-b150-31919413a374 .shogun-image-content {
  
    justify-content: center;
  
}

#s-c6a1f3bf-69a2-4908-a420-148ae6c20875 {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 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: 0px;
background-color: rgba(0, 171, 196, 1);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
}
#s-c6a1f3bf-69a2-4908-a420-148ae6c20875:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c6a1f3bf-69a2-4908-a420-148ae6c20875:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-c6a1f3bf-69a2-4908-a420-148ae6c20875-root {
    text-align: center;
  }


#s-c6a1f3bf-69a2-4908-a420-148ae6c20875.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
@media (min-width: 1200px){
  #s-c6a1f3bf-69a2-4908-a420-148ae6c20875-root {
    text-align: center;
  }


#s-c6a1f3bf-69a2-4908-a420-148ae6c20875.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c6a1f3bf-69a2-4908-a420-148ae6c20875-root {
    text-align: center;
  }


#s-c6a1f3bf-69a2-4908-a420-148ae6c20875.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c6a1f3bf-69a2-4908-a420-148ae6c20875-root {
    text-align: center;
  }


#s-c6a1f3bf-69a2-4908-a420-148ae6c20875.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (max-width: 767px){
  #s-c6a1f3bf-69a2-4908-a420-148ae6c20875-root {
    text-align: center;
  }


#s-c6a1f3bf-69a2-4908-a420-148ae6c20875.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}
#s-09df3155-c2f3-4152-b856-e5c66add2c31 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-09df3155-c2f3-4152-b856-e5c66add2c31 {
  overflow: hidden;
  
  
      max-width: 500px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-09df3155-c2f3-4152-b856-e5c66add2c31 img.shogun-image,
  #s-09df3155-c2f3-4152-b856-e5c66add2c31 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-09df3155-c2f3-4152-b856-e5c66add2c31 {
    width: 100%;
    height: auto;
  }



  #s-09df3155-c2f3-4152-b856-e5c66add2c31 img.shogun-image {
    

    
    
    
  }


#s-09df3155-c2f3-4152-b856-e5c66add2c31 .shogun-image-content {
  
    justify-content: center;
  
}

#s-b5611dd4-a543-47dc-9d09-95dcc7fb6ca1 {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 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: 0px;
background-color: rgba(0, 171, 196, 1);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
}
#s-b5611dd4-a543-47dc-9d09-95dcc7fb6ca1:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-b5611dd4-a543-47dc-9d09-95dcc7fb6ca1:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-b5611dd4-a543-47dc-9d09-95dcc7fb6ca1-root {
    text-align: center;
  }


#s-b5611dd4-a543-47dc-9d09-95dcc7fb6ca1.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
@media (min-width: 1200px){
  #s-b5611dd4-a543-47dc-9d09-95dcc7fb6ca1-root {
    text-align: center;
  }


#s-b5611dd4-a543-47dc-9d09-95dcc7fb6ca1.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b5611dd4-a543-47dc-9d09-95dcc7fb6ca1-root {
    text-align: center;
  }


#s-b5611dd4-a543-47dc-9d09-95dcc7fb6ca1.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b5611dd4-a543-47dc-9d09-95dcc7fb6ca1-root {
    text-align: center;
  }


#s-b5611dd4-a543-47dc-9d09-95dcc7fb6ca1.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (max-width: 767px){
  #s-b5611dd4-a543-47dc-9d09-95dcc7fb6ca1-root {
    text-align: center;
  }


#s-b5611dd4-a543-47dc-9d09-95dcc7fb6ca1.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}
#s-3e5be5ef-b797-41de-9260-a33e69eba8e2 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-3e5be5ef-b797-41de-9260-a33e69eba8e2 {
  overflow: hidden;
  
  
      max-width: 500px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-3e5be5ef-b797-41de-9260-a33e69eba8e2 img.shogun-image,
  #s-3e5be5ef-b797-41de-9260-a33e69eba8e2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3e5be5ef-b797-41de-9260-a33e69eba8e2 {
    width: 100%;
    height: auto;
  }



  #s-3e5be5ef-b797-41de-9260-a33e69eba8e2 img.shogun-image {
    

    
    
    
  }


#s-3e5be5ef-b797-41de-9260-a33e69eba8e2 .shogun-image-content {
  
    justify-content: center;
  
}

#s-6d3033d3-1b29-4e59-9c8e-b2dcc9330317 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 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: 0px;
background-color: rgba(0, 171, 196, 1);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
}
#s-6d3033d3-1b29-4e59-9c8e-b2dcc9330317:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-6d3033d3-1b29-4e59-9c8e-b2dcc9330317:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-6d3033d3-1b29-4e59-9c8e-b2dcc9330317-root {
    text-align: center;
  }


#s-6d3033d3-1b29-4e59-9c8e-b2dcc9330317.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
@media (min-width: 1200px){
  #s-6d3033d3-1b29-4e59-9c8e-b2dcc9330317-root {
    text-align: center;
  }


#s-6d3033d3-1b29-4e59-9c8e-b2dcc9330317.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6d3033d3-1b29-4e59-9c8e-b2dcc9330317-root {
    text-align: center;
  }


#s-6d3033d3-1b29-4e59-9c8e-b2dcc9330317.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6d3033d3-1b29-4e59-9c8e-b2dcc9330317-root {
    text-align: center;
  }


#s-6d3033d3-1b29-4e59-9c8e-b2dcc9330317.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (max-width: 767px){
  #s-6d3033d3-1b29-4e59-9c8e-b2dcc9330317-root {
    text-align: center;
  }


#s-6d3033d3-1b29-4e59-9c8e-b2dcc9330317.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}
#s-4fa23fca-f572-457a-b515-cd431fd80fcb {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-4fa23fca-f572-457a-b515-cd431fd80fcb {
  overflow: hidden;
  
  
      max-width: 500px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-4fa23fca-f572-457a-b515-cd431fd80fcb img.shogun-image,
  #s-4fa23fca-f572-457a-b515-cd431fd80fcb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4fa23fca-f572-457a-b515-cd431fd80fcb {
    width: 100%;
    height: auto;
  }



  #s-4fa23fca-f572-457a-b515-cd431fd80fcb img.shogun-image {
    

    
    
    
  }


#s-4fa23fca-f572-457a-b515-cd431fd80fcb .shogun-image-content {
  
    justify-content: center;
  
}

#s-e4c6d940-8af1-4817-ac86-0d15694141aa {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 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: 0px;
background-color: rgba(0, 171, 196, 1);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
}
#s-e4c6d940-8af1-4817-ac86-0d15694141aa:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e4c6d940-8af1-4817-ac86-0d15694141aa:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-e4c6d940-8af1-4817-ac86-0d15694141aa-root {
    text-align: center;
  }


#s-e4c6d940-8af1-4817-ac86-0d15694141aa.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
@media (min-width: 1200px){
  #s-e4c6d940-8af1-4817-ac86-0d15694141aa-root {
    text-align: center;
  }


#s-e4c6d940-8af1-4817-ac86-0d15694141aa.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e4c6d940-8af1-4817-ac86-0d15694141aa-root {
    text-align: center;
  }


#s-e4c6d940-8af1-4817-ac86-0d15694141aa.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e4c6d940-8af1-4817-ac86-0d15694141aa-root {
    text-align: center;
  }


#s-e4c6d940-8af1-4817-ac86-0d15694141aa.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (max-width: 767px){
  #s-e4c6d940-8af1-4817-ac86-0d15694141aa-root {
    text-align: center;
  }


#s-e4c6d940-8af1-4817-ac86-0d15694141aa.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}
#s-1493484a-d10e-42a4-be89-ef00142f806d {
  margin-top: 10px;
margin-left: 10%;
margin-bottom: 10px;
margin-right: 10%;
padding-top: 0px;
padding-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-1493484a-d10e-42a4-be89-ef00142f806d"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-1493484a-d10e-42a4-be89-ef00142f806d"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-1493484a-d10e-42a4-be89-ef00142f806d"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-1493484a-d10e-42a4-be89-ef00142f806d"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-85287118-ca61-494f-88ca-7e44addcaf23 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 500px;
aspect-ratio: 1:1;
text-align: center;
}

#s-85287118-ca61-494f-88ca-7e44addcaf23 {
  overflow: hidden;
  
  
      max-width: 500px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-85287118-ca61-494f-88ca-7e44addcaf23 img.shogun-image,
  #s-85287118-ca61-494f-88ca-7e44addcaf23 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-85287118-ca61-494f-88ca-7e44addcaf23 {
    width: 100%;
    height: auto;
  }




#s-85287118-ca61-494f-88ca-7e44addcaf23 .shogun-image-content {
  
    justify-content: center;
  
}

#s-7021ab18-902e-4302-95b1-3136a63c7827 {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 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: 0px;
background-color: rgba(0, 171, 196, 1);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
}
#s-7021ab18-902e-4302-95b1-3136a63c7827:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-7021ab18-902e-4302-95b1-3136a63c7827:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-7021ab18-902e-4302-95b1-3136a63c7827-root {
    text-align: center;
  }


#s-7021ab18-902e-4302-95b1-3136a63c7827.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
@media (min-width: 1200px){
  #s-7021ab18-902e-4302-95b1-3136a63c7827-root {
    text-align: center;
  }


#s-7021ab18-902e-4302-95b1-3136a63c7827.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7021ab18-902e-4302-95b1-3136a63c7827-root {
    text-align: center;
  }


#s-7021ab18-902e-4302-95b1-3136a63c7827.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7021ab18-902e-4302-95b1-3136a63c7827-root {
    text-align: center;
  }


#s-7021ab18-902e-4302-95b1-3136a63c7827.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (max-width: 767px){
  #s-7021ab18-902e-4302-95b1-3136a63c7827-root {
    text-align: center;
  }


#s-7021ab18-902e-4302-95b1-3136a63c7827.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}
#s-6f24540e-a688-4ac2-a523-32ac405b84b4 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-6f24540e-a688-4ac2-a523-32ac405b84b4 {
  overflow: hidden;
  
  
      max-width: 500px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-6f24540e-a688-4ac2-a523-32ac405b84b4 img.shogun-image,
  #s-6f24540e-a688-4ac2-a523-32ac405b84b4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6f24540e-a688-4ac2-a523-32ac405b84b4 {
    width: 100%;
    height: auto;
  }



  #s-6f24540e-a688-4ac2-a523-32ac405b84b4 img.shogun-image {
    

    
    
    
  }


#s-6f24540e-a688-4ac2-a523-32ac405b84b4 .shogun-image-content {
  
    justify-content: center;
  
}

#s-85d7ac4c-cf3b-4d90-8594-5e43f8ae6f37 {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 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: 0px;
background-color: rgba(0, 171, 196, 1);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
}
#s-85d7ac4c-cf3b-4d90-8594-5e43f8ae6f37:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-85d7ac4c-cf3b-4d90-8594-5e43f8ae6f37:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-85d7ac4c-cf3b-4d90-8594-5e43f8ae6f37-root {
    text-align: center;
  }


#s-85d7ac4c-cf3b-4d90-8594-5e43f8ae6f37.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
@media (min-width: 1200px){
  #s-85d7ac4c-cf3b-4d90-8594-5e43f8ae6f37-root {
    text-align: center;
  }


#s-85d7ac4c-cf3b-4d90-8594-5e43f8ae6f37.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-85d7ac4c-cf3b-4d90-8594-5e43f8ae6f37-root {
    text-align: center;
  }


#s-85d7ac4c-cf3b-4d90-8594-5e43f8ae6f37.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-85d7ac4c-cf3b-4d90-8594-5e43f8ae6f37-root {
    text-align: center;
  }


#s-85d7ac4c-cf3b-4d90-8594-5e43f8ae6f37.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (max-width: 767px){
  #s-85d7ac4c-cf3b-4d90-8594-5e43f8ae6f37-root {
    text-align: center;
  }


#s-85d7ac4c-cf3b-4d90-8594-5e43f8ae6f37.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}
#s-8dc01ddd-0b2c-4d4a-a37c-7a7958389a7b {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-8dc01ddd-0b2c-4d4a-a37c-7a7958389a7b {
  overflow: hidden;
  
  
      max-width: 500px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-8dc01ddd-0b2c-4d4a-a37c-7a7958389a7b img.shogun-image,
  #s-8dc01ddd-0b2c-4d4a-a37c-7a7958389a7b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8dc01ddd-0b2c-4d4a-a37c-7a7958389a7b {
    width: 100%;
    height: auto;
  }



  #s-8dc01ddd-0b2c-4d4a-a37c-7a7958389a7b img.shogun-image {
    

    
    
    
  }


#s-8dc01ddd-0b2c-4d4a-a37c-7a7958389a7b .shogun-image-content {
  
    justify-content: center;
  
}

#s-58be513e-90ec-41f4-9123-b005f5c671b3 {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 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: 0px;
background-color: rgba(0, 171, 196, 1);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
}
#s-58be513e-90ec-41f4-9123-b005f5c671b3:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-58be513e-90ec-41f4-9123-b005f5c671b3:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-58be513e-90ec-41f4-9123-b005f5c671b3-root {
    text-align: center;
  }


#s-58be513e-90ec-41f4-9123-b005f5c671b3.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
@media (min-width: 1200px){
  #s-58be513e-90ec-41f4-9123-b005f5c671b3-root {
    text-align: center;
  }


#s-58be513e-90ec-41f4-9123-b005f5c671b3.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-58be513e-90ec-41f4-9123-b005f5c671b3-root {
    text-align: center;
  }


#s-58be513e-90ec-41f4-9123-b005f5c671b3.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-58be513e-90ec-41f4-9123-b005f5c671b3-root {
    text-align: center;
  }


#s-58be513e-90ec-41f4-9123-b005f5c671b3.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (max-width: 767px){
  #s-58be513e-90ec-41f4-9123-b005f5c671b3-root {
    text-align: center;
  }


#s-58be513e-90ec-41f4-9123-b005f5c671b3.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}
#s-bff7a3ab-f4ea-4aca-a522-d2012c5a152f {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-bff7a3ab-f4ea-4aca-a522-d2012c5a152f {
  overflow: hidden;
  
  
      max-width: 500px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-bff7a3ab-f4ea-4aca-a522-d2012c5a152f img.shogun-image,
  #s-bff7a3ab-f4ea-4aca-a522-d2012c5a152f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-bff7a3ab-f4ea-4aca-a522-d2012c5a152f {
    width: 100%;
    height: auto;
  }



  #s-bff7a3ab-f4ea-4aca-a522-d2012c5a152f img.shogun-image {
    

    
    
    
  }


#s-bff7a3ab-f4ea-4aca-a522-d2012c5a152f .shogun-image-content {
  
    justify-content: center;
  
}

#s-a7f25331-cf4b-496b-8da1-62535cfa1e1e {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 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: 0px;
background-color: rgba(0, 171, 196, 1);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
}
#s-a7f25331-cf4b-496b-8da1-62535cfa1e1e:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-a7f25331-cf4b-496b-8da1-62535cfa1e1e:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-a7f25331-cf4b-496b-8da1-62535cfa1e1e-root {
    text-align: center;
  }


#s-a7f25331-cf4b-496b-8da1-62535cfa1e1e.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
@media (min-width: 1200px){
  #s-a7f25331-cf4b-496b-8da1-62535cfa1e1e-root {
    text-align: center;
  }


#s-a7f25331-cf4b-496b-8da1-62535cfa1e1e.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a7f25331-cf4b-496b-8da1-62535cfa1e1e-root {
    text-align: center;
  }


#s-a7f25331-cf4b-496b-8da1-62535cfa1e1e.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a7f25331-cf4b-496b-8da1-62535cfa1e1e-root {
    text-align: center;
  }


#s-a7f25331-cf4b-496b-8da1-62535cfa1e1e.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (max-width: 767px){
  #s-a7f25331-cf4b-496b-8da1-62535cfa1e1e-root {
    text-align: center;
  }


#s-a7f25331-cf4b-496b-8da1-62535cfa1e1e.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}
#s-c0d00cc1-c9de-4f17-b6fd-729e0cb0652f {
  margin-top: 10px;
margin-left: 10%;
margin-bottom: 10px;
margin-right: 10%;
padding-top: 0px;
padding-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-c0d00cc1-c9de-4f17-b6fd-729e0cb0652f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-c0d00cc1-c9de-4f17-b6fd-729e0cb0652f"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-c0d00cc1-c9de-4f17-b6fd-729e0cb0652f"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-c0d00cc1-c9de-4f17-b6fd-729e0cb0652f"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-17d4b6db-464a-4406-baaa-f181ca581eba {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-17d4b6db-464a-4406-baaa-f181ca581eba {
  overflow: hidden;
  
  
      max-width: 500px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-17d4b6db-464a-4406-baaa-f181ca581eba img.shogun-image,
  #s-17d4b6db-464a-4406-baaa-f181ca581eba .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-17d4b6db-464a-4406-baaa-f181ca581eba {
    width: 100%;
    height: auto;
  }



  #s-17d4b6db-464a-4406-baaa-f181ca581eba img.shogun-image {
    

    
    
    
  }


#s-17d4b6db-464a-4406-baaa-f181ca581eba .shogun-image-content {
  
    justify-content: center;
  
}

#s-4377ac92-9600-40f1-9c91-22902b5b9a5a {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 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: 0px;
background-color: rgba(0, 171, 196, 1);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
}
#s-4377ac92-9600-40f1-9c91-22902b5b9a5a:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-4377ac92-9600-40f1-9c91-22902b5b9a5a:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-4377ac92-9600-40f1-9c91-22902b5b9a5a-root {
    text-align: center;
  }


#s-4377ac92-9600-40f1-9c91-22902b5b9a5a.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
@media (min-width: 1200px){
  #s-4377ac92-9600-40f1-9c91-22902b5b9a5a-root {
    text-align: center;
  }


#s-4377ac92-9600-40f1-9c91-22902b5b9a5a.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4377ac92-9600-40f1-9c91-22902b5b9a5a-root {
    text-align: center;
  }


#s-4377ac92-9600-40f1-9c91-22902b5b9a5a.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4377ac92-9600-40f1-9c91-22902b5b9a5a-root {
    text-align: center;
  }


#s-4377ac92-9600-40f1-9c91-22902b5b9a5a.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (max-width: 767px){
  #s-4377ac92-9600-40f1-9c91-22902b5b9a5a-root {
    text-align: center;
  }


#s-4377ac92-9600-40f1-9c91-22902b5b9a5a.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}
#s-c808af05-cfcd-4258-ac90-5610921c9bcf {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-c808af05-cfcd-4258-ac90-5610921c9bcf {
  overflow: hidden;
  
  
      max-width: 500px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-c808af05-cfcd-4258-ac90-5610921c9bcf img.shogun-image,
  #s-c808af05-cfcd-4258-ac90-5610921c9bcf .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c808af05-cfcd-4258-ac90-5610921c9bcf {
    width: 100%;
    height: auto;
  }



  #s-c808af05-cfcd-4258-ac90-5610921c9bcf img.shogun-image {
    

    
    
    
  }


#s-c808af05-cfcd-4258-ac90-5610921c9bcf .shogun-image-content {
  
    justify-content: center;
  
}

#s-e694c13b-9393-425a-868c-d0007d5091c9 {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 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: 0px;
background-color: rgba(0, 171, 196, 1);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
}
#s-e694c13b-9393-425a-868c-d0007d5091c9:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e694c13b-9393-425a-868c-d0007d5091c9:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-e694c13b-9393-425a-868c-d0007d5091c9-root {
    text-align: center;
  }


#s-e694c13b-9393-425a-868c-d0007d5091c9.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
@media (min-width: 1200px){
  #s-e694c13b-9393-425a-868c-d0007d5091c9-root {
    text-align: center;
  }


#s-e694c13b-9393-425a-868c-d0007d5091c9.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e694c13b-9393-425a-868c-d0007d5091c9-root {
    text-align: center;
  }


#s-e694c13b-9393-425a-868c-d0007d5091c9.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e694c13b-9393-425a-868c-d0007d5091c9-root {
    text-align: center;
  }


#s-e694c13b-9393-425a-868c-d0007d5091c9.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (max-width: 767px){
  #s-e694c13b-9393-425a-868c-d0007d5091c9-root {
    text-align: center;
  }


#s-e694c13b-9393-425a-868c-d0007d5091c9.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}
#s-45b5b1e5-ced0-4f7f-a82c-c1b273543d67 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-45b5b1e5-ced0-4f7f-a82c-c1b273543d67 {
  overflow: hidden;
  
  
      max-width: 500px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-45b5b1e5-ced0-4f7f-a82c-c1b273543d67 img.shogun-image,
  #s-45b5b1e5-ced0-4f7f-a82c-c1b273543d67 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-45b5b1e5-ced0-4f7f-a82c-c1b273543d67 {
    width: 100%;
    height: auto;
  }



  #s-45b5b1e5-ced0-4f7f-a82c-c1b273543d67 img.shogun-image {
    

    
    
    
  }


#s-45b5b1e5-ced0-4f7f-a82c-c1b273543d67 .shogun-image-content {
  
    justify-content: center;
  
}

#s-c720c1b5-43f0-4eb1-b5ff-1dcfcb28aa33 {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 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: 0px;
background-color: rgba(0, 171, 196, 1);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
}
#s-c720c1b5-43f0-4eb1-b5ff-1dcfcb28aa33:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c720c1b5-43f0-4eb1-b5ff-1dcfcb28aa33:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-c720c1b5-43f0-4eb1-b5ff-1dcfcb28aa33-root {
    text-align: center;
  }


#s-c720c1b5-43f0-4eb1-b5ff-1dcfcb28aa33.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
@media (min-width: 1200px){
  #s-c720c1b5-43f0-4eb1-b5ff-1dcfcb28aa33-root {
    text-align: center;
  }


#s-c720c1b5-43f0-4eb1-b5ff-1dcfcb28aa33.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c720c1b5-43f0-4eb1-b5ff-1dcfcb28aa33-root {
    text-align: center;
  }


#s-c720c1b5-43f0-4eb1-b5ff-1dcfcb28aa33.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c720c1b5-43f0-4eb1-b5ff-1dcfcb28aa33-root {
    text-align: center;
  }


#s-c720c1b5-43f0-4eb1-b5ff-1dcfcb28aa33.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (max-width: 767px){
  #s-c720c1b5-43f0-4eb1-b5ff-1dcfcb28aa33-root {
    text-align: center;
  }


#s-c720c1b5-43f0-4eb1-b5ff-1dcfcb28aa33.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}
#s-2e9e5fbf-0e8b-4c58-a2b4-abec218d4d13 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-2e9e5fbf-0e8b-4c58-a2b4-abec218d4d13 {
  overflow: hidden;
  
  
      max-width: 500px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-2e9e5fbf-0e8b-4c58-a2b4-abec218d4d13 img.shogun-image,
  #s-2e9e5fbf-0e8b-4c58-a2b4-abec218d4d13 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2e9e5fbf-0e8b-4c58-a2b4-abec218d4d13 {
    width: 100%;
    height: auto;
  }



  #s-2e9e5fbf-0e8b-4c58-a2b4-abec218d4d13 img.shogun-image {
    

    
    
    
  }


#s-2e9e5fbf-0e8b-4c58-a2b4-abec218d4d13 .shogun-image-content {
  
    justify-content: center;
  
}

#s-f1880d26-bffc-4984-be2e-bcab15394616 {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 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: 0px;
background-color: rgba(0, 171, 196, 1);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
}
#s-f1880d26-bffc-4984-be2e-bcab15394616:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-f1880d26-bffc-4984-be2e-bcab15394616:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-f1880d26-bffc-4984-be2e-bcab15394616-root {
    text-align: center;
  }


#s-f1880d26-bffc-4984-be2e-bcab15394616.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
@media (min-width: 1200px){
  #s-f1880d26-bffc-4984-be2e-bcab15394616-root {
    text-align: center;
  }


#s-f1880d26-bffc-4984-be2e-bcab15394616.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f1880d26-bffc-4984-be2e-bcab15394616-root {
    text-align: center;
  }


#s-f1880d26-bffc-4984-be2e-bcab15394616.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f1880d26-bffc-4984-be2e-bcab15394616-root {
    text-align: center;
  }


#s-f1880d26-bffc-4984-be2e-bcab15394616.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (max-width: 767px){
  #s-f1880d26-bffc-4984-be2e-bcab15394616-root {
    text-align: center;
  }


#s-f1880d26-bffc-4984-be2e-bcab15394616.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}
#s-13afd09f-3b4d-41e9-a0b5-9dcc4f04c5f8 {
  margin-top: 10px;
margin-left: 10%;
margin-bottom: 10px;
margin-right: 10%;
padding-top: 0px;
padding-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-13afd09f-3b4d-41e9-a0b5-9dcc4f04c5f8"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-13afd09f-3b4d-41e9-a0b5-9dcc4f04c5f8"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-13afd09f-3b4d-41e9-a0b5-9dcc4f04c5f8"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-13afd09f-3b4d-41e9-a0b5-9dcc4f04c5f8"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-05a4432c-65b7-4c2a-b647-c746ae780992 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-05a4432c-65b7-4c2a-b647-c746ae780992 {
  overflow: hidden;
  
  
      max-width: 500px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-05a4432c-65b7-4c2a-b647-c746ae780992 img.shogun-image,
  #s-05a4432c-65b7-4c2a-b647-c746ae780992 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-05a4432c-65b7-4c2a-b647-c746ae780992 {
    width: 100%;
    height: auto;
  }



  #s-05a4432c-65b7-4c2a-b647-c746ae780992 img.shogun-image {
    

    
    
    
  }


#s-05a4432c-65b7-4c2a-b647-c746ae780992 .shogun-image-content {
  
    justify-content: center;
  
}

#s-2a8a6ace-c608-4b89-a565-80cd94b4a418 {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 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: 0px;
background-color: rgba(0, 171, 196, 1);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
}
#s-2a8a6ace-c608-4b89-a565-80cd94b4a418:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-2a8a6ace-c608-4b89-a565-80cd94b4a418:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-2a8a6ace-c608-4b89-a565-80cd94b4a418-root {
    text-align: center;
  }


#s-2a8a6ace-c608-4b89-a565-80cd94b4a418.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
@media (min-width: 1200px){
  #s-2a8a6ace-c608-4b89-a565-80cd94b4a418-root {
    text-align: center;
  }


#s-2a8a6ace-c608-4b89-a565-80cd94b4a418.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-2a8a6ace-c608-4b89-a565-80cd94b4a418-root {
    text-align: center;
  }


#s-2a8a6ace-c608-4b89-a565-80cd94b4a418.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-2a8a6ace-c608-4b89-a565-80cd94b4a418-root {
    text-align: center;
  }


#s-2a8a6ace-c608-4b89-a565-80cd94b4a418.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (max-width: 767px){
  #s-2a8a6ace-c608-4b89-a565-80cd94b4a418-root {
    text-align: center;
  }


#s-2a8a6ace-c608-4b89-a565-80cd94b4a418.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}
#s-63f6af16-9fe0-486b-aa05-e8c2aeb99856 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-63f6af16-9fe0-486b-aa05-e8c2aeb99856 {
  overflow: hidden;
  
  
      max-width: 500px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-63f6af16-9fe0-486b-aa05-e8c2aeb99856 img.shogun-image,
  #s-63f6af16-9fe0-486b-aa05-e8c2aeb99856 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-63f6af16-9fe0-486b-aa05-e8c2aeb99856 {
    width: 100%;
    height: auto;
  }



  #s-63f6af16-9fe0-486b-aa05-e8c2aeb99856 img.shogun-image {
    

    
    
    
  }


#s-63f6af16-9fe0-486b-aa05-e8c2aeb99856 .shogun-image-content {
  
    justify-content: center;
  
}

#s-83434fb6-ada9-4b00-9d22-ca6da5a256d3 {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 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: 0px;
background-color: rgba(0, 171, 196, 1);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
}
#s-83434fb6-ada9-4b00-9d22-ca6da5a256d3:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-83434fb6-ada9-4b00-9d22-ca6da5a256d3:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-83434fb6-ada9-4b00-9d22-ca6da5a256d3-root {
    text-align: center;
  }


#s-83434fb6-ada9-4b00-9d22-ca6da5a256d3.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
@media (min-width: 1200px){
  #s-83434fb6-ada9-4b00-9d22-ca6da5a256d3-root {
    text-align: center;
  }


#s-83434fb6-ada9-4b00-9d22-ca6da5a256d3.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-83434fb6-ada9-4b00-9d22-ca6da5a256d3-root {
    text-align: center;
  }


#s-83434fb6-ada9-4b00-9d22-ca6da5a256d3.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-83434fb6-ada9-4b00-9d22-ca6da5a256d3-root {
    text-align: center;
  }


#s-83434fb6-ada9-4b00-9d22-ca6da5a256d3.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (max-width: 767px){
  #s-83434fb6-ada9-4b00-9d22-ca6da5a256d3-root {
    text-align: center;
  }


#s-83434fb6-ada9-4b00-9d22-ca6da5a256d3.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}
#s-910b8d4d-f944-42a8-b93c-878f9c88b360 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-910b8d4d-f944-42a8-b93c-878f9c88b360 {
  overflow: hidden;
  
  
      max-width: 500px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-910b8d4d-f944-42a8-b93c-878f9c88b360 img.shogun-image,
  #s-910b8d4d-f944-42a8-b93c-878f9c88b360 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-910b8d4d-f944-42a8-b93c-878f9c88b360 {
    width: 100%;
    height: auto;
  }



  #s-910b8d4d-f944-42a8-b93c-878f9c88b360 img.shogun-image {
    

    
    
    
  }


#s-910b8d4d-f944-42a8-b93c-878f9c88b360 .shogun-image-content {
  
    justify-content: center;
  
}

#s-86f84c9d-62c9-4e7e-a03b-cc5bf7365fb5 {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 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: 0px;
background-color: rgba(0, 171, 196, 1);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
}
#s-86f84c9d-62c9-4e7e-a03b-cc5bf7365fb5:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-86f84c9d-62c9-4e7e-a03b-cc5bf7365fb5:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-86f84c9d-62c9-4e7e-a03b-cc5bf7365fb5-root {
    text-align: center;
  }


#s-86f84c9d-62c9-4e7e-a03b-cc5bf7365fb5.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
@media (min-width: 1200px){
  #s-86f84c9d-62c9-4e7e-a03b-cc5bf7365fb5-root {
    text-align: center;
  }


#s-86f84c9d-62c9-4e7e-a03b-cc5bf7365fb5.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-86f84c9d-62c9-4e7e-a03b-cc5bf7365fb5-root {
    text-align: center;
  }


#s-86f84c9d-62c9-4e7e-a03b-cc5bf7365fb5.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-86f84c9d-62c9-4e7e-a03b-cc5bf7365fb5-root {
    text-align: center;
  }


#s-86f84c9d-62c9-4e7e-a03b-cc5bf7365fb5.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (max-width: 767px){
  #s-86f84c9d-62c9-4e7e-a03b-cc5bf7365fb5-root {
    text-align: center;
  }


#s-86f84c9d-62c9-4e7e-a03b-cc5bf7365fb5.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}
#s-3a804feb-b6e7-45fe-9f5f-d38e564c07ca {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-3a804feb-b6e7-45fe-9f5f-d38e564c07ca {
  overflow: hidden;
  
  
      max-width: 500px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-3a804feb-b6e7-45fe-9f5f-d38e564c07ca img.shogun-image,
  #s-3a804feb-b6e7-45fe-9f5f-d38e564c07ca .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3a804feb-b6e7-45fe-9f5f-d38e564c07ca {
    width: 100%;
    height: auto;
  }



  #s-3a804feb-b6e7-45fe-9f5f-d38e564c07ca img.shogun-image {
    

    
    
    
  }


#s-3a804feb-b6e7-45fe-9f5f-d38e564c07ca .shogun-image-content {
  
    justify-content: center;
  
}

#s-b4b23abb-72cc-470c-aa6e-8bfe30496b94 {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 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: 0px;
background-color: rgba(0, 171, 196, 1);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
}
#s-b4b23abb-72cc-470c-aa6e-8bfe30496b94:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-b4b23abb-72cc-470c-aa6e-8bfe30496b94:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-b4b23abb-72cc-470c-aa6e-8bfe30496b94-root {
    text-align: center;
  }


#s-b4b23abb-72cc-470c-aa6e-8bfe30496b94.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
@media (min-width: 1200px){
  #s-b4b23abb-72cc-470c-aa6e-8bfe30496b94-root {
    text-align: center;
  }


#s-b4b23abb-72cc-470c-aa6e-8bfe30496b94.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b4b23abb-72cc-470c-aa6e-8bfe30496b94-root {
    text-align: center;
  }


#s-b4b23abb-72cc-470c-aa6e-8bfe30496b94.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b4b23abb-72cc-470c-aa6e-8bfe30496b94-root {
    text-align: center;
  }


#s-b4b23abb-72cc-470c-aa6e-8bfe30496b94.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (max-width: 767px){
  #s-b4b23abb-72cc-470c-aa6e-8bfe30496b94-root {
    text-align: center;
  }


#s-b4b23abb-72cc-470c-aa6e-8bfe30496b94.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}
#s-a2cd4e9a-5ff7-450c-a08f-3c04db2f5dbf {
  margin-top: 10px;
margin-left: 10%;
margin-bottom: 10px;
margin-right: 10%;
padding-top: 0px;
padding-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-a2cd4e9a-5ff7-450c-a08f-3c04db2f5dbf"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-a2cd4e9a-5ff7-450c-a08f-3c04db2f5dbf"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-a2cd4e9a-5ff7-450c-a08f-3c04db2f5dbf"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-a2cd4e9a-5ff7-450c-a08f-3c04db2f5dbf"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-16ef9360-ec2f-436d-9cba-26e129fb79fe {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-16ef9360-ec2f-436d-9cba-26e129fb79fe {
  overflow: hidden;
  
  
      max-width: 500px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-16ef9360-ec2f-436d-9cba-26e129fb79fe img.shogun-image,
  #s-16ef9360-ec2f-436d-9cba-26e129fb79fe .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-16ef9360-ec2f-436d-9cba-26e129fb79fe {
    width: 100%;
    height: auto;
  }



  #s-16ef9360-ec2f-436d-9cba-26e129fb79fe img.shogun-image {
    

    
    
    
  }


#s-16ef9360-ec2f-436d-9cba-26e129fb79fe .shogun-image-content {
  
    justify-content: center;
  
}

#s-2f1de2ee-0f82-4c26-b60d-39d0f7a97179 {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 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: 0px;
background-color: rgba(0, 171, 196, 1);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
}
#s-2f1de2ee-0f82-4c26-b60d-39d0f7a97179:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-2f1de2ee-0f82-4c26-b60d-39d0f7a97179:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-2f1de2ee-0f82-4c26-b60d-39d0f7a97179-root {
    text-align: center;
  }


#s-2f1de2ee-0f82-4c26-b60d-39d0f7a97179.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
@media (min-width: 1200px){
  #s-2f1de2ee-0f82-4c26-b60d-39d0f7a97179-root {
    text-align: center;
  }


#s-2f1de2ee-0f82-4c26-b60d-39d0f7a97179.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-2f1de2ee-0f82-4c26-b60d-39d0f7a97179-root {
    text-align: center;
  }


#s-2f1de2ee-0f82-4c26-b60d-39d0f7a97179.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-2f1de2ee-0f82-4c26-b60d-39d0f7a97179-root {
    text-align: center;
  }


#s-2f1de2ee-0f82-4c26-b60d-39d0f7a97179.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (max-width: 767px){
  #s-2f1de2ee-0f82-4c26-b60d-39d0f7a97179-root {
    text-align: center;
  }


#s-2f1de2ee-0f82-4c26-b60d-39d0f7a97179.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}
#s-9a61d0ed-c6f7-4b67-98c0-231c8bb1ca25 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-9a61d0ed-c6f7-4b67-98c0-231c8bb1ca25 {
  overflow: hidden;
  
  
      max-width: 500px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-9a61d0ed-c6f7-4b67-98c0-231c8bb1ca25 img.shogun-image,
  #s-9a61d0ed-c6f7-4b67-98c0-231c8bb1ca25 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9a61d0ed-c6f7-4b67-98c0-231c8bb1ca25 {
    width: 100%;
    height: auto;
  }



  #s-9a61d0ed-c6f7-4b67-98c0-231c8bb1ca25 img.shogun-image {
    

    
    
    
  }


#s-9a61d0ed-c6f7-4b67-98c0-231c8bb1ca25 .shogun-image-content {
  
    justify-content: center;
  
}

#s-abc863ae-ff78-4dde-a77e-191dee672652 {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 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: 0px;
background-color: rgba(0, 171, 196, 1);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
}
#s-abc863ae-ff78-4dde-a77e-191dee672652:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-abc863ae-ff78-4dde-a77e-191dee672652:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-abc863ae-ff78-4dde-a77e-191dee672652-root {
    text-align: center;
  }


#s-abc863ae-ff78-4dde-a77e-191dee672652.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
@media (min-width: 1200px){
  #s-abc863ae-ff78-4dde-a77e-191dee672652-root {
    text-align: center;
  }


#s-abc863ae-ff78-4dde-a77e-191dee672652.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-abc863ae-ff78-4dde-a77e-191dee672652-root {
    text-align: center;
  }


#s-abc863ae-ff78-4dde-a77e-191dee672652.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-abc863ae-ff78-4dde-a77e-191dee672652-root {
    text-align: center;
  }


#s-abc863ae-ff78-4dde-a77e-191dee672652.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (max-width: 767px){
  #s-abc863ae-ff78-4dde-a77e-191dee672652-root {
    text-align: center;
  }


#s-abc863ae-ff78-4dde-a77e-191dee672652.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}
#s-9eb16974-f035-4b48-8b17-31bbc07919ee {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-9eb16974-f035-4b48-8b17-31bbc07919ee {
  overflow: hidden;
  
  
      max-width: 500px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-9eb16974-f035-4b48-8b17-31bbc07919ee img.shogun-image,
  #s-9eb16974-f035-4b48-8b17-31bbc07919ee .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9eb16974-f035-4b48-8b17-31bbc07919ee {
    width: 100%;
    height: auto;
  }



  #s-9eb16974-f035-4b48-8b17-31bbc07919ee img.shogun-image {
    

    
    
    
  }


#s-9eb16974-f035-4b48-8b17-31bbc07919ee .shogun-image-content {
  
    justify-content: center;
  
}

#s-d0de80ef-6bd2-410f-9f8b-4e77eb2d285d {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 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: 0px;
background-color: rgba(0, 171, 196, 1);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
}
#s-d0de80ef-6bd2-410f-9f8b-4e77eb2d285d:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-d0de80ef-6bd2-410f-9f8b-4e77eb2d285d:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-d0de80ef-6bd2-410f-9f8b-4e77eb2d285d-root {
    text-align: center;
  }


#s-d0de80ef-6bd2-410f-9f8b-4e77eb2d285d.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
@media (min-width: 1200px){
  #s-d0de80ef-6bd2-410f-9f8b-4e77eb2d285d-root {
    text-align: center;
  }


#s-d0de80ef-6bd2-410f-9f8b-4e77eb2d285d.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d0de80ef-6bd2-410f-9f8b-4e77eb2d285d-root {
    text-align: center;
  }


#s-d0de80ef-6bd2-410f-9f8b-4e77eb2d285d.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d0de80ef-6bd2-410f-9f8b-4e77eb2d285d-root {
    text-align: center;
  }


#s-d0de80ef-6bd2-410f-9f8b-4e77eb2d285d.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (max-width: 767px){
  #s-d0de80ef-6bd2-410f-9f8b-4e77eb2d285d-root {
    text-align: center;
  }


#s-d0de80ef-6bd2-410f-9f8b-4e77eb2d285d.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}
#s-70ccadfa-db05-43cf-90f3-dfd541d8ae02 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-70ccadfa-db05-43cf-90f3-dfd541d8ae02 {
  overflow: hidden;
  
  
      max-width: 500px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-70ccadfa-db05-43cf-90f3-dfd541d8ae02 img.shogun-image,
  #s-70ccadfa-db05-43cf-90f3-dfd541d8ae02 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-70ccadfa-db05-43cf-90f3-dfd541d8ae02 {
    width: 100%;
    height: auto;
  }



  #s-70ccadfa-db05-43cf-90f3-dfd541d8ae02 img.shogun-image {
    

    
    
    
  }


#s-70ccadfa-db05-43cf-90f3-dfd541d8ae02 .shogun-image-content {
  
    justify-content: center;
  
}

#s-0108e3e0-fd69-4791-8037-19a93e15d875 {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 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: 0px;
background-color: rgba(0, 171, 196, 1);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
}
#s-0108e3e0-fd69-4791-8037-19a93e15d875:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-0108e3e0-fd69-4791-8037-19a93e15d875:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-0108e3e0-fd69-4791-8037-19a93e15d875-root {
    text-align: center;
  }


#s-0108e3e0-fd69-4791-8037-19a93e15d875.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
@media (min-width: 1200px){
  #s-0108e3e0-fd69-4791-8037-19a93e15d875-root {
    text-align: center;
  }


#s-0108e3e0-fd69-4791-8037-19a93e15d875.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-0108e3e0-fd69-4791-8037-19a93e15d875-root {
    text-align: center;
  }


#s-0108e3e0-fd69-4791-8037-19a93e15d875.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-0108e3e0-fd69-4791-8037-19a93e15d875-root {
    text-align: center;
  }


#s-0108e3e0-fd69-4791-8037-19a93e15d875.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (max-width: 767px){
  #s-0108e3e0-fd69-4791-8037-19a93e15d875-root {
    text-align: center;
  }


#s-0108e3e0-fd69-4791-8037-19a93e15d875.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}
#s-70f84a2d-7ccc-4c78-b5d7-c5b5b5f0d572 {
  margin-top: 10px;
margin-left: 10%;
margin-bottom: 10px;
margin-right: 10%;
padding-top: 0px;
padding-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-70f84a2d-7ccc-4c78-b5d7-c5b5b5f0d572"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-70f84a2d-7ccc-4c78-b5d7-c5b5b5f0d572"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-70f84a2d-7ccc-4c78-b5d7-c5b5b5f0d572"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-70f84a2d-7ccc-4c78-b5d7-c5b5b5f0d572"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-26056075-ce59-4cb8-acdd-a513244c6373 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-26056075-ce59-4cb8-acdd-a513244c6373 {
  overflow: hidden;
  
  
      max-width: 500px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-26056075-ce59-4cb8-acdd-a513244c6373 img.shogun-image,
  #s-26056075-ce59-4cb8-acdd-a513244c6373 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-26056075-ce59-4cb8-acdd-a513244c6373 {
    width: 100%;
    height: auto;
  }



  #s-26056075-ce59-4cb8-acdd-a513244c6373 img.shogun-image {
    

    
    
    
  }


#s-26056075-ce59-4cb8-acdd-a513244c6373 .shogun-image-content {
  
    justify-content: center;
  
}

#s-7e056b2e-f3b3-4631-baa1-a70cfc79154a {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 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: 0px;
background-color: rgba(0, 171, 196, 1);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
}
#s-7e056b2e-f3b3-4631-baa1-a70cfc79154a:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-7e056b2e-f3b3-4631-baa1-a70cfc79154a:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-7e056b2e-f3b3-4631-baa1-a70cfc79154a-root {
    text-align: center;
  }


#s-7e056b2e-f3b3-4631-baa1-a70cfc79154a.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
@media (min-width: 1200px){
  #s-7e056b2e-f3b3-4631-baa1-a70cfc79154a-root {
    text-align: center;
  }


#s-7e056b2e-f3b3-4631-baa1-a70cfc79154a.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7e056b2e-f3b3-4631-baa1-a70cfc79154a-root {
    text-align: center;
  }


#s-7e056b2e-f3b3-4631-baa1-a70cfc79154a.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7e056b2e-f3b3-4631-baa1-a70cfc79154a-root {
    text-align: center;
  }


#s-7e056b2e-f3b3-4631-baa1-a70cfc79154a.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}@media (max-width: 767px){
  #s-7e056b2e-f3b3-4631-baa1-a70cfc79154a-root {
    text-align: center;
  }


#s-7e056b2e-f3b3-4631-baa1-a70cfc79154a.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Barlow Condensed;
  display:  block ;
}
}
#s-9dc82078-3873-43fc-bb35-d38f40bda818 {
  margin-left: auto;
margin-right: auto;
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;
  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;
}
