.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-d0d6ef1e-4220-4096-a493-82c8f4f2e8c9 {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-d0d6ef1e-4220-4096-a493-82c8f4f2e8c9 {
  display: none;
}
#s-d0d6ef1e-4220-4096-a493-82c8f4f2e8c9, #wrap-s-d0d6ef1e-4220-4096-a493-82c8f4f2e8c9, #wrap-content-s-d0d6ef1e-4220-4096-a493-82c8f4f2e8c9 { display: none !important; }}@media (max-width: 767px){#s-d0d6ef1e-4220-4096-a493-82c8f4f2e8c9 {
  display: none;
}
#s-d0d6ef1e-4220-4096-a493-82c8f4f2e8c9, #wrap-s-d0d6ef1e-4220-4096-a493-82c8f4f2e8c9, #wrap-content-s-d0d6ef1e-4220-4096-a493-82c8f4f2e8c9 { display: none !important; }}







#s-d0d6ef1e-4220-4096-a493-82c8f4f2e8c9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d0d6ef1e-4220-4096-a493-82c8f4f2e8c9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shogun-image-container {
  position: relative;
}

.shogun-image-container.shg-align-left {
  text-align: left;
}

.shogun-image-container.shg-align-center {
  text-align: center;
}

.shogun-image-container.shg-align-right {
  text-align: right;
}

.shogun-image-linked {
  cursor: pointer;
}

.shogun-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.shogun-image-overlay.shg-top-left {
  align-items: flex-start;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-top-center {
  align-items: flex-start;
  justify-content: center;
}

.shogun-image-overlay.shg-top-right {
  align-items: flex-start;
  justify-content: flex-end;
}

.shogun-image-overlay.shg-middle-left {
  align-items: center;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-middle-center {
  align-items: center;
  justify-content: center;
}

.shogun-image-overlay.shg-middle-right {
  align-items: center;
  justify-content: flex-end;
}

.shogun-image-overlay.shg-bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-bottom-center {
  align-items: flex-end;
  justify-content: center;
}

.shogun-image-overlay.shg-bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}

.shogun-image-overlay p {
  margin: 0;
  padding: 0;
  line-height: normal;
}

.shogun-image-cover {
  object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
}

.shogun-image-contain {
  font-family: "object-fit: contain;";
  object-fit: contain;
  width: 100%;
}

.shogun-image-link {
  display: block;
  min-height: inherit;
  max-height: inherit;
}

img.shogun-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.shogun-image-content {
  display: flex;
  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-ed60b254-496f-4260-b9ac-bc145116fc91 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-ed60b254-496f-4260-b9ac-bc145116fc91 {
  display: none;
}
#s-ed60b254-496f-4260-b9ac-bc145116fc91, #wrap-s-ed60b254-496f-4260-b9ac-bc145116fc91, #wrap-content-s-ed60b254-496f-4260-b9ac-bc145116fc91 { display: none !important; }}@media (max-width: 767px){#s-ed60b254-496f-4260-b9ac-bc145116fc91 {
  display: none;
}
#s-ed60b254-496f-4260-b9ac-bc145116fc91, #wrap-s-ed60b254-496f-4260-b9ac-bc145116fc91, #wrap-content-s-ed60b254-496f-4260-b9ac-bc145116fc91 { display: none !important; }}
#s-ed60b254-496f-4260-b9ac-bc145116fc91 {
  overflow: hidden;
  
  
}







  #s-ed60b254-496f-4260-b9ac-bc145116fc91 img.shogun-image {
    

    
    
    
  }


#s-ed60b254-496f-4260-b9ac-bc145116fc91 .shogun-image-content {
  
    justify-content: center;
  
}

#s-f32b10af-93ad-4b55-a93e-756a14b3315f {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-f32b10af-93ad-4b55-a93e-756a14b3315f {
  display: none;
}
#s-f32b10af-93ad-4b55-a93e-756a14b3315f, #wrap-s-f32b10af-93ad-4b55-a93e-756a14b3315f, #wrap-content-s-f32b10af-93ad-4b55-a93e-756a14b3315f { display: none !important; }}@media (max-width: 767px){#s-f32b10af-93ad-4b55-a93e-756a14b3315f {
  display: none;
}
#s-f32b10af-93ad-4b55-a93e-756a14b3315f, #wrap-s-f32b10af-93ad-4b55-a93e-756a14b3315f, #wrap-content-s-f32b10af-93ad-4b55-a93e-756a14b3315f { display: none !important; }}
#s-f32b10af-93ad-4b55-a93e-756a14b3315f {
  overflow: hidden;
  
  
}







  #s-f32b10af-93ad-4b55-a93e-756a14b3315f img.shogun-image {
    

    
    
    
  }


#s-f32b10af-93ad-4b55-a93e-756a14b3315f .shogun-image-content {
  
    justify-content: center;
  
}

#s-dfda6387-4822-4a76-a79f-70b084746af5 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-dfda6387-4822-4a76-a79f-70b084746af5 {
  display: none;
}
#s-dfda6387-4822-4a76-a79f-70b084746af5, #wrap-s-dfda6387-4822-4a76-a79f-70b084746af5, #wrap-content-s-dfda6387-4822-4a76-a79f-70b084746af5 { display: none !important; }}@media (max-width: 767px){#s-dfda6387-4822-4a76-a79f-70b084746af5 {
  display: none;
}
#s-dfda6387-4822-4a76-a79f-70b084746af5, #wrap-s-dfda6387-4822-4a76-a79f-70b084746af5, #wrap-content-s-dfda6387-4822-4a76-a79f-70b084746af5 { display: none !important; }}
#s-dfda6387-4822-4a76-a79f-70b084746af5 {
  overflow: hidden;
  
  
}







  #s-dfda6387-4822-4a76-a79f-70b084746af5 img.shogun-image {
    

    
    
    
  }


#s-dfda6387-4822-4a76-a79f-70b084746af5 .shogun-image-content {
  
    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;
}

@media (min-width: 768px) and (max-width: 991px){#s-9822a0d5-0fa0-4c5f-a6e2-103122687b73 {
  display: none;
}
#s-9822a0d5-0fa0-4c5f-a6e2-103122687b73, #wrap-s-9822a0d5-0fa0-4c5f-a6e2-103122687b73, #wrap-content-s-9822a0d5-0fa0-4c5f-a6e2-103122687b73 { display: none !important; }}@media (max-width: 767px){#s-9822a0d5-0fa0-4c5f-a6e2-103122687b73 {
  display: none;
}
#s-9822a0d5-0fa0-4c5f-a6e2-103122687b73, #wrap-s-9822a0d5-0fa0-4c5f-a6e2-103122687b73, #wrap-content-s-9822a0d5-0fa0-4c5f-a6e2-103122687b73 { display: none !important; }}
@media (min-width: 0px) {
[id="s-9822a0d5-0fa0-4c5f-a6e2-103122687b73"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9822a0d5-0fa0-4c5f-a6e2-103122687b73"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.5px);
}

}

@media (min-width: 992px) {
[id="s-9822a0d5-0fa0-4c5f-a6e2-103122687b73"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.5px);
}

}

@media (min-width: 1200px) {
[id="s-9822a0d5-0fa0-4c5f-a6e2-103122687b73"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.5px);
}

}

#s-3a4100f1-2f3d-45e9-ac85-f54b2981945a {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-3a4100f1-2f3d-45e9-ac85-f54b2981945a {
  display: none;
}
#s-3a4100f1-2f3d-45e9-ac85-f54b2981945a, #wrap-s-3a4100f1-2f3d-45e9-ac85-f54b2981945a, #wrap-content-s-3a4100f1-2f3d-45e9-ac85-f54b2981945a { display: none !important; }}@media (max-width: 767px){#s-3a4100f1-2f3d-45e9-ac85-f54b2981945a {
  display: none;
}
#s-3a4100f1-2f3d-45e9-ac85-f54b2981945a, #wrap-s-3a4100f1-2f3d-45e9-ac85-f54b2981945a, #wrap-content-s-3a4100f1-2f3d-45e9-ac85-f54b2981945a { display: none !important; }}
#s-3a4100f1-2f3d-45e9-ac85-f54b2981945a {
  overflow: hidden;
  
  
}







  #s-3a4100f1-2f3d-45e9-ac85-f54b2981945a img.shogun-image {
    

    
    
    
  }


#s-3a4100f1-2f3d-45e9-ac85-f54b2981945a .shogun-image-content {
  
    justify-content: center;
  
}

#s-798a13a4-d8ae-4a68-b851-57f5103cd63f {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-798a13a4-d8ae-4a68-b851-57f5103cd63f {
  display: none;
}
#s-798a13a4-d8ae-4a68-b851-57f5103cd63f, #wrap-s-798a13a4-d8ae-4a68-b851-57f5103cd63f, #wrap-content-s-798a13a4-d8ae-4a68-b851-57f5103cd63f { display: none !important; }}@media (max-width: 767px){#s-798a13a4-d8ae-4a68-b851-57f5103cd63f {
  display: none;
}
#s-798a13a4-d8ae-4a68-b851-57f5103cd63f, #wrap-s-798a13a4-d8ae-4a68-b851-57f5103cd63f, #wrap-content-s-798a13a4-d8ae-4a68-b851-57f5103cd63f { display: none !important; }}
#s-798a13a4-d8ae-4a68-b851-57f5103cd63f {
  overflow: hidden;
  
  
}







  #s-798a13a4-d8ae-4a68-b851-57f5103cd63f img.shogun-image {
    

    
    
    
  }


#s-798a13a4-d8ae-4a68-b851-57f5103cd63f .shogun-image-content {
  
    justify-content: center;
  
}

@media (min-width: 0px) {
[id="s-7c3a1f7c-a449-42c2-8a8c-a1cf4910e2c6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7c3a1f7c-a449-42c2-8a8c-a1cf4910e2c6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.5px);
}

}

@media (min-width: 992px) {
[id="s-7c3a1f7c-a449-42c2-8a8c-a1cf4910e2c6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.5px);
}

}

@media (min-width: 1200px) {
[id="s-7c3a1f7c-a449-42c2-8a8c-a1cf4910e2c6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.5px);
}

}

#s-a23e9594-e8e4-4c61-88be-686e5d4304bb {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-a23e9594-e8e4-4c61-88be-686e5d4304bb {
  display: none;
}
#s-a23e9594-e8e4-4c61-88be-686e5d4304bb, #wrap-s-a23e9594-e8e4-4c61-88be-686e5d4304bb, #wrap-content-s-a23e9594-e8e4-4c61-88be-686e5d4304bb { display: none !important; }}@media (max-width: 767px){#s-a23e9594-e8e4-4c61-88be-686e5d4304bb {
  display: none;
}
#s-a23e9594-e8e4-4c61-88be-686e5d4304bb, #wrap-s-a23e9594-e8e4-4c61-88be-686e5d4304bb, #wrap-content-s-a23e9594-e8e4-4c61-88be-686e5d4304bb { display: none !important; }}
#s-a23e9594-e8e4-4c61-88be-686e5d4304bb {
  overflow: hidden;
  
  
}







  #s-a23e9594-e8e4-4c61-88be-686e5d4304bb img.shogun-image {
    

    
    
    
  }


#s-a23e9594-e8e4-4c61-88be-686e5d4304bb .shogun-image-content {
  
    justify-content: center;
  
}

#s-b3c0541d-d45e-45fa-85b2-766a9b31f0bf {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-b3c0541d-d45e-45fa-85b2-766a9b31f0bf {
  display: none;
}
#s-b3c0541d-d45e-45fa-85b2-766a9b31f0bf, #wrap-s-b3c0541d-d45e-45fa-85b2-766a9b31f0bf, #wrap-content-s-b3c0541d-d45e-45fa-85b2-766a9b31f0bf { display: none !important; }}@media (max-width: 767px){#s-b3c0541d-d45e-45fa-85b2-766a9b31f0bf {
  display: none;
}
#s-b3c0541d-d45e-45fa-85b2-766a9b31f0bf, #wrap-s-b3c0541d-d45e-45fa-85b2-766a9b31f0bf, #wrap-content-s-b3c0541d-d45e-45fa-85b2-766a9b31f0bf { display: none !important; }}
#s-b3c0541d-d45e-45fa-85b2-766a9b31f0bf {
  overflow: hidden;
  
  
}







  #s-b3c0541d-d45e-45fa-85b2-766a9b31f0bf img.shogun-image {
    

    
    
    
  }


#s-b3c0541d-d45e-45fa-85b2-766a9b31f0bf .shogun-image-content {
  
    justify-content: center;
  
}

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

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

@media (min-width: 768px) and (max-width: 991px){#s-704aa9c7-3a97-4b71-8446-8b26c1b834a0 {
  display: none;
}
#s-704aa9c7-3a97-4b71-8446-8b26c1b834a0, #wrap-s-704aa9c7-3a97-4b71-8446-8b26c1b834a0, #wrap-content-s-704aa9c7-3a97-4b71-8446-8b26c1b834a0 { display: none !important; }}@media (max-width: 767px){#s-704aa9c7-3a97-4b71-8446-8b26c1b834a0 {
  display: none;
}
#s-704aa9c7-3a97-4b71-8446-8b26c1b834a0, #wrap-s-704aa9c7-3a97-4b71-8446-8b26c1b834a0, #wrap-content-s-704aa9c7-3a97-4b71-8446-8b26c1b834a0 { display: none !important; }}
#s-704aa9c7-3a97-4b71-8446-8b26c1b834a0 hr {
  border-top: 60px solid rgba(255, 255, 255, 1);
}

#s-fc05a27b-8ec8-4dc9-b7b0-0c82f3b2a2b1 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-fc05a27b-8ec8-4dc9-b7b0-0c82f3b2a2b1 {
  display: none;
}
#s-fc05a27b-8ec8-4dc9-b7b0-0c82f3b2a2b1, #wrap-s-fc05a27b-8ec8-4dc9-b7b0-0c82f3b2a2b1, #wrap-content-s-fc05a27b-8ec8-4dc9-b7b0-0c82f3b2a2b1 { display: none !important; }}@media (max-width: 767px){#s-fc05a27b-8ec8-4dc9-b7b0-0c82f3b2a2b1 {
  display: none;
}
#s-fc05a27b-8ec8-4dc9-b7b0-0c82f3b2a2b1, #wrap-s-fc05a27b-8ec8-4dc9-b7b0-0c82f3b2a2b1, #wrap-content-s-fc05a27b-8ec8-4dc9-b7b0-0c82f3b2a2b1 { display: none !important; }}
#s-fc05a27b-8ec8-4dc9-b7b0-0c82f3b2a2b1 {
  overflow: hidden;
  
  
}







  #s-fc05a27b-8ec8-4dc9-b7b0-0c82f3b2a2b1 img.shogun-image {
    

    
    
    
  }


#s-fc05a27b-8ec8-4dc9-b7b0-0c82f3b2a2b1 .shogun-image-content {
  
    justify-content: center;
  
}

