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

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

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

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

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

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

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

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

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

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

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

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

#s-175aec0d-70c2-4756-a93a-18c5e3773690 {
  margin-top: 0px;
margin-bottom: 0px;
min-height: 50px;
}








#s-175aec0d-70c2-4756-a93a-18c5e3773690 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-175aec0d-70c2-4756-a93a-18c5e3773690.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8102d1ad-2e65-4a3c-8659-d75db48e17b1 {
  padding-top: 54px;
padding-bottom: 64px;
min-height: 50px;
background-color: rgba(26, 87, 69, 1);
}
@media (max-width: 767px){#s-8102d1ad-2e65-4a3c-8659-d75db48e17b1 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 32px;
padding-bottom: 32px;
}
}







#s-8102d1ad-2e65-4a3c-8659-d75db48e17b1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8102d1ad-2e65-4a3c-8659-d75db48e17b1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-45e222bd-72e8-42f9-acfd-805b4bca3214 {
  margin-top: -10px;
margin-left: auto;
margin-bottom: -10px;
margin-right: auto;
text-align: left;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-image-content-wrapper .shogun-image.hover~* {
  z-index: 1;
}
#s-2670e135-1741-456e-a95e-4b1645a1cc71 {
  margin-top: 0px;
margin-bottom: 32px;
max-width: 600px;
aspect-ratio: 2208/130;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-2670e135-1741-456e-a95e-4b1645a1cc71 {
  display: none;
}
#s-2670e135-1741-456e-a95e-4b1645a1cc71, #wrap-s-2670e135-1741-456e-a95e-4b1645a1cc71 { display: none !important; }}@media (max-width: 767px){#s-2670e135-1741-456e-a95e-4b1645a1cc71 {
  display: none;
}
#s-2670e135-1741-456e-a95e-4b1645a1cc71, #wrap-s-2670e135-1741-456e-a95e-4b1645a1cc71 { display: none !important; }}


.shg-image-margin-container-s-2670e135-1741-456e-a95e-4b1645a1cc71 {
  
  
  margin-top: 0px;
  margin-bottom: 32px;
}

#s-2670e135-1741-456e-a95e-4b1645a1cc71 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2670e135-1741-456e-a95e-4b1645a1cc71 .shg-image-content-wrapper {
      aspect-ratio: 2208/130;
      width: 100%;
      height: 100%;
    }

    #s-2670e135-1741-456e-a95e-4b1645a1cc71 .shogun-image-link {
      aspect-ratio: 2208/130;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2670e135-1741-456e-a95e-4b1645a1cc71 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2670e135-1741-456e-a95e-4b1645a1cc71.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2670e135-1741-456e-a95e-4b1645a1cc71 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2670e135-1741-456e-a95e-4b1645a1cc71.shogun-image {
    
    
  }


.s-2670e135-1741-456e-a95e-4b1645a1cc71 .shogun-image-content {
  
    align-items: center;
  
}

.s-2670e135-1741-456e-a95e-4b1645a1cc71.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2670e135-1741-456e-a95e-4b1645a1cc71.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2670e135-1741-456e-a95e-4b1645a1cc71.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2670e135-1741-456e-a95e-4b1645a1cc71 {
      --shg-aspect-ratio: calc(2208/130); 
    }

    .s-2670e135-1741-456e-a95e-4b1645a1cc71.shogun-image-container {
      position: relative;
    }

    .s-2670e135-1741-456e-a95e-4b1645a1cc71.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2670e135-1741-456e-a95e-4b1645a1cc71.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2670e135-1741-456e-a95e-4b1645a1cc71 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-2670e135-1741-456e-a95e-4b1645a1cc71 {
  
  
  
  
}

#s-2670e135-1741-456e-a95e-4b1645a1cc71 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2670e135-1741-456e-a95e-4b1645a1cc71 .shg-image-content-wrapper {
      aspect-ratio: 2208/130;
      width: 100%;
      height: 100%;
    }

    #s-2670e135-1741-456e-a95e-4b1645a1cc71 .shogun-image-link {
      aspect-ratio: 2208/130;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2670e135-1741-456e-a95e-4b1645a1cc71 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2670e135-1741-456e-a95e-4b1645a1cc71.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2670e135-1741-456e-a95e-4b1645a1cc71 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2670e135-1741-456e-a95e-4b1645a1cc71.shogun-image {
    
    
  }


.s-2670e135-1741-456e-a95e-4b1645a1cc71 .shogun-image-content {
  
    align-items: center;
  
}

.s-2670e135-1741-456e-a95e-4b1645a1cc71.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2670e135-1741-456e-a95e-4b1645a1cc71.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2670e135-1741-456e-a95e-4b1645a1cc71.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2670e135-1741-456e-a95e-4b1645a1cc71 {
      --shg-aspect-ratio: calc(2208/130); 
    }

    .s-2670e135-1741-456e-a95e-4b1645a1cc71.shogun-image-container {
      position: relative;
    }

    .s-2670e135-1741-456e-a95e-4b1645a1cc71.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2670e135-1741-456e-a95e-4b1645a1cc71.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2670e135-1741-456e-a95e-4b1645a1cc71 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-2670e135-1741-456e-a95e-4b1645a1cc71 {
  
  
  
  
}

#s-2670e135-1741-456e-a95e-4b1645a1cc71 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2670e135-1741-456e-a95e-4b1645a1cc71 .shg-image-content-wrapper {
      aspect-ratio: 2208/130;
      width: 100%;
      height: 100%;
    }

    #s-2670e135-1741-456e-a95e-4b1645a1cc71 .shogun-image-link {
      aspect-ratio: 2208/130;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2670e135-1741-456e-a95e-4b1645a1cc71 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2670e135-1741-456e-a95e-4b1645a1cc71.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2670e135-1741-456e-a95e-4b1645a1cc71 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2670e135-1741-456e-a95e-4b1645a1cc71.shogun-image {
    
    
  }


.s-2670e135-1741-456e-a95e-4b1645a1cc71 .shogun-image-content {
  
    align-items: center;
  
}

.s-2670e135-1741-456e-a95e-4b1645a1cc71.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2670e135-1741-456e-a95e-4b1645a1cc71.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2670e135-1741-456e-a95e-4b1645a1cc71.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2670e135-1741-456e-a95e-4b1645a1cc71 {
      --shg-aspect-ratio: calc(2208/130); 
    }

    .s-2670e135-1741-456e-a95e-4b1645a1cc71.shogun-image-container {
      position: relative;
    }

    .s-2670e135-1741-456e-a95e-4b1645a1cc71.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2670e135-1741-456e-a95e-4b1645a1cc71.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2670e135-1741-456e-a95e-4b1645a1cc71 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-2670e135-1741-456e-a95e-4b1645a1cc71 {
  
  
  
  
}

#s-2670e135-1741-456e-a95e-4b1645a1cc71 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2670e135-1741-456e-a95e-4b1645a1cc71 .shg-image-content-wrapper {
      aspect-ratio: 2208/130;
      width: 100%;
      height: 100%;
    }

    #s-2670e135-1741-456e-a95e-4b1645a1cc71 .shogun-image-link {
      aspect-ratio: 2208/130;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2670e135-1741-456e-a95e-4b1645a1cc71 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2670e135-1741-456e-a95e-4b1645a1cc71.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2670e135-1741-456e-a95e-4b1645a1cc71 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2670e135-1741-456e-a95e-4b1645a1cc71.shogun-image {
    
    
  }


.s-2670e135-1741-456e-a95e-4b1645a1cc71 .shogun-image-content {
  
    align-items: center;
  
}

.s-2670e135-1741-456e-a95e-4b1645a1cc71.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2670e135-1741-456e-a95e-4b1645a1cc71.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2670e135-1741-456e-a95e-4b1645a1cc71.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2670e135-1741-456e-a95e-4b1645a1cc71 {
      --shg-aspect-ratio: calc(2208/130); 
    }

    .s-2670e135-1741-456e-a95e-4b1645a1cc71.shogun-image-container {
      position: relative;
    }

    .s-2670e135-1741-456e-a95e-4b1645a1cc71.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2670e135-1741-456e-a95e-4b1645a1cc71.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2670e135-1741-456e-a95e-4b1645a1cc71 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-2670e135-1741-456e-a95e-4b1645a1cc71 {
  
  
  
  
}

#s-2670e135-1741-456e-a95e-4b1645a1cc71 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2670e135-1741-456e-a95e-4b1645a1cc71 .shg-image-content-wrapper {
      aspect-ratio: 2208/130;
      width: 100%;
      height: 100%;
    }

    #s-2670e135-1741-456e-a95e-4b1645a1cc71 .shogun-image-link {
      aspect-ratio: 2208/130;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2670e135-1741-456e-a95e-4b1645a1cc71 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2670e135-1741-456e-a95e-4b1645a1cc71.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2670e135-1741-456e-a95e-4b1645a1cc71 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2670e135-1741-456e-a95e-4b1645a1cc71.shogun-image {
    
    
  }


.s-2670e135-1741-456e-a95e-4b1645a1cc71 .shogun-image-content {
  
    align-items: center;
  
}

.s-2670e135-1741-456e-a95e-4b1645a1cc71.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2670e135-1741-456e-a95e-4b1645a1cc71.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2670e135-1741-456e-a95e-4b1645a1cc71.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2670e135-1741-456e-a95e-4b1645a1cc71 {
      --shg-aspect-ratio: calc(2208/130); 
    }

    .s-2670e135-1741-456e-a95e-4b1645a1cc71.shogun-image-container {
      position: relative;
    }

    .s-2670e135-1741-456e-a95e-4b1645a1cc71.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2670e135-1741-456e-a95e-4b1645a1cc71.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2670e135-1741-456e-a95e-4b1645a1cc71 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-ed5df138-cf80-42c3-850e-b0cd20831f9f {
  margin-top: 0px;
margin-bottom: 20px;
max-width: 280px;
aspect-ratio: 1339/307;
text-align: center;
}
@media (min-width: 1200px){#s-ed5df138-cf80-42c3-850e-b0cd20831f9f {
  display: none;
}
#s-ed5df138-cf80-42c3-850e-b0cd20831f9f, #wrap-s-ed5df138-cf80-42c3-850e-b0cd20831f9f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ed5df138-cf80-42c3-850e-b0cd20831f9f {
  display: none;
}
#s-ed5df138-cf80-42c3-850e-b0cd20831f9f, #wrap-s-ed5df138-cf80-42c3-850e-b0cd20831f9f { display: none !important; }}


.shg-image-margin-container-s-ed5df138-cf80-42c3-850e-b0cd20831f9f {
  
  
  margin-top: 0px;
  margin-bottom: 20px;
}

#s-ed5df138-cf80-42c3-850e-b0cd20831f9f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ed5df138-cf80-42c3-850e-b0cd20831f9f .shg-image-content-wrapper {
      aspect-ratio: 1339/307;
      width: 100%;
      height: 100%;
    }

    #s-ed5df138-cf80-42c3-850e-b0cd20831f9f .shogun-image-link {
      aspect-ratio: 1339/307;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ed5df138-cf80-42c3-850e-b0cd20831f9f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ed5df138-cf80-42c3-850e-b0cd20831f9f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shogun-image {
    
    
  }


.s-ed5df138-cf80-42c3-850e-b0cd20831f9f .shogun-image-content {
  
    align-items: center;
  
}

.s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ed5df138-cf80-42c3-850e-b0cd20831f9f {
      --shg-aspect-ratio: calc(1339/307); 
    }

    .s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shogun-image-container {
      position: relative;
    }

    .s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ed5df138-cf80-42c3-850e-b0cd20831f9f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-ed5df138-cf80-42c3-850e-b0cd20831f9f {
  
  
  
  
}

#s-ed5df138-cf80-42c3-850e-b0cd20831f9f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ed5df138-cf80-42c3-850e-b0cd20831f9f .shg-image-content-wrapper {
      aspect-ratio: 1339/307;
      width: 100%;
      height: 100%;
    }

    #s-ed5df138-cf80-42c3-850e-b0cd20831f9f .shogun-image-link {
      aspect-ratio: 1339/307;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ed5df138-cf80-42c3-850e-b0cd20831f9f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ed5df138-cf80-42c3-850e-b0cd20831f9f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shogun-image {
    
    
  }


.s-ed5df138-cf80-42c3-850e-b0cd20831f9f .shogun-image-content {
  
    align-items: center;
  
}

.s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ed5df138-cf80-42c3-850e-b0cd20831f9f {
      --shg-aspect-ratio: calc(1339/307); 
    }

    .s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shogun-image-container {
      position: relative;
    }

    .s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ed5df138-cf80-42c3-850e-b0cd20831f9f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-ed5df138-cf80-42c3-850e-b0cd20831f9f {
  
  
  
  
}

#s-ed5df138-cf80-42c3-850e-b0cd20831f9f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ed5df138-cf80-42c3-850e-b0cd20831f9f .shg-image-content-wrapper {
      aspect-ratio: 1339/307;
      width: 100%;
      height: 100%;
    }

    #s-ed5df138-cf80-42c3-850e-b0cd20831f9f .shogun-image-link {
      aspect-ratio: 1339/307;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ed5df138-cf80-42c3-850e-b0cd20831f9f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ed5df138-cf80-42c3-850e-b0cd20831f9f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shogun-image {
    
    
  }


.s-ed5df138-cf80-42c3-850e-b0cd20831f9f .shogun-image-content {
  
    align-items: center;
  
}

.s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ed5df138-cf80-42c3-850e-b0cd20831f9f {
      --shg-aspect-ratio: calc(1339/307); 
    }

    .s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shogun-image-container {
      position: relative;
    }

    .s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ed5df138-cf80-42c3-850e-b0cd20831f9f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-ed5df138-cf80-42c3-850e-b0cd20831f9f {
  
  
  
  
}

#s-ed5df138-cf80-42c3-850e-b0cd20831f9f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ed5df138-cf80-42c3-850e-b0cd20831f9f .shg-image-content-wrapper {
      aspect-ratio: 1339/307;
      width: 100%;
      height: 100%;
    }

    #s-ed5df138-cf80-42c3-850e-b0cd20831f9f .shogun-image-link {
      aspect-ratio: 1339/307;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ed5df138-cf80-42c3-850e-b0cd20831f9f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ed5df138-cf80-42c3-850e-b0cd20831f9f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shogun-image {
    
    
  }


.s-ed5df138-cf80-42c3-850e-b0cd20831f9f .shogun-image-content {
  
    align-items: center;
  
}

.s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ed5df138-cf80-42c3-850e-b0cd20831f9f {
      --shg-aspect-ratio: calc(1339/307); 
    }

    .s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shogun-image-container {
      position: relative;
    }

    .s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ed5df138-cf80-42c3-850e-b0cd20831f9f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-ed5df138-cf80-42c3-850e-b0cd20831f9f {
  
  
  
  
}

#s-ed5df138-cf80-42c3-850e-b0cd20831f9f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ed5df138-cf80-42c3-850e-b0cd20831f9f .shg-image-content-wrapper {
      aspect-ratio: 1339/307;
      width: 100%;
      height: 100%;
    }

    #s-ed5df138-cf80-42c3-850e-b0cd20831f9f .shogun-image-link {
      aspect-ratio: 1339/307;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ed5df138-cf80-42c3-850e-b0cd20831f9f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ed5df138-cf80-42c3-850e-b0cd20831f9f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shogun-image {
    
    
  }


.s-ed5df138-cf80-42c3-850e-b0cd20831f9f .shogun-image-content {
  
    align-items: center;
  
}

.s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ed5df138-cf80-42c3-850e-b0cd20831f9f {
      --shg-aspect-ratio: calc(1339/307); 
    }

    .s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shogun-image-container {
      position: relative;
    }

    .s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ed5df138-cf80-42c3-850e-b0cd20831f9f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ed5df138-cf80-42c3-850e-b0cd20831f9f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-9b286c06-c756-4c88-8cfc-dc0aafcc24d3 {
  margin-left: auto;
margin-right: auto;
max-width: 1400px;
text-align: left;
}
@media (min-width: 1200px){#s-9b286c06-c756-4c88-8cfc-dc0aafcc24d3 {
  max-width: 1600px;
}
}@media (max-width: 767px){#s-9b286c06-c756-4c88-8cfc-dc0aafcc24d3 {
  margin-top: 10px;
margin-bottom: 32px;
}
}
.shg-btn.shg-cse, .shg-btn.shg-cse:hover, .shg-btn.shg-cse:focus {
  color: #FFF;
}

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

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

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

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

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

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

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

#s-7f9e8a15-74ad-404b-997d-8f20ddacacef {
  margin-top: 32px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 40px;
padding-bottom: 10px;
padding-right: 40px;
border-radius: 30px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(26, 87, 69, 1);
}
#s-7f9e8a15-74ad-404b-997d-8f20ddacacef:hover {background-color: rgba(255, 255, 255, 0.86) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(26, 87, 69, 1) !important;}#s-7f9e8a15-74ad-404b-997d-8f20ddacacef:active {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(26, 87, 69, 1) !important;}@media (min-width: 1200px){#s-7f9e8a15-74ad-404b-997d-8f20ddacacef {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-7f9e8a15-74ad-404b-997d-8f20ddacacef {
  
}
}@media (max-width: 767px){#s-7f9e8a15-74ad-404b-997d-8f20ddacacef {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
}
}

  #s-7f9e8a15-74ad-404b-997d-8f20ddacacef-root {
    text-align: center;
  }


#s-7f9e8a15-74ad-404b-997d-8f20ddacacef.shg-btn {
  color: rgba(26, 87, 69, 1);
  font-size: 18px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-7f9e8a15-74ad-404b-997d-8f20ddacacef-root {
    text-align: center;
  }


#s-7f9e8a15-74ad-404b-997d-8f20ddacacef.shg-btn {
  color: rgba(26, 87, 69, 1);
  font-size: 18px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7f9e8a15-74ad-404b-997d-8f20ddacacef-root {
    text-align: center;
  }


#s-7f9e8a15-74ad-404b-997d-8f20ddacacef.shg-btn {
  color: rgba(26, 87, 69, 1);
  font-size: 18px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7f9e8a15-74ad-404b-997d-8f20ddacacef-root {
    text-align: center;
  }


#s-7f9e8a15-74ad-404b-997d-8f20ddacacef.shg-btn {
  color: rgba(26, 87, 69, 1);
  font-size: 18px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-7f9e8a15-74ad-404b-997d-8f20ddacacef-root {
    text-align: center;
  }


#s-7f9e8a15-74ad-404b-997d-8f20ddacacef.shg-btn {
  color: rgba(26, 87, 69, 1);
  font-size: 18px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}
#s-3249542d-2715-4b7e-ac6e-e17b90028120 {
  margin-left: auto;
margin-right: auto;
padding-top: 64px;
padding-bottom: 0px;
min-height: 50px;
background-color: rgba(248, 246, 241, 1);
}
@media (max-width: 767px){#s-3249542d-2715-4b7e-ac6e-e17b90028120 {
  padding-top: 32px;
}
}







#s-3249542d-2715-4b7e-ac6e-e17b90028120 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3249542d-2715-4b7e-ac6e-e17b90028120.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

#s-846faad4-38b5-4786-84fc-bf8787062b87 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (max-width: 767px){#s-846faad4-38b5-4786-84fc-bf8787062b87 {
  margin-left: 5%;
margin-right: 5%;
padding-top: 0px;
padding-bottom: 32px;
}
}
#s-846faad4-38b5-4786-84fc-bf8787062b87 .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 35px;
  line-height: 1.2em;
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-846faad4-38b5-4786-84fc-bf8787062b87 .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 26px;
  line-height: 1.2em;
  
  
}


}@media (max-width: 767px){#s-846faad4-38b5-4786-84fc-bf8787062b87 .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 26px;
  line-height: 1.2em;
  
  
}


}
#s-cec3f1cc-c21c-4fc1-8454-f4444e2c53c5 {
  margin-left: auto;
margin-right: auto;
padding-top: 32px;
padding-bottom: 32px;
min-height: 50px;
background-color: rgba(248, 246, 241, 1);
}
@media (max-width: 767px){#s-cec3f1cc-c21c-4fc1-8454-f4444e2c53c5 {
  padding-top: 0px;
padding-bottom: 0px;
}
}







#s-cec3f1cc-c21c-4fc1-8454-f4444e2c53c5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-cec3f1cc-c21c-4fc1-8454-f4444e2c53c5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

#s-0db8138d-610a-417f-8ff6-c0959e7705ac {
  margin-left: auto;
margin-right: auto;
max-width: 1400px;
}

