#s-73eb01cd-84bf-45d8-8df3-6e6b40d8c370 {
  text-align: left;
}

.shg-box {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  flex-direction: column;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  /**
   * While `flex: 1` is enough here, we need to supply the rest
   * of the parameters (`1 auto`) to keep compatibility with IE11.
   * Otherwise, IE11 flex would break.
   */
  flex: 1 1 auto;
}

.shg-box > .shg-box-content {
  z-index: 4;
  position: relative;
  /**
   * This is part of an IE11 fallback to avoid flex introducing
   * huge amount of weird space on the bottom on the section element.
   */
  min-height: 1px;
}

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

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

.shg-box-vertical-align-center, .shg-box-vertical-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-box-vertical-align-bottom {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.shg-box-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  pointer-events: none;
}

.shg-box-video-wrapper {
  /*
    It's very important we don't create a new containing block for shg-box-video-wrapper
    Jarallax uses transforms + position: fixed to achieve it's parallaxing effect

    https://developer.mozilla.org/en-US/docs/Web/CSS/position

    position: fixed
    The element is removed from the normal document flow, and no space is created for the element in the page layout. 
    It is positioned relative to the initial containing block established by the viewport, 

    *
      except when one of its ancestors has a transform, perspective, or filter property set to something other than none 
      (see the CSS Transforms Spec), or the will-change property is set to transform, 
      in which case that ancestor behaves as the containing block. 
    *
  */

  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

#s-066103fe-3df8-43cf-9920-c301b0382fb4 {
  margin-left: -20px;
margin-right: -20px;
padding-left: 0px;
padding-right: 0px;
min-height: 50px;
background-color: rgba(255, 253, 250, 1);
}
@media (min-width: 1200px){#s-066103fe-3df8-43cf-9920-c301b0382fb4 {
  display: none;
}
#s-066103fe-3df8-43cf-9920-c301b0382fb4, #wrap-s-066103fe-3df8-43cf-9920-c301b0382fb4 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-066103fe-3df8-43cf-9920-c301b0382fb4 {
  display: none;
}
#s-066103fe-3df8-43cf-9920-c301b0382fb4, #wrap-s-066103fe-3df8-43cf-9920-c301b0382fb4 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-066103fe-3df8-43cf-9920-c301b0382fb4 {
  display: unset;
}
#s-066103fe-3df8-43cf-9920-c301b0382fb4, #wrap-s-066103fe-3df8-43cf-9920-c301b0382fb4 { display: unset !important; }}@media (max-width: 767px){#s-066103fe-3df8-43cf-9920-c301b0382fb4 {
  display: unset;
}
#s-066103fe-3df8-43cf-9920-c301b0382fb4, #wrap-s-066103fe-3df8-43cf-9920-c301b0382fb4 { display: unset !important; }}







#s-066103fe-3df8-43cf-9920-c301b0382fb4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-066103fe-3df8-43cf-9920-c301b0382fb4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

.shg-image-content-wrapper {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-imageV2-content {
  text-align: initial;
}

.shogun-image-content {
  display: flex;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.shogun-image-content-linked,
.shogun-image-content-not-linked {
  pointer-events: none;
}

.shogun-image-content-not-linked>div {
  pointer-events: auto;
}

.shogun-image-content-linked a,
.shogun-image-content-linked button,
.shogun-image-content-linked iframe,
.shogun-image-content-linked .shg-box-linked {
  pointer-events: auto;
}

.shogun-image-content>div {
  width: 100%;
}

.shogun-image-content-top {
  align-items: flex-start;
}

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

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

.shg-image-content-wrapper .shogun-image.hover~* {
  z-index: 1;
}
#s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 {
  aspect-ratio: 750/567;
text-align: center;
}
@media (min-width: 1200px){#s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 {
  display: none;
}
#s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13, #wrap-s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 {
  display: none;
}
#s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13, #wrap-s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 {
  display: unset;
}
#s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13, #wrap-s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 { display: unset !important; }}@media (max-width: 767px){#s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 {
  display: unset;
}
#s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13, #wrap-s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 { display: unset !important; }}




  @supports  (aspect-ratio: 1/1) {
    
    #s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 .shg-image-content-wrapper {
      aspect-ratio: 750/567;
      min-width: 100%;
      height: auto;
    }

    #s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 .shogun-image-link {
      aspect-ratio: 750/567;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 {
    width: 100%;
    height: auto;
  }

  #s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13.shogun-image {
    
    
  }


.s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 .shogun-image-content {
  
    align-items: center;
  
}

.s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13.shg-align-container {
  display: flex;
  justify-content: center
}

.s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 {
      --shg-aspect-ratio: calc(750/567); 
    }

    .s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13.shogun-image-container {
      position: relative;
    }

    .s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 .shg-image-content-wrapper {
      aspect-ratio: 750/567;
      min-width: 100%;
      height: auto;
    }

    #s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 .shogun-image-link {
      aspect-ratio: 750/567;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 {
    width: 100%;
    height: auto;
  }

  #s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13.shogun-image {
    
    
  }


.s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 .shogun-image-content {
  
    align-items: center;
  
}

.s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13.shg-align-container {
  display: flex;
  justify-content: center
}

.s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 {
      --shg-aspect-ratio: calc(750/567); 
    }

    .s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13.shogun-image-container {
      position: relative;
    }

    .s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 .shg-image-content-wrapper {
      aspect-ratio: 750/567;
      min-width: 100%;
      height: auto;
    }

    #s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 .shogun-image-link {
      aspect-ratio: 750/567;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 {
    width: 100%;
    height: auto;
  }

  #s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13.shogun-image {
    
    
  }


.s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 .shogun-image-content {
  
    align-items: center;
  
}

.s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13.shg-align-container {
  display: flex;
  justify-content: center
}