#s-015805b9-bb61-4e87-af59-ca3c6ac1d5c5 {
  background-color: rgba(244, 244, 244, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-015805b9-bb61-4e87-af59-ca3c6ac1d5c5 {
  display: none;
}
#s-015805b9-bb61-4e87-af59-ca3c6ac1d5c5, #wrap-s-015805b9-bb61-4e87-af59-ca3c6ac1d5c5, #wrap-content-s-015805b9-bb61-4e87-af59-ca3c6ac1d5c5 { display: none !important; }}@media (max-width: 767px){#s-015805b9-bb61-4e87-af59-ca3c6ac1d5c5 {
  display: none;
}
#s-015805b9-bb61-4e87-af59-ca3c6ac1d5c5, #wrap-s-015805b9-bb61-4e87-af59-ca3c6ac1d5c5, #wrap-content-s-015805b9-bb61-4e87-af59-ca3c6ac1d5c5 { display: none !important; }}
@media (min-width: 0px) {
[id="s-015805b9-bb61-4e87-af59-ca3c6ac1d5c5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-015805b9-bb61-4e87-af59-ca3c6ac1d5c5"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-015805b9-bb61-4e87-af59-ca3c6ac1d5c5"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-015805b9-bb61-4e87-af59-ca3c6ac1d5c5"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-015805b9-bb61-4e87-af59-ca3c6ac1d5c5"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-015805b9-bb61-4e87-af59-ca3c6ac1d5c5"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-015805b9-bb61-4e87-af59-ca3c6ac1d5c5"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

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

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

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

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

@media (min-width: 768px) and (max-width: 991px){#s-30581316-e508-4f02-aa42-a0fd7bac90f4 {
  display: none;
}
#s-30581316-e508-4f02-aa42-a0fd7bac90f4, #wrap-s-30581316-e508-4f02-aa42-a0fd7bac90f4, #wrap-content-s-30581316-e508-4f02-aa42-a0fd7bac90f4 { display: none !important; }}@media (max-width: 767px){#s-30581316-e508-4f02-aa42-a0fd7bac90f4 {
  display: none;
}
#s-30581316-e508-4f02-aa42-a0fd7bac90f4, #wrap-s-30581316-e508-4f02-aa42-a0fd7bac90f4, #wrap-content-s-30581316-e508-4f02-aa42-a0fd7bac90f4 { display: none !important; }}
#s-4091e439-f660-455c-8316-bac68fee6b50 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-4091e439-f660-455c-8316-bac68fee6b50 {
  display: none;
}
#s-4091e439-f660-455c-8316-bac68fee6b50, #wrap-s-4091e439-f660-455c-8316-bac68fee6b50, #wrap-content-s-4091e439-f660-455c-8316-bac68fee6b50 { display: none !important; }}@media (max-width: 767px){#s-4091e439-f660-455c-8316-bac68fee6b50 {
  display: none;
}
#s-4091e439-f660-455c-8316-bac68fee6b50, #wrap-s-4091e439-f660-455c-8316-bac68fee6b50, #wrap-content-s-4091e439-f660-455c-8316-bac68fee6b50 { display: none !important; }}
#s-4091e439-f660-455c-8316-bac68fee6b50 {
  overflow: hidden;
  
  
}







  #s-4091e439-f660-455c-8316-bac68fee6b50 img.shogun-image {
    

    
    
    
  }


#s-4091e439-f660-455c-8316-bac68fee6b50 .shogun-image-content {
  
    justify-content: center;
  
}

#s-1baa35d4-ea5a-4dda-9567-ea04ab7a24e3 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-1baa35d4-ea5a-4dda-9567-ea04ab7a24e3 {
  display: none;
}
#s-1baa35d4-ea5a-4dda-9567-ea04ab7a24e3, #wrap-s-1baa35d4-ea5a-4dda-9567-ea04ab7a24e3, #wrap-content-s-1baa35d4-ea5a-4dda-9567-ea04ab7a24e3 { display: none !important; }}@media (max-width: 767px){#s-1baa35d4-ea5a-4dda-9567-ea04ab7a24e3 {
  display: none;
}
#s-1baa35d4-ea5a-4dda-9567-ea04ab7a24e3, #wrap-s-1baa35d4-ea5a-4dda-9567-ea04ab7a24e3, #wrap-content-s-1baa35d4-ea5a-4dda-9567-ea04ab7a24e3 { display: none !important; }}
#s-1baa35d4-ea5a-4dda-9567-ea04ab7a24e3 {
  overflow: hidden;
  
  
}







  #s-1baa35d4-ea5a-4dda-9567-ea04ab7a24e3 img.shogun-image {
    

    
    
    
  }


#s-1baa35d4-ea5a-4dda-9567-ea04ab7a24e3 .shogun-image-content {
  
    justify-content: center;
  
}

#s-818dfcba-3692-4781-ae7c-a2cdb8866fed {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-818dfcba-3692-4781-ae7c-a2cdb8866fed {
  display: none;
}
#s-818dfcba-3692-4781-ae7c-a2cdb8866fed, #wrap-s-818dfcba-3692-4781-ae7c-a2cdb8866fed, #wrap-content-s-818dfcba-3692-4781-ae7c-a2cdb8866fed { display: none !important; }}@media (max-width: 767px){#s-818dfcba-3692-4781-ae7c-a2cdb8866fed {
  display: none;
}
#s-818dfcba-3692-4781-ae7c-a2cdb8866fed, #wrap-s-818dfcba-3692-4781-ae7c-a2cdb8866fed, #wrap-content-s-818dfcba-3692-4781-ae7c-a2cdb8866fed { display: none !important; }}
#s-818dfcba-3692-4781-ae7c-a2cdb8866fed {
  overflow: hidden;
  
  
}







  #s-818dfcba-3692-4781-ae7c-a2cdb8866fed img.shogun-image {
    

    
    
    
  }


#s-818dfcba-3692-4781-ae7c-a2cdb8866fed .shogun-image-content {
  
    justify-content: center;
  
}

#s-d4418082-174c-42b8-a053-56678b44448c {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-d4418082-174c-42b8-a053-56678b44448c {
  display: none;
}
#s-d4418082-174c-42b8-a053-56678b44448c, #wrap-s-d4418082-174c-42b8-a053-56678b44448c, #wrap-content-s-d4418082-174c-42b8-a053-56678b44448c { display: none !important; }}@media (max-width: 767px){#s-d4418082-174c-42b8-a053-56678b44448c {
  display: none;
}
#s-d4418082-174c-42b8-a053-56678b44448c, #wrap-s-d4418082-174c-42b8-a053-56678b44448c, #wrap-content-s-d4418082-174c-42b8-a053-56678b44448c { display: none !important; }}
#s-d4418082-174c-42b8-a053-56678b44448c {
  overflow: hidden;
  
  
}







  #s-d4418082-174c-42b8-a053-56678b44448c img.shogun-image {
    

    
    
    
  }


#s-d4418082-174c-42b8-a053-56678b44448c .shogun-image-content {
  
    justify-content: center;
  
}

#s-48195ae5-335c-4423-9d8b-e554e53ad49a {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-48195ae5-335c-4423-9d8b-e554e53ad49a {
  display: none;
}
#s-48195ae5-335c-4423-9d8b-e554e53ad49a, #wrap-s-48195ae5-335c-4423-9d8b-e554e53ad49a, #wrap-content-s-48195ae5-335c-4423-9d8b-e554e53ad49a { display: none !important; }}@media (max-width: 767px){#s-48195ae5-335c-4423-9d8b-e554e53ad49a {
  display: none;
}
#s-48195ae5-335c-4423-9d8b-e554e53ad49a, #wrap-s-48195ae5-335c-4423-9d8b-e554e53ad49a, #wrap-content-s-48195ae5-335c-4423-9d8b-e554e53ad49a { display: none !important; }}
#s-48195ae5-335c-4423-9d8b-e554e53ad49a {
  overflow: hidden;
  
  
}







  #s-48195ae5-335c-4423-9d8b-e554e53ad49a img.shogun-image {
    

    
    
    
  }


#s-48195ae5-335c-4423-9d8b-e554e53ad49a .shogun-image-content {
  
    justify-content: center;
  
}

#s-65e506e8-e908-4643-b3bb-adf0a9f96f8b {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-65e506e8-e908-4643-b3bb-adf0a9f96f8b {
  display: none;
}
#s-65e506e8-e908-4643-b3bb-adf0a9f96f8b, #wrap-s-65e506e8-e908-4643-b3bb-adf0a9f96f8b, #wrap-content-s-65e506e8-e908-4643-b3bb-adf0a9f96f8b { display: none !important; }}@media (max-width: 767px){#s-65e506e8-e908-4643-b3bb-adf0a9f96f8b {
  display: none;
}
#s-65e506e8-e908-4643-b3bb-adf0a9f96f8b, #wrap-s-65e506e8-e908-4643-b3bb-adf0a9f96f8b, #wrap-content-s-65e506e8-e908-4643-b3bb-adf0a9f96f8b { display: none !important; }}
#s-65e506e8-e908-4643-b3bb-adf0a9f96f8b {
  overflow: hidden;
  
  
}







  #s-65e506e8-e908-4643-b3bb-adf0a9f96f8b img.shogun-image {
    

    
    
    
  }


#s-65e506e8-e908-4643-b3bb-adf0a9f96f8b .shogun-image-content {
  
    justify-content: center;
  
}

#s-466e9fe2-67ff-48ee-92f7-1ee499f42377 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-466e9fe2-67ff-48ee-92f7-1ee499f42377 {
  display: none;
}
#s-466e9fe2-67ff-48ee-92f7-1ee499f42377, #wrap-s-466e9fe2-67ff-48ee-92f7-1ee499f42377, #wrap-content-s-466e9fe2-67ff-48ee-92f7-1ee499f42377 { display: none !important; }}@media (max-width: 767px){#s-466e9fe2-67ff-48ee-92f7-1ee499f42377 {
  display: none;
}
#s-466e9fe2-67ff-48ee-92f7-1ee499f42377, #wrap-s-466e9fe2-67ff-48ee-92f7-1ee499f42377, #wrap-content-s-466e9fe2-67ff-48ee-92f7-1ee499f42377 { display: none !important; }}
#s-466e9fe2-67ff-48ee-92f7-1ee499f42377 {
  overflow: hidden;
  
  
}







  #s-466e9fe2-67ff-48ee-92f7-1ee499f42377 img.shogun-image {
    

    
    
    
  }


#s-466e9fe2-67ff-48ee-92f7-1ee499f42377 .shogun-image-content {
  
    justify-content: center;
  
}

#s-d6c38a3e-9b37-4b69-969c-635a9dbc0a29 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-d6c38a3e-9b37-4b69-969c-635a9dbc0a29 {
  display: none;
}
#s-d6c38a3e-9b37-4b69-969c-635a9dbc0a29, #wrap-s-d6c38a3e-9b37-4b69-969c-635a9dbc0a29, #wrap-content-s-d6c38a3e-9b37-4b69-969c-635a9dbc0a29 { display: none !important; }}@media (max-width: 767px){#s-d6c38a3e-9b37-4b69-969c-635a9dbc0a29 {
  display: none;
}
#s-d6c38a3e-9b37-4b69-969c-635a9dbc0a29, #wrap-s-d6c38a3e-9b37-4b69-969c-635a9dbc0a29, #wrap-content-s-d6c38a3e-9b37-4b69-969c-635a9dbc0a29 { display: none !important; }}
#s-d6c38a3e-9b37-4b69-969c-635a9dbc0a29 {
  overflow: hidden;
  
  
}







  #s-d6c38a3e-9b37-4b69-969c-635a9dbc0a29 img.shogun-image {
    

    
    
    
  }


#s-d6c38a3e-9b37-4b69-969c-635a9dbc0a29 .shogun-image-content {
  
    justify-content: center;
  
}

#s-a1eb391c-abb8-458d-8cb8-b9d3d21a8d66 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-a1eb391c-abb8-458d-8cb8-b9d3d21a8d66 {
  display: none;
}
#s-a1eb391c-abb8-458d-8cb8-b9d3d21a8d66, #wrap-s-a1eb391c-abb8-458d-8cb8-b9d3d21a8d66, #wrap-content-s-a1eb391c-abb8-458d-8cb8-b9d3d21a8d66 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a1eb391c-abb8-458d-8cb8-b9d3d21a8d66 {
  display: none;
}
#s-a1eb391c-abb8-458d-8cb8-b9d3d21a8d66, #wrap-s-a1eb391c-abb8-458d-8cb8-b9d3d21a8d66, #wrap-content-s-a1eb391c-abb8-458d-8cb8-b9d3d21a8d66 { display: none !important; }}@media (max-width: 767px){#s-a1eb391c-abb8-458d-8cb8-b9d3d21a8d66 {
  display: none;
}
#s-a1eb391c-abb8-458d-8cb8-b9d3d21a8d66, #wrap-s-a1eb391c-abb8-458d-8cb8-b9d3d21a8d66, #wrap-content-s-a1eb391c-abb8-458d-8cb8-b9d3d21a8d66 { display: none !important; }}







#s-a1eb391c-abb8-458d-8cb8-b9d3d21a8d66 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a1eb391c-abb8-458d-8cb8-b9d3d21a8d66.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3b5aaf32-a3b6-4e90-975d-ce670975d35a {
  text-align: center;
}
@media (min-width: 1200px){#s-3b5aaf32-a3b6-4e90-975d-ce670975d35a {
  display: none;
}
#s-3b5aaf32-a3b6-4e90-975d-ce670975d35a, #wrap-s-3b5aaf32-a3b6-4e90-975d-ce670975d35a, #wrap-content-s-3b5aaf32-a3b6-4e90-975d-ce670975d35a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3b5aaf32-a3b6-4e90-975d-ce670975d35a {
  display: none;
}
#s-3b5aaf32-a3b6-4e90-975d-ce670975d35a, #wrap-s-3b5aaf32-a3b6-4e90-975d-ce670975d35a, #wrap-content-s-3b5aaf32-a3b6-4e90-975d-ce670975d35a { display: none !important; }}@media (max-width: 767px){#s-3b5aaf32-a3b6-4e90-975d-ce670975d35a {
  display: none;
}
#s-3b5aaf32-a3b6-4e90-975d-ce670975d35a, #wrap-s-3b5aaf32-a3b6-4e90-975d-ce670975d35a, #wrap-content-s-3b5aaf32-a3b6-4e90-975d-ce670975d35a { display: none !important; }}
#s-3b5aaf32-a3b6-4e90-975d-ce670975d35a {
  overflow: hidden;
  
  
}







  #s-3b5aaf32-a3b6-4e90-975d-ce670975d35a img.shogun-image {
    

    
    
    
  }


#s-3b5aaf32-a3b6-4e90-975d-ce670975d35a .shogun-image-content {
  
    justify-content: center;
  
}

#s-8cc1137e-bdfc-4867-bb97-8071a708b5fa {
  text-align: center;
}
@media (min-width: 1200px){#s-8cc1137e-bdfc-4867-bb97-8071a708b5fa {
  display: none;
}
#s-8cc1137e-bdfc-4867-bb97-8071a708b5fa, #wrap-s-8cc1137e-bdfc-4867-bb97-8071a708b5fa, #wrap-content-s-8cc1137e-bdfc-4867-bb97-8071a708b5fa { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8cc1137e-bdfc-4867-bb97-8071a708b5fa {
  display: none;
}
#s-8cc1137e-bdfc-4867-bb97-8071a708b5fa, #wrap-s-8cc1137e-bdfc-4867-bb97-8071a708b5fa, #wrap-content-s-8cc1137e-bdfc-4867-bb97-8071a708b5fa { display: none !important; }}@media (max-width: 767px){#s-8cc1137e-bdfc-4867-bb97-8071a708b5fa {
  display: none;
}
#s-8cc1137e-bdfc-4867-bb97-8071a708b5fa, #wrap-s-8cc1137e-bdfc-4867-bb97-8071a708b5fa, #wrap-content-s-8cc1137e-bdfc-4867-bb97-8071a708b5fa { display: none !important; }}
#s-8cc1137e-bdfc-4867-bb97-8071a708b5fa {
  overflow: hidden;
  
  
}







  #s-8cc1137e-bdfc-4867-bb97-8071a708b5fa img.shogun-image {
    

    
    
    
  }


#s-8cc1137e-bdfc-4867-bb97-8071a708b5fa .shogun-image-content {
  
    justify-content: center;
  
}

#s-efd116a3-5f3b-4582-aa60-58ad732f56d3 {
  text-align: center;
}
@media (min-width: 1200px){#s-efd116a3-5f3b-4582-aa60-58ad732f56d3 {
  display: none;
}
#s-efd116a3-5f3b-4582-aa60-58ad732f56d3, #wrap-s-efd116a3-5f3b-4582-aa60-58ad732f56d3, #wrap-content-s-efd116a3-5f3b-4582-aa60-58ad732f56d3 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-efd116a3-5f3b-4582-aa60-58ad732f56d3 {
  display: none;
}
#s-efd116a3-5f3b-4582-aa60-58ad732f56d3, #wrap-s-efd116a3-5f3b-4582-aa60-58ad732f56d3, #wrap-content-s-efd116a3-5f3b-4582-aa60-58ad732f56d3 { display: none !important; }}@media (max-width: 767px){#s-efd116a3-5f3b-4582-aa60-58ad732f56d3 {
  display: none;
}
#s-efd116a3-5f3b-4582-aa60-58ad732f56d3, #wrap-s-efd116a3-5f3b-4582-aa60-58ad732f56d3, #wrap-content-s-efd116a3-5f3b-4582-aa60-58ad732f56d3 { display: none !important; }}
#s-efd116a3-5f3b-4582-aa60-58ad732f56d3 {
  overflow: hidden;
  
  
}







  #s-efd116a3-5f3b-4582-aa60-58ad732f56d3 img.shogun-image {
    

    
    
    
  }