@media (min-width: 0px) {
[id="s-0db8138d-610a-417f-8ff6-c0959e7705ac"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0db8138d-610a-417f-8ff6-c0959e7705ac"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-0db8138d-610a-417f-8ff6-c0959e7705ac"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-0db8138d-610a-417f-8ff6-c0959e7705ac"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-d7c44b94-d232-4413-a0d2-bac227303e37 {
  min-height: 50px;
}








#s-d7c44b94-d232-4413-a0d2-bac227303e37 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d7c44b94-d232-4413-a0d2-bac227303e37.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4934f2b9-253c-4200-a0d8-2b4aaa9d87b1 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 0px;
max-width: 550px;
text-align: center;
}
@media (max-width: 767px){#s-4934f2b9-253c-4200-a0d8-2b4aaa9d87b1 {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-5c0f7d47-a07e-4cf8-9679-f50caae5837a {
  margin-left: 0%;
margin-right: 5%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-5c0f7d47-a07e-4cf8-9679-f50caae5837a {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-5c0f7d47-a07e-4cf8-9679-f50caae5837a {
  margin-top: -20px;
margin-left: 5%;
padding-top: 32px;
padding-bottom: 32px;
}
}







#s-5c0f7d47-a07e-4cf8-9679-f50caae5837a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5c0f7d47-a07e-4cf8-9679-f50caae5837a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 1200px){#s-5cdf3adb-063f-46a0-b705-554455b37865 {
  display: none;
}
#s-5cdf3adb-063f-46a0-b705-554455b37865, #wrap-s-5cdf3adb-063f-46a0-b705-554455b37865 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5cdf3adb-063f-46a0-b705-554455b37865 {
  display: none;
}
#s-5cdf3adb-063f-46a0-b705-554455b37865, #wrap-s-5cdf3adb-063f-46a0-b705-554455b37865 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-5cdf3adb-063f-46a0-b705-554455b37865 {
  display: none;
}
#s-5cdf3adb-063f-46a0-b705-554455b37865, #wrap-s-5cdf3adb-063f-46a0-b705-554455b37865 { display: none !important; }}
@media (min-width: 0px) {
[id="s-5cdf3adb-063f-46a0-b705-554455b37865"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-5cdf3adb-063f-46a0-b705-554455b37865"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-5cdf3adb-063f-46a0-b705-554455b37865"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-5cdf3adb-063f-46a0-b705-554455b37865"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-5cdf3adb-063f-46a0-b705-554455b37865"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-5cdf3adb-063f-46a0-b705-554455b37865"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-5cdf3adb-063f-46a0-b705-554455b37865"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-3dcd0039-cb3c-4b05-b442-c89f842f81c7 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-3dcd0039-cb3c-4b05-b442-c89f842f81c7 .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 50px;
  
  
  text-align: left;
}



#s-b3236a6c-da7a-4eff-a188-ea4de3c63552 {
  margin-left: -70%;
padding-top: 5px;
padding-bottom: 0px;
text-align: left;
}

#s-b3236a6c-da7a-4eff-a188-ea4de3c63552 .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 25px;
  
  
  text-align: left;
}



@media (max-width: 767px){#s-fe3d61db-1d50-4549-a3cb-da15776d3fe5 {
  display: none;
}
#s-fe3d61db-1d50-4549-a3cb-da15776d3fe5, #wrap-s-fe3d61db-1d50-4549-a3cb-da15776d3fe5 { display: none !important; }}
@media (min-width: 0px) {
[id="s-fe3d61db-1d50-4549-a3cb-da15776d3fe5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fe3d61db-1d50-4549-a3cb-da15776d3fe5"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fe3d61db-1d50-4549-a3cb-da15776d3fe5"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-fe3d61db-1d50-4549-a3cb-da15776d3fe5"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fe3d61db-1d50-4549-a3cb-da15776d3fe5"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-fe3d61db-1d50-4549-a3cb-da15776d3fe5"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fe3d61db-1d50-4549-a3cb-da15776d3fe5"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-a2ac3321-de19-4026-bfe0-ace3af74dfa2 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (max-width: 767px){#s-a2ac3321-de19-4026-bfe0-ace3af74dfa2 {
  display: none;
}
#s-a2ac3321-de19-4026-bfe0-ace3af74dfa2, #wrap-s-a2ac3321-de19-4026-bfe0-ace3af74dfa2 { display: none !important; }}
#s-a2ac3321-de19-4026-bfe0-ace3af74dfa2 .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 70px;
  
  
  text-align: center;
}



#s-79f3f66a-7856-44bf-963e-9bee7aad4fe3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-79f3f66a-7856-44bf-963e-9bee7aad4fe3 {
  display: none;
}
#s-79f3f66a-7856-44bf-963e-9bee7aad4fe3, #wrap-s-79f3f66a-7856-44bf-963e-9bee7aad4fe3 { display: none !important; }}
#s-79f3f66a-7856-44bf-963e-9bee7aad4fe3 .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: left;
}


@media (min-width: 1200px){#s-79f3f66a-7856-44bf-963e-9bee7aad4fe3 .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: left;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-79f3f66a-7856-44bf-963e-9bee7aad4fe3 .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: left;
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-af603cea-dbe2-48d7-b751-958879b0ca4a {
  margin-top: 15px;
}

#s-53b006d1-7d48-4318-b39f-f7c8603e076a {
  margin-top: 25px;
margin-right: 0%;
padding-top: 15px;
padding-left: 5%;
padding-bottom: 15px;
padding-right: 5%;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(31, 102, 81, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-53b006d1-7d48-4318-b39f-f7c8603e076a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-53b006d1-7d48-4318-b39f-f7c8603e076a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8fdb74cf-a8d8-47c5-91dd-d45d648fca05 {
  max-width: 130px;
text-align: left;
}



.shg-image-margin-container-s-8fdb74cf-a8d8-47c5-91dd-d45d648fca05 {
  
  
  
  
}

#s-8fdb74cf-a8d8-47c5-91dd-d45d648fca05 {
  margin: 0 !important;
}





  img.s-8fdb74cf-a8d8-47c5-91dd-d45d648fca05.shogun-image {
    
    
  }


.s-8fdb74cf-a8d8-47c5-91dd-d45d648fca05 .shogun-image-content {
  
    align-items: center;
  
}

.s-8fdb74cf-a8d8-47c5-91dd-d45d648fca05.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-8fdb74cf-a8d8-47c5-91dd-d45d648fca05.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8fdb74cf-a8d8-47c5-91dd-d45d648fca05.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-8fdb74cf-a8d8-47c5-91dd-d45d648fca05 {
  
  
  
  
}

#s-8fdb74cf-a8d8-47c5-91dd-d45d648fca05 {
  margin: 0 !important;
}





  img.s-8fdb74cf-a8d8-47c5-91dd-d45d648fca05.shogun-image {
    
    
  }


.s-8fdb74cf-a8d8-47c5-91dd-d45d648fca05 .shogun-image-content {
  
    align-items: center;
  
}

.s-8fdb74cf-a8d8-47c5-91dd-d45d648fca05.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-8fdb74cf-a8d8-47c5-91dd-d45d648fca05.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8fdb74cf-a8d8-47c5-91dd-d45d648fca05.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-8fdb74cf-a8d8-47c5-91dd-d45d648fca05 {
  
  
  
  
}

#s-8fdb74cf-a8d8-47c5-91dd-d45d648fca05 {
  margin: 0 !important;
}





  img.s-8fdb74cf-a8d8-47c5-91dd-d45d648fca05.shogun-image {
    
    
  }


.s-8fdb74cf-a8d8-47c5-91dd-d45d648fca05 .shogun-image-content {
  
    align-items: center;
  
}

.s-8fdb74cf-a8d8-47c5-91dd-d45d648fca05.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-8fdb74cf-a8d8-47c5-91dd-d45d648fca05.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8fdb74cf-a8d8-47c5-91dd-d45d648fca05.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-8fdb74cf-a8d8-47c5-91dd-d45d648fca05 {
  
  
  
  
}

#s-8fdb74cf-a8d8-47c5-91dd-d45d648fca05 {
  margin: 0 !important;
}





  img.s-8fdb74cf-a8d8-47c5-91dd-d45d648fca05.shogun-image {
    
    
  }


.s-8fdb74cf-a8d8-47c5-91dd-d45d648fca05 .shogun-image-content {
  
    align-items: center;
  
}

.s-8fdb74cf-a8d8-47c5-91dd-d45d648fca05.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-8fdb74cf-a8d8-47c5-91dd-d45d648fca05.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8fdb74cf-a8d8-47c5-91dd-d45d648fca05.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-8fdb74cf-a8d8-47c5-91dd-d45d648fca05 {
  
  
  
  
}

#s-8fdb74cf-a8d8-47c5-91dd-d45d648fca05 {
  margin: 0 !important;
}





  img.s-8fdb74cf-a8d8-47c5-91dd-d45d648fca05.shogun-image {
    
    
  }


.s-8fdb74cf-a8d8-47c5-91dd-d45d648fca05 .shogun-image-content {
  
    align-items: center;
  
}

.s-8fdb74cf-a8d8-47c5-91dd-d45d648fca05.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-8fdb74cf-a8d8-47c5-91dd-d45d648fca05.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8fdb74cf-a8d8-47c5-91dd-d45d648fca05.shogun-image {
  box-sizing: border-box;
}




}
#s-5d2120c1-df0a-40a1-9848-780b54e7dc4b {
  margin-top: 5px;
}

#s-a1857e1a-baac-4c4b-9f70-f5822259cb39 {
  margin-top: -20px;
margin-bottom: -40px;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}

#s-a1857e1a-baac-4c4b-9f70-f5822259cb39 .shogun-heading-component h1 {
  color: rgba(31, 102, 81, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 60px;
  
  
  
}



@media (min-width: 1200px){#s-6b35d8d7-e2e1-461a-a80b-708f490e666c {
  display: none;
}
#s-6b35d8d7-e2e1-461a-a80b-708f490e666c, #wrap-s-6b35d8d7-e2e1-461a-a80b-708f490e666c { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6b35d8d7-e2e1-461a-a80b-708f490e666c {
  display: none;
}
#s-6b35d8d7-e2e1-461a-a80b-708f490e666c, #wrap-s-6b35d8d7-e2e1-461a-a80b-708f490e666c { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-6b35d8d7-e2e1-461a-a80b-708f490e666c {
  display: none;
}
#s-6b35d8d7-e2e1-461a-a80b-708f490e666c, #wrap-s-6b35d8d7-e2e1-461a-a80b-708f490e666c { display: none !important; }}
@media (min-width: 0px) {
[id="s-6b35d8d7-e2e1-461a-a80b-708f490e666c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6b35d8d7-e2e1-461a-a80b-708f490e666c"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-6b35d8d7-e2e1-461a-a80b-708f490e666c"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-6b35d8d7-e2e1-461a-a80b-708f490e666c"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-6b35d8d7-e2e1-461a-a80b-708f490e666c"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-6b35d8d7-e2e1-461a-a80b-708f490e666c"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-6b35d8d7-e2e1-461a-a80b-708f490e666c"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-53ad8246-8caa-48f9-9312-5bd1c45178bd {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (max-width: 767px){#s-53ad8246-8caa-48f9-9312-5bd1c45178bd {
  display: none;
}
#s-53ad8246-8caa-48f9-9312-5bd1c45178bd, #wrap-s-53ad8246-8caa-48f9-9312-5bd1c45178bd { display: none !important; }}
#s-53ad8246-8caa-48f9-9312-5bd1c45178bd .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 70px;
  
  
  text-align: center;
}



#s-1354abb8-c2f3-44ee-95c5-60a04f276145 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-1354abb8-c2f3-44ee-95c5-60a04f276145 {
  display: none;
}
#s-1354abb8-c2f3-44ee-95c5-60a04f276145, #wrap-s-1354abb8-c2f3-44ee-95c5-60a04f276145 { display: none !important; }}
#s-1354abb8-c2f3-44ee-95c5-60a04f276145 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: left;
}


@media (min-width: 1200px){#s-1354abb8-c2f3-44ee-95c5-60a04f276145 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: left;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-1354abb8-c2f3-44ee-95c5-60a04f276145 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: left;
}


}
#s-98bd2d88-a732-4681-9027-04a4705cb997 {
  margin-top: 15px;
}

#s-afb97b4e-49db-4d2b-9b08-d9bcb475c0cc {
  margin-top: 25px;
margin-right: 0%;
padding-top: 15px;
padding-left: 5%;
padding-bottom: 15px;
padding-right: 5%;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(31, 102, 81, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-afb97b4e-49db-4d2b-9b08-d9bcb475c0cc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-afb97b4e-49db-4d2b-9b08-d9bcb475c0cc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-97cb6f3c-62d2-4390-8e92-f5aa1deeeb7b {
  max-width: 130px;
text-align: left;
}



.shg-image-margin-container-s-97cb6f3c-62d2-4390-8e92-f5aa1deeeb7b {
  
  
  
  
}

#s-97cb6f3c-62d2-4390-8e92-f5aa1deeeb7b {
  margin: 0 !important;
}





  img.s-97cb6f3c-62d2-4390-8e92-f5aa1deeeb7b.shogun-image {
    
    
  }


.s-97cb6f3c-62d2-4390-8e92-f5aa1deeeb7b .shogun-image-content {
  
    align-items: center;
  
}

.s-97cb6f3c-62d2-4390-8e92-f5aa1deeeb7b.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-97cb6f3c-62d2-4390-8e92-f5aa1deeeb7b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97cb6f3c-62d2-4390-8e92-f5aa1deeeb7b.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-97cb6f3c-62d2-4390-8e92-f5aa1deeeb7b {
  
  
  
  
}

#s-97cb6f3c-62d2-4390-8e92-f5aa1deeeb7b {
  margin: 0 !important;
}





  img.s-97cb6f3c-62d2-4390-8e92-f5aa1deeeb7b.shogun-image {
    
    
  }


.s-97cb6f3c-62d2-4390-8e92-f5aa1deeeb7b .shogun-image-content {
  
    align-items: center;
  
}

.s-97cb6f3c-62d2-4390-8e92-f5aa1deeeb7b.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-97cb6f3c-62d2-4390-8e92-f5aa1deeeb7b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97cb6f3c-62d2-4390-8e92-f5aa1deeeb7b.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-97cb6f3c-62d2-4390-8e92-f5aa1deeeb7b {
  
  
  
  
}

#s-97cb6f3c-62d2-4390-8e92-f5aa1deeeb7b {
  margin: 0 !important;
}





  img.s-97cb6f3c-62d2-4390-8e92-f5aa1deeeb7b.shogun-image {
    
    
  }


.s-97cb6f3c-62d2-4390-8e92-f5aa1deeeb7b .shogun-image-content {
  
    align-items: center;
  
}

.s-97cb6f3c-62d2-4390-8e92-f5aa1deeeb7b.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-97cb6f3c-62d2-4390-8e92-f5aa1deeeb7b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97cb6f3c-62d2-4390-8e92-f5aa1deeeb7b.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-97cb6f3c-62d2-4390-8e92-f5aa1deeeb7b {
  
  
  
  
}

#s-97cb6f3c-62d2-4390-8e92-f5aa1deeeb7b {
  margin: 0 !important;
}





  img.s-97cb6f3c-62d2-4390-8e92-f5aa1deeeb7b.shogun-image {
    
    
  }


.s-97cb6f3c-62d2-4390-8e92-f5aa1deeeb7b .shogun-image-content {
  
    align-items: center;
  
}

.s-97cb6f3c-62d2-4390-8e92-f5aa1deeeb7b.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-97cb6f3c-62d2-4390-8e92-f5aa1deeeb7b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97cb6f3c-62d2-4390-8e92-f5aa1deeeb7b.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-97cb6f3c-62d2-4390-8e92-f5aa1deeeb7b {
  
  
  
  
}

#s-97cb6f3c-62d2-4390-8e92-f5aa1deeeb7b {
  margin: 0 !important;
}





  img.s-97cb6f3c-62d2-4390-8e92-f5aa1deeeb7b.shogun-image {
    
    
  }


.s-97cb6f3c-62d2-4390-8e92-f5aa1deeeb7b .shogun-image-content {
  
    align-items: center;
  
}

.s-97cb6f3c-62d2-4390-8e92-f5aa1deeeb7b.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-97cb6f3c-62d2-4390-8e92-f5aa1deeeb7b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97cb6f3c-62d2-4390-8e92-f5aa1deeeb7b.shogun-image {
  box-sizing: border-box;
}




}
#s-98eb8585-8955-4083-bdf6-a59ef688a22b {
  margin-top: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-98eb8585-8955-4083-bdf6-a59ef688a22b .shogun-heading-component h1 {
  color: rgba(70, 69, 65, 1);
  font-weight:  normal ;
  font-family: "Centra No2 Bold Italic";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-7feca929-5996-48d9-a9c3-1425d9f437fa {
  margin-top: -20px;
margin-bottom: -40px;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}

#s-7feca929-5996-48d9-a9c3-1425d9f437fa .shogun-heading-component h1 {
  color: rgba(31, 102, 81, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 60px;
  
  
  
}



#s-53155f76-6bd1-481c-add3-f3354c46acfa {
  margin-left: auto;
margin-right: auto;
padding-top: 32px;
padding-bottom: 32px;
min-height: 50px;
background-color: rgba(26, 87, 69, 1);
}
@media (max-width: 767px){#s-53155f76-6bd1-481c-add3-f3354c46acfa {
  padding-top: 0px;
padding-bottom: 0px;
}
}







#s-53155f76-6bd1-481c-add3-f3354c46acfa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-53155f76-6bd1-481c-add3-f3354c46acfa.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d38c0d54-f15b-4376-b175-4b44afcfa488 {
  margin-left: auto;
margin-right: auto;
max-width: 1400px;
}

@media (min-width: 0px) {
[id="s-d38c0d54-f15b-4376-b175-4b44afcfa488"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d38c0d54-f15b-4376-b175-4b44afcfa488"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-d38c0d54-f15b-4376-b175-4b44afcfa488"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-d38c0d54-f15b-4376-b175-4b44afcfa488"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-d38c0d54-f15b-4376-b175-4b44afcfa488"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-f9dcf226-286f-4720-bb6b-59a1dc2d146a {
  margin-left: 0%;
margin-right: 5%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-f9dcf226-286f-4720-bb6b-59a1dc2d146a {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-f9dcf226-286f-4720-bb6b-59a1dc2d146a {
  margin-top: -20px;
margin-left: 5%;
padding-top: 32px;
padding-bottom: 32px;
}
}







#s-f9dcf226-286f-4720-bb6b-59a1dc2d146a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f9dcf226-286f-4720-bb6b-59a1dc2d146a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 1200px){#s-f3f12804-840f-4a0e-b178-0fe0f50eb205 {
  display: none;
}
#s-f3f12804-840f-4a0e-b178-0fe0f50eb205, #wrap-s-f3f12804-840f-4a0e-b178-0fe0f50eb205 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f3f12804-840f-4a0e-b178-0fe0f50eb205 {
  display: none;
}
#s-f3f12804-840f-4a0e-b178-0fe0f50eb205, #wrap-s-f3f12804-840f-4a0e-b178-0fe0f50eb205 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f3f12804-840f-4a0e-b178-0fe0f50eb205 {
  display: none;
}
#s-f3f12804-840f-4a0e-b178-0fe0f50eb205, #wrap-s-f3f12804-840f-4a0e-b178-0fe0f50eb205 { display: none !important; }}
@media (min-width: 0px) {
[id="s-f3f12804-840f-4a0e-b178-0fe0f50eb205"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-f3f12804-840f-4a0e-b178-0fe0f50eb205"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-f3f12804-840f-4a0e-b178-0fe0f50eb205"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-f3f12804-840f-4a0e-b178-0fe0f50eb205"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-f3f12804-840f-4a0e-b178-0fe0f50eb205"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-f3f12804-840f-4a0e-b178-0fe0f50eb205"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-f3f12804-840f-4a0e-b178-0fe0f50eb205"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-0920cccb-81e1-46ce-ac98-43a3e666c285 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-0920cccb-81e1-46ce-ac98-43a3e666c285 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 50px;
  
  
  text-align: left;
}



#s-ca7a0ab9-5a92-4317-84ac-085991b667f4 {
  margin-left: -70%;
padding-top: 5px;
padding-bottom: 0px;
text-align: left;
}

#s-ca7a0ab9-5a92-4317-84ac-085991b667f4 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 25px;
  
  
  text-align: left;
}



