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

.shg-box > .shg-box-content {
  z-index: 4;
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

#s-22a21c62-bae1-44d4-9577-a74f83cd7e59 {
  min-height: 50px;
}








#s-22a21c62-bae1-44d4-9577-a74f83cd7e59 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-22a21c62-bae1-44d4-9577-a74f83cd7e59.shg-box.shg-c {
  justify-content: flex-start;
}

#s-805b9dd8-3591-4c63-974d-8632516cadb5 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 1200px){#s-805b9dd8-3591-4c63-974d-8632516cadb5 {
  display: none;
}
#s-805b9dd8-3591-4c63-974d-8632516cadb5, #wrap-s-805b9dd8-3591-4c63-974d-8632516cadb5, #wrap-content-s-805b9dd8-3591-4c63-974d-8632516cadb5 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-805b9dd8-3591-4c63-974d-8632516cadb5 {
  display: none;
}
#s-805b9dd8-3591-4c63-974d-8632516cadb5, #wrap-s-805b9dd8-3591-4c63-974d-8632516cadb5, #wrap-content-s-805b9dd8-3591-4c63-974d-8632516cadb5 { display: none !important; }}







#s-805b9dd8-3591-4c63-974d-8632516cadb5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-805b9dd8-3591-4c63-974d-8632516cadb5.shg-box.shg-c {
  justify-content: center;
}

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

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

.shogun-image-link {
  display: block;
  min-height: inherit;
  max-height: inherit;
  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-c5913461-02ee-4a9e-8a6f-7d13f2b503fb {
  margin-left: 35%;
margin-right: 35%;
max-width: 800px;
aspect-ratio: 800/566;
text-align: center;
}

#s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb {
  margin: 0 !important;
  overflow: visible;
}

#s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb-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-c5913461-02ee-4a9e-8a6f-7d13f2b503fb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 35%;
  margin-right: 35%;
  
  
}

.shg-image-content-margin-container-s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb img.shogun-image {
  /* Add background color handling */
  
}

#s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb .shg-image-content-wrapper {
      aspect-ratio: 800/566;
      min-width: 100%;
      height: auto;
    }

    #s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb .shogun-image-link {
      aspect-ratio: 800/566;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb .shogun-image-content {
  
    justify-content: center;
  
}

.s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shogun-image {
  box-sizing: border-box;
}



.s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb {
      --shg-aspect-ratio: calc(800/566); 
    }

    .s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shogun-image-container {
      position: relative;
    }

    .s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb {
  margin: 0 !important;
  overflow: visible;
}

#s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb-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-c5913461-02ee-4a9e-8a6f-7d13f2b503fb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb img.shogun-image {
  /* Add background color handling */
  
}

#s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb .shg-image-content-wrapper {
      aspect-ratio: 800/566;
      min-width: 100%;
      height: auto;
    }

    #s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb .shogun-image-link {
      aspect-ratio: 800/566;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb .shogun-image-content {
  
    justify-content: center;
  
}

.s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shogun-image {
  box-sizing: border-box;
}



.s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb {
      --shg-aspect-ratio: calc(800/566); 
    }

    .s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shogun-image-container {
      position: relative;
    }

    .s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb {
  margin: 0 !important;
  overflow: visible;
}

#s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb-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-c5913461-02ee-4a9e-8a6f-7d13f2b503fb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb img.shogun-image {
  /* Add background color handling */
  
}

#s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb .shg-image-content-wrapper {
      aspect-ratio: 800/566;
      min-width: 100%;
      height: auto;
    }

    #s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb .shogun-image-link {
      aspect-ratio: 800/566;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb .shogun-image-content {
  
    justify-content: center;
  
}

.s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shogun-image {
  box-sizing: border-box;
}



.s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb {
      --shg-aspect-ratio: calc(800/566); 
    }

    .s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shogun-image-container {
      position: relative;
    }

    .s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb {
  margin: 0 !important;
  overflow: visible;
}

#s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb-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-c5913461-02ee-4a9e-8a6f-7d13f2b503fb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb img.shogun-image {
  /* Add background color handling */
  
}

#s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb .shg-image-content-wrapper {
      aspect-ratio: 800/566;
      min-width: 100%;
      height: auto;
    }

    #s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb .shogun-image-link {
      aspect-ratio: 800/566;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb .shogun-image-content {
  
    justify-content: center;
  
}

.s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shogun-image {
  box-sizing: border-box;
}



.s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb {
      --shg-aspect-ratio: calc(800/566); 
    }

    .s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shogun-image-container {
      position: relative;
    }

    .s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb {
  margin: 0 !important;
  overflow: visible;
}

#s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb-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-c5913461-02ee-4a9e-8a6f-7d13f2b503fb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb img.shogun-image {
  /* Add background color handling */
  
}

#s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb .shg-image-content-wrapper {
      aspect-ratio: 800/566;
      min-width: 100%;
      height: auto;
    }

    #s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb .shogun-image-link {
      aspect-ratio: 800/566;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb .shogun-image-content {
  
    justify-content: center;
  
}

.s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shogun-image {
  box-sizing: border-box;
}



.s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb {
      --shg-aspect-ratio: calc(800/566); 
    }

    .s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shogun-image-container {
      position: relative;
    }

    .s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c5913461-02ee-4a9e-8a6f-7d13f2b503fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-c926f4b1-df04-425a-8164-a53fd4da0a44 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-c926f4b1-df04-425a-8164-a53fd4da0a44 {
  display: none;
}
#s-c926f4b1-df04-425a-8164-a53fd4da0a44, #wrap-s-c926f4b1-df04-425a-8164-a53fd4da0a44, #wrap-content-s-c926f4b1-df04-425a-8164-a53fd4da0a44 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c926f4b1-df04-425a-8164-a53fd4da0a44 {
  display: none;
}
#s-c926f4b1-df04-425a-8164-a53fd4da0a44, #wrap-s-c926f4b1-df04-425a-8164-a53fd4da0a44, #wrap-content-s-c926f4b1-df04-425a-8164-a53fd4da0a44 { display: none !important; }}







#s-c926f4b1-df04-425a-8164-a53fd4da0a44 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c926f4b1-df04-425a-8164-a53fd4da0a44.shg-box.shg-c {
  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 {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

.shogun-image.hover {
  opacity: 0;
  z-index: 200;
  position: absolute;
  left: 0;
  top: 0;
}

.shogun-image.hover:hover {
  opacity: 1;
}

#s-d03ff358-0e61-4694-914d-95eae04afe30 {
  max-width: 1500px;
aspect-ratio: 1500/1200;
text-align: center;
background-color: rgba(0, 0, 0, 1);
opacity: 0.8499999999999999;
}

#s-d03ff358-0e61-4694-914d-95eae04afe30 {
  overflow: hidden;
  
  
      max-width: 1500px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-d03ff358-0e61-4694-914d-95eae04afe30 img.shogun-image,
  #s-d03ff358-0e61-4694-914d-95eae04afe30 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d03ff358-0e61-4694-914d-95eae04afe30 {
    width: 100%;
    height: auto;
  }



  #s-d03ff358-0e61-4694-914d-95eae04afe30 img.shogun-image {
    

    
    
    
  }


#s-d03ff358-0e61-4694-914d-95eae04afe30 .shogun-image-content {
  
    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;
  -webkit-user-select: none;
     -moz-user-select: none;
          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-7fd9b211-654d-4166-8d57-ac9368549b47 {
  padding-left: 0%;
padding-right: 2%;
}
@media (min-width: 1200px){#s-7fd9b211-654d-4166-8d57-ac9368549b47 {
  display: none;
}
#s-7fd9b211-654d-4166-8d57-ac9368549b47, #wrap-s-7fd9b211-654d-4166-8d57-ac9368549b47, #wrap-content-s-7fd9b211-654d-4166-8d57-ac9368549b47 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7fd9b211-654d-4166-8d57-ac9368549b47 {
  display: none;
}
#s-7fd9b211-654d-4166-8d57-ac9368549b47, #wrap-s-7fd9b211-654d-4166-8d57-ac9368549b47, #wrap-content-s-7fd9b211-654d-4166-8d57-ac9368549b47 { display: none !important; }}
#s-7fd9b211-654d-4166-8d57-ac9368549b47 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(255, 255, 255, 1);
}

#s-7fd9b211-654d-4166-8d57-ac9368549b47 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 10px;
}

#s-7fd9b211-654d-4166-8d57-ac9368549b47 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(146, 179, 208, 1);
}

#s-7fd9b211-654d-4166-8d57-ac9368549b47 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-7fd9b211-654d-4166-8d57-ac9368549b47 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(146, 179, 208, 1);
  text-align: center;
  font-family: Archivo Black;
  
  
  font-size: 16px;
}

#s-7fd9b211-654d-4166-8d57-ac9368549b47 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
.shg-btn.shg-cse, .shg-btn.shg-cse:hover, .shg-btn.shg-cse:focus {
  color: #FFF;
}

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

.shg-btn-text {
  
  
}

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

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

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

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

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

#s-4f49b933-6f89-44cc-866c-8dd452b8783b {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-4f49b933-6f89-44cc-866c-8dd452b8783b:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iMzA1MzgxY2YtNWNmMy00M2IxLWI0MjAtNjA1Zjg1MzdhYmMwIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZTI5ZmMxO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCMzMDUzODFjZi01Y2YzLTQzYjEtYjQyMC02MDVmODUzN2FiYzApIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#e29fc1"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-4f49b933-6f89-44cc-866c-8dd452b8783b:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-4f49b933-6f89-44cc-866c-8dd452b8783b-root {
    text-align: center;
  }


#s-4f49b933-6f89-44cc-866c-8dd452b8783b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-4f49b933-6f89-44cc-866c-8dd452b8783b-root {
    text-align: center;
  }


#s-4f49b933-6f89-44cc-866c-8dd452b8783b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4f49b933-6f89-44cc-866c-8dd452b8783b-root {
    text-align: center;
  }


#s-4f49b933-6f89-44cc-866c-8dd452b8783b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4f49b933-6f89-44cc-866c-8dd452b8783b-root {
    text-align: center;
  }


#s-4f49b933-6f89-44cc-866c-8dd452b8783b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-4f49b933-6f89-44cc-866c-8dd452b8783b-root {
    text-align: center;
  }


#s-4f49b933-6f89-44cc-866c-8dd452b8783b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-f89eb09a-7608-4965-9851-11168203099b {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-f89eb09a-7608-4965-9851-11168203099b:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNzhlMjA3NjEtODdjNC00NzVmLTgwMjEtYjlkYWI4MjllZGJiIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZTI5ZmMxO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM3OGUyMDc2MS04N2M0LTQ3NWYtODAyMS1iOWRhYjgyOWVkYmIpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#e29fc1"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-f89eb09a-7608-4965-9851-11168203099b:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-f89eb09a-7608-4965-9851-11168203099b-root {
    text-align: center;
  }


#s-f89eb09a-7608-4965-9851-11168203099b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-f89eb09a-7608-4965-9851-11168203099b-root {
    text-align: center;
  }


#s-f89eb09a-7608-4965-9851-11168203099b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f89eb09a-7608-4965-9851-11168203099b-root {
    text-align: center;
  }


#s-f89eb09a-7608-4965-9851-11168203099b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f89eb09a-7608-4965-9851-11168203099b-root {
    text-align: center;
  }


#s-f89eb09a-7608-4965-9851-11168203099b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-f89eb09a-7608-4965-9851-11168203099b-root {
    text-align: center;
  }


#s-f89eb09a-7608-4965-9851-11168203099b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-4ee4bcab-4760-4a1a-9957-c95be8b0406b {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-4ee4bcab-4760-4a1a-9957-c95be8b0406b:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iZjRkNGZlMmItZjE3MS00ZGUwLTkzNTItMDdkYjMxNGIwMjcyIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojOTJiM2QwO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNmNGQ0ZmUyYi1mMTcxLTRkZTAtOTM1Mi0wN2RiMzE0YjAyNzIpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#92b3d0"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-4ee4bcab-4760-4a1a-9957-c95be8b0406b:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-4ee4bcab-4760-4a1a-9957-c95be8b0406b-root {
    text-align: center;
  }


#s-4ee4bcab-4760-4a1a-9957-c95be8b0406b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-4ee4bcab-4760-4a1a-9957-c95be8b0406b-root {
    text-align: center;
  }


#s-4ee4bcab-4760-4a1a-9957-c95be8b0406b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4ee4bcab-4760-4a1a-9957-c95be8b0406b-root {
    text-align: center;
  }


#s-4ee4bcab-4760-4a1a-9957-c95be8b0406b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4ee4bcab-4760-4a1a-9957-c95be8b0406b-root {
    text-align: center;
  }


#s-4ee4bcab-4760-4a1a-9957-c95be8b0406b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-4ee4bcab-4760-4a1a-9957-c95be8b0406b-root {
    text-align: center;
  }


#s-4ee4bcab-4760-4a1a-9957-c95be8b0406b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-ae83be4a-50a9-49fc-b007-c9e7982e71e5 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-ae83be4a-50a9-49fc-b007-c9e7982e71e5:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iMmI4ODA5NjUtM2I3Ni00Nzk4LThiNjYtM2FmOGFhMTVjN2VkIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojYWQ4Y2JjO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCMyYjg4MDk2NS0zYjc2LTQ3OTgtOGI2Ni0zYWY4YWExNWM3ZWQpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#ad8cbc"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-ae83be4a-50a9-49fc-b007-c9e7982e71e5:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-ae83be4a-50a9-49fc-b007-c9e7982e71e5-root {
    text-align: center;
  }


#s-ae83be4a-50a9-49fc-b007-c9e7982e71e5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-ae83be4a-50a9-49fc-b007-c9e7982e71e5-root {
    text-align: center;
  }


#s-ae83be4a-50a9-49fc-b007-c9e7982e71e5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ae83be4a-50a9-49fc-b007-c9e7982e71e5-root {
    text-align: center;
  }


#s-ae83be4a-50a9-49fc-b007-c9e7982e71e5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ae83be4a-50a9-49fc-b007-c9e7982e71e5-root {
    text-align: center;
  }


#s-ae83be4a-50a9-49fc-b007-c9e7982e71e5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-ae83be4a-50a9-49fc-b007-c9e7982e71e5-root {
    text-align: center;
  }


#s-ae83be4a-50a9-49fc-b007-c9e7982e71e5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-7bf2ef5a-1289-4edd-bdbf-68b54acb4787 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-7bf2ef5a-1289-4edd-bdbf-68b54acb4787:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNjM5YTgzNGUtYzIyNy00NWNlLWJlMDktZTVlMDVlNjdmN2JjIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojYWQ4Y2JjO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM2MzlhODM0ZS1jMjI3LTQ1Y2UtYmUwOS1lNWUwNWU2N2Y3YmMpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#ad8cbc"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-7bf2ef5a-1289-4edd-bdbf-68b54acb4787:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-7bf2ef5a-1289-4edd-bdbf-68b54acb4787-root {
    text-align: center;
  }


#s-7bf2ef5a-1289-4edd-bdbf-68b54acb4787.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-7bf2ef5a-1289-4edd-bdbf-68b54acb4787-root {
    text-align: center;
  }


#s-7bf2ef5a-1289-4edd-bdbf-68b54acb4787.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7bf2ef5a-1289-4edd-bdbf-68b54acb4787-root {
    text-align: center;
  }


#s-7bf2ef5a-1289-4edd-bdbf-68b54acb4787.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7bf2ef5a-1289-4edd-bdbf-68b54acb4787-root {
    text-align: center;
  }


#s-7bf2ef5a-1289-4edd-bdbf-68b54acb4787.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-7bf2ef5a-1289-4edd-bdbf-68b54acb4787-root {
    text-align: center;
  }


#s-7bf2ef5a-1289-4edd-bdbf-68b54acb4787.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-64f5022c-b3d5-4b2e-a5bc-d1e8c1ff74ea {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-64f5022c-b3d5-4b2e-a5bc-d1e8c1ff74ea:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYjFkYmZhOGUtZGE5OS00NDc2LThiNDktYjU4MGM5OGE5ZDk3IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojYWQ4Y2JjO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNiMWRiZmE4ZS1kYTk5LTQ0NzYtOGI0OS1iNTgwYzk4YTlkOTcpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#ad8cbc"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-64f5022c-b3d5-4b2e-a5bc-d1e8c1ff74ea:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-64f5022c-b3d5-4b2e-a5bc-d1e8c1ff74ea-root {
    text-align: center;
  }


#s-64f5022c-b3d5-4b2e-a5bc-d1e8c1ff74ea.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-64f5022c-b3d5-4b2e-a5bc-d1e8c1ff74ea-root {
    text-align: center;
  }


#s-64f5022c-b3d5-4b2e-a5bc-d1e8c1ff74ea.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-64f5022c-b3d5-4b2e-a5bc-d1e8c1ff74ea-root {
    text-align: center;
  }


#s-64f5022c-b3d5-4b2e-a5bc-d1e8c1ff74ea.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-64f5022c-b3d5-4b2e-a5bc-d1e8c1ff74ea-root {
    text-align: center;
  }


#s-64f5022c-b3d5-4b2e-a5bc-d1e8c1ff74ea.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-64f5022c-b3d5-4b2e-a5bc-d1e8c1ff74ea-root {
    text-align: center;
  }


#s-64f5022c-b3d5-4b2e-a5bc-d1e8c1ff74ea.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-15865ac3-db87-4e98-b637-73b20a11384e {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-15865ac3-db87-4e98-b637-73b20a11384e:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iMzg1ZmQwMjEtMGNhZC00MjQ0LTkyYTItMTRjNTA5ZjliMDkxIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWJhOTUwO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCMzODVmZDAyMS0wY2FkLTQyNDQtOTJhMi0xNGM1MDlmOWIwOTEpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#eba950"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-15865ac3-db87-4e98-b637-73b20a11384e:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-15865ac3-db87-4e98-b637-73b20a11384e-root {
    text-align: center;
  }


#s-15865ac3-db87-4e98-b637-73b20a11384e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-15865ac3-db87-4e98-b637-73b20a11384e-root {
    text-align: center;
  }


#s-15865ac3-db87-4e98-b637-73b20a11384e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-15865ac3-db87-4e98-b637-73b20a11384e-root {
    text-align: center;
  }


#s-15865ac3-db87-4e98-b637-73b20a11384e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-15865ac3-db87-4e98-b637-73b20a11384e-root {
    text-align: center;
  }


#s-15865ac3-db87-4e98-b637-73b20a11384e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-15865ac3-db87-4e98-b637-73b20a11384e-root {
    text-align: center;
  }


#s-15865ac3-db87-4e98-b637-73b20a11384e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-3e48fd64-2d3b-43ad-8d14-c597f05c5e87 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-3e48fd64-2d3b-43ad-8d14-c597f05c5e87:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iY2FkMWYwZmMtNmMxYi00MDAyLTk3Y2EtOWM5MzdkM2EwMWFlIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojYWQ4Y2JjO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNjYWQxZjBmYy02YzFiLTQwMDItOTdjYS05YzkzN2QzYTAxYWUpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#ad8cbc"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-3e48fd64-2d3b-43ad-8d14-c597f05c5e87:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-3e48fd64-2d3b-43ad-8d14-c597f05c5e87-root {
    text-align: center;
  }


#s-3e48fd64-2d3b-43ad-8d14-c597f05c5e87.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-3e48fd64-2d3b-43ad-8d14-c597f05c5e87-root {
    text-align: center;
  }


#s-3e48fd64-2d3b-43ad-8d14-c597f05c5e87.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-3e48fd64-2d3b-43ad-8d14-c597f05c5e87-root {
    text-align: center;
  }


#s-3e48fd64-2d3b-43ad-8d14-c597f05c5e87.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-3e48fd64-2d3b-43ad-8d14-c597f05c5e87-root {
    text-align: center;
  }


#s-3e48fd64-2d3b-43ad-8d14-c597f05c5e87.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-3e48fd64-2d3b-43ad-8d14-c597f05c5e87-root {
    text-align: center;
  }


#s-3e48fd64-2d3b-43ad-8d14-c597f05c5e87.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-7c68f88c-59a7-45a6-bf74-35ef0f398135 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-7c68f88c-59a7-45a6-bf74-35ef0f398135:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYWMzYTg2OTgtM2Y1Ny00NDVlLTg2ZjMtZjVkYTQwZDZlMDgxIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojYWQ4Y2JjO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNhYzNhODY5OC0zZjU3LTQ0NWUtODZmMy1mNWRhNDBkNmUwODEpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#ad8cbc"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-7c68f88c-59a7-45a6-bf74-35ef0f398135:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-7c68f88c-59a7-45a6-bf74-35ef0f398135-root {
    text-align: center;
  }


#s-7c68f88c-59a7-45a6-bf74-35ef0f398135.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-7c68f88c-59a7-45a6-bf74-35ef0f398135-root {
    text-align: center;
  }


#s-7c68f88c-59a7-45a6-bf74-35ef0f398135.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7c68f88c-59a7-45a6-bf74-35ef0f398135-root {
    text-align: center;
  }


#s-7c68f88c-59a7-45a6-bf74-35ef0f398135.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7c68f88c-59a7-45a6-bf74-35ef0f398135-root {
    text-align: center;
  }