#s-efd116a3-5f3b-4582-aa60-58ad732f56d3 .shogun-image-content {
  
    justify-content: center;
  
}

#s-c9080e21-c05d-4a27-b24a-3ddbb08a682a {
  text-align: center;
}
@media (min-width: 1200px){#s-c9080e21-c05d-4a27-b24a-3ddbb08a682a {
  display: none;
}
#s-c9080e21-c05d-4a27-b24a-3ddbb08a682a, #wrap-s-c9080e21-c05d-4a27-b24a-3ddbb08a682a, #wrap-content-s-c9080e21-c05d-4a27-b24a-3ddbb08a682a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c9080e21-c05d-4a27-b24a-3ddbb08a682a {
  display: none;
}
#s-c9080e21-c05d-4a27-b24a-3ddbb08a682a, #wrap-s-c9080e21-c05d-4a27-b24a-3ddbb08a682a, #wrap-content-s-c9080e21-c05d-4a27-b24a-3ddbb08a682a { display: none !important; }}@media (max-width: 767px){#s-c9080e21-c05d-4a27-b24a-3ddbb08a682a {
  display: none;
}
#s-c9080e21-c05d-4a27-b24a-3ddbb08a682a, #wrap-s-c9080e21-c05d-4a27-b24a-3ddbb08a682a, #wrap-content-s-c9080e21-c05d-4a27-b24a-3ddbb08a682a { display: none !important; }}
#s-c9080e21-c05d-4a27-b24a-3ddbb08a682a {
  overflow: hidden;
  
  
}







  #s-c9080e21-c05d-4a27-b24a-3ddbb08a682a img.shogun-image {
    

    
    
    
  }


#s-c9080e21-c05d-4a27-b24a-3ddbb08a682a .shogun-image-content {
  
    justify-content: center;
  
}

#s-9634cc7d-fdc3-4377-be5f-7ae7359bbbc6 {
  text-align: center;
}
@media (min-width: 1200px){#s-9634cc7d-fdc3-4377-be5f-7ae7359bbbc6 {
  display: none;
}
#s-9634cc7d-fdc3-4377-be5f-7ae7359bbbc6, #wrap-s-9634cc7d-fdc3-4377-be5f-7ae7359bbbc6, #wrap-content-s-9634cc7d-fdc3-4377-be5f-7ae7359bbbc6 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9634cc7d-fdc3-4377-be5f-7ae7359bbbc6 {
  display: none;
}
#s-9634cc7d-fdc3-4377-be5f-7ae7359bbbc6, #wrap-s-9634cc7d-fdc3-4377-be5f-7ae7359bbbc6, #wrap-content-s-9634cc7d-fdc3-4377-be5f-7ae7359bbbc6 { display: none !important; }}@media (max-width: 767px){#s-9634cc7d-fdc3-4377-be5f-7ae7359bbbc6 {
  display: none;
}
#s-9634cc7d-fdc3-4377-be5f-7ae7359bbbc6, #wrap-s-9634cc7d-fdc3-4377-be5f-7ae7359bbbc6, #wrap-content-s-9634cc7d-fdc3-4377-be5f-7ae7359bbbc6 { display: none !important; }}
#s-9634cc7d-fdc3-4377-be5f-7ae7359bbbc6 {
  overflow: hidden;
  
  
}







  #s-9634cc7d-fdc3-4377-be5f-7ae7359bbbc6 img.shogun-image {
    

    
    
    
  }


#s-9634cc7d-fdc3-4377-be5f-7ae7359bbbc6 .shogun-image-content {
  
    justify-content: center;
  
}

#s-04cc61b4-0073-48af-8172-690c8c741f72 {
  text-align: center;
}
@media (min-width: 1200px){#s-04cc61b4-0073-48af-8172-690c8c741f72 {
  display: none;
}
#s-04cc61b4-0073-48af-8172-690c8c741f72, #wrap-s-04cc61b4-0073-48af-8172-690c8c741f72, #wrap-content-s-04cc61b4-0073-48af-8172-690c8c741f72 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-04cc61b4-0073-48af-8172-690c8c741f72 {
  display: none;
}
#s-04cc61b4-0073-48af-8172-690c8c741f72, #wrap-s-04cc61b4-0073-48af-8172-690c8c741f72, #wrap-content-s-04cc61b4-0073-48af-8172-690c8c741f72 { display: none !important; }}@media (max-width: 767px){#s-04cc61b4-0073-48af-8172-690c8c741f72 {
  display: none;
}
#s-04cc61b4-0073-48af-8172-690c8c741f72, #wrap-s-04cc61b4-0073-48af-8172-690c8c741f72, #wrap-content-s-04cc61b4-0073-48af-8172-690c8c741f72 { display: none !important; }}
#s-04cc61b4-0073-48af-8172-690c8c741f72 {
  overflow: hidden;
  
  
}







  #s-04cc61b4-0073-48af-8172-690c8c741f72 img.shogun-image {
    

    
    
    
  }


#s-04cc61b4-0073-48af-8172-690c8c741f72 .shogun-image-content {
  
    justify-content: center;
  
}

#s-c195780d-73be-4ddd-a9a7-32b9baa55361 {
  text-align: center;
}
@media (min-width: 1200px){#s-c195780d-73be-4ddd-a9a7-32b9baa55361 {
  display: none;
}
#s-c195780d-73be-4ddd-a9a7-32b9baa55361, #wrap-s-c195780d-73be-4ddd-a9a7-32b9baa55361, #wrap-content-s-c195780d-73be-4ddd-a9a7-32b9baa55361 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c195780d-73be-4ddd-a9a7-32b9baa55361 {
  display: none;
}
#s-c195780d-73be-4ddd-a9a7-32b9baa55361, #wrap-s-c195780d-73be-4ddd-a9a7-32b9baa55361, #wrap-content-s-c195780d-73be-4ddd-a9a7-32b9baa55361 { display: none !important; }}@media (max-width: 767px){#s-c195780d-73be-4ddd-a9a7-32b9baa55361 {
  display: none;
}
#s-c195780d-73be-4ddd-a9a7-32b9baa55361, #wrap-s-c195780d-73be-4ddd-a9a7-32b9baa55361, #wrap-content-s-c195780d-73be-4ddd-a9a7-32b9baa55361 { display: none !important; }}
#s-c195780d-73be-4ddd-a9a7-32b9baa55361 {
  overflow: hidden;
  
  
}







  #s-c195780d-73be-4ddd-a9a7-32b9baa55361 img.shogun-image {
    

    
    
    
  }


#s-c195780d-73be-4ddd-a9a7-32b9baa55361 .shogun-image-content {
  
    justify-content: center;
  
}

@media (min-width: 1200px){#s-da328fdb-0354-4482-8317-7960f0ff5ac6 {
  display: none;
}
#s-da328fdb-0354-4482-8317-7960f0ff5ac6, #wrap-s-da328fdb-0354-4482-8317-7960f0ff5ac6, #wrap-content-s-da328fdb-0354-4482-8317-7960f0ff5ac6 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-da328fdb-0354-4482-8317-7960f0ff5ac6 {
  display: none;
}
#s-da328fdb-0354-4482-8317-7960f0ff5ac6, #wrap-s-da328fdb-0354-4482-8317-7960f0ff5ac6, #wrap-content-s-da328fdb-0354-4482-8317-7960f0ff5ac6 { display: none !important; }}@media (max-width: 767px){#s-da328fdb-0354-4482-8317-7960f0ff5ac6 {
  display: none;
}
#s-da328fdb-0354-4482-8317-7960f0ff5ac6, #wrap-s-da328fdb-0354-4482-8317-7960f0ff5ac6, #wrap-content-s-da328fdb-0354-4482-8317-7960f0ff5ac6 { display: none !important; }}
#s-da328fdb-0354-4482-8317-7960f0ff5ac6 hr {
  border-top: 50px solid rgba(255, 255, 255, 1);
}

#s-0cc78777-148c-48ee-824c-568d90d46b2c {
  text-align: center;
}
@media (min-width: 1200px){#s-0cc78777-148c-48ee-824c-568d90d46b2c {
  display: none;
}
#s-0cc78777-148c-48ee-824c-568d90d46b2c, #wrap-s-0cc78777-148c-48ee-824c-568d90d46b2c, #wrap-content-s-0cc78777-148c-48ee-824c-568d90d46b2c { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-0cc78777-148c-48ee-824c-568d90d46b2c {
  display: none;
}
#s-0cc78777-148c-48ee-824c-568d90d46b2c, #wrap-s-0cc78777-148c-48ee-824c-568d90d46b2c, #wrap-content-s-0cc78777-148c-48ee-824c-568d90d46b2c { display: none !important; }}@media (max-width: 767px){#s-0cc78777-148c-48ee-824c-568d90d46b2c {
  display: none;
}
#s-0cc78777-148c-48ee-824c-568d90d46b2c, #wrap-s-0cc78777-148c-48ee-824c-568d90d46b2c, #wrap-content-s-0cc78777-148c-48ee-824c-568d90d46b2c { display: none !important; }}
#s-0cc78777-148c-48ee-824c-568d90d46b2c {
  overflow: hidden;
  
  
}







  #s-0cc78777-148c-48ee-824c-568d90d46b2c img.shogun-image {
    

    
    
    
  }


#s-0cc78777-148c-48ee-824c-568d90d46b2c .shogun-image-content {
  
    justify-content: center;
  
}

@media (min-width: 1200px){#s-3b7c9f10-eb85-4007-9bad-27ccc22a33c4 {
  display: none;
}
#s-3b7c9f10-eb85-4007-9bad-27ccc22a33c4, #wrap-s-3b7c9f10-eb85-4007-9bad-27ccc22a33c4, #wrap-content-s-3b7c9f10-eb85-4007-9bad-27ccc22a33c4 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3b7c9f10-eb85-4007-9bad-27ccc22a33c4 {
  display: none;
}
#s-3b7c9f10-eb85-4007-9bad-27ccc22a33c4, #wrap-s-3b7c9f10-eb85-4007-9bad-27ccc22a33c4, #wrap-content-s-3b7c9f10-eb85-4007-9bad-27ccc22a33c4 { display: none !important; }}@media (max-width: 767px){#s-3b7c9f10-eb85-4007-9bad-27ccc22a33c4 {
  display: none;
}
#s-3b7c9f10-eb85-4007-9bad-27ccc22a33c4, #wrap-s-3b7c9f10-eb85-4007-9bad-27ccc22a33c4, #wrap-content-s-3b7c9f10-eb85-4007-9bad-27ccc22a33c4 { display: none !important; }}
#s-7acdce6b-9412-438d-83f8-8014886a9528 {
  text-align: center;
}
@media (min-width: 1200px){#s-7acdce6b-9412-438d-83f8-8014886a9528 {
  display: none;
}
#s-7acdce6b-9412-438d-83f8-8014886a9528, #wrap-s-7acdce6b-9412-438d-83f8-8014886a9528, #wrap-content-s-7acdce6b-9412-438d-83f8-8014886a9528 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7acdce6b-9412-438d-83f8-8014886a9528 {
  display: none;
}
#s-7acdce6b-9412-438d-83f8-8014886a9528, #wrap-s-7acdce6b-9412-438d-83f8-8014886a9528, #wrap-content-s-7acdce6b-9412-438d-83f8-8014886a9528 { display: none !important; }}@media (max-width: 767px){#s-7acdce6b-9412-438d-83f8-8014886a9528 {
  display: none;
}
#s-7acdce6b-9412-438d-83f8-8014886a9528, #wrap-s-7acdce6b-9412-438d-83f8-8014886a9528, #wrap-content-s-7acdce6b-9412-438d-83f8-8014886a9528 { display: none !important; }}
#s-7acdce6b-9412-438d-83f8-8014886a9528 {
  overflow: hidden;
  
  
}







  #s-7acdce6b-9412-438d-83f8-8014886a9528 img.shogun-image {
    

    
    
    
  }


#s-7acdce6b-9412-438d-83f8-8014886a9528 .shogun-image-content {
  
    justify-content: center;
  
}

#s-e6bc7921-b960-4e88-b787-3c3be09f8c93 {
  text-align: center;
}
@media (min-width: 1200px){#s-e6bc7921-b960-4e88-b787-3c3be09f8c93 {
  display: none;
}
#s-e6bc7921-b960-4e88-b787-3c3be09f8c93, #wrap-s-e6bc7921-b960-4e88-b787-3c3be09f8c93, #wrap-content-s-e6bc7921-b960-4e88-b787-3c3be09f8c93 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e6bc7921-b960-4e88-b787-3c3be09f8c93 {
  display: none;
}
#s-e6bc7921-b960-4e88-b787-3c3be09f8c93, #wrap-s-e6bc7921-b960-4e88-b787-3c3be09f8c93, #wrap-content-s-e6bc7921-b960-4e88-b787-3c3be09f8c93 { display: none !important; }}@media (max-width: 767px){#s-e6bc7921-b960-4e88-b787-3c3be09f8c93 {
  display: none;
}
#s-e6bc7921-b960-4e88-b787-3c3be09f8c93, #wrap-s-e6bc7921-b960-4e88-b787-3c3be09f8c93, #wrap-content-s-e6bc7921-b960-4e88-b787-3c3be09f8c93 { display: none !important; }}
#s-e6bc7921-b960-4e88-b787-3c3be09f8c93 {
  overflow: hidden;
  
  
}







  #s-e6bc7921-b960-4e88-b787-3c3be09f8c93 img.shogun-image {
    

    
    
    
  }


#s-e6bc7921-b960-4e88-b787-3c3be09f8c93 .shogun-image-content {
  
    justify-content: center;
  
}

#s-5282115a-f5ee-4dd2-9c30-2f13f876ba3f {
  text-align: center;
}
@media (min-width: 1200px){#s-5282115a-f5ee-4dd2-9c30-2f13f876ba3f {
  display: none;
}
#s-5282115a-f5ee-4dd2-9c30-2f13f876ba3f, #wrap-s-5282115a-f5ee-4dd2-9c30-2f13f876ba3f, #wrap-content-s-5282115a-f5ee-4dd2-9c30-2f13f876ba3f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5282115a-f5ee-4dd2-9c30-2f13f876ba3f {
  display: none;
}
#s-5282115a-f5ee-4dd2-9c30-2f13f876ba3f, #wrap-s-5282115a-f5ee-4dd2-9c30-2f13f876ba3f, #wrap-content-s-5282115a-f5ee-4dd2-9c30-2f13f876ba3f { display: none !important; }}@media (max-width: 767px){#s-5282115a-f5ee-4dd2-9c30-2f13f876ba3f {
  display: none;
}
#s-5282115a-f5ee-4dd2-9c30-2f13f876ba3f, #wrap-s-5282115a-f5ee-4dd2-9c30-2f13f876ba3f, #wrap-content-s-5282115a-f5ee-4dd2-9c30-2f13f876ba3f { display: none !important; }}
#s-5282115a-f5ee-4dd2-9c30-2f13f876ba3f {
  overflow: hidden;
  
  
}







  #s-5282115a-f5ee-4dd2-9c30-2f13f876ba3f img.shogun-image {
    

    
    
    
  }


#s-5282115a-f5ee-4dd2-9c30-2f13f876ba3f .shogun-image-content {
  
    justify-content: center;
  
}