@media (max-width: 767px){#s-3c3a75a4-36df-47d7-ba8e-594748cf5acf {
  display: none;
}
#s-3c3a75a4-36df-47d7-ba8e-594748cf5acf, #wrap-s-3c3a75a4-36df-47d7-ba8e-594748cf5acf { display: none !important; }}
@media (min-width: 0px) {
[id="s-3c3a75a4-36df-47d7-ba8e-594748cf5acf"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3c3a75a4-36df-47d7-ba8e-594748cf5acf"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3c3a75a4-36df-47d7-ba8e-594748cf5acf"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-3c3a75a4-36df-47d7-ba8e-594748cf5acf"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3c3a75a4-36df-47d7-ba8e-594748cf5acf"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-3c3a75a4-36df-47d7-ba8e-594748cf5acf"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3c3a75a4-36df-47d7-ba8e-594748cf5acf"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-52b83d21-be88-4f00-968c-2ed434c12739 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (max-width: 767px){#s-52b83d21-be88-4f00-968c-2ed434c12739 {
  display: none;
}
#s-52b83d21-be88-4f00-968c-2ed434c12739, #wrap-s-52b83d21-be88-4f00-968c-2ed434c12739 { display: none !important; }}
#s-52b83d21-be88-4f00-968c-2ed434c12739 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 70px;
  
  
  text-align: center;
}



#s-a79aa07c-164e-4725-b837-37ec13af2ea9 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-a79aa07c-164e-4725-b837-37ec13af2ea9 {
  display: none;
}
#s-a79aa07c-164e-4725-b837-37ec13af2ea9, #wrap-s-a79aa07c-164e-4725-b837-37ec13af2ea9 { display: none !important; }}
#s-a79aa07c-164e-4725-b837-37ec13af2ea9 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 34px;
  
  
  text-align: left;
}



#s-d01ac450-e3d2-4fe4-952e-1403d491303a {
  margin-top: 15px;
}

#s-89406d91-c180-4dcb-9bc9-e25bc2731197 {
  margin-top: 25px;
margin-right: 0%;
padding-top: 15px;
padding-left: 5%;
padding-bottom: 15px;
padding-right: 5%;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(31, 102, 81, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(248, 246, 241, 1);
}








#s-89406d91-c180-4dcb-9bc9-e25bc2731197 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-89406d91-c180-4dcb-9bc9-e25bc2731197.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-efba8759-75e6-4f8b-bcf7-e2c59134ec74 {
  max-width: 130px;
text-align: left;
}



.shg-image-margin-container-s-efba8759-75e6-4f8b-bcf7-e2c59134ec74 {
  
  
  
  
}

#s-efba8759-75e6-4f8b-bcf7-e2c59134ec74 {
  margin: 0 !important;
}





  img.s-efba8759-75e6-4f8b-bcf7-e2c59134ec74.shogun-image {
    
    
  }


.s-efba8759-75e6-4f8b-bcf7-e2c59134ec74 .shogun-image-content {
  
    align-items: center;
  
}

.s-efba8759-75e6-4f8b-bcf7-e2c59134ec74.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-efba8759-75e6-4f8b-bcf7-e2c59134ec74.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-efba8759-75e6-4f8b-bcf7-e2c59134ec74.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-efba8759-75e6-4f8b-bcf7-e2c59134ec74 {
  
  
  
  
}

#s-efba8759-75e6-4f8b-bcf7-e2c59134ec74 {
  margin: 0 !important;
}





  img.s-efba8759-75e6-4f8b-bcf7-e2c59134ec74.shogun-image {
    
    
  }


.s-efba8759-75e6-4f8b-bcf7-e2c59134ec74 .shogun-image-content {
  
    align-items: center;
  
}

.s-efba8759-75e6-4f8b-bcf7-e2c59134ec74.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-efba8759-75e6-4f8b-bcf7-e2c59134ec74.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-efba8759-75e6-4f8b-bcf7-e2c59134ec74.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-efba8759-75e6-4f8b-bcf7-e2c59134ec74 {
  
  
  
  
}

#s-efba8759-75e6-4f8b-bcf7-e2c59134ec74 {
  margin: 0 !important;
}





  img.s-efba8759-75e6-4f8b-bcf7-e2c59134ec74.shogun-image {
    
    
  }


.s-efba8759-75e6-4f8b-bcf7-e2c59134ec74 .shogun-image-content {
  
    align-items: center;
  
}

.s-efba8759-75e6-4f8b-bcf7-e2c59134ec74.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-efba8759-75e6-4f8b-bcf7-e2c59134ec74.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-efba8759-75e6-4f8b-bcf7-e2c59134ec74.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-efba8759-75e6-4f8b-bcf7-e2c59134ec74 {
  
  
  
  
}

#s-efba8759-75e6-4f8b-bcf7-e2c59134ec74 {
  margin: 0 !important;
}





  img.s-efba8759-75e6-4f8b-bcf7-e2c59134ec74.shogun-image {
    
    
  }


.s-efba8759-75e6-4f8b-bcf7-e2c59134ec74 .shogun-image-content {
  
    align-items: center;
  
}

.s-efba8759-75e6-4f8b-bcf7-e2c59134ec74.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-efba8759-75e6-4f8b-bcf7-e2c59134ec74.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-efba8759-75e6-4f8b-bcf7-e2c59134ec74.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-efba8759-75e6-4f8b-bcf7-e2c59134ec74 {
  
  
  
  
}

#s-efba8759-75e6-4f8b-bcf7-e2c59134ec74 {
  margin: 0 !important;
}





  img.s-efba8759-75e6-4f8b-bcf7-e2c59134ec74.shogun-image {
    
    
  }


.s-efba8759-75e6-4f8b-bcf7-e2c59134ec74 .shogun-image-content {
  
    align-items: center;
  
}

.s-efba8759-75e6-4f8b-bcf7-e2c59134ec74.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-efba8759-75e6-4f8b-bcf7-e2c59134ec74.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-efba8759-75e6-4f8b-bcf7-e2c59134ec74.shogun-image {
  box-sizing: border-box;
}




}
#s-a61a4066-a32b-4042-9ac0-ab256c36e65a {
  margin-top: 5px;
}

#s-ebce6600-5b0d-4d47-825e-6a6318781acd {
  margin-top: -20px;
margin-bottom: -40px;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}

#s-ebce6600-5b0d-4d47-825e-6a6318781acd .shogun-heading-component h1 {
  color: rgba(31, 102, 81, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 60px;
  
  
  
}



@media (min-width: 1200px){#s-de084c6e-4fd8-448a-9225-8f5c728e3ff1 {
  display: none;
}
#s-de084c6e-4fd8-448a-9225-8f5c728e3ff1, #wrap-s-de084c6e-4fd8-448a-9225-8f5c728e3ff1 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-de084c6e-4fd8-448a-9225-8f5c728e3ff1 {
  display: none;
}
#s-de084c6e-4fd8-448a-9225-8f5c728e3ff1, #wrap-s-de084c6e-4fd8-448a-9225-8f5c728e3ff1 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-de084c6e-4fd8-448a-9225-8f5c728e3ff1 {
  display: none;
}
#s-de084c6e-4fd8-448a-9225-8f5c728e3ff1, #wrap-s-de084c6e-4fd8-448a-9225-8f5c728e3ff1 { display: none !important; }}
@media (min-width: 0px) {
[id="s-de084c6e-4fd8-448a-9225-8f5c728e3ff1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-de084c6e-4fd8-448a-9225-8f5c728e3ff1"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-de084c6e-4fd8-448a-9225-8f5c728e3ff1"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-de084c6e-4fd8-448a-9225-8f5c728e3ff1"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-de084c6e-4fd8-448a-9225-8f5c728e3ff1"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-de084c6e-4fd8-448a-9225-8f5c728e3ff1"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-de084c6e-4fd8-448a-9225-8f5c728e3ff1"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-9424f4d5-2fe5-4d58-a9c1-a0e25d8e6d6c {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (max-width: 767px){#s-9424f4d5-2fe5-4d58-a9c1-a0e25d8e6d6c {
  display: none;
}
#s-9424f4d5-2fe5-4d58-a9c1-a0e25d8e6d6c, #wrap-s-9424f4d5-2fe5-4d58-a9c1-a0e25d8e6d6c { display: none !important; }}
#s-9424f4d5-2fe5-4d58-a9c1-a0e25d8e6d6c .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 70px;
  
  
  text-align: center;
}



#s-61d28dcb-f822-4571-92c1-10c224f7e932 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-61d28dcb-f822-4571-92c1-10c224f7e932 {
  display: none;
}
#s-61d28dcb-f822-4571-92c1-10c224f7e932, #wrap-s-61d28dcb-f822-4571-92c1-10c224f7e932 { display: none !important; }}
#s-61d28dcb-f822-4571-92c1-10c224f7e932 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: left;
}


@media (min-width: 1200px){#s-61d28dcb-f822-4571-92c1-10c224f7e932 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: left;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-61d28dcb-f822-4571-92c1-10c224f7e932 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: left;
}


}
#s-59424d38-3811-474a-b749-88bc57cb27c2 {
  margin-top: 15px;
}

#s-04d9c302-9919-4831-ab91-6a63990e4d1c {
  margin-top: 25px;
margin-right: 0%;
padding-top: 15px;
padding-left: 5%;
padding-bottom: 15px;
padding-right: 5%;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(31, 102, 81, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(248, 246, 241, 1);
}








#s-04d9c302-9919-4831-ab91-6a63990e4d1c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-04d9c302-9919-4831-ab91-6a63990e4d1c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-68066e8d-820d-4146-aa0a-3db1609b90f6 {
  max-width: 130px;
text-align: left;
}



.shg-image-margin-container-s-68066e8d-820d-4146-aa0a-3db1609b90f6 {
  
  
  
  
}

#s-68066e8d-820d-4146-aa0a-3db1609b90f6 {
  margin: 0 !important;
}





  img.s-68066e8d-820d-4146-aa0a-3db1609b90f6.shogun-image {
    
    
  }


.s-68066e8d-820d-4146-aa0a-3db1609b90f6 .shogun-image-content {
  
    align-items: center;
  
}

.s-68066e8d-820d-4146-aa0a-3db1609b90f6.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-68066e8d-820d-4146-aa0a-3db1609b90f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-68066e8d-820d-4146-aa0a-3db1609b90f6.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-68066e8d-820d-4146-aa0a-3db1609b90f6 {
  
  
  
  
}

#s-68066e8d-820d-4146-aa0a-3db1609b90f6 {
  margin: 0 !important;
}





  img.s-68066e8d-820d-4146-aa0a-3db1609b90f6.shogun-image {
    
    
  }


.s-68066e8d-820d-4146-aa0a-3db1609b90f6 .shogun-image-content {
  
    align-items: center;
  
}

.s-68066e8d-820d-4146-aa0a-3db1609b90f6.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-68066e8d-820d-4146-aa0a-3db1609b90f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-68066e8d-820d-4146-aa0a-3db1609b90f6.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-68066e8d-820d-4146-aa0a-3db1609b90f6 {
  
  
  
  
}

#s-68066e8d-820d-4146-aa0a-3db1609b90f6 {
  margin: 0 !important;
}





  img.s-68066e8d-820d-4146-aa0a-3db1609b90f6.shogun-image {
    
    
  }


.s-68066e8d-820d-4146-aa0a-3db1609b90f6 .shogun-image-content {
  
    align-items: center;
  
}

.s-68066e8d-820d-4146-aa0a-3db1609b90f6.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-68066e8d-820d-4146-aa0a-3db1609b90f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-68066e8d-820d-4146-aa0a-3db1609b90f6.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-68066e8d-820d-4146-aa0a-3db1609b90f6 {
  
  
  
  
}

#s-68066e8d-820d-4146-aa0a-3db1609b90f6 {
  margin: 0 !important;
}





  img.s-68066e8d-820d-4146-aa0a-3db1609b90f6.shogun-image {
    
    
  }


.s-68066e8d-820d-4146-aa0a-3db1609b90f6 .shogun-image-content {
  
    align-items: center;
  
}

.s-68066e8d-820d-4146-aa0a-3db1609b90f6.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-68066e8d-820d-4146-aa0a-3db1609b90f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-68066e8d-820d-4146-aa0a-3db1609b90f6.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-68066e8d-820d-4146-aa0a-3db1609b90f6 {
  
  
  
  
}

#s-68066e8d-820d-4146-aa0a-3db1609b90f6 {
  margin: 0 !important;
}





  img.s-68066e8d-820d-4146-aa0a-3db1609b90f6.shogun-image {
    
    
  }


.s-68066e8d-820d-4146-aa0a-3db1609b90f6 .shogun-image-content {
  
    align-items: center;
  
}

.s-68066e8d-820d-4146-aa0a-3db1609b90f6.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-68066e8d-820d-4146-aa0a-3db1609b90f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-68066e8d-820d-4146-aa0a-3db1609b90f6.shogun-image {
  box-sizing: border-box;
}




}
#s-727fb2fd-f2af-4b77-bf90-7754a9e5e534 {
  margin-top: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-727fb2fd-f2af-4b77-bf90-7754a9e5e534 .shogun-heading-component h1 {
  color: rgba(70, 69, 65, 1);
  font-weight:  normal ;
  font-family: "Centra No2 Bold Italic";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-cba930e4-6320-4c02-b66f-5e1888d69d2f {
  margin-top: -20px;
margin-bottom: -40px;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}

#s-cba930e4-6320-4c02-b66f-5e1888d69d2f .shogun-heading-component h1 {
  color: rgba(31, 102, 81, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 60px;
  
  
  
}



#s-eb5bfffa-3db0-4f1a-8870-024ec3e79fc3 {
  min-height: 50px;
}








#s-eb5bfffa-3db0-4f1a-8870-024ec3e79fc3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-eb5bfffa-3db0-4f1a-8870-024ec3e79fc3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-da990592-49cc-433e-af77-5a25bf6dddd0 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 0px;
max-width: 550px;
text-align: center;
}
@media (max-width: 767px){#s-da990592-49cc-433e-af77-5a25bf6dddd0 {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-8fa7d857-37ec-4ab8-8326-d679cf4a4105 {
  margin-left: auto;
margin-right: auto;
padding-top: 32px;
padding-bottom: 32px;
min-height: 50px;
background-color: rgba(248, 246, 241, 1);
}
@media (max-width: 767px){#s-8fa7d857-37ec-4ab8-8326-d679cf4a4105 {
  padding-top: 0px;
padding-bottom: 0px;
}
}







#s-8fa7d857-37ec-4ab8-8326-d679cf4a4105 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8fa7d857-37ec-4ab8-8326-d679cf4a4105.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-511add58-a60a-4617-ade6-ea22d1e79720 {
  margin-left: auto;
margin-right: auto;
max-width: 1400px;
}

@media (min-width: 0px) {
[id="s-511add58-a60a-4617-ade6-ea22d1e79720"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-511add58-a60a-4617-ade6-ea22d1e79720"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-511add58-a60a-4617-ade6-ea22d1e79720"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-511add58-a60a-4617-ade6-ea22d1e79720"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-286a323a-ee75-4a9c-a76d-3a350b58fa41 {
  min-height: 50px;
}








#s-286a323a-ee75-4a9c-a76d-3a350b58fa41 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-286a323a-ee75-4a9c-a76d-3a350b58fa41.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-05b89df2-25fe-41c5-baf7-ab5cd1f6d9ae {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 0px;
max-width: 550px;
text-align: center;
}
@media (max-width: 767px){#s-05b89df2-25fe-41c5-baf7-ab5cd1f6d9ae {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-e1797d22-0630-4f85-a937-3cafb5b4aed6 {
  margin-left: 0%;
margin-right: 5%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-e1797d22-0630-4f85-a937-3cafb5b4aed6 {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-e1797d22-0630-4f85-a937-3cafb5b4aed6 {
  margin-top: -20px;
margin-left: 5%;
padding-top: 32px;
padding-bottom: 32px;
}
}







#s-e1797d22-0630-4f85-a937-3cafb5b4aed6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e1797d22-0630-4f85-a937-3cafb5b4aed6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 1200px){#s-3b314290-5b29-4c2f-82b2-554268772656 {
  display: none;
}
#s-3b314290-5b29-4c2f-82b2-554268772656, #wrap-s-3b314290-5b29-4c2f-82b2-554268772656 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3b314290-5b29-4c2f-82b2-554268772656 {
  display: none;
}
#s-3b314290-5b29-4c2f-82b2-554268772656, #wrap-s-3b314290-5b29-4c2f-82b2-554268772656 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3b314290-5b29-4c2f-82b2-554268772656 {
  display: none;
}
#s-3b314290-5b29-4c2f-82b2-554268772656, #wrap-s-3b314290-5b29-4c2f-82b2-554268772656 { display: none !important; }}
@media (min-width: 0px) {
[id="s-3b314290-5b29-4c2f-82b2-554268772656"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-3b314290-5b29-4c2f-82b2-554268772656"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3b314290-5b29-4c2f-82b2-554268772656"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-3b314290-5b29-4c2f-82b2-554268772656"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3b314290-5b29-4c2f-82b2-554268772656"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-3b314290-5b29-4c2f-82b2-554268772656"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3b314290-5b29-4c2f-82b2-554268772656"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-936c2f59-f556-4a9e-b073-4f2cf1b0491f {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-936c2f59-f556-4a9e-b073-4f2cf1b0491f .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 50px;
  
  
  text-align: left;
}



#s-0a219583-065d-4c59-83cc-155d4ffa6986 {
  margin-left: -70%;
padding-top: 5px;
padding-bottom: 0px;
text-align: left;
}

#s-0a219583-065d-4c59-83cc-155d4ffa6986 .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 25px;
  
  
  text-align: left;
}



@media (max-width: 767px){#s-31b1ab64-b57b-4ad7-afee-aff0d0af7f54 {
  display: none;
}
#s-31b1ab64-b57b-4ad7-afee-aff0d0af7f54, #wrap-s-31b1ab64-b57b-4ad7-afee-aff0d0af7f54 { display: none !important; }}
@media (min-width: 0px) {
[id="s-31b1ab64-b57b-4ad7-afee-aff0d0af7f54"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-31b1ab64-b57b-4ad7-afee-aff0d0af7f54"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-31b1ab64-b57b-4ad7-afee-aff0d0af7f54"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-31b1ab64-b57b-4ad7-afee-aff0d0af7f54"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-31b1ab64-b57b-4ad7-afee-aff0d0af7f54"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-31b1ab64-b57b-4ad7-afee-aff0d0af7f54"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-31b1ab64-b57b-4ad7-afee-aff0d0af7f54"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-e687fa0b-c3bd-4326-a8ad-a4f264d26692 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (max-width: 767px){#s-e687fa0b-c3bd-4326-a8ad-a4f264d26692 {
  display: none;
}
#s-e687fa0b-c3bd-4326-a8ad-a4f264d26692, #wrap-s-e687fa0b-c3bd-4326-a8ad-a4f264d26692 { display: none !important; }}
#s-e687fa0b-c3bd-4326-a8ad-a4f264d26692 .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 70px;
  
  
  text-align: center;
}



#s-2ca4a833-9021-47c3-a555-5a161c51b437 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-2ca4a833-9021-47c3-a555-5a161c51b437 {
  display: none;
}
#s-2ca4a833-9021-47c3-a555-5a161c51b437, #wrap-s-2ca4a833-9021-47c3-a555-5a161c51b437 { display: none !important; }}
#s-2ca4a833-9021-47c3-a555-5a161c51b437 .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: left;
}


@media (min-width: 1200px){#s-2ca4a833-9021-47c3-a555-5a161c51b437 .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: left;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-2ca4a833-9021-47c3-a555-5a161c51b437 .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: left;
}


}
#s-9dcf7633-0500-4a6d-b794-a79fd16aa980 {
  margin-top: 15px;
}

#s-2d2e8927-34d6-44e6-b8ae-54527e2cde1f {
  margin-top: 25px;
margin-right: 0%;
padding-top: 15px;
padding-left: 5%;
padding-bottom: 15px;
padding-right: 5%;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(31, 102, 81, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-2d2e8927-34d6-44e6-b8ae-54527e2cde1f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2d2e8927-34d6-44e6-b8ae-54527e2cde1f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-65cce5f6-e7d6-4df2-bf23-27d737a8691e {
  max-width: 130px;
text-align: left;
}



.shg-image-margin-container-s-65cce5f6-e7d6-4df2-bf23-27d737a8691e {
  
  
  
  
}

#s-65cce5f6-e7d6-4df2-bf23-27d737a8691e {
  margin: 0 !important;
}





  img.s-65cce5f6-e7d6-4df2-bf23-27d737a8691e.shogun-image {
    
    
  }


.s-65cce5f6-e7d6-4df2-bf23-27d737a8691e .shogun-image-content {
  
    align-items: center;
  
}

.s-65cce5f6-e7d6-4df2-bf23-27d737a8691e.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-65cce5f6-e7d6-4df2-bf23-27d737a8691e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-65cce5f6-e7d6-4df2-bf23-27d737a8691e.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-65cce5f6-e7d6-4df2-bf23-27d737a8691e {
  
  
  
  
}

#s-65cce5f6-e7d6-4df2-bf23-27d737a8691e {
  margin: 0 !important;
}





  img.s-65cce5f6-e7d6-4df2-bf23-27d737a8691e.shogun-image {
    
    
  }


.s-65cce5f6-e7d6-4df2-bf23-27d737a8691e .shogun-image-content {
  
    align-items: center;
  
}