#s-7c68f88c-59a7-45a6-bf74-35ef0f398135.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-7c68f88c-59a7-45a6-bf74-35ef0f398135-root {
    text-align: center;
  }


#s-7c68f88c-59a7-45a6-bf74-35ef0f398135.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-02af04b9-6a9e-475f-9d44-e7746880639d {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-02af04b9-6a9e-475f-9d44-e7746880639d:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNjgxMzg4NTctY2EzYi00NTQ0LTllNmYtOGE4NGMzOTg2NmJlIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojOTJiM2QwO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM2ODEzODg1Ny1jYTNiLTQ1NDQtOWU2Zi04YTg0YzM5ODY2YmUpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#92b3d0"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-02af04b9-6a9e-475f-9d44-e7746880639d:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-02af04b9-6a9e-475f-9d44-e7746880639d-root {
    text-align: center;
  }


#s-02af04b9-6a9e-475f-9d44-e7746880639d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-02af04b9-6a9e-475f-9d44-e7746880639d-root {
    text-align: center;
  }


#s-02af04b9-6a9e-475f-9d44-e7746880639d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-02af04b9-6a9e-475f-9d44-e7746880639d-root {
    text-align: center;
  }


#s-02af04b9-6a9e-475f-9d44-e7746880639d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-02af04b9-6a9e-475f-9d44-e7746880639d-root {
    text-align: center;
  }


#s-02af04b9-6a9e-475f-9d44-e7746880639d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-02af04b9-6a9e-475f-9d44-e7746880639d-root {
    text-align: center;
  }


#s-02af04b9-6a9e-475f-9d44-e7746880639d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-f0d3ee6f-4d25-40ad-991e-dd3d4d844888 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-f0d3ee6f-4d25-40ad-991e-dd3d4d844888:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iMWEwNzVmMjktNmI3ZS00NjU0LWFkMWQtYzNhNTg5ZGEzNzM4IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojOTJiM2QwO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCMxYTA3NWYyOS02YjdlLTQ2NTQtYWQxZC1jM2E1ODlkYTM3MzgpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#92b3d0"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-f0d3ee6f-4d25-40ad-991e-dd3d4d844888:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-f0d3ee6f-4d25-40ad-991e-dd3d4d844888-root {
    text-align: center;
  }


#s-f0d3ee6f-4d25-40ad-991e-dd3d4d844888.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-f0d3ee6f-4d25-40ad-991e-dd3d4d844888-root {
    text-align: center;
  }


#s-f0d3ee6f-4d25-40ad-991e-dd3d4d844888.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f0d3ee6f-4d25-40ad-991e-dd3d4d844888-root {
    text-align: center;
  }


#s-f0d3ee6f-4d25-40ad-991e-dd3d4d844888.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f0d3ee6f-4d25-40ad-991e-dd3d4d844888-root {
    text-align: center;
  }


#s-f0d3ee6f-4d25-40ad-991e-dd3d4d844888.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-f0d3ee6f-4d25-40ad-991e-dd3d4d844888-root {
    text-align: center;
  }


#s-f0d3ee6f-4d25-40ad-991e-dd3d4d844888.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-26fd4c0e-2cae-4a61-8849-a538d5e0ef36 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-26fd4c0e-2cae-4a61-8849-a538d5e0ef36:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNWI3Y2ZiMTQtZjc0Yi00YTZkLTg2NjctYjU1NjkxMjZkNjFiIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojYWQ4Y2JjO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM1YjdjZmIxNC1mNzRiLTRhNmQtODY2Ny1iNTU2OTEyNmQ2MWIpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#ad8cbc"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-26fd4c0e-2cae-4a61-8849-a538d5e0ef36:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-26fd4c0e-2cae-4a61-8849-a538d5e0ef36-root {
    text-align: center;
  }


#s-26fd4c0e-2cae-4a61-8849-a538d5e0ef36.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-26fd4c0e-2cae-4a61-8849-a538d5e0ef36-root {
    text-align: center;
  }


#s-26fd4c0e-2cae-4a61-8849-a538d5e0ef36.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-26fd4c0e-2cae-4a61-8849-a538d5e0ef36-root {
    text-align: center;
  }


#s-26fd4c0e-2cae-4a61-8849-a538d5e0ef36.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-26fd4c0e-2cae-4a61-8849-a538d5e0ef36-root {
    text-align: center;
  }


#s-26fd4c0e-2cae-4a61-8849-a538d5e0ef36.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-26fd4c0e-2cae-4a61-8849-a538d5e0ef36-root {
    text-align: center;
  }


#s-26fd4c0e-2cae-4a61-8849-a538d5e0ef36.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-94bb5a39-050e-4934-9cf4-140b0473c64f {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-94bb5a39-050e-4934-9cf4-140b0473c64f:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYjBjMjg5ZjItYjJiOS00MWIxLTkyMzYtOTUwNjhkYjJlNTlmIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojYWQ4Y2JjO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNiMGMyODlmMi1iMmI5LTQxYjEtOTIzNi05NTA2OGRiMmU1OWYpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#ad8cbc"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-94bb5a39-050e-4934-9cf4-140b0473c64f:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-94bb5a39-050e-4934-9cf4-140b0473c64f-root {
    text-align: center;
  }


#s-94bb5a39-050e-4934-9cf4-140b0473c64f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-94bb5a39-050e-4934-9cf4-140b0473c64f-root {
    text-align: center;
  }


#s-94bb5a39-050e-4934-9cf4-140b0473c64f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-94bb5a39-050e-4934-9cf4-140b0473c64f-root {
    text-align: center;
  }


#s-94bb5a39-050e-4934-9cf4-140b0473c64f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-94bb5a39-050e-4934-9cf4-140b0473c64f-root {
    text-align: center;
  }


#s-94bb5a39-050e-4934-9cf4-140b0473c64f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-94bb5a39-050e-4934-9cf4-140b0473c64f-root {
    text-align: center;
  }


#s-94bb5a39-050e-4934-9cf4-140b0473c64f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-de7aa71d-84be-4f5c-b45c-194eeb1ffdca {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-de7aa71d-84be-4f5c-b45c-194eeb1ffdca:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iMDk3Zjg0MWQtNDE0MC00ZThhLWI3NmQtN2VkOTJmYmFhMWJhIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZTI5ZmMxO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCMwOTdmODQxZC00MTQwLTRlOGEtYjc2ZC03ZWQ5MmZiYWExYmEpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#e29fc1"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-de7aa71d-84be-4f5c-b45c-194eeb1ffdca:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-de7aa71d-84be-4f5c-b45c-194eeb1ffdca-root {
    text-align: center;
  }


#s-de7aa71d-84be-4f5c-b45c-194eeb1ffdca.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-de7aa71d-84be-4f5c-b45c-194eeb1ffdca-root {
    text-align: center;
  }


#s-de7aa71d-84be-4f5c-b45c-194eeb1ffdca.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-de7aa71d-84be-4f5c-b45c-194eeb1ffdca-root {
    text-align: center;
  }


#s-de7aa71d-84be-4f5c-b45c-194eeb1ffdca.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-de7aa71d-84be-4f5c-b45c-194eeb1ffdca-root {
    text-align: center;
  }


#s-de7aa71d-84be-4f5c-b45c-194eeb1ffdca.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-de7aa71d-84be-4f5c-b45c-194eeb1ffdca-root {
    text-align: center;
  }


#s-de7aa71d-84be-4f5c-b45c-194eeb1ffdca.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-2ec67f77-9f8f-436e-8d15-e201486f1ba4 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-2ec67f77-9f8f-436e-8d15-e201486f1ba4:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iMTczYTNjOTgtN2JjNy00NTkwLWFiZDEtZGQ2NDg0YzZhNmY3IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZTI5ZmMxO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCMxNzNhM2M5OC03YmM3LTQ1OTAtYWJkMS1kZDY0ODRjNmE2ZjcpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#e29fc1"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-2ec67f77-9f8f-436e-8d15-e201486f1ba4:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-2ec67f77-9f8f-436e-8d15-e201486f1ba4-root {
    text-align: center;
  }


#s-2ec67f77-9f8f-436e-8d15-e201486f1ba4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-2ec67f77-9f8f-436e-8d15-e201486f1ba4-root {
    text-align: center;
  }


#s-2ec67f77-9f8f-436e-8d15-e201486f1ba4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-2ec67f77-9f8f-436e-8d15-e201486f1ba4-root {
    text-align: center;
  }


#s-2ec67f77-9f8f-436e-8d15-e201486f1ba4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-2ec67f77-9f8f-436e-8d15-e201486f1ba4-root {
    text-align: center;
  }


#s-2ec67f77-9f8f-436e-8d15-e201486f1ba4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-2ec67f77-9f8f-436e-8d15-e201486f1ba4-root {
    text-align: center;
  }


#s-2ec67f77-9f8f-436e-8d15-e201486f1ba4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-c70804c7-25ee-4e54-93e2-613be7657ba6 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-c70804c7-25ee-4e54-93e2-613be7657ba6:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iZGUwOWZlZjMtMjAyYy00ZjU1LWFmNmYtMzgwMzYwZjA2NjliIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZTI5ZmMxO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNkZTA5ZmVmMy0yMDJjLTRmNTUtYWY2Zi0zODAzNjBmMDY2OWIpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#e29fc1"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-c70804c7-25ee-4e54-93e2-613be7657ba6:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-c70804c7-25ee-4e54-93e2-613be7657ba6-root {
    text-align: center;
  }


#s-c70804c7-25ee-4e54-93e2-613be7657ba6.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-c70804c7-25ee-4e54-93e2-613be7657ba6-root {
    text-align: center;
  }


#s-c70804c7-25ee-4e54-93e2-613be7657ba6.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c70804c7-25ee-4e54-93e2-613be7657ba6-root {
    text-align: center;
  }


#s-c70804c7-25ee-4e54-93e2-613be7657ba6.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c70804c7-25ee-4e54-93e2-613be7657ba6-root {
    text-align: center;
  }


#s-c70804c7-25ee-4e54-93e2-613be7657ba6.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-c70804c7-25ee-4e54-93e2-613be7657ba6-root {
    text-align: center;
  }


#s-c70804c7-25ee-4e54-93e2-613be7657ba6.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-e2240fe1-c362-4b79-b2e9-f679af473542 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-e2240fe1-c362-4b79-b2e9-f679af473542:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iMTMzYjNkZTgtOWY3Mi00ZDZjLWJjNjMtMjRmMjZiYzcwOWJmIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojYTBkMGMyO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCMxMzNiM2RlOC05ZjcyLTRkNmMtYmM2My0yNGYyNmJjNzA5YmYpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#a0d0c2"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-e2240fe1-c362-4b79-b2e9-f679af473542:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-e2240fe1-c362-4b79-b2e9-f679af473542-root {
    text-align: center;
  }


#s-e2240fe1-c362-4b79-b2e9-f679af473542.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-e2240fe1-c362-4b79-b2e9-f679af473542-root {
    text-align: center;
  }


#s-e2240fe1-c362-4b79-b2e9-f679af473542.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e2240fe1-c362-4b79-b2e9-f679af473542-root {
    text-align: center;
  }


#s-e2240fe1-c362-4b79-b2e9-f679af473542.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e2240fe1-c362-4b79-b2e9-f679af473542-root {
    text-align: center;
  }


#s-e2240fe1-c362-4b79-b2e9-f679af473542.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-e2240fe1-c362-4b79-b2e9-f679af473542-root {
    text-align: center;
  }


#s-e2240fe1-c362-4b79-b2e9-f679af473542.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-5f6bfa1e-787f-4523-a515-6f8728611be9 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-5f6bfa1e-787f-4523-a515-6f8728611be9:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNGNlZjUyMzktMDNkNy00YzM4LThhZjMtNWM4MjkwNTdiNTNiIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWJhOTUwO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM0Y2VmNTIzOS0wM2Q3LTRjMzgtOGFmMy01YzgyOTA1N2I1M2IpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#eba950"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-5f6bfa1e-787f-4523-a515-6f8728611be9:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-5f6bfa1e-787f-4523-a515-6f8728611be9-root {
    text-align: center;
  }


#s-5f6bfa1e-787f-4523-a515-6f8728611be9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-5f6bfa1e-787f-4523-a515-6f8728611be9-root {
    text-align: center;
  }


#s-5f6bfa1e-787f-4523-a515-6f8728611be9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-5f6bfa1e-787f-4523-a515-6f8728611be9-root {
    text-align: center;
  }


#s-5f6bfa1e-787f-4523-a515-6f8728611be9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-5f6bfa1e-787f-4523-a515-6f8728611be9-root {
    text-align: center;
  }


#s-5f6bfa1e-787f-4523-a515-6f8728611be9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-5f6bfa1e-787f-4523-a515-6f8728611be9-root {
    text-align: center;
  }


#s-5f6bfa1e-787f-4523-a515-6f8728611be9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-922f4f15-15d0-4e01-ad89-c11900e3909e {
  min-height: 50px;
}
@media (min-width: 1200px){#s-922f4f15-15d0-4e01-ad89-c11900e3909e {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-922f4f15-15d0-4e01-ad89-c11900e3909e {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-922f4f15-15d0-4e01-ad89-c11900e3909e {
  display: none;
}
#s-922f4f15-15d0-4e01-ad89-c11900e3909e, #wrap-s-922f4f15-15d0-4e01-ad89-c11900e3909e, #wrap-content-s-922f4f15-15d0-4e01-ad89-c11900e3909e { display: none !important; }}@media (max-width: 767px){#s-922f4f15-15d0-4e01-ad89-c11900e3909e {
  display: none;
}
#s-922f4f15-15d0-4e01-ad89-c11900e3909e, #wrap-s-922f4f15-15d0-4e01-ad89-c11900e3909e, #wrap-content-s-922f4f15-15d0-4e01-ad89-c11900e3909e { display: none !important; }}







#s-922f4f15-15d0-4e01-ad89-c11900e3909e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-922f4f15-15d0-4e01-ad89-c11900e3909e.shg-box.shg-c {
  justify-content: flex-start;
}

#s-df2463ba-0ca3-4b5e-914c-53ae7110fde3 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-df2463ba-0ca3-4b5e-914c-53ae7110fde3 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-df2463ba-0ca3-4b5e-914c-53ae7110fde3 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-df2463ba-0ca3-4b5e-914c-53ae7110fde3 {
  display: none;
}
#s-df2463ba-0ca3-4b5e-914c-53ae7110fde3, #wrap-s-df2463ba-0ca3-4b5e-914c-53ae7110fde3, #wrap-content-s-df2463ba-0ca3-4b5e-914c-53ae7110fde3 { display: none !important; }}@media (max-width: 767px){#s-df2463ba-0ca3-4b5e-914c-53ae7110fde3 {
  display: none;
}
#s-df2463ba-0ca3-4b5e-914c-53ae7110fde3, #wrap-s-df2463ba-0ca3-4b5e-914c-53ae7110fde3, #wrap-content-s-df2463ba-0ca3-4b5e-914c-53ae7110fde3 { display: none !important; }}







#s-df2463ba-0ca3-4b5e-914c-53ae7110fde3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-df2463ba-0ca3-4b5e-914c-53ae7110fde3.shg-box.shg-c {
  justify-content: flex-start;
}

#s-86c5257e-88a6-438c-b6ba-0a79065cf80c {
  background-repeat: no-repeat;
background-size: cover;
margin-left: 0px;
margin-right: 0px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
min-height: 0px;
background-position: center top;
background-attachment: scroll;
}
@media (min-width: 1200px){#s-86c5257e-88a6-438c-b6ba-0a79065cf80c {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-86c5257e-88a6-438c-b6ba-0a79065cf80c {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-86c5257e-88a6-438c-b6ba-0a79065cf80c {
  display: none;
}
#s-86c5257e-88a6-438c-b6ba-0a79065cf80c, #wrap-s-86c5257e-88a6-438c-b6ba-0a79065cf80c, #wrap-content-s-86c5257e-88a6-438c-b6ba-0a79065cf80c { display: none !important; }}@media (max-width: 767px){#s-86c5257e-88a6-438c-b6ba-0a79065cf80c {
  display: none;
}
#s-86c5257e-88a6-438c-b6ba-0a79065cf80c, #wrap-s-86c5257e-88a6-438c-b6ba-0a79065cf80c, #wrap-content-s-86c5257e-88a6-438c-b6ba-0a79065cf80c { display: none !important; }}
#s-86c5257e-88a6-438c-b6ba-0a79065cf80c {
  background-image: url(https://i.shgcdn.com/c87c6cbc-077f-48d6-97f5-b82a3c150a1d/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-86c5257e-88a6-438c-b6ba-0a79065cf80c > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0.15;
  display: block;
}#s-86c5257e-88a6-438c-b6ba-0a79065cf80c.shg-box.shg-c {
  justify-content: center;
}
@media (max-width: 767px){






#s-86c5257e-88a6-438c-b6ba-0a79065cf80c > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0.15;
  display: block;
}#s-86c5257e-88a6-438c-b6ba-0a79065cf80c.shg-box.shg-c {
  justify-content: center;
}
}
.shg-row {
  display: flex;
  flex-wrap: wrap;
  min-height: inherit;
  max-height: inherit;
  justify-content: space-between;
}

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

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

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

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

#s-1590c7b3-ba5a-40c3-a8a5-ede664fa4f0b {
  margin-left: 30px;
margin-right: 30px;
min-height: 0px;
background-color: rgba(0, 2, 1, 0);
}

@media (min-width: 0px) {
[id="s-1590c7b3-ba5a-40c3-a8a5-ede664fa4f0b"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-1590c7b3-ba5a-40c3-a8a5-ede664fa4f0b"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-1590c7b3-ba5a-40c3-a8a5-ede664fa4f0b"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-1590c7b3-ba5a-40c3-a8a5-ede664fa4f0b"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-fb159041-668b-4a3d-823f-0d39d25c3f85 {
  margin-top: 25px;
margin-bottom: 25px;
min-height: 300px;
background-color: rgba(255, 255, 255, 1);
background-attachment: scroll;
opacity: 1;
}
@media (min-width: 768px) and (max-width: 991px){#s-fb159041-668b-4a3d-823f-0d39d25c3f85 {
  
}
}@media (max-width: 767px){#s-fb159041-668b-4a3d-823f-0d39d25c3f85 {
  
}
}







#s-fb159041-668b-4a3d-823f-0d39d25c3f85 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fb159041-668b-4a3d-823f-0d39d25c3f85.shg-box.shg-c {
  justify-content: flex-end;
}

#s-ccbba9b2-7f0e-491e-b1c8-39700f0970a5 {
  max-width: 800px;
aspect-ratio: 800/566;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}

#s-ccbba9b2-7f0e-491e-b1c8-39700f0970a5 {
  overflow: hidden;
  
  
      max-width: 800px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-ccbba9b2-7f0e-491e-b1c8-39700f0970a5 img.shogun-image,
  #s-ccbba9b2-7f0e-491e-b1c8-39700f0970a5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ccbba9b2-7f0e-491e-b1c8-39700f0970a5 {
    width: 100%;
    height: auto;
  }



  #s-ccbba9b2-7f0e-491e-b1c8-39700f0970a5 img.shogun-image {
    

    
    
    
  }


#s-ccbba9b2-7f0e-491e-b1c8-39700f0970a5 .shogun-image-content {
  
    justify-content: center;
  
}

#s-fb2486d6-6c15-4b45-ab10-be5d48aa5182 {
  padding-top: 10px;
padding-left: 23px;
padding-bottom: 10px;
padding-right: 23px;
border-top-width: 1px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(235, 169, 80, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-fb2486d6-6c15-4b45-ab10-be5d48aa5182:hover {border-style: solid !important;
border-color: rgba(225, 31, 143, 1) !important;
background-color: rgba(243, 112, 33, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-fb2486d6-6c15-4b45-ab10-be5d48aa5182:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-fb2486d6-6c15-4b45-ab10-be5d48aa5182-root {
    text-align: left;
  }


#s-fb2486d6-6c15-4b45-ab10-be5d48aa5182.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-fb2486d6-6c15-4b45-ab10-be5d48aa5182-root {
    text-align: left;
  }


#s-fb2486d6-6c15-4b45-ab10-be5d48aa5182.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-fb2486d6-6c15-4b45-ab10-be5d48aa5182-root {
    text-align: left;
  }


#s-fb2486d6-6c15-4b45-ab10-be5d48aa5182.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-fb2486d6-6c15-4b45-ab10-be5d48aa5182-root {
    text-align: left;
  }


#s-fb2486d6-6c15-4b45-ab10-be5d48aa5182.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-fb2486d6-6c15-4b45-ab10-be5d48aa5182-root {
    text-align: left;
  }


#s-fb2486d6-6c15-4b45-ab10-be5d48aa5182.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-408c99a5-9e37-47f2-9c4e-934d8f974ee7 {
  margin-left: 11px;
margin-right: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-408c99a5-9e37-47f2-9c4e-934d8f974ee7 {
  margin-right: 0px;
}
}@media (max-width: 767px){#s-408c99a5-9e37-47f2-9c4e-934d8f974ee7 {
  margin-right: 0px;
}
}
#s-408c99a5-9e37-47f2-9c4e-934d8f974ee7 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(255, 255, 255, 1);
}