#s-97814be8-6c6b-4526-af49-2c5145d1e676 {
  text-align: center;
}
@media (min-width: 1200px){#s-97814be8-6c6b-4526-af49-2c5145d1e676 {
  display: none;
}
#s-97814be8-6c6b-4526-af49-2c5145d1e676, #wrap-s-97814be8-6c6b-4526-af49-2c5145d1e676, #wrap-content-s-97814be8-6c6b-4526-af49-2c5145d1e676 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-97814be8-6c6b-4526-af49-2c5145d1e676 {
  display: none;
}
#s-97814be8-6c6b-4526-af49-2c5145d1e676, #wrap-s-97814be8-6c6b-4526-af49-2c5145d1e676, #wrap-content-s-97814be8-6c6b-4526-af49-2c5145d1e676 { display: none !important; }}@media (max-width: 767px){#s-97814be8-6c6b-4526-af49-2c5145d1e676 {
  display: none;
}
#s-97814be8-6c6b-4526-af49-2c5145d1e676, #wrap-s-97814be8-6c6b-4526-af49-2c5145d1e676, #wrap-content-s-97814be8-6c6b-4526-af49-2c5145d1e676 { display: none !important; }}
#s-97814be8-6c6b-4526-af49-2c5145d1e676 {
  overflow: hidden;
  
  
}







  #s-97814be8-6c6b-4526-af49-2c5145d1e676 img.shogun-image {
    

    
    
    
  }


#s-97814be8-6c6b-4526-af49-2c5145d1e676 .shogun-image-content {
  
    justify-content: center;
  
}

#s-182c04d2-4705-452d-942e-5b747c49a1a7 {
  text-align: center;
}
@media (min-width: 1200px){#s-182c04d2-4705-452d-942e-5b747c49a1a7 {
  display: none;
}
#s-182c04d2-4705-452d-942e-5b747c49a1a7, #wrap-s-182c04d2-4705-452d-942e-5b747c49a1a7, #wrap-content-s-182c04d2-4705-452d-942e-5b747c49a1a7 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-182c04d2-4705-452d-942e-5b747c49a1a7 {
  display: none;
}
#s-182c04d2-4705-452d-942e-5b747c49a1a7, #wrap-s-182c04d2-4705-452d-942e-5b747c49a1a7, #wrap-content-s-182c04d2-4705-452d-942e-5b747c49a1a7 { display: none !important; }}@media (max-width: 767px){#s-182c04d2-4705-452d-942e-5b747c49a1a7 {
  display: none;
}
#s-182c04d2-4705-452d-942e-5b747c49a1a7, #wrap-s-182c04d2-4705-452d-942e-5b747c49a1a7, #wrap-content-s-182c04d2-4705-452d-942e-5b747c49a1a7 { display: none !important; }}
#s-182c04d2-4705-452d-942e-5b747c49a1a7 {
  overflow: hidden;
  
  
}







  #s-182c04d2-4705-452d-942e-5b747c49a1a7 img.shogun-image {
    

    
    
    
  }


#s-182c04d2-4705-452d-942e-5b747c49a1a7 .shogun-image-content {
  
    justify-content: center;
  
}

#s-6903b770-7020-497a-9716-58eaf4b57763 {
  text-align: center;
}
@media (min-width: 1200px){#s-6903b770-7020-497a-9716-58eaf4b57763 {
  display: none;
}
#s-6903b770-7020-497a-9716-58eaf4b57763, #wrap-s-6903b770-7020-497a-9716-58eaf4b57763, #wrap-content-s-6903b770-7020-497a-9716-58eaf4b57763 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6903b770-7020-497a-9716-58eaf4b57763 {
  display: none;
}
#s-6903b770-7020-497a-9716-58eaf4b57763, #wrap-s-6903b770-7020-497a-9716-58eaf4b57763, #wrap-content-s-6903b770-7020-497a-9716-58eaf4b57763 { display: none !important; }}@media (max-width: 767px){#s-6903b770-7020-497a-9716-58eaf4b57763 {
  display: none;
}
#s-6903b770-7020-497a-9716-58eaf4b57763, #wrap-s-6903b770-7020-497a-9716-58eaf4b57763, #wrap-content-s-6903b770-7020-497a-9716-58eaf4b57763 { display: none !important; }}
#s-6903b770-7020-497a-9716-58eaf4b57763 {
  overflow: hidden;
  
  
}







  #s-6903b770-7020-497a-9716-58eaf4b57763 img.shogun-image {
    

    
    
    
  }


#s-6903b770-7020-497a-9716-58eaf4b57763 .shogun-image-content {
  
    justify-content: center;
  
}

#s-3b4e30c6-be87-4e67-ba69-aa80be96eda8 {
  text-align: center;
}
@media (min-width: 1200px){#s-3b4e30c6-be87-4e67-ba69-aa80be96eda8 {
  display: none;
}
#s-3b4e30c6-be87-4e67-ba69-aa80be96eda8, #wrap-s-3b4e30c6-be87-4e67-ba69-aa80be96eda8, #wrap-content-s-3b4e30c6-be87-4e67-ba69-aa80be96eda8 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3b4e30c6-be87-4e67-ba69-aa80be96eda8 {
  display: none;
}
#s-3b4e30c6-be87-4e67-ba69-aa80be96eda8, #wrap-s-3b4e30c6-be87-4e67-ba69-aa80be96eda8, #wrap-content-s-3b4e30c6-be87-4e67-ba69-aa80be96eda8 { display: none !important; }}@media (max-width: 767px){#s-3b4e30c6-be87-4e67-ba69-aa80be96eda8 {
  display: none;
}
#s-3b4e30c6-be87-4e67-ba69-aa80be96eda8, #wrap-s-3b4e30c6-be87-4e67-ba69-aa80be96eda8, #wrap-content-s-3b4e30c6-be87-4e67-ba69-aa80be96eda8 { display: none !important; }}
#s-3b4e30c6-be87-4e67-ba69-aa80be96eda8 {
  overflow: hidden;
  
  
}







  #s-3b4e30c6-be87-4e67-ba69-aa80be96eda8 img.shogun-image {
    

    
    
    
  }


#s-3b4e30c6-be87-4e67-ba69-aa80be96eda8 .shogun-image-content {
  
    justify-content: center;
  
}

#s-4446fdf2-07c2-4c89-8bdb-57bd9860412b {
  text-align: center;
}
@media (min-width: 1200px){#s-4446fdf2-07c2-4c89-8bdb-57bd9860412b {
  display: none;
}
#s-4446fdf2-07c2-4c89-8bdb-57bd9860412b, #wrap-s-4446fdf2-07c2-4c89-8bdb-57bd9860412b, #wrap-content-s-4446fdf2-07c2-4c89-8bdb-57bd9860412b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4446fdf2-07c2-4c89-8bdb-57bd9860412b {
  display: none;
}
#s-4446fdf2-07c2-4c89-8bdb-57bd9860412b, #wrap-s-4446fdf2-07c2-4c89-8bdb-57bd9860412b, #wrap-content-s-4446fdf2-07c2-4c89-8bdb-57bd9860412b { display: none !important; }}@media (max-width: 767px){#s-4446fdf2-07c2-4c89-8bdb-57bd9860412b {
  display: none;
}
#s-4446fdf2-07c2-4c89-8bdb-57bd9860412b, #wrap-s-4446fdf2-07c2-4c89-8bdb-57bd9860412b, #wrap-content-s-4446fdf2-07c2-4c89-8bdb-57bd9860412b { display: none !important; }}
#s-4446fdf2-07c2-4c89-8bdb-57bd9860412b {
  overflow: hidden;
  
  
}







  #s-4446fdf2-07c2-4c89-8bdb-57bd9860412b img.shogun-image {
    

    
    
    
  }


#s-4446fdf2-07c2-4c89-8bdb-57bd9860412b .shogun-image-content {
  
    justify-content: center;
  
}

#s-2c2a2a05-27d3-482e-91f1-5e4dfa1c33b0 {
  margin-left: 3%;
margin-right: 3%;
min-height: 300px;
}
@media (min-width: 1200px){#s-2c2a2a05-27d3-482e-91f1-5e4dfa1c33b0 {
  display: none;
}
#s-2c2a2a05-27d3-482e-91f1-5e4dfa1c33b0, #wrap-s-2c2a2a05-27d3-482e-91f1-5e4dfa1c33b0, #wrap-content-s-2c2a2a05-27d3-482e-91f1-5e4dfa1c33b0 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2c2a2a05-27d3-482e-91f1-5e4dfa1c33b0 {
  display: none;
}
#s-2c2a2a05-27d3-482e-91f1-5e4dfa1c33b0, #wrap-s-2c2a2a05-27d3-482e-91f1-5e4dfa1c33b0, #wrap-content-s-2c2a2a05-27d3-482e-91f1-5e4dfa1c33b0 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2c2a2a05-27d3-482e-91f1-5e4dfa1c33b0 {
  display: none;
}
#s-2c2a2a05-27d3-482e-91f1-5e4dfa1c33b0, #wrap-s-2c2a2a05-27d3-482e-91f1-5e4dfa1c33b0, #wrap-content-s-2c2a2a05-27d3-482e-91f1-5e4dfa1c33b0 { display: none !important; }}







#s-2c2a2a05-27d3-482e-91f1-5e4dfa1c33b0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2c2a2a05-27d3-482e-91f1-5e4dfa1c33b0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

#s-dc18b70a-1062-473d-abd8-c8b0501f5b53 {
  margin-top: -20px;
padding-top: 10px;
padding-bottom: 21px;
text-align: center;
}

#s-dc18b70a-1062-473d-abd8-c8b0501f5b53 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  800 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 24px;
  line-height: 3.5em;
  
  
}



#s-9c6b8709-a188-4a07-a3fd-bb8bb188117e {
  padding-bottom: 4em;
}

@media (min-width: 0px) {
[id="s-9c6b8709-a188-4a07-a3fd-bb8bb188117e"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-9c6b8709-a188-4a07-a3fd-bb8bb188117e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-9c6b8709-a188-4a07-a3fd-bb8bb188117e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-9c6b8709-a188-4a07-a3fd-bb8bb188117e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.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-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b {
  text-align: center;
}

#s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b {
  margin: 0 !important;
  overflow: visible;
}

#s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b-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-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b img.shogun-image {
  /* Add background color handling */
  
}

#s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b.shogun-image {
    
    
    
    
  }


.s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b .shogun-image-content {
  
    justify-content: center;
  
}

.s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b.shogun-image {
  box-sizing: border-box;
}



.s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b img.shogun-image {
  
}


@media (min-width: 1200px){#s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b {
  margin: 0 !important;
  overflow: visible;
}

#s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b-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-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b img.shogun-image {
  /* Add background color handling */
  
}

#s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b.shogun-image {
    
    
    
    
  }


.s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b .shogun-image-content {
  
    justify-content: center;
  
}

.s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b.shogun-image {
  box-sizing: border-box;
}



.s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b {
  margin: 0 !important;
  overflow: visible;
}

#s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b-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-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b img.shogun-image {
  /* Add background color handling */
  
}

#s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b.shogun-image {
    
    
    
    
  }


.s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b .shogun-image-content {
  
    justify-content: center;
  
}

.s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b.shogun-image {
  box-sizing: border-box;
}



.s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b {
  margin: 0 !important;
  overflow: visible;
}

#s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b-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-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b img.shogun-image {
  /* Add background color handling */
  
}

#s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b.shogun-image {
    
    
    
    
  }


.s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b .shogun-image-content {
  
    justify-content: center;
  
}

.s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b.shogun-image {
  box-sizing: border-box;
}



.s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b img.shogun-image {
  
}


}@media (max-width: 767px){#s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b {
  margin: 0 !important;
  overflow: visible;
}

#s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b-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-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b img.shogun-image {
  /* Add background color handling */
  
}

#s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b.shogun-image {
    
    
    
    
  }


.s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b .shogun-image-content {
  
    justify-content: center;
  
}

.s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b.shogun-image {
  box-sizing: border-box;
}



.s-27a9c977-cb82-4ddd-ab9d-aa8b0472fe8b img.shogun-image {
  
}


}
#s-c6eff2f7-9453-4fe2-b64c-9625f71afa53 {
  margin-top: -13px;
text-align: center;
}

#s-c6eff2f7-9453-4fe2-b64c-9625f71afa53 {
  margin: 0 !important;
  overflow: visible;
}

#s-c6eff2f7-9453-4fe2-b64c-9625f71afa53-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-c6eff2f7-9453-4fe2-b64c-9625f71afa53 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: -13px;
  
}

.shg-image-content-margin-container-s-c6eff2f7-9453-4fe2-b64c-9625f71afa53 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c6eff2f7-9453-4fe2-b64c-9625f71afa53 img.shogun-image {
  /* Add background color handling */
  
}

#s-c6eff2f7-9453-4fe2-b64c-9625f71afa53 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-c6eff2f7-9453-4fe2-b64c-9625f71afa53.shogun-image {
    
    
    
    
  }


.s-c6eff2f7-9453-4fe2-b64c-9625f71afa53 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c6eff2f7-9453-4fe2-b64c-9625f71afa53.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c6eff2f7-9453-4fe2-b64c-9625f71afa53.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c6eff2f7-9453-4fe2-b64c-9625f71afa53.shogun-image {
  box-sizing: border-box;
}



.s-c6eff2f7-9453-4fe2-b64c-9625f71afa53 img.shogun-image {
  
}


@media (min-width: 1200px){#s-c6eff2f7-9453-4fe2-b64c-9625f71afa53 {
  margin: 0 !important;
  overflow: visible;
}

#s-c6eff2f7-9453-4fe2-b64c-9625f71afa53-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-c6eff2f7-9453-4fe2-b64c-9625f71afa53 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c6eff2f7-9453-4fe2-b64c-9625f71afa53 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c6eff2f7-9453-4fe2-b64c-9625f71afa53 img.shogun-image {
  /* Add background color handling */
  
}

#s-c6eff2f7-9453-4fe2-b64c-9625f71afa53 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-c6eff2f7-9453-4fe2-b64c-9625f71afa53.shogun-image {
    
    
    
    
  }


.s-c6eff2f7-9453-4fe2-b64c-9625f71afa53 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c6eff2f7-9453-4fe2-b64c-9625f71afa53.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c6eff2f7-9453-4fe2-b64c-9625f71afa53.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c6eff2f7-9453-4fe2-b64c-9625f71afa53.shogun-image {
  box-sizing: border-box;
}



.s-c6eff2f7-9453-4fe2-b64c-9625f71afa53 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-c6eff2f7-9453-4fe2-b64c-9625f71afa53 {
  margin: 0 !important;
  overflow: visible;
}

#s-c6eff2f7-9453-4fe2-b64c-9625f71afa53-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-c6eff2f7-9453-4fe2-b64c-9625f71afa53 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c6eff2f7-9453-4fe2-b64c-9625f71afa53 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c6eff2f7-9453-4fe2-b64c-9625f71afa53 img.shogun-image {
  /* Add background color handling */
  
}

#s-c6eff2f7-9453-4fe2-b64c-9625f71afa53 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-c6eff2f7-9453-4fe2-b64c-9625f71afa53.shogun-image {
    
    
    
    
  }


.s-c6eff2f7-9453-4fe2-b64c-9625f71afa53 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c6eff2f7-9453-4fe2-b64c-9625f71afa53.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c6eff2f7-9453-4fe2-b64c-9625f71afa53.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c6eff2f7-9453-4fe2-b64c-9625f71afa53.shogun-image {
  box-sizing: border-box;
}



.s-c6eff2f7-9453-4fe2-b64c-9625f71afa53 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-c6eff2f7-9453-4fe2-b64c-9625f71afa53 {
  margin: 0 !important;
  overflow: visible;
}

#s-c6eff2f7-9453-4fe2-b64c-9625f71afa53-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-c6eff2f7-9453-4fe2-b64c-9625f71afa53 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c6eff2f7-9453-4fe2-b64c-9625f71afa53 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c6eff2f7-9453-4fe2-b64c-9625f71afa53 img.shogun-image {
  /* Add background color handling */
  
}

#s-c6eff2f7-9453-4fe2-b64c-9625f71afa53 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-c6eff2f7-9453-4fe2-b64c-9625f71afa53.shogun-image {
    
    
    
    
  }