.s-65cce5f6-e7d6-4df2-bf23-27d737a8691e.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-65cce5f6-e7d6-4df2-bf23-27d737a8691e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-65cce5f6-e7d6-4df2-bf23-27d737a8691e.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-65cce5f6-e7d6-4df2-bf23-27d737a8691e {
  
  
  
  
}

#s-65cce5f6-e7d6-4df2-bf23-27d737a8691e {
  margin: 0 !important;
}





  img.s-65cce5f6-e7d6-4df2-bf23-27d737a8691e.shogun-image {
    
    
  }


.s-65cce5f6-e7d6-4df2-bf23-27d737a8691e .shogun-image-content {
  
    align-items: center;
  
}

.s-65cce5f6-e7d6-4df2-bf23-27d737a8691e.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-65cce5f6-e7d6-4df2-bf23-27d737a8691e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-65cce5f6-e7d6-4df2-bf23-27d737a8691e.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-65cce5f6-e7d6-4df2-bf23-27d737a8691e {
  
  
  
  
}

#s-65cce5f6-e7d6-4df2-bf23-27d737a8691e {
  margin: 0 !important;
}





  img.s-65cce5f6-e7d6-4df2-bf23-27d737a8691e.shogun-image {
    
    
  }


.s-65cce5f6-e7d6-4df2-bf23-27d737a8691e .shogun-image-content {
  
    align-items: center;
  
}

.s-65cce5f6-e7d6-4df2-bf23-27d737a8691e.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-65cce5f6-e7d6-4df2-bf23-27d737a8691e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-65cce5f6-e7d6-4df2-bf23-27d737a8691e.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-65cce5f6-e7d6-4df2-bf23-27d737a8691e {
  
  
  
  
}

#s-65cce5f6-e7d6-4df2-bf23-27d737a8691e {
  margin: 0 !important;
}





  img.s-65cce5f6-e7d6-4df2-bf23-27d737a8691e.shogun-image {
    
    
  }


.s-65cce5f6-e7d6-4df2-bf23-27d737a8691e .shogun-image-content {
  
    align-items: center;
  
}

.s-65cce5f6-e7d6-4df2-bf23-27d737a8691e.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-65cce5f6-e7d6-4df2-bf23-27d737a8691e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-65cce5f6-e7d6-4df2-bf23-27d737a8691e.shogun-image {
  box-sizing: border-box;
}




}
#s-b3d72af1-537d-4603-ab19-fc4a876a9914 {
  margin-top: 5px;
}

#s-09f8f395-30b4-440a-aee0-0f0131aed0e1 {
  margin-top: -20px;
margin-bottom: -40px;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}

#s-09f8f395-30b4-440a-aee0-0f0131aed0e1 .shogun-heading-component h1 {
  color: rgba(31, 102, 81, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 60px;
  
  
  
}



@media (min-width: 1200px){#s-fd6394a5-794e-458d-8e5e-695db6058aac {
  display: none;
}
#s-fd6394a5-794e-458d-8e5e-695db6058aac, #wrap-s-fd6394a5-794e-458d-8e5e-695db6058aac { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-fd6394a5-794e-458d-8e5e-695db6058aac {
  display: none;
}
#s-fd6394a5-794e-458d-8e5e-695db6058aac, #wrap-s-fd6394a5-794e-458d-8e5e-695db6058aac { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-fd6394a5-794e-458d-8e5e-695db6058aac {
  display: none;
}
#s-fd6394a5-794e-458d-8e5e-695db6058aac, #wrap-s-fd6394a5-794e-458d-8e5e-695db6058aac { display: none !important; }}
@media (min-width: 0px) {
[id="s-fd6394a5-794e-458d-8e5e-695db6058aac"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fd6394a5-794e-458d-8e5e-695db6058aac"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fd6394a5-794e-458d-8e5e-695db6058aac"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-fd6394a5-794e-458d-8e5e-695db6058aac"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fd6394a5-794e-458d-8e5e-695db6058aac"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-fd6394a5-794e-458d-8e5e-695db6058aac"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fd6394a5-794e-458d-8e5e-695db6058aac"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-65287a2e-938f-4eca-872c-457e7a943ceb {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (max-width: 767px){#s-65287a2e-938f-4eca-872c-457e7a943ceb {
  display: none;
}
#s-65287a2e-938f-4eca-872c-457e7a943ceb, #wrap-s-65287a2e-938f-4eca-872c-457e7a943ceb { display: none !important; }}
#s-65287a2e-938f-4eca-872c-457e7a943ceb .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 70px;
  
  
  text-align: center;
}



#s-fc2a1edf-9262-41eb-9bd1-b597c9eb8d95 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-fc2a1edf-9262-41eb-9bd1-b597c9eb8d95 {
  display: none;
}
#s-fc2a1edf-9262-41eb-9bd1-b597c9eb8d95, #wrap-s-fc2a1edf-9262-41eb-9bd1-b597c9eb8d95 { display: none !important; }}
#s-fc2a1edf-9262-41eb-9bd1-b597c9eb8d95 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: left;
}


@media (min-width: 1200px){#s-fc2a1edf-9262-41eb-9bd1-b597c9eb8d95 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: left;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-fc2a1edf-9262-41eb-9bd1-b597c9eb8d95 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: left;
}


}
#s-633459d6-95dd-46a9-b98c-fe37e5c9acd0 {
  margin-top: 15px;
}

#s-d2e48b80-7283-4d7a-ab86-602f304169f8 {
  margin-top: 25px;
margin-right: 0%;
padding-top: 15px;
padding-left: 5%;
padding-bottom: 15px;
padding-right: 5%;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(31, 102, 81, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-d2e48b80-7283-4d7a-ab86-602f304169f8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d2e48b80-7283-4d7a-ab86-602f304169f8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7828350d-5d83-478b-99f7-f62912e543bb {
  max-width: 130px;
text-align: left;
}



.shg-image-margin-container-s-7828350d-5d83-478b-99f7-f62912e543bb {
  
  
  
  
}

#s-7828350d-5d83-478b-99f7-f62912e543bb {
  margin: 0 !important;
}





  img.s-7828350d-5d83-478b-99f7-f62912e543bb.shogun-image {
    
    
  }


.s-7828350d-5d83-478b-99f7-f62912e543bb .shogun-image-content {
  
    align-items: center;
  
}

.s-7828350d-5d83-478b-99f7-f62912e543bb.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-7828350d-5d83-478b-99f7-f62912e543bb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7828350d-5d83-478b-99f7-f62912e543bb.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-7828350d-5d83-478b-99f7-f62912e543bb {
  
  
  
  
}

#s-7828350d-5d83-478b-99f7-f62912e543bb {
  margin: 0 !important;
}





  img.s-7828350d-5d83-478b-99f7-f62912e543bb.shogun-image {
    
    
  }


.s-7828350d-5d83-478b-99f7-f62912e543bb .shogun-image-content {
  
    align-items: center;
  
}

.s-7828350d-5d83-478b-99f7-f62912e543bb.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-7828350d-5d83-478b-99f7-f62912e543bb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7828350d-5d83-478b-99f7-f62912e543bb.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-7828350d-5d83-478b-99f7-f62912e543bb {
  
  
  
  
}

#s-7828350d-5d83-478b-99f7-f62912e543bb {
  margin: 0 !important;
}





  img.s-7828350d-5d83-478b-99f7-f62912e543bb.shogun-image {
    
    
  }


.s-7828350d-5d83-478b-99f7-f62912e543bb .shogun-image-content {
  
    align-items: center;
  
}

.s-7828350d-5d83-478b-99f7-f62912e543bb.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-7828350d-5d83-478b-99f7-f62912e543bb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7828350d-5d83-478b-99f7-f62912e543bb.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-7828350d-5d83-478b-99f7-f62912e543bb {
  
  
  
  
}

#s-7828350d-5d83-478b-99f7-f62912e543bb {
  margin: 0 !important;
}





  img.s-7828350d-5d83-478b-99f7-f62912e543bb.shogun-image {
    
    
  }


.s-7828350d-5d83-478b-99f7-f62912e543bb .shogun-image-content {
  
    align-items: center;
  
}

.s-7828350d-5d83-478b-99f7-f62912e543bb.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-7828350d-5d83-478b-99f7-f62912e543bb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7828350d-5d83-478b-99f7-f62912e543bb.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-7828350d-5d83-478b-99f7-f62912e543bb {
  
  
  
  
}

#s-7828350d-5d83-478b-99f7-f62912e543bb {
  margin: 0 !important;
}





  img.s-7828350d-5d83-478b-99f7-f62912e543bb.shogun-image {
    
    
  }


.s-7828350d-5d83-478b-99f7-f62912e543bb .shogun-image-content {
  
    align-items: center;
  
}

.s-7828350d-5d83-478b-99f7-f62912e543bb.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-7828350d-5d83-478b-99f7-f62912e543bb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7828350d-5d83-478b-99f7-f62912e543bb.shogun-image {
  box-sizing: border-box;
}




}
#s-1f3c8f18-a866-4274-ad1b-52de54543c1b {
  margin-top: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-1f3c8f18-a866-4274-ad1b-52de54543c1b .shogun-heading-component h1 {
  color: rgba(70, 69, 65, 1);
  font-weight:  normal ;
  font-family: "Centra No2 Bold Italic";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-ebc14401-d909-4182-9e32-7e6fb100cc25 {
  margin-top: -20px;
margin-bottom: -40px;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}

#s-ebc14401-d909-4182-9e32-7e6fb100cc25 .shogun-heading-component h1 {
  color: rgba(31, 102, 81, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 60px;
  
  
  
}



#s-e2775c99-a162-477e-86b4-09756d4f7319 {
  margin-left: auto;
margin-right: auto;
padding-top: 32px;
padding-bottom: 32px;
min-height: 50px;
background-color: rgba(26, 87, 69, 1);
}
@media (max-width: 767px){#s-e2775c99-a162-477e-86b4-09756d4f7319 {
  padding-top: 0px;
padding-bottom: 0px;
}
}







#s-e2775c99-a162-477e-86b4-09756d4f7319 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e2775c99-a162-477e-86b4-09756d4f7319.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-75d4ebcc-57cb-4707-85be-7eacb382ee45 {
  margin-left: auto;
margin-right: auto;
max-width: 1400px;
}

@media (min-width: 0px) {
[id="s-75d4ebcc-57cb-4707-85be-7eacb382ee45"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-75d4ebcc-57cb-4707-85be-7eacb382ee45"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-75d4ebcc-57cb-4707-85be-7eacb382ee45"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-75d4ebcc-57cb-4707-85be-7eacb382ee45"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-75d4ebcc-57cb-4707-85be-7eacb382ee45"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-b86bcc40-5a64-423a-9e9c-c0147ffd2f9c {
  margin-left: 0%;
margin-right: 5%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-b86bcc40-5a64-423a-9e9c-c0147ffd2f9c {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-b86bcc40-5a64-423a-9e9c-c0147ffd2f9c {
  margin-top: -20px;
margin-left: 5%;
padding-top: 32px;
padding-bottom: 32px;
}
}







#s-b86bcc40-5a64-423a-9e9c-c0147ffd2f9c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b86bcc40-5a64-423a-9e9c-c0147ffd2f9c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 1200px){#s-7696d748-32c8-48bb-b051-e5e994b174e1 {
  display: none;
}
#s-7696d748-32c8-48bb-b051-e5e994b174e1, #wrap-s-7696d748-32c8-48bb-b051-e5e994b174e1 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7696d748-32c8-48bb-b051-e5e994b174e1 {
  display: none;
}
#s-7696d748-32c8-48bb-b051-e5e994b174e1, #wrap-s-7696d748-32c8-48bb-b051-e5e994b174e1 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7696d748-32c8-48bb-b051-e5e994b174e1 {
  display: none;
}
#s-7696d748-32c8-48bb-b051-e5e994b174e1, #wrap-s-7696d748-32c8-48bb-b051-e5e994b174e1 { display: none !important; }}
@media (min-width: 0px) {
[id="s-7696d748-32c8-48bb-b051-e5e994b174e1"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-7696d748-32c8-48bb-b051-e5e994b174e1"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-7696d748-32c8-48bb-b051-e5e994b174e1"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-7696d748-32c8-48bb-b051-e5e994b174e1"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-7696d748-32c8-48bb-b051-e5e994b174e1"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-7696d748-32c8-48bb-b051-e5e994b174e1"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-7696d748-32c8-48bb-b051-e5e994b174e1"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-e5ff167f-9861-4b0a-81b7-610e248f059a {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-e5ff167f-9861-4b0a-81b7-610e248f059a .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 50px;
  
  
  text-align: left;
}



#s-e3764f11-5421-4c25-afb0-a5db4622c292 {
  margin-left: -70%;
padding-top: 5px;
padding-bottom: 0px;
text-align: left;
}

#s-e3764f11-5421-4c25-afb0-a5db4622c292 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 25px;
  
  
  text-align: left;
}



@media (max-width: 767px){#s-fc6832b2-a06c-4f33-8d99-f4385ba308d5 {
  display: none;
}
#s-fc6832b2-a06c-4f33-8d99-f4385ba308d5, #wrap-s-fc6832b2-a06c-4f33-8d99-f4385ba308d5 { display: none !important; }}
@media (min-width: 0px) {
[id="s-fc6832b2-a06c-4f33-8d99-f4385ba308d5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fc6832b2-a06c-4f33-8d99-f4385ba308d5"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fc6832b2-a06c-4f33-8d99-f4385ba308d5"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-fc6832b2-a06c-4f33-8d99-f4385ba308d5"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fc6832b2-a06c-4f33-8d99-f4385ba308d5"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-fc6832b2-a06c-4f33-8d99-f4385ba308d5"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fc6832b2-a06c-4f33-8d99-f4385ba308d5"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-6b2243eb-d2f5-49de-a11b-b9666adb232e {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (max-width: 767px){#s-6b2243eb-d2f5-49de-a11b-b9666adb232e {
  display: none;
}
#s-6b2243eb-d2f5-49de-a11b-b9666adb232e, #wrap-s-6b2243eb-d2f5-49de-a11b-b9666adb232e { display: none !important; }}
#s-6b2243eb-d2f5-49de-a11b-b9666adb232e .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 70px;
  
  
  text-align: center;
}



#s-e8257ea6-f3e3-44ae-85db-71dfab4e4156 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-e8257ea6-f3e3-44ae-85db-71dfab4e4156 {
  display: none;
}
#s-e8257ea6-f3e3-44ae-85db-71dfab4e4156, #wrap-s-e8257ea6-f3e3-44ae-85db-71dfab4e4156 { display: none !important; }}
#s-e8257ea6-f3e3-44ae-85db-71dfab4e4156 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 34px;
  
  
  text-align: left;
}



#s-cec72f74-d4a0-41eb-8c0b-0cd3dd0b9a98 {
  margin-top: 15px;
}

#s-7890f39d-6dae-4acb-807e-12be22afb126 {
  margin-top: 25px;
margin-right: 0%;
padding-top: 15px;
padding-left: 5%;
padding-bottom: 15px;
padding-right: 5%;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(31, 102, 81, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(248, 246, 241, 1);
}








#s-7890f39d-6dae-4acb-807e-12be22afb126 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7890f39d-6dae-4acb-807e-12be22afb126.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6584eb4e-f5e3-4edb-a7f5-3b3288b5b9ce {
  max-width: 130px;
text-align: left;
}



.shg-image-margin-container-s-6584eb4e-f5e3-4edb-a7f5-3b3288b5b9ce {
  
  
  
  
}

#s-6584eb4e-f5e3-4edb-a7f5-3b3288b5b9ce {
  margin: 0 !important;
}





  img.s-6584eb4e-f5e3-4edb-a7f5-3b3288b5b9ce.shogun-image {
    
    
  }


.s-6584eb4e-f5e3-4edb-a7f5-3b3288b5b9ce .shogun-image-content {
  
    align-items: center;
  
}

.s-6584eb4e-f5e3-4edb-a7f5-3b3288b5b9ce.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-6584eb4e-f5e3-4edb-a7f5-3b3288b5b9ce.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6584eb4e-f5e3-4edb-a7f5-3b3288b5b9ce.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-6584eb4e-f5e3-4edb-a7f5-3b3288b5b9ce {
  
  
  
  
}

#s-6584eb4e-f5e3-4edb-a7f5-3b3288b5b9ce {
  margin: 0 !important;
}





  img.s-6584eb4e-f5e3-4edb-a7f5-3b3288b5b9ce.shogun-image {
    
    
  }


.s-6584eb4e-f5e3-4edb-a7f5-3b3288b5b9ce .shogun-image-content {
  
    align-items: center;
  
}

.s-6584eb4e-f5e3-4edb-a7f5-3b3288b5b9ce.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-6584eb4e-f5e3-4edb-a7f5-3b3288b5b9ce.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6584eb4e-f5e3-4edb-a7f5-3b3288b5b9ce.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-6584eb4e-f5e3-4edb-a7f5-3b3288b5b9ce {
  
  
  
  
}

#s-6584eb4e-f5e3-4edb-a7f5-3b3288b5b9ce {
  margin: 0 !important;
}





  img.s-6584eb4e-f5e3-4edb-a7f5-3b3288b5b9ce.shogun-image {
    
    
  }


.s-6584eb4e-f5e3-4edb-a7f5-3b3288b5b9ce .shogun-image-content {
  
    align-items: center;
  
}

.s-6584eb4e-f5e3-4edb-a7f5-3b3288b5b9ce.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-6584eb4e-f5e3-4edb-a7f5-3b3288b5b9ce.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6584eb4e-f5e3-4edb-a7f5-3b3288b5b9ce.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-6584eb4e-f5e3-4edb-a7f5-3b3288b5b9ce {
  
  
  
  
}

#s-6584eb4e-f5e3-4edb-a7f5-3b3288b5b9ce {
  margin: 0 !important;
}





  img.s-6584eb4e-f5e3-4edb-a7f5-3b3288b5b9ce.shogun-image {
    
    
  }


.s-6584eb4e-f5e3-4edb-a7f5-3b3288b5b9ce .shogun-image-content {
  
    align-items: center;
  
}

.s-6584eb4e-f5e3-4edb-a7f5-3b3288b5b9ce.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-6584eb4e-f5e3-4edb-a7f5-3b3288b5b9ce.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6584eb4e-f5e3-4edb-a7f5-3b3288b5b9ce.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-6584eb4e-f5e3-4edb-a7f5-3b3288b5b9ce {
  
  
  
  
}

#s-6584eb4e-f5e3-4edb-a7f5-3b3288b5b9ce {
  margin: 0 !important;
}





  img.s-6584eb4e-f5e3-4edb-a7f5-3b3288b5b9ce.shogun-image {
    
    
  }


.s-6584eb4e-f5e3-4edb-a7f5-3b3288b5b9ce .shogun-image-content {
  
    align-items: center;
  
}

.s-6584eb4e-f5e3-4edb-a7f5-3b3288b5b9ce.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-6584eb4e-f5e3-4edb-a7f5-3b3288b5b9ce.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6584eb4e-f5e3-4edb-a7f5-3b3288b5b9ce.shogun-image {
  box-sizing: border-box;
}




}
#s-f688b588-8277-4f9c-a4c6-8cb3fdd17823 {
  margin-top: 5px;
}

#s-5cd4e642-518d-4641-bf20-6ef19bd554cc {
  margin-top: -20px;
margin-bottom: -40px;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}

#s-5cd4e642-518d-4641-bf20-6ef19bd554cc .shogun-heading-component h1 {
  color: rgba(31, 102, 81, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 60px;
  
  
  
}



@media (min-width: 1200px){#s-f991c91c-ce61-4bb5-a40c-dc8df537eb17 {
  display: none;
}
#s-f991c91c-ce61-4bb5-a40c-dc8df537eb17, #wrap-s-f991c91c-ce61-4bb5-a40c-dc8df537eb17 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f991c91c-ce61-4bb5-a40c-dc8df537eb17 {
  display: none;
}
#s-f991c91c-ce61-4bb5-a40c-dc8df537eb17, #wrap-s-f991c91c-ce61-4bb5-a40c-dc8df537eb17 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f991c91c-ce61-4bb5-a40c-dc8df537eb17 {
  display: none;
}
#s-f991c91c-ce61-4bb5-a40c-dc8df537eb17, #wrap-s-f991c91c-ce61-4bb5-a40c-dc8df537eb17 { display: none !important; }}
@media (min-width: 0px) {
[id="s-f991c91c-ce61-4bb5-a40c-dc8df537eb17"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f991c91c-ce61-4bb5-a40c-dc8df537eb17"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-f991c91c-ce61-4bb5-a40c-dc8df537eb17"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-f991c91c-ce61-4bb5-a40c-dc8df537eb17"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-f991c91c-ce61-4bb5-a40c-dc8df537eb17"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-f991c91c-ce61-4bb5-a40c-dc8df537eb17"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-f991c91c-ce61-4bb5-a40c-dc8df537eb17"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-cfbcb276-1fa5-4716-9fc4-ea30974a53ea {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (max-width: 767px){#s-cfbcb276-1fa5-4716-9fc4-ea30974a53ea {
  display: none;
}
#s-cfbcb276-1fa5-4716-9fc4-ea30974a53ea, #wrap-s-cfbcb276-1fa5-4716-9fc4-ea30974a53ea { display: none !important; }}
#s-cfbcb276-1fa5-4716-9fc4-ea30974a53ea .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 70px;
  
  
  text-align: center;
}



#s-820c88c8-5fcc-420e-916d-2b99045f3e95 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-820c88c8-5fcc-420e-916d-2b99045f3e95 {
  display: none;
}
#s-820c88c8-5fcc-420e-916d-2b99045f3e95, #wrap-s-820c88c8-5fcc-420e-916d-2b99045f3e95 { display: none !important; }}
#s-820c88c8-5fcc-420e-916d-2b99045f3e95 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: left;
}