#s-408c99a5-9e37-47f2-9c4e-934d8f974ee7 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 10px;
}

#s-408c99a5-9e37-47f2-9c4e-934d8f974ee7 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 1);
}

#s-408c99a5-9e37-47f2-9c4e-934d8f974ee7 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-408c99a5-9e37-47f2-9c4e-934d8f974ee7 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 1);
  text-align: left;
  font-family: Archivo Black;
  
  
  font-size: 17px;
}

#s-408c99a5-9e37-47f2-9c4e-934d8f974ee7 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 17px;
}
#s-6e836ad5-beeb-47c2-ba95-f7bfe75da312 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-6e836ad5-beeb-47c2-ba95-f7bfe75da312:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iODM4NTIzNzktOTRjMC00ZGU2LTk2YWMtMmRkYmZjOTdjYzhjIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojODliNGQzO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM4Mzg1MjM3OS05NGMwLTRkZTYtOTZhYy0yZGRiZmM5N2NjOGMpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#89b4d3"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-6e836ad5-beeb-47c2-ba95-f7bfe75da312:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-6e836ad5-beeb-47c2-ba95-f7bfe75da312-root {
    text-align: left;
  }


#s-6e836ad5-beeb-47c2-ba95-f7bfe75da312.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-6e836ad5-beeb-47c2-ba95-f7bfe75da312-root {
    text-align: left;
  }


#s-6e836ad5-beeb-47c2-ba95-f7bfe75da312.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6e836ad5-beeb-47c2-ba95-f7bfe75da312-root {
    text-align: left;
  }


#s-6e836ad5-beeb-47c2-ba95-f7bfe75da312.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6e836ad5-beeb-47c2-ba95-f7bfe75da312-root {
    text-align: left;
  }


#s-6e836ad5-beeb-47c2-ba95-f7bfe75da312.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-6e836ad5-beeb-47c2-ba95-f7bfe75da312-root {
    text-align: left;
  }


#s-6e836ad5-beeb-47c2-ba95-f7bfe75da312.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-f413da4c-7f0f-418f-8f3c-f14ff47350c5 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-f413da4c-7f0f-418f-8f3c-f14ff47350c5:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iZWUzM2NiOGEtYjNmMS00NDJiLThjM2ItOWQ2YTRkOWJkOGNiIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZWQ5YmMzO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIwLjk4OTA3MTM3Nzg0MDkwOSIgc3R5bGU9InN0b3AtY29sb3I6I2VkOWJjMztzdG9wLW9wYWNpdHk6MSIvPjxzdG9wIG9mZnNldD0iMSIgc3R5bGU9InN0b3AtY29sb3I6I2YzNzAyMTtzdG9wLW9wYWNpdHk6MSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZWUzM2NiOGEtYjNmMS00NDJiLThjM2ItOWQ2YTRkOWJkOGNiKSIvPjwvc3ZnPg==) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#ed9bc3"}, {"id"=>3, "pos"=>0.989071377840909, "color"=>"#ed9bc3"}, {"id"=>2, "pos"=>1, "color"=>"#f37021"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-f413da4c-7f0f-418f-8f3c-f14ff47350c5:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-f413da4c-7f0f-418f-8f3c-f14ff47350c5-root {
    text-align: left;
  }


#s-f413da4c-7f0f-418f-8f3c-f14ff47350c5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-f413da4c-7f0f-418f-8f3c-f14ff47350c5-root {
    text-align: left;
  }


#s-f413da4c-7f0f-418f-8f3c-f14ff47350c5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f413da4c-7f0f-418f-8f3c-f14ff47350c5-root {
    text-align: left;
  }


#s-f413da4c-7f0f-418f-8f3c-f14ff47350c5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f413da4c-7f0f-418f-8f3c-f14ff47350c5-root {
    text-align: left;
  }


#s-f413da4c-7f0f-418f-8f3c-f14ff47350c5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-f413da4c-7f0f-418f-8f3c-f14ff47350c5-root {
    text-align: left;
  }


#s-f413da4c-7f0f-418f-8f3c-f14ff47350c5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-570cf63a-b2e0-46fb-8f09-cf16ba215771 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-570cf63a-b2e0-46fb-8f09-cf16ba215771:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYjMzNWRlNjctN2Y0OS00ZjU0LTgzZTQtYzkwMzQ0Yjg4YTZlIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojOTJkMmMxO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNiMzM1ZGU2Ny03ZjQ5LTRmNTQtODNlNC1jOTAzNDRiODhhNmUpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#92d2c1"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-570cf63a-b2e0-46fb-8f09-cf16ba215771:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-570cf63a-b2e0-46fb-8f09-cf16ba215771-root {
    text-align: left;
  }


#s-570cf63a-b2e0-46fb-8f09-cf16ba215771.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-570cf63a-b2e0-46fb-8f09-cf16ba215771-root {
    text-align: left;
  }


#s-570cf63a-b2e0-46fb-8f09-cf16ba215771.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-570cf63a-b2e0-46fb-8f09-cf16ba215771-root {
    text-align: left;
  }


#s-570cf63a-b2e0-46fb-8f09-cf16ba215771.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-570cf63a-b2e0-46fb-8f09-cf16ba215771-root {
    text-align: left;
  }


#s-570cf63a-b2e0-46fb-8f09-cf16ba215771.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-570cf63a-b2e0-46fb-8f09-cf16ba215771-root {
    text-align: left;
  }


#s-570cf63a-b2e0-46fb-8f09-cf16ba215771.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-fbdcf8a6-228a-44b4-a8d8-0dbb91dbb4e6 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-fbdcf8a6-228a-44b4-a8d8-0dbb91dbb4e6:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iODc4ODVlNjMtNTEzZS00MjY2LWExZmMtZGJlM2IzMDk5YTU4IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwLjk5NTQ1NDU0NTQ1NDU0NTUiIHN0eWxlPSJzdG9wLWNvbG9yOiM4OWI0ZDM7c3RvcC1vcGFjaXR5OjEiLz48c3RvcCBvZmZzZXQ9IjEiIHN0eWxlPSJzdG9wLWNvbG9yOiNmMzcwMjE7c3RvcC1vcGFjaXR5OjEiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoIzg3ODg1ZTYzLTUxM2UtNDI2Ni1hMWZjLWRiZTNiMzA5OWE1OCkiLz48L3N2Zz4=) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>3, "pos"=>0.9954545454545455, "color"=>"#89b4d3"}, {"id"=>1, "pos"=>1, "color"=>"#f37021"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-fbdcf8a6-228a-44b4-a8d8-0dbb91dbb4e6:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-fbdcf8a6-228a-44b4-a8d8-0dbb91dbb4e6-root {
    text-align: left;
  }


#s-fbdcf8a6-228a-44b4-a8d8-0dbb91dbb4e6.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-fbdcf8a6-228a-44b4-a8d8-0dbb91dbb4e6-root {
    text-align: left;
  }


#s-fbdcf8a6-228a-44b4-a8d8-0dbb91dbb4e6.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-fbdcf8a6-228a-44b4-a8d8-0dbb91dbb4e6-root {
    text-align: left;
  }


#s-fbdcf8a6-228a-44b4-a8d8-0dbb91dbb4e6.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-fbdcf8a6-228a-44b4-a8d8-0dbb91dbb4e6-root {
    text-align: left;
  }


#s-fbdcf8a6-228a-44b4-a8d8-0dbb91dbb4e6.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-fbdcf8a6-228a-44b4-a8d8-0dbb91dbb4e6-root {
    text-align: left;
  }


#s-fbdcf8a6-228a-44b4-a8d8-0dbb91dbb4e6.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-5436ba65-c129-4a88-bdf4-095c60eea6df {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-5436ba65-c129-4a88-bdf4-095c60eea6df:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iZTFjNGMwMGEtZmQ3Yi00MzAzLWIwNjQtYTk3YzNlNTliZTdjIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojOTJkMmMxO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNlMWM0YzAwYS1mZDdiLTQzMDMtYjA2NC1hOTdjM2U1OWJlN2MpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#92d2c1"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-5436ba65-c129-4a88-bdf4-095c60eea6df:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-5436ba65-c129-4a88-bdf4-095c60eea6df-root {
    text-align: left;
  }


#s-5436ba65-c129-4a88-bdf4-095c60eea6df.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-5436ba65-c129-4a88-bdf4-095c60eea6df-root {
    text-align: left;
  }


#s-5436ba65-c129-4a88-bdf4-095c60eea6df.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-5436ba65-c129-4a88-bdf4-095c60eea6df-root {
    text-align: left;
  }


#s-5436ba65-c129-4a88-bdf4-095c60eea6df.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-5436ba65-c129-4a88-bdf4-095c60eea6df-root {
    text-align: left;
  }


#s-5436ba65-c129-4a88-bdf4-095c60eea6df.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-5436ba65-c129-4a88-bdf4-095c60eea6df-root {
    text-align: left;
  }


#s-5436ba65-c129-4a88-bdf4-095c60eea6df.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-a2365cc3-a022-46d6-adf9-2581ed4fe19d {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-a2365cc3-a022-46d6-adf9-2581ed4fe19d:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNDQ3OGE5YTctNTcyMy00MzQxLWFiZmEtYzhiNmNkNWI5OGY5IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwLjk5NTQ1NDU0NTQ1NDU0NTUiIHN0eWxlPSJzdG9wLWNvbG9yOiNiMzhiYmY7c3RvcC1vcGFjaXR5OjEiLz48c3RvcCBvZmZzZXQ9IjEiIHN0eWxlPSJzdG9wLWNvbG9yOiNmMzcwMjE7c3RvcC1vcGFjaXR5OjEiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoIzQ0NzhhOWE3LTU3MjMtNDM0MS1hYmZhLWM4YjZjZDViOThmOSkiLz48L3N2Zz4=) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>3, "pos"=>0.9954545454545455, "color"=>"#b38bbf"}, {"id"=>1, "pos"=>1, "color"=>"#f37021"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-a2365cc3-a022-46d6-adf9-2581ed4fe19d:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-a2365cc3-a022-46d6-adf9-2581ed4fe19d-root {
    text-align: left;
  }


#s-a2365cc3-a022-46d6-adf9-2581ed4fe19d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-a2365cc3-a022-46d6-adf9-2581ed4fe19d-root {
    text-align: left;
  }


#s-a2365cc3-a022-46d6-adf9-2581ed4fe19d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a2365cc3-a022-46d6-adf9-2581ed4fe19d-root {
    text-align: left;
  }


#s-a2365cc3-a022-46d6-adf9-2581ed4fe19d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a2365cc3-a022-46d6-adf9-2581ed4fe19d-root {
    text-align: left;
  }


#s-a2365cc3-a022-46d6-adf9-2581ed4fe19d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-a2365cc3-a022-46d6-adf9-2581ed4fe19d-root {
    text-align: left;
  }


#s-a2365cc3-a022-46d6-adf9-2581ed4fe19d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-0f7338a9-6631-4099-b6e1-0f8c3e28a766 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-0f7338a9-6631-4099-b6e1-0f8c3e28a766:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iZjZiYWE4MjItM2MzNy00YTMxLWFlMmQtYTc5YTBlNjA0MjUxIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojOTJkMmMxO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNmNmJhYTgyMi0zYzM3LTRhMzEtYWUyZC1hNzlhMGU2MDQyNTEpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#92d2c1"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-0f7338a9-6631-4099-b6e1-0f8c3e28a766:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-0f7338a9-6631-4099-b6e1-0f8c3e28a766-root {
    text-align: left;
  }


#s-0f7338a9-6631-4099-b6e1-0f8c3e28a766.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-0f7338a9-6631-4099-b6e1-0f8c3e28a766-root {
    text-align: left;
  }


#s-0f7338a9-6631-4099-b6e1-0f8c3e28a766.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-0f7338a9-6631-4099-b6e1-0f8c3e28a766-root {
    text-align: left;
  }


#s-0f7338a9-6631-4099-b6e1-0f8c3e28a766.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-0f7338a9-6631-4099-b6e1-0f8c3e28a766-root {
    text-align: left;
  }


#s-0f7338a9-6631-4099-b6e1-0f8c3e28a766.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-0f7338a9-6631-4099-b6e1-0f8c3e28a766-root {
    text-align: left;
  }


#s-0f7338a9-6631-4099-b6e1-0f8c3e28a766.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-9d660638-3400-4f51-b206-be41f9cd7fe5 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-9d660638-3400-4f51-b206-be41f9cd7fe5:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iMWM1YThlYmItZDg3Yi00MWI2LWFmODMtNzE2NmIzYTU0ZGMzIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwLjk5NTQ1NDU0NTQ1NDU0NTUiIHN0eWxlPSJzdG9wLWNvbG9yOiNiMzhiYmY7c3RvcC1vcGFjaXR5OjEiLz48c3RvcCBvZmZzZXQ9IjEiIHN0eWxlPSJzdG9wLWNvbG9yOiNmMzcwMjE7c3RvcC1vcGFjaXR5OjEiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoIzFjNWE4ZWJiLWQ4N2ItNDFiNi1hZjgzLTcxNjZiM2E1NGRjMykiLz48L3N2Zz4=) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>3, "pos"=>0.9954545454545455, "color"=>"#b38bbf"}, {"id"=>1, "pos"=>1, "color"=>"#f37021"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-9d660638-3400-4f51-b206-be41f9cd7fe5:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-9d660638-3400-4f51-b206-be41f9cd7fe5-root {
    text-align: left;
  }


#s-9d660638-3400-4f51-b206-be41f9cd7fe5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-9d660638-3400-4f51-b206-be41f9cd7fe5-root {
    text-align: left;
  }


#s-9d660638-3400-4f51-b206-be41f9cd7fe5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9d660638-3400-4f51-b206-be41f9cd7fe5-root {
    text-align: left;
  }


#s-9d660638-3400-4f51-b206-be41f9cd7fe5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9d660638-3400-4f51-b206-be41f9cd7fe5-root {
    text-align: left;
  }


#s-9d660638-3400-4f51-b206-be41f9cd7fe5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-9d660638-3400-4f51-b206-be41f9cd7fe5-root {
    text-align: left;
  }


#s-9d660638-3400-4f51-b206-be41f9cd7fe5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-1bd6643b-8938-4366-b9e7-675fd54aa1cb {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-1bd6643b-8938-4366-b9e7-675fd54aa1cb:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iODY2M2U0NDktMzEyNi00YjljLTlmODktNjJjZDgwZjlhY2I3IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojYjM4YmJmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM4NjYzZTQ0OS0zMTI2LTRiOWMtOWY4OS02MmNkODBmOWFjYjcpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#b38bbf"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-1bd6643b-8938-4366-b9e7-675fd54aa1cb:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-1bd6643b-8938-4366-b9e7-675fd54aa1cb-root {
    text-align: left;
  }


#s-1bd6643b-8938-4366-b9e7-675fd54aa1cb.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-1bd6643b-8938-4366-b9e7-675fd54aa1cb-root {
    text-align: left;
  }


#s-1bd6643b-8938-4366-b9e7-675fd54aa1cb.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-1bd6643b-8938-4366-b9e7-675fd54aa1cb-root {
    text-align: left;
  }


#s-1bd6643b-8938-4366-b9e7-675fd54aa1cb.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-1bd6643b-8938-4366-b9e7-675fd54aa1cb-root {
    text-align: left;
  }


#s-1bd6643b-8938-4366-b9e7-675fd54aa1cb.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-1bd6643b-8938-4366-b9e7-675fd54aa1cb-root {
    text-align: left;
  }


#s-1bd6643b-8938-4366-b9e7-675fd54aa1cb.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-a120dc3c-e71d-4ab7-8de9-f675be4e83a0 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-a120dc3c-e71d-4ab7-8de9-f675be4e83a0:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNmQyZWQwMGQtZDVlNS00YTM0LTlhMWYtMzc4MzRiN2FkMGEzIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwLjk5NTQ1NDU0NTQ1NDU0NTUiIHN0eWxlPSJzdG9wLWNvbG9yOiNiMzhiYmY7c3RvcC1vcGFjaXR5OjEiLz48c3RvcCBvZmZzZXQ9IjEiIHN0eWxlPSJzdG9wLWNvbG9yOiNmMzcwMjE7c3RvcC1vcGFjaXR5OjEiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoIzZkMmVkMDBkLWQ1ZTUtNGEzNC05YTFmLTM3ODM0YjdhZDBhMykiLz48L3N2Zz4=) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>3, "pos"=>0.9954545454545455, "color"=>"#b38bbf"}, {"id"=>1, "pos"=>1, "color"=>"#f37021"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-a120dc3c-e71d-4ab7-8de9-f675be4e83a0:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-a120dc3c-e71d-4ab7-8de9-f675be4e83a0-root {
    text-align: left;
  }


#s-a120dc3c-e71d-4ab7-8de9-f675be4e83a0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-a120dc3c-e71d-4ab7-8de9-f675be4e83a0-root {
    text-align: left;
  }


#s-a120dc3c-e71d-4ab7-8de9-f675be4e83a0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a120dc3c-e71d-4ab7-8de9-f675be4e83a0-root {
    text-align: left;
  }


#s-a120dc3c-e71d-4ab7-8de9-f675be4e83a0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a120dc3c-e71d-4ab7-8de9-f675be4e83a0-root {
    text-align: left;
  }


#s-a120dc3c-e71d-4ab7-8de9-f675be4e83a0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-a120dc3c-e71d-4ab7-8de9-f675be4e83a0-root {
    text-align: left;
  }


#s-a120dc3c-e71d-4ab7-8de9-f675be4e83a0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-3c874c3f-6627-44de-80b2-b0cc135e193d {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-3c874c3f-6627-44de-80b2-b0cc135e193d:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNTI1YzkyZTYtYjY4NS00OGQwLWE3YWQtYjU4OTRkNjdhOGM2IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWQ5YmMzO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM1MjVjOTJlNi1iNjg1LTQ4ZDAtYTdhZC1iNTg5NGQ2N2E4YzYpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#ed9bc3"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-3c874c3f-6627-44de-80b2-b0cc135e193d:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-3c874c3f-6627-44de-80b2-b0cc135e193d-root {
    text-align: left;
  }


#s-3c874c3f-6627-44de-80b2-b0cc135e193d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-3c874c3f-6627-44de-80b2-b0cc135e193d-root {
    text-align: left;
  }


#s-3c874c3f-6627-44de-80b2-b0cc135e193d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-3c874c3f-6627-44de-80b2-b0cc135e193d-root {
    text-align: left;
  }


#s-3c874c3f-6627-44de-80b2-b0cc135e193d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-3c874c3f-6627-44de-80b2-b0cc135e193d-root {
    text-align: left;
  }


#s-3c874c3f-6627-44de-80b2-b0cc135e193d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-3c874c3f-6627-44de-80b2-b0cc135e193d-root {
    text-align: left;
  }


#s-3c874c3f-6627-44de-80b2-b0cc135e193d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-d022cda0-31a7-46ce-981c-f80878b1e2ae {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-d022cda0-31a7-46ce-981c-f80878b1e2ae:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iMDM4ZjNmOTUtNmU5NC00M2FlLWFhYjMtNzkzNGE5NGYxMGZiIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojYjM4YmJmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCMwMzhmM2Y5NS02ZTk0LTQzYWUtYWFiMy03OTM0YTk0ZjEwZmIpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#b38bbf"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-d022cda0-31a7-46ce-981c-f80878b1e2ae:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-d022cda0-31a7-46ce-981c-f80878b1e2ae-root {
    text-align: left;
  }


#s-d022cda0-31a7-46ce-981c-f80878b1e2ae.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-d022cda0-31a7-46ce-981c-f80878b1e2ae-root {
    text-align: left;
  }


#s-d022cda0-31a7-46ce-981c-f80878b1e2ae.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d022cda0-31a7-46ce-981c-f80878b1e2ae-root {
    text-align: left;
  }


#s-d022cda0-31a7-46ce-981c-f80878b1e2ae.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d022cda0-31a7-46ce-981c-f80878b1e2ae-root {
    text-align: left;
  }


#s-d022cda0-31a7-46ce-981c-f80878b1e2ae.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-d022cda0-31a7-46ce-981c-f80878b1e2ae-root {
    text-align: left;
  }


#s-d022cda0-31a7-46ce-981c-f80878b1e2ae.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-feedfbf8-96ee-48f0-b489-ca2b025b8c6d {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-feedfbf8-96ee-48f0-b489-ca2b025b8c6d:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iZWM1MzY0YTItNTA0Ni00ZDRkLThlNWItNzUzYmRlODkwOGU1IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWQ5YmMzO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNlYzUzNjRhMi01MDQ2LTRkNGQtOGU1Yi03NTNiZGU4OTA4ZTUpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#ed9bc3"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-feedfbf8-96ee-48f0-b489-ca2b025b8c6d:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-feedfbf8-96ee-48f0-b489-ca2b025b8c6d-root {
    text-align: left;
  }


#s-feedfbf8-96ee-48f0-b489-ca2b025b8c6d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-feedfbf8-96ee-48f0-b489-ca2b025b8c6d-root {
    text-align: left;
  }