.s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 {
      --shg-aspect-ratio: calc(750/567); 
    }

    .s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13.shogun-image-container {
      position: relative;
    }

    .s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 .shg-image-content-wrapper {
      aspect-ratio: 750/567;
      min-width: 100%;
      height: auto;
    }

    #s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 .shogun-image-link {
      aspect-ratio: 750/567;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 {
    width: 100%;
    height: auto;
  }

  #s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13.shogun-image {
    
    
  }


.s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 .shogun-image-content {
  
    align-items: center;
  
}

.s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13.shg-align-container {
  display: flex;
  justify-content: center
}

.s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 {
      --shg-aspect-ratio: calc(750/567); 
    }

    .s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13.shogun-image-container {
      position: relative;
    }

    .s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 .shg-image-content-wrapper {
      aspect-ratio: 750/567;
      min-width: 100%;
      height: auto;
    }

    #s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 .shogun-image-link {
      aspect-ratio: 750/567;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 {
    width: 100%;
    height: auto;
  }

  #s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13.shogun-image {
    
    
  }


.s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 .shogun-image-content {
  
    align-items: center;
  
}

.s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13.shg-align-container {
  display: flex;
  justify-content: center
}

.s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 {
      --shg-aspect-ratio: calc(750/567); 
    }

    .s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13.shogun-image-container {
      position: relative;
    }

    .s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-42a305b7-c9f4-43c8-a38f-e2e60ea25e13 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-b1279cb1-b7d6-4f47-aea5-4c7e2e9ae78a {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
}
@media (min-width: 1200px){#s-b1279cb1-b7d6-4f47-aea5-4c7e2e9ae78a {
  display: none;
}
#s-b1279cb1-b7d6-4f47-aea5-4c7e2e9ae78a, #wrap-s-b1279cb1-b7d6-4f47-aea5-4c7e2e9ae78a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b1279cb1-b7d6-4f47-aea5-4c7e2e9ae78a {
  display: none;
}
#s-b1279cb1-b7d6-4f47-aea5-4c7e2e9ae78a, #wrap-s-b1279cb1-b7d6-4f47-aea5-4c7e2e9ae78a { display: none !important; }}







#s-b1279cb1-b7d6-4f47-aea5-4c7e2e9ae78a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b1279cb1-b7d6-4f47-aea5-4c7e2e9ae78a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2ad0578b-1ecd-499c-889e-915f5e3b98a8 {
  min-height: 50px;
max-width: 600px;
background-color: rgba(255, 253, 250, 1);
}








#s-2ad0578b-1ecd-499c-889e-915f5e3b98a8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2ad0578b-1ecd-499c-889e-915f5e3b98a8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-18933a89-1944-47de-bb7b-072dad2c7712 {
  margin-top: 30px;
margin-bottom: 30px;
}

@media (min-width: 0px) {
[id="s-18933a89-1944-47de-bb7b-072dad2c7712"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-18933a89-1944-47de-bb7b-072dad2c7712"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-18933a89-1944-47de-bb7b-072dad2c7712"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-18933a89-1944-47de-bb7b-072dad2c7712"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px){#s-ba44dd2b-57ef-4e99-8fcd-b3f6c92ca500 {
  margin-top: 20px;
}
}
.shg-btn.shg-cse, .shg-btn.shg-cse:hover, .shg-btn.shg-cse:focus {
  color: #FFF;
}

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

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

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

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

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

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

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