.s-c6eff2f7-9453-4fe2-b64c-9625f71afa53 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c6eff2f7-9453-4fe2-b64c-9625f71afa53.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c6eff2f7-9453-4fe2-b64c-9625f71afa53.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c6eff2f7-9453-4fe2-b64c-9625f71afa53.shogun-image {
  box-sizing: border-box;
}



.s-c6eff2f7-9453-4fe2-b64c-9625f71afa53 img.shogun-image {
  
}


}@media (max-width: 767px){#s-c6eff2f7-9453-4fe2-b64c-9625f71afa53 {
  margin: 0 !important;
  overflow: visible;
}

#s-c6eff2f7-9453-4fe2-b64c-9625f71afa53-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-c6eff2f7-9453-4fe2-b64c-9625f71afa53 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c6eff2f7-9453-4fe2-b64c-9625f71afa53 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c6eff2f7-9453-4fe2-b64c-9625f71afa53 img.shogun-image {
  /* Add background color handling */
  
}

#s-c6eff2f7-9453-4fe2-b64c-9625f71afa53 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-c6eff2f7-9453-4fe2-b64c-9625f71afa53.shogun-image {
    
    
    
    
  }


.s-c6eff2f7-9453-4fe2-b64c-9625f71afa53 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c6eff2f7-9453-4fe2-b64c-9625f71afa53.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c6eff2f7-9453-4fe2-b64c-9625f71afa53.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c6eff2f7-9453-4fe2-b64c-9625f71afa53.shogun-image {
  box-sizing: border-box;
}



.s-c6eff2f7-9453-4fe2-b64c-9625f71afa53 img.shogun-image {
  
}


}
#s-3cedc1a6-bd32-42bb-ab87-9b269f446142 {
  text-align: center;
}

#s-3cedc1a6-bd32-42bb-ab87-9b269f446142 {
  margin: 0 !important;
  overflow: visible;
}

#s-3cedc1a6-bd32-42bb-ab87-9b269f446142-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-3cedc1a6-bd32-42bb-ab87-9b269f446142 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3cedc1a6-bd32-42bb-ab87-9b269f446142 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3cedc1a6-bd32-42bb-ab87-9b269f446142 img.shogun-image {
  /* Add background color handling */
  
}

#s-3cedc1a6-bd32-42bb-ab87-9b269f446142 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-3cedc1a6-bd32-42bb-ab87-9b269f446142.shogun-image {
    
    
    
    
  }


.s-3cedc1a6-bd32-42bb-ab87-9b269f446142 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3cedc1a6-bd32-42bb-ab87-9b269f446142.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3cedc1a6-bd32-42bb-ab87-9b269f446142.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3cedc1a6-bd32-42bb-ab87-9b269f446142.shogun-image {
  box-sizing: border-box;
}



.s-3cedc1a6-bd32-42bb-ab87-9b269f446142 img.shogun-image {
  
}


@media (min-width: 1200px){#s-3cedc1a6-bd32-42bb-ab87-9b269f446142 {
  margin: 0 !important;
  overflow: visible;
}

#s-3cedc1a6-bd32-42bb-ab87-9b269f446142-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-3cedc1a6-bd32-42bb-ab87-9b269f446142 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3cedc1a6-bd32-42bb-ab87-9b269f446142 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3cedc1a6-bd32-42bb-ab87-9b269f446142 img.shogun-image {
  /* Add background color handling */
  
}

#s-3cedc1a6-bd32-42bb-ab87-9b269f446142 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-3cedc1a6-bd32-42bb-ab87-9b269f446142.shogun-image {
    
    
    
    
  }


.s-3cedc1a6-bd32-42bb-ab87-9b269f446142 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3cedc1a6-bd32-42bb-ab87-9b269f446142.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3cedc1a6-bd32-42bb-ab87-9b269f446142.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3cedc1a6-bd32-42bb-ab87-9b269f446142.shogun-image {
  box-sizing: border-box;
}



.s-3cedc1a6-bd32-42bb-ab87-9b269f446142 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-3cedc1a6-bd32-42bb-ab87-9b269f446142 {
  margin: 0 !important;
  overflow: visible;
}

#s-3cedc1a6-bd32-42bb-ab87-9b269f446142-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-3cedc1a6-bd32-42bb-ab87-9b269f446142 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3cedc1a6-bd32-42bb-ab87-9b269f446142 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3cedc1a6-bd32-42bb-ab87-9b269f446142 img.shogun-image {
  /* Add background color handling */
  
}

#s-3cedc1a6-bd32-42bb-ab87-9b269f446142 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-3cedc1a6-bd32-42bb-ab87-9b269f446142.shogun-image {
    
    
    
    
  }


.s-3cedc1a6-bd32-42bb-ab87-9b269f446142 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3cedc1a6-bd32-42bb-ab87-9b269f446142.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3cedc1a6-bd32-42bb-ab87-9b269f446142.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3cedc1a6-bd32-42bb-ab87-9b269f446142.shogun-image {
  box-sizing: border-box;
}



.s-3cedc1a6-bd32-42bb-ab87-9b269f446142 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-3cedc1a6-bd32-42bb-ab87-9b269f446142 {
  margin: 0 !important;
  overflow: visible;
}

#s-3cedc1a6-bd32-42bb-ab87-9b269f446142-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-3cedc1a6-bd32-42bb-ab87-9b269f446142 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3cedc1a6-bd32-42bb-ab87-9b269f446142 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3cedc1a6-bd32-42bb-ab87-9b269f446142 img.shogun-image {
  /* Add background color handling */
  
}

#s-3cedc1a6-bd32-42bb-ab87-9b269f446142 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-3cedc1a6-bd32-42bb-ab87-9b269f446142.shogun-image {
    
    
    
    
  }


.s-3cedc1a6-bd32-42bb-ab87-9b269f446142 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3cedc1a6-bd32-42bb-ab87-9b269f446142.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3cedc1a6-bd32-42bb-ab87-9b269f446142.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3cedc1a6-bd32-42bb-ab87-9b269f446142.shogun-image {
  box-sizing: border-box;
}



.s-3cedc1a6-bd32-42bb-ab87-9b269f446142 img.shogun-image {
  
}


}@media (max-width: 767px){#s-3cedc1a6-bd32-42bb-ab87-9b269f446142 {
  margin: 0 !important;
  overflow: visible;
}

#s-3cedc1a6-bd32-42bb-ab87-9b269f446142-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-3cedc1a6-bd32-42bb-ab87-9b269f446142 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3cedc1a6-bd32-42bb-ab87-9b269f446142 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3cedc1a6-bd32-42bb-ab87-9b269f446142 img.shogun-image {
  /* Add background color handling */
  
}

#s-3cedc1a6-bd32-42bb-ab87-9b269f446142 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-3cedc1a6-bd32-42bb-ab87-9b269f446142.shogun-image {
    
    
    
    
  }


.s-3cedc1a6-bd32-42bb-ab87-9b269f446142 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3cedc1a6-bd32-42bb-ab87-9b269f446142.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3cedc1a6-bd32-42bb-ab87-9b269f446142.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3cedc1a6-bd32-42bb-ab87-9b269f446142.shogun-image {
  box-sizing: border-box;
}



.s-3cedc1a6-bd32-42bb-ab87-9b269f446142 img.shogun-image {
  
}


}
#s-f6976c95-2c3e-4fdc-b1aa-1dc2cb389d8d {
  min-height: 50px;
}
@media (min-width: 1200px){#s-f6976c95-2c3e-4fdc-b1aa-1dc2cb389d8d {
  display: none;
}
#s-f6976c95-2c3e-4fdc-b1aa-1dc2cb389d8d, #wrap-s-f6976c95-2c3e-4fdc-b1aa-1dc2cb389d8d, #wrap-content-s-f6976c95-2c3e-4fdc-b1aa-1dc2cb389d8d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f6976c95-2c3e-4fdc-b1aa-1dc2cb389d8d {
  display: none;
}
#s-f6976c95-2c3e-4fdc-b1aa-1dc2cb389d8d, #wrap-s-f6976c95-2c3e-4fdc-b1aa-1dc2cb389d8d, #wrap-content-s-f6976c95-2c3e-4fdc-b1aa-1dc2cb389d8d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f6976c95-2c3e-4fdc-b1aa-1dc2cb389d8d {
  display: none;
}
#s-f6976c95-2c3e-4fdc-b1aa-1dc2cb389d8d, #wrap-s-f6976c95-2c3e-4fdc-b1aa-1dc2cb389d8d, #wrap-content-s-f6976c95-2c3e-4fdc-b1aa-1dc2cb389d8d { display: none !important; }}







#s-f6976c95-2c3e-4fdc-b1aa-1dc2cb389d8d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f6976c95-2c3e-4fdc-b1aa-1dc2cb389d8d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shogun-accordion-wrapper .shogun-accordion {
  margin-bottom: 0;
  border-radius: 4px;
}

.shogun-accordion {
  margin-bottom: 20px;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.shogun-accordion-wrapper .shogun-accordion + .shogun-accordion {
  margin-top: 5px;
}

.shogun-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.shogun-accordion-heading {
  color: #333;
  border-bottom: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  cursor: pointer;
}

.shogun-accordion-title {
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer;
  text-decoration: none;
  flex: 1;
  user-select: none;
}

.shogun-accordion-body {
  display: none;
  opacity: 0;
  transition: opacity 0.5s linear;
}

.shogun-accordion-body.shogun-accordion-active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.shogun-accordion-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1.2em;
}

.shogun-accordion-icon > span {
  transition: 0.3s transform;
  position: absolute;
  right: 0;
  font-size: 1.2em;
}

.shogun-accordion-icon.shogun-icon-chevron > span::after {
  content: "▸";
}

.shogun-accordion.shogun-accordion-active
  > .shogun-accordion-heading
  .shogun-accordion-icon.shogun-icon-chevron
  > span {
  transform: rotate(90deg);
}

.shogun-accordion-icon.shogun-icon-plus > span::after {
  content: "＋";
}

.shogun-accordion.shogun-accordion-active
  > .shogun-accordion-heading
  .shogun-accordion-icon.shogun-icon-plus
  > span {
  transform: rotate(-225deg);
}

#s-42ef2811-da8b-4118-b41c-051ff9e461ee {
  margin-left: 10%;
margin-bottom: 3em;
margin-right: 10%;
}

#s-42ef2811-da8b-4118-b41c-051ff9e461ee > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(211, 174, 62, 1);
}

#s-42ef2811-da8b-4118-b41c-051ff9e461ee > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 13px;
}

#s-42ef2811-da8b-4118-b41c-051ff9e461ee > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(211, 174, 62, 1);
}

#s-42ef2811-da8b-4118-b41c-051ff9e461ee > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(211, 174, 62, 1);
}

#s-42ef2811-da8b-4118-b41c-051ff9e461ee > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(211, 174, 62, 1);
  text-align: center;
  font-family: Poppins;
  font-weight: 500;
  font-style: ;
  font-size: 18px;
}

#s-42ef2811-da8b-4118-b41c-051ff9e461ee > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 18px;
}
#s-1f183d55-4685-43e6-8652-5148aef4e073 {
  text-align: center;
}

#s-1f183d55-4685-43e6-8652-5148aef4e073 {
  margin: 0 !important;
  overflow: visible;
}

#s-1f183d55-4685-43e6-8652-5148aef4e073-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-1f183d55-4685-43e6-8652-5148aef4e073 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1f183d55-4685-43e6-8652-5148aef4e073 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1f183d55-4685-43e6-8652-5148aef4e073 img.shogun-image {
  /* Add background color handling */
  
}

#s-1f183d55-4685-43e6-8652-5148aef4e073 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-1f183d55-4685-43e6-8652-5148aef4e073.shogun-image {
    
    
    
    
  }


.s-1f183d55-4685-43e6-8652-5148aef4e073 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1f183d55-4685-43e6-8652-5148aef4e073.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1f183d55-4685-43e6-8652-5148aef4e073.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1f183d55-4685-43e6-8652-5148aef4e073.shogun-image {
  box-sizing: border-box;
}



.s-1f183d55-4685-43e6-8652-5148aef4e073 img.shogun-image {
  
}


@media (min-width: 1200px){#s-1f183d55-4685-43e6-8652-5148aef4e073 {
  margin: 0 !important;
  overflow: visible;
}

#s-1f183d55-4685-43e6-8652-5148aef4e073-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-1f183d55-4685-43e6-8652-5148aef4e073 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1f183d55-4685-43e6-8652-5148aef4e073 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1f183d55-4685-43e6-8652-5148aef4e073 img.shogun-image {
  /* Add background color handling */
  
}

#s-1f183d55-4685-43e6-8652-5148aef4e073 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-1f183d55-4685-43e6-8652-5148aef4e073.shogun-image {
    
    
    
    
  }


.s-1f183d55-4685-43e6-8652-5148aef4e073 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1f183d55-4685-43e6-8652-5148aef4e073.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1f183d55-4685-43e6-8652-5148aef4e073.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1f183d55-4685-43e6-8652-5148aef4e073.shogun-image {
  box-sizing: border-box;
}



.s-1f183d55-4685-43e6-8652-5148aef4e073 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-1f183d55-4685-43e6-8652-5148aef4e073 {
  margin: 0 !important;
  overflow: visible;
}

#s-1f183d55-4685-43e6-8652-5148aef4e073-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-1f183d55-4685-43e6-8652-5148aef4e073 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1f183d55-4685-43e6-8652-5148aef4e073 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1f183d55-4685-43e6-8652-5148aef4e073 img.shogun-image {
  /* Add background color handling */
  
}

#s-1f183d55-4685-43e6-8652-5148aef4e073 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-1f183d55-4685-43e6-8652-5148aef4e073.shogun-image {
    
    
    
    
  }


.s-1f183d55-4685-43e6-8652-5148aef4e073 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1f183d55-4685-43e6-8652-5148aef4e073.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1f183d55-4685-43e6-8652-5148aef4e073.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1f183d55-4685-43e6-8652-5148aef4e073.shogun-image {
  box-sizing: border-box;
}



.s-1f183d55-4685-43e6-8652-5148aef4e073 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-1f183d55-4685-43e6-8652-5148aef4e073 {
  margin: 0 !important;
  overflow: visible;
}

#s-1f183d55-4685-43e6-8652-5148aef4e073-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-1f183d55-4685-43e6-8652-5148aef4e073 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1f183d55-4685-43e6-8652-5148aef4e073 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1f183d55-4685-43e6-8652-5148aef4e073 img.shogun-image {
  /* Add background color handling */
  
}

#s-1f183d55-4685-43e6-8652-5148aef4e073 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-1f183d55-4685-43e6-8652-5148aef4e073.shogun-image {
    
    
    
    
  }


.s-1f183d55-4685-43e6-8652-5148aef4e073 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1f183d55-4685-43e6-8652-5148aef4e073.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1f183d55-4685-43e6-8652-5148aef4e073.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1f183d55-4685-43e6-8652-5148aef4e073.shogun-image {
  box-sizing: border-box;
}



.s-1f183d55-4685-43e6-8652-5148aef4e073 img.shogun-image {
  
}


}@media (max-width: 767px){#s-1f183d55-4685-43e6-8652-5148aef4e073 {
  margin: 0 !important;
  overflow: visible;
}

#s-1f183d55-4685-43e6-8652-5148aef4e073-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-1f183d55-4685-43e6-8652-5148aef4e073 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1f183d55-4685-43e6-8652-5148aef4e073 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1f183d55-4685-43e6-8652-5148aef4e073 img.shogun-image {
  /* Add background color handling */
  
}

#s-1f183d55-4685-43e6-8652-5148aef4e073 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-1f183d55-4685-43e6-8652-5148aef4e073.shogun-image {
    
    
    
    
  }


.s-1f183d55-4685-43e6-8652-5148aef4e073 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1f183d55-4685-43e6-8652-5148aef4e073.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1f183d55-4685-43e6-8652-5148aef4e073.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1f183d55-4685-43e6-8652-5148aef4e073.shogun-image {
  box-sizing: border-box;
}