#s-feedfbf8-96ee-48f0-b489-ca2b025b8c6d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-feedfbf8-96ee-48f0-b489-ca2b025b8c6d-root {
    text-align: left;
  }


#s-feedfbf8-96ee-48f0-b489-ca2b025b8c6d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-feedfbf8-96ee-48f0-b489-ca2b025b8c6d-root {
    text-align: left;
  }


#s-feedfbf8-96ee-48f0-b489-ca2b025b8c6d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-feedfbf8-96ee-48f0-b489-ca2b025b8c6d-root {
    text-align: left;
  }


#s-feedfbf8-96ee-48f0-b489-ca2b025b8c6d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-c44371cf-f3b3-4e1b-96c2-438a40681e77 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-c44371cf-f3b3-4e1b-96c2-438a40681e77:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNGFiNzU2MzgtOWM1OS00ZWQ0LTg2ZWMtMThmZDNmOTg2YTkwIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWQ5YmMzO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM0YWI3NTYzOC05YzU5LTRlZDQtODZlYy0xOGZkM2Y5ODZhOTApIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#ed9bc3"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-c44371cf-f3b3-4e1b-96c2-438a40681e77:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-c44371cf-f3b3-4e1b-96c2-438a40681e77-root {
    text-align: left;
  }


#s-c44371cf-f3b3-4e1b-96c2-438a40681e77.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-c44371cf-f3b3-4e1b-96c2-438a40681e77-root {
    text-align: left;
  }


#s-c44371cf-f3b3-4e1b-96c2-438a40681e77.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c44371cf-f3b3-4e1b-96c2-438a40681e77-root {
    text-align: left;
  }


#s-c44371cf-f3b3-4e1b-96c2-438a40681e77.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c44371cf-f3b3-4e1b-96c2-438a40681e77-root {
    text-align: left;
  }


#s-c44371cf-f3b3-4e1b-96c2-438a40681e77.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-c44371cf-f3b3-4e1b-96c2-438a40681e77-root {
    text-align: left;
  }


#s-c44371cf-f3b3-4e1b-96c2-438a40681e77.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-4bf5e32d-4e69-4b1a-9b85-fece1693ca7a {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-4bf5e32d-4e69-4b1a-9b85-fece1693ca7a:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iMjkwNTU2YTQtNTg5YS00YWY0LWE1MDgtYmNiM2I2MDhiOTM4IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZjdhNTM4O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCMyOTA1NTZhNC01ODlhLTRhZjQtYTUwOC1iY2IzYjYwOGI5MzgpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#f7a538"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-4bf5e32d-4e69-4b1a-9b85-fece1693ca7a:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-4bf5e32d-4e69-4b1a-9b85-fece1693ca7a-root {
    text-align: left;
  }


#s-4bf5e32d-4e69-4b1a-9b85-fece1693ca7a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-4bf5e32d-4e69-4b1a-9b85-fece1693ca7a-root {
    text-align: left;
  }


#s-4bf5e32d-4e69-4b1a-9b85-fece1693ca7a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4bf5e32d-4e69-4b1a-9b85-fece1693ca7a-root {
    text-align: left;
  }


#s-4bf5e32d-4e69-4b1a-9b85-fece1693ca7a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4bf5e32d-4e69-4b1a-9b85-fece1693ca7a-root {
    text-align: left;
  }


#s-4bf5e32d-4e69-4b1a-9b85-fece1693ca7a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-4bf5e32d-4e69-4b1a-9b85-fece1693ca7a-root {
    text-align: left;
  }


#s-4bf5e32d-4e69-4b1a-9b85-fece1693ca7a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-e235fc16-ddac-43df-bee8-a90945d407fa {
  margin-left: 11px;
margin-right: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-e235fc16-ddac-43df-bee8-a90945d407fa {
  margin-right: 0px;
}
}@media (max-width: 767px){#s-e235fc16-ddac-43df-bee8-a90945d407fa {
  margin-right: 0px;
}
}
#s-e235fc16-ddac-43df-bee8-a90945d407fa > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(255, 255, 255, 1);
}

#s-e235fc16-ddac-43df-bee8-a90945d407fa > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 10px;
}

#s-e235fc16-ddac-43df-bee8-a90945d407fa > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 1);
}

#s-e235fc16-ddac-43df-bee8-a90945d407fa > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-e235fc16-ddac-43df-bee8-a90945d407fa > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 1);
  text-align: left;
  font-family: Archivo Black;
  
  
  font-size: 17px;
}

#s-e235fc16-ddac-43df-bee8-a90945d407fa > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 17px;
}
#s-cc8b62d4-e73e-47d8-9b80-8eff2503cb77 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-cc8b62d4-e73e-47d8-9b80-8eff2503cb77:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iMmZiNmY4YTEtYmVlMC00ZDI0LTk4YTAtMTQ2MDJmOWQzNjBlIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojOTJkMmMxO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCMyZmI2ZjhhMS1iZWUwLTRkMjQtOThhMC0xNDYwMmY5ZDM2MGUpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#92d2c1"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-cc8b62d4-e73e-47d8-9b80-8eff2503cb77:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-cc8b62d4-e73e-47d8-9b80-8eff2503cb77-root {
    text-align: left;
  }


#s-cc8b62d4-e73e-47d8-9b80-8eff2503cb77.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-cc8b62d4-e73e-47d8-9b80-8eff2503cb77-root {
    text-align: left;
  }


#s-cc8b62d4-e73e-47d8-9b80-8eff2503cb77.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-cc8b62d4-e73e-47d8-9b80-8eff2503cb77-root {
    text-align: left;
  }


#s-cc8b62d4-e73e-47d8-9b80-8eff2503cb77.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-cc8b62d4-e73e-47d8-9b80-8eff2503cb77-root {
    text-align: left;
  }


#s-cc8b62d4-e73e-47d8-9b80-8eff2503cb77.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-cc8b62d4-e73e-47d8-9b80-8eff2503cb77-root {
    text-align: left;
  }


#s-cc8b62d4-e73e-47d8-9b80-8eff2503cb77.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-b562f0fd-a9c5-4c7c-b95f-ba591bcfec04 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-b562f0fd-a9c5-4c7c-b95f-ba591bcfec04:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iZTQzOTZmMDMtNTc2YS00YjI0LTg0ODAtYjIwYmNhNjcxOGYxIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojOTJkMmMxO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNlNDM5NmYwMy01NzZhLTRiMjQtODQ4MC1iMjBiY2E2NzE4ZjEpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#92d2c1"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-b562f0fd-a9c5-4c7c-b95f-ba591bcfec04:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-b562f0fd-a9c5-4c7c-b95f-ba591bcfec04-root {
    text-align: left;
  }


#s-b562f0fd-a9c5-4c7c-b95f-ba591bcfec04.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-b562f0fd-a9c5-4c7c-b95f-ba591bcfec04-root {
    text-align: left;
  }


#s-b562f0fd-a9c5-4c7c-b95f-ba591bcfec04.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b562f0fd-a9c5-4c7c-b95f-ba591bcfec04-root {
    text-align: left;
  }


#s-b562f0fd-a9c5-4c7c-b95f-ba591bcfec04.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b562f0fd-a9c5-4c7c-b95f-ba591bcfec04-root {
    text-align: left;
  }


#s-b562f0fd-a9c5-4c7c-b95f-ba591bcfec04.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-b562f0fd-a9c5-4c7c-b95f-ba591bcfec04-root {
    text-align: left;
  }


#s-b562f0fd-a9c5-4c7c-b95f-ba591bcfec04.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-144f7adc-d5f5-43fd-98bd-7e755059653a {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 14px;
padding-left: 20px;
padding-bottom: 14px;
padding-right: 20px;
border-radius: 0px;
background-color: rgba(237, 155, 195, 1);
text-align: center;
text-decoration: none;
line-height: 1em;
letter-spacing: 1px;
background-image: none;
hover-type: color;
}
#s-144f7adc-d5f5-43fd-98bd-7e755059653a:hover {background-color: rgba(225, 31, 143, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-144f7adc-d5f5-43fd-98bd-7e755059653a:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-144f7adc-d5f5-43fd-98bd-7e755059653a-root {
    text-align: center;
  }


#s-144f7adc-d5f5-43fd-98bd-7e755059653a.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-144f7adc-d5f5-43fd-98bd-7e755059653a-root {
    text-align: center;
  }


#s-144f7adc-d5f5-43fd-98bd-7e755059653a.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-144f7adc-d5f5-43fd-98bd-7e755059653a-root {
    text-align: center;
  }


#s-144f7adc-d5f5-43fd-98bd-7e755059653a.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-144f7adc-d5f5-43fd-98bd-7e755059653a-root {
    text-align: center;
  }


#s-144f7adc-d5f5-43fd-98bd-7e755059653a.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-144f7adc-d5f5-43fd-98bd-7e755059653a-root {
    text-align: center;
  }


#s-144f7adc-d5f5-43fd-98bd-7e755059653a.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-f4b34a01-c82b-4e9e-972b-10ee56e93555 {
  margin-top: 50px;
margin-bottom: 50px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 0.5);
border-style: solid;
border-radius: 0px;
min-height: 0px;
opacity: 1;
background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767px){#s-f4b34a01-c82b-4e9e-972b-10ee56e93555 {
  display: none;
}
#s-f4b34a01-c82b-4e9e-972b-10ee56e93555, #wrap-s-f4b34a01-c82b-4e9e-972b-10ee56e93555, #wrap-content-s-f4b34a01-c82b-4e9e-972b-10ee56e93555 { display: none !important; }}







#s-f4b34a01-c82b-4e9e-972b-10ee56e93555 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f4b34a01-c82b-4e9e-972b-10ee56e93555.shg-box.shg-c {
  justify-content: flex-end;
}

#s-00c855de-1159-4ba5-829d-45e6e66b0b2c {
  background-repeat: no-repeat;
background-size: cover;
margin-left: 0px;
margin-right: 0px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
min-height: 0px;
background-position: center center;
background-attachment: scroll;
}
@media (min-width: 1200px){#s-00c855de-1159-4ba5-829d-45e6e66b0b2c {
  display: none;
}
#s-00c855de-1159-4ba5-829d-45e6e66b0b2c, #wrap-s-00c855de-1159-4ba5-829d-45e6e66b0b2c, #wrap-content-s-00c855de-1159-4ba5-829d-45e6e66b0b2c { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-00c855de-1159-4ba5-829d-45e6e66b0b2c {
  display: none;
}
#s-00c855de-1159-4ba5-829d-45e6e66b0b2c, #wrap-s-00c855de-1159-4ba5-829d-45e6e66b0b2c, #wrap-content-s-00c855de-1159-4ba5-829d-45e6e66b0b2c { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-00c855de-1159-4ba5-829d-45e6e66b0b2c {
  display: none;
}
#s-00c855de-1159-4ba5-829d-45e6e66b0b2c, #wrap-s-00c855de-1159-4ba5-829d-45e6e66b0b2c, #wrap-content-s-00c855de-1159-4ba5-829d-45e6e66b0b2c { display: none !important; }}@media (max-width: 767px){#s-00c855de-1159-4ba5-829d-45e6e66b0b2c {
  display: none;
}
#s-00c855de-1159-4ba5-829d-45e6e66b0b2c, #wrap-s-00c855de-1159-4ba5-829d-45e6e66b0b2c, #wrap-content-s-00c855de-1159-4ba5-829d-45e6e66b0b2c { display: none !important; }}
#s-00c855de-1159-4ba5-829d-45e6e66b0b2c {
  background-image: url(https://i.shgcdn.com/bccb7249-b9bd-4380-be30-d138aa41b6be/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-00c855de-1159-4ba5-829d-45e6e66b0b2c > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0.15;
  display: block;
}#s-00c855de-1159-4ba5-829d-45e6e66b0b2c.shg-box.shg-c {
  justify-content: center;
}
@media (max-width: 767px){






#s-00c855de-1159-4ba5-829d-45e6e66b0b2c > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0.15;
  display: block;
}#s-00c855de-1159-4ba5-829d-45e6e66b0b2c.shg-box.shg-c {
  justify-content: center;
}
}
#s-c1867620-bc1f-4834-be95-7bfc23889e5e {
  margin-left: 30px;
margin-right: 30px;
min-height: 0px;
background-color: rgba(0, 2, 1, 0);
}

@media (min-width: 0px) {
[id="s-c1867620-bc1f-4834-be95-7bfc23889e5e"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-c1867620-bc1f-4834-be95-7bfc23889e5e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-c1867620-bc1f-4834-be95-7bfc23889e5e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-c1867620-bc1f-4834-be95-7bfc23889e5e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-feed105f-4768-4c56-8a43-b84010d134b2 {
  margin-top: 25px;
margin-bottom: 25px;
min-height: 300px;
background-color: rgba(255, 255, 255, 1);
background-attachment: scroll;
opacity: 1;
}
@media (min-width: 768px) and (max-width: 991px){#s-feed105f-4768-4c56-8a43-b84010d134b2 {
  
}
}@media (max-width: 767px){#s-feed105f-4768-4c56-8a43-b84010d134b2 {
  
}
}







#s-feed105f-4768-4c56-8a43-b84010d134b2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-feed105f-4768-4c56-8a43-b84010d134b2.shg-box.shg-c {
  justify-content: flex-end;
}

#s-510a6370-0f2b-4051-9865-072f30287510 {
  text-align: center;
background-color: rgba(255, 255, 255, 1);
}

#s-510a6370-0f2b-4051-9865-072f30287510 {
  overflow: hidden;
  
  
}







  #s-510a6370-0f2b-4051-9865-072f30287510 img.shogun-image {
    

    
    
    
  }


#s-510a6370-0f2b-4051-9865-072f30287510 .shogun-image-content {
  
    justify-content: center;
  
}

#s-99f9db1e-a4ae-432c-805f-5130954ed01f {
  padding-top: 10px;
padding-left: 23px;
padding-bottom: 10px;
padding-right: 23px;
border-top-width: 1px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(138, 208, 191, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-99f9db1e-a4ae-432c-805f-5130954ed01f:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYTQ1MWEwZmQtYmJlOC00ODIxLTllYjktODEzZDJmZTM5NGYwIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojY2NjN2M3O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNhNDUxYTBmZC1iYmU4LTQ4MjEtOWViOS04MTNkMmZlMzk0ZjApIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#ccc7c7"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-99f9db1e-a4ae-432c-805f-5130954ed01f:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-99f9db1e-a4ae-432c-805f-5130954ed01f-root {
    text-align: left;
  }


#s-99f9db1e-a4ae-432c-805f-5130954ed01f.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-99f9db1e-a4ae-432c-805f-5130954ed01f-root {
    text-align: left;
  }


#s-99f9db1e-a4ae-432c-805f-5130954ed01f.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-99f9db1e-a4ae-432c-805f-5130954ed01f-root {
    text-align: left;
  }


#s-99f9db1e-a4ae-432c-805f-5130954ed01f.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-99f9db1e-a4ae-432c-805f-5130954ed01f-root {
    text-align: left;
  }


#s-99f9db1e-a4ae-432c-805f-5130954ed01f.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-99f9db1e-a4ae-432c-805f-5130954ed01f-root {
    text-align: left;
  }


#s-99f9db1e-a4ae-432c-805f-5130954ed01f.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-5f423b9d-c3cb-4c65-8389-f9619eddfbae {
  margin-left: 11px;
margin-right: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-5f423b9d-c3cb-4c65-8389-f9619eddfbae {
  margin-right: 0px;
}
}@media (max-width: 767px){#s-5f423b9d-c3cb-4c65-8389-f9619eddfbae {
  margin-right: 0px;
}
}
#s-5f423b9d-c3cb-4c65-8389-f9619eddfbae > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(255, 255, 255, 1);
}

#s-5f423b9d-c3cb-4c65-8389-f9619eddfbae > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 10px;
}

#s-5f423b9d-c3cb-4c65-8389-f9619eddfbae > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(91, 103, 112, 1);
}

#s-5f423b9d-c3cb-4c65-8389-f9619eddfbae > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-5f423b9d-c3cb-4c65-8389-f9619eddfbae > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(91, 103, 112, 1);
  text-align: left;
  font-family: Archivo Black;
  
  
  font-size: 17px;
}

#s-5f423b9d-c3cb-4c65-8389-f9619eddfbae > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 17px;
}
#s-e71bd78f-713f-4d38-8223-c936da79b0b0 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-e71bd78f-713f-4d38-8223-c936da79b0b0:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iZjljODE4NjgtM2M0OS00MDc3LWEzOGEtNmJmNTJhYjY4ZjA2IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojOGFkMGJmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojOGFkMGJmO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNmOWM4MTg2OC0zYzQ5LTQwNzctYTM4YS02YmY1MmFiNjhmMDYpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#8ad0bf"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}, {"id"=>3, "pos"=>1, "color"=>"#8ad0bf"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-e71bd78f-713f-4d38-8223-c936da79b0b0:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-e71bd78f-713f-4d38-8223-c936da79b0b0-root {
    text-align: left;
  }


#s-e71bd78f-713f-4d38-8223-c936da79b0b0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-e71bd78f-713f-4d38-8223-c936da79b0b0-root {
    text-align: left;
  }


#s-e71bd78f-713f-4d38-8223-c936da79b0b0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e71bd78f-713f-4d38-8223-c936da79b0b0-root {
    text-align: left;
  }


#s-e71bd78f-713f-4d38-8223-c936da79b0b0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e71bd78f-713f-4d38-8223-c936da79b0b0-root {
    text-align: left;
  }


#s-e71bd78f-713f-4d38-8223-c936da79b0b0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-e71bd78f-713f-4d38-8223-c936da79b0b0-root {
    text-align: left;
  }


#s-e71bd78f-713f-4d38-8223-c936da79b0b0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-389a35b0-2977-446a-b03e-9d7c27ed0850 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-389a35b0-2977-446a-b03e-9d7c27ed0850:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNzVmYjhiMGEtYzljNi00ZTVjLTk0NjktMjUxM2RkMTExOTJjIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojOGFkMGJmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM3NWZiOGIwYS1jOWM2LTRlNWMtOTQ2OS0yNTEzZGQxMTE5MmMpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#8ad0bf"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-389a35b0-2977-446a-b03e-9d7c27ed0850:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-389a35b0-2977-446a-b03e-9d7c27ed0850-root {
    text-align: left;
  }


#s-389a35b0-2977-446a-b03e-9d7c27ed0850.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-389a35b0-2977-446a-b03e-9d7c27ed0850-root {
    text-align: left;
  }


#s-389a35b0-2977-446a-b03e-9d7c27ed0850.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-389a35b0-2977-446a-b03e-9d7c27ed0850-root {
    text-align: left;
  }


#s-389a35b0-2977-446a-b03e-9d7c27ed0850.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-389a35b0-2977-446a-b03e-9d7c27ed0850-root {
    text-align: left;
  }


#s-389a35b0-2977-446a-b03e-9d7c27ed0850.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-389a35b0-2977-446a-b03e-9d7c27ed0850-root {
    text-align: left;
  }


#s-389a35b0-2977-446a-b03e-9d7c27ed0850.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-f9ee59f6-af20-450e-9170-1a1b747bd070 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-f9ee59f6-af20-450e-9170-1a1b747bd070:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iODhjMjcyOWEtYjViNS00NGE2LWEzZTctMmM0MzRkNWI2ZDlhIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojOGFkMGJmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM4OGMyNzI5YS1iNWI1LTQ0YTYtYTNlNy0yYzQzNGQ1YjZkOWEpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#8ad0bf"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-f9ee59f6-af20-450e-9170-1a1b747bd070:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-f9ee59f6-af20-450e-9170-1a1b747bd070-root {
    text-align: left;
  }


#s-f9ee59f6-af20-450e-9170-1a1b747bd070.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-f9ee59f6-af20-450e-9170-1a1b747bd070-root {
    text-align: left;
  }


#s-f9ee59f6-af20-450e-9170-1a1b747bd070.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f9ee59f6-af20-450e-9170-1a1b747bd070-root {
    text-align: left;
  }


#s-f9ee59f6-af20-450e-9170-1a1b747bd070.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f9ee59f6-af20-450e-9170-1a1b747bd070-root {
    text-align: left;
  }


#s-f9ee59f6-af20-450e-9170-1a1b747bd070.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-f9ee59f6-af20-450e-9170-1a1b747bd070-root {
    text-align: left;
  }


#s-f9ee59f6-af20-450e-9170-1a1b747bd070.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-b8f3d8bb-e69c-4852-b125-5aaa6fdcc6a0 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-b8f3d8bb-e69c-4852-b125-5aaa6fdcc6a0:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYWIwODNmOTUtNDFlZi00ZDMwLWI3NTUtMjdjZGQ4NmYwZjkwIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojOGFkMGJmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNhYjA4M2Y5NS00MWVmLTRkMzAtYjc1NS0yN2NkZDg2ZjBmOTApIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#8ad0bf"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-b8f3d8bb-e69c-4852-b125-5aaa6fdcc6a0:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-b8f3d8bb-e69c-4852-b125-5aaa6fdcc6a0-root {
    text-align: left;
  }


#s-b8f3d8bb-e69c-4852-b125-5aaa6fdcc6a0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-b8f3d8bb-e69c-4852-b125-5aaa6fdcc6a0-root {
    text-align: left;
  }