#s-fe79b46d-9902-431e-8bd6-7971481e0d21 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(226, 196, 101, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(51, 51, 51, 1);
}
#s-fe79b46d-9902-431e-8bd6-7971481e0d21:hover {background-color: rgba(226, 196, 101, 1) !important;
text-decoration: none !important;
color: rgba(51, 51, 51, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-fe79b46d-9902-431e-8bd6-7971481e0d21:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-fe79b46d-9902-431e-8bd6-7971481e0d21-root {
    text-align: center;
  }


#s-fe79b46d-9902-431e-8bd6-7971481e0d21.shg-btn {
  color: rgba(51, 51, 51, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-fe79b46d-9902-431e-8bd6-7971481e0d21-root {
    text-align: center;
  }


#s-fe79b46d-9902-431e-8bd6-7971481e0d21.shg-btn {
  color: rgba(51, 51, 51, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-fe79b46d-9902-431e-8bd6-7971481e0d21-root {
    text-align: center;
  }


#s-fe79b46d-9902-431e-8bd6-7971481e0d21.shg-btn {
  color: rgba(51, 51, 51, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-fe79b46d-9902-431e-8bd6-7971481e0d21-root {
    text-align: center;
  }


#s-fe79b46d-9902-431e-8bd6-7971481e0d21.shg-btn {
  color: rgba(51, 51, 51, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-fe79b46d-9902-431e-8bd6-7971481e0d21-root {
    text-align: center;
  }


#s-fe79b46d-9902-431e-8bd6-7971481e0d21.shg-btn {
  color: rgba(51, 51, 51, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
#s-21dbafde-2992-482f-ab6c-872e8b484f59 {
  margin-left: -20px;
margin-right: -20px;
padding-left: 20px;
min-height: 50px;
background-color: rgba(249, 244, 236, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-21dbafde-2992-482f-ab6c-872e8b484f59 {
  display: none;
}
#s-21dbafde-2992-482f-ab6c-872e8b484f59, #wrap-s-21dbafde-2992-482f-ab6c-872e8b484f59 { display: none !important; }}@media (max-width: 767px){#s-21dbafde-2992-482f-ab6c-872e8b484f59 {
  display: none;
}
#s-21dbafde-2992-482f-ab6c-872e8b484f59, #wrap-s-21dbafde-2992-482f-ab6c-872e8b484f59 { display: none !important; }}







#s-21dbafde-2992-482f-ab6c-872e8b484f59 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-21dbafde-2992-482f-ab6c-872e8b484f59.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a10b7b45-212e-4c2e-987f-38a9a3afe64b {
  margin-left: auto;
margin-right: auto;
min-height: 550px;
}

@media (min-width: 0px) {
[id="s-a10b7b45-212e-4c2e-987f-38a9a3afe64b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a10b7b45-212e-4c2e-987f-38a9a3afe64b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a10b7b45-212e-4c2e-987f-38a9a3afe64b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a10b7b45-212e-4c2e-987f-38a9a3afe64b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-f3fdba02-ac37-4594-9a40-4cb509a203cd {
  margin-left: auto;
margin-right: 0px;
min-height: 50px;
max-width: 600px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-f3fdba02-ac37-4594-9a40-4cb509a203cd {
  padding-left: 0px;
padding-right: 0px;
}
}@media (max-width: 767px){#s-f3fdba02-ac37-4594-9a40-4cb509a203cd {
  padding-right: 0px;
}
}







#s-f3fdba02-ac37-4594-9a40-4cb509a203cd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f3fdba02-ac37-4594-9a40-4cb509a203cd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3615d002-b772-47e9-b8de-7746a6ff65ac {
  margin-top: 30px;
margin-bottom: 30px;
}

@media (min-width: 0px) {
[id="s-3615d002-b772-47e9-b8de-7746a6ff65ac"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3615d002-b772-47e9-b8de-7746a6ff65ac"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-3615d002-b772-47e9-b8de-7746a6ff65ac"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3615d002-b772-47e9-b8de-7746a6ff65ac"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-3615d002-b772-47e9-b8de-7746a6ff65ac"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3615d002-b772-47e9-b8de-7746a6ff65ac"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-3615d002-b772-47e9-b8de-7746a6ff65ac"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-7120902d-b504-47cf-bc60-85f09684b5b7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7120902d-b504-47cf-bc60-85f09684b5b7"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-7120902d-b504-47cf-bc60-85f09684b5b7"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7120902d-b504-47cf-bc60-85f09684b5b7"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-7120902d-b504-47cf-bc60-85f09684b5b7"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7120902d-b504-47cf-bc60-85f09684b5b7"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-7120902d-b504-47cf-bc60-85f09684b5b7"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

#s-406ee8ab-35ce-4e75-8a46-e017c7fda576 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(226, 196, 101, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(51, 51, 51, 1);
}
#s-406ee8ab-35ce-4e75-8a46-e017c7fda576:hover {background-color: rgba(185, 159, 71, 1) !important;
text-decoration: none !important;
color: rgba(51, 51, 51, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-406ee8ab-35ce-4e75-8a46-e017c7fda576:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-406ee8ab-35ce-4e75-8a46-e017c7fda576-root {
    text-align: center;
  }


#s-406ee8ab-35ce-4e75-8a46-e017c7fda576.shg-btn {
  color: rgba(51, 51, 51, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-406ee8ab-35ce-4e75-8a46-e017c7fda576-root {
    text-align: center;
  }


#s-406ee8ab-35ce-4e75-8a46-e017c7fda576.shg-btn {
  color: rgba(51, 51, 51, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-406ee8ab-35ce-4e75-8a46-e017c7fda576-root {
    text-align: center;
  }


#s-406ee8ab-35ce-4e75-8a46-e017c7fda576.shg-btn {
  color: rgba(51, 51, 51, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-406ee8ab-35ce-4e75-8a46-e017c7fda576-root {
    text-align: center;
  }


#s-406ee8ab-35ce-4e75-8a46-e017c7fda576.shg-btn {
  color: rgba(51, 51, 51, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-406ee8ab-35ce-4e75-8a46-e017c7fda576-root {
    text-align: center;
  }


#s-406ee8ab-35ce-4e75-8a46-e017c7fda576.shg-btn {
  color: rgba(51, 51, 51, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
#s-1c10d1d8-f478-40ab-9ba2-89b1f214ed1c {
  background-repeat: no-repeat;
background-size: cover;
min-height: 550px;
background-position: center center;
}

#s-1c10d1d8-f478-40ab-9ba2-89b1f214ed1c {
  background-image: url(https://i.shgcdn.com/7d4be8ce-4f8f-4d72-8de3-649c7ab0304c/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}

@media (max-width: 480px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-1c10d1d8-f478-40ab-9ba2-89b1f214ed1c {
  background-image: url(https://i.shgcdn.com/7d4be8ce-4f8f-4d72-8de3-649c7ab0304c/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/480x/);
}

}
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
#s-1c10d1d8-f478-40ab-9ba2-89b1f214ed1c {
  background-image: url(https://i.shgcdn.com/7d4be8ce-4f8f-4d72-8de3-649c7ab0304c/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/960x/);
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-1c10d1d8-f478-40ab-9ba2-89b1f214ed1c {
  background-image: url(https://i.shgcdn.com/7d4be8ce-4f8f-4d72-8de3-649c7ab0304c/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/768x/);
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
#s-1c10d1d8-f478-40ab-9ba2-89b1f214ed1c {
  background-image: url(https://i.shgcdn.com/7d4be8ce-4f8f-4d72-8de3-649c7ab0304c/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1536x/);
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-1c10d1d8-f478-40ab-9ba2-89b1f214ed1c {
  background-image: url(https://i.shgcdn.com/7d4be8ce-4f8f-4d72-8de3-649c7ab0304c/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1024x/);
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
#s-1c10d1d8-f478-40ab-9ba2-89b1f214ed1c {
  background-image: url(https://i.shgcdn.com/7d4be8ce-4f8f-4d72-8de3-649c7ab0304c/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}

}
@media (min-width: 1025px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-1c10d1d8-f478-40ab-9ba2-89b1f214ed1c {
  background-image: url(https://i.shgcdn.com/7d4be8ce-4f8f-4d72-8de3-649c7ab0304c/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1200x/);
}

}
@media (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 2) {
#s-1c10d1d8-f478-40ab-9ba2-89b1f214ed1c {
  background-image: url(https://i.shgcdn.com/7d4be8ce-4f8f-4d72-8de3-649c7ab0304c/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}

}







#s-1c10d1d8-f478-40ab-9ba2-89b1f214ed1c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1c10d1d8-f478-40ab-9ba2-89b1f214ed1c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9b4b40d7-1be1-45fe-9fae-05047a8b233b {
  margin-left: -25px;
margin-right: -25px;
padding-top: 10px;
padding-bottom: 64px;
min-height: 50px;
}








#s-9b4b40d7-1be1-45fe-9fae-05047a8b233b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9b4b40d7-1be1-45fe-9fae-05047a8b233b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f112ceb6-a315-40bd-860b-d63af7f6f679 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 20px;
padding-bottom: 20px;
}

#s-72825253-e1e2-43d9-b448-2fa8c91c5d95 {
  margin-top: 30px;
margin-left: auto;
margin-right: auto;
padding-left: 20px;
padding-right: 20px;
max-width: 840px;
}
@media (max-width: 767px){#s-72825253-e1e2-43d9-b448-2fa8c91c5d95 {
  margin-top: 14px;
}
}
#s-763f27f7-cb25-48db-9b3a-39c3dcb24dab {
  margin-left: -20px;
margin-right: -20px;
padding-top: 50px;
padding-left: 20px;
padding-bottom: 50px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(249, 244, 236, 1);
}








#s-763f27f7-cb25-48db-9b3a-39c3dcb24dab > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-763f27f7-cb25-48db-9b3a-39c3dcb24dab.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3f01b92c-e53b-4ec0-bb02-f63c207b6fdb {
  text-align: left;
}

#s-0a35cb80-a306-422b-ac0f-a9efc8352056 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 1100px;
}








#s-0a35cb80-a306-422b-ac0f-a9efc8352056 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0a35cb80-a306-422b-ac0f-a9efc8352056.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6dbf7a8e-559d-442e-b652-2bb9f842b846 {
  margin-bottom: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(136, 136, 136, 1);
border-style: solid;
}

#s-99c02f6b-9827-4af5-825d-c9451a67c6af {
  margin-top: 0px;
margin-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-99c02f6b-9827-4af5-825d-c9451a67c6af"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-99c02f6b-9827-4af5-825d-c9451a67c6af"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-99c02f6b-9827-4af5-825d-c9451a67c6af"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-99c02f6b-9827-4af5-825d-c9451a67c6af"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-99c02f6b-9827-4af5-825d-c9451a67c6af"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-99c02f6b-9827-4af5-825d-c9451a67c6af"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-99c02f6b-9827-4af5-825d-c9451a67c6af"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

#s-d4cefc94-7ea2-461e-a926-fbe08bf22399 {
  max-width: 560px;
}

#s-7866f50a-ecc0-4646-b644-1402afaf152a {
  max-width: 560px;
}

#s-61e71961-b46e-4f90-9bd1-4b4a1b315cc9 {
  margin-top: 30px;
margin-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-61e71961-b46e-4f90-9bd1-4b4a1b315cc9"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-61e71961-b46e-4f90-9bd1-4b4a1b315cc9"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-61e71961-b46e-4f90-9bd1-4b4a1b315cc9"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-61e71961-b46e-4f90-9bd1-4b4a1b315cc9"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-61e71961-b46e-4f90-9bd1-4b4a1b315cc9"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-61e71961-b46e-4f90-9bd1-4b4a1b315cc9"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-61e71961-b46e-4f90-9bd1-4b4a1b315cc9"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

#s-f80b5f72-8525-44f9-b57b-ea0f8e520ff3 {
  max-width: 560px;
}

#s-5754c6ac-2407-43af-b9cc-b4b71e75a641 {
  max-width: 560px;
}

#s-266eac2d-9f3f-4774-bf80-b915d0151c97 {
  margin-top: 30px;
margin-bottom: 30px;
max-width: 560px;
}

#s-d2c0e28e-97d6-43c0-878c-202e7995497d {
  margin-bottom: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(136, 136, 136, 1);
border-style: solid;
}

#s-c52038cb-e6a8-4a2d-9f43-6f2485a17ff4 {
  margin-top: 0px;
margin-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-c52038cb-e6a8-4a2d-9f43-6f2485a17ff4"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-c52038cb-e6a8-4a2d-9f43-6f2485a17ff4"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-c52038cb-e6a8-4a2d-9f43-6f2485a17ff4"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c52038cb-e6a8-4a2d-9f43-6f2485a17ff4"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-c52038cb-e6a8-4a2d-9f43-6f2485a17ff4"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c52038cb-e6a8-4a2d-9f43-6f2485a17ff4"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-c52038cb-e6a8-4a2d-9f43-6f2485a17ff4"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

#s-ba53081f-f815-4180-a1b9-c4c4354dd91b {
  max-width: 560px;
}

#s-38124461-084a-495c-8394-48f50138c180 {
  max-width: 560px;
}

#s-b12df86d-7fd4-42f4-9774-456e7b0183ba {
  margin-top: 30px;
margin-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-b12df86d-7fd4-42f4-9774-456e7b0183ba"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-b12df86d-7fd4-42f4-9774-456e7b0183ba"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-b12df86d-7fd4-42f4-9774-456e7b0183ba"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b12df86d-7fd4-42f4-9774-456e7b0183ba"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-b12df86d-7fd4-42f4-9774-456e7b0183ba"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b12df86d-7fd4-42f4-9774-456e7b0183ba"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-b12df86d-7fd4-42f4-9774-456e7b0183ba"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

#s-3e3882e3-6f02-46cd-b829-b0355ed3a6ab {
  max-width: 560px;
}

#s-f6f80695-0f0e-4140-8d9b-55493ad8f64f {
  max-width: 560px;
}

#s-d4b29f6a-4ad1-4a23-a3fd-7e5ac43820ca {
  margin-top: 30px;
margin-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-d4b29f6a-4ad1-4a23-a3fd-7e5ac43820ca"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-d4b29f6a-4ad1-4a23-a3fd-7e5ac43820ca"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-d4b29f6a-4ad1-4a23-a3fd-7e5ac43820ca"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d4b29f6a-4ad1-4a23-a3fd-7e5ac43820ca"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-d4b29f6a-4ad1-4a23-a3fd-7e5ac43820ca"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d4b29f6a-4ad1-4a23-a3fd-7e5ac43820ca"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-d4b29f6a-4ad1-4a23-a3fd-7e5ac43820ca"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

#s-96d570fd-70f4-4da1-91ae-3941aae9f754 {
  max-width: 560px;
}

#s-c46b9b29-39c2-4fcb-9492-6e69eee5a861 {
  max-width: 560px;
}