@media (min-width: 1200px){#s-820c88c8-5fcc-420e-916d-2b99045f3e95 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: left;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-820c88c8-5fcc-420e-916d-2b99045f3e95 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: left;
}


}
#s-bb79948a-2c56-4315-ba67-f1e204a6cfb7 {
  margin-top: 15px;
}

#s-3945c1e1-0f64-4205-a17e-2288660c2d9a {
  margin-top: 25px;
margin-right: 0%;
padding-top: 15px;
padding-left: 5%;
padding-bottom: 15px;
padding-right: 5%;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(31, 102, 81, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(248, 246, 241, 1);
}








#s-3945c1e1-0f64-4205-a17e-2288660c2d9a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3945c1e1-0f64-4205-a17e-2288660c2d9a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1b6241bf-256a-45fc-afc9-f26ece22678e {
  max-width: 130px;
text-align: left;
}



.shg-image-margin-container-s-1b6241bf-256a-45fc-afc9-f26ece22678e {
  
  
  
  
}

#s-1b6241bf-256a-45fc-afc9-f26ece22678e {
  margin: 0 !important;
}





  img.s-1b6241bf-256a-45fc-afc9-f26ece22678e.shogun-image {
    
    
  }


.s-1b6241bf-256a-45fc-afc9-f26ece22678e .shogun-image-content {
  
    align-items: center;
  
}

.s-1b6241bf-256a-45fc-afc9-f26ece22678e.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-1b6241bf-256a-45fc-afc9-f26ece22678e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1b6241bf-256a-45fc-afc9-f26ece22678e.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-1b6241bf-256a-45fc-afc9-f26ece22678e {
  
  
  
  
}

#s-1b6241bf-256a-45fc-afc9-f26ece22678e {
  margin: 0 !important;
}





  img.s-1b6241bf-256a-45fc-afc9-f26ece22678e.shogun-image {
    
    
  }


.s-1b6241bf-256a-45fc-afc9-f26ece22678e .shogun-image-content {
  
    align-items: center;
  
}

.s-1b6241bf-256a-45fc-afc9-f26ece22678e.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-1b6241bf-256a-45fc-afc9-f26ece22678e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1b6241bf-256a-45fc-afc9-f26ece22678e.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-1b6241bf-256a-45fc-afc9-f26ece22678e {
  
  
  
  
}

#s-1b6241bf-256a-45fc-afc9-f26ece22678e {
  margin: 0 !important;
}





  img.s-1b6241bf-256a-45fc-afc9-f26ece22678e.shogun-image {
    
    
  }


.s-1b6241bf-256a-45fc-afc9-f26ece22678e .shogun-image-content {
  
    align-items: center;
  
}

.s-1b6241bf-256a-45fc-afc9-f26ece22678e.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-1b6241bf-256a-45fc-afc9-f26ece22678e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1b6241bf-256a-45fc-afc9-f26ece22678e.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-1b6241bf-256a-45fc-afc9-f26ece22678e {
  
  
  
  
}

#s-1b6241bf-256a-45fc-afc9-f26ece22678e {
  margin: 0 !important;
}





  img.s-1b6241bf-256a-45fc-afc9-f26ece22678e.shogun-image {
    
    
  }


.s-1b6241bf-256a-45fc-afc9-f26ece22678e .shogun-image-content {
  
    align-items: center;
  
}

.s-1b6241bf-256a-45fc-afc9-f26ece22678e.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-1b6241bf-256a-45fc-afc9-f26ece22678e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1b6241bf-256a-45fc-afc9-f26ece22678e.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-1b6241bf-256a-45fc-afc9-f26ece22678e {
  
  
  
  
}

#s-1b6241bf-256a-45fc-afc9-f26ece22678e {
  margin: 0 !important;
}





  img.s-1b6241bf-256a-45fc-afc9-f26ece22678e.shogun-image {
    
    
  }


.s-1b6241bf-256a-45fc-afc9-f26ece22678e .shogun-image-content {
  
    align-items: center;
  
}

.s-1b6241bf-256a-45fc-afc9-f26ece22678e.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-1b6241bf-256a-45fc-afc9-f26ece22678e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1b6241bf-256a-45fc-afc9-f26ece22678e.shogun-image {
  box-sizing: border-box;
}




}
#s-bb984b79-2094-459c-98cb-91e13c8b71d0 {
  margin-top: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-bb984b79-2094-459c-98cb-91e13c8b71d0 .shogun-heading-component h1 {
  color: rgba(70, 69, 65, 1);
  font-weight:  normal ;
  font-family: "Centra No2 Bold Italic";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-6e01351b-9e52-4196-9869-21987f3b68c2 {
  margin-top: -20px;
margin-bottom: -40px;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}

#s-6e01351b-9e52-4196-9869-21987f3b68c2 .shogun-heading-component h1 {
  color: rgba(31, 102, 81, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 60px;
  
  
  
}



#s-35097f17-372f-47a9-ac90-c6fcd0b435ad {
  min-height: 50px;
}








#s-35097f17-372f-47a9-ac90-c6fcd0b435ad > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-35097f17-372f-47a9-ac90-c6fcd0b435ad.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0d5c3bda-249a-421d-83d8-b47fd0f3c4ec {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
max-width: 550px;
}
@media (max-width: 767px){#s-0d5c3bda-249a-421d-83d8-b47fd0f3c4ec {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-7efb7e54-bde9-4922-adcd-b999b500fa9f {
  margin-left: auto;
margin-right: auto;
padding-top: 32px;
padding-bottom: 32px;
min-height: 50px;
background-color: rgba(248, 246, 241, 1);
}
@media (max-width: 767px){#s-7efb7e54-bde9-4922-adcd-b999b500fa9f {
  padding-top: 0px;
padding-bottom: 0px;
}
}







#s-7efb7e54-bde9-4922-adcd-b999b500fa9f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7efb7e54-bde9-4922-adcd-b999b500fa9f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ca978032-5392-4ce0-aff9-fb9a55cedcb1 {
  margin-left: auto;
margin-right: auto;
max-width: 1400px;
}

@media (min-width: 0px) {
[id="s-ca978032-5392-4ce0-aff9-fb9a55cedcb1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ca978032-5392-4ce0-aff9-fb9a55cedcb1"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-ca978032-5392-4ce0-aff9-fb9a55cedcb1"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-ca978032-5392-4ce0-aff9-fb9a55cedcb1"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-f1b5a48e-ab84-4a23-94c7-04deb7f61358 {
  min-height: 50px;
}








#s-f1b5a48e-ab84-4a23-94c7-04deb7f61358 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f1b5a48e-ab84-4a23-94c7-04deb7f61358.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b9eb1e65-4a60-40bd-baac-34048e285328 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 0px;
max-width: 550px;
text-align: center;
}
@media (max-width: 767px){#s-b9eb1e65-4a60-40bd-baac-34048e285328 {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-74acd86a-dfb5-45a8-9b4d-21861dbcd69b {
  margin-left: 0%;
margin-right: 5%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-74acd86a-dfb5-45a8-9b4d-21861dbcd69b {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-74acd86a-dfb5-45a8-9b4d-21861dbcd69b {
  margin-top: -20px;
margin-left: 5%;
padding-top: 32px;
padding-bottom: 32px;
}
}







#s-74acd86a-dfb5-45a8-9b4d-21861dbcd69b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-74acd86a-dfb5-45a8-9b4d-21861dbcd69b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 1200px){#s-c28b98ee-27fc-420e-9305-70e97efabc54 {
  display: none;
}
#s-c28b98ee-27fc-420e-9305-70e97efabc54, #wrap-s-c28b98ee-27fc-420e-9305-70e97efabc54 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c28b98ee-27fc-420e-9305-70e97efabc54 {
  display: none;
}
#s-c28b98ee-27fc-420e-9305-70e97efabc54, #wrap-s-c28b98ee-27fc-420e-9305-70e97efabc54 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c28b98ee-27fc-420e-9305-70e97efabc54 {
  display: none;
}
#s-c28b98ee-27fc-420e-9305-70e97efabc54, #wrap-s-c28b98ee-27fc-420e-9305-70e97efabc54 { display: none !important; }}
@media (min-width: 0px) {
[id="s-c28b98ee-27fc-420e-9305-70e97efabc54"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-c28b98ee-27fc-420e-9305-70e97efabc54"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-c28b98ee-27fc-420e-9305-70e97efabc54"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-c28b98ee-27fc-420e-9305-70e97efabc54"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-c28b98ee-27fc-420e-9305-70e97efabc54"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-c28b98ee-27fc-420e-9305-70e97efabc54"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-c28b98ee-27fc-420e-9305-70e97efabc54"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-4304a17f-9ffa-4341-900c-5566df73f226 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-4304a17f-9ffa-4341-900c-5566df73f226 .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 50px;
  
  
  text-align: left;
}



#s-0fe5ca51-162c-4ff9-b06a-2485e143fb72 {
  margin-left: -70%;
padding-top: 5px;
padding-bottom: 0px;
text-align: left;
}

#s-0fe5ca51-162c-4ff9-b06a-2485e143fb72 .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 25px;
  
  
  text-align: left;
}



@media (max-width: 767px){#s-26498e55-c649-4844-bd00-b27fc5401711 {
  display: none;
}
#s-26498e55-c649-4844-bd00-b27fc5401711, #wrap-s-26498e55-c649-4844-bd00-b27fc5401711 { display: none !important; }}
@media (min-width: 0px) {
[id="s-26498e55-c649-4844-bd00-b27fc5401711"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-26498e55-c649-4844-bd00-b27fc5401711"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-26498e55-c649-4844-bd00-b27fc5401711"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-26498e55-c649-4844-bd00-b27fc5401711"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-26498e55-c649-4844-bd00-b27fc5401711"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-26498e55-c649-4844-bd00-b27fc5401711"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-26498e55-c649-4844-bd00-b27fc5401711"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-e6a35a4c-cb47-4166-81c5-b30f5b047127 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (max-width: 767px){#s-e6a35a4c-cb47-4166-81c5-b30f5b047127 {
  display: none;
}
#s-e6a35a4c-cb47-4166-81c5-b30f5b047127, #wrap-s-e6a35a4c-cb47-4166-81c5-b30f5b047127 { display: none !important; }}
#s-e6a35a4c-cb47-4166-81c5-b30f5b047127 .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 70px;
  
  
  text-align: center;
}



#s-c25f3162-42c5-43ba-982d-84cd1460207f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-c25f3162-42c5-43ba-982d-84cd1460207f {
  display: none;
}
#s-c25f3162-42c5-43ba-982d-84cd1460207f, #wrap-s-c25f3162-42c5-43ba-982d-84cd1460207f { display: none !important; }}
#s-c25f3162-42c5-43ba-982d-84cd1460207f .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: left;
}


@media (min-width: 1200px){#s-c25f3162-42c5-43ba-982d-84cd1460207f .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: left;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-c25f3162-42c5-43ba-982d-84cd1460207f .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: left;
}


}
#s-e1e693eb-75a4-460f-9699-b95cac7efbd7 {
  margin-top: 15px;
}

#s-b7c4a988-4ca5-46a8-bbd9-7795f7be15e2 {
  margin-top: 25px;
margin-right: 0%;
padding-top: 15px;
padding-left: 5%;
padding-bottom: 15px;
padding-right: 5%;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(31, 102, 81, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-b7c4a988-4ca5-46a8-bbd9-7795f7be15e2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b7c4a988-4ca5-46a8-bbd9-7795f7be15e2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2f76d9f8-3de3-4861-9391-3e9e79d3858e {
  max-width: 130px;
text-align: left;
}



.shg-image-margin-container-s-2f76d9f8-3de3-4861-9391-3e9e79d3858e {
  
  
  
  
}

#s-2f76d9f8-3de3-4861-9391-3e9e79d3858e {
  margin: 0 !important;
}





  img.s-2f76d9f8-3de3-4861-9391-3e9e79d3858e.shogun-image {
    
    
  }


.s-2f76d9f8-3de3-4861-9391-3e9e79d3858e .shogun-image-content {
  
    align-items: center;
  
}

.s-2f76d9f8-3de3-4861-9391-3e9e79d3858e.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-2f76d9f8-3de3-4861-9391-3e9e79d3858e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2f76d9f8-3de3-4861-9391-3e9e79d3858e.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-2f76d9f8-3de3-4861-9391-3e9e79d3858e {
  
  
  
  
}

#s-2f76d9f8-3de3-4861-9391-3e9e79d3858e {
  margin: 0 !important;
}





  img.s-2f76d9f8-3de3-4861-9391-3e9e79d3858e.shogun-image {
    
    
  }


.s-2f76d9f8-3de3-4861-9391-3e9e79d3858e .shogun-image-content {
  
    align-items: center;
  
}

.s-2f76d9f8-3de3-4861-9391-3e9e79d3858e.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-2f76d9f8-3de3-4861-9391-3e9e79d3858e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2f76d9f8-3de3-4861-9391-3e9e79d3858e.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-2f76d9f8-3de3-4861-9391-3e9e79d3858e {
  
  
  
  
}

#s-2f76d9f8-3de3-4861-9391-3e9e79d3858e {
  margin: 0 !important;
}





  img.s-2f76d9f8-3de3-4861-9391-3e9e79d3858e.shogun-image {
    
    
  }


.s-2f76d9f8-3de3-4861-9391-3e9e79d3858e .shogun-image-content {
  
    align-items: center;
  
}

.s-2f76d9f8-3de3-4861-9391-3e9e79d3858e.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-2f76d9f8-3de3-4861-9391-3e9e79d3858e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2f76d9f8-3de3-4861-9391-3e9e79d3858e.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-2f76d9f8-3de3-4861-9391-3e9e79d3858e {
  
  
  
  
}

#s-2f76d9f8-3de3-4861-9391-3e9e79d3858e {
  margin: 0 !important;
}





  img.s-2f76d9f8-3de3-4861-9391-3e9e79d3858e.shogun-image {
    
    
  }


.s-2f76d9f8-3de3-4861-9391-3e9e79d3858e .shogun-image-content {
  
    align-items: center;
  
}

.s-2f76d9f8-3de3-4861-9391-3e9e79d3858e.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-2f76d9f8-3de3-4861-9391-3e9e79d3858e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2f76d9f8-3de3-4861-9391-3e9e79d3858e.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-2f76d9f8-3de3-4861-9391-3e9e79d3858e {
  
  
  
  
}

#s-2f76d9f8-3de3-4861-9391-3e9e79d3858e {
  margin: 0 !important;
}





  img.s-2f76d9f8-3de3-4861-9391-3e9e79d3858e.shogun-image {
    
    
  }


.s-2f76d9f8-3de3-4861-9391-3e9e79d3858e .shogun-image-content {
  
    align-items: center;
  
}

.s-2f76d9f8-3de3-4861-9391-3e9e79d3858e.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-2f76d9f8-3de3-4861-9391-3e9e79d3858e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2f76d9f8-3de3-4861-9391-3e9e79d3858e.shogun-image {
  box-sizing: border-box;
}




}
#s-52d44504-ab6d-476b-bfe0-d0bd306da955 {
  margin-top: 5px;
}

#s-cf217a3a-ce5e-48c1-b129-585e276d7768 {
  margin-top: -20px;
margin-bottom: -40px;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}

#s-cf217a3a-ce5e-48c1-b129-585e276d7768 .shogun-heading-component h1 {
  color: rgba(31, 102, 81, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 60px;
  
  
  
}



@media (min-width: 1200px){#s-83f59b65-0266-4f57-b205-02c9c4476b5c {
  display: none;
}
#s-83f59b65-0266-4f57-b205-02c9c4476b5c, #wrap-s-83f59b65-0266-4f57-b205-02c9c4476b5c { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-83f59b65-0266-4f57-b205-02c9c4476b5c {
  display: none;
}
#s-83f59b65-0266-4f57-b205-02c9c4476b5c, #wrap-s-83f59b65-0266-4f57-b205-02c9c4476b5c { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-83f59b65-0266-4f57-b205-02c9c4476b5c {
  display: none;
}
#s-83f59b65-0266-4f57-b205-02c9c4476b5c, #wrap-s-83f59b65-0266-4f57-b205-02c9c4476b5c { display: none !important; }}
@media (min-width: 0px) {
[id="s-83f59b65-0266-4f57-b205-02c9c4476b5c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-83f59b65-0266-4f57-b205-02c9c4476b5c"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-83f59b65-0266-4f57-b205-02c9c4476b5c"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-83f59b65-0266-4f57-b205-02c9c4476b5c"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-83f59b65-0266-4f57-b205-02c9c4476b5c"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-83f59b65-0266-4f57-b205-02c9c4476b5c"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-83f59b65-0266-4f57-b205-02c9c4476b5c"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-4cbbaad6-7907-4abe-a192-e7eb7b9da914 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (max-width: 767px){#s-4cbbaad6-7907-4abe-a192-e7eb7b9da914 {
  display: none;
}
#s-4cbbaad6-7907-4abe-a192-e7eb7b9da914, #wrap-s-4cbbaad6-7907-4abe-a192-e7eb7b9da914 { display: none !important; }}
#s-4cbbaad6-7907-4abe-a192-e7eb7b9da914 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 70px;
  
  
  text-align: center;
}



#s-244835dd-2bb5-488f-bfa9-4626c6423058 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-244835dd-2bb5-488f-bfa9-4626c6423058 {
  display: none;
}
#s-244835dd-2bb5-488f-bfa9-4626c6423058, #wrap-s-244835dd-2bb5-488f-bfa9-4626c6423058 { display: none !important; }}
#s-244835dd-2bb5-488f-bfa9-4626c6423058 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: left;
}


@media (min-width: 1200px){#s-244835dd-2bb5-488f-bfa9-4626c6423058 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: left;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-244835dd-2bb5-488f-bfa9-4626c6423058 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: left;
}


}
#s-e036a46c-9f1e-4861-85e8-463468009649 {
  margin-top: 15px;
}

#s-56f7a742-33ff-4611-80e7-09f4ed29afcd {
  margin-top: 25px;
margin-right: 0%;
padding-top: 15px;
padding-left: 5%;
padding-bottom: 15px;
padding-right: 5%;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(31, 102, 81, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-56f7a742-33ff-4611-80e7-09f4ed29afcd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-56f7a742-33ff-4611-80e7-09f4ed29afcd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-10cf8b33-ae66-4153-bfaf-7c34afa520e4 {
  max-width: 130px;
text-align: left;
}



.shg-image-margin-container-s-10cf8b33-ae66-4153-bfaf-7c34afa520e4 {
  
  
  
  
}

#s-10cf8b33-ae66-4153-bfaf-7c34afa520e4 {
  margin: 0 !important;
}





  img.s-10cf8b33-ae66-4153-bfaf-7c34afa520e4.shogun-image {
    
    
  }


.s-10cf8b33-ae66-4153-bfaf-7c34afa520e4 .shogun-image-content {
  
    align-items: center;
  
}

.s-10cf8b33-ae66-4153-bfaf-7c34afa520e4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-10cf8b33-ae66-4153-bfaf-7c34afa520e4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-10cf8b33-ae66-4153-bfaf-7c34afa520e4.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-10cf8b33-ae66-4153-bfaf-7c34afa520e4 {
  
  
  
  
}

#s-10cf8b33-ae66-4153-bfaf-7c34afa520e4 {
  margin: 0 !important;
}





  img.s-10cf8b33-ae66-4153-bfaf-7c34afa520e4.shogun-image {
    
    
  }


.s-10cf8b33-ae66-4153-bfaf-7c34afa520e4 .shogun-image-content {
  
    align-items: center;
  
}

.s-10cf8b33-ae66-4153-bfaf-7c34afa520e4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-10cf8b33-ae66-4153-bfaf-7c34afa520e4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-10cf8b33-ae66-4153-bfaf-7c34afa520e4.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-10cf8b33-ae66-4153-bfaf-7c34afa520e4 {
  
  
  
  
}