#s-b8f3d8bb-e69c-4852-b125-5aaa6fdcc6a0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b8f3d8bb-e69c-4852-b125-5aaa6fdcc6a0-root {
    text-align: left;
  }


#s-b8f3d8bb-e69c-4852-b125-5aaa6fdcc6a0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b8f3d8bb-e69c-4852-b125-5aaa6fdcc6a0-root {
    text-align: left;
  }


#s-b8f3d8bb-e69c-4852-b125-5aaa6fdcc6a0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-b8f3d8bb-e69c-4852-b125-5aaa6fdcc6a0-root {
    text-align: left;
  }


#s-b8f3d8bb-e69c-4852-b125-5aaa6fdcc6a0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-a968c499-f4ae-46bd-b959-092a0f9995fd {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-a968c499-f4ae-46bd-b959-092a0f9995fd:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNTJlNTgyMTEtMTNkZi00OTI0LThjNWItZGIwZWMzZTZkYjY3IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojOGFkMGJmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM1MmU1ODIxMS0xM2RmLTQ5MjQtOGM1Yi1kYjBlYzNlNmRiNjcpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#8ad0bf"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-a968c499-f4ae-46bd-b959-092a0f9995fd:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-a968c499-f4ae-46bd-b959-092a0f9995fd-root {
    text-align: left;
  }


#s-a968c499-f4ae-46bd-b959-092a0f9995fd.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-a968c499-f4ae-46bd-b959-092a0f9995fd-root {
    text-align: left;
  }


#s-a968c499-f4ae-46bd-b959-092a0f9995fd.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a968c499-f4ae-46bd-b959-092a0f9995fd-root {
    text-align: left;
  }


#s-a968c499-f4ae-46bd-b959-092a0f9995fd.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a968c499-f4ae-46bd-b959-092a0f9995fd-root {
    text-align: left;
  }


#s-a968c499-f4ae-46bd-b959-092a0f9995fd.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-a968c499-f4ae-46bd-b959-092a0f9995fd-root {
    text-align: left;
  }


#s-a968c499-f4ae-46bd-b959-092a0f9995fd.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-3ad9d4de-a61f-406c-ad22-c6b33b6d6d11 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 1px;
}
#s-3ad9d4de-a61f-406c-ad22-c6b33b6d6d11:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iZDQ0MTYwYTYtZjNjNy00NmE2LTgyMDktNjU3YTEyNjQwMGEzIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojOGFkMGJmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWUxOTIzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNkNDQxNjBhNi1mM2M3LTQ2YTYtODIwOS02NTdhMTI2NDAwYTMpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#8ad0bf"}, {"id"=>2, "pos"=>1, "color"=>"#ee1923"}] !important;
color: rgba(255, 255, 255, 1) !important;}#s-3ad9d4de-a61f-406c-ad22-c6b33b6d6d11:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-3ad9d4de-a61f-406c-ad22-c6b33b6d6d11-root {
    text-align: left;
  }


#s-3ad9d4de-a61f-406c-ad22-c6b33b6d6d11.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-3ad9d4de-a61f-406c-ad22-c6b33b6d6d11-root {
    text-align: left;
  }


#s-3ad9d4de-a61f-406c-ad22-c6b33b6d6d11.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-3ad9d4de-a61f-406c-ad22-c6b33b6d6d11-root {
    text-align: left;
  }


#s-3ad9d4de-a61f-406c-ad22-c6b33b6d6d11.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-3ad9d4de-a61f-406c-ad22-c6b33b6d6d11-root {
    text-align: left;
  }


#s-3ad9d4de-a61f-406c-ad22-c6b33b6d6d11.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-3ad9d4de-a61f-406c-ad22-c6b33b6d6d11-root {
    text-align: left;
  }


#s-3ad9d4de-a61f-406c-ad22-c6b33b6d6d11.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 17px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-08785b40-481a-44b3-8992-e63bde4daf25 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 14px;
padding-left: 20px;
padding-bottom: 14px;
padding-right: 20px;
border-radius: 0px;
background-color: rgba(138, 208, 191, 1);
text-align: center;
text-decoration: none;
line-height: 1em;
letter-spacing: 1px;
background-image: none;
hover-type: color;
}
#s-08785b40-481a-44b3-8992-e63bde4daf25:hover {background-color: rgba(204, 199, 199, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-08785b40-481a-44b3-8992-e63bde4daf25:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-08785b40-481a-44b3-8992-e63bde4daf25-root {
    text-align: center;
  }


#s-08785b40-481a-44b3-8992-e63bde4daf25.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
@media (min-width: 1200px){
  #s-08785b40-481a-44b3-8992-e63bde4daf25-root {
    text-align: center;
  }


#s-08785b40-481a-44b3-8992-e63bde4daf25.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-08785b40-481a-44b3-8992-e63bde4daf25-root {
    text-align: center;
  }


#s-08785b40-481a-44b3-8992-e63bde4daf25.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-08785b40-481a-44b3-8992-e63bde4daf25-root {
    text-align: center;
  }


#s-08785b40-481a-44b3-8992-e63bde4daf25.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}@media (max-width: 767px){
  #s-08785b40-481a-44b3-8992-e63bde4daf25-root {
    text-align: center;
  }


#s-08785b40-481a-44b3-8992-e63bde4daf25.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Archivo Black;
  display:  block ;
}
}
#s-e703ca5d-fcd7-4202-b640-9a399303d972 {
  margin-top: 50px;
margin-bottom: 50px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 0.5);
border-style: solid;
border-radius: 0px;
min-height: 0px;
opacity: 1;
background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767px){#s-e703ca5d-fcd7-4202-b640-9a399303d972 {
  display: none;
}
#s-e703ca5d-fcd7-4202-b640-9a399303d972, #wrap-s-e703ca5d-fcd7-4202-b640-9a399303d972, #wrap-content-s-e703ca5d-fcd7-4202-b640-9a399303d972 { display: none !important; }}







#s-e703ca5d-fcd7-4202-b640-9a399303d972 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e703ca5d-fcd7-4202-b640-9a399303d972.shg-box.shg-c {
  justify-content: flex-end;
}

#s-fc6618ef-0869-45ee-81fb-c775af0f1429 {
  min-height: 50px;
}








#s-fc6618ef-0869-45ee-81fb-c775af0f1429 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fc6618ef-0869-45ee-81fb-c775af0f1429.shg-box.shg-c {
  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 {
  
  
  
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-theme-text-content h1,
.shg-theme-text-content h2,
.shg-theme-text-content h3,
.shg-theme-text-content h4,
.shg-theme-text-content h5,
.shg-theme-text-content h6 {
  
  
  
}

.shg-theme-text-content p {
  
  
  
}

#s-4a259227-3d1d-4684-9f00-b32981d7e3be {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 25px;
padding-left: 15%;
padding-bottom: 5px;
padding-right: 15%;
}

#s-3997f5fd-4d34-4885-bbff-9e736e3ae079 {
  margin-left: 9%;
margin-right: 9%;
padding-top: 1px;
padding-left: 25px;
padding-bottom: 16px;
padding-right: 22px;
}
@media (max-width: 767px){#s-3997f5fd-4d34-4885-bbff-9e736e3ae079 {
  padding-left: 0px;
}
}
#s-42d30a9b-7838-4e63-9bf6-4b54383984a1 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNjJjODZhMWQtYjE2NS00ZTI2LWI2YjEtZWM5NmJiZDMzYmM1IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWQ5YmMzO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZmY5NTAwO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM2MmM4NmExZC1iMTY1LTRlMjYtYjZiMS1lYzk2YmJkMzNiYzUpIi8+PC9zdmc+);
background-repeat: no-repeat;
margin-top: 29px;
margin-left: 25px;
margin-bottom: 42px;
margin-right: 25px;
padding-top: 16px;
padding-left: 40px;
padding-bottom: 16px;
padding-right: 40px;
border-radius: 0px;
text-align: center;
text-decoration: none;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#ed9bc3"}, {"id"=>2, "pos"=>1, "color"=>"#ff9500"}];
hover-type: gradient;
}
#s-42d30a9b-7838-4e63-9bf6-4b54383984a1:hover {background-color: rgba(225, 31, 143, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-42d30a9b-7838-4e63-9bf6-4b54383984a1:active {background-color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-42d30a9b-7838-4e63-9bf6-4b54383984a1 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iZDM4ZGFhMGUtMWNlNy00MmY0LTg5MDEtNDk1NmQ3ODdmMjU5IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWQ5YmMzO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZmY5NTAwO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNkMzhkYWEwZS0xY2U3LTQyZjQtODkwMS00OTU2ZDc4N2YyNTkpIi8+PC9zdmc+);
background-repeat: no-repeat;
hover-type: gradient;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#ed9bc3"}, {"id"=>2, "pos"=>1, "color"=>"#ff9500"}];
}
}

  #s-42d30a9b-7838-4e63-9bf6-4b54383984a1-root {
    text-align: center;
  }


#s-42d30a9b-7838-4e63-9bf6-4b54383984a1.shg-btn {
  color: #ffffff;
  font-size: 22px;
  
  
  font-family: Archivo Black;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-42d30a9b-7838-4e63-9bf6-4b54383984a1-root {
    text-align: center;
  }


#s-42d30a9b-7838-4e63-9bf6-4b54383984a1.shg-btn {
  color: #ffffff;
  font-size: 22px;
  
  
  font-family: Archivo Black;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-42d30a9b-7838-4e63-9bf6-4b54383984a1-root {
    text-align: center;
  }


#s-42d30a9b-7838-4e63-9bf6-4b54383984a1.shg-btn {
  color: #ffffff;
  font-size: 22px;
  
  
  font-family: Archivo Black;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-42d30a9b-7838-4e63-9bf6-4b54383984a1-root {
    text-align: center;
  }


#s-42d30a9b-7838-4e63-9bf6-4b54383984a1.shg-btn {
  color: #ffffff;
  font-size: 22px;
  
  
  font-family: Archivo Black;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-42d30a9b-7838-4e63-9bf6-4b54383984a1-root {
    text-align: center;
  }


#s-42d30a9b-7838-4e63-9bf6-4b54383984a1.shg-btn {
  color: #ffffff;
  font-size: 22px;
  
  
  font-family: Archivo Black;
  display:  inline-block ;
}
}
#s-f9269ed4-bec4-4996-b531-bf940d34ea14 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-f9269ed4-bec4-4996-b531-bf940d34ea14 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f9269ed4-bec4-4996-b531-bf940d34ea14.shg-box.shg-c {
  justify-content: center;
}

#s-3a0e39af-a961-4f14-bca7-749b655d5b39 {
  margin-left: 5%;
margin-right: 5%;
}

@media (min-width: 0px) {
[id="s-3a0e39af-a961-4f14-bca7-749b655d5b39"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3a0e39af-a961-4f14-bca7-749b655d5b39"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3a0e39af-a961-4f14-bca7-749b655d5b39"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3a0e39af-a961-4f14-bca7-749b655d5b39"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-78ce9395-26d0-41b1-9f0a-839b26f9fd49 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-78ce9395-26d0-41b1-9f0a-839b26f9fd49 {
  margin: 0 !important;
  overflow: visible;
}

#s-78ce9395-26d0-41b1-9f0a-839b26f9fd49-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-78ce9395-26d0-41b1-9f0a-839b26f9fd49 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-78ce9395-26d0-41b1-9f0a-839b26f9fd49 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-78ce9395-26d0-41b1-9f0a-839b26f9fd49 img.shogun-image {
  /* Add background color handling */
  
}

#s-78ce9395-26d0-41b1-9f0a-839b26f9fd49 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-78ce9395-26d0-41b1-9f0a-839b26f9fd49 .shogun-image-content {
  
    justify-content: center;
  
}

.s-78ce9395-26d0-41b1-9f0a-839b26f9fd49.shg-align-container {
  display: flex;
  justify-content: center
}

.s-78ce9395-26d0-41b1-9f0a-839b26f9fd49.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-78ce9395-26d0-41b1-9f0a-839b26f9fd49.shogun-image {
  box-sizing: border-box;
}



.s-78ce9395-26d0-41b1-9f0a-839b26f9fd49 img.shogun-image {
  
}


@media (min-width: 1200px){#s-78ce9395-26d0-41b1-9f0a-839b26f9fd49 {
  margin: 0 !important;
  overflow: visible;
}

#s-78ce9395-26d0-41b1-9f0a-839b26f9fd49-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-78ce9395-26d0-41b1-9f0a-839b26f9fd49 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-78ce9395-26d0-41b1-9f0a-839b26f9fd49 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-78ce9395-26d0-41b1-9f0a-839b26f9fd49 img.shogun-image {
  /* Add background color handling */
  
}

#s-78ce9395-26d0-41b1-9f0a-839b26f9fd49 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-78ce9395-26d0-41b1-9f0a-839b26f9fd49 .shogun-image-content {
  
    justify-content: center;
  
}

.s-78ce9395-26d0-41b1-9f0a-839b26f9fd49.shg-align-container {
  display: flex;
  justify-content: center
}

.s-78ce9395-26d0-41b1-9f0a-839b26f9fd49.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-78ce9395-26d0-41b1-9f0a-839b26f9fd49.shogun-image {
  box-sizing: border-box;
}



.s-78ce9395-26d0-41b1-9f0a-839b26f9fd49 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-78ce9395-26d0-41b1-9f0a-839b26f9fd49 {
  margin: 0 !important;
  overflow: visible;
}

#s-78ce9395-26d0-41b1-9f0a-839b26f9fd49-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-78ce9395-26d0-41b1-9f0a-839b26f9fd49 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-78ce9395-26d0-41b1-9f0a-839b26f9fd49 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-78ce9395-26d0-41b1-9f0a-839b26f9fd49 img.shogun-image {
  /* Add background color handling */
  
}

#s-78ce9395-26d0-41b1-9f0a-839b26f9fd49 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-78ce9395-26d0-41b1-9f0a-839b26f9fd49 .shogun-image-content {
  
    justify-content: center;
  
}

.s-78ce9395-26d0-41b1-9f0a-839b26f9fd49.shg-align-container {
  display: flex;
  justify-content: center
}

.s-78ce9395-26d0-41b1-9f0a-839b26f9fd49.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-78ce9395-26d0-41b1-9f0a-839b26f9fd49.shogun-image {
  box-sizing: border-box;
}



.s-78ce9395-26d0-41b1-9f0a-839b26f9fd49 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-78ce9395-26d0-41b1-9f0a-839b26f9fd49 {
  margin: 0 !important;
  overflow: visible;
}

#s-78ce9395-26d0-41b1-9f0a-839b26f9fd49-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-78ce9395-26d0-41b1-9f0a-839b26f9fd49 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-78ce9395-26d0-41b1-9f0a-839b26f9fd49 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-78ce9395-26d0-41b1-9f0a-839b26f9fd49 img.shogun-image {
  /* Add background color handling */
  
}

#s-78ce9395-26d0-41b1-9f0a-839b26f9fd49 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-78ce9395-26d0-41b1-9f0a-839b26f9fd49 .shogun-image-content {
  
    justify-content: center;
  
}

.s-78ce9395-26d0-41b1-9f0a-839b26f9fd49.shg-align-container {
  display: flex;
  justify-content: center
}

.s-78ce9395-26d0-41b1-9f0a-839b26f9fd49.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-78ce9395-26d0-41b1-9f0a-839b26f9fd49.shogun-image {
  box-sizing: border-box;
}



.s-78ce9395-26d0-41b1-9f0a-839b26f9fd49 img.shogun-image {
  
}


}@media (max-width: 767px){#s-78ce9395-26d0-41b1-9f0a-839b26f9fd49 {
  margin: 0 !important;
  overflow: visible;
}

#s-78ce9395-26d0-41b1-9f0a-839b26f9fd49-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-78ce9395-26d0-41b1-9f0a-839b26f9fd49 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-78ce9395-26d0-41b1-9f0a-839b26f9fd49 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-78ce9395-26d0-41b1-9f0a-839b26f9fd49 img.shogun-image {
  /* Add background color handling */
  
}

#s-78ce9395-26d0-41b1-9f0a-839b26f9fd49 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-78ce9395-26d0-41b1-9f0a-839b26f9fd49 .shogun-image-content {
  
    justify-content: center;
  
}

.s-78ce9395-26d0-41b1-9f0a-839b26f9fd49.shg-align-container {
  display: flex;
  justify-content: center
}

.s-78ce9395-26d0-41b1-9f0a-839b26f9fd49.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-78ce9395-26d0-41b1-9f0a-839b26f9fd49.shogun-image {
  box-sizing: border-box;
}



.s-78ce9395-26d0-41b1-9f0a-839b26f9fd49 img.shogun-image {
  
}


}
#s-011a7d2c-1826-448f-bca9-37e94b0bb41b {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 25px;
padding-bottom: 5px;
}

#s-27514a05-1ef0-49e9-abc1-33b75a61e72e {
  margin-left: auto;
margin-right: auto;
padding-left: 10%;
padding-right: 10%;
}

#s-06099b90-4323-4d14-9112-06866b49ecd1 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iMDI4Njg0NjktMmQ4My00OWNlLWI2MTktNjFiMmFhZmIzZTA0IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWQ5YmMzO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZmY5NTAwO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCMwMjg2ODQ2OS0yZDgzLTQ5Y2UtYjYxOS02MWIyYWFmYjNlMDQpIi8+PC9zdmc+);
background-repeat: no-repeat;
margin-top: 29px;
margin-left: 25px;
margin-bottom: 42px;
margin-right: 25px;
padding-top: 16px;
padding-left: 40px;
padding-bottom: 16px;
padding-right: 40px;
border-radius: 0px;
text-align: center;
text-decoration: none;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#ed9bc3"}, {"id"=>2, "pos"=>1, "color"=>"#ff9500"}];
hover-type: gradient;
}
#s-06099b90-4323-4d14-9112-06866b49ecd1:hover {background-color: rgba(225, 31, 143, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-06099b90-4323-4d14-9112-06866b49ecd1:active {background-color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-06099b90-4323-4d14-9112-06866b49ecd1 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iY2RmOTYyOGYtODhlOS00ODlkLWE1MGMtNWQ2NGUzMzUyMzVmIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWQ5YmMzO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZmY5NTAwO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNjZGY5NjI4Zi04OGU5LTQ4OWQtYTUwYy01ZDY0ZTMzNTIzNWYpIi8+PC9zdmc+);
background-repeat: no-repeat;
hover-type: gradient;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#ed9bc3"}, {"id"=>2, "pos"=>1, "color"=>"#ff9500"}];
}
}

  #s-06099b90-4323-4d14-9112-06866b49ecd1-root {
    text-align: center;
  }


#s-06099b90-4323-4d14-9112-06866b49ecd1.shg-btn {
  color: #ffffff;
  font-size: 22px;
  
  
  font-family: Archivo Black;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-06099b90-4323-4d14-9112-06866b49ecd1-root {
    text-align: center;
  }


#s-06099b90-4323-4d14-9112-06866b49ecd1.shg-btn {
  color: #ffffff;
  font-size: 22px;
  
  
  font-family: Archivo Black;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-06099b90-4323-4d14-9112-06866b49ecd1-root {
    text-align: center;
  }


#s-06099b90-4323-4d14-9112-06866b49ecd1.shg-btn {
  color: #ffffff;
  font-size: 22px;
  
  
  font-family: Archivo Black;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-06099b90-4323-4d14-9112-06866b49ecd1-root {
    text-align: center;
  }


#s-06099b90-4323-4d14-9112-06866b49ecd1.shg-btn {
  color: #ffffff;
  font-size: 22px;
  
  
  font-family: Archivo Black;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-06099b90-4323-4d14-9112-06866b49ecd1-root {
    text-align: center;
  }


#s-06099b90-4323-4d14-9112-06866b49ecd1.shg-btn {
  color: #ffffff;
  font-size: 22px;
  
  
  font-family: Archivo Black;
  display:  inline-block ;
}
}
#s-62acac8f-508f-462d-adea-764bec3a1d34 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-62acac8f-508f-462d-adea-764bec3a1d34 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-62acac8f-508f-462d-adea-764bec3a1d34.shg-box.shg-c {
  justify-content: center;
}

#s-22beb746-4cf7-4670-ad86-cc999e145417 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-22beb746-4cf7-4670-ad86-cc999e145417 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-22beb746-4cf7-4670-ad86-cc999e145417.shg-box.shg-c {
  justify-content: center;
}

#s-0095ac10-6a6c-4f3f-9b11-1a2ced2d92bf {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 25px;
padding-bottom: 5px;
}

#s-596f90b0-b71b-424e-88b6-8356d543c2c2 {
  margin-left: auto;
margin-right: auto;
padding-left: 10%;
padding-right: 10%;
}

#s-9d523b0b-a882-4e6d-a480-118567c7f8c3 {
  margin-left: 5%;
margin-right: 5%;
}

@media (min-width: 0px) {
[id="s-9d523b0b-a882-4e6d-a480-118567c7f8c3"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-9d523b0b-a882-4e6d-a480-118567c7f8c3"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-9d523b0b-a882-4e6d-a480-118567c7f8c3"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-9d523b0b-a882-4e6d-a480-118567c7f8c3"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-50945c12-c147-4d46-aa88-b405367f1ddd {
  margin-left: auto;
margin-right: auto;
max-width: 2250px;
text-align: center;
}

#s-50945c12-c147-4d46-aa88-b405367f1ddd {
  margin: 0 !important;
  overflow: visible;
}