#s-c5b1d8c6-a41b-4b85-8bdc-39d62a9a95f6 {
  margin-top: 30px;
margin-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-c5b1d8c6-a41b-4b85-8bdc-39d62a9a95f6"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-c5b1d8c6-a41b-4b85-8bdc-39d62a9a95f6"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-c5b1d8c6-a41b-4b85-8bdc-39d62a9a95f6"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c5b1d8c6-a41b-4b85-8bdc-39d62a9a95f6"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-c5b1d8c6-a41b-4b85-8bdc-39d62a9a95f6"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c5b1d8c6-a41b-4b85-8bdc-39d62a9a95f6"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-c5b1d8c6-a41b-4b85-8bdc-39d62a9a95f6"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

#s-a3204da0-e511-4a64-a6ac-26734a0e2d95 {
  max-width: 560px;
}

#s-7a2b10ee-31aa-4c77-8052-ec8496c6fbfd {
  max-width: 560px;
}

#s-15108eff-ec70-40d4-9b14-1616de338205 {
  margin-top: 30px;
}

#s-458eeba2-1e7a-429f-9c90-cc0469b7ece7 {
  margin-bottom: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(136, 136, 136, 1);
border-style: solid;
}

#s-5f21d0be-23bb-451b-ae95-621be6158deb {
  margin-top: 30px;