#s-10cf8b33-ae66-4153-bfaf-7c34afa520e4 {
  margin: 0 !important;
}





  img.s-10cf8b33-ae66-4153-bfaf-7c34afa520e4.shogun-image {
    
    
  }


.s-10cf8b33-ae66-4153-bfaf-7c34afa520e4 .shogun-image-content {
  
    align-items: center;
  
}

.s-10cf8b33-ae66-4153-bfaf-7c34afa520e4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-10cf8b33-ae66-4153-bfaf-7c34afa520e4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-10cf8b33-ae66-4153-bfaf-7c34afa520e4.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-10cf8b33-ae66-4153-bfaf-7c34afa520e4 {
  
  
  
  
}

#s-10cf8b33-ae66-4153-bfaf-7c34afa520e4 {
  margin: 0 !important;
}





  img.s-10cf8b33-ae66-4153-bfaf-7c34afa520e4.shogun-image {
    
    
  }


.s-10cf8b33-ae66-4153-bfaf-7c34afa520e4 .shogun-image-content {
  
    align-items: center;
  
}

.s-10cf8b33-ae66-4153-bfaf-7c34afa520e4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-10cf8b33-ae66-4153-bfaf-7c34afa520e4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-10cf8b33-ae66-4153-bfaf-7c34afa520e4.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-10cf8b33-ae66-4153-bfaf-7c34afa520e4 {
  
  
  
  
}

#s-10cf8b33-ae66-4153-bfaf-7c34afa520e4 {
  margin: 0 !important;
}





  img.s-10cf8b33-ae66-4153-bfaf-7c34afa520e4.shogun-image {
    
    
  }


.s-10cf8b33-ae66-4153-bfaf-7c34afa520e4 .shogun-image-content {
  
    align-items: center;
  
}

.s-10cf8b33-ae66-4153-bfaf-7c34afa520e4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-10cf8b33-ae66-4153-bfaf-7c34afa520e4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-10cf8b33-ae66-4153-bfaf-7c34afa520e4.shogun-image {
  box-sizing: border-box;
}




}
#s-7c97bfc5-3330-4ac4-8463-fc97aa4fc695 {
  margin-top: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-7c97bfc5-3330-4ac4-8463-fc97aa4fc695 .shogun-heading-component h1 {
  color: rgba(70, 69, 65, 1);
  font-weight:  normal ;
  font-family: "Centra No2 Bold Italic";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-421ac371-184e-40f6-9335-8e24bae45c35 {
  margin-top: -20px;
margin-bottom: -40px;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}

#s-421ac371-184e-40f6-9335-8e24bae45c35 .shogun-heading-component h1 {
  color: rgba(31, 102, 81, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 60px;
  
  
  
}



#s-bc1dea2f-e8bd-43b6-8130-6d0e68aa691c {
  margin-left: auto;
margin-right: auto;
padding-top: 32px;
padding-bottom: 32px;
min-height: 50px;
background-color: rgba(26, 87, 69, 1);
}
@media (max-width: 767px){#s-bc1dea2f-e8bd-43b6-8130-6d0e68aa691c {
  padding-top: 0px;
padding-bottom: 0px;
}
}







#s-bc1dea2f-e8bd-43b6-8130-6d0e68aa691c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-bc1dea2f-e8bd-43b6-8130-6d0e68aa691c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5b3bbeb9-242b-42df-a894-8a5f02769bce {
  margin-left: auto;
margin-right: auto;
max-width: 1400px;
}

@media (min-width: 0px) {
[id="s-5b3bbeb9-242b-42df-a894-8a5f02769bce"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5b3bbeb9-242b-42df-a894-8a5f02769bce"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-5b3bbeb9-242b-42df-a894-8a5f02769bce"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-5b3bbeb9-242b-42df-a894-8a5f02769bce"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-5b3bbeb9-242b-42df-a894-8a5f02769bce"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-f14d9577-ef53-42e7-88a4-5d6cae549207 {
  margin-left: 0%;
margin-right: 5%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-f14d9577-ef53-42e7-88a4-5d6cae549207 {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-f14d9577-ef53-42e7-88a4-5d6cae549207 {
  margin-top: -20px;
margin-left: 5%;
padding-top: 32px;
padding-bottom: 32px;
}
}







#s-f14d9577-ef53-42e7-88a4-5d6cae549207 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f14d9577-ef53-42e7-88a4-5d6cae549207.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 1200px){#s-469f43a4-d83a-459f-829e-f5b536b622e1 {
  display: none;
}
#s-469f43a4-d83a-459f-829e-f5b536b622e1, #wrap-s-469f43a4-d83a-459f-829e-f5b536b622e1 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-469f43a4-d83a-459f-829e-f5b536b622e1 {
  display: none;
}
#s-469f43a4-d83a-459f-829e-f5b536b622e1, #wrap-s-469f43a4-d83a-459f-829e-f5b536b622e1 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-469f43a4-d83a-459f-829e-f5b536b622e1 {
  display: none;
}
#s-469f43a4-d83a-459f-829e-f5b536b622e1, #wrap-s-469f43a4-d83a-459f-829e-f5b536b622e1 { display: none !important; }}
@media (min-width: 0px) {
[id="s-469f43a4-d83a-459f-829e-f5b536b622e1"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-469f43a4-d83a-459f-829e-f5b536b622e1"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-469f43a4-d83a-459f-829e-f5b536b622e1"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-469f43a4-d83a-459f-829e-f5b536b622e1"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-469f43a4-d83a-459f-829e-f5b536b622e1"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-469f43a4-d83a-459f-829e-f5b536b622e1"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-469f43a4-d83a-459f-829e-f5b536b622e1"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-7759f6b3-2a03-4466-aaf1-35b7fedfc01b {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-7759f6b3-2a03-4466-aaf1-35b7fedfc01b .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 50px;
  
  
  text-align: left;
}



#s-1491e9d8-1ec9-4132-95fc-8f8c04dcdcde {
  margin-left: -70%;
padding-top: 5px;
padding-bottom: 0px;
text-align: left;
}

#s-1491e9d8-1ec9-4132-95fc-8f8c04dcdcde .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 25px;
  
  
  text-align: left;
}



@media (max-width: 767px){#s-4f528529-94e0-4adf-b75f-32b31192199b {
  display: none;
}
#s-4f528529-94e0-4adf-b75f-32b31192199b, #wrap-s-4f528529-94e0-4adf-b75f-32b31192199b { display: none !important; }}
@media (min-width: 0px) {
[id="s-4f528529-94e0-4adf-b75f-32b31192199b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4f528529-94e0-4adf-b75f-32b31192199b"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-4f528529-94e0-4adf-b75f-32b31192199b"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-4f528529-94e0-4adf-b75f-32b31192199b"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-4f528529-94e0-4adf-b75f-32b31192199b"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-4f528529-94e0-4adf-b75f-32b31192199b"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-4f528529-94e0-4adf-b75f-32b31192199b"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-59b4561b-3a31-4090-a542-221b67c027ed {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (max-width: 767px){#s-59b4561b-3a31-4090-a542-221b67c027ed {
  display: none;
}
#s-59b4561b-3a31-4090-a542-221b67c027ed, #wrap-s-59b4561b-3a31-4090-a542-221b67c027ed { display: none !important; }}
#s-59b4561b-3a31-4090-a542-221b67c027ed .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 70px;
  
  
  text-align: center;
}



#s-c47ac685-519e-4c27-9842-ff45ba8d8689 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-c47ac685-519e-4c27-9842-ff45ba8d8689 {
  display: none;
}
#s-c47ac685-519e-4c27-9842-ff45ba8d8689, #wrap-s-c47ac685-519e-4c27-9842-ff45ba8d8689 { display: none !important; }}
#s-c47ac685-519e-4c27-9842-ff45ba8d8689 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 34px;
  
  
  text-align: left;
}



#s-e2d86243-9ddc-4a6f-880a-9b3165d2c7f8 {
  margin-top: 15px;
}

#s-0a6a1437-f89c-409f-8d89-31959530ed70 {
  margin-top: 25px;
margin-right: 0%;
padding-top: 15px;
padding-left: 5%;
padding-bottom: 15px;
padding-right: 5%;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(31, 102, 81, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(248, 246, 241, 1);
}








#s-0a6a1437-f89c-409f-8d89-31959530ed70 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0a6a1437-f89c-409f-8d89-31959530ed70.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1fc85566-22ae-4fa7-9b5b-51765d813878 {
  max-width: 130px;
text-align: left;
}



.shg-image-margin-container-s-1fc85566-22ae-4fa7-9b5b-51765d813878 {
  
  
  
  
}

#s-1fc85566-22ae-4fa7-9b5b-51765d813878 {
  margin: 0 !important;
}





  img.s-1fc85566-22ae-4fa7-9b5b-51765d813878.shogun-image {
    
    
  }


.s-1fc85566-22ae-4fa7-9b5b-51765d813878 .shogun-image-content {
  
    align-items: center;
  
}

.s-1fc85566-22ae-4fa7-9b5b-51765d813878.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-1fc85566-22ae-4fa7-9b5b-51765d813878.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1fc85566-22ae-4fa7-9b5b-51765d813878.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-1fc85566-22ae-4fa7-9b5b-51765d813878 {
  
  
  
  
}

#s-1fc85566-22ae-4fa7-9b5b-51765d813878 {
  margin: 0 !important;
}





  img.s-1fc85566-22ae-4fa7-9b5b-51765d813878.shogun-image {
    
    
  }


.s-1fc85566-22ae-4fa7-9b5b-51765d813878 .shogun-image-content {
  
    align-items: center;
  
}

.s-1fc85566-22ae-4fa7-9b5b-51765d813878.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-1fc85566-22ae-4fa7-9b5b-51765d813878.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1fc85566-22ae-4fa7-9b5b-51765d813878.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-1fc85566-22ae-4fa7-9b5b-51765d813878 {
  
  
  
  
}

#s-1fc85566-22ae-4fa7-9b5b-51765d813878 {
  margin: 0 !important;
}





  img.s-1fc85566-22ae-4fa7-9b5b-51765d813878.shogun-image {
    
    
  }


.s-1fc85566-22ae-4fa7-9b5b-51765d813878 .shogun-image-content {
  
    align-items: center;
  
}

.s-1fc85566-22ae-4fa7-9b5b-51765d813878.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-1fc85566-22ae-4fa7-9b5b-51765d813878.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1fc85566-22ae-4fa7-9b5b-51765d813878.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-1fc85566-22ae-4fa7-9b5b-51765d813878 {
  
  
  
  
}

#s-1fc85566-22ae-4fa7-9b5b-51765d813878 {
  margin: 0 !important;
}





  img.s-1fc85566-22ae-4fa7-9b5b-51765d813878.shogun-image {
    
    
  }


.s-1fc85566-22ae-4fa7-9b5b-51765d813878 .shogun-image-content {
  
    align-items: center;
  
}

.s-1fc85566-22ae-4fa7-9b5b-51765d813878.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-1fc85566-22ae-4fa7-9b5b-51765d813878.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1fc85566-22ae-4fa7-9b5b-51765d813878.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-1fc85566-22ae-4fa7-9b5b-51765d813878 {
  
  
  
  
}

#s-1fc85566-22ae-4fa7-9b5b-51765d813878 {
  margin: 0 !important;
}





  img.s-1fc85566-22ae-4fa7-9b5b-51765d813878.shogun-image {
    
    
  }


.s-1fc85566-22ae-4fa7-9b5b-51765d813878 .shogun-image-content {
  
    align-items: center;
  
}

.s-1fc85566-22ae-4fa7-9b5b-51765d813878.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-1fc85566-22ae-4fa7-9b5b-51765d813878.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1fc85566-22ae-4fa7-9b5b-51765d813878.shogun-image {
  box-sizing: border-box;
}




}
#s-bdded959-9451-4861-a4cf-ffd5091e2383 {
  margin-top: 5px;
}

#s-419abfcf-fb8f-4388-b444-205a7915de95 {
  margin-top: -20px;
margin-bottom: -40px;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}

#s-419abfcf-fb8f-4388-b444-205a7915de95 .shogun-heading-component h1 {
  color: rgba(31, 102, 81, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 60px;
  
  
  
}



@media (min-width: 1200px){#s-302ff35c-29f9-4673-9b9b-c890d532c54e {
  display: none;
}
#s-302ff35c-29f9-4673-9b9b-c890d532c54e, #wrap-s-302ff35c-29f9-4673-9b9b-c890d532c54e { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-302ff35c-29f9-4673-9b9b-c890d532c54e {
  display: none;
}
#s-302ff35c-29f9-4673-9b9b-c890d532c54e, #wrap-s-302ff35c-29f9-4673-9b9b-c890d532c54e { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-302ff35c-29f9-4673-9b9b-c890d532c54e {
  display: none;
}
#s-302ff35c-29f9-4673-9b9b-c890d532c54e, #wrap-s-302ff35c-29f9-4673-9b9b-c890d532c54e { display: none !important; }}
@media (min-width: 0px) {
[id="s-302ff35c-29f9-4673-9b9b-c890d532c54e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-302ff35c-29f9-4673-9b9b-c890d532c54e"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-302ff35c-29f9-4673-9b9b-c890d532c54e"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-302ff35c-29f9-4673-9b9b-c890d532c54e"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-302ff35c-29f9-4673-9b9b-c890d532c54e"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-302ff35c-29f9-4673-9b9b-c890d532c54e"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-302ff35c-29f9-4673-9b9b-c890d532c54e"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-ce31abeb-50e8-46c8-b737-c60cbdd0c6aa {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (max-width: 767px){#s-ce31abeb-50e8-46c8-b737-c60cbdd0c6aa {
  display: none;
}
#s-ce31abeb-50e8-46c8-b737-c60cbdd0c6aa, #wrap-s-ce31abeb-50e8-46c8-b737-c60cbdd0c6aa { display: none !important; }}
#s-ce31abeb-50e8-46c8-b737-c60cbdd0c6aa .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 70px;
  
  
  text-align: center;
}



#s-fc6911b7-daa7-43e0-b3ab-4d7693775026 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-fc6911b7-daa7-43e0-b3ab-4d7693775026 {
  display: none;
}
#s-fc6911b7-daa7-43e0-b3ab-4d7693775026, #wrap-s-fc6911b7-daa7-43e0-b3ab-4d7693775026 { display: none !important; }}
#s-fc6911b7-daa7-43e0-b3ab-4d7693775026 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: left;
}


@media (min-width: 1200px){#s-fc6911b7-daa7-43e0-b3ab-4d7693775026 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: left;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-fc6911b7-daa7-43e0-b3ab-4d7693775026 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: left;
}


}
#s-abc19194-cecd-4b37-b9c6-7402e409c836 {
  margin-top: 15px;
}

#s-427ebc2d-d62c-40f9-9eb5-5c9e2e06a00c {
  margin-top: 25px;
margin-right: 0%;
padding-top: 15px;
padding-left: 5%;
padding-bottom: 15px;
padding-right: 5%;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(31, 102, 81, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(248, 246, 241, 1);
}








#s-427ebc2d-d62c-40f9-9eb5-5c9e2e06a00c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-427ebc2d-d62c-40f9-9eb5-5c9e2e06a00c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9a5b5c4c-175d-4793-b1ec-bffbdfa69fec {
  max-width: 130px;
text-align: left;
}



.shg-image-margin-container-s-9a5b5c4c-175d-4793-b1ec-bffbdfa69fec {
  
  
  
  
}

#s-9a5b5c4c-175d-4793-b1ec-bffbdfa69fec {
  margin: 0 !important;
}





  img.s-9a5b5c4c-175d-4793-b1ec-bffbdfa69fec.shogun-image {
    
    
  }


.s-9a5b5c4c-175d-4793-b1ec-bffbdfa69fec .shogun-image-content {
  
    align-items: center;
  
}

.s-9a5b5c4c-175d-4793-b1ec-bffbdfa69fec.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-9a5b5c4c-175d-4793-b1ec-bffbdfa69fec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9a5b5c4c-175d-4793-b1ec-bffbdfa69fec.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-9a5b5c4c-175d-4793-b1ec-bffbdfa69fec {
  
  
  
  
}

#s-9a5b5c4c-175d-4793-b1ec-bffbdfa69fec {
  margin: 0 !important;
}





  img.s-9a5b5c4c-175d-4793-b1ec-bffbdfa69fec.shogun-image {
    
    
  }


.s-9a5b5c4c-175d-4793-b1ec-bffbdfa69fec .shogun-image-content {
  
    align-items: center;
  
}

.s-9a5b5c4c-175d-4793-b1ec-bffbdfa69fec.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-9a5b5c4c-175d-4793-b1ec-bffbdfa69fec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9a5b5c4c-175d-4793-b1ec-bffbdfa69fec.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-9a5b5c4c-175d-4793-b1ec-bffbdfa69fec {
  
  
  
  
}

#s-9a5b5c4c-175d-4793-b1ec-bffbdfa69fec {
  margin: 0 !important;
}





  img.s-9a5b5c4c-175d-4793-b1ec-bffbdfa69fec.shogun-image {
    
    
  }


.s-9a5b5c4c-175d-4793-b1ec-bffbdfa69fec .shogun-image-content {
  
    align-items: center;
  
}

.s-9a5b5c4c-175d-4793-b1ec-bffbdfa69fec.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-9a5b5c4c-175d-4793-b1ec-bffbdfa69fec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9a5b5c4c-175d-4793-b1ec-bffbdfa69fec.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-9a5b5c4c-175d-4793-b1ec-bffbdfa69fec {
  
  
  
  
}

#s-9a5b5c4c-175d-4793-b1ec-bffbdfa69fec {
  margin: 0 !important;
}





  img.s-9a5b5c4c-175d-4793-b1ec-bffbdfa69fec.shogun-image {
    
    
  }


.s-9a5b5c4c-175d-4793-b1ec-bffbdfa69fec .shogun-image-content {
  
    align-items: center;
  
}

.s-9a5b5c4c-175d-4793-b1ec-bffbdfa69fec.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-9a5b5c4c-175d-4793-b1ec-bffbdfa69fec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9a5b5c4c-175d-4793-b1ec-bffbdfa69fec.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-9a5b5c4c-175d-4793-b1ec-bffbdfa69fec {
  
  
  
  
}

#s-9a5b5c4c-175d-4793-b1ec-bffbdfa69fec {
  margin: 0 !important;
}





  img.s-9a5b5c4c-175d-4793-b1ec-bffbdfa69fec.shogun-image {
    
    
  }


.s-9a5b5c4c-175d-4793-b1ec-bffbdfa69fec .shogun-image-content {
  
    align-items: center;
  
}

.s-9a5b5c4c-175d-4793-b1ec-bffbdfa69fec.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-9a5b5c4c-175d-4793-b1ec-bffbdfa69fec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9a5b5c4c-175d-4793-b1ec-bffbdfa69fec.shogun-image {
  box-sizing: border-box;
}




}
#s-4afc1244-f038-47e6-a264-4e9b0651f960 {
  margin-top: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-4afc1244-f038-47e6-a264-4e9b0651f960 .shogun-heading-component h1 {
  color: rgba(70, 69, 65, 1);
  font-weight:  normal ;
  font-family: "Centra No2 Bold Italic";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-7e26020c-676d-44a0-9848-4904a6078a16 {
  margin-top: -20px;
margin-bottom: -40px;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}

#s-7e26020c-676d-44a0-9848-4904a6078a16 .shogun-heading-component h1 {
  color: rgba(31, 102, 81, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 60px;
  
  
  
}



#s-80993747-b530-4893-b3b3-cc14bb04ded2 {
  min-height: 50px;
}








#s-80993747-b530-4893-b3b3-cc14bb04ded2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-80993747-b530-4893-b3b3-cc14bb04ded2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2894021a-7904-42bc-91d4-32f3ba067fa8 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
max-width: 550px;
}
@media (max-width: 767px){#s-2894021a-7904-42bc-91d4-32f3ba067fa8 {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-35fe0584-89cd-45e2-9729-c8f2dbd8bd84 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-35fe0584-89cd-45e2-9729-c8f2dbd8bd84 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-35fe0584-89cd-45e2-9729-c8f2dbd8bd84.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-afd6032d-8aeb-40f2-aa30-27d910ff42a0 {
  padding-top: 64px;
padding-bottom: 5px;
min-height: 50px;
background-color: rgba(237, 243, 238, 1);
}
@media (min-width: 1200px){#s-afd6032d-8aeb-40f2-aa30-27d910ff42a0 {
  padding-top: 40px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-afd6032d-8aeb-40f2-aa30-27d910ff42a0 {
  padding-top: 40px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-afd6032d-8aeb-40f2-aa30-27d910ff42a0 {
  padding-top: 40px;
display: none;
}
#s-afd6032d-8aeb-40f2-aa30-27d910ff42a0, #wrap-s-afd6032d-8aeb-40f2-aa30-27d910ff42a0 { display: none !important; }}@media (max-width: 767px){#s-afd6032d-8aeb-40f2-aa30-27d910ff42a0 {
  padding-top: 32px;
padding-bottom: 0px;
display: none;
}
#s-afd6032d-8aeb-40f2-aa30-27d910ff42a0, #wrap-s-afd6032d-8aeb-40f2-aa30-27d910ff42a0 { display: none !important; }}







#s-afd6032d-8aeb-40f2-aa30-27d910ff42a0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-afd6032d-8aeb-40f2-aa30-27d910ff42a0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e {
  margin-top: 0px;
margin-bottom: 0px;
max-width: 700px;
aspect-ratio: 3185/136;
text-align: center;
}