#s-50945c12-c147-4d46-aa88-b405367f1ddd-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-50945c12-c147-4d46-aa88-b405367f1ddd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-50945c12-c147-4d46-aa88-b405367f1ddd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-50945c12-c147-4d46-aa88-b405367f1ddd img.shogun-image {
  /* Add background color handling */
  
}

#s-50945c12-c147-4d46-aa88-b405367f1ddd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-50945c12-c147-4d46-aa88-b405367f1ddd .shogun-image-content {
  
    justify-content: center;
  
}

.s-50945c12-c147-4d46-aa88-b405367f1ddd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-50945c12-c147-4d46-aa88-b405367f1ddd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-50945c12-c147-4d46-aa88-b405367f1ddd.shogun-image {
  box-sizing: border-box;
}



.s-50945c12-c147-4d46-aa88-b405367f1ddd img.shogun-image {
  
}


@media (min-width: 1200px){#s-50945c12-c147-4d46-aa88-b405367f1ddd {
  margin: 0 !important;
  overflow: visible;
}

#s-50945c12-c147-4d46-aa88-b405367f1ddd-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-50945c12-c147-4d46-aa88-b405367f1ddd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-50945c12-c147-4d46-aa88-b405367f1ddd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-50945c12-c147-4d46-aa88-b405367f1ddd img.shogun-image {
  /* Add background color handling */
  
}

#s-50945c12-c147-4d46-aa88-b405367f1ddd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-50945c12-c147-4d46-aa88-b405367f1ddd .shogun-image-content {
  
    justify-content: center;
  
}

.s-50945c12-c147-4d46-aa88-b405367f1ddd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-50945c12-c147-4d46-aa88-b405367f1ddd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-50945c12-c147-4d46-aa88-b405367f1ddd.shogun-image {
  box-sizing: border-box;
}



.s-50945c12-c147-4d46-aa88-b405367f1ddd img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-50945c12-c147-4d46-aa88-b405367f1ddd {
  margin: 0 !important;
  overflow: visible;
}

#s-50945c12-c147-4d46-aa88-b405367f1ddd-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-50945c12-c147-4d46-aa88-b405367f1ddd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-50945c12-c147-4d46-aa88-b405367f1ddd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-50945c12-c147-4d46-aa88-b405367f1ddd img.shogun-image {
  /* Add background color handling */
  
}

#s-50945c12-c147-4d46-aa88-b405367f1ddd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-50945c12-c147-4d46-aa88-b405367f1ddd .shogun-image-content {
  
    justify-content: center;
  
}

.s-50945c12-c147-4d46-aa88-b405367f1ddd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-50945c12-c147-4d46-aa88-b405367f1ddd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-50945c12-c147-4d46-aa88-b405367f1ddd.shogun-image {
  box-sizing: border-box;
}



.s-50945c12-c147-4d46-aa88-b405367f1ddd img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-50945c12-c147-4d46-aa88-b405367f1ddd {
  margin: 0 !important;
  overflow: visible;
}

#s-50945c12-c147-4d46-aa88-b405367f1ddd-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-50945c12-c147-4d46-aa88-b405367f1ddd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-50945c12-c147-4d46-aa88-b405367f1ddd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-50945c12-c147-4d46-aa88-b405367f1ddd img.shogun-image {
  /* Add background color handling */
  
}

#s-50945c12-c147-4d46-aa88-b405367f1ddd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-50945c12-c147-4d46-aa88-b405367f1ddd .shogun-image-content {
  
    justify-content: center;
  
}

.s-50945c12-c147-4d46-aa88-b405367f1ddd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-50945c12-c147-4d46-aa88-b405367f1ddd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-50945c12-c147-4d46-aa88-b405367f1ddd.shogun-image {
  box-sizing: border-box;
}



.s-50945c12-c147-4d46-aa88-b405367f1ddd img.shogun-image {
  
}


}@media (max-width: 767px){#s-50945c12-c147-4d46-aa88-b405367f1ddd {
  margin: 0 !important;
  overflow: visible;
}

#s-50945c12-c147-4d46-aa88-b405367f1ddd-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-50945c12-c147-4d46-aa88-b405367f1ddd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-50945c12-c147-4d46-aa88-b405367f1ddd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-50945c12-c147-4d46-aa88-b405367f1ddd img.shogun-image {
  /* Add background color handling */
  
}

#s-50945c12-c147-4d46-aa88-b405367f1ddd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-50945c12-c147-4d46-aa88-b405367f1ddd .shogun-image-content {
  
    justify-content: center;
  
}

.s-50945c12-c147-4d46-aa88-b405367f1ddd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-50945c12-c147-4d46-aa88-b405367f1ddd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-50945c12-c147-4d46-aa88-b405367f1ddd.shogun-image {
  box-sizing: border-box;
}



.s-50945c12-c147-4d46-aa88-b405367f1ddd img.shogun-image {
  
}


}
#s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1 {
  margin-left: auto;
margin-right: auto;
max-width: 2250px;
text-align: center;
}

#s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1 {
  margin: 0 !important;
  overflow: visible;
}

#s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1-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-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1 img.shogun-image {
  /* Add background color handling */
  
}

#s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1.shogun-image {
  box-sizing: border-box;
}



.s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1 img.shogun-image {
  
}


@media (min-width: 1200px){#s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1 {
  margin: 0 !important;
  overflow: visible;
}

#s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1-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-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1 img.shogun-image {
  /* Add background color handling */
  
}

#s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1.shogun-image {
  box-sizing: border-box;
}



.s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1 {
  margin: 0 !important;
  overflow: visible;
}

#s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1-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-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1 img.shogun-image {
  /* Add background color handling */
  
}

#s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1.shogun-image {
  box-sizing: border-box;
}



.s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1 {
  margin: 0 !important;
  overflow: visible;
}

#s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1-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-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1 img.shogun-image {
  /* Add background color handling */
  
}

#s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1.shogun-image {
  box-sizing: border-box;
}



.s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1 img.shogun-image {
  
}


}@media (max-width: 767px){#s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1 {
  margin: 0 !important;
  overflow: visible;
}

#s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1-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-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1 img.shogun-image {
  /* Add background color handling */
  
}

#s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1.shogun-image {
  box-sizing: border-box;
}



.s-5be0b3f9-06db-4f31-9dcb-7dc9c8955bc1 img.shogun-image {
  
}


}
#s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803 {
  margin-left: auto;
margin-right: auto;
max-width: 2250px;
text-align: center;
}

#s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803 {
  margin: 0 !important;
  overflow: visible;
}

#s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803-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-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803 img.shogun-image {
  /* Add background color handling */
  
}

#s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803.shogun-image {
  box-sizing: border-box;
}



.s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803 img.shogun-image {
  
}


@media (min-width: 1200px){#s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803 {
  margin: 0 !important;
  overflow: visible;
}

#s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803-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-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803 img.shogun-image {
  /* Add background color handling */
  
}

#s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803.shogun-image {
  box-sizing: border-box;
}



.s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803 {
  margin: 0 !important;
  overflow: visible;
}

#s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803-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-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803 img.shogun-image {
  /* Add background color handling */
  
}

#s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803.shogun-image {
  box-sizing: border-box;
}



.s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803 {
  margin: 0 !important;
  overflow: visible;
}

#s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803-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-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803 img.shogun-image {
  /* Add background color handling */
  
}

#s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803.shogun-image {
  box-sizing: border-box;
}



.s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803 img.shogun-image {
  
}


}@media (max-width: 767px){#s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803 {
  margin: 0 !important;
  overflow: visible;
}

#s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803-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-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803 img.shogun-image {
  /* Add background color handling */
  
}

#s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803.shogun-image {
  box-sizing: border-box;
}



.s-8abbc0e1-ae60-44c6-b91b-3b7e20d7c803 img.shogun-image {
  
}


}
#s-b0e23011-8932-40c5-9cba-5d169db4b027 {
  margin-left: auto;
margin-right: auto;
padding-left: 10%;
padding-right: 10%;
}

#s-1dcc5df1-9681-493e-b84e-4623b7907411 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNTc1ODdjMjMtMTc0Ny00OTU4LTk3NTEtNTM5OTg0M2RmMmNiIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWQ5YmMzO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZmY5NTAwO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM1NzU4N2MyMy0xNzQ3LTQ5NTgtOTc1MS01Mzk5ODQzZGYyY2IpIi8+PC9zdmc+);
background-repeat: no-repeat;
margin-top: 29px;
margin-left: 25px;
margin-bottom: 42px;
margin-right: 25px;
padding-top: 16px;
padding-left: 40px;
padding-bottom: 16px;
padding-right: 40px;
border-radius: 0px;
text-align: center;
text-decoration: none;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#ed9bc3"}, {"id"=>2, "pos"=>1, "color"=>"#ff9500"}];
hover-type: gradient;
}
#s-1dcc5df1-9681-493e-b84e-4623b7907411:hover {background-color: rgba(225, 31, 143, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-1dcc5df1-9681-493e-b84e-4623b7907411:active {background-color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-1dcc5df1-9681-493e-b84e-4623b7907411 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iZGZkZmE5MGItMmQzNC00NjhmLWEwMWYtNzMwOTYxZGQxODUwIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWQ5YmMzO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZmY5NTAwO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNkZmRmYTkwYi0yZDM0LTQ2OGYtYTAxZi03MzA5NjFkZDE4NTApIi8+PC9zdmc+);
background-repeat: no-repeat;
hover-type: gradient;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#ed9bc3"}, {"id"=>2, "pos"=>1, "color"=>"#ff9500"}];
}
}

  #s-1dcc5df1-9681-493e-b84e-4623b7907411-root {
    text-align: center;
  }


#s-1dcc5df1-9681-493e-b84e-4623b7907411.shg-btn {
  color: #ffffff;
  font-size: 22px;
  
  
  font-family: Archivo Black;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-1dcc5df1-9681-493e-b84e-4623b7907411-root {
    text-align: center;
  }


#s-1dcc5df1-9681-493e-b84e-4623b7907411.shg-btn {
  color: #ffffff;
  font-size: 22px;
  
  
  font-family: Archivo Black;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-1dcc5df1-9681-493e-b84e-4623b7907411-root {
    text-align: center;
  }


#s-1dcc5df1-9681-493e-b84e-4623b7907411.shg-btn {
  color: #ffffff;
  font-size: 22px;
  
  
  font-family: Archivo Black;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-1dcc5df1-9681-493e-b84e-4623b7907411-root {
    text-align: center;
  }


#s-1dcc5df1-9681-493e-b84e-4623b7907411.shg-btn {
  color: #ffffff;
  font-size: 22px;
  
  
  font-family: Archivo Black;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-1dcc5df1-9681-493e-b84e-4623b7907411-root {
    text-align: center;
  }


#s-1dcc5df1-9681-493e-b84e-4623b7907411.shg-btn {
  color: #ffffff;
  font-size: 22px;
  
  
  font-family: Archivo Black;
  display:  inline-block ;
}
}
#s-d4595c01-fc6c-454c-bb74-d4e895e427c9 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-d4595c01-fc6c-454c-bb74-d4e895e427c9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d4595c01-fc6c-454c-bb74-d4e895e427c9.shg-box.shg-c {
  justify-content: center;
}

#s-528c09a1-6e60-489f-aa1c-5db29ce24c10 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-528c09a1-6e60-489f-aa1c-5db29ce24c10 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-528c09a1-6e60-489f-aa1c-5db29ce24c10.shg-box.shg-c {
  justify-content: center;
}

#s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a {
  margin-left: 5%;
margin-right: 5%;
max-width: 2000px;
aspect-ratio: 2000/1080;
text-align: center;
}

#s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a {
  margin: 0 !important;
  overflow: visible;
}

#s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a-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-5df21d07-8ce5-4e11-87ad-66d62bf13c0a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 5%;
  margin-right: 5%;
  
  
}

.shg-image-content-margin-container-s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a img.shogun-image {
  /* Add background color handling */
  
}

#s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a .shg-image-content-wrapper {
      aspect-ratio: 2000/1080;
      min-width: 100%;
      height: auto;
    }

    #s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a .shogun-image-link {
      aspect-ratio: 2000/1080;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2000px;
  }



  img.s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shogun-image {
    
    
    
    max-height: 2000px;
  }


.s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a .shogun-image-content {
  
    justify-content: center;
  
}

.s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shogun-image {
  box-sizing: border-box;
}



.s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a {
      --shg-aspect-ratio: calc(2000/1080); 
    }

    .s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shogun-image-container {
      position: relative;
    }

    .s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2000px;
    }
  }

@media (min-width: 1200px){#s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a {
  margin: 0 !important;
  overflow: visible;
}

#s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a-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-5df21d07-8ce5-4e11-87ad-66d62bf13c0a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a img.shogun-image {
  /* Add background color handling */
  
}

#s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a .shg-image-content-wrapper {
      aspect-ratio: 2000/1080;
      min-width: 100%;
      height: auto;
    }

    #s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a .shogun-image-link {
      aspect-ratio: 2000/1080;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2000px;
  }



  img.s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shogun-image {
    
    
    
    max-height: 2000px;
  }


.s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a .shogun-image-content {
  
    justify-content: center;
  
}

.s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shogun-image {
  box-sizing: border-box;
}



.s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a {
      --shg-aspect-ratio: calc(2000/1080); 
    }

    .s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shogun-image-container {
      position: relative;
    }

    .s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2000px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a {
  margin: 0 !important;
  overflow: visible;
}

#s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a-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-5df21d07-8ce5-4e11-87ad-66d62bf13c0a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a img.shogun-image {
  /* Add background color handling */
  
}

#s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a .shg-image-content-wrapper {
      aspect-ratio: 2000/1080;
      min-width: 100%;
      height: auto;
    }

    #s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a .shogun-image-link {
      aspect-ratio: 2000/1080;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2000px;
  }



  img.s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shogun-image {
    
    
    
    max-height: 2000px;
  }


.s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a .shogun-image-content {
  
    justify-content: center;
  
}

.s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shogun-image {
  box-sizing: border-box;
}



.s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a {
      --shg-aspect-ratio: calc(2000/1080); 
    }

    .s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shogun-image-container {
      position: relative;
    }

    .s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2000px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a {
  margin: 0 !important;
  overflow: visible;
}

#s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a-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-5df21d07-8ce5-4e11-87ad-66d62bf13c0a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a img.shogun-image {
  /* Add background color handling */
  
}

#s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a .shg-image-content-wrapper {
      aspect-ratio: 2000/1080;
      min-width: 100%;
      height: auto;
    }

    #s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a .shogun-image-link {
      aspect-ratio: 2000/1080;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2000px;
  }



  img.s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shogun-image {
    
    
    
    max-height: 2000px;
  }


.s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a .shogun-image-content {
  
    justify-content: center;
  
}

.s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shogun-image {
  box-sizing: border-box;
}



.s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a {
      --shg-aspect-ratio: calc(2000/1080); 
    }

    .s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shogun-image-container {
      position: relative;
    }

    .s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2000px;
    }
  }

}@media (max-width: 767px){#s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a {
  margin: 0 !important;
  overflow: visible;
}

#s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a-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-5df21d07-8ce5-4e11-87ad-66d62bf13c0a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a img.shogun-image {
  /* Add background color handling */
  
}

#s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a .shg-image-content-wrapper {
      aspect-ratio: 2000/1080;
      min-width: 100%;
      height: auto;
    }

    #s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a .shogun-image-link {
      aspect-ratio: 2000/1080;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2000px;
  }



  img.s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shogun-image {
    
    
    
    max-height: 2000px;
  }


.s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a .shogun-image-content {
  
    justify-content: center;
  
}

.s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shogun-image {
  box-sizing: border-box;
}



.s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a {
      --shg-aspect-ratio: calc(2000/1080); 
    }

    .s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shogun-image-container {
      position: relative;
    }

    .s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5df21d07-8ce5-4e11-87ad-66d62bf13c0a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2000px;
    }
  }

}
#s-76295c9e-0f56-43d0-931e-5312ebecf525 {
  margin-left: 5%;
margin-right: 5%;
padding-left: 5%;
padding-right: 5%;
}

#s-72ec08ae-9ee1-44a3-a16c-202fc770b8d4 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-72ec08ae-9ee1-44a3-a16c-202fc770b8d4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-72ec08ae-9ee1-44a3-a16c-202fc770b8d4.shg-box.shg-c {
  justify-content: center;
}

#s-b0930df6-b46d-4a66-a605-36cab90346f4 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYmE3MDgzM2MtZTMwNy00YjFiLTg1OTYtOGEzZGM5Y2I4ODE0IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWQ5YmMzO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZmY5NTAwO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNiYTcwODMzYy1lMzA3LTRiMWItODU5Ni04YTNkYzljYjg4MTQpIi8+PC9zdmc+);
background-repeat: no-repeat;
margin-top: 29px;
margin-left: 25px;
margin-bottom: 42px;
margin-right: 25px;
padding-top: 16px;
padding-left: 40px;
padding-bottom: 16px;
padding-right: 40px;
border-radius: 0px;
text-align: center;
text-decoration: none;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#ed9bc3"}, {"id"=>2, "pos"=>1, "color"=>"#ff9500"}];
hover-type: gradient;
}
#s-b0930df6-b46d-4a66-a605-36cab90346f4:hover {background-color: rgba(225, 31, 143, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-b0930df6-b46d-4a66-a605-36cab90346f4:active {background-color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-b0930df6-b46d-4a66-a605-36cab90346f4-root {
    text-align: center;
  }


#s-b0930df6-b46d-4a66-a605-36cab90346f4.shg-btn {
  color: #ffffff;
  font-size: 22px;
  
  
  font-family: Archivo Black;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-b0930df6-b46d-4a66-a605-36cab90346f4-root {
    text-align: center;
  }


#s-b0930df6-b46d-4a66-a605-36cab90346f4.shg-btn {
  color: #ffffff;
  font-size: 22px;
  
  
  font-family: Archivo Black;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b0930df6-b46d-4a66-a605-36cab90346f4-root {
    text-align: center;
  }


#s-b0930df6-b46d-4a66-a605-36cab90346f4.shg-btn {
  color: #ffffff;
  font-size: 22px;
  
  
  font-family: Archivo Black;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b0930df6-b46d-4a66-a605-36cab90346f4-root {
    text-align: center;
  }


#s-b0930df6-b46d-4a66-a605-36cab90346f4.shg-btn {
  color: #ffffff;
  font-size: 22px;
  
  
  font-family: Archivo Black;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-b0930df6-b46d-4a66-a605-36cab90346f4-root {
    text-align: center;
  }


#s-b0930df6-b46d-4a66-a605-36cab90346f4.shg-btn {
  color: #ffffff;
  font-size: 22px;
  
  
  font-family: Archivo Black;
  display:  inline-block ;
}
}
#s-5db4f880-62dc-41b0-ac79-e4407bee77cb {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
min-height: 48px;
background-color: rgba(160, 208, 194, 1);
}








#s-5db4f880-62dc-41b0-ac79-e4407bee77cb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5db4f880-62dc-41b0-ac79-e4407bee77cb.shg-box.shg-c {
  justify-content: center;
}

#s-7ebd64ee-f29a-47dc-9bab-4fb29b0f567a {
  min-height: 50px;
background-color: rgba(226, 159, 193, 1);
}
@media (max-width: 767px){#s-7ebd64ee-f29a-47dc-9bab-4fb29b0f567a {
  margin-left: 0%;
margin-right: 0%;
}
}







#s-7ebd64ee-f29a-47dc-9bab-4fb29b0f567a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7ebd64ee-f29a-47dc-9bab-4fb29b0f567a.shg-box.shg-c {
  justify-content: center;
}

#s-328e90a8-e427-4ca1-a5c9-c5f45cfd96be {
  margin-top: 30px;
margin-bottom: 20px;
}

#s-41be2314-73c7-4216-80b0-0ed0edef47b2 {
  margin-left: 15%;
margin-bottom: 30px;
margin-right: 15%;
}

#s-30524fb4-ecbd-4ddd-a0ac-68e0a18a0d08 {
  margin-top: 10px;
margin-left: 25%;
margin-bottom: 10px;
margin-right: 25%;
}
@media (min-width: 768px) and (max-width: 991px){#s-30524fb4-ecbd-4ddd-a0ac-68e0a18a0d08 {
  margin-left: 5%;
margin-right: 5%;
}
}
@media (min-width: 0px) {
[id="s-30524fb4-ecbd-4ddd-a0ac-68e0a18a0d08"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-30524fb4-ecbd-4ddd-a0ac-68e0a18a0d08"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-30524fb4-ecbd-4ddd-a0ac-68e0a18a0d08"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-30524fb4-ecbd-4ddd-a0ac-68e0a18a0d08"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-d92e2475-48d8-4ad5-af0c-12d717b645fc {
  margin-top: 30px;
margin-left: 25%;
margin-bottom: 30px;
margin-right: 25%;
max-width: 300px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-d92e2475-48d8-4ad5-af0c-12d717b645fc {
  margin-top: 10px;
margin-left: 15%;
margin-right: 15%;
}
}@media (max-width: 767px){#s-d92e2475-48d8-4ad5-af0c-12d717b645fc {
  margin-top: 10px;
margin-left: 20%;
margin-bottom: 10px;
margin-right: 20%;
}
}
#s-d92e2475-48d8-4ad5-af0c-12d717b645fc {
  overflow: hidden;
  
  
      max-width: 300px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}







  #s-d92e2475-48d8-4ad5-af0c-12d717b645fc img.shogun-image {
    

    
    
    
  }