.s-1f183d55-4685-43e6-8652-5148aef4e073 img.shogun-image {
  
}


}
#s-4506a939-9ae6-4345-9160-228a945747a2 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-4506a939-9ae6-4345-9160-228a945747a2 {
  display: none;
}
#s-4506a939-9ae6-4345-9160-228a945747a2, #wrap-s-4506a939-9ae6-4345-9160-228a945747a2, #wrap-content-s-4506a939-9ae6-4345-9160-228a945747a2 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4506a939-9ae6-4345-9160-228a945747a2 {
  display: none;
}
#s-4506a939-9ae6-4345-9160-228a945747a2, #wrap-s-4506a939-9ae6-4345-9160-228a945747a2, #wrap-content-s-4506a939-9ae6-4345-9160-228a945747a2 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-4506a939-9ae6-4345-9160-228a945747a2 {
  display: none;
}
#s-4506a939-9ae6-4345-9160-228a945747a2, #wrap-s-4506a939-9ae6-4345-9160-228a945747a2, #wrap-content-s-4506a939-9ae6-4345-9160-228a945747a2 { display: none !important; }}







#s-4506a939-9ae6-4345-9160-228a945747a2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4506a939-9ae6-4345-9160-228a945747a2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-386e10a1-7335-4e00-a96e-31b0cab9db0b {
  text-align: center;
}
@media (min-width: 1200px){#s-386e10a1-7335-4e00-a96e-31b0cab9db0b {
  display: none;
}
#s-386e10a1-7335-4e00-a96e-31b0cab9db0b, #wrap-s-386e10a1-7335-4e00-a96e-31b0cab9db0b, #wrap-content-s-386e10a1-7335-4e00-a96e-31b0cab9db0b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-386e10a1-7335-4e00-a96e-31b0cab9db0b {
  display: none;
}
#s-386e10a1-7335-4e00-a96e-31b0cab9db0b, #wrap-s-386e10a1-7335-4e00-a96e-31b0cab9db0b, #wrap-content-s-386e10a1-7335-4e00-a96e-31b0cab9db0b { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-386e10a1-7335-4e00-a96e-31b0cab9db0b {
  display: none;
}
#s-386e10a1-7335-4e00-a96e-31b0cab9db0b, #wrap-s-386e10a1-7335-4e00-a96e-31b0cab9db0b, #wrap-content-s-386e10a1-7335-4e00-a96e-31b0cab9db0b { display: none !important; }}
#s-386e10a1-7335-4e00-a96e-31b0cab9db0b {
  overflow: hidden;
  
  
}







  #s-386e10a1-7335-4e00-a96e-31b0cab9db0b img.shogun-image {
    

    
    
    
  }


#s-386e10a1-7335-4e00-a96e-31b0cab9db0b .shogun-image-content {
  
    justify-content: center;
  
}

@media (min-width: 1200px){#s-117327da-5743-4d65-9294-33383231f10a {
  display: none;
}
#s-117327da-5743-4d65-9294-33383231f10a, #wrap-s-117327da-5743-4d65-9294-33383231f10a, #wrap-content-s-117327da-5743-4d65-9294-33383231f10a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-117327da-5743-4d65-9294-33383231f10a {
  display: none;
}
#s-117327da-5743-4d65-9294-33383231f10a, #wrap-s-117327da-5743-4d65-9294-33383231f10a, #wrap-content-s-117327da-5743-4d65-9294-33383231f10a { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-117327da-5743-4d65-9294-33383231f10a {
  display: none;
}
#s-117327da-5743-4d65-9294-33383231f10a, #wrap-s-117327da-5743-4d65-9294-33383231f10a, #wrap-content-s-117327da-5743-4d65-9294-33383231f10a { display: none !important; }}
#s-117327da-5743-4d65-9294-33383231f10a hr {
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-79d7f675-c675-48e9-851c-0f26fb52e970 {
  text-align: center;
}
@media (min-width: 1200px){#s-79d7f675-c675-48e9-851c-0f26fb52e970 {
  display: none;
}
#s-79d7f675-c675-48e9-851c-0f26fb52e970, #wrap-s-79d7f675-c675-48e9-851c-0f26fb52e970, #wrap-content-s-79d7f675-c675-48e9-851c-0f26fb52e970 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-79d7f675-c675-48e9-851c-0f26fb52e970 {
  display: none;
}
#s-79d7f675-c675-48e9-851c-0f26fb52e970, #wrap-s-79d7f675-c675-48e9-851c-0f26fb52e970, #wrap-content-s-79d7f675-c675-48e9-851c-0f26fb52e970 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-79d7f675-c675-48e9-851c-0f26fb52e970 {
  display: none;
}
#s-79d7f675-c675-48e9-851c-0f26fb52e970, #wrap-s-79d7f675-c675-48e9-851c-0f26fb52e970, #wrap-content-s-79d7f675-c675-48e9-851c-0f26fb52e970 { display: none !important; }}
#s-79d7f675-c675-48e9-851c-0f26fb52e970 {
  overflow: hidden;
  
  
}







  #s-79d7f675-c675-48e9-851c-0f26fb52e970 img.shogun-image {
    

    
    
    
  }


#s-79d7f675-c675-48e9-851c-0f26fb52e970 .shogun-image-content {
  
    justify-content: center;
  
}

@media (min-width: 1200px){#s-2d0fad7b-e7d6-43b8-8fa2-f8e7b20791b0 {
  display: none;
}
#s-2d0fad7b-e7d6-43b8-8fa2-f8e7b20791b0, #wrap-s-2d0fad7b-e7d6-43b8-8fa2-f8e7b20791b0, #wrap-content-s-2d0fad7b-e7d6-43b8-8fa2-f8e7b20791b0 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2d0fad7b-e7d6-43b8-8fa2-f8e7b20791b0 {
  display: none;
}
#s-2d0fad7b-e7d6-43b8-8fa2-f8e7b20791b0, #wrap-s-2d0fad7b-e7d6-43b8-8fa2-f8e7b20791b0, #wrap-content-s-2d0fad7b-e7d6-43b8-8fa2-f8e7b20791b0 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2d0fad7b-e7d6-43b8-8fa2-f8e7b20791b0 {
  display: none;
}
#s-2d0fad7b-e7d6-43b8-8fa2-f8e7b20791b0, #wrap-s-2d0fad7b-e7d6-43b8-8fa2-f8e7b20791b0, #wrap-content-s-2d0fad7b-e7d6-43b8-8fa2-f8e7b20791b0 { display: none !important; }}
#s-2d0fad7b-e7d6-43b8-8fa2-f8e7b20791b0 hr {
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-337fcf8d-9a3b-4399-8bb7-e7f05c806875 {
  text-align: center;
}
@media (min-width: 1200px){#s-337fcf8d-9a3b-4399-8bb7-e7f05c806875 {
  display: none;
}
#s-337fcf8d-9a3b-4399-8bb7-e7f05c806875, #wrap-s-337fcf8d-9a3b-4399-8bb7-e7f05c806875, #wrap-content-s-337fcf8d-9a3b-4399-8bb7-e7f05c806875 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-337fcf8d-9a3b-4399-8bb7-e7f05c806875 {
  display: none;
}
#s-337fcf8d-9a3b-4399-8bb7-e7f05c806875, #wrap-s-337fcf8d-9a3b-4399-8bb7-e7f05c806875, #wrap-content-s-337fcf8d-9a3b-4399-8bb7-e7f05c806875 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-337fcf8d-9a3b-4399-8bb7-e7f05c806875 {
  display: none;
}
#s-337fcf8d-9a3b-4399-8bb7-e7f05c806875, #wrap-s-337fcf8d-9a3b-4399-8bb7-e7f05c806875, #wrap-content-s-337fcf8d-9a3b-4399-8bb7-e7f05c806875 { display: none !important; }}
#s-337fcf8d-9a3b-4399-8bb7-e7f05c806875 {
  overflow: hidden;
  
  
}







  #s-337fcf8d-9a3b-4399-8bb7-e7f05c806875 img.shogun-image {
    

    
    
    
  }


#s-337fcf8d-9a3b-4399-8bb7-e7f05c806875 .shogun-image-content {
  
    justify-content: center;
  
}

#s-432e94e6-1b92-4f50-9694-b9172f4df399 {
  text-align: center;
}
@media (min-width: 1200px){#s-432e94e6-1b92-4f50-9694-b9172f4df399 {
  display: none;
}
#s-432e94e6-1b92-4f50-9694-b9172f4df399, #wrap-s-432e94e6-1b92-4f50-9694-b9172f4df399, #wrap-content-s-432e94e6-1b92-4f50-9694-b9172f4df399 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-432e94e6-1b92-4f50-9694-b9172f4df399 {
  display: none;
}
#s-432e94e6-1b92-4f50-9694-b9172f4df399, #wrap-s-432e94e6-1b92-4f50-9694-b9172f4df399, #wrap-content-s-432e94e6-1b92-4f50-9694-b9172f4df399 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-432e94e6-1b92-4f50-9694-b9172f4df399 {
  display: none;
}
#s-432e94e6-1b92-4f50-9694-b9172f4df399, #wrap-s-432e94e6-1b92-4f50-9694-b9172f4df399, #wrap-content-s-432e94e6-1b92-4f50-9694-b9172f4df399 { display: none !important; }}
#s-432e94e6-1b92-4f50-9694-b9172f4df399 {
  overflow: hidden;
  
  
}







  #s-432e94e6-1b92-4f50-9694-b9172f4df399 img.shogun-image {
    

    
    
    
  }


#s-432e94e6-1b92-4f50-9694-b9172f4df399 .shogun-image-content {
  
    justify-content: center;
  
}

#s-9e5d4b5a-4416-4b2e-ad53-9f0a7edf158b {
  text-align: center;
}
@media (min-width: 1200px){#s-9e5d4b5a-4416-4b2e-ad53-9f0a7edf158b {
  display: none;
}
#s-9e5d4b5a-4416-4b2e-ad53-9f0a7edf158b, #wrap-s-9e5d4b5a-4416-4b2e-ad53-9f0a7edf158b, #wrap-content-s-9e5d4b5a-4416-4b2e-ad53-9f0a7edf158b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9e5d4b5a-4416-4b2e-ad53-9f0a7edf158b {
  display: none;
}
#s-9e5d4b5a-4416-4b2e-ad53-9f0a7edf158b, #wrap-s-9e5d4b5a-4416-4b2e-ad53-9f0a7edf158b, #wrap-content-s-9e5d4b5a-4416-4b2e-ad53-9f0a7edf158b { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-9e5d4b5a-4416-4b2e-ad53-9f0a7edf158b {
  display: none;
}
#s-9e5d4b5a-4416-4b2e-ad53-9f0a7edf158b, #wrap-s-9e5d4b5a-4416-4b2e-ad53-9f0a7edf158b, #wrap-content-s-9e5d4b5a-4416-4b2e-ad53-9f0a7edf158b { display: none !important; }}
#s-9e5d4b5a-4416-4b2e-ad53-9f0a7edf158b {
  overflow: hidden;
  
  
}







  #s-9e5d4b5a-4416-4b2e-ad53-9f0a7edf158b img.shogun-image {
    

    
    
    
  }


#s-9e5d4b5a-4416-4b2e-ad53-9f0a7edf158b .shogun-image-content {
  
    justify-content: center;
  
}

#s-a1cb9fa8-c75c-473c-b00f-7b90b67463bb {
  text-align: center;
}
@media (min-width: 1200px){#s-a1cb9fa8-c75c-473c-b00f-7b90b67463bb {
  display: none;
}
#s-a1cb9fa8-c75c-473c-b00f-7b90b67463bb, #wrap-s-a1cb9fa8-c75c-473c-b00f-7b90b67463bb, #wrap-content-s-a1cb9fa8-c75c-473c-b00f-7b90b67463bb { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a1cb9fa8-c75c-473c-b00f-7b90b67463bb {
  display: none;
}
#s-a1cb9fa8-c75c-473c-b00f-7b90b67463bb, #wrap-s-a1cb9fa8-c75c-473c-b00f-7b90b67463bb, #wrap-content-s-a1cb9fa8-c75c-473c-b00f-7b90b67463bb { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a1cb9fa8-c75c-473c-b00f-7b90b67463bb {
  display: none;
}
#s-a1cb9fa8-c75c-473c-b00f-7b90b67463bb, #wrap-s-a1cb9fa8-c75c-473c-b00f-7b90b67463bb, #wrap-content-s-a1cb9fa8-c75c-473c-b00f-7b90b67463bb { display: none !important; }}
#s-a1cb9fa8-c75c-473c-b00f-7b90b67463bb {
  overflow: hidden;
  
  
}







  #s-a1cb9fa8-c75c-473c-b00f-7b90b67463bb img.shogun-image {
    

    
    
    
  }


#s-a1cb9fa8-c75c-473c-b00f-7b90b67463bb .shogun-image-content {
  
    justify-content: center;
  
}

#s-d2544b59-585d-4399-bdd7-2eecef20f87f {
  text-align: center;
}
@media (min-width: 1200px){#s-d2544b59-585d-4399-bdd7-2eecef20f87f {
  display: none;
}
#s-d2544b59-585d-4399-bdd7-2eecef20f87f, #wrap-s-d2544b59-585d-4399-bdd7-2eecef20f87f, #wrap-content-s-d2544b59-585d-4399-bdd7-2eecef20f87f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d2544b59-585d-4399-bdd7-2eecef20f87f {
  display: none;
}
#s-d2544b59-585d-4399-bdd7-2eecef20f87f, #wrap-s-d2544b59-585d-4399-bdd7-2eecef20f87f, #wrap-content-s-d2544b59-585d-4399-bdd7-2eecef20f87f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d2544b59-585d-4399-bdd7-2eecef20f87f {
  display: none;
}
#s-d2544b59-585d-4399-bdd7-2eecef20f87f, #wrap-s-d2544b59-585d-4399-bdd7-2eecef20f87f, #wrap-content-s-d2544b59-585d-4399-bdd7-2eecef20f87f { display: none !important; }}
#s-d2544b59-585d-4399-bdd7-2eecef20f87f {
  overflow: hidden;
  
  
}







  #s-d2544b59-585d-4399-bdd7-2eecef20f87f img.shogun-image {
    

    
    
    
  }


#s-d2544b59-585d-4399-bdd7-2eecef20f87f .shogun-image-content {
  
    justify-content: center;
  
}

@media (min-width: 1200px){#s-bb07d2d3-127f-457f-ad44-8c75c5b9fe1f {
  display: none;
}
#s-bb07d2d3-127f-457f-ad44-8c75c5b9fe1f, #wrap-s-bb07d2d3-127f-457f-ad44-8c75c5b9fe1f, #wrap-content-s-bb07d2d3-127f-457f-ad44-8c75c5b9fe1f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-bb07d2d3-127f-457f-ad44-8c75c5b9fe1f {
  display: none;
}
#s-bb07d2d3-127f-457f-ad44-8c75c5b9fe1f, #wrap-s-bb07d2d3-127f-457f-ad44-8c75c5b9fe1f, #wrap-content-s-bb07d2d3-127f-457f-ad44-8c75c5b9fe1f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-bb07d2d3-127f-457f-ad44-8c75c5b9fe1f {
  display: none;
}
#s-bb07d2d3-127f-457f-ad44-8c75c5b9fe1f, #wrap-s-bb07d2d3-127f-457f-ad44-8c75c5b9fe1f, #wrap-content-s-bb07d2d3-127f-457f-ad44-8c75c5b9fe1f { display: none !important; }}
#s-bb07d2d3-127f-457f-ad44-8c75c5b9fe1f hr {
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-f61035d2-eedf-4b40-9323-0b5e144c18cc {
  text-align: center;
}
@media (min-width: 1200px){#s-f61035d2-eedf-4b40-9323-0b5e144c18cc {
  display: none;
}
#s-f61035d2-eedf-4b40-9323-0b5e144c18cc, #wrap-s-f61035d2-eedf-4b40-9323-0b5e144c18cc, #wrap-content-s-f61035d2-eedf-4b40-9323-0b5e144c18cc { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f61035d2-eedf-4b40-9323-0b5e144c18cc {
  display: none;
}
#s-f61035d2-eedf-4b40-9323-0b5e144c18cc, #wrap-s-f61035d2-eedf-4b40-9323-0b5e144c18cc, #wrap-content-s-f61035d2-eedf-4b40-9323-0b5e144c18cc { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f61035d2-eedf-4b40-9323-0b5e144c18cc {
  display: none;
}
#s-f61035d2-eedf-4b40-9323-0b5e144c18cc, #wrap-s-f61035d2-eedf-4b40-9323-0b5e144c18cc, #wrap-content-s-f61035d2-eedf-4b40-9323-0b5e144c18cc { display: none !important; }}
#s-f61035d2-eedf-4b40-9323-0b5e144c18cc {
  overflow: hidden;
  
  
}







  #s-f61035d2-eedf-4b40-9323-0b5e144c18cc img.shogun-image {
    

    
    
    
  }