margin-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-5f21d0be-23bb-451b-ae95-621be6158deb"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-5f21d0be-23bb-451b-ae95-621be6158deb"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-5f21d0be-23bb-451b-ae95-621be6158deb"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5f21d0be-23bb-451b-ae95-621be6158deb"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-5f21d0be-23bb-451b-ae95-621be6158deb"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5f21d0be-23bb-451b-ae95-621be6158deb"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-5f21d0be-23bb-451b-ae95-621be6158deb"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

#s-bf694b00-51d9-46ee-9bb2-f605f05499ce {
  max-width: 560px;
}

#s-04f94c9c-0c32-4964-8454-9cb9d7fa21ca {
  max-width: 560px;
}

#s-65a59b01-023f-43ab-ae0e-12c0f7795cab {
  margin-top: 30px;
margin-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-65a59b01-023f-43ab-ae0e-12c0f7795cab"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-65a59b01-023f-43ab-ae0e-12c0f7795cab"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-65a59b01-023f-43ab-ae0e-12c0f7795cab"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-65a59b01-023f-43ab-ae0e-12c0f7795cab"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-65a59b01-023f-43ab-ae0e-12c0f7795cab"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-65a59b01-023f-43ab-ae0e-12c0f7795cab"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-65a59b01-023f-43ab-ae0e-12c0f7795cab"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

#s-625864a2-e28b-40ea-a57d-af5c681c20bd {
  max-width: 560px;
}

#s-d7fda12d-179e-4fc7-bd13-0ee803d0e5eb {
  max-width: 560px;
}

#s-cb50fe09-2dfd-4b73-b465-473e5c756e93 {
  margin-top: 30px;
margin-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-cb50fe09-2dfd-4b73-b465-473e5c756e93"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-cb50fe09-2dfd-4b73-b465-473e5c756e93"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-cb50fe09-2dfd-4b73-b465-473e5c756e93"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-cb50fe09-2dfd-4b73-b465-473e5c756e93"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-cb50fe09-2dfd-4b73-b465-473e5c756e93"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-cb50fe09-2dfd-4b73-b465-473e5c756e93"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-cb50fe09-2dfd-4b73-b465-473e5c756e93"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

#s-e3aa8f92-8125-4722-b9dc-bb10cfd007e6 {
  max-width: 560px;
}

#s-4322775c-7dee-4873-b7f8-4397a0e5061a {
  max-width: 560px;
}

#s-67f170c0-f76a-4144-b8c7-fd5cdc3b706a {
  margin-top: 30px;
margin-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-67f170c0-f76a-4144-b8c7-fd5cdc3b706a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-67f170c0-f76a-4144-b8c7-fd5cdc3b706a"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-67f170c0-f76a-4144-b8c7-fd5cdc3b706a"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-67f170c0-f76a-4144-b8c7-fd5cdc3b706a"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-67f170c0-f76a-4144-b8c7-fd5cdc3b706a"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-67f170c0-f76a-4144-b8c7-fd5cdc3b706a"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-67f170c0-f76a-4144-b8c7-fd5cdc3b706a"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

#s-d877f7e7-1131-4507-8440-191edc4a6bfb {
  max-width: 560px;
}

#s-cf19d909-988f-4e3d-85aa-cbc22f1a668b {
  max-width: 560px;
}

#s-1abbc7c4-df66-440b-8940-a3da52cd20c3 {
  margin-top: 30px;
margin-bottom: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(136, 136, 136, 1);
border-style: solid;
}

#s-bdd2ec7d-c38f-4938-93c5-748f82d0912b {
  max-width: 560px;
}

#s-eb865cea-b41e-43d3-8993-b1d358884d54 {
  margin-top: 0px;
margin-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-eb865cea-b41e-43d3-8993-b1d358884d54"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-eb865cea-b41e-43d3-8993-b1d358884d54"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-eb865cea-b41e-43d3-8993-b1d358884d54"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-eb865cea-b41e-43d3-8993-b1d358884d54"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-eb865cea-b41e-43d3-8993-b1d358884d54"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-eb865cea-b41e-43d3-8993-b1d358884d54"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-eb865cea-b41e-43d3-8993-b1d358884d54"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

#s-a5e4fd2e-a4fc-418b-b79e-9ebc52254342 {
  max-width: 560px;
}