#s-d92e2475-48d8-4ad5-af0c-12d717b645fc .shogun-image-content {
  
    justify-content: center;
  
}

#s-19245c6e-bff7-4132-9fdb-195291bab018 {
  margin-top: 5px;
margin-left: 15%;
margin-bottom: 5px;
margin-right: 15%;
}

#s-63b7fdb1-0a04-4aee-98ec-b118f4400770 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYjZjMTVhZjAtZmY3MC00YzNiLTg5MDYtZjRhNGIxYTQwODkwIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZmZmZmZmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZmY5NTAwO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNiNmMxNWFmMC1mZjcwLTRjM2ItODkwNi1mNGE0YjFhNDA4OTApIi8+PC9zdmc+);
background-repeat: no-repeat;
margin-top: 0px;
margin-left: 25px;
margin-bottom: 40px;
margin-right: 25px;
padding-top: 16px;
padding-left: 40px;
padding-bottom: 16px;
padding-right: 40px;
border-radius: 0px;
text-align: center;
text-decoration: none;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#ffffff"}, {"id"=>2, "pos"=>1, "color"=>"#ff9500"}];
hover-type: gradient;
color: rgba(230, 64, 151, 1);
}
#s-63b7fdb1-0a04-4aee-98ec-b118f4400770:hover {background-color: rgba(225, 31, 143, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-63b7fdb1-0a04-4aee-98ec-b118f4400770:active {background-color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-63b7fdb1-0a04-4aee-98ec-b118f4400770-root {
    text-align: center;
  }


#s-63b7fdb1-0a04-4aee-98ec-b118f4400770.shg-btn {
  color: rgba(230, 64, 151, 1);
  font-size: 22px;
  
  
  font-family: Archivo Black;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-63b7fdb1-0a04-4aee-98ec-b118f4400770-root {
    text-align: center;
  }


#s-63b7fdb1-0a04-4aee-98ec-b118f4400770.shg-btn {
  color: rgba(230, 64, 151, 1);
  font-size: 22px;
  
  
  font-family: Archivo Black;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-63b7fdb1-0a04-4aee-98ec-b118f4400770-root {
    text-align: center;
  }


#s-63b7fdb1-0a04-4aee-98ec-b118f4400770.shg-btn {
  color: rgba(230, 64, 151, 1);
  font-size: 22px;
  
  
  font-family: Archivo Black;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-63b7fdb1-0a04-4aee-98ec-b118f4400770-root {
    text-align: center;
  }


#s-63b7fdb1-0a04-4aee-98ec-b118f4400770.shg-btn {
  color: rgba(230, 64, 151, 1);
  font-size: 22px;
  
  
  font-family: Archivo Black;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-63b7fdb1-0a04-4aee-98ec-b118f4400770-root {
    text-align: center;
  }


#s-63b7fdb1-0a04-4aee-98ec-b118f4400770.shg-btn {
  color: rgba(230, 64, 151, 1);
  font-size: 22px;
  
  
  font-family: Archivo Black;
  display:  inline-block ;
}
}
.shogun-countdown {
  display: flex;
  text-align: center;
  justify-content: center;
}

.shg-align-left > .shogun-countdown {
  justify-content: flex-start;
}

.shg-align-right > .shogun-countdown {
  justify-content: flex-end;
}

.shogun-countdown > div {
  padding: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.shogun-countdown > div > label {
  font-size: 12px;
}

.shogun-countdown > span {
  padding: 5px;
  font-size: 32px;
  line-height: 32px;
}

.shogun-countdown > div > span {
  font-size: 32px;
  line-height: 32px;
  font-weight: 600;
}

.shogun-countdown-small > div > label {
  font-size: 8px;
}

.shogun-countdown-small > span,
.shogun-countdown-small > div > span  {
  font-size: 21px;
  line-height: 21px;
}

.shogun-countdown-large > div > label {
  font-size: 18px;
}

.shogun-countdown-large > span,
.shogun-countdown-large > div > span {
  font-size: 48px;
  line-height: 48px;
}

@media (min-width: 768px) {
  .shogun-countdown > span,
  .shogun-countdown > div > span {
    font-size: 45px;
    line-height: 45px;
  }

  .shogun-countdown-small > span,
  .shogun-countdown-small > div > span {
    font-size: 30px;
    line-height: 30px;
  }

  .shogun-countdown-large > span,
  .shogun-countdown-large > div > span {
    font-size: 68px;
    line-height: 68px;
  }
}

#s-df53b499-fe48-48b8-b70a-818825775cb2 {
  margin-top: 25px;
margin-bottom: 25px;
}

#s-df53b499-fe48-48b8-b70a-818825775cb2 .shogun-countdown span, #s-df53b499-fe48-48b8-b70a-818825775cb2 .shogun-countdown label {
  color: rgba(255, 255, 255, 1);
}
#s-a7bf8016-abe4-4d12-852d-2378808d90be {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-a7bf8016-abe4-4d12-852d-2378808d90be {
  
}
}@media (max-width: 767px){#s-a7bf8016-abe4-4d12-852d-2378808d90be {
  margin-left: 5%;
margin-right: 5%;
}
}







#s-a7bf8016-abe4-4d12-852d-2378808d90be > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a7bf8016-abe4-4d12-852d-2378808d90be.shg-box.shg-c {
  justify-content: center;
}

#s-79fbcdf8-0b76-4aa6-a519-dc84f4effb4b {
  margin-top: 10px;
margin-bottom: 10px;
}

@media (min-width: 768px) and (max-width: 991px){#s-83341383-9b44-4a77-8281-ff072a201611 {
  display: none;
}
#s-83341383-9b44-4a77-8281-ff072a201611, #wrap-s-83341383-9b44-4a77-8281-ff072a201611, #wrap-content-s-83341383-9b44-4a77-8281-ff072a201611 { display: none !important; }}@media (max-width: 767px){#s-83341383-9b44-4a77-8281-ff072a201611 {
  margin-left: 5%;
margin-right: 5%;
display: none;
}
#s-83341383-9b44-4a77-8281-ff072a201611, #wrap-s-83341383-9b44-4a77-8281-ff072a201611, #wrap-content-s-83341383-9b44-4a77-8281-ff072a201611 { display: none !important; }}
@media (min-width: 0px) {
[id="s-83341383-9b44-4a77-8281-ff072a201611"] > .shg-row > .shg-c-xs-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 768px) {
[id="s-83341383-9b44-4a77-8281-ff072a201611"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 992px) {
[id="s-83341383-9b44-4a77-8281-ff072a201611"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 1200px) {
[id="s-83341383-9b44-4a77-8281-ff072a201611"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 24.0px);
}

}

#s-1290f005-2ecb-4f20-9b38-58a7cb7a0a15 {
  text-align: center;
}

#s-1290f005-2ecb-4f20-9b38-58a7cb7a0a15 {
  overflow: hidden;
  
  
}







  #s-1290f005-2ecb-4f20-9b38-58a7cb7a0a15 img.shogun-image {
    

    
    
    
  }


#s-1290f005-2ecb-4f20-9b38-58a7cb7a0a15 .shogun-image-content {
  
    justify-content: center;
  
}

#s-bc856560-acb0-424a-adf0-8ba56628d009 {
  text-align: center;
}

#s-bc856560-acb0-424a-adf0-8ba56628d009 {
  overflow: hidden;
  
  
}







  #s-bc856560-acb0-424a-adf0-8ba56628d009 img.shogun-image {
    

    
    
    
  }


#s-bc856560-acb0-424a-adf0-8ba56628d009 .shogun-image-content {
  
    justify-content: center;
  
}

#s-10f8a274-82ba-4d7e-ae06-b2850daa2c32 {
  text-align: center;
}

#s-10f8a274-82ba-4d7e-ae06-b2850daa2c32 {
  overflow: hidden;
  
  
}







  #s-10f8a274-82ba-4d7e-ae06-b2850daa2c32 img.shogun-image {
    

    
    
    
  }


#s-10f8a274-82ba-4d7e-ae06-b2850daa2c32 .shogun-image-content {
  
    justify-content: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-c36726ba-5b3f-4df8-aa96-5b55ffe9ff58 {
  display: none;
}
#s-c36726ba-5b3f-4df8-aa96-5b55ffe9ff58, #wrap-s-c36726ba-5b3f-4df8-aa96-5b55ffe9ff58, #wrap-content-s-c36726ba-5b3f-4df8-aa96-5b55ffe9ff58 { display: none !important; }}@media (max-width: 767px){#s-c36726ba-5b3f-4df8-aa96-5b55ffe9ff58 {
  display: none;
}
#s-c36726ba-5b3f-4df8-aa96-5b55ffe9ff58, #wrap-s-c36726ba-5b3f-4df8-aa96-5b55ffe9ff58, #wrap-content-s-c36726ba-5b3f-4df8-aa96-5b55ffe9ff58 { display: none !important; }}
@media (min-width: 0px) {
[id="s-c36726ba-5b3f-4df8-aa96-5b55ffe9ff58"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-c36726ba-5b3f-4df8-aa96-5b55ffe9ff58"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-c36726ba-5b3f-4df8-aa96-5b55ffe9ff58"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-c36726ba-5b3f-4df8-aa96-5b55ffe9ff58"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-eb42dffc-1a5e-4901-a493-182e744675a6 {
  margin-top: 20px;
margin-left: 20%;
margin-right: 20%;
max-width: 1171px;
aspect-ratio: 1171/603;
text-align: center;
}

#s-eb42dffc-1a5e-4901-a493-182e744675a6 {
  margin: 0 !important;
  overflow: visible;
}

#s-eb42dffc-1a5e-4901-a493-182e744675a6-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-eb42dffc-1a5e-4901-a493-182e744675a6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 20%;
  margin-right: 20%;
  margin-top: 20px;
  
}

.shg-image-content-margin-container-s-eb42dffc-1a5e-4901-a493-182e744675a6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-eb42dffc-1a5e-4901-a493-182e744675a6 img.shogun-image {
  /* Add background color handling */
  
}

#s-eb42dffc-1a5e-4901-a493-182e744675a6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-eb42dffc-1a5e-4901-a493-182e744675a6 .shg-image-content-wrapper {
      aspect-ratio: 1171/603;
      min-width: 100%;
      height: auto;
    }

    #s-eb42dffc-1a5e-4901-a493-182e744675a6 .shogun-image-link {
      aspect-ratio: 1171/603;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eb42dffc-1a5e-4901-a493-182e744675a6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-eb42dffc-1a5e-4901-a493-182e744675a6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-eb42dffc-1a5e-4901-a493-182e744675a6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1171px;
  }



  img.s-eb42dffc-1a5e-4901-a493-182e744675a6.shogun-image {
    
    
    
    max-height: 1171px;
  }


.s-eb42dffc-1a5e-4901-a493-182e744675a6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-eb42dffc-1a5e-4901-a493-182e744675a6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eb42dffc-1a5e-4901-a493-182e744675a6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eb42dffc-1a5e-4901-a493-182e744675a6.shogun-image {
  box-sizing: border-box;
}



.s-eb42dffc-1a5e-4901-a493-182e744675a6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-eb42dffc-1a5e-4901-a493-182e744675a6 {
      --shg-aspect-ratio: calc(1171/603); 
    }

    .s-eb42dffc-1a5e-4901-a493-182e744675a6.shogun-image-container {
      position: relative;
    }

    .s-eb42dffc-1a5e-4901-a493-182e744675a6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eb42dffc-1a5e-4901-a493-182e744675a6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eb42dffc-1a5e-4901-a493-182e744675a6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1171px;
    }
  }

@media (min-width: 1200px){#s-eb42dffc-1a5e-4901-a493-182e744675a6 {
  margin: 0 !important;
  overflow: visible;
}

#s-eb42dffc-1a5e-4901-a493-182e744675a6-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-eb42dffc-1a5e-4901-a493-182e744675a6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-eb42dffc-1a5e-4901-a493-182e744675a6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-eb42dffc-1a5e-4901-a493-182e744675a6 img.shogun-image {
  /* Add background color handling */
  
}

#s-eb42dffc-1a5e-4901-a493-182e744675a6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-eb42dffc-1a5e-4901-a493-182e744675a6 .shg-image-content-wrapper {
      aspect-ratio: 1171/603;
      min-width: 100%;
      height: auto;
    }

    #s-eb42dffc-1a5e-4901-a493-182e744675a6 .shogun-image-link {
      aspect-ratio: 1171/603;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eb42dffc-1a5e-4901-a493-182e744675a6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-eb42dffc-1a5e-4901-a493-182e744675a6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-eb42dffc-1a5e-4901-a493-182e744675a6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1171px;
  }



  img.s-eb42dffc-1a5e-4901-a493-182e744675a6.shogun-image {
    
    
    
    max-height: 1171px;
  }


.s-eb42dffc-1a5e-4901-a493-182e744675a6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-eb42dffc-1a5e-4901-a493-182e744675a6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eb42dffc-1a5e-4901-a493-182e744675a6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eb42dffc-1a5e-4901-a493-182e744675a6.shogun-image {
  box-sizing: border-box;
}



.s-eb42dffc-1a5e-4901-a493-182e744675a6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-eb42dffc-1a5e-4901-a493-182e744675a6 {
      --shg-aspect-ratio: calc(1171/603); 
    }

    .s-eb42dffc-1a5e-4901-a493-182e744675a6.shogun-image-container {
      position: relative;
    }

    .s-eb42dffc-1a5e-4901-a493-182e744675a6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eb42dffc-1a5e-4901-a493-182e744675a6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eb42dffc-1a5e-4901-a493-182e744675a6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1171px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-eb42dffc-1a5e-4901-a493-182e744675a6 {
  margin: 0 !important;
  overflow: visible;
}

#s-eb42dffc-1a5e-4901-a493-182e744675a6-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-eb42dffc-1a5e-4901-a493-182e744675a6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-eb42dffc-1a5e-4901-a493-182e744675a6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-eb42dffc-1a5e-4901-a493-182e744675a6 img.shogun-image {
  /* Add background color handling */
  
}

#s-eb42dffc-1a5e-4901-a493-182e744675a6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-eb42dffc-1a5e-4901-a493-182e744675a6 .shg-image-content-wrapper {
      aspect-ratio: 1171/603;
      min-width: 100%;
      height: auto;
    }

    #s-eb42dffc-1a5e-4901-a493-182e744675a6 .shogun-image-link {
      aspect-ratio: 1171/603;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eb42dffc-1a5e-4901-a493-182e744675a6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-eb42dffc-1a5e-4901-a493-182e744675a6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-eb42dffc-1a5e-4901-a493-182e744675a6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1171px;
  }



  img.s-eb42dffc-1a5e-4901-a493-182e744675a6.shogun-image {
    
    
    
    max-height: 1171px;
  }


.s-eb42dffc-1a5e-4901-a493-182e744675a6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-eb42dffc-1a5e-4901-a493-182e744675a6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eb42dffc-1a5e-4901-a493-182e744675a6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eb42dffc-1a5e-4901-a493-182e744675a6.shogun-image {
  box-sizing: border-box;
}



.s-eb42dffc-1a5e-4901-a493-182e744675a6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-eb42dffc-1a5e-4901-a493-182e744675a6 {
      --shg-aspect-ratio: calc(1171/603); 
    }

    .s-eb42dffc-1a5e-4901-a493-182e744675a6.shogun-image-container {
      position: relative;
    }

    .s-eb42dffc-1a5e-4901-a493-182e744675a6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eb42dffc-1a5e-4901-a493-182e744675a6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eb42dffc-1a5e-4901-a493-182e744675a6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1171px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-eb42dffc-1a5e-4901-a493-182e744675a6 {
  margin: 0 !important;
  overflow: visible;
}

#s-eb42dffc-1a5e-4901-a493-182e744675a6-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-eb42dffc-1a5e-4901-a493-182e744675a6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-eb42dffc-1a5e-4901-a493-182e744675a6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-eb42dffc-1a5e-4901-a493-182e744675a6 img.shogun-image {
  /* Add background color handling */
  
}

#s-eb42dffc-1a5e-4901-a493-182e744675a6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-eb42dffc-1a5e-4901-a493-182e744675a6 .shg-image-content-wrapper {
      aspect-ratio: 1171/603;
      min-width: 100%;
      height: auto;
    }

    #s-eb42dffc-1a5e-4901-a493-182e744675a6 .shogun-image-link {
      aspect-ratio: 1171/603;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eb42dffc-1a5e-4901-a493-182e744675a6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-eb42dffc-1a5e-4901-a493-182e744675a6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-eb42dffc-1a5e-4901-a493-182e744675a6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1171px;
  }



  img.s-eb42dffc-1a5e-4901-a493-182e744675a6.shogun-image {
    
    
    
    max-height: 1171px;
  }


.s-eb42dffc-1a5e-4901-a493-182e744675a6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-eb42dffc-1a5e-4901-a493-182e744675a6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eb42dffc-1a5e-4901-a493-182e744675a6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eb42dffc-1a5e-4901-a493-182e744675a6.shogun-image {
  box-sizing: border-box;
}



.s-eb42dffc-1a5e-4901-a493-182e744675a6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-eb42dffc-1a5e-4901-a493-182e744675a6 {
      --shg-aspect-ratio: calc(1171/603); 
    }

    .s-eb42dffc-1a5e-4901-a493-182e744675a6.shogun-image-container {
      position: relative;
    }

    .s-eb42dffc-1a5e-4901-a493-182e744675a6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eb42dffc-1a5e-4901-a493-182e744675a6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eb42dffc-1a5e-4901-a493-182e744675a6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1171px;
    }
  }

}@media (max-width: 767px){#s-eb42dffc-1a5e-4901-a493-182e744675a6 {
  margin: 0 !important;
  overflow: visible;
}

#s-eb42dffc-1a5e-4901-a493-182e744675a6-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-eb42dffc-1a5e-4901-a493-182e744675a6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-eb42dffc-1a5e-4901-a493-182e744675a6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-eb42dffc-1a5e-4901-a493-182e744675a6 img.shogun-image {
  /* Add background color handling */
  
}

#s-eb42dffc-1a5e-4901-a493-182e744675a6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-eb42dffc-1a5e-4901-a493-182e744675a6 .shg-image-content-wrapper {
      aspect-ratio: 1171/603;
      min-width: 100%;
      height: auto;
    }

    #s-eb42dffc-1a5e-4901-a493-182e744675a6 .shogun-image-link {
      aspect-ratio: 1171/603;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eb42dffc-1a5e-4901-a493-182e744675a6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-eb42dffc-1a5e-4901-a493-182e744675a6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-eb42dffc-1a5e-4901-a493-182e744675a6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1171px;
  }



  img.s-eb42dffc-1a5e-4901-a493-182e744675a6.shogun-image {
    
    
    
    max-height: 1171px;
  }


.s-eb42dffc-1a5e-4901-a493-182e744675a6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-eb42dffc-1a5e-4901-a493-182e744675a6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eb42dffc-1a5e-4901-a493-182e744675a6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eb42dffc-1a5e-4901-a493-182e744675a6.shogun-image {
  box-sizing: border-box;
}



.s-eb42dffc-1a5e-4901-a493-182e744675a6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-eb42dffc-1a5e-4901-a493-182e744675a6 {
      --shg-aspect-ratio: calc(1171/603); 
    }

    .s-eb42dffc-1a5e-4901-a493-182e744675a6.shogun-image-container {
      position: relative;
    }

    .s-eb42dffc-1a5e-4901-a493-182e744675a6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eb42dffc-1a5e-4901-a493-182e744675a6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eb42dffc-1a5e-4901-a493-182e744675a6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1171px;
    }
  }

}
#s-8f18ce0b-5eed-4ffe-9a25-4d7e2eca6111 {
  max-width: 900px;
aspect-ratio: 300/133;
text-align: center;
}

#s-8f18ce0b-5eed-4ffe-9a25-4d7e2eca6111 {
  overflow: hidden;
  
  
      max-width: 900px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-8f18ce0b-5eed-4ffe-9a25-4d7e2eca6111 img.shogun-image,
  #s-8f18ce0b-5eed-4ffe-9a25-4d7e2eca6111 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8f18ce0b-5eed-4ffe-9a25-4d7e2eca6111 {
    width: 100%;
    height: auto;
  }



  #s-8f18ce0b-5eed-4ffe-9a25-4d7e2eca6111 img.shogun-image {
    

    
    
    
  }


#s-8f18ce0b-5eed-4ffe-9a25-4d7e2eca6111 .shogun-image-content {
  
    justify-content: center;
  
}

#s-1a5b23a3-864f-457b-b8b3-3c733feaa52b {
  max-width: 833px;
aspect-ratio: 833/294;
text-align: center;
}