.shg-image-margin-container-s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e {
  
  
  margin-top: 0px;
  margin-bottom: 0px;
}

#s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e .shg-image-content-wrapper {
      aspect-ratio: 3185/136;
      width: 100%;
      height: 100%;
    }

    #s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e .shogun-image-link {
      aspect-ratio: 3185/136;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shogun-image {
    
    
  }


.s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e .shogun-image-content {
  
    align-items: center;
  
}

.s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e {
      --shg-aspect-ratio: calc(3185/136); 
    }

    .s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shogun-image-container {
      position: relative;
    }

    .s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e {
  
  
  
  
}

#s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e .shg-image-content-wrapper {
      aspect-ratio: 3185/136;
      width: 100%;
      height: 100%;
    }

    #s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e .shogun-image-link {
      aspect-ratio: 3185/136;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shogun-image {
    
    
  }


.s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e .shogun-image-content {
  
    align-items: center;
  
}

.s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e {
      --shg-aspect-ratio: calc(3185/136); 
    }

    .s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shogun-image-container {
      position: relative;
    }

    .s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e {
  
  
  
  
}

#s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e .shg-image-content-wrapper {
      aspect-ratio: 3185/136;
      width: 100%;
      height: 100%;
    }

    #s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e .shogun-image-link {
      aspect-ratio: 3185/136;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shogun-image {
    
    
  }


.s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e .shogun-image-content {
  
    align-items: center;
  
}

.s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e {
      --shg-aspect-ratio: calc(3185/136); 
    }

    .s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shogun-image-container {
      position: relative;
    }

    .s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e {
  
  
  
  
}

#s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e .shg-image-content-wrapper {
      aspect-ratio: 3185/136;
      width: 100%;
      height: 100%;
    }

    #s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e .shogun-image-link {
      aspect-ratio: 3185/136;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shogun-image {
    
    
  }


.s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e .shogun-image-content {
  
    align-items: center;
  
}

.s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e {
      --shg-aspect-ratio: calc(3185/136); 
    }

    .s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shogun-image-container {
      position: relative;
    }

    .s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e {
  
  
  
  
}

#s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e .shg-image-content-wrapper {
      aspect-ratio: 3185/136;
      width: 100%;
      height: 100%;
    }

    #s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e .shogun-image-link {
      aspect-ratio: 3185/136;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shogun-image {
    
    
  }


.s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e .shogun-image-content {
  
    align-items: center;
  
}

.s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e {
      --shg-aspect-ratio: calc(3185/136); 
    }

    .s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shogun-image-container {
      position: relative;
    }

    .s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-71534b09-e8cd-4a72-96cd-3cae6ec3ce3e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-bb8f2807-8bee-4c35-a02a-c0f6708877c0 {
  margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-bottom: 20px;
max-width: 800px;
text-align: center;
}

#s-bb8f2807-8bee-4c35-a02a-c0f6708877c0 .shogun-heading-component h1 {
  color: rgba(70, 69, 65, 1);
  font-weight:  500 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  
  
}



.shogun-table-wrapper {
  overflow: auto;
}

table.shogun-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  border-style: hidden;
}

thead.shogun-table-column-container {
  font-weight: bold;
}

td.shogun-table-column {
  padding: 10px;
}

td.shogun-table-row {
  padding: 10px;
  min-height: 45px;
}

td.shogun-table-column:only-child, td.shogun-table-row:only-child {
  width: 100%;
}

@media (min-width: 768px) and (max-width: 991px){#s-40684fde-99c7-4e05-847f-723fc8fb555b {
  display: none;
}
#s-40684fde-99c7-4e05-847f-723fc8fb555b, #wrap-s-40684fde-99c7-4e05-847f-723fc8fb555b { display: none !important; }}@media (max-width: 767px){#s-40684fde-99c7-4e05-847f-723fc8fb555b {
  display: none;
}
#s-40684fde-99c7-4e05-847f-723fc8fb555b, #wrap-s-40684fde-99c7-4e05-847f-723fc8fb555b { display: none !important; }}
#s-40684fde-99c7-4e05-847f-723fc8fb555b .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-40684fde-99c7-4e05-847f-723fc8fb555b table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-40684fde-99c7-4e05-847f-723fc8fb555b td.shogun-table-column {
  background-color: #fff;
  padding: 0px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-40684fde-99c7-4e05-847f-723fc8fb555b td.shogun-table-row {
  background-color: rgba(31, 102, 81, 0);
  padding: 5px;
}

#s-40684fde-99c7-4e05-847f-723fc8fb555b td.shogun-table-column, #s-40684fde-99c7-4e05-847f-723fc8fb555b td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-content {
  display: flex;
  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-a81d93c6-4f9a-46a0-9bed-69bd0542ad64 {
  max-width: 300px;
text-align: center;
}







  #s-a81d93c6-4f9a-46a0-9bed-69bd0542ad64 img.shogun-image {
    

    
    
    
  }


#s-a81d93c6-4f9a-46a0-9bed-69bd0542ad64 .shogun-image-content {
  
    align-items: center;
  
}

#s-3bf7a1e8-64ee-4d69-9b6b-048ef2df698b {
  max-width: 300px;
aspect-ratio: 1/1;
text-align: center;
}







  #s-3bf7a1e8-64ee-4d69-9b6b-048ef2df698b img.shogun-image {
    

    
    
    
  }


#s-3bf7a1e8-64ee-4d69-9b6b-048ef2df698b .shogun-image-content {
  
    align-items: center;
  
}

#s-1698a6b7-829f-4552-b173-5527484a9e6b {
  max-width: 300px;
aspect-ratio: 1/1;
text-align: center;
}







  #s-1698a6b7-829f-4552-b173-5527484a9e6b img.shogun-image {
    

    
    
    
  }


#s-1698a6b7-829f-4552-b173-5527484a9e6b .shogun-image-content {
  
    align-items: center;
  
}

#s-c81f8c31-b094-451a-9b73-b95dd263f34f {
  max-width: 300px;
text-align: center;
}







  #s-c81f8c31-b094-451a-9b73-b95dd263f34f img.shogun-image {
    

    
    
    
  }


#s-c81f8c31-b094-451a-9b73-b95dd263f34f .shogun-image-content {
  
    align-items: center;
  
}

#s-53844ba6-3d3f-45eb-b070-77a8ef592756 {
  max-width: 300px;
text-align: center;
}







  #s-53844ba6-3d3f-45eb-b070-77a8ef592756 img.shogun-image {
    

    
    
    
  }


#s-53844ba6-3d3f-45eb-b070-77a8ef592756 .shogun-image-content {
  
    align-items: center;
  
}

#s-f430dbb8-868d-4867-ae0a-0dd96e1c2050 {
  max-width: 300px;
text-align: center;
}







  #s-f430dbb8-868d-4867-ae0a-0dd96e1c2050 img.shogun-image {
    

    
    
    
  }


#s-f430dbb8-868d-4867-ae0a-0dd96e1c2050 .shogun-image-content {
  
    align-items: center;
  
}

#s-17aea2c9-0e03-4e3f-82f7-2ca4207af57f {
  max-width: 300px;
text-align: center;
}







  #s-17aea2c9-0e03-4e3f-82f7-2ca4207af57f img.shogun-image {
    

    
    
    
  }


#s-17aea2c9-0e03-4e3f-82f7-2ca4207af57f .shogun-image-content {
  
    align-items: center;
  
}

#s-c6ec6f0a-07ad-42e0-856d-985a96f3f288 {
  max-width: 300px;
text-align: center;
}







  #s-c6ec6f0a-07ad-42e0-856d-985a96f3f288 img.shogun-image {
    

    
    
    
  }


#s-c6ec6f0a-07ad-42e0-856d-985a96f3f288 .shogun-image-content {
  
    align-items: center;
  
}

#s-9ddf5f3e-d3cc-44a1-bf6a-674accdaf7f9 {
  max-width: 300px;
text-align: center;
}







  #s-9ddf5f3e-d3cc-44a1-bf6a-674accdaf7f9 img.shogun-image {
    

    
    
    
  }


#s-9ddf5f3e-d3cc-44a1-bf6a-674accdaf7f9 .shogun-image-content {
  
    align-items: center;
  
}

#s-c1013ba0-9f8c-42db-8c26-66179915d2f0 {
  max-width: 300px;
text-align: center;
}







  #s-c1013ba0-9f8c-42db-8c26-66179915d2f0 img.shogun-image {
    

    
    
    
  }


#s-c1013ba0-9f8c-42db-8c26-66179915d2f0 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-64047975-4100-4f60-bf42-d5139e9bd0f8 {
  display: none;
}
#s-64047975-4100-4f60-bf42-d5139e9bd0f8, #wrap-s-64047975-4100-4f60-bf42-d5139e9bd0f8 { display: none !important; }}@media (max-width: 767px){#s-64047975-4100-4f60-bf42-d5139e9bd0f8 {
  display: none;
}
#s-64047975-4100-4f60-bf42-d5139e9bd0f8, #wrap-s-64047975-4100-4f60-bf42-d5139e9bd0f8 { display: none !important; }}
#s-64047975-4100-4f60-bf42-d5139e9bd0f8 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-64047975-4100-4f60-bf42-d5139e9bd0f8 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-64047975-4100-4f60-bf42-d5139e9bd0f8 td.shogun-table-column {
  background-color: #fff;
  padding: 0px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-64047975-4100-4f60-bf42-d5139e9bd0f8 td.shogun-table-row {
  background-color: rgba(31, 102, 81, 0);
  padding: 5px;
}

#s-64047975-4100-4f60-bf42-d5139e9bd0f8 td.shogun-table-column, #s-64047975-4100-4f60-bf42-d5139e9bd0f8 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-053e0125-c14d-48b9-8d88-ce4efd7e3f1c {
  max-width: 300px;
text-align: center;
}







  #s-053e0125-c14d-48b9-8d88-ce4efd7e3f1c img.shogun-image {
    

    
    
    
  }


#s-053e0125-c14d-48b9-8d88-ce4efd7e3f1c .shogun-image-content {
  
    align-items: center;
  
}

#s-c5a7f25c-7c7d-4481-b83a-bae6614501dd {
  max-width: 300px;
text-align: center;
}







  #s-c5a7f25c-7c7d-4481-b83a-bae6614501dd img.shogun-image {
    

    
    
    
  }


#s-c5a7f25c-7c7d-4481-b83a-bae6614501dd .shogun-image-content {
  
    align-items: center;
  
}

#s-f1b8c490-3f96-48af-ba25-d028271f9163 {
  max-width: 300px;
text-align: center;
}







  #s-f1b8c490-3f96-48af-ba25-d028271f9163 img.shogun-image {
    

    
    
    
  }


#s-f1b8c490-3f96-48af-ba25-d028271f9163 .shogun-image-content {
  
    align-items: center;
  
}

#s-a33e6505-3104-4504-8826-ce7b62d1ba42 {
  max-width: 300px;
text-align: center;
}







  #s-a33e6505-3104-4504-8826-ce7b62d1ba42 img.shogun-image {
    

    
    
    
  }


#s-a33e6505-3104-4504-8826-ce7b62d1ba42 .shogun-image-content {
  
    align-items: center;
  
}

#s-e97973c8-79c4-44b0-b6d5-b2b3b6bc2563 {
  max-width: 300px;
text-align: center;
}







  #s-e97973c8-79c4-44b0-b6d5-b2b3b6bc2563 img.shogun-image {
    

    
    
    
  }


#s-e97973c8-79c4-44b0-b6d5-b2b3b6bc2563 .shogun-image-content {
  
    align-items: center;
  
}

#s-0b2a3df1-e156-4a02-bd00-b47358c5a521 {
  max-width: 300px;
text-align: center;
}







  #s-0b2a3df1-e156-4a02-bd00-b47358c5a521 img.shogun-image {
    

    
    
    
  }


#s-0b2a3df1-e156-4a02-bd00-b47358c5a521 .shogun-image-content {
  
    align-items: center;
  
}

#s-9c06789c-6159-4d56-ac6d-8952d67d89f6 {
  max-width: 300px;
text-align: center;
}







  #s-9c06789c-6159-4d56-ac6d-8952d67d89f6 img.shogun-image {
    

    
    
    
  }


#s-9c06789c-6159-4d56-ac6d-8952d67d89f6 .shogun-image-content {
  
    align-items: center;
  
}

#s-6f1ee55d-51c5-4f55-b7fe-20636f876dc9 {
  max-width: 300px;
text-align: center;
}







  #s-6f1ee55d-51c5-4f55-b7fe-20636f876dc9 img.shogun-image {
    

    
    
    
  }


#s-6f1ee55d-51c5-4f55-b7fe-20636f876dc9 .shogun-image-content {
  
    align-items: center;
  
}

#s-b8f4db66-720f-498e-a013-c857b667e54e {
  max-width: 300px;
text-align: center;
}







  #s-b8f4db66-720f-498e-a013-c857b667e54e img.shogun-image {
    

    
    
    
  }


#s-b8f4db66-720f-498e-a013-c857b667e54e .shogun-image-content {
  
    align-items: center;
  
}

#s-cc4c4469-c12c-4a04-9a83-64a5bb8b7a4f {
  max-width: 300px;
text-align: center;
}







  #s-cc4c4469-c12c-4a04-9a83-64a5bb8b7a4f img.shogun-image {
    

    
    
    
  }


#s-cc4c4469-c12c-4a04-9a83-64a5bb8b7a4f .shogun-image-content {
  
    align-items: center;
  
}

#s-42471010-057a-4577-a7c2-203acb94f36c {
  padding-top: 5px;
padding-bottom: 5px;
min-height: 50px;
background-color: rgba(237, 243, 238, 1);
}
@media (min-width: 1200px){#s-42471010-057a-4577-a7c2-203acb94f36c {
  display: none;
}
#s-42471010-057a-4577-a7c2-203acb94f36c, #wrap-s-42471010-057a-4577-a7c2-203acb94f36c { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-42471010-057a-4577-a7c2-203acb94f36c {
  display: none;
}
#s-42471010-057a-4577-a7c2-203acb94f36c, #wrap-s-42471010-057a-4577-a7c2-203acb94f36c { display: none !important; }}@media (max-width: 767px){#s-42471010-057a-4577-a7c2-203acb94f36c {
  padding-bottom: 0px;
}
}







#s-42471010-057a-4577-a7c2-203acb94f36c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-42471010-057a-4577-a7c2-203acb94f36c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 768px) and (max-width: 991px){#s-46848b10-04ca-498d-a81c-7747a4e84ad9 {
  display: none;
}
#s-46848b10-04ca-498d-a81c-7747a4e84ad9, #wrap-s-46848b10-04ca-498d-a81c-7747a4e84ad9 { display: none !important; }}@media (max-width: 767px){#s-46848b10-04ca-498d-a81c-7747a4e84ad9 {
  display: none;
}
#s-46848b10-04ca-498d-a81c-7747a4e84ad9, #wrap-s-46848b10-04ca-498d-a81c-7747a4e84ad9 { display: none !important; }}
#s-46848b10-04ca-498d-a81c-7747a4e84ad9 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-46848b10-04ca-498d-a81c-7747a4e84ad9 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-46848b10-04ca-498d-a81c-7747a4e84ad9 td.shogun-table-column {
  background-color: #fff;
  padding: 0px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-46848b10-04ca-498d-a81c-7747a4e84ad9 td.shogun-table-row {
  background-color: rgba(31, 102, 81, 1);
  padding: 5px;
}

#s-46848b10-04ca-498d-a81c-7747a4e84ad9 td.shogun-table-column, #s-46848b10-04ca-498d-a81c-7747a4e84ad9 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-6a4d45cc-2797-4ad7-bcaf-4f692478720e {
  max-width: 300px;
text-align: center;
}







  #s-6a4d45cc-2797-4ad7-bcaf-4f692478720e img.shogun-image {
    

    
    
    
  }


#s-6a4d45cc-2797-4ad7-bcaf-4f692478720e .shogun-image-content {
  
    align-items: center;
  
}

#s-beb3cc93-7d95-45e1-a7b7-d1b556640008 {
  max-width: 300px;
text-align: center;
}







  #s-beb3cc93-7d95-45e1-a7b7-d1b556640008 img.shogun-image {
    

    
    
    
  }


#s-beb3cc93-7d95-45e1-a7b7-d1b556640008 .shogun-image-content {
  
    align-items: center;
  
}

#s-56c2a892-02e8-4930-b12c-c0b52c1d48c2 {
  max-width: 300px;
text-align: center;
}







  #s-56c2a892-02e8-4930-b12c-c0b52c1d48c2 img.shogun-image {
    

    
    
    
  }


#s-56c2a892-02e8-4930-b12c-c0b52c1d48c2 .shogun-image-content {
  
    align-items: center;
  
}

#s-3fad7a44-83ce-4dcc-80c5-dd993d9c62cc {
  max-width: 300px;
text-align: center;
}







  #s-3fad7a44-83ce-4dcc-80c5-dd993d9c62cc img.shogun-image {
    

    
    
    
  }


#s-3fad7a44-83ce-4dcc-80c5-dd993d9c62cc .shogun-image-content {
  
    align-items: center;
  
}

#s-c4775059-4571-46a2-a478-5b2b034b33fa {
  max-width: 300px;
text-align: center;
}







  #s-c4775059-4571-46a2-a478-5b2b034b33fa img.shogun-image {
    

    
    
    
  }


#s-c4775059-4571-46a2-a478-5b2b034b33fa .shogun-image-content {
  
    align-items: center;
  
}

#s-bca2d2fc-252e-425f-9871-816ab0e3f13a {
  max-width: 300px;
text-align: center;
}







  #s-bca2d2fc-252e-425f-9871-816ab0e3f13a img.shogun-image {
    

    
    
    
  }


#s-bca2d2fc-252e-425f-9871-816ab0e3f13a .shogun-image-content {
  
    align-items: center;
  
}

#s-78d48d9e-da74-43a8-96c2-031ed104a210 {
  max-width: 300px;
text-align: center;
}







  #s-78d48d9e-da74-43a8-96c2-031ed104a210 img.shogun-image {
    

    
    
    
  }


#s-78d48d9e-da74-43a8-96c2-031ed104a210 .shogun-image-content {
  
    align-items: center;
  
}

#s-515a39f6-a1ab-42b2-8146-414919aa74b3 {
  max-width: 300px;
text-align: center;
}







  #s-515a39f6-a1ab-42b2-8146-414919aa74b3 img.shogun-image {
    

    
    
    
  }


#s-515a39f6-a1ab-42b2-8146-414919aa74b3 .shogun-image-content {
  
    align-items: center;
  
}

#s-bdd9b404-34d4-4515-9b63-942019733e99 {
  max-width: 300px;
text-align: center;
}







  #s-bdd9b404-34d4-4515-9b63-942019733e99 img.shogun-image {
    

    
    
    
  }


#s-bdd9b404-34d4-4515-9b63-942019733e99 .shogun-image-content {
  
    align-items: center;
  
}

#s-27dcbe5a-6128-4a5d-a52d-6290ee2ad575 {
  max-width: 300px;
text-align: center;
}







  #s-27dcbe5a-6128-4a5d-a52d-6290ee2ad575 img.shogun-image {
    

    
    
    
  }


#s-27dcbe5a-6128-4a5d-a52d-6290ee2ad575 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-aa81ede4-25d8-4e1f-9f09-ed8d888af79a {
  display: none;
}
#s-aa81ede4-25d8-4e1f-9f09-ed8d888af79a, #wrap-s-aa81ede4-25d8-4e1f-9f09-ed8d888af79a { display: none !important; }}@media (max-width: 767px){#s-aa81ede4-25d8-4e1f-9f09-ed8d888af79a {
  display: none;
}
#s-aa81ede4-25d8-4e1f-9f09-ed8d888af79a, #wrap-s-aa81ede4-25d8-4e1f-9f09-ed8d888af79a { display: none !important; }}
#s-aa81ede4-25d8-4e1f-9f09-ed8d888af79a .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-aa81ede4-25d8-4e1f-9f09-ed8d888af79a table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-aa81ede4-25d8-4e1f-9f09-ed8d888af79a td.shogun-table-column {
  background-color: #fff;
  padding: 0px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-aa81ede4-25d8-4e1f-9f09-ed8d888af79a td.shogun-table-row {
  background-color: rgba(31, 102, 81, 1);
  padding: 5px;
}