#s-e20efc73-6c7b-4d04-86e4-c1bc9fb6d32c {
  margin-bottom: 30px;
}

@media (min-width: 0px) {
[id="s-e20efc73-6c7b-4d04-86e4-c1bc9fb6d32c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-e20efc73-6c7b-4d04-86e4-c1bc9fb6d32c"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-e20efc73-6c7b-4d04-86e4-c1bc9fb6d32c"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-e20efc73-6c7b-4d04-86e4-c1bc9fb6d32c"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-e20efc73-6c7b-4d04-86e4-c1bc9fb6d32c"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-e20efc73-6c7b-4d04-86e4-c1bc9fb6d32c"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-e20efc73-6c7b-4d04-86e4-c1bc9fb6d32c"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

#s-6edd1ceb-51a7-47f5-b943-89abba670d9f {
  max-width: 560px;
}

#s-3649dd08-47fe-46c1-a848-84a30545736b {
  max-width: 560px;
}

#s-e8c10640-0344-49b7-858c-e2e13b6e1746 {
  margin-top: 0px;
margin-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-e8c10640-0344-49b7-858c-e2e13b6e1746"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-e8c10640-0344-49b7-858c-e2e13b6e1746"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-e8c10640-0344-49b7-858c-e2e13b6e1746"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-e8c10640-0344-49b7-858c-e2e13b6e1746"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-e8c10640-0344-49b7-858c-e2e13b6e1746"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-e8c10640-0344-49b7-858c-e2e13b6e1746"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-e8c10640-0344-49b7-858c-e2e13b6e1746"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

#s-f1b0bc28-2e78-403f-b302-3f631a405192 {
  max-width: 560px;
}

#s-dac14547-c5d3-47a5-8ed9-e4d5c72328b9 {
  margin-top: 0px;
margin-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-dac14547-c5d3-47a5-8ed9-e4d5c72328b9"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-dac14547-c5d3-47a5-8ed9-e4d5c72328b9"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-dac14547-c5d3-47a5-8ed9-e4d5c72328b9"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-dac14547-c5d3-47a5-8ed9-e4d5c72328b9"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-dac14547-c5d3-47a5-8ed9-e4d5c72328b9"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-dac14547-c5d3-47a5-8ed9-e4d5c72328b9"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-dac14547-c5d3-47a5-8ed9-e4d5c72328b9"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

#s-84cac07e-939f-45e5-83db-000229f61b04 {
  max-width: 560px;
}

#s-cd271ac0-1105-4730-8d90-6ff4f714a6f7 {
  margin-bottom: 30px;
}

@media (min-width: 0px) {
[id="s-cd271ac0-1105-4730-8d90-6ff4f714a6f7"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-cd271ac0-1105-4730-8d90-6ff4f714a6f7"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-cd271ac0-1105-4730-8d90-6ff4f714a6f7"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-cd271ac0-1105-4730-8d90-6ff4f714a6f7"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-cd271ac0-1105-4730-8d90-6ff4f714a6f7"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-cd271ac0-1105-4730-8d90-6ff4f714a6f7"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-cd271ac0-1105-4730-8d90-6ff4f714a6f7"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

#s-ecaf3f54-0154-453d-90e5-df10643badc3 {
  max-width: 560px;
}

#s-33e069ac-42cc-4a5c-a30f-7a6248184f1a {
  max-width: 560px;
}

#s-66127e32-1480-4874-88d8-a6ceb364b248 {
  margin-top: 0px;
margin-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-66127e32-1480-4874-88d8-a6ceb364b248"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-66127e32-1480-4874-88d8-a6ceb364b248"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-66127e32-1480-4874-88d8-a6ceb364b248"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-66127e32-1480-4874-88d8-a6ceb364b248"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-66127e32-1480-4874-88d8-a6ceb364b248"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-66127e32-1480-4874-88d8-a6ceb364b248"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-66127e32-1480-4874-88d8-a6ceb364b248"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

#s-e1250fa7-573a-4955-a5e7-9141415d1d46 {
  max-width: 560px;
}

#s-242861eb-c6ea-45c1-8718-c3b801a92abc {
  margin-bottom: 30px;
}

@media (min-width: 0px) {
[id="s-242861eb-c6ea-45c1-8718-c3b801a92abc"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-242861eb-c6ea-45c1-8718-c3b801a92abc"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-242861eb-c6ea-45c1-8718-c3b801a92abc"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-242861eb-c6ea-45c1-8718-c3b801a92abc"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-242861eb-c6ea-45c1-8718-c3b801a92abc"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-242861eb-c6ea-45c1-8718-c3b801a92abc"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-242861eb-c6ea-45c1-8718-c3b801a92abc"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

#s-11161b5f-ba5a-4edb-a35b-4698ed0f1729 {
  max-width: 560px;
}

#s-9ff94951-7b96-480d-8b76-11de13718709 {
  max-width: 560px;
}

#s-d28b2973-40dd-4778-a7b0-aa2cfc08b2bd {
  margin-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-d28b2973-40dd-4778-a7b0-aa2cfc08b2bd"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-d28b2973-40dd-4778-a7b0-aa2cfc08b2bd"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-d28b2973-40dd-4778-a7b0-aa2cfc08b2bd"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d28b2973-40dd-4778-a7b0-aa2cfc08b2bd"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-d28b2973-40dd-4778-a7b0-aa2cfc08b2bd"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d28b2973-40dd-4778-a7b0-aa2cfc08b2bd"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-d28b2973-40dd-4778-a7b0-aa2cfc08b2bd"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

#s-0bcffdba-7d8e-4031-a279-1597abe1e183 {
  max-width: 560px;
}

#s-3bc26435-9861-4dd9-88a0-7b0934921600 {
  max-width: 560px;
}

#s-bce92fa4-812f-4730-bf55-a0bbf6da7282 {
  margin-top: 30px;