#s-f61035d2-eedf-4b40-9323-0b5e144c18cc .shogun-image-content {
  
    justify-content: center;
  
}

#s-1ccc332a-6984-47a3-bc15-d13e6a9600b5 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-1ccc332a-6984-47a3-bc15-d13e6a9600b5 {
  display: none;
}
#s-1ccc332a-6984-47a3-bc15-d13e6a9600b5, #wrap-s-1ccc332a-6984-47a3-bc15-d13e6a9600b5, #wrap-content-s-1ccc332a-6984-47a3-bc15-d13e6a9600b5 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1ccc332a-6984-47a3-bc15-d13e6a9600b5 {
  display: none;
}
#s-1ccc332a-6984-47a3-bc15-d13e6a9600b5, #wrap-s-1ccc332a-6984-47a3-bc15-d13e6a9600b5, #wrap-content-s-1ccc332a-6984-47a3-bc15-d13e6a9600b5 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1ccc332a-6984-47a3-bc15-d13e6a9600b5 {
  display: none;
}
#s-1ccc332a-6984-47a3-bc15-d13e6a9600b5, #wrap-s-1ccc332a-6984-47a3-bc15-d13e6a9600b5, #wrap-content-s-1ccc332a-6984-47a3-bc15-d13e6a9600b5 { display: none !important; }}







#s-1ccc332a-6984-47a3-bc15-d13e6a9600b5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1ccc332a-6984-47a3-bc15-d13e6a9600b5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 1200px){#s-f5dc6368-1b3e-4431-a565-1eb109704bbb {
  display: none;
}
#s-f5dc6368-1b3e-4431-a565-1eb109704bbb, #wrap-s-f5dc6368-1b3e-4431-a565-1eb109704bbb, #wrap-content-s-f5dc6368-1b3e-4431-a565-1eb109704bbb { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f5dc6368-1b3e-4431-a565-1eb109704bbb {
  display: none;
}
#s-f5dc6368-1b3e-4431-a565-1eb109704bbb, #wrap-s-f5dc6368-1b3e-4431-a565-1eb109704bbb, #wrap-content-s-f5dc6368-1b3e-4431-a565-1eb109704bbb { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f5dc6368-1b3e-4431-a565-1eb109704bbb {
  display: none;
}
#s-f5dc6368-1b3e-4431-a565-1eb109704bbb, #wrap-s-f5dc6368-1b3e-4431-a565-1eb109704bbb, #wrap-content-s-f5dc6368-1b3e-4431-a565-1eb109704bbb { display: none !important; }}
@media (min-width: 1200px){#s-2b4badbe-c04b-4ea7-ae1c-6fdfe4b9a50d {
  display: none;
}
#s-2b4badbe-c04b-4ea7-ae1c-6fdfe4b9a50d, #wrap-s-2b4badbe-c04b-4ea7-ae1c-6fdfe4b9a50d, #wrap-content-s-2b4badbe-c04b-4ea7-ae1c-6fdfe4b9a50d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2b4badbe-c04b-4ea7-ae1c-6fdfe4b9a50d {
  display: none;
}
#s-2b4badbe-c04b-4ea7-ae1c-6fdfe4b9a50d, #wrap-s-2b4badbe-c04b-4ea7-ae1c-6fdfe4b9a50d, #wrap-content-s-2b4badbe-c04b-4ea7-ae1c-6fdfe4b9a50d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2b4badbe-c04b-4ea7-ae1c-6fdfe4b9a50d {
  display: none;
}
#s-2b4badbe-c04b-4ea7-ae1c-6fdfe4b9a50d, #wrap-s-2b4badbe-c04b-4ea7-ae1c-6fdfe4b9a50d, #wrap-content-s-2b4badbe-c04b-4ea7-ae1c-6fdfe4b9a50d { display: none !important; }}
#s-2b4badbe-c04b-4ea7-ae1c-6fdfe4b9a50d hr {
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-69ff99fe-6881-485c-ae93-74155d84b88f {
  text-align: center;
}
@media (min-width: 1200px){#s-69ff99fe-6881-485c-ae93-74155d84b88f {
  display: none;
}
#s-69ff99fe-6881-485c-ae93-74155d84b88f, #wrap-s-69ff99fe-6881-485c-ae93-74155d84b88f, #wrap-content-s-69ff99fe-6881-485c-ae93-74155d84b88f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-69ff99fe-6881-485c-ae93-74155d84b88f {
  display: none;
}
#s-69ff99fe-6881-485c-ae93-74155d84b88f, #wrap-s-69ff99fe-6881-485c-ae93-74155d84b88f, #wrap-content-s-69ff99fe-6881-485c-ae93-74155d84b88f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-69ff99fe-6881-485c-ae93-74155d84b88f {
  display: none;
}
#s-69ff99fe-6881-485c-ae93-74155d84b88f, #wrap-s-69ff99fe-6881-485c-ae93-74155d84b88f, #wrap-content-s-69ff99fe-6881-485c-ae93-74155d84b88f { display: none !important; }}
#s-69ff99fe-6881-485c-ae93-74155d84b88f {
  overflow: hidden;
  
  
}







  #s-69ff99fe-6881-485c-ae93-74155d84b88f img.shogun-image {
    

    
    
    
  }


#s-69ff99fe-6881-485c-ae93-74155d84b88f .shogun-image-content {
  
    justify-content: center;
  
}

@media (min-width: 1200px){#s-cf311ba0-f7c4-49aa-bc86-8950835a9867 {
  display: none;
}
#s-cf311ba0-f7c4-49aa-bc86-8950835a9867, #wrap-s-cf311ba0-f7c4-49aa-bc86-8950835a9867, #wrap-content-s-cf311ba0-f7c4-49aa-bc86-8950835a9867 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-cf311ba0-f7c4-49aa-bc86-8950835a9867 {
  display: none;
}
#s-cf311ba0-f7c4-49aa-bc86-8950835a9867, #wrap-s-cf311ba0-f7c4-49aa-bc86-8950835a9867, #wrap-content-s-cf311ba0-f7c4-49aa-bc86-8950835a9867 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-cf311ba0-f7c4-49aa-bc86-8950835a9867 {
  display: none;
}
#s-cf311ba0-f7c4-49aa-bc86-8950835a9867, #wrap-s-cf311ba0-f7c4-49aa-bc86-8950835a9867, #wrap-content-s-cf311ba0-f7c4-49aa-bc86-8950835a9867 { display: none !important; }}
#s-cf311ba0-f7c4-49aa-bc86-8950835a9867 hr {
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-e79d8744-782e-40a9-9bc7-f784248ba04c {
  text-align: center;
}
@media (min-width: 1200px){#s-e79d8744-782e-40a9-9bc7-f784248ba04c {
  display: none;
}
#s-e79d8744-782e-40a9-9bc7-f784248ba04c, #wrap-s-e79d8744-782e-40a9-9bc7-f784248ba04c, #wrap-content-s-e79d8744-782e-40a9-9bc7-f784248ba04c { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e79d8744-782e-40a9-9bc7-f784248ba04c {
  display: none;
}
#s-e79d8744-782e-40a9-9bc7-f784248ba04c, #wrap-s-e79d8744-782e-40a9-9bc7-f784248ba04c, #wrap-content-s-e79d8744-782e-40a9-9bc7-f784248ba04c { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e79d8744-782e-40a9-9bc7-f784248ba04c {
  display: none;
}
#s-e79d8744-782e-40a9-9bc7-f784248ba04c, #wrap-s-e79d8744-782e-40a9-9bc7-f784248ba04c, #wrap-content-s-e79d8744-782e-40a9-9bc7-f784248ba04c { display: none !important; }}
#s-e79d8744-782e-40a9-9bc7-f784248ba04c {
  overflow: hidden;
  
  
}







  #s-e79d8744-782e-40a9-9bc7-f784248ba04c img.shogun-image {
    

    
    
    
  }


#s-e79d8744-782e-40a9-9bc7-f784248ba04c .shogun-image-content {
  
    justify-content: center;
  
}

@media (min-width: 1200px){#s-198b4455-aa9c-4a9a-ba90-bca5b6923b07 {
  display: none;
}
#s-198b4455-aa9c-4a9a-ba90-bca5b6923b07, #wrap-s-198b4455-aa9c-4a9a-ba90-bca5b6923b07, #wrap-content-s-198b4455-aa9c-4a9a-ba90-bca5b6923b07 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-198b4455-aa9c-4a9a-ba90-bca5b6923b07 {
  display: none;
}
#s-198b4455-aa9c-4a9a-ba90-bca5b6923b07, #wrap-s-198b4455-aa9c-4a9a-ba90-bca5b6923b07, #wrap-content-s-198b4455-aa9c-4a9a-ba90-bca5b6923b07 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-198b4455-aa9c-4a9a-ba90-bca5b6923b07 {
  display: none;
}
#s-198b4455-aa9c-4a9a-ba90-bca5b6923b07, #wrap-s-198b4455-aa9c-4a9a-ba90-bca5b6923b07, #wrap-content-s-198b4455-aa9c-4a9a-ba90-bca5b6923b07 { display: none !important; }}
#s-198b4455-aa9c-4a9a-ba90-bca5b6923b07 hr {
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-a738e6e0-e35e-43b2-8fa8-7b86a93e65f1 {
  text-align: center;
}
@media (min-width: 1200px){#s-a738e6e0-e35e-43b2-8fa8-7b86a93e65f1 {
  display: none;
}
#s-a738e6e0-e35e-43b2-8fa8-7b86a93e65f1, #wrap-s-a738e6e0-e35e-43b2-8fa8-7b86a93e65f1, #wrap-content-s-a738e6e0-e35e-43b2-8fa8-7b86a93e65f1 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a738e6e0-e35e-43b2-8fa8-7b86a93e65f1 {
  display: none;
}
#s-a738e6e0-e35e-43b2-8fa8-7b86a93e65f1, #wrap-s-a738e6e0-e35e-43b2-8fa8-7b86a93e65f1, #wrap-content-s-a738e6e0-e35e-43b2-8fa8-7b86a93e65f1 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a738e6e0-e35e-43b2-8fa8-7b86a93e65f1 {
  display: none;
}
#s-a738e6e0-e35e-43b2-8fa8-7b86a93e65f1, #wrap-s-a738e6e0-e35e-43b2-8fa8-7b86a93e65f1, #wrap-content-s-a738e6e0-e35e-43b2-8fa8-7b86a93e65f1 { display: none !important; }}
#s-a738e6e0-e35e-43b2-8fa8-7b86a93e65f1 {
  overflow: hidden;
  
  
}







  #s-a738e6e0-e35e-43b2-8fa8-7b86a93e65f1 img.shogun-image {
    

    
    
    
  }


#s-a738e6e0-e35e-43b2-8fa8-7b86a93e65f1 .shogun-image-content {
  
    justify-content: center;
  
}

@media (min-width: 1200px){#s-3c28ef99-b67e-4f6e-b6c6-0ab21600c023 {
  display: none;
}
#s-3c28ef99-b67e-4f6e-b6c6-0ab21600c023, #wrap-s-3c28ef99-b67e-4f6e-b6c6-0ab21600c023, #wrap-content-s-3c28ef99-b67e-4f6e-b6c6-0ab21600c023 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3c28ef99-b67e-4f6e-b6c6-0ab21600c023 {
  display: none;
}
#s-3c28ef99-b67e-4f6e-b6c6-0ab21600c023, #wrap-s-3c28ef99-b67e-4f6e-b6c6-0ab21600c023, #wrap-content-s-3c28ef99-b67e-4f6e-b6c6-0ab21600c023 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3c28ef99-b67e-4f6e-b6c6-0ab21600c023 {
  display: none;
}
#s-3c28ef99-b67e-4f6e-b6c6-0ab21600c023, #wrap-s-3c28ef99-b67e-4f6e-b6c6-0ab21600c023, #wrap-content-s-3c28ef99-b67e-4f6e-b6c6-0ab21600c023 { display: none !important; }}
#s-3c28ef99-b67e-4f6e-b6c6-0ab21600c023 hr {
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-6141f115-7e76-492c-9a24-2392cfb80bea {
  text-align: center;
}
@media (min-width: 1200px){#s-6141f115-7e76-492c-9a24-2392cfb80bea {
  display: none;
}
#s-6141f115-7e76-492c-9a24-2392cfb80bea, #wrap-s-6141f115-7e76-492c-9a24-2392cfb80bea, #wrap-content-s-6141f115-7e76-492c-9a24-2392cfb80bea { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6141f115-7e76-492c-9a24-2392cfb80bea {
  display: none;
}
#s-6141f115-7e76-492c-9a24-2392cfb80bea, #wrap-s-6141f115-7e76-492c-9a24-2392cfb80bea, #wrap-content-s-6141f115-7e76-492c-9a24-2392cfb80bea { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-6141f115-7e76-492c-9a24-2392cfb80bea {
  display: none;
}
#s-6141f115-7e76-492c-9a24-2392cfb80bea, #wrap-s-6141f115-7e76-492c-9a24-2392cfb80bea, #wrap-content-s-6141f115-7e76-492c-9a24-2392cfb80bea { display: none !important; }}
#s-6141f115-7e76-492c-9a24-2392cfb80bea {
  overflow: hidden;
  
  
}







  #s-6141f115-7e76-492c-9a24-2392cfb80bea img.shogun-image {
    

    
    
    
  }


#s-6141f115-7e76-492c-9a24-2392cfb80bea .shogun-image-content {
  
    justify-content: center;
  
}

#s-c50a351e-5ebb-44bf-8618-1f65bdfac46f {
  margin-top: -100px;
text-align: center;
}
@media (min-width: 1200px){#s-c50a351e-5ebb-44bf-8618-1f65bdfac46f {
  display: none;
}
#s-c50a351e-5ebb-44bf-8618-1f65bdfac46f, #wrap-s-c50a351e-5ebb-44bf-8618-1f65bdfac46f, #wrap-content-s-c50a351e-5ebb-44bf-8618-1f65bdfac46f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c50a351e-5ebb-44bf-8618-1f65bdfac46f {
  display: none;
}
#s-c50a351e-5ebb-44bf-8618-1f65bdfac46f, #wrap-s-c50a351e-5ebb-44bf-8618-1f65bdfac46f, #wrap-content-s-c50a351e-5ebb-44bf-8618-1f65bdfac46f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c50a351e-5ebb-44bf-8618-1f65bdfac46f {
  display: none;
}
#s-c50a351e-5ebb-44bf-8618-1f65bdfac46f, #wrap-s-c50a351e-5ebb-44bf-8618-1f65bdfac46f, #wrap-content-s-c50a351e-5ebb-44bf-8618-1f65bdfac46f { display: none !important; }}
#s-c50a351e-5ebb-44bf-8618-1f65bdfac46f {
  overflow: hidden;
  
  
}







  #s-c50a351e-5ebb-44bf-8618-1f65bdfac46f img.shogun-image {
    

    
    
    
  }


#s-c50a351e-5ebb-44bf-8618-1f65bdfac46f .shogun-image-content {
  
    justify-content: center;
  
}