#s-1a5b23a3-864f-457b-b8b3-3c733feaa52b {
  overflow: hidden;
  
  
      max-width: 833px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-1a5b23a3-864f-457b-b8b3-3c733feaa52b img.shogun-image,
  #s-1a5b23a3-864f-457b-b8b3-3c733feaa52b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1a5b23a3-864f-457b-b8b3-3c733feaa52b {
    width: 100%;
    height: auto;
  }



  #s-1a5b23a3-864f-457b-b8b3-3c733feaa52b img.shogun-image {
    

    
    
    
  }


#s-1a5b23a3-864f-457b-b8b3-3c733feaa52b .shogun-image-content {
  
    justify-content: center;
  
}

#s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 {
  margin-left: auto;
margin-right: auto;
max-width: 239px;
aspect-ratio: 239/100;
text-align: center;
}

#s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 {
  margin: 0 !important;
  overflow: visible;
}

#s-0e0dd808-83e4-434a-9c6f-47640ba6fc89-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-0e0dd808-83e4-434a-9c6f-47640ba6fc89 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 img.shogun-image {
  /* Add background color handling */
  
}

#s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 .shg-image-content-wrapper {
      aspect-ratio: 239/100;
      min-width: 100%;
      height: auto;
    }

    #s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 .shogun-image-link {
      aspect-ratio: 239/100;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 239px;
  }



  img.s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shogun-image {
    
    
    
    max-height: 239px;
  }


.s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shogun-image {
  box-sizing: border-box;
}



.s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 {
      --shg-aspect-ratio: calc(239/100); 
    }

    .s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shogun-image-container {
      position: relative;
    }

    .s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 239px;
    }
  }

@media (min-width: 1200px){#s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 {
  margin: 0 !important;
  overflow: visible;
}

#s-0e0dd808-83e4-434a-9c6f-47640ba6fc89-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-0e0dd808-83e4-434a-9c6f-47640ba6fc89 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 img.shogun-image {
  /* Add background color handling */
  
}

#s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 .shg-image-content-wrapper {
      aspect-ratio: 239/100;
      min-width: 100%;
      height: auto;
    }

    #s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 .shogun-image-link {
      aspect-ratio: 239/100;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 239px;
  }



  img.s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shogun-image {
    
    
    
    max-height: 239px;
  }


.s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shogun-image {
  box-sizing: border-box;
}



.s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 {
      --shg-aspect-ratio: calc(239/100); 
    }

    .s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shogun-image-container {
      position: relative;
    }

    .s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 239px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 {
  margin: 0 !important;
  overflow: visible;
}

#s-0e0dd808-83e4-434a-9c6f-47640ba6fc89-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-0e0dd808-83e4-434a-9c6f-47640ba6fc89 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 img.shogun-image {
  /* Add background color handling */
  
}

#s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 .shg-image-content-wrapper {
      aspect-ratio: 239/100;
      min-width: 100%;
      height: auto;
    }

    #s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 .shogun-image-link {
      aspect-ratio: 239/100;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 239px;
  }



  img.s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shogun-image {
    
    
    
    max-height: 239px;
  }


.s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shogun-image {
  box-sizing: border-box;
}



.s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 {
      --shg-aspect-ratio: calc(239/100); 
    }

    .s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shogun-image-container {
      position: relative;
    }

    .s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 239px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 {
  margin: 0 !important;
  overflow: visible;
}

#s-0e0dd808-83e4-434a-9c6f-47640ba6fc89-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-0e0dd808-83e4-434a-9c6f-47640ba6fc89 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 img.shogun-image {
  /* Add background color handling */
  
}

#s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 .shg-image-content-wrapper {
      aspect-ratio: 239/100;
      min-width: 100%;
      height: auto;
    }

    #s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 .shogun-image-link {
      aspect-ratio: 239/100;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 239px;
  }



  img.s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shogun-image {
    
    
    
    max-height: 239px;
  }


.s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shogun-image {
  box-sizing: border-box;
}



.s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 {
      --shg-aspect-ratio: calc(239/100); 
    }

    .s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shogun-image-container {
      position: relative;
    }

    .s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 239px;
    }
  }

}@media (max-width: 767px){#s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 {
  margin: 0 !important;
  overflow: visible;
}

#s-0e0dd808-83e4-434a-9c6f-47640ba6fc89-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-0e0dd808-83e4-434a-9c6f-47640ba6fc89 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 img.shogun-image {
  /* Add background color handling */
  
}

#s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 .shg-image-content-wrapper {
      aspect-ratio: 239/100;
      min-width: 100%;
      height: auto;
    }

    #s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 .shogun-image-link {
      aspect-ratio: 239/100;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 239px;
  }



  img.s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shogun-image {
    
    
    
    max-height: 239px;
  }


.s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shogun-image {
  box-sizing: border-box;
}



.s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 {
      --shg-aspect-ratio: calc(239/100); 
    }

    .s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shogun-image-container {
      position: relative;
    }

    .s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0e0dd808-83e4-434a-9c6f-47640ba6fc89.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0e0dd808-83e4-434a-9c6f-47640ba6fc89 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 239px;
    }
  }

}
.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-ae5926c5-6106-471c-b72b-656078f05f78 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-ae5926c5-6106-471c-b72b-656078f05f78 {
  display: none;
}
#s-ae5926c5-6106-471c-b72b-656078f05f78, #wrap-s-ae5926c5-6106-471c-b72b-656078f05f78, #wrap-content-s-ae5926c5-6106-471c-b72b-656078f05f78 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ae5926c5-6106-471c-b72b-656078f05f78 {
  display: none;
}
#s-ae5926c5-6106-471c-b72b-656078f05f78, #wrap-s-ae5926c5-6106-471c-b72b-656078f05f78, #wrap-content-s-ae5926c5-6106-471c-b72b-656078f05f78 { display: none !important; }}
#s-ae5926c5-6106-471c-b72b-656078f05f78 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-ae5926c5-6106-471c-b72b-656078f05f78 .shg-sld-nav-button.shg-sld-left,
#s-ae5926c5-6106-471c-b72b-656078f05f78 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-d5f68d8e-9400-4414-a015-fe281ca1ea9b {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-d5f68d8e-9400-4414-a015-fe281ca1ea9b"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-d5f68d8e-9400-4414-a015-fe281ca1ea9b"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-d5f68d8e-9400-4414-a015-fe281ca1ea9b"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-d5f68d8e-9400-4414-a015-fe281ca1ea9b"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-e46bc0a4-f4bd-4ecb-a950-dc1bbc17733b {
  max-width: 900px;
aspect-ratio: 300/133;
text-align: center;
}

#s-e46bc0a4-f4bd-4ecb-a950-dc1bbc17733b {
  overflow: hidden;
  
  
      max-width: 900px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-e46bc0a4-f4bd-4ecb-a950-dc1bbc17733b img.shogun-image,
  #s-e46bc0a4-f4bd-4ecb-a950-dc1bbc17733b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e46bc0a4-f4bd-4ecb-a950-dc1bbc17733b {
    width: 100%;
    height: auto;
  }



  #s-e46bc0a4-f4bd-4ecb-a950-dc1bbc17733b img.shogun-image {
    

    
    
    
  }


#s-e46bc0a4-f4bd-4ecb-a950-dc1bbc17733b .shogun-image-content {
  
    justify-content: center;
  
}

#s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 {
  margin-top: 0px;
margin-left: 20%;
margin-bottom: 0px;
margin-right: 20%;
max-width: 1171px;
aspect-ratio: 1171/603;
text-align: center;
}

#s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 {
  margin: 0 !important;
  overflow: visible;
}

#s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176-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-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 20%;
  margin-right: 20%;
  margin-top: 0px;
  margin-bottom: 0px;
}

.shg-image-content-margin-container-s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 img.shogun-image {
  /* Add background color handling */
  
}

#s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 .shg-image-content-wrapper {
      aspect-ratio: 1171/603;
      min-width: 100%;
      height: auto;
    }

    #s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 .shogun-image-link {
      aspect-ratio: 1171/603;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1171px;
  }



  img.s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shogun-image {
    
    
    
    max-height: 1171px;
  }


.s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shogun-image {
  box-sizing: border-box;
}



.s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 {
      --shg-aspect-ratio: calc(1171/603); 
    }

    .s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shogun-image-container {
      position: relative;
    }

    .s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1171px;
    }
  }

@media (min-width: 1200px){#s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 {
  margin: 0 !important;
  overflow: visible;
}

#s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176-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-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 img.shogun-image {
  /* Add background color handling */
  
}

#s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 .shg-image-content-wrapper {
      aspect-ratio: 1171/603;
      min-width: 100%;
      height: auto;
    }

    #s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 .shogun-image-link {
      aspect-ratio: 1171/603;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1171px;
  }



  img.s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shogun-image {
    
    
    
    max-height: 1171px;
  }


.s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shogun-image {
  box-sizing: border-box;
}



.s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 {
      --shg-aspect-ratio: calc(1171/603); 
    }

    .s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shogun-image-container {
      position: relative;
    }

    .s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1171px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 {
  margin: 0 !important;
  overflow: visible;
}

#s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176-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-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 img.shogun-image {
  /* Add background color handling */
  
}

#s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 .shg-image-content-wrapper {
      aspect-ratio: 1171/603;
      min-width: 100%;
      height: auto;
    }

    #s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 .shogun-image-link {
      aspect-ratio: 1171/603;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1171px;
  }



  img.s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shogun-image {
    
    
    
    max-height: 1171px;
  }


.s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shogun-image {
  box-sizing: border-box;
}



.s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 {
      --shg-aspect-ratio: calc(1171/603); 
    }

    .s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shogun-image-container {
      position: relative;
    }

    .s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1171px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 {
  margin: 0 !important;
  overflow: visible;
}

#s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176-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-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 img.shogun-image {
  /* Add background color handling */
  
}

#s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 .shg-image-content-wrapper {
      aspect-ratio: 1171/603;
      min-width: 100%;
      height: auto;
    }

    #s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 .shogun-image-link {
      aspect-ratio: 1171/603;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1171px;
  }



  img.s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shogun-image {
    
    
    
    max-height: 1171px;
  }


.s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shogun-image {
  box-sizing: border-box;
}



.s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 {
      --shg-aspect-ratio: calc(1171/603); 
    }

    .s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shogun-image-container {
      position: relative;
    }

    .s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1171px;
    }
  }

}@media (max-width: 767px){#s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 {
  margin: 0 !important;
  overflow: visible;
}

#s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176-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-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 img.shogun-image {
  /* Add background color handling */
  
}

#s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 .shg-image-content-wrapper {
      aspect-ratio: 1171/603;
      min-width: 100%;
      height: auto;
    }

    #s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 .shogun-image-link {
      aspect-ratio: 1171/603;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1171px;
  }



  img.s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shogun-image {
    
    
    
    max-height: 1171px;
  }


.s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shogun-image {
  box-sizing: border-box;
}



.s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 {
      --shg-aspect-ratio: calc(1171/603); 
    }

    .s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shogun-image-container {
      position: relative;
    }

    .s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8cf96a45-c21b-45e9-9b77-a3edf8ac2176 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1171px;
    }
  }

}
#s-2495fb3f-21ee-4b33-82de-151f41085329 {
  max-width: 833px;
aspect-ratio: 833/294;
text-align: center;
}

#s-2495fb3f-21ee-4b33-82de-151f41085329 {
  overflow: hidden;
  
  
      max-width: 833px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-2495fb3f-21ee-4b33-82de-151f41085329 img.shogun-image,
  #s-2495fb3f-21ee-4b33-82de-151f41085329 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2495fb3f-21ee-4b33-82de-151f41085329 {
    width: 100%;
    height: auto;
  }



  #s-2495fb3f-21ee-4b33-82de-151f41085329 img.shogun-image {
    

    
    
    
  }


#s-2495fb3f-21ee-4b33-82de-151f41085329 .shogun-image-content {
  
    justify-content: center;
  
}

#s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 {
  margin-left: auto;
margin-right: auto;
max-width: 239px;
aspect-ratio: 239/100;
text-align: center;
}

#s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 {
  margin: 0 !important;
  overflow: visible;
}

#s-ebe08828-86f3-46b2-b34f-d618cab7b9d1-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-ebe08828-86f3-46b2-b34f-d618cab7b9d1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 img.shogun-image {
  /* Add background color handling */
  
}

#s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 .shg-image-content-wrapper {
      aspect-ratio: 239/100;
      min-width: 100%;
      height: auto;
    }

    #s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 .shogun-image-link {
      aspect-ratio: 239/100;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 239px;
  }



  img.s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shogun-image {
    
    
    
    max-height: 239px;
  }


.s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shogun-image {
  box-sizing: border-box;
}



.s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 {
      --shg-aspect-ratio: calc(239/100); 
    }

    .s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shogun-image-container {
      position: relative;
    }

    .s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 239px;
    }
  }

@media (min-width: 1200px){#s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 {
  margin: 0 !important;
  overflow: visible;
}

#s-ebe08828-86f3-46b2-b34f-d618cab7b9d1-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-ebe08828-86f3-46b2-b34f-d618cab7b9d1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 img.shogun-image {
  /* Add background color handling */
  
}

#s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 .shg-image-content-wrapper {
      aspect-ratio: 239/100;
      min-width: 100%;
      height: auto;
    }

    #s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 .shogun-image-link {
      aspect-ratio: 239/100;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 239px;
  }



  img.s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shogun-image {
    
    
    
    max-height: 239px;
  }


.s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shogun-image {
  box-sizing: border-box;
}



.s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 {
      --shg-aspect-ratio: calc(239/100); 
    }

    .s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shogun-image-container {
      position: relative;
    }

    .s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 239px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 {
  margin: 0 !important;
  overflow: visible;
}

#s-ebe08828-86f3-46b2-b34f-d618cab7b9d1-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-ebe08828-86f3-46b2-b34f-d618cab7b9d1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 img.shogun-image {
  /* Add background color handling */
  
}

#s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 .shg-image-content-wrapper {
      aspect-ratio: 239/100;
      min-width: 100%;
      height: auto;
    }

    #s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 .shogun-image-link {
      aspect-ratio: 239/100;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 239px;
  }



  img.s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shogun-image {
    
    
    
    max-height: 239px;
  }


.s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shogun-image {
  box-sizing: border-box;
}



.s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 {
      --shg-aspect-ratio: calc(239/100); 
    }

    .s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shogun-image-container {
      position: relative;
    }

    .s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 239px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 {
  margin: 0 !important;
  overflow: visible;
}

#s-ebe08828-86f3-46b2-b34f-d618cab7b9d1-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-ebe08828-86f3-46b2-b34f-d618cab7b9d1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 img.shogun-image {
  /* Add background color handling */
  
}

#s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 .shg-image-content-wrapper {
      aspect-ratio: 239/100;
      min-width: 100%;
      height: auto;
    }

    #s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 .shogun-image-link {
      aspect-ratio: 239/100;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 239px;
  }



  img.s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shogun-image {
    
    
    
    max-height: 239px;
  }


.s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shogun-image {
  box-sizing: border-box;
}



.s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 {
      --shg-aspect-ratio: calc(239/100); 
    }

    .s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shogun-image-container {
      position: relative;
    }

    .s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 239px;
    }
  }

}@media (max-width: 767px){#s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 {
  margin: 0 !important;
  overflow: visible;
}

#s-ebe08828-86f3-46b2-b34f-d618cab7b9d1-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-ebe08828-86f3-46b2-b34f-d618cab7b9d1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 img.shogun-image {
  /* Add background color handling */
  
}

#s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 .shg-image-content-wrapper {
      aspect-ratio: 239/100;
      min-width: 100%;
      height: auto;
    }

    #s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 .shogun-image-link {
      aspect-ratio: 239/100;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 239px;
  }



  img.s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shogun-image {
    
    
    
    max-height: 239px;
  }


.s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shogun-image {
  box-sizing: border-box;
}



.s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 {
      --shg-aspect-ratio: calc(239/100); 
    }

    .s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shogun-image-container {
      position: relative;
    }

    .s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ebe08828-86f3-46b2-b34f-d618cab7b9d1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ebe08828-86f3-46b2-b34f-d618cab7b9d1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 239px;
    }
  }

}
#s-1f2af22d-467b-44d1-9321-90e482fdf36f {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-1f2af22d-467b-44d1-9321-90e482fdf36f"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-1f2af22d-467b-44d1-9321-90e482fdf36f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-1f2af22d-467b-44d1-9321-90e482fdf36f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-1f2af22d-467b-44d1-9321-90e482fdf36f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-07c49a10-08f5-4784-912c-78609902ff17 {
  margin-top: 30px;
margin-bottom: 0px;
text-align: center;
}

#s-07c49a10-08f5-4784-912c-78609902ff17 {
  overflow: hidden;
  
  
}







  #s-07c49a10-08f5-4784-912c-78609902ff17 img.shogun-image {
    

    
    
    
  }


#s-07c49a10-08f5-4784-912c-78609902ff17 .shogun-image-content {
  
    justify-content: center;
  
}

#s-45f96022-53ae-42a5-972f-b8a7d3cce59f {
  text-align: center;
}

#s-45f96022-53ae-42a5-972f-b8a7d3cce59f {
  overflow: hidden;
  
  
}







  #s-45f96022-53ae-42a5-972f-b8a7d3cce59f img.shogun-image {
    

    
    
    
  }


#s-45f96022-53ae-42a5-972f-b8a7d3cce59f .shogun-image-content {
  
    justify-content: center;
  
}

#s-573765a9-b1d2-4b75-8adc-f1f1a7661fb4 {
  margin-top: 30px;
text-align: center;
}

#s-573765a9-b1d2-4b75-8adc-f1f1a7661fb4 {
  overflow: hidden;
  
  
}







  #s-573765a9-b1d2-4b75-8adc-f1f1a7661fb4 img.shogun-image {
    

    
    
    
  }


#s-573765a9-b1d2-4b75-8adc-f1f1a7661fb4 .shogun-image-content {
  
    justify-content: center;
  
}

#s-782fdcf3-af4d-4881-a8f0-7fbfcf989226 {
  margin-top: 0px;
margin-left: 50px;
margin-bottom: 0px;
margin-right: 50px;
min-height: 50px;
}








#s-782fdcf3-af4d-4881-a8f0-7fbfcf989226 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-782fdcf3-af4d-4881-a8f0-7fbfcf989226.shg-box.shg-c {
  justify-content: center;
}

#s-9f3eb086-fecd-43f5-906c-5250e6afc375 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iZmU3ZmI5MTUtZjk2Ny00ODliLWI2ZWEtMWY3OGQzMWFkNWE0IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWQ5YmMzO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZmY5NTAwO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNmZTdmYjkxNS1mOTY3LTQ4OWItYjZlYS0xZjc4ZDMxYWQ1YTQpIi8+PC9zdmc+);
background-repeat: no-repeat;
margin-top: 29px;
margin-left: 25px;
margin-bottom: 42px;
margin-right: 25px;
padding-top: 16px;
padding-left: 40px;
padding-bottom: 16px;
padding-right: 40px;
border-radius: 0px;
text-align: center;
text-decoration: none;
background-gradient: [{"id"=>1, "pos"=>1, "color"=>"#ed9bc3"}, {"id"=>2, "pos"=>1, "color"=>"#ff9500"}];
hover-type: gradient;
}
#s-9f3eb086-fecd-43f5-906c-5250e6afc375:hover {background-color: rgba(225, 31, 143, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-9f3eb086-fecd-43f5-906c-5250e6afc375:active {background-color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-9f3eb086-fecd-43f5-906c-5250e6afc375-root {
    text-align: center;
  }


#s-9f3eb086-fecd-43f5-906c-5250e6afc375.shg-btn {
  color: #ffffff;
  font-size: 22px;
  
  
  font-family: Archivo Black;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-9f3eb086-fecd-43f5-906c-5250e6afc375-root {
    text-align: center;
  }


#s-9f3eb086-fecd-43f5-906c-5250e6afc375.shg-btn {
  color: #ffffff;
  font-size: 22px;
  
  
  font-family: Archivo Black;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9f3eb086-fecd-43f5-906c-5250e6afc375-root {
    text-align: center;
  }


#s-9f3eb086-fecd-43f5-906c-5250e6afc375.shg-btn {
  color: #ffffff;
  font-size: 22px;
  
  
  font-family: Archivo Black;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9f3eb086-fecd-43f5-906c-5250e6afc375-root {
    text-align: center;
  }


#s-9f3eb086-fecd-43f5-906c-5250e6afc375.shg-btn {
  color: #ffffff;
  font-size: 22px;
  
  
  font-family: Archivo Black;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-9f3eb086-fecd-43f5-906c-5250e6afc375-root {
    text-align: center;
  }


#s-9f3eb086-fecd-43f5-906c-5250e6afc375.shg-btn {
  color: #ffffff;
  font-size: 22px;
  
  
  font-family: Archivo Black;
  display:  inline-block ;
}
}
/*
  $vgutter : 20px
  $hgutter : 10px;
*/

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

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

.shogun-root iframe {
  display: initial;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}

.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

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

.shogun-root div:empty:not(.shopify-section *):not([id^="wistia"]) {
  display: inline-block;
}

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

/* <-- User Content Animations */

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

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

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