margin-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-bce92fa4-812f-4730-bf55-a0bbf6da7282"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-bce92fa4-812f-4730-bf55-a0bbf6da7282"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-bce92fa4-812f-4730-bf55-a0bbf6da7282"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-bce92fa4-812f-4730-bf55-a0bbf6da7282"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-bce92fa4-812f-4730-bf55-a0bbf6da7282"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-bce92fa4-812f-4730-bf55-a0bbf6da7282"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-bce92fa4-812f-4730-bf55-a0bbf6da7282"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

#s-0b90a8bc-4047-4ea5-8e62-79c3c853a535 {
  max-width: 560px;
}

#s-cba991c9-6309-4e02-ad7a-7986bce5dd06 {
  max-width: 560px;
}

#s-e2eaa593-e31d-4e9d-9a08-d58e374a2ed7 {
  margin-top: 30px;
margin-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-e2eaa593-e31d-4e9d-9a08-d58e374a2ed7"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-e2eaa593-e31d-4e9d-9a08-d58e374a2ed7"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-e2eaa593-e31d-4e9d-9a08-d58e374a2ed7"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e2eaa593-e31d-4e9d-9a08-d58e374a2ed7"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-e2eaa593-e31d-4e9d-9a08-d58e374a2ed7"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e2eaa593-e31d-4e9d-9a08-d58e374a2ed7"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-e2eaa593-e31d-4e9d-9a08-d58e374a2ed7"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

#s-a93054b6-fa11-4498-bdc5-a7abfd3ac1b4 {
  max-width: 560px;
}

#s-a9850a08-2cd6-466a-90ab-82542f7bd779 {
  max-width: 560px;
}

#s-72227e50-471a-4f74-a532-7ed3c7487261 {
  margin-left: -20px;
margin-right: -20px;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-72227e50-471a-4f74-a532-7ed3c7487261 {
  margin-left: 0%;
margin-right: 0%;
}
}@media (max-width: 767px){#s-72227e50-471a-4f74-a532-7ed3c7487261 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
}
}







#s-72227e50-471a-4f74-a532-7ed3c7487261 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-72227e50-471a-4f74-a532-7ed3c7487261.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 1200px){#s-41585276-7b8b-4158-8c24-c36440a92096 {
  display: none;
}
#s-41585276-7b8b-4158-8c24-c36440a92096, #wrap-s-41585276-7b8b-4158-8c24-c36440a92096 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-41585276-7b8b-4158-8c24-c36440a92096 {
  display: none;
}
#s-41585276-7b8b-4158-8c24-c36440a92096, #wrap-s-41585276-7b8b-4158-8c24-c36440a92096 { display: none !important; }}@media (max-width: 767px){#s-41585276-7b8b-4158-8c24-c36440a92096 {
  display: none;
}
#s-41585276-7b8b-4158-8c24-c36440a92096, #wrap-s-41585276-7b8b-4158-8c24-c36440a92096 { display: none !important; }}
#s-d780ad0a-00b3-4756-9fa4-8b5d51eed969 {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-left: 0px;
padding-bottom: 20px;
padding-right: 0px;
max-width: 1183px;
background-color: rgba(248, 248, 248, 0);
}
@media (min-width: 768px) and (max-width: 991px){#s-d780ad0a-00b3-4756-9fa4-8b5d51eed969 {
  display: none;
}
#s-d780ad0a-00b3-4756-9fa4-8b5d51eed969, #wrap-s-d780ad0a-00b3-4756-9fa4-8b5d51eed969 { display: none !important; }}
@media (min-width: 0px) {
[id="s-d780ad0a-00b3-4756-9fa4-8b5d51eed969"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d780ad0a-00b3-4756-9fa4-8b5d51eed969"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 24.0px);
}

[id="s-d780ad0a-00b3-4756-9fa4-8b5d51eed969"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 24.0px);
}

}

@media (min-width: 992px) {
[id="s-d780ad0a-00b3-4756-9fa4-8b5d51eed969"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 24.0px);
}

[id="s-d780ad0a-00b3-4756-9fa4-8b5d51eed969"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 24.0px);
}

}

@media (min-width: 1200px) {
[id="s-d780ad0a-00b3-4756-9fa4-8b5d51eed969"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 24.0px);
}

[id="s-d780ad0a-00b3-4756-9fa4-8b5d51eed969"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 24.0px);
}

}

#s-c2db9ef3-7294-4753-88e9-1850007e205e {
  margin-bottom: 20px;
}
@media (min-width: 1200px){#s-c2db9ef3-7294-4753-88e9-1850007e205e {
  display: none;
}
#s-c2db9ef3-7294-4753-88e9-1850007e205e, #wrap-s-c2db9ef3-7294-4753-88e9-1850007e205e { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c2db9ef3-7294-4753-88e9-1850007e205e {
  display: none;
}
#s-c2db9ef3-7294-4753-88e9-1850007e205e, #wrap-s-c2db9ef3-7294-4753-88e9-1850007e205e { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c2db9ef3-7294-4753-88e9-1850007e205e {
  display: none;
}
#s-c2db9ef3-7294-4753-88e9-1850007e205e, #wrap-s-c2db9ef3-7294-4753-88e9-1850007e205e { display: none !important; }}@media (max-width: 767px){#s-c2db9ef3-7294-4753-88e9-1850007e205e {
  display: unset;
}
#s-c2db9ef3-7294-4753-88e9-1850007e205e, #wrap-s-c2db9ef3-7294-4753-88e9-1850007e205e { display: unset !important; }}
#s-6572f2f8-ed6e-48d1-9d39-5d70cf777327 {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-6572f2f8-ed6e-48d1-9d39-5d70cf777327 {
  display: none;
}
#s-6572f2f8-ed6e-48d1-9d39-5d70cf777327, #wrap-s-6572f2f8-ed6e-48d1-9d39-5d70cf777327 { display: none !important; }}@media (max-width: 767px){#s-6572f2f8-ed6e-48d1-9d39-5d70cf777327 {
  display: none;
}
#s-6572f2f8-ed6e-48d1-9d39-5d70cf777327, #wrap-s-6572f2f8-ed6e-48d1-9d39-5d70cf777327 { display: none !important; }}