#s-3814d7a2-6810-4ac1-a684-556e4bae6c8a {
  min-height: 50px;
}
@media (min-width: 1200px){#s-3814d7a2-6810-4ac1-a684-556e4bae6c8a {
  display: none;
}
#s-3814d7a2-6810-4ac1-a684-556e4bae6c8a, #wrap-s-3814d7a2-6810-4ac1-a684-556e4bae6c8a, #wrap-content-s-3814d7a2-6810-4ac1-a684-556e4bae6c8a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3814d7a2-6810-4ac1-a684-556e4bae6c8a {
  display: none;
}
#s-3814d7a2-6810-4ac1-a684-556e4bae6c8a, #wrap-s-3814d7a2-6810-4ac1-a684-556e4bae6c8a, #wrap-content-s-3814d7a2-6810-4ac1-a684-556e4bae6c8a { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3814d7a2-6810-4ac1-a684-556e4bae6c8a {
  display: none;
}
#s-3814d7a2-6810-4ac1-a684-556e4bae6c8a, #wrap-s-3814d7a2-6810-4ac1-a684-556e4bae6c8a, #wrap-content-s-3814d7a2-6810-4ac1-a684-556e4bae6c8a { display: none !important; }}







#s-3814d7a2-6810-4ac1-a684-556e4bae6c8a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3814d7a2-6810-4ac1-a684-556e4bae6c8a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

#s-39aa14d6-1c66-4386-a000-fda81e6d6aa8 {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-39aa14d6-1c66-4386-a000-fda81e6d6aa8 {
  display: none;
}
#s-39aa14d6-1c66-4386-a000-fda81e6d6aa8, #wrap-s-39aa14d6-1c66-4386-a000-fda81e6d6aa8, #wrap-content-s-39aa14d6-1c66-4386-a000-fda81e6d6aa8 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-39aa14d6-1c66-4386-a000-fda81e6d6aa8 {
  display: none;
}
#s-39aa14d6-1c66-4386-a000-fda81e6d6aa8, #wrap-s-39aa14d6-1c66-4386-a000-fda81e6d6aa8, #wrap-content-s-39aa14d6-1c66-4386-a000-fda81e6d6aa8 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-39aa14d6-1c66-4386-a000-fda81e6d6aa8 {
  display: none;
}
#s-39aa14d6-1c66-4386-a000-fda81e6d6aa8, #wrap-s-39aa14d6-1c66-4386-a000-fda81e6d6aa8, #wrap-content-s-39aa14d6-1c66-4386-a000-fda81e6d6aa8 { display: none !important; }}
#s-39aa14d6-1c66-4386-a000-fda81e6d6aa8 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-39aa14d6-1c66-4386-a000-fda81e6d6aa8 .shg-sld-nav-button.shg-sld-left,
#s-39aa14d6-1c66-4386-a000-fda81e6d6aa8 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-1c07a77d-d058-4826-aa20-0c2bf4f3311a {
  text-align: center;
}
@media (min-width: 1200px){#s-1c07a77d-d058-4826-aa20-0c2bf4f3311a {
  display: none;
}
#s-1c07a77d-d058-4826-aa20-0c2bf4f3311a, #wrap-s-1c07a77d-d058-4826-aa20-0c2bf4f3311a, #wrap-content-s-1c07a77d-d058-4826-aa20-0c2bf4f3311a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1c07a77d-d058-4826-aa20-0c2bf4f3311a {
  display: none;
}
#s-1c07a77d-d058-4826-aa20-0c2bf4f3311a, #wrap-s-1c07a77d-d058-4826-aa20-0c2bf4f3311a, #wrap-content-s-1c07a77d-d058-4826-aa20-0c2bf4f3311a { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1c07a77d-d058-4826-aa20-0c2bf4f3311a {
  display: none;
}
#s-1c07a77d-d058-4826-aa20-0c2bf4f3311a, #wrap-s-1c07a77d-d058-4826-aa20-0c2bf4f3311a, #wrap-content-s-1c07a77d-d058-4826-aa20-0c2bf4f3311a { display: none !important; }}
#s-1c07a77d-d058-4826-aa20-0c2bf4f3311a {
  overflow: hidden;
  
  
}







  #s-1c07a77d-d058-4826-aa20-0c2bf4f3311a img.shogun-image {
    

    
    
    
  }


#s-1c07a77d-d058-4826-aa20-0c2bf4f3311a .shogun-image-content {
  
    justify-content: center;
  
}

#s-a44ee342-a00d-4e8c-b142-9768d1db566b {
  text-align: center;
}
@media (min-width: 1200px){#s-a44ee342-a00d-4e8c-b142-9768d1db566b {
  display: none;
}
#s-a44ee342-a00d-4e8c-b142-9768d1db566b, #wrap-s-a44ee342-a00d-4e8c-b142-9768d1db566b, #wrap-content-s-a44ee342-a00d-4e8c-b142-9768d1db566b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a44ee342-a00d-4e8c-b142-9768d1db566b {
  display: none;
}
#s-a44ee342-a00d-4e8c-b142-9768d1db566b, #wrap-s-a44ee342-a00d-4e8c-b142-9768d1db566b, #wrap-content-s-a44ee342-a00d-4e8c-b142-9768d1db566b { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a44ee342-a00d-4e8c-b142-9768d1db566b {
  display: none;
}
#s-a44ee342-a00d-4e8c-b142-9768d1db566b, #wrap-s-a44ee342-a00d-4e8c-b142-9768d1db566b, #wrap-content-s-a44ee342-a00d-4e8c-b142-9768d1db566b { display: none !important; }}
#s-a44ee342-a00d-4e8c-b142-9768d1db566b {
  overflow: hidden;
  
  
}







  #s-a44ee342-a00d-4e8c-b142-9768d1db566b img.shogun-image {
    

    
    
    
  }


#s-a44ee342-a00d-4e8c-b142-9768d1db566b .shogun-image-content {
  
    justify-content: center;
  
}

#s-2ac834e0-e297-4eb7-89de-ae5ddf92cd8f {
  min-height: 50px;
}
@media (min-width: 1200px){#s-2ac834e0-e297-4eb7-89de-ae5ddf92cd8f {
  display: none;
}
#s-2ac834e0-e297-4eb7-89de-ae5ddf92cd8f, #wrap-s-2ac834e0-e297-4eb7-89de-ae5ddf92cd8f, #wrap-content-s-2ac834e0-e297-4eb7-89de-ae5ddf92cd8f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2ac834e0-e297-4eb7-89de-ae5ddf92cd8f {
  display: none;
}
#s-2ac834e0-e297-4eb7-89de-ae5ddf92cd8f, #wrap-s-2ac834e0-e297-4eb7-89de-ae5ddf92cd8f, #wrap-content-s-2ac834e0-e297-4eb7-89de-ae5ddf92cd8f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2ac834e0-e297-4eb7-89de-ae5ddf92cd8f {
  display: none;
}
#s-2ac834e0-e297-4eb7-89de-ae5ddf92cd8f, #wrap-s-2ac834e0-e297-4eb7-89de-ae5ddf92cd8f, #wrap-content-s-2ac834e0-e297-4eb7-89de-ae5ddf92cd8f { display: none !important; }}







#s-2ac834e0-e297-4eb7-89de-ae5ddf92cd8f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2ac834e0-e297-4eb7-89de-ae5ddf92cd8f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c0e4c14c-59f5-4605-86f2-bd0ced9c105c {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-c0e4c14c-59f5-4605-86f2-bd0ced9c105c .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-c0e4c14c-59f5-4605-86f2-bd0ced9c105c .shg-sld-nav-button.shg-sld-left,
#s-c0e4c14c-59f5-4605-86f2-bd0ced9c105c .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-1f9f9809-5886-4a3d-97ee-13d60accf21a {
  text-align: center;
}
@media (min-width: 1200px){#s-1f9f9809-5886-4a3d-97ee-13d60accf21a {
  display: none;
}
#s-1f9f9809-5886-4a3d-97ee-13d60accf21a, #wrap-s-1f9f9809-5886-4a3d-97ee-13d60accf21a, #wrap-content-s-1f9f9809-5886-4a3d-97ee-13d60accf21a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1f9f9809-5886-4a3d-97ee-13d60accf21a {
  display: none;
}
#s-1f9f9809-5886-4a3d-97ee-13d60accf21a, #wrap-s-1f9f9809-5886-4a3d-97ee-13d60accf21a, #wrap-content-s-1f9f9809-5886-4a3d-97ee-13d60accf21a { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1f9f9809-5886-4a3d-97ee-13d60accf21a {
  display: none;
}
#s-1f9f9809-5886-4a3d-97ee-13d60accf21a, #wrap-s-1f9f9809-5886-4a3d-97ee-13d60accf21a, #wrap-content-s-1f9f9809-5886-4a3d-97ee-13d60accf21a { display: none !important; }}
#s-1f9f9809-5886-4a3d-97ee-13d60accf21a {
  overflow: hidden;
  
  
}







  #s-1f9f9809-5886-4a3d-97ee-13d60accf21a img.shogun-image {
    

    
    
    
  }


#s-1f9f9809-5886-4a3d-97ee-13d60accf21a .shogun-image-content {
  
    justify-content: center;
  
}

#s-1c4a1195-a718-4ed7-ac2f-1029f879e233 {
  text-align: center;
}
@media (min-width: 1200px){#s-1c4a1195-a718-4ed7-ac2f-1029f879e233 {
  display: none;
}
#s-1c4a1195-a718-4ed7-ac2f-1029f879e233, #wrap-s-1c4a1195-a718-4ed7-ac2f-1029f879e233, #wrap-content-s-1c4a1195-a718-4ed7-ac2f-1029f879e233 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1c4a1195-a718-4ed7-ac2f-1029f879e233 {
  display: none;
}
#s-1c4a1195-a718-4ed7-ac2f-1029f879e233, #wrap-s-1c4a1195-a718-4ed7-ac2f-1029f879e233, #wrap-content-s-1c4a1195-a718-4ed7-ac2f-1029f879e233 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1c4a1195-a718-4ed7-ac2f-1029f879e233 {
  display: none;
}
#s-1c4a1195-a718-4ed7-ac2f-1029f879e233, #wrap-s-1c4a1195-a718-4ed7-ac2f-1029f879e233, #wrap-content-s-1c4a1195-a718-4ed7-ac2f-1029f879e233 { display: none !important; }}
#s-1c4a1195-a718-4ed7-ac2f-1029f879e233 {
  overflow: hidden;
  
  
}







  #s-1c4a1195-a718-4ed7-ac2f-1029f879e233 img.shogun-image {
    

    
    
    
  }


#s-1c4a1195-a718-4ed7-ac2f-1029f879e233 .shogun-image-content {
  
    justify-content: center;
  
}

#s-95c35c17-cfc2-41f8-a10d-fd54530fe327 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-95c35c17-cfc2-41f8-a10d-fd54530fe327 {
  display: none;
}
#s-95c35c17-cfc2-41f8-a10d-fd54530fe327, #wrap-s-95c35c17-cfc2-41f8-a10d-fd54530fe327, #wrap-content-s-95c35c17-cfc2-41f8-a10d-fd54530fe327 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-95c35c17-cfc2-41f8-a10d-fd54530fe327 {
  display: none;
}
#s-95c35c17-cfc2-41f8-a10d-fd54530fe327, #wrap-s-95c35c17-cfc2-41f8-a10d-fd54530fe327, #wrap-content-s-95c35c17-cfc2-41f8-a10d-fd54530fe327 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-95c35c17-cfc2-41f8-a10d-fd54530fe327 {
  display: none;
}
#s-95c35c17-cfc2-41f8-a10d-fd54530fe327, #wrap-s-95c35c17-cfc2-41f8-a10d-fd54530fe327, #wrap-content-s-95c35c17-cfc2-41f8-a10d-fd54530fe327 { display: none !important; }}







#s-95c35c17-cfc2-41f8-a10d-fd54530fe327 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-95c35c17-cfc2-41f8-a10d-fd54530fe327.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1897e13f-6096-42d4-ada9-1ef802d7d638 {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-1897e13f-6096-42d4-ada9-1ef802d7d638 {
  display: none;
}
#s-1897e13f-6096-42d4-ada9-1ef802d7d638, #wrap-s-1897e13f-6096-42d4-ada9-1ef802d7d638, #wrap-content-s-1897e13f-6096-42d4-ada9-1ef802d7d638 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1897e13f-6096-42d4-ada9-1ef802d7d638 {
  display: none;
}
#s-1897e13f-6096-42d4-ada9-1ef802d7d638, #wrap-s-1897e13f-6096-42d4-ada9-1ef802d7d638, #wrap-content-s-1897e13f-6096-42d4-ada9-1ef802d7d638 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1897e13f-6096-42d4-ada9-1ef802d7d638 {
  display: none;
}
#s-1897e13f-6096-42d4-ada9-1ef802d7d638, #wrap-s-1897e13f-6096-42d4-ada9-1ef802d7d638, #wrap-content-s-1897e13f-6096-42d4-ada9-1ef802d7d638 { display: none !important; }}
#s-1897e13f-6096-42d4-ada9-1ef802d7d638 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-1897e13f-6096-42d4-ada9-1ef802d7d638 .shg-sld-nav-button.shg-sld-left,
#s-1897e13f-6096-42d4-ada9-1ef802d7d638 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-cb066599-b3e4-434b-a5c5-8692861e7630 {
  text-align: center;
}
@media (min-width: 1200px){#s-cb066599-b3e4-434b-a5c5-8692861e7630 {
  display: none;
}
#s-cb066599-b3e4-434b-a5c5-8692861e7630, #wrap-s-cb066599-b3e4-434b-a5c5-8692861e7630, #wrap-content-s-cb066599-b3e4-434b-a5c5-8692861e7630 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-cb066599-b3e4-434b-a5c5-8692861e7630 {
  display: none;
}
#s-cb066599-b3e4-434b-a5c5-8692861e7630, #wrap-s-cb066599-b3e4-434b-a5c5-8692861e7630, #wrap-content-s-cb066599-b3e4-434b-a5c5-8692861e7630 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-cb066599-b3e4-434b-a5c5-8692861e7630 {
  display: none;
}
#s-cb066599-b3e4-434b-a5c5-8692861e7630, #wrap-s-cb066599-b3e4-434b-a5c5-8692861e7630, #wrap-content-s-cb066599-b3e4-434b-a5c5-8692861e7630 { display: none !important; }}
#s-cb066599-b3e4-434b-a5c5-8692861e7630 {
  overflow: hidden;
  
  
}







  #s-cb066599-b3e4-434b-a5c5-8692861e7630 img.shogun-image {
    

    
    
    
  }


#s-cb066599-b3e4-434b-a5c5-8692861e7630 .shogun-image-content {
  
    justify-content: center;
  
}

#s-44cfbb76-3eb5-4936-a874-f0a06bdadcbe {
  text-align: center;
}
@media (min-width: 1200px){#s-44cfbb76-3eb5-4936-a874-f0a06bdadcbe {
  display: none;
}
#s-44cfbb76-3eb5-4936-a874-f0a06bdadcbe, #wrap-s-44cfbb76-3eb5-4936-a874-f0a06bdadcbe, #wrap-content-s-44cfbb76-3eb5-4936-a874-f0a06bdadcbe { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-44cfbb76-3eb5-4936-a874-f0a06bdadcbe {
  display: none;
}
#s-44cfbb76-3eb5-4936-a874-f0a06bdadcbe, #wrap-s-44cfbb76-3eb5-4936-a874-f0a06bdadcbe, #wrap-content-s-44cfbb76-3eb5-4936-a874-f0a06bdadcbe { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-44cfbb76-3eb5-4936-a874-f0a06bdadcbe {
  display: none;
}
#s-44cfbb76-3eb5-4936-a874-f0a06bdadcbe, #wrap-s-44cfbb76-3eb5-4936-a874-f0a06bdadcbe, #wrap-content-s-44cfbb76-3eb5-4936-a874-f0a06bdadcbe { display: none !important; }}
#s-44cfbb76-3eb5-4936-a874-f0a06bdadcbe {
  overflow: hidden;
  
  
}







  #s-44cfbb76-3eb5-4936-a874-f0a06bdadcbe img.shogun-image {
    

    
    
    
  }


#s-44cfbb76-3eb5-4936-a874-f0a06bdadcbe .shogun-image-content {
  
    justify-content: center;
  
}

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

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

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

.shogun-root iframe {
  display: initial;
}

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