#s-aa81ede4-25d8-4e1f-9f09-ed8d888af79a td.shogun-table-column, #s-aa81ede4-25d8-4e1f-9f09-ed8d888af79a td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-b75c8967-a365-4f53-abbb-95983ba4d58e {
  max-width: 300px;
text-align: center;
}







  #s-b75c8967-a365-4f53-abbb-95983ba4d58e img.shogun-image {
    

    
    
    
  }


#s-b75c8967-a365-4f53-abbb-95983ba4d58e .shogun-image-content {
  
    align-items: center;
  
}

#s-3dcff9e7-fbc8-4fa4-88c3-1f35182c7377 {
  max-width: 300px;
text-align: center;
}







  #s-3dcff9e7-fbc8-4fa4-88c3-1f35182c7377 img.shogun-image {
    

    
    
    
  }


#s-3dcff9e7-fbc8-4fa4-88c3-1f35182c7377 .shogun-image-content {
  
    align-items: center;
  
}

#s-32aab3c5-be1c-42d3-a23b-40ddf69c5d9a {
  max-width: 300px;
text-align: center;
}







  #s-32aab3c5-be1c-42d3-a23b-40ddf69c5d9a img.shogun-image {
    

    
    
    
  }


#s-32aab3c5-be1c-42d3-a23b-40ddf69c5d9a .shogun-image-content {
  
    align-items: center;
  
}

#s-06ccc41c-3a1c-4552-9b56-3d13d9bf1761 {
  max-width: 300px;
text-align: center;
}







  #s-06ccc41c-3a1c-4552-9b56-3d13d9bf1761 img.shogun-image {
    

    
    
    
  }


#s-06ccc41c-3a1c-4552-9b56-3d13d9bf1761 .shogun-image-content {
  
    align-items: center;
  
}

#s-593009e6-d8b7-45ba-a038-a39b9ddc3d3d {
  max-width: 300px;
text-align: center;
}







  #s-593009e6-d8b7-45ba-a038-a39b9ddc3d3d img.shogun-image {
    

    
    
    
  }


#s-593009e6-d8b7-45ba-a038-a39b9ddc3d3d .shogun-image-content {
  
    align-items: center;
  
}

#s-ca4cd67b-6386-410e-91d8-472bc73e03dd {
  max-width: 300px;
text-align: center;
}







  #s-ca4cd67b-6386-410e-91d8-472bc73e03dd img.shogun-image {
    

    
    
    
  }


#s-ca4cd67b-6386-410e-91d8-472bc73e03dd .shogun-image-content {
  
    align-items: center;
  
}

#s-ff75cf09-e7a8-44cf-86bd-53edeb1ac09a {
  max-width: 300px;
text-align: center;
}







  #s-ff75cf09-e7a8-44cf-86bd-53edeb1ac09a img.shogun-image {
    

    
    
    
  }


#s-ff75cf09-e7a8-44cf-86bd-53edeb1ac09a .shogun-image-content {
  
    align-items: center;
  
}

#s-f2b52705-4f24-49cd-b09b-d7adc5c6f806 {
  max-width: 300px;
text-align: center;
}







  #s-f2b52705-4f24-49cd-b09b-d7adc5c6f806 img.shogun-image {
    

    
    
    
  }


#s-f2b52705-4f24-49cd-b09b-d7adc5c6f806 .shogun-image-content {
  
    align-items: center;
  
}

#s-c1ff8c6b-00c5-4bec-8bf4-c26fe04c02c2 {
  max-width: 300px;
text-align: center;
}







  #s-c1ff8c6b-00c5-4bec-8bf4-c26fe04c02c2 img.shogun-image {
    

    
    
    
  }


#s-c1ff8c6b-00c5-4bec-8bf4-c26fe04c02c2 .shogun-image-content {
  
    align-items: center;
  
}

#s-e8ca45b6-219f-4db4-8aae-8b1296c5e58f {
  max-width: 300px;
text-align: center;
}







  #s-e8ca45b6-219f-4db4-8aae-8b1296c5e58f img.shogun-image {
    

    
    
    
  }


#s-e8ca45b6-219f-4db4-8aae-8b1296c5e58f .shogun-image-content {
  
    align-items: center;
  
}

#s-0458542f-2b34-4b46-a0be-6de57640cc79 {
  margin-top: 20px;
margin-bottom: 20px;
max-width: 310px;
aspect-ratio: 1612/329;
text-align: center;
}



.shg-image-margin-container-s-0458542f-2b34-4b46-a0be-6de57640cc79 {
  
  
  margin-top: 20px;
  margin-bottom: 20px;
}

#s-0458542f-2b34-4b46-a0be-6de57640cc79 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0458542f-2b34-4b46-a0be-6de57640cc79 .shg-image-content-wrapper {
      aspect-ratio: 1612/329;
      width: 100%;
      height: 100%;
    }

    #s-0458542f-2b34-4b46-a0be-6de57640cc79 .shogun-image-link {
      aspect-ratio: 1612/329;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0458542f-2b34-4b46-a0be-6de57640cc79 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0458542f-2b34-4b46-a0be-6de57640cc79.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0458542f-2b34-4b46-a0be-6de57640cc79 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0458542f-2b34-4b46-a0be-6de57640cc79.shogun-image {
    
    
  }


.s-0458542f-2b34-4b46-a0be-6de57640cc79 .shogun-image-content {
  
    align-items: center;
  
}

.s-0458542f-2b34-4b46-a0be-6de57640cc79.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0458542f-2b34-4b46-a0be-6de57640cc79.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0458542f-2b34-4b46-a0be-6de57640cc79.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0458542f-2b34-4b46-a0be-6de57640cc79 {
      --shg-aspect-ratio: calc(1612/329); 
    }

    .s-0458542f-2b34-4b46-a0be-6de57640cc79.shogun-image-container {
      position: relative;
    }

    .s-0458542f-2b34-4b46-a0be-6de57640cc79.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0458542f-2b34-4b46-a0be-6de57640cc79.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0458542f-2b34-4b46-a0be-6de57640cc79 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-0458542f-2b34-4b46-a0be-6de57640cc79 {
  
  
  
  
}

#s-0458542f-2b34-4b46-a0be-6de57640cc79 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0458542f-2b34-4b46-a0be-6de57640cc79 .shg-image-content-wrapper {
      aspect-ratio: 1612/329;
      width: 100%;
      height: 100%;
    }

    #s-0458542f-2b34-4b46-a0be-6de57640cc79 .shogun-image-link {
      aspect-ratio: 1612/329;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0458542f-2b34-4b46-a0be-6de57640cc79 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0458542f-2b34-4b46-a0be-6de57640cc79.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0458542f-2b34-4b46-a0be-6de57640cc79 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0458542f-2b34-4b46-a0be-6de57640cc79.shogun-image {
    
    
  }


.s-0458542f-2b34-4b46-a0be-6de57640cc79 .shogun-image-content {
  
    align-items: center;
  
}

.s-0458542f-2b34-4b46-a0be-6de57640cc79.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0458542f-2b34-4b46-a0be-6de57640cc79.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0458542f-2b34-4b46-a0be-6de57640cc79.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0458542f-2b34-4b46-a0be-6de57640cc79 {
      --shg-aspect-ratio: calc(1612/329); 
    }

    .s-0458542f-2b34-4b46-a0be-6de57640cc79.shogun-image-container {
      position: relative;
    }

    .s-0458542f-2b34-4b46-a0be-6de57640cc79.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0458542f-2b34-4b46-a0be-6de57640cc79.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0458542f-2b34-4b46-a0be-6de57640cc79 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-0458542f-2b34-4b46-a0be-6de57640cc79 {
  
  
  
  
}

#s-0458542f-2b34-4b46-a0be-6de57640cc79 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0458542f-2b34-4b46-a0be-6de57640cc79 .shg-image-content-wrapper {
      aspect-ratio: 1612/329;
      width: 100%;
      height: 100%;
    }

    #s-0458542f-2b34-4b46-a0be-6de57640cc79 .shogun-image-link {
      aspect-ratio: 1612/329;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0458542f-2b34-4b46-a0be-6de57640cc79 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0458542f-2b34-4b46-a0be-6de57640cc79.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0458542f-2b34-4b46-a0be-6de57640cc79 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0458542f-2b34-4b46-a0be-6de57640cc79.shogun-image {
    
    
  }


.s-0458542f-2b34-4b46-a0be-6de57640cc79 .shogun-image-content {
  
    align-items: center;
  
}

.s-0458542f-2b34-4b46-a0be-6de57640cc79.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0458542f-2b34-4b46-a0be-6de57640cc79.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0458542f-2b34-4b46-a0be-6de57640cc79.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0458542f-2b34-4b46-a0be-6de57640cc79 {
      --shg-aspect-ratio: calc(1612/329); 
    }

    .s-0458542f-2b34-4b46-a0be-6de57640cc79.shogun-image-container {
      position: relative;
    }

    .s-0458542f-2b34-4b46-a0be-6de57640cc79.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0458542f-2b34-4b46-a0be-6de57640cc79.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0458542f-2b34-4b46-a0be-6de57640cc79 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-0458542f-2b34-4b46-a0be-6de57640cc79 {
  
  
  
  
}

#s-0458542f-2b34-4b46-a0be-6de57640cc79 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0458542f-2b34-4b46-a0be-6de57640cc79 .shg-image-content-wrapper {
      aspect-ratio: 1612/329;
      width: 100%;
      height: 100%;
    }

    #s-0458542f-2b34-4b46-a0be-6de57640cc79 .shogun-image-link {
      aspect-ratio: 1612/329;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0458542f-2b34-4b46-a0be-6de57640cc79 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0458542f-2b34-4b46-a0be-6de57640cc79.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0458542f-2b34-4b46-a0be-6de57640cc79 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0458542f-2b34-4b46-a0be-6de57640cc79.shogun-image {
    
    
  }


.s-0458542f-2b34-4b46-a0be-6de57640cc79 .shogun-image-content {
  
    align-items: center;
  
}

.s-0458542f-2b34-4b46-a0be-6de57640cc79.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0458542f-2b34-4b46-a0be-6de57640cc79.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0458542f-2b34-4b46-a0be-6de57640cc79.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0458542f-2b34-4b46-a0be-6de57640cc79 {
      --shg-aspect-ratio: calc(1612/329); 
    }

    .s-0458542f-2b34-4b46-a0be-6de57640cc79.shogun-image-container {
      position: relative;
    }

    .s-0458542f-2b34-4b46-a0be-6de57640cc79.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0458542f-2b34-4b46-a0be-6de57640cc79.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0458542f-2b34-4b46-a0be-6de57640cc79 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-0458542f-2b34-4b46-a0be-6de57640cc79 {
  
  
  
  
}

#s-0458542f-2b34-4b46-a0be-6de57640cc79 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0458542f-2b34-4b46-a0be-6de57640cc79 .shg-image-content-wrapper {
      aspect-ratio: 1612/329;
      width: 100%;
      height: 100%;
    }

    #s-0458542f-2b34-4b46-a0be-6de57640cc79 .shogun-image-link {
      aspect-ratio: 1612/329;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0458542f-2b34-4b46-a0be-6de57640cc79 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0458542f-2b34-4b46-a0be-6de57640cc79.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0458542f-2b34-4b46-a0be-6de57640cc79 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0458542f-2b34-4b46-a0be-6de57640cc79.shogun-image {
    
    
  }


.s-0458542f-2b34-4b46-a0be-6de57640cc79 .shogun-image-content {
  
    align-items: center;
  
}

.s-0458542f-2b34-4b46-a0be-6de57640cc79.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0458542f-2b34-4b46-a0be-6de57640cc79.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0458542f-2b34-4b46-a0be-6de57640cc79.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0458542f-2b34-4b46-a0be-6de57640cc79 {
      --shg-aspect-ratio: calc(1612/329); 
    }

    .s-0458542f-2b34-4b46-a0be-6de57640cc79.shogun-image-container {
      position: relative;
    }

    .s-0458542f-2b34-4b46-a0be-6de57640cc79.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0458542f-2b34-4b46-a0be-6de57640cc79.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0458542f-2b34-4b46-a0be-6de57640cc79 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-f0810409-9c19-4da2-963a-209803c10925 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-f0810409-9c19-4da2-963a-209803c10925 {
  display: none;
}
#s-f0810409-9c19-4da2-963a-209803c10925, #wrap-s-f0810409-9c19-4da2-963a-209803c10925 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f0810409-9c19-4da2-963a-209803c10925 {
  display: none;
}
#s-f0810409-9c19-4da2-963a-209803c10925, #wrap-s-f0810409-9c19-4da2-963a-209803c10925 { display: none !important; }}







#s-f0810409-9c19-4da2-963a-209803c10925 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f0810409-9c19-4da2-963a-209803c10925.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-70ec569e-12f2-42a7-bbe9-119988ce5506"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 768px) {
[id="s-70ec569e-12f2-42a7-bbe9-119988ce5506"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 992px) {
[id="s-70ec569e-12f2-42a7-bbe9-119988ce5506"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 1200px) {
[id="s-70ec569e-12f2-42a7-bbe9-119988ce5506"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

#s-10ae6167-abae-4cc4-8019-6f2cad8f3d3d {
  max-width: 3844px;
aspect-ratio: 1/1;
text-align: center;
}
@media (max-width: 767px){#s-10ae6167-abae-4cc4-8019-6f2cad8f3d3d {
  max-width: 300px;
}
}




  #s-10ae6167-abae-4cc4-8019-6f2cad8f3d3d img.shogun-image,
  #s-10ae6167-abae-4cc4-8019-6f2cad8f3d3d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-10ae6167-abae-4cc4-8019-6f2cad8f3d3d {
    width: 100%;
    height: auto;
  }



  #s-10ae6167-abae-4cc4-8019-6f2cad8f3d3d img.shogun-image {
    

    
    
    
  }


#s-10ae6167-abae-4cc4-8019-6f2cad8f3d3d .shogun-image-content {
  
    align-items: center;
  
}

#s-b0d4fd6d-3b1d-42b4-b282-c3feb2aa6b29 {
  max-width: 2000px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-b0d4fd6d-3b1d-42b4-b282-c3feb2aa6b29 img.shogun-image,
  #s-b0d4fd6d-3b1d-42b4-b282-c3feb2aa6b29 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b0d4fd6d-3b1d-42b4-b282-c3feb2aa6b29 {
    width: 100%;
    height: auto;
  }



  #s-b0d4fd6d-3b1d-42b4-b282-c3feb2aa6b29 img.shogun-image {
    

    
    
    
  }


#s-b0d4fd6d-3b1d-42b4-b282-c3feb2aa6b29 .shogun-image-content {
  
    align-items: center;
  
}

#s-27da4c7a-4057-4cfe-8f58-387f6e9c3eff {
  max-width: 935px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-27da4c7a-4057-4cfe-8f58-387f6e9c3eff img.shogun-image,
  #s-27da4c7a-4057-4cfe-8f58-387f6e9c3eff .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-27da4c7a-4057-4cfe-8f58-387f6e9c3eff {
    width: 100%;
    height: auto;
  }



  #s-27da4c7a-4057-4cfe-8f58-387f6e9c3eff img.shogun-image {
    

    
    
    
  }


#s-27da4c7a-4057-4cfe-8f58-387f6e9c3eff .shogun-image-content {
  
    align-items: center;
  
}

#s-c104b716-f0b4-4c8f-8fe4-d7719fc8bf4a {
  margin-top: 5px;
}

@media (min-width: 0px) {
[id="s-c104b716-f0b4-4c8f-8fe4-d7719fc8bf4a"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 768px) {
[id="s-c104b716-f0b4-4c8f-8fe4-d7719fc8bf4a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 992px) {
[id="s-c104b716-f0b4-4c8f-8fe4-d7719fc8bf4a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 1200px) {
[id="s-c104b716-f0b4-4c8f-8fe4-d7719fc8bf4a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

#s-d492541f-e3dc-49b0-b570-d8faeef1ece9 {
  max-width: 1925px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-d492541f-e3dc-49b0-b570-d8faeef1ece9 img.shogun-image,
  #s-d492541f-e3dc-49b0-b570-d8faeef1ece9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d492541f-e3dc-49b0-b570-d8faeef1ece9 {
    width: 100%;
    height: auto;
  }



  #s-d492541f-e3dc-49b0-b570-d8faeef1ece9 img.shogun-image {
    

    
    
    
  }


#s-d492541f-e3dc-49b0-b570-d8faeef1ece9 .shogun-image-content {
  
    align-items: center;
  
}

#s-b643085c-20a8-48e1-b94d-17bdbe934ae3 {
  max-width: 1164px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-b643085c-20a8-48e1-b94d-17bdbe934ae3 img.shogun-image,
  #s-b643085c-20a8-48e1-b94d-17bdbe934ae3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b643085c-20a8-48e1-b94d-17bdbe934ae3 {
    width: 100%;
    height: auto;
  }



  #s-b643085c-20a8-48e1-b94d-17bdbe934ae3 img.shogun-image {
    

    
    
    
  }


#s-b643085c-20a8-48e1-b94d-17bdbe934ae3 .shogun-image-content {
  
    align-items: center;
  
}

#s-631e0225-b45f-480f-ae94-a10debc8e42c {
  max-width: 1160px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-631e0225-b45f-480f-ae94-a10debc8e42c img.shogun-image,
  #s-631e0225-b45f-480f-ae94-a10debc8e42c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-631e0225-b45f-480f-ae94-a10debc8e42c {
    width: 100%;
    height: auto;
  }



  #s-631e0225-b45f-480f-ae94-a10debc8e42c img.shogun-image {
    

    
    
    
  }


#s-631e0225-b45f-480f-ae94-a10debc8e42c .shogun-image-content {
  
    align-items: center;
  
}

#s-a9435f70-7d82-4a91-a911-6b705075954f {
  margin-top: 5px;
margin-bottom: 5px;
}

@media (min-width: 0px) {
[id="s-a9435f70-7d82-4a91-a911-6b705075954f"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 768px) {
[id="s-a9435f70-7d82-4a91-a911-6b705075954f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 992px) {
[id="s-a9435f70-7d82-4a91-a911-6b705075954f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 1200px) {
[id="s-a9435f70-7d82-4a91-a911-6b705075954f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

#s-c5755fce-1731-42d9-90f6-a8c69bcf0368 {
  max-width: 718px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-c5755fce-1731-42d9-90f6-a8c69bcf0368 img.shogun-image,
  #s-c5755fce-1731-42d9-90f6-a8c69bcf0368 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c5755fce-1731-42d9-90f6-a8c69bcf0368 {
    width: 100%;
    height: auto;
  }



  #s-c5755fce-1731-42d9-90f6-a8c69bcf0368 img.shogun-image {
    

    
    
    
  }


#s-c5755fce-1731-42d9-90f6-a8c69bcf0368 .shogun-image-content {
  
    align-items: center;
  
}

#s-afe5aa99-0edd-4cf4-90a0-e9bd4a0433f1 {
  max-width: 1240px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-afe5aa99-0edd-4cf4-90a0-e9bd4a0433f1 img.shogun-image,
  #s-afe5aa99-0edd-4cf4-90a0-e9bd4a0433f1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-afe5aa99-0edd-4cf4-90a0-e9bd4a0433f1 {
    width: 100%;
    height: auto;
  }



  #s-afe5aa99-0edd-4cf4-90a0-e9bd4a0433f1 img.shogun-image {
    

    
    
    
  }


#s-afe5aa99-0edd-4cf4-90a0-e9bd4a0433f1 .shogun-image-content {
  
    align-items: center;
  
}

#s-8089eacf-b09c-4e8f-9d8a-aa61a63703f3 {
  max-width: 689px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-8089eacf-b09c-4e8f-9d8a-aa61a63703f3 img.shogun-image,
  #s-8089eacf-b09c-4e8f-9d8a-aa61a63703f3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8089eacf-b09c-4e8f-9d8a-aa61a63703f3 {
    width: 100%;
    height: auto;
  }



  #s-8089eacf-b09c-4e8f-9d8a-aa61a63703f3 img.shogun-image {
    

    
    
    
  }


#s-8089eacf-b09c-4e8f-9d8a-aa61a63703f3 .shogun-image-content {
  
    align-items: center;
  
}

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

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

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

.shogun-root iframe {
  display: initial;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}

.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

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

.shogun-root div:empty:not(.shopify-section *):not([id^="wistia"]) {
  display: inline-block;
}

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

/* <-- User Content Animations */

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

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

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