#s-6572f2f8-ed6e-48d1-9d39-5d70cf777327 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6572f2f8-ed6e-48d1-9d39-5d70cf777327.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-03d20b68-5653-4ec4-9baf-c20786a34756 {
  margin-bottom: 20px;
}
@media (max-width: 767px){#s-03d20b68-5653-4ec4-9baf-c20786a34756 {
  display: none;
}
#s-03d20b68-5653-4ec4-9baf-c20786a34756, #wrap-s-03d20b68-5653-4ec4-9baf-c20786a34756 { display: none !important; }}
@media (max-width: 767px){#s-229194e4-4a55-40fb-8bd3-1a7b2345e747 {
  margin-top: 24px;
margin-left: auto;
margin-right: auto;
}
}
/*table.hours-table {*/
/*    border-collapse: collapse;*/
/*    width: 50%;*/
/*    margin: 20px auto;*/
/*  }*/
/*  th.hours-day, td.hours-day {*/
/*    border: 1px solid black;*/
/*    padding: 8px;*/
/*    text-align: center;*/
/*  }*/
/*  td.hours-hours {*/
/*    border: 1px solid black;*/
/*    padding: 8px;*/
/*    text-align: center;*/
/*  }*/


/*.hours-table {*/
/*    padding: 0 0 50px 0;*/
/*    margin: 30px auto 0px;*/
/*    width: 400px;*/
/*}*/

/*.hours-table td {*/
/*    font-family: SaaSeries, 'SAA Series FD', 'Open Sans';*/
/*    font-style: normal;*/
/*    font-weight: normal;*/
/*    font-size: 16px;*/
/*    line-height: 16px;*/
/*    letter-spacing: 2px;*/
/*    text-transform: uppercase;*/
    /*color: #fff;*/
/*    padding-top: 5px;*/
/*    padding-bottom: 5px;*/
/*    letter-spacing: .05em;*/
/*    width: auto;*/
/*}*/

/*.hours-day {*/
/*    padding-right: 20px;*/
/*    border-right: 1px solid #999;*/
/*    text-align: right;*/
/*}*/

/*.hours-hours {*/
/*    text-align: left;*/
/*    padding-left: 20px;*/
/*}*/
/*
  $vgutter : 20px
  $hgutter : 10px;
*/

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

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

.shogun-root iframe {
  display: initial;
}

@media (max-width: 1024px) {
  .shg-c,
  .shg-box {
    background-attachment: scroll !important;
  }
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape) {
  .shg-box {
    background-attachment: scroll !important;
  }
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}
.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-lazyload-bg-image {
  display: none;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}
/* <-- User Content Animations */

.shogun-form-error-msg, .shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}

.shg-c:before,.shg-c:after{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width: 1024px){.shg-c,.shg-box{background-attachment:scroll !important}}@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape){.shg-box{background-attachment:scroll !important}}#mc_embed_signup .clear{width:auto !important;height:auto !important;visibility:visible !important}.shg-clearfix:after{content:"";display:block;clear:both}.shogun-image{max-width:100%;min-height:inherit;max-height:inherit;display:inline !important;border:0;vertical-align:middle}.shg-fw{margin-left:calc(50% - 50vw);width:100vw}.shg-fw .shg-fw{margin-left:auto;margin-right:auto;width:100%}div[data-shg-lightbox-switch]{cursor:pointer}.shg-lightbox{position:fixed;z-index:999999;left:0;top:0;width:100%;height:100%;overflow:hidden;background-color:#000;background-color:rgba(0,0,0,0.85)}.shg-lightbox.hidden{display:none !important}.shg-lightbox .shg-lightbox-content{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:100%;text-align:center}.shg-lightbox .shg-lightbox-close{position:absolute;right:0;padding:5px 0;color:#fff;font-size:45px;margin-right:10px;line-height:30px;user-select:none;cursor:pointer;z-index:1}.shg-lightbox .shg-lightbox-image-container{padding:25px}.shg-lightbox .shg-lightbox-image{margin:auto;max-height:90vh;max-width:100%}.shg-lightbox .shg-lightbox-close:hover,.shg-lightbox .shg-lightbox-close:focus{color:#a2a2a2;text-decoration:none;cursor:pointer}.shg-lightbox .shg-lightbox-nav{cursor:pointer;position:absolute;top:50%;width:35px;height:100px;background-size:contain;background-repeat:no-repeat;background-position:center;transform:translate(0%, -50%);z-index:1}.shg-lightbox .shg-lightbox-nav.hidden{display:none !important}.shg-lightbox .shg-lightbox-nav.shg-nav-left{left:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==)}.shg-lightbox .shg-lightbox-nav.shg-nav-right{right:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+)}@media screen and (min-width: 769px){.shg-lightbox .shg-lightbox-image-container{padding:50px}}.shogun-lazyload:not([src]),.shogun-lazyloading:not([src]){opacity:0}.shogun-lazyloaded{opacity:1;transition:opacity 300ms}.shogun-lazyload-bg-image{display:none}.shogun-root a:empty,.shogun-root article:empty,.shogun-root dl:empty,.shogun-root h1:empty,.shogun-root h2:empty,.shogun-root h3:empty,.shogun-root h4:empty,.shogun-root h5:empty,.shogun-root h6:empty,.shogun-root p:empty,.shogun-root section:empty,.shogun-root ul:empty{display:unset}.shogun-root div:empty{display:inline-block}[data-animations*="enterviewport"][data-animations*="fadeIn"],[data-animations*="enterviewport"][data-animations*="zoomIn"]{opacity:0}.shogun-form-error-msg,.shogun-form-field-error-msg{display:flex;align-items:center;color:#dc143c}.shogun-badge{margin-bottom:50px}.shogun-badge-container{position:fixed;right:0;bottom:0;margin-bottom:-10px}
