.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-2be0c22b-f36d-473f-a041-b7a1631d13a7 {
  margin-top: 0px;
margin-bottom: 0px;
min-height: 50px;
}








#s-2be0c22b-f36d-473f-a041-b7a1631d13a7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2be0c22b-f36d-473f-a041-b7a1631d13a7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a9e85047-8d94-4d7f-8014-ea7bca15b603 {
  padding-top: 54px;
padding-bottom: 64px;
min-height: 50px;
background-color: rgba(26, 87, 69, 1);
}
@media (max-width: 767px){#s-a9e85047-8d94-4d7f-8014-ea7bca15b603 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 24px;
padding-bottom: 32px;
}
}







#s-a9e85047-8d94-4d7f-8014-ea7bca15b603 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a9e85047-8d94-4d7f-8014-ea7bca15b603.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-05d01457-932e-4390-9a54-ab89258c9a2e {
  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-e5de018c-637e-41b3-8a25-2e780d926483 {
  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-e5de018c-637e-41b3-8a25-2e780d926483 {
  display: none;
}
#s-e5de018c-637e-41b3-8a25-2e780d926483, #wrap-s-e5de018c-637e-41b3-8a25-2e780d926483 { display: none !important; }}@media (max-width: 767px){#s-e5de018c-637e-41b3-8a25-2e780d926483 {
  display: none;
}
#s-e5de018c-637e-41b3-8a25-2e780d926483, #wrap-s-e5de018c-637e-41b3-8a25-2e780d926483 { display: none !important; }}


.shg-image-margin-container-s-e5de018c-637e-41b3-8a25-2e780d926483 {
  
  
  margin-top: 0px;
  margin-bottom: 32px;
}

#s-e5de018c-637e-41b3-8a25-2e780d926483 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e5de018c-637e-41b3-8a25-2e780d926483 .shg-image-content-wrapper {
      aspect-ratio: 2208/130;
      min-width: 100%;
      height: auto;
    }

    #s-e5de018c-637e-41b3-8a25-2e780d926483 .shogun-image-link {
      aspect-ratio: 2208/130;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e5de018c-637e-41b3-8a25-2e780d926483 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e5de018c-637e-41b3-8a25-2e780d926483.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e5de018c-637e-41b3-8a25-2e780d926483 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e5de018c-637e-41b3-8a25-2e780d926483.shogun-image {
    
    
  }


.s-e5de018c-637e-41b3-8a25-2e780d926483 .shogun-image-content {
  
    align-items: center;
  
}

.s-e5de018c-637e-41b3-8a25-2e780d926483.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e5de018c-637e-41b3-8a25-2e780d926483.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e5de018c-637e-41b3-8a25-2e780d926483.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e5de018c-637e-41b3-8a25-2e780d926483 {
      --shg-aspect-ratio: calc(2208/130); 
    }

    .s-e5de018c-637e-41b3-8a25-2e780d926483.shogun-image-container {
      position: relative;
    }

    .s-e5de018c-637e-41b3-8a25-2e780d926483.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e5de018c-637e-41b3-8a25-2e780d926483.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e5de018c-637e-41b3-8a25-2e780d926483 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-e5de018c-637e-41b3-8a25-2e780d926483 {
  
  
  
  
}

#s-e5de018c-637e-41b3-8a25-2e780d926483 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e5de018c-637e-41b3-8a25-2e780d926483 .shg-image-content-wrapper {
      aspect-ratio: 2208/130;
      min-width: 100%;
      height: auto;
    }

    #s-e5de018c-637e-41b3-8a25-2e780d926483 .shogun-image-link {
      aspect-ratio: 2208/130;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e5de018c-637e-41b3-8a25-2e780d926483 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e5de018c-637e-41b3-8a25-2e780d926483.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e5de018c-637e-41b3-8a25-2e780d926483 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e5de018c-637e-41b3-8a25-2e780d926483.shogun-image {
    
    
  }


.s-e5de018c-637e-41b3-8a25-2e780d926483 .shogun-image-content {
  
    align-items: center;
  
}

.s-e5de018c-637e-41b3-8a25-2e780d926483.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e5de018c-637e-41b3-8a25-2e780d926483.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e5de018c-637e-41b3-8a25-2e780d926483.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e5de018c-637e-41b3-8a25-2e780d926483 {
      --shg-aspect-ratio: calc(2208/130); 
    }

    .s-e5de018c-637e-41b3-8a25-2e780d926483.shogun-image-container {
      position: relative;
    }

    .s-e5de018c-637e-41b3-8a25-2e780d926483.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e5de018c-637e-41b3-8a25-2e780d926483.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e5de018c-637e-41b3-8a25-2e780d926483 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-e5de018c-637e-41b3-8a25-2e780d926483 {
  
  
  
  
}

#s-e5de018c-637e-41b3-8a25-2e780d926483 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e5de018c-637e-41b3-8a25-2e780d926483 .shg-image-content-wrapper {
      aspect-ratio: 2208/130;
      min-width: 100%;
      height: auto;
    }

    #s-e5de018c-637e-41b3-8a25-2e780d926483 .shogun-image-link {
      aspect-ratio: 2208/130;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e5de018c-637e-41b3-8a25-2e780d926483 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e5de018c-637e-41b3-8a25-2e780d926483.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e5de018c-637e-41b3-8a25-2e780d926483 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e5de018c-637e-41b3-8a25-2e780d926483.shogun-image {
    
    
  }


.s-e5de018c-637e-41b3-8a25-2e780d926483 .shogun-image-content {
  
    align-items: center;
  
}

.s-e5de018c-637e-41b3-8a25-2e780d926483.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e5de018c-637e-41b3-8a25-2e780d926483.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e5de018c-637e-41b3-8a25-2e780d926483.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e5de018c-637e-41b3-8a25-2e780d926483 {
      --shg-aspect-ratio: calc(2208/130); 
    }

    .s-e5de018c-637e-41b3-8a25-2e780d926483.shogun-image-container {
      position: relative;
    }

    .s-e5de018c-637e-41b3-8a25-2e780d926483.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e5de018c-637e-41b3-8a25-2e780d926483.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e5de018c-637e-41b3-8a25-2e780d926483 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-e5de018c-637e-41b3-8a25-2e780d926483 {
  
  
  
  
}

#s-e5de018c-637e-41b3-8a25-2e780d926483 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e5de018c-637e-41b3-8a25-2e780d926483 .shg-image-content-wrapper {
      aspect-ratio: 2208/130;
      min-width: 100%;
      height: auto;
    }

    #s-e5de018c-637e-41b3-8a25-2e780d926483 .shogun-image-link {
      aspect-ratio: 2208/130;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e5de018c-637e-41b3-8a25-2e780d926483 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e5de018c-637e-41b3-8a25-2e780d926483.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e5de018c-637e-41b3-8a25-2e780d926483 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e5de018c-637e-41b3-8a25-2e780d926483.shogun-image {
    
    
  }


.s-e5de018c-637e-41b3-8a25-2e780d926483 .shogun-image-content {
  
    align-items: center;
  
}

.s-e5de018c-637e-41b3-8a25-2e780d926483.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e5de018c-637e-41b3-8a25-2e780d926483.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e5de018c-637e-41b3-8a25-2e780d926483.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e5de018c-637e-41b3-8a25-2e780d926483 {
      --shg-aspect-ratio: calc(2208/130); 
    }

    .s-e5de018c-637e-41b3-8a25-2e780d926483.shogun-image-container {
      position: relative;
    }

    .s-e5de018c-637e-41b3-8a25-2e780d926483.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e5de018c-637e-41b3-8a25-2e780d926483.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e5de018c-637e-41b3-8a25-2e780d926483 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-e5de018c-637e-41b3-8a25-2e780d926483 {
  
  
  
  
}

#s-e5de018c-637e-41b3-8a25-2e780d926483 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e5de018c-637e-41b3-8a25-2e780d926483 .shg-image-content-wrapper {
      aspect-ratio: 2208/130;
      min-width: 100%;
      height: auto;
    }

    #s-e5de018c-637e-41b3-8a25-2e780d926483 .shogun-image-link {
      aspect-ratio: 2208/130;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e5de018c-637e-41b3-8a25-2e780d926483 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e5de018c-637e-41b3-8a25-2e780d926483.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e5de018c-637e-41b3-8a25-2e780d926483 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e5de018c-637e-41b3-8a25-2e780d926483.shogun-image {
    
    
  }


.s-e5de018c-637e-41b3-8a25-2e780d926483 .shogun-image-content {
  
    align-items: center;
  
}

.s-e5de018c-637e-41b3-8a25-2e780d926483.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e5de018c-637e-41b3-8a25-2e780d926483.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e5de018c-637e-41b3-8a25-2e780d926483.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e5de018c-637e-41b3-8a25-2e780d926483 {
      --shg-aspect-ratio: calc(2208/130); 
    }

    .s-e5de018c-637e-41b3-8a25-2e780d926483.shogun-image-container {
      position: relative;
    }

    .s-e5de018c-637e-41b3-8a25-2e780d926483.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e5de018c-637e-41b3-8a25-2e780d926483.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e5de018c-637e-41b3-8a25-2e780d926483 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c {
  margin-top: 0px;
margin-bottom: 20px;
max-width: 280px;
aspect-ratio: 1339/307;
text-align: center;
}
@media (min-width: 1200px){#s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c {
  display: none;
}
#s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c, #wrap-s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c {
  display: none;
}
#s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c, #wrap-s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c { display: none !important; }}


.shg-image-margin-container-s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c {
  
  
  margin-top: 0px;
  margin-bottom: 20px;
}

#s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c .shg-image-content-wrapper {
      aspect-ratio: 1339/307;
      min-width: 100%;
      height: auto;
    }

    #s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c .shogun-image-link {
      aspect-ratio: 1339/307;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shogun-image {
    
    
  }


.s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c .shogun-image-content {
  
    align-items: center;
  
}

.s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c {
      --shg-aspect-ratio: calc(1339/307); 
    }

    .s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shogun-image-container {
      position: relative;
    }

    .s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c {
  
  
  
  
}

#s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c .shg-image-content-wrapper {
      aspect-ratio: 1339/307;
      min-width: 100%;
      height: auto;
    }

    #s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c .shogun-image-link {
      aspect-ratio: 1339/307;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shogun-image {
    
    
  }


.s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c .shogun-image-content {
  
    align-items: center;
  
}

.s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c {
      --shg-aspect-ratio: calc(1339/307); 
    }

    .s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shogun-image-container {
      position: relative;
    }

    .s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c 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-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c {
  
  
  
  
}

#s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c .shg-image-content-wrapper {
      aspect-ratio: 1339/307;
      min-width: 100%;
      height: auto;
    }

    #s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c .shogun-image-link {
      aspect-ratio: 1339/307;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shogun-image {
    
    
  }


.s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c .shogun-image-content {
  
    align-items: center;
  
}

.s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c {
      --shg-aspect-ratio: calc(1339/307); 
    }

    .s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shogun-image-container {
      position: relative;
    }

    .s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c 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-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c {
  
  
  
  
}

#s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c .shg-image-content-wrapper {
      aspect-ratio: 1339/307;
      min-width: 100%;
      height: auto;
    }

    #s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c .shogun-image-link {
      aspect-ratio: 1339/307;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shogun-image {
    
    
  }


.s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c .shogun-image-content {
  
    align-items: center;
  
}

.s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c {
      --shg-aspect-ratio: calc(1339/307); 
    }

    .s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shogun-image-container {
      position: relative;
    }

    .s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c {
  
  
  
  
}

#s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c .shg-image-content-wrapper {
      aspect-ratio: 1339/307;
      min-width: 100%;
      height: auto;
    }

    #s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c .shogun-image-link {
      aspect-ratio: 1339/307;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shogun-image {
    
    
  }


.s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c .shogun-image-content {
  
    align-items: center;
  
}

.s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c {
      --shg-aspect-ratio: calc(1339/307); 
    }

    .s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shogun-image-container {
      position: relative;
    }

    .s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f2b6a9f4-f4e8-44bb-8aa3-aa604202333c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-8ef20d13-666f-4948-8d12-1f2e61e0a97b {
  margin-left: auto;
margin-right: auto;
max-width: 1400px;
text-align: left;
}
@media (max-width: 767px){#s-8ef20d13-666f-4948-8d12-1f2e61e0a97b {
  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-40cfe490-f99d-4ab8-8bb6-81c0a81b2653 {
  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-40cfe490-f99d-4ab8-8bb6-81c0a81b2653: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-40cfe490-f99d-4ab8-8bb6-81c0a81b2653: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-40cfe490-f99d-4ab8-8bb6-81c0a81b2653 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-40cfe490-f99d-4ab8-8bb6-81c0a81b2653 {
  
}
}@media (max-width: 767px){#s-40cfe490-f99d-4ab8-8bb6-81c0a81b2653 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
}
}

  #s-40cfe490-f99d-4ab8-8bb6-81c0a81b2653-root {
    text-align: center;
  }


#s-40cfe490-f99d-4ab8-8bb6-81c0a81b2653.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-40cfe490-f99d-4ab8-8bb6-81c0a81b2653-root {
    text-align: center;
  }


#s-40cfe490-f99d-4ab8-8bb6-81c0a81b2653.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-40cfe490-f99d-4ab8-8bb6-81c0a81b2653-root {
    text-align: center;
  }


#s-40cfe490-f99d-4ab8-8bb6-81c0a81b2653.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-40cfe490-f99d-4ab8-8bb6-81c0a81b2653-root {
    text-align: center;
  }


#s-40cfe490-f99d-4ab8-8bb6-81c0a81b2653.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-40cfe490-f99d-4ab8-8bb6-81c0a81b2653-root {
    text-align: center;
  }


#s-40cfe490-f99d-4ab8-8bb6-81c0a81b2653.shg-btn {
  color: rgba(26, 87, 69, 1);
  font-size: 18px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}
#s-fb067064-55bd-4602-9c7c-60fcbb4e4ea6 {
  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-fb067064-55bd-4602-9c7c-60fcbb4e4ea6 {
  padding-top: 32px;
}
}







#s-fb067064-55bd-4602-9c7c-60fcbb4e4ea6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fb067064-55bd-4602-9c7c-60fcbb4e4ea6.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-2b28444f-efc4-4ff8-9565-b790a134bc0b {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (max-width: 767px){#s-2b28444f-efc4-4ff8-9565-b790a134bc0b {
  margin-left: 5%;
margin-right: 5%;
padding-top: 0px;
padding-bottom: 30px;
}
}
#s-2b28444f-efc4-4ff8-9565-b790a134bc0b .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-2b28444f-efc4-4ff8-9565-b790a134bc0b .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-2b28444f-efc4-4ff8-9565-b790a134bc0b .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-5a4d329c-12d0-48c2-8a55-2a3c457b4e15 {
  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-5a4d329c-12d0-48c2-8a55-2a3c457b4e15 {
  padding-top: 0px;
padding-bottom: 0px;
}
}







#s-5a4d329c-12d0-48c2-8a55-2a3c457b4e15 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5a4d329c-12d0-48c2-8a55-2a3c457b4e15.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-9a22c35e-9a71-46d0-8933-9e7c6ee8fe28 {
  margin-left: auto;
margin-right: auto;
max-width: 1400px;
}

@media (min-width: 0px) {
[id="s-9a22c35e-9a71-46d0-8933-9e7c6ee8fe28"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9a22c35e-9a71-46d0-8933-9e7c6ee8fe28"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-9a22c35e-9a71-46d0-8933-9e7c6ee8fe28"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-9a22c35e-9a71-46d0-8933-9e7c6ee8fe28"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-10e743f7-3294-45c5-997a-bc86b374fa78 {
  min-height: 50px;
}








#s-10e743f7-3294-45c5-997a-bc86b374fa78 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-10e743f7-3294-45c5-997a-bc86b374fa78.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f0944023-995f-4134-ac12-c9c67c42a72d {
  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-f0944023-995f-4134-ac12-c9c67c42a72d {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-67527879-bfae-43fc-899b-676fe1471506 {
  margin-left: 0%;
margin-right: 5%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-67527879-bfae-43fc-899b-676fe1471506 {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-67527879-bfae-43fc-899b-676fe1471506 {
  margin-top: -20px;
margin-left: 5%;
padding-top: 32px;
padding-bottom: 32px;
}
}







#s-67527879-bfae-43fc-899b-676fe1471506 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-67527879-bfae-43fc-899b-676fe1471506.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 1200px){#s-63977872-341e-41c0-a1c6-c64ef4a9c980 {
  display: none;
}
#s-63977872-341e-41c0-a1c6-c64ef4a9c980, #wrap-s-63977872-341e-41c0-a1c6-c64ef4a9c980 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-63977872-341e-41c0-a1c6-c64ef4a9c980 {
  display: none;
}
#s-63977872-341e-41c0-a1c6-c64ef4a9c980, #wrap-s-63977872-341e-41c0-a1c6-c64ef4a9c980 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-63977872-341e-41c0-a1c6-c64ef4a9c980 {
  display: none;
}
#s-63977872-341e-41c0-a1c6-c64ef4a9c980, #wrap-s-63977872-341e-41c0-a1c6-c64ef4a9c980 { display: none !important; }}
@media (min-width: 0px) {
[id="s-63977872-341e-41c0-a1c6-c64ef4a9c980"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-63977872-341e-41c0-a1c6-c64ef4a9c980"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-63977872-341e-41c0-a1c6-c64ef4a9c980"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-63977872-341e-41c0-a1c6-c64ef4a9c980"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-63977872-341e-41c0-a1c6-c64ef4a9c980"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-63977872-341e-41c0-a1c6-c64ef4a9c980"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-63977872-341e-41c0-a1c6-c64ef4a9c980"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-4357a9ea-23b4-457b-adeb-c2857f76fb30 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-4357a9ea-23b4-457b-adeb-c2857f76fb30 .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-276b1257-9379-4383-be9f-e8f247e24874 {
  margin-left: -70%;
padding-top: 5px;
padding-bottom: 0px;
text-align: left;
}

#s-276b1257-9379-4383-be9f-e8f247e24874 .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-7cfa8c32-6957-4a5d-aaa7-464b8d7b66ce {
  display: none;
}
#s-7cfa8c32-6957-4a5d-aaa7-464b8d7b66ce, #wrap-s-7cfa8c32-6957-4a5d-aaa7-464b8d7b66ce { display: none !important; }}
@media (min-width: 0px) {
[id="s-7cfa8c32-6957-4a5d-aaa7-464b8d7b66ce"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7cfa8c32-6957-4a5d-aaa7-464b8d7b66ce"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-7cfa8c32-6957-4a5d-aaa7-464b8d7b66ce"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-7cfa8c32-6957-4a5d-aaa7-464b8d7b66ce"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-7cfa8c32-6957-4a5d-aaa7-464b8d7b66ce"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-7cfa8c32-6957-4a5d-aaa7-464b8d7b66ce"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-7cfa8c32-6957-4a5d-aaa7-464b8d7b66ce"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-1ebb8ec7-2580-4766-a329-2209e7e1254a {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (max-width: 767px){#s-1ebb8ec7-2580-4766-a329-2209e7e1254a {
  display: none;
}
#s-1ebb8ec7-2580-4766-a329-2209e7e1254a, #wrap-s-1ebb8ec7-2580-4766-a329-2209e7e1254a { display: none !important; }}
#s-1ebb8ec7-2580-4766-a329-2209e7e1254a .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-20b11bf5-c9be-4b6e-b338-683977513b3e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-20b11bf5-c9be-4b6e-b338-683977513b3e {
  display: none;
}
#s-20b11bf5-c9be-4b6e-b338-683977513b3e, #wrap-s-20b11bf5-c9be-4b6e-b338-683977513b3e { display: none !important; }}
#s-20b11bf5-c9be-4b6e-b338-683977513b3e .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 34px;
  
  
  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-91628ffb-e2ea-47bf-a469-50361fadef1a {
  margin-top: 15px;
}

#s-99d7487d-daf2-4473-a401-479bea33d242 {
  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-99d7487d-daf2-4473-a401-479bea33d242 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-99d7487d-daf2-4473-a401-479bea33d242.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-439623c4-020b-441c-93d0-aa7bee9538c4 {
  max-width: 130px;
text-align: left;
}



.shg-image-margin-container-s-439623c4-020b-441c-93d0-aa7bee9538c4 {
  
  
  
  
}

#s-439623c4-020b-441c-93d0-aa7bee9538c4 {
  margin: 0 !important;
}





  img.s-439623c4-020b-441c-93d0-aa7bee9538c4.shogun-image {
    
    
  }


.s-439623c4-020b-441c-93d0-aa7bee9538c4 .shogun-image-content {
  
    align-items: center;
  
}

.s-439623c4-020b-441c-93d0-aa7bee9538c4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-439623c4-020b-441c-93d0-aa7bee9538c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-439623c4-020b-441c-93d0-aa7bee9538c4.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-439623c4-020b-441c-93d0-aa7bee9538c4 {
  
  
  
  
}

#s-439623c4-020b-441c-93d0-aa7bee9538c4 {
  margin: 0 !important;
}





  img.s-439623c4-020b-441c-93d0-aa7bee9538c4.shogun-image {
    
    
  }


.s-439623c4-020b-441c-93d0-aa7bee9538c4 .shogun-image-content {
  
    align-items: center;
  
}

.s-439623c4-020b-441c-93d0-aa7bee9538c4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-439623c4-020b-441c-93d0-aa7bee9538c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-439623c4-020b-441c-93d0-aa7bee9538c4.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-439623c4-020b-441c-93d0-aa7bee9538c4 {
  
  
  
  
}

#s-439623c4-020b-441c-93d0-aa7bee9538c4 {
  margin: 0 !important;
}





  img.s-439623c4-020b-441c-93d0-aa7bee9538c4.shogun-image {
    
    
  }


.s-439623c4-020b-441c-93d0-aa7bee9538c4 .shogun-image-content {
  
    align-items: center;
  
}

.s-439623c4-020b-441c-93d0-aa7bee9538c4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-439623c4-020b-441c-93d0-aa7bee9538c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-439623c4-020b-441c-93d0-aa7bee9538c4.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-439623c4-020b-441c-93d0-aa7bee9538c4 {
  
  
  
  
}

#s-439623c4-020b-441c-93d0-aa7bee9538c4 {
  margin: 0 !important;
}





  img.s-439623c4-020b-441c-93d0-aa7bee9538c4.shogun-image {
    
    
  }


.s-439623c4-020b-441c-93d0-aa7bee9538c4 .shogun-image-content {
  
    align-items: center;
  
}

.s-439623c4-020b-441c-93d0-aa7bee9538c4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-439623c4-020b-441c-93d0-aa7bee9538c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-439623c4-020b-441c-93d0-aa7bee9538c4.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-439623c4-020b-441c-93d0-aa7bee9538c4 {
  
  
  
  
}

#s-439623c4-020b-441c-93d0-aa7bee9538c4 {
  margin: 0 !important;
}





  img.s-439623c4-020b-441c-93d0-aa7bee9538c4.shogun-image {
    
    
  }


.s-439623c4-020b-441c-93d0-aa7bee9538c4 .shogun-image-content {
  
    align-items: center;
  
}

.s-439623c4-020b-441c-93d0-aa7bee9538c4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-439623c4-020b-441c-93d0-aa7bee9538c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-439623c4-020b-441c-93d0-aa7bee9538c4.shogun-image {
  box-sizing: border-box;
}




}
#s-e81973b9-809d-4898-af77-e6f4dd028835 {
  margin-top: 5px;
}

#s-4aa311a2-18e7-425d-b849-cf9226809633 {
  margin-top: -20px;
margin-bottom: -40px;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}

#s-4aa311a2-18e7-425d-b849-cf9226809633 .shogun-heading-component h1 {
  color: rgba(31, 102, 81, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 60px;
  
  
  
}



#s-c77e5ae0-7b15-4ebd-a1c7-464cb067956b {
  margin-top: 15px;
}
@media (min-width: 1200px){#s-c77e5ae0-7b15-4ebd-a1c7-464cb067956b {
  display: none;
}
#s-c77e5ae0-7b15-4ebd-a1c7-464cb067956b, #wrap-s-c77e5ae0-7b15-4ebd-a1c7-464cb067956b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c77e5ae0-7b15-4ebd-a1c7-464cb067956b {
  display: none;
}
#s-c77e5ae0-7b15-4ebd-a1c7-464cb067956b, #wrap-s-c77e5ae0-7b15-4ebd-a1c7-464cb067956b { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c77e5ae0-7b15-4ebd-a1c7-464cb067956b {
  display: none;
}
#s-c77e5ae0-7b15-4ebd-a1c7-464cb067956b, #wrap-s-c77e5ae0-7b15-4ebd-a1c7-464cb067956b { display: none !important; }}
#s-894e3c8d-b5cb-49a6-8f68-437a1f675506 {
  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);
}
@media (min-width: 1200px){#s-894e3c8d-b5cb-49a6-8f68-437a1f675506 {
  display: none;
}
#s-894e3c8d-b5cb-49a6-8f68-437a1f675506, #wrap-s-894e3c8d-b5cb-49a6-8f68-437a1f675506 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-894e3c8d-b5cb-49a6-8f68-437a1f675506 {
  display: none;
}
#s-894e3c8d-b5cb-49a6-8f68-437a1f675506, #wrap-s-894e3c8d-b5cb-49a6-8f68-437a1f675506 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-894e3c8d-b5cb-49a6-8f68-437a1f675506 {
  display: none;
}
#s-894e3c8d-b5cb-49a6-8f68-437a1f675506, #wrap-s-894e3c8d-b5cb-49a6-8f68-437a1f675506 { display: none !important; }}







#s-894e3c8d-b5cb-49a6-8f68-437a1f675506 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-894e3c8d-b5cb-49a6-8f68-437a1f675506.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7c0a424c-7930-4eca-adaf-2bfdb99153a4 {
  max-width: 130px;
text-align: left;
}



.shg-image-margin-container-s-7c0a424c-7930-4eca-adaf-2bfdb99153a4 {
  
  
  
  
}

#s-7c0a424c-7930-4eca-adaf-2bfdb99153a4 {
  margin: 0 !important;
}





  img.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shogun-image {
    
    
  }


.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4 .shogun-image-content {
  
    align-items: center;
  
}

.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-7c0a424c-7930-4eca-adaf-2bfdb99153a4 {
  
  
  
  
}

#s-7c0a424c-7930-4eca-adaf-2bfdb99153a4 {
  margin: 0 !important;
}





  img.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shogun-image {
    
    
  }


.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4 .shogun-image-content {
  
    align-items: center;
  
}

.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-7c0a424c-7930-4eca-adaf-2bfdb99153a4 {
  
  
  
  
}

#s-7c0a424c-7930-4eca-adaf-2bfdb99153a4 {
  margin: 0 !important;
}





  img.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shogun-image {
    
    
  }


.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4 .shogun-image-content {
  
    align-items: center;
  
}

.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-7c0a424c-7930-4eca-adaf-2bfdb99153a4 {
  
  
  
  
}

#s-7c0a424c-7930-4eca-adaf-2bfdb99153a4 {
  margin: 0 !important;
}





  img.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shogun-image {
    
    
  }


.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4 .shogun-image-content {
  
    align-items: center;
  
}

.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-7c0a424c-7930-4eca-adaf-2bfdb99153a4 {
  
  
  
  
}

#s-7c0a424c-7930-4eca-adaf-2bfdb99153a4 {
  margin: 0 !important;
}





  img.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shogun-image {
    
    
  }


.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4 .shogun-image-content {
  
    align-items: center;
  
}

.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shogun-image {
  box-sizing: border-box;
}




}
#s-d2e78a71-d797-46b1-b90f-7f7e3d543218 {
  margin-top: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-d2e78a71-d797-46b1-b90f-7f7e3d543218 .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-c69d9ed6-ebe4-4241-b0a2-566edfed3077 {
  margin-top: -20px;
margin-bottom: -40px;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}

#s-c69d9ed6-ebe4-4241-b0a2-566edfed3077 .shogun-heading-component h1 {
  color: rgba(31, 102, 81, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 60px;
  
  
  
}



#s-a0323ff5-3ec3-49a8-b03a-2e25ad8e3786 {
  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-a0323ff5-3ec3-49a8-b03a-2e25ad8e3786 {
  padding-top: 0px;
padding-bottom: 0px;
}
}







#s-a0323ff5-3ec3-49a8-b03a-2e25ad8e3786 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a0323ff5-3ec3-49a8-b03a-2e25ad8e3786.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-373c8877-cc09-4902-a587-67e7816e3f21 {
  margin-left: auto;
margin-right: auto;
max-width: 1400px;
}

@media (min-width: 0px) {
[id="s-373c8877-cc09-4902-a587-67e7816e3f21"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-373c8877-cc09-4902-a587-67e7816e3f21"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-373c8877-cc09-4902-a587-67e7816e3f21"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-373c8877-cc09-4902-a587-67e7816e3f21"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-373c8877-cc09-4902-a587-67e7816e3f21"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-57c6750b-8016-4e1c-9ef8-a578c79368aa {
  margin-left: 0%;
margin-right: 5%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-57c6750b-8016-4e1c-9ef8-a578c79368aa {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-57c6750b-8016-4e1c-9ef8-a578c79368aa {
  margin-top: -20px;
margin-left: 5%;
padding-top: 32px;
padding-bottom: 32px;
}
}







#s-57c6750b-8016-4e1c-9ef8-a578c79368aa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-57c6750b-8016-4e1c-9ef8-a578c79368aa.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 1200px){#s-92d02735-7d9b-4875-b48e-c198d6da3da2 {
  display: none;
}
#s-92d02735-7d9b-4875-b48e-c198d6da3da2, #wrap-s-92d02735-7d9b-4875-b48e-c198d6da3da2 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-92d02735-7d9b-4875-b48e-c198d6da3da2 {
  display: none;
}
#s-92d02735-7d9b-4875-b48e-c198d6da3da2, #wrap-s-92d02735-7d9b-4875-b48e-c198d6da3da2 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-92d02735-7d9b-4875-b48e-c198d6da3da2 {
  display: none;
}
#s-92d02735-7d9b-4875-b48e-c198d6da3da2, #wrap-s-92d02735-7d9b-4875-b48e-c198d6da3da2 { display: none !important; }}
@media (min-width: 0px) {
[id="s-92d02735-7d9b-4875-b48e-c198d6da3da2"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-92d02735-7d9b-4875-b48e-c198d6da3da2"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-92d02735-7d9b-4875-b48e-c198d6da3da2"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-92d02735-7d9b-4875-b48e-c198d6da3da2"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-92d02735-7d9b-4875-b48e-c198d6da3da2"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-92d02735-7d9b-4875-b48e-c198d6da3da2"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-92d02735-7d9b-4875-b48e-c198d6da3da2"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-0ab05a38-cefd-44d6-86cf-782f2fd1246b {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-0ab05a38-cefd-44d6-86cf-782f2fd1246b .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-a38cdd49-61cd-4e47-9cc2-4fd29c68cd8c {
  margin-left: -70%;
padding-top: 5px;
padding-bottom: 0px;
text-align: left;
}

#s-a38cdd49-61cd-4e47-9cc2-4fd29c68cd8c .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-9ea06fa3-2e53-44f2-9e6f-c4a52abb43f2 {
  display: none;
}
#s-9ea06fa3-2e53-44f2-9e6f-c4a52abb43f2, #wrap-s-9ea06fa3-2e53-44f2-9e6f-c4a52abb43f2 { display: none !important; }}
@media (min-width: 0px) {
[id="s-9ea06fa3-2e53-44f2-9e6f-c4a52abb43f2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9ea06fa3-2e53-44f2-9e6f-c4a52abb43f2"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-9ea06fa3-2e53-44f2-9e6f-c4a52abb43f2"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-9ea06fa3-2e53-44f2-9e6f-c4a52abb43f2"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-9ea06fa3-2e53-44f2-9e6f-c4a52abb43f2"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-9ea06fa3-2e53-44f2-9e6f-c4a52abb43f2"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-9ea06fa3-2e53-44f2-9e6f-c4a52abb43f2"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-88b1b2b2-cb0c-4660-abf1-283924123b91 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (max-width: 767px){#s-88b1b2b2-cb0c-4660-abf1-283924123b91 {
  display: none;
}
#s-88b1b2b2-cb0c-4660-abf1-283924123b91, #wrap-s-88b1b2b2-cb0c-4660-abf1-283924123b91 { display: none !important; }}
#s-88b1b2b2-cb0c-4660-abf1-283924123b91 .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-93ab1806-8d13-463d-bd09-192aa931d344 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-93ab1806-8d13-463d-bd09-192aa931d344 {
  display: none;
}
#s-93ab1806-8d13-463d-bd09-192aa931d344, #wrap-s-93ab1806-8d13-463d-bd09-192aa931d344 { display: none !important; }}
#s-93ab1806-8d13-463d-bd09-192aa931d344 .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-93ab1806-8d13-463d-bd09-192aa931d344 .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-93ab1806-8d13-463d-bd09-192aa931d344 .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-2dc3c150-0cbe-429c-b043-6abd1f8b2ffd {
  margin-top: 15px;
}

#s-117ec948-01ae-4c30-a4c2-ab0cb97cd135 {
  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-117ec948-01ae-4c30-a4c2-ab0cb97cd135 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-117ec948-01ae-4c30-a4c2-ab0cb97cd135.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0787ca67-1232-4a6b-8a49-a52ab2e108f7 {
  max-width: 130px;
text-align: left;
}



.shg-image-margin-container-s-0787ca67-1232-4a6b-8a49-a52ab2e108f7 {
  
  
  
  
}

#s-0787ca67-1232-4a6b-8a49-a52ab2e108f7 {
  margin: 0 !important;
}





  img.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shogun-image {
    
    
  }


.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7 .shogun-image-content {
  
    align-items: center;
  
}

.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-0787ca67-1232-4a6b-8a49-a52ab2e108f7 {
  
  
  
  
}

#s-0787ca67-1232-4a6b-8a49-a52ab2e108f7 {
  margin: 0 !important;
}





  img.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shogun-image {
    
    
  }


.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7 .shogun-image-content {
  
    align-items: center;
  
}

.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-0787ca67-1232-4a6b-8a49-a52ab2e108f7 {
  
  
  
  
}

#s-0787ca67-1232-4a6b-8a49-a52ab2e108f7 {
  margin: 0 !important;
}





  img.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shogun-image {
    
    
  }


.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7 .shogun-image-content {
  
    align-items: center;
  
}

.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-0787ca67-1232-4a6b-8a49-a52ab2e108f7 {
  
  
  
  
}

#s-0787ca67-1232-4a6b-8a49-a52ab2e108f7 {
  margin: 0 !important;
}





  img.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shogun-image {
    
    
  }


.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7 .shogun-image-content {
  
    align-items: center;
  
}

.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-0787ca67-1232-4a6b-8a49-a52ab2e108f7 {
  
  
  
  
}

#s-0787ca67-1232-4a6b-8a49-a52ab2e108f7 {
  margin: 0 !important;
}





  img.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shogun-image {
    
    
  }


.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7 .shogun-image-content {
  
    align-items: center;
  
}

.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shogun-image {
  box-sizing: border-box;
}




}
#s-ffd11042-3e00-4580-a3c9-d7744b984401 {
  margin-top: 5px;
}

#s-9dd0e45b-f29d-4b27-ad7c-a2f5b5cfa819 {
  margin-top: -20px;
margin-bottom: -40px;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}

#s-9dd0e45b-f29d-4b27-ad7c-a2f5b5cfa819 .shogun-heading-component h1 {
  color: rgba(31, 102, 81, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 60px;
  
  
  
}



#s-8649da10-3e59-4819-9710-07900bdb8bfc {
  margin-top: 15px;
}
@media (min-width: 1200px){#s-8649da10-3e59-4819-9710-07900bdb8bfc {
  display: none;
}
#s-8649da10-3e59-4819-9710-07900bdb8bfc, #wrap-s-8649da10-3e59-4819-9710-07900bdb8bfc { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8649da10-3e59-4819-9710-07900bdb8bfc {
  display: none;
}
#s-8649da10-3e59-4819-9710-07900bdb8bfc, #wrap-s-8649da10-3e59-4819-9710-07900bdb8bfc { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-8649da10-3e59-4819-9710-07900bdb8bfc {
  display: none;
}
#s-8649da10-3e59-4819-9710-07900bdb8bfc, #wrap-s-8649da10-3e59-4819-9710-07900bdb8bfc { display: none !important; }}
#s-79d50543-9cde-43de-b4f0-9858d5dfbf7f {
  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);
}
@media (min-width: 1200px){#s-79d50543-9cde-43de-b4f0-9858d5dfbf7f {
  display: none;
}
#s-79d50543-9cde-43de-b4f0-9858d5dfbf7f, #wrap-s-79d50543-9cde-43de-b4f0-9858d5dfbf7f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-79d50543-9cde-43de-b4f0-9858d5dfbf7f {
  display: none;
}
#s-79d50543-9cde-43de-b4f0-9858d5dfbf7f, #wrap-s-79d50543-9cde-43de-b4f0-9858d5dfbf7f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-79d50543-9cde-43de-b4f0-9858d5dfbf7f {
  display: none;
}
#s-79d50543-9cde-43de-b4f0-9858d5dfbf7f, #wrap-s-79d50543-9cde-43de-b4f0-9858d5dfbf7f { display: none !important; }}







#s-79d50543-9cde-43de-b4f0-9858d5dfbf7f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-79d50543-9cde-43de-b4f0-9858d5dfbf7f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035 {
  max-width: 130px;
text-align: left;
}



.shg-image-margin-container-s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035 {
  
  
  
  
}

#s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035 {
  margin: 0 !important;
}





  img.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shogun-image {
    
    
  }


.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035 .shogun-image-content {
  
    align-items: center;
  
}

.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035 {
  
  
  
  
}

#s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035 {
  margin: 0 !important;
}





  img.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shogun-image {
    
    
  }


.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035 .shogun-image-content {
  
    align-items: center;
  
}

.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035 {
  
  
  
  
}

#s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035 {
  margin: 0 !important;
}





  img.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shogun-image {
    
    
  }


.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035 .shogun-image-content {
  
    align-items: center;
  
}

.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035 {
  
  
  
  
}

#s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035 {
  margin: 0 !important;
}





  img.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shogun-image {
    
    
  }


.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035 .shogun-image-content {
  
    align-items: center;
  
}

.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035 {
  
  
  
  
}

#s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035 {
  margin: 0 !important;
}





  img.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shogun-image {
    
    
  }


.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035 .shogun-image-content {
  
    align-items: center;
  
}

.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shogun-image {
  box-sizing: border-box;
}




}
#s-fe80f3ed-f134-4ed8-896c-c83a10120f15 {
  margin-top: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-fe80f3ed-f134-4ed8-896c-c83a10120f15 .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-afe2ca6d-4ac9-4e0c-aa75-2bd7fa805851 {
  margin-top: -20px;
margin-bottom: -40px;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}

#s-afe2ca6d-4ac9-4e0c-aa75-2bd7fa805851 .shogun-heading-component h1 {
  color: rgba(31, 102, 81, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 60px;
  
  
  
}



#s-fab4ca91-e5f9-47d4-bea0-24ca3a6aae4d {
  min-height: 50px;
}








#s-fab4ca91-e5f9-47d4-bea0-24ca3a6aae4d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fab4ca91-e5f9-47d4-bea0-24ca3a6aae4d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0c81556f-7d2d-43e0-a719-c055ca261b18 {
  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-0c81556f-7d2d-43e0-a719-c055ca261b18 {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-7456be86-2a3d-4521-9e9c-fe3ea49eb215 {
  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-7456be86-2a3d-4521-9e9c-fe3ea49eb215 {
  padding-top: 0px;
padding-bottom: 0px;
}
}







#s-7456be86-2a3d-4521-9e9c-fe3ea49eb215 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7456be86-2a3d-4521-9e9c-fe3ea49eb215.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4e08e58d-bc17-4296-840d-c974caa3427b {
  margin-left: auto;
margin-right: auto;
max-width: 1400px;
}

@media (min-width: 0px) {
[id="s-4e08e58d-bc17-4296-840d-c974caa3427b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4e08e58d-bc17-4296-840d-c974caa3427b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-4e08e58d-bc17-4296-840d-c974caa3427b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-4e08e58d-bc17-4296-840d-c974caa3427b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-803841ef-56e7-4022-94ee-09336321fe83 {
  min-height: 50px;
}








#s-803841ef-56e7-4022-94ee-09336321fe83 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-803841ef-56e7-4022-94ee-09336321fe83.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f5d930c6-c7e6-4422-adcd-d4a07e90ae2c {
  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-f5d930c6-c7e6-4422-adcd-d4a07e90ae2c {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-2cc4b7d6-7ccb-413b-bb8f-e7a19c7ed045 {
  margin-left: 0%;
margin-right: 5%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-2cc4b7d6-7ccb-413b-bb8f-e7a19c7ed045 {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-2cc4b7d6-7ccb-413b-bb8f-e7a19c7ed045 {
  margin-top: -20px;
margin-left: 5%;
padding-top: 32px;
padding-bottom: 32px;
}
}







#s-2cc4b7d6-7ccb-413b-bb8f-e7a19c7ed045 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2cc4b7d6-7ccb-413b-bb8f-e7a19c7ed045.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 1200px){#s-b34a0620-e317-4561-8dce-1206cbca9e06 {
  display: none;
}
#s-b34a0620-e317-4561-8dce-1206cbca9e06, #wrap-s-b34a0620-e317-4561-8dce-1206cbca9e06 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b34a0620-e317-4561-8dce-1206cbca9e06 {
  display: none;
}
#s-b34a0620-e317-4561-8dce-1206cbca9e06, #wrap-s-b34a0620-e317-4561-8dce-1206cbca9e06 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b34a0620-e317-4561-8dce-1206cbca9e06 {
  display: none;
}
#s-b34a0620-e317-4561-8dce-1206cbca9e06, #wrap-s-b34a0620-e317-4561-8dce-1206cbca9e06 { display: none !important; }}
@media (min-width: 0px) {
[id="s-b34a0620-e317-4561-8dce-1206cbca9e06"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-b34a0620-e317-4561-8dce-1206cbca9e06"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-b34a0620-e317-4561-8dce-1206cbca9e06"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-b34a0620-e317-4561-8dce-1206cbca9e06"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-b34a0620-e317-4561-8dce-1206cbca9e06"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-b34a0620-e317-4561-8dce-1206cbca9e06"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-b34a0620-e317-4561-8dce-1206cbca9e06"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-662f7388-24fa-42fe-809e-3b436755fde6 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-662f7388-24fa-42fe-809e-3b436755fde6 .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-3352b398-d0c4-4075-a4ed-b7063b930e8b {
  margin-left: -70%;
padding-top: 5px;
padding-bottom: 0px;
text-align: left;
}

#s-3352b398-d0c4-4075-a4ed-b7063b930e8b .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-fc24e5d6-2b98-4baf-a925-629e102e807e {
  display: none;
}
#s-fc24e5d6-2b98-4baf-a925-629e102e807e, #wrap-s-fc24e5d6-2b98-4baf-a925-629e102e807e { display: none !important; }}
@media (min-width: 0px) {
[id="s-fc24e5d6-2b98-4baf-a925-629e102e807e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fc24e5d6-2b98-4baf-a925-629e102e807e"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fc24e5d6-2b98-4baf-a925-629e102e807e"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-fc24e5d6-2b98-4baf-a925-629e102e807e"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fc24e5d6-2b98-4baf-a925-629e102e807e"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-fc24e5d6-2b98-4baf-a925-629e102e807e"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fc24e5d6-2b98-4baf-a925-629e102e807e"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-91defb63-bf05-4f6f-b9d3-550de51dfa69 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (max-width: 767px){#s-91defb63-bf05-4f6f-b9d3-550de51dfa69 {
  display: none;
}
#s-91defb63-bf05-4f6f-b9d3-550de51dfa69, #wrap-s-91defb63-bf05-4f6f-b9d3-550de51dfa69 { display: none !important; }}
#s-91defb63-bf05-4f6f-b9d3-550de51dfa69 .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-7d1468c9-c4f7-47db-b974-c74831e274ce {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-7d1468c9-c4f7-47db-b974-c74831e274ce {
  display: none;
}
#s-7d1468c9-c4f7-47db-b974-c74831e274ce, #wrap-s-7d1468c9-c4f7-47db-b974-c74831e274ce { display: none !important; }}
#s-7d1468c9-c4f7-47db-b974-c74831e274ce .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-7d1468c9-c4f7-47db-b974-c74831e274ce .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-7d1468c9-c4f7-47db-b974-c74831e274ce .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-02eaf9fe-c989-49a5-b66d-a461f5a975ed {
  margin-top: 15px;
}

#s-37aff8cd-2168-439e-9e01-98d49a4ba44b {
  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-37aff8cd-2168-439e-9e01-98d49a4ba44b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-37aff8cd-2168-439e-9e01-98d49a4ba44b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e7ee64ee-2238-4a7e-a96f-581f63647a0b {
  max-width: 130px;
text-align: left;
}



.shg-image-margin-container-s-e7ee64ee-2238-4a7e-a96f-581f63647a0b {
  
  
  
  
}

#s-e7ee64ee-2238-4a7e-a96f-581f63647a0b {
  margin: 0 !important;
}





  img.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shogun-image {
    
    
  }


.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b .shogun-image-content {
  
    align-items: center;
  
}

.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-e7ee64ee-2238-4a7e-a96f-581f63647a0b {
  
  
  
  
}

#s-e7ee64ee-2238-4a7e-a96f-581f63647a0b {
  margin: 0 !important;
}





  img.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shogun-image {
    
    
  }


.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b .shogun-image-content {
  
    align-items: center;
  
}

.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-e7ee64ee-2238-4a7e-a96f-581f63647a0b {
  
  
  
  
}

#s-e7ee64ee-2238-4a7e-a96f-581f63647a0b {
  margin: 0 !important;
}





  img.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shogun-image {
    
    
  }


.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b .shogun-image-content {
  
    align-items: center;
  
}

.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-e7ee64ee-2238-4a7e-a96f-581f63647a0b {
  
  
  
  
}

#s-e7ee64ee-2238-4a7e-a96f-581f63647a0b {
  margin: 0 !important;
}





  img.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shogun-image {
    
    
  }


.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b .shogun-image-content {
  
    align-items: center;
  
}

.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-e7ee64ee-2238-4a7e-a96f-581f63647a0b {
  
  
  
  
}

#s-e7ee64ee-2238-4a7e-a96f-581f63647a0b {
  margin: 0 !important;
}





  img.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shogun-image {
    
    
  }


.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b .shogun-image-content {
  
    align-items: center;
  
}

.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shogun-image {
  box-sizing: border-box;
}




}
#s-1787e186-ad34-4911-a6ec-16e2f41eb4fb {
  margin-top: 5px;
}

#s-3e0431ab-d056-4342-910f-5cbd8171d719 {
  margin-top: -20px;
margin-bottom: -40px;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}

#s-3e0431ab-d056-4342-910f-5cbd8171d719 .shogun-heading-component h1 {
  color: rgba(31, 102, 81, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 60px;
  
  
  
}



#s-d4fda23a-79ba-4956-bdbd-62a95942e736 {
  margin-top: 15px;
}
@media (min-width: 1200px){#s-d4fda23a-79ba-4956-bdbd-62a95942e736 {
  display: none;
}
#s-d4fda23a-79ba-4956-bdbd-62a95942e736, #wrap-s-d4fda23a-79ba-4956-bdbd-62a95942e736 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d4fda23a-79ba-4956-bdbd-62a95942e736 {
  display: none;
}
#s-d4fda23a-79ba-4956-bdbd-62a95942e736, #wrap-s-d4fda23a-79ba-4956-bdbd-62a95942e736 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d4fda23a-79ba-4956-bdbd-62a95942e736 {
  display: none;
}
#s-d4fda23a-79ba-4956-bdbd-62a95942e736, #wrap-s-d4fda23a-79ba-4956-bdbd-62a95942e736 { display: none !important; }}
#s-c8ae3422-5890-4ba2-98ce-55d1e881f999 {
  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);
}
@media (min-width: 1200px){#s-c8ae3422-5890-4ba2-98ce-55d1e881f999 {
  display: none;
}
#s-c8ae3422-5890-4ba2-98ce-55d1e881f999, #wrap-s-c8ae3422-5890-4ba2-98ce-55d1e881f999 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c8ae3422-5890-4ba2-98ce-55d1e881f999 {
  display: none;
}
#s-c8ae3422-5890-4ba2-98ce-55d1e881f999, #wrap-s-c8ae3422-5890-4ba2-98ce-55d1e881f999 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c8ae3422-5890-4ba2-98ce-55d1e881f999 {
  display: none;
}
#s-c8ae3422-5890-4ba2-98ce-55d1e881f999, #wrap-s-c8ae3422-5890-4ba2-98ce-55d1e881f999 { display: none !important; }}







#s-c8ae3422-5890-4ba2-98ce-55d1e881f999 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c8ae3422-5890-4ba2-98ce-55d1e881f999.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cd0d3722-1a23-4fc4-b484-ad06b40f6671 {
  max-width: 130px;
text-align: left;
}



.shg-image-margin-container-s-cd0d3722-1a23-4fc4-b484-ad06b40f6671 {
  
  
  
  
}

#s-cd0d3722-1a23-4fc4-b484-ad06b40f6671 {
  margin: 0 !important;
}





  img.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shogun-image {
    
    
  }


.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671 .shogun-image-content {
  
    align-items: center;
  
}

.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-cd0d3722-1a23-4fc4-b484-ad06b40f6671 {
  
  
  
  
}

#s-cd0d3722-1a23-4fc4-b484-ad06b40f6671 {
  margin: 0 !important;
}





  img.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shogun-image {
    
    
  }


.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671 .shogun-image-content {
  
    align-items: center;
  
}

.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-cd0d3722-1a23-4fc4-b484-ad06b40f6671 {
  
  
  
  
}

#s-cd0d3722-1a23-4fc4-b484-ad06b40f6671 {
  margin: 0 !important;
}





  img.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shogun-image {
    
    
  }


.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671 .shogun-image-content {
  
    align-items: center;
  
}

.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-cd0d3722-1a23-4fc4-b484-ad06b40f6671 {
  
  
  
  
}

#s-cd0d3722-1a23-4fc4-b484-ad06b40f6671 {
  margin: 0 !important;
}





  img.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shogun-image {
    
    
  }


.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671 .shogun-image-content {
  
    align-items: center;
  
}

.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-cd0d3722-1a23-4fc4-b484-ad06b40f6671 {
  
  
  
  
}

#s-cd0d3722-1a23-4fc4-b484-ad06b40f6671 {
  margin: 0 !important;
}





  img.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shogun-image {
    
    
  }


.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671 .shogun-image-content {
  
    align-items: center;
  
}

.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shogun-image {
  box-sizing: border-box;
}




}
#s-80746aa0-e25e-4ac2-93c8-2d3bd58497ee {
  margin-top: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-80746aa0-e25e-4ac2-93c8-2d3bd58497ee .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-9cf8d0b5-a98d-4f07-bdb1-05ad907c25f0 {
  margin-top: -20px;
margin-bottom: -40px;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}

#s-9cf8d0b5-a98d-4f07-bdb1-05ad907c25f0 .shogun-heading-component h1 {
  color: rgba(31, 102, 81, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 60px;
  
  
  
}



#s-8a113b07-e4d0-4482-aa0b-41de05462ead {
  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-8a113b07-e4d0-4482-aa0b-41de05462ead {
  padding-top: 0px;
padding-bottom: 0px;
}
}







#s-8a113b07-e4d0-4482-aa0b-41de05462ead > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8a113b07-e4d0-4482-aa0b-41de05462ead.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4015aed9-b236-4ff1-862b-a189be6b8d85 {
  margin-left: auto;
margin-right: auto;
max-width: 1400px;
}

@media (min-width: 0px) {
[id="s-4015aed9-b236-4ff1-862b-a189be6b8d85"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4015aed9-b236-4ff1-862b-a189be6b8d85"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-4015aed9-b236-4ff1-862b-a189be6b8d85"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-4015aed9-b236-4ff1-862b-a189be6b8d85"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-4015aed9-b236-4ff1-862b-a189be6b8d85"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-12e12d34-37f6-428e-ade6-bf417e3f8d88 {
  margin-left: 0%;
margin-right: 5%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-12e12d34-37f6-428e-ade6-bf417e3f8d88 {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-12e12d34-37f6-428e-ade6-bf417e3f8d88 {
  margin-top: -20px;
margin-left: 5%;
padding-top: 32px;
padding-bottom: 32px;
}
}







#s-12e12d34-37f6-428e-ade6-bf417e3f8d88 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-12e12d34-37f6-428e-ade6-bf417e3f8d88.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

}

@media (min-width: 768px) {
[id="s-0a4e25cb-e82d-489f-ac8a-6f1b8ca86ad7"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-0a4e25cb-e82d-489f-ac8a-6f1b8ca86ad7"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-0a4e25cb-e82d-489f-ac8a-6f1b8ca86ad7"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-0a4e25cb-e82d-489f-ac8a-6f1b8ca86ad7"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-0a4e25cb-e82d-489f-ac8a-6f1b8ca86ad7"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-0a4e25cb-e82d-489f-ac8a-6f1b8ca86ad7"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-f0f3a5d8-bb3d-4c8e-b7dd-428407ac6b1d {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-f0f3a5d8-bb3d-4c8e-b7dd-428407ac6b1d .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-c9f25cb1-8f22-40a4-842c-c1e30cd976a7 {
  margin-left: -70%;
padding-top: 5px;
padding-bottom: 0px;
text-align: left;
}

#s-c9f25cb1-8f22-40a4-842c-c1e30cd976a7 .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-f9d248da-9a4a-4ef7-a07a-855b181f08b7 {
  display: none;
}
#s-f9d248da-9a4a-4ef7-a07a-855b181f08b7, #wrap-s-f9d248da-9a4a-4ef7-a07a-855b181f08b7 { display: none !important; }}
@media (min-width: 0px) {
[id="s-f9d248da-9a4a-4ef7-a07a-855b181f08b7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f9d248da-9a4a-4ef7-a07a-855b181f08b7"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-f9d248da-9a4a-4ef7-a07a-855b181f08b7"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-f9d248da-9a4a-4ef7-a07a-855b181f08b7"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-f9d248da-9a4a-4ef7-a07a-855b181f08b7"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-f9d248da-9a4a-4ef7-a07a-855b181f08b7"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-f9d248da-9a4a-4ef7-a07a-855b181f08b7"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-204f1894-1ba7-4a30-92df-690d61f6f3da {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (max-width: 767px){#s-204f1894-1ba7-4a30-92df-690d61f6f3da {
  display: none;
}
#s-204f1894-1ba7-4a30-92df-690d61f6f3da, #wrap-s-204f1894-1ba7-4a30-92df-690d61f6f3da { display: none !important; }}
#s-204f1894-1ba7-4a30-92df-690d61f6f3da .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-357ed978-db5a-411e-a266-13b098f05ccd {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-357ed978-db5a-411e-a266-13b098f05ccd {
  display: none;
}
#s-357ed978-db5a-411e-a266-13b098f05ccd, #wrap-s-357ed978-db5a-411e-a266-13b098f05ccd { display: none !important; }}
#s-357ed978-db5a-411e-a266-13b098f05ccd .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-357ed978-db5a-411e-a266-13b098f05ccd .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-357ed978-db5a-411e-a266-13b098f05ccd .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-d784bc8c-2d88-426f-85fc-756fb4aac3d6 {
  margin-top: 15px;
}

#s-2205e0a1-ab15-4099-8cb4-e8769193b619 {
  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-2205e0a1-ab15-4099-8cb4-e8769193b619 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2205e0a1-ab15-4099-8cb4-e8769193b619.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-29ec10e2-7fab-4ad3-b647-a86493505bcb {
  max-width: 130px;
text-align: left;
}



.shg-image-margin-container-s-29ec10e2-7fab-4ad3-b647-a86493505bcb {
  
  
  
  
}

#s-29ec10e2-7fab-4ad3-b647-a86493505bcb {
  margin: 0 !important;
}





  img.s-29ec10e2-7fab-4ad3-b647-a86493505bcb.shogun-image {
    
    
  }


.s-29ec10e2-7fab-4ad3-b647-a86493505bcb .shogun-image-content {
  
    align-items: center;
  
}

.s-29ec10e2-7fab-4ad3-b647-a86493505bcb.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-29ec10e2-7fab-4ad3-b647-a86493505bcb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29ec10e2-7fab-4ad3-b647-a86493505bcb.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-29ec10e2-7fab-4ad3-b647-a86493505bcb {
  
  
  
  
}

#s-29ec10e2-7fab-4ad3-b647-a86493505bcb {
  margin: 0 !important;
}





  img.s-29ec10e2-7fab-4ad3-b647-a86493505bcb.shogun-image {
    
    
  }


.s-29ec10e2-7fab-4ad3-b647-a86493505bcb .shogun-image-content {
  
    align-items: center;
  
}

.s-29ec10e2-7fab-4ad3-b647-a86493505bcb.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-29ec10e2-7fab-4ad3-b647-a86493505bcb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29ec10e2-7fab-4ad3-b647-a86493505bcb.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-29ec10e2-7fab-4ad3-b647-a86493505bcb {
  
  
  
  
}

#s-29ec10e2-7fab-4ad3-b647-a86493505bcb {
  margin: 0 !important;
}





  img.s-29ec10e2-7fab-4ad3-b647-a86493505bcb.shogun-image {
    
    
  }


.s-29ec10e2-7fab-4ad3-b647-a86493505bcb .shogun-image-content {
  
    align-items: center;
  
}

.s-29ec10e2-7fab-4ad3-b647-a86493505bcb.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-29ec10e2-7fab-4ad3-b647-a86493505bcb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29ec10e2-7fab-4ad3-b647-a86493505bcb.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-29ec10e2-7fab-4ad3-b647-a86493505bcb {
  
  
  
  
}

#s-29ec10e2-7fab-4ad3-b647-a86493505bcb {
  margin: 0 !important;
}





  img.s-29ec10e2-7fab-4ad3-b647-a86493505bcb.shogun-image {
    
    
  }


.s-29ec10e2-7fab-4ad3-b647-a86493505bcb .shogun-image-content {
  
    align-items: center;
  
}

.s-29ec10e2-7fab-4ad3-b647-a86493505bcb.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-29ec10e2-7fab-4ad3-b647-a86493505bcb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29ec10e2-7fab-4ad3-b647-a86493505bcb.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-29ec10e2-7fab-4ad3-b647-a86493505bcb {
  
  
  
  
}

#s-29ec10e2-7fab-4ad3-b647-a86493505bcb {
  margin: 0 !important;
}





  img.s-29ec10e2-7fab-4ad3-b647-a86493505bcb.shogun-image {
    
    
  }


.s-29ec10e2-7fab-4ad3-b647-a86493505bcb .shogun-image-content {
  
    align-items: center;
  
}

.s-29ec10e2-7fab-4ad3-b647-a86493505bcb.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-29ec10e2-7fab-4ad3-b647-a86493505bcb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29ec10e2-7fab-4ad3-b647-a86493505bcb.shogun-image {
  box-sizing: border-box;
}




}
#s-d7bf30f5-c85d-4eb8-85bf-68d455c19f7d {
  margin-top: 5px;
}

#s-658af1b8-6cce-4a20-a46c-8c856ed0d72a {
  margin-top: -20px;
margin-bottom: -40px;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}

#s-658af1b8-6cce-4a20-a46c-8c856ed0d72a .shogun-heading-component h1 {
  color: rgba(31, 102, 81, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 60px;
  
  
  
}



#s-1833a284-d7b2-4bc7-bdd8-211e4a5c1cf9 {
  margin-top: 15px;
}
@media (min-width: 1200px){#s-1833a284-d7b2-4bc7-bdd8-211e4a5c1cf9 {
  display: none;
}
#s-1833a284-d7b2-4bc7-bdd8-211e4a5c1cf9, #wrap-s-1833a284-d7b2-4bc7-bdd8-211e4a5c1cf9 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1833a284-d7b2-4bc7-bdd8-211e4a5c1cf9 {
  display: none;
}
#s-1833a284-d7b2-4bc7-bdd8-211e4a5c1cf9, #wrap-s-1833a284-d7b2-4bc7-bdd8-211e4a5c1cf9 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1833a284-d7b2-4bc7-bdd8-211e4a5c1cf9 {
  display: none;
}
#s-1833a284-d7b2-4bc7-bdd8-211e4a5c1cf9, #wrap-s-1833a284-d7b2-4bc7-bdd8-211e4a5c1cf9 { display: none !important; }}
#s-3d52be88-24d5-487f-9c4b-77d84955c157 {
  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);
}
@media (min-width: 1200px){#s-3d52be88-24d5-487f-9c4b-77d84955c157 {
  display: none;
}
#s-3d52be88-24d5-487f-9c4b-77d84955c157, #wrap-s-3d52be88-24d5-487f-9c4b-77d84955c157 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3d52be88-24d5-487f-9c4b-77d84955c157 {
  display: none;
}
#s-3d52be88-24d5-487f-9c4b-77d84955c157, #wrap-s-3d52be88-24d5-487f-9c4b-77d84955c157 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3d52be88-24d5-487f-9c4b-77d84955c157 {
  display: none;
}
#s-3d52be88-24d5-487f-9c4b-77d84955c157, #wrap-s-3d52be88-24d5-487f-9c4b-77d84955c157 { display: none !important; }}







#s-3d52be88-24d5-487f-9c4b-77d84955c157 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3d52be88-24d5-487f-9c4b-77d84955c157.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b6abcc1e-950d-4a3e-9cb6-5d46acf35c8f {
  max-width: 130px;
text-align: left;
}



.shg-image-margin-container-s-b6abcc1e-950d-4a3e-9cb6-5d46acf35c8f {
  
  
  
  
}

#s-b6abcc1e-950d-4a3e-9cb6-5d46acf35c8f {
  margin: 0 !important;
}





  img.s-b6abcc1e-950d-4a3e-9cb6-5d46acf35c8f.shogun-image {
    
    
  }


.s-b6abcc1e-950d-4a3e-9cb6-5d46acf35c8f .shogun-image-content {
  
    align-items: center;
  
}

.s-b6abcc1e-950d-4a3e-9cb6-5d46acf35c8f.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-b6abcc1e-950d-4a3e-9cb6-5d46acf35c8f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b6abcc1e-950d-4a3e-9cb6-5d46acf35c8f.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-b6abcc1e-950d-4a3e-9cb6-5d46acf35c8f {
  
  
  
  
}

#s-b6abcc1e-950d-4a3e-9cb6-5d46acf35c8f {
  margin: 0 !important;
}





  img.s-b6abcc1e-950d-4a3e-9cb6-5d46acf35c8f.shogun-image {
    
    
  }


.s-b6abcc1e-950d-4a3e-9cb6-5d46acf35c8f .shogun-image-content {
  
    align-items: center;
  
}

.s-b6abcc1e-950d-4a3e-9cb6-5d46acf35c8f.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-b6abcc1e-950d-4a3e-9cb6-5d46acf35c8f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b6abcc1e-950d-4a3e-9cb6-5d46acf35c8f.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-b6abcc1e-950d-4a3e-9cb6-5d46acf35c8f {
  
  
  
  
}

#s-b6abcc1e-950d-4a3e-9cb6-5d46acf35c8f {
  margin: 0 !important;
}





  img.s-b6abcc1e-950d-4a3e-9cb6-5d46acf35c8f.shogun-image {
    
    
  }


.s-b6abcc1e-950d-4a3e-9cb6-5d46acf35c8f .shogun-image-content {
  
    align-items: center;
  
}

.s-b6abcc1e-950d-4a3e-9cb6-5d46acf35c8f.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-b6abcc1e-950d-4a3e-9cb6-5d46acf35c8f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b6abcc1e-950d-4a3e-9cb6-5d46acf35c8f.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-b6abcc1e-950d-4a3e-9cb6-5d46acf35c8f {
  
  
  
  
}

#s-b6abcc1e-950d-4a3e-9cb6-5d46acf35c8f {
  margin: 0 !important;
}





  img.s-b6abcc1e-950d-4a3e-9cb6-5d46acf35c8f.shogun-image {
    
    
  }


.s-b6abcc1e-950d-4a3e-9cb6-5d46acf35c8f .shogun-image-content {
  
    align-items: center;
  
}

.s-b6abcc1e-950d-4a3e-9cb6-5d46acf35c8f.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-b6abcc1e-950d-4a3e-9cb6-5d46acf35c8f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b6abcc1e-950d-4a3e-9cb6-5d46acf35c8f.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-b6abcc1e-950d-4a3e-9cb6-5d46acf35c8f {
  
  
  
  
}

#s-b6abcc1e-950d-4a3e-9cb6-5d46acf35c8f {
  margin: 0 !important;
}





  img.s-b6abcc1e-950d-4a3e-9cb6-5d46acf35c8f.shogun-image {
    
    
  }


.s-b6abcc1e-950d-4a3e-9cb6-5d46acf35c8f .shogun-image-content {
  
    align-items: center;
  
}

.s-b6abcc1e-950d-4a3e-9cb6-5d46acf35c8f.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-b6abcc1e-950d-4a3e-9cb6-5d46acf35c8f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b6abcc1e-950d-4a3e-9cb6-5d46acf35c8f.shogun-image {
  box-sizing: border-box;
}




}
#s-857a17e9-fd2a-494f-8deb-65421fad3d39 {
  margin-top: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-857a17e9-fd2a-494f-8deb-65421fad3d39 .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-ba326321-5e7d-4b80-8e70-a6299b37c4f0 {
  margin-top: -20px;
margin-bottom: -40px;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}

#s-ba326321-5e7d-4b80-8e70-a6299b37c4f0 .shogun-heading-component h1 {
  color: rgba(31, 102, 81, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 60px;
  
  
  
}



#s-414bf7d8-5af6-4184-8223-02d63334711b {
  min-height: 50px;
}








#s-414bf7d8-5af6-4184-8223-02d63334711b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-414bf7d8-5af6-4184-8223-02d63334711b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2f53be86-5ffd-482d-81f5-2552735620f1 {
  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-2f53be86-5ffd-482d-81f5-2552735620f1 {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-d791d67e-18f0-48af-bbe1-617ff8a2e4ca {
  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-d791d67e-18f0-48af-bbe1-617ff8a2e4ca {
  padding-top: 0px;
padding-bottom: 0px;
}
}







#s-d791d67e-18f0-48af-bbe1-617ff8a2e4ca > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d791d67e-18f0-48af-bbe1-617ff8a2e4ca.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fed00bc4-14bb-4b00-bf7d-d31fd76b8fa8 {
  margin-left: auto;
margin-right: auto;
max-width: 1400px;
}

@media (min-width: 0px) {
[id="s-fed00bc4-14bb-4b00-bf7d-d31fd76b8fa8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fed00bc4-14bb-4b00-bf7d-d31fd76b8fa8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-fed00bc4-14bb-4b00-bf7d-d31fd76b8fa8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-fed00bc4-14bb-4b00-bf7d-d31fd76b8fa8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-7641a4c1-3d77-4185-9cf6-83804da6fd3f {
  min-height: 50px;
}








#s-7641a4c1-3d77-4185-9cf6-83804da6fd3f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7641a4c1-3d77-4185-9cf6-83804da6fd3f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e34f5346-2ac2-47bb-9d8a-bc76c4b574f8 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
max-width: 550px;
}
@media (max-width: 767px){#s-e34f5346-2ac2-47bb-9d8a-bc76c4b574f8 {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-c6b604db-5146-46a7-859f-42cc9e5e48ca {
  margin-left: 0%;
margin-right: 5%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-c6b604db-5146-46a7-859f-42cc9e5e48ca {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-c6b604db-5146-46a7-859f-42cc9e5e48ca {
  margin-top: -20px;
margin-left: 5%;
padding-top: 32px;
padding-bottom: 32px;
}
}







#s-c6b604db-5146-46a7-859f-42cc9e5e48ca > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c6b604db-5146-46a7-859f-42cc9e5e48ca.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 1200px){#s-3942a158-4bc8-4291-9f9e-8749c780752f {
  display: none;
}
#s-3942a158-4bc8-4291-9f9e-8749c780752f, #wrap-s-3942a158-4bc8-4291-9f9e-8749c780752f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3942a158-4bc8-4291-9f9e-8749c780752f {
  display: none;
}
#s-3942a158-4bc8-4291-9f9e-8749c780752f, #wrap-s-3942a158-4bc8-4291-9f9e-8749c780752f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3942a158-4bc8-4291-9f9e-8749c780752f {
  display: none;
}
#s-3942a158-4bc8-4291-9f9e-8749c780752f, #wrap-s-3942a158-4bc8-4291-9f9e-8749c780752f { display: none !important; }}
@media (min-width: 0px) {
[id="s-3942a158-4bc8-4291-9f9e-8749c780752f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-3942a158-4bc8-4291-9f9e-8749c780752f"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3942a158-4bc8-4291-9f9e-8749c780752f"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-3942a158-4bc8-4291-9f9e-8749c780752f"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3942a158-4bc8-4291-9f9e-8749c780752f"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-3942a158-4bc8-4291-9f9e-8749c780752f"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3942a158-4bc8-4291-9f9e-8749c780752f"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-314145f1-a2ca-4373-a927-3c03c4a7dcfc {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-314145f1-a2ca-4373-a927-3c03c4a7dcfc .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-119cb2a1-4ede-42f5-8173-90ddaf4bac2a {
  margin-left: -70%;
padding-top: 5px;
padding-bottom: 0px;
text-align: left;
}

#s-119cb2a1-4ede-42f5-8173-90ddaf4bac2a .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-a0a11b83-4a51-49df-be8e-4ae4632224b6 {
  display: none;
}
#s-a0a11b83-4a51-49df-be8e-4ae4632224b6, #wrap-s-a0a11b83-4a51-49df-be8e-4ae4632224b6 { display: none !important; }}
@media (min-width: 0px) {
[id="s-a0a11b83-4a51-49df-be8e-4ae4632224b6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a0a11b83-4a51-49df-be8e-4ae4632224b6"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-a0a11b83-4a51-49df-be8e-4ae4632224b6"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-a0a11b83-4a51-49df-be8e-4ae4632224b6"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-a0a11b83-4a51-49df-be8e-4ae4632224b6"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-a0a11b83-4a51-49df-be8e-4ae4632224b6"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-a0a11b83-4a51-49df-be8e-4ae4632224b6"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-e748f433-8428-4a80-8d7d-970f4e4e19ec {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (max-width: 767px){#s-e748f433-8428-4a80-8d7d-970f4e4e19ec {
  display: none;
}
#s-e748f433-8428-4a80-8d7d-970f4e4e19ec, #wrap-s-e748f433-8428-4a80-8d7d-970f4e4e19ec { display: none !important; }}
#s-e748f433-8428-4a80-8d7d-970f4e4e19ec .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-43109bd1-782f-4f1e-aa11-f36f56a27ef4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-43109bd1-782f-4f1e-aa11-f36f56a27ef4 {
  display: none;
}
#s-43109bd1-782f-4f1e-aa11-f36f56a27ef4, #wrap-s-43109bd1-782f-4f1e-aa11-f36f56a27ef4 { display: none !important; }}
#s-43109bd1-782f-4f1e-aa11-f36f56a27ef4 .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 34px;
  
  
  text-align: left;
}



#s-7e4137fe-eb22-4213-b80e-4439e2fb6e07 {
  margin-top: 15px;
}

#s-d766a8a6-d27e-4510-8095-c398cb4446ce {
  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-d766a8a6-d27e-4510-8095-c398cb4446ce > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d766a8a6-d27e-4510-8095-c398cb4446ce.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a68d360d-3fa5-4ed1-b705-a2b176232770 {
  max-width: 130px;
text-align: left;
}



.shg-image-margin-container-s-a68d360d-3fa5-4ed1-b705-a2b176232770 {
  
  
  
  
}

#s-a68d360d-3fa5-4ed1-b705-a2b176232770 {
  margin: 0 !important;
}





  img.s-a68d360d-3fa5-4ed1-b705-a2b176232770.shogun-image {
    
    
  }


.s-a68d360d-3fa5-4ed1-b705-a2b176232770 .shogun-image-content {
  
    align-items: center;
  
}

.s-a68d360d-3fa5-4ed1-b705-a2b176232770.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-a68d360d-3fa5-4ed1-b705-a2b176232770.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a68d360d-3fa5-4ed1-b705-a2b176232770.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-a68d360d-3fa5-4ed1-b705-a2b176232770 {
  
  
  
  
}

#s-a68d360d-3fa5-4ed1-b705-a2b176232770 {
  margin: 0 !important;
}





  img.s-a68d360d-3fa5-4ed1-b705-a2b176232770.shogun-image {
    
    
  }


.s-a68d360d-3fa5-4ed1-b705-a2b176232770 .shogun-image-content {
  
    align-items: center;
  
}

.s-a68d360d-3fa5-4ed1-b705-a2b176232770.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-a68d360d-3fa5-4ed1-b705-a2b176232770.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a68d360d-3fa5-4ed1-b705-a2b176232770.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-a68d360d-3fa5-4ed1-b705-a2b176232770 {
  
  
  
  
}

#s-a68d360d-3fa5-4ed1-b705-a2b176232770 {
  margin: 0 !important;
}





  img.s-a68d360d-3fa5-4ed1-b705-a2b176232770.shogun-image {
    
    
  }


.s-a68d360d-3fa5-4ed1-b705-a2b176232770 .shogun-image-content {
  
    align-items: center;
  
}

.s-a68d360d-3fa5-4ed1-b705-a2b176232770.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-a68d360d-3fa5-4ed1-b705-a2b176232770.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a68d360d-3fa5-4ed1-b705-a2b176232770.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-a68d360d-3fa5-4ed1-b705-a2b176232770 {
  
  
  
  
}

#s-a68d360d-3fa5-4ed1-b705-a2b176232770 {
  margin: 0 !important;
}





  img.s-a68d360d-3fa5-4ed1-b705-a2b176232770.shogun-image {
    
    
  }


.s-a68d360d-3fa5-4ed1-b705-a2b176232770 .shogun-image-content {
  
    align-items: center;
  
}

.s-a68d360d-3fa5-4ed1-b705-a2b176232770.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-a68d360d-3fa5-4ed1-b705-a2b176232770.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a68d360d-3fa5-4ed1-b705-a2b176232770.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-a68d360d-3fa5-4ed1-b705-a2b176232770 {
  
  
  
  
}

#s-a68d360d-3fa5-4ed1-b705-a2b176232770 {
  margin: 0 !important;
}





  img.s-a68d360d-3fa5-4ed1-b705-a2b176232770.shogun-image {
    
    
  }


.s-a68d360d-3fa5-4ed1-b705-a2b176232770 .shogun-image-content {
  
    align-items: center;
  
}

.s-a68d360d-3fa5-4ed1-b705-a2b176232770.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-a68d360d-3fa5-4ed1-b705-a2b176232770.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a68d360d-3fa5-4ed1-b705-a2b176232770.shogun-image {
  box-sizing: border-box;
}




}
#s-0a9e6e75-751d-4438-8105-f179061a0192 {
  margin-top: 5px;
}

#s-721b91ca-d2a6-4a53-a5c3-351980b36e2d {
  margin-top: -15px;
margin-bottom: -40px;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}

#s-721b91ca-d2a6-4a53-a5c3-351980b36e2d .shogun-heading-component h1 {
  color: rgba(31, 102, 81, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 60px;
  
  
  
}



#s-390d1f13-ab2a-4a95-abc6-b7d57b7f6b0d {
  margin-top: 15px;
}
@media (min-width: 1200px){#s-390d1f13-ab2a-4a95-abc6-b7d57b7f6b0d {
  display: none;
}
#s-390d1f13-ab2a-4a95-abc6-b7d57b7f6b0d, #wrap-s-390d1f13-ab2a-4a95-abc6-b7d57b7f6b0d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-390d1f13-ab2a-4a95-abc6-b7d57b7f6b0d {
  display: none;
}
#s-390d1f13-ab2a-4a95-abc6-b7d57b7f6b0d, #wrap-s-390d1f13-ab2a-4a95-abc6-b7d57b7f6b0d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-390d1f13-ab2a-4a95-abc6-b7d57b7f6b0d {
  display: none;
}
#s-390d1f13-ab2a-4a95-abc6-b7d57b7f6b0d, #wrap-s-390d1f13-ab2a-4a95-abc6-b7d57b7f6b0d { display: none !important; }}
#s-112f36dd-4495-4822-afad-2511de72ad09 {
  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);
}
@media (min-width: 1200px){#s-112f36dd-4495-4822-afad-2511de72ad09 {
  display: none;
}
#s-112f36dd-4495-4822-afad-2511de72ad09, #wrap-s-112f36dd-4495-4822-afad-2511de72ad09 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-112f36dd-4495-4822-afad-2511de72ad09 {
  display: none;
}
#s-112f36dd-4495-4822-afad-2511de72ad09, #wrap-s-112f36dd-4495-4822-afad-2511de72ad09 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-112f36dd-4495-4822-afad-2511de72ad09 {
  display: none;
}
#s-112f36dd-4495-4822-afad-2511de72ad09, #wrap-s-112f36dd-4495-4822-afad-2511de72ad09 { display: none !important; }}







#s-112f36dd-4495-4822-afad-2511de72ad09 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-112f36dd-4495-4822-afad-2511de72ad09.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6d567046-a077-4ecd-89e9-3ca4ae8f6dd2 {
  max-width: 130px;
text-align: left;
}



.shg-image-margin-container-s-6d567046-a077-4ecd-89e9-3ca4ae8f6dd2 {
  
  
  
  
}

#s-6d567046-a077-4ecd-89e9-3ca4ae8f6dd2 {
  margin: 0 !important;
}





  img.s-6d567046-a077-4ecd-89e9-3ca4ae8f6dd2.shogun-image {
    
    
  }


.s-6d567046-a077-4ecd-89e9-3ca4ae8f6dd2 .shogun-image-content {
  
    align-items: center;
  
}

.s-6d567046-a077-4ecd-89e9-3ca4ae8f6dd2.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-6d567046-a077-4ecd-89e9-3ca4ae8f6dd2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d567046-a077-4ecd-89e9-3ca4ae8f6dd2.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-6d567046-a077-4ecd-89e9-3ca4ae8f6dd2 {
  
  
  
  
}

#s-6d567046-a077-4ecd-89e9-3ca4ae8f6dd2 {
  margin: 0 !important;
}





  img.s-6d567046-a077-4ecd-89e9-3ca4ae8f6dd2.shogun-image {
    
    
  }


.s-6d567046-a077-4ecd-89e9-3ca4ae8f6dd2 .shogun-image-content {
  
    align-items: center;
  
}

.s-6d567046-a077-4ecd-89e9-3ca4ae8f6dd2.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-6d567046-a077-4ecd-89e9-3ca4ae8f6dd2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d567046-a077-4ecd-89e9-3ca4ae8f6dd2.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-6d567046-a077-4ecd-89e9-3ca4ae8f6dd2 {
  
  
  
  
}

#s-6d567046-a077-4ecd-89e9-3ca4ae8f6dd2 {
  margin: 0 !important;
}





  img.s-6d567046-a077-4ecd-89e9-3ca4ae8f6dd2.shogun-image {
    
    
  }


.s-6d567046-a077-4ecd-89e9-3ca4ae8f6dd2 .shogun-image-content {
  
    align-items: center;
  
}

.s-6d567046-a077-4ecd-89e9-3ca4ae8f6dd2.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-6d567046-a077-4ecd-89e9-3ca4ae8f6dd2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d567046-a077-4ecd-89e9-3ca4ae8f6dd2.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-6d567046-a077-4ecd-89e9-3ca4ae8f6dd2 {
  
  
  
  
}

#s-6d567046-a077-4ecd-89e9-3ca4ae8f6dd2 {
  margin: 0 !important;
}





  img.s-6d567046-a077-4ecd-89e9-3ca4ae8f6dd2.shogun-image {
    
    
  }


.s-6d567046-a077-4ecd-89e9-3ca4ae8f6dd2 .shogun-image-content {
  
    align-items: center;
  
}

.s-6d567046-a077-4ecd-89e9-3ca4ae8f6dd2.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-6d567046-a077-4ecd-89e9-3ca4ae8f6dd2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d567046-a077-4ecd-89e9-3ca4ae8f6dd2.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-6d567046-a077-4ecd-89e9-3ca4ae8f6dd2 {
  
  
  
  
}

#s-6d567046-a077-4ecd-89e9-3ca4ae8f6dd2 {
  margin: 0 !important;
}





  img.s-6d567046-a077-4ecd-89e9-3ca4ae8f6dd2.shogun-image {
    
    
  }


.s-6d567046-a077-4ecd-89e9-3ca4ae8f6dd2 .shogun-image-content {
  
    align-items: center;
  
}

.s-6d567046-a077-4ecd-89e9-3ca4ae8f6dd2.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-6d567046-a077-4ecd-89e9-3ca4ae8f6dd2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d567046-a077-4ecd-89e9-3ca4ae8f6dd2.shogun-image {
  box-sizing: border-box;
}




}
#s-33b34bdd-7c04-41e1-b2ec-3ec27ad95588 {
  margin-top: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-33b34bdd-7c04-41e1-b2ec-3ec27ad95588 .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-35a9ca5c-b1c9-4264-9e80-01f7aa530f5a {
  margin-top: -20px;
margin-bottom: -40px;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}

#s-35a9ca5c-b1c9-4264-9e80-01f7aa530f5a .shogun-heading-component h1 {
  color: rgba(31, 102, 81, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 60px;
  
  
  
}



#s-a9298444-e5e5-496e-9fe1-2c28d1570c88 {
  padding-top: 5px;
padding-bottom: 5px;
min-height: 50px;
background-color: rgba(26, 87, 69, 1);
}
@media (min-width: 1200px){#s-a9298444-e5e5-496e-9fe1-2c28d1570c88 {
  display: none;
}
#s-a9298444-e5e5-496e-9fe1-2c28d1570c88, #wrap-s-a9298444-e5e5-496e-9fe1-2c28d1570c88 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a9298444-e5e5-496e-9fe1-2c28d1570c88 {
  display: none;
}
#s-a9298444-e5e5-496e-9fe1-2c28d1570c88, #wrap-s-a9298444-e5e5-496e-9fe1-2c28d1570c88 { display: none !important; }}@media (max-width: 767px){#s-a9298444-e5e5-496e-9fe1-2c28d1570c88 {
  padding-bottom: 0px;
}
}







#s-a9298444-e5e5-496e-9fe1-2c28d1570c88 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a9298444-e5e5-496e-9fe1-2c28d1570c88.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.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-ad9051b7-9051-4cfe-9f38-586116291616 {
  display: none;
}
#s-ad9051b7-9051-4cfe-9f38-586116291616, #wrap-s-ad9051b7-9051-4cfe-9f38-586116291616 { display: none !important; }}@media (max-width: 767px){#s-ad9051b7-9051-4cfe-9f38-586116291616 {
  display: none;
}
#s-ad9051b7-9051-4cfe-9f38-586116291616, #wrap-s-ad9051b7-9051-4cfe-9f38-586116291616 { display: none !important; }}
#s-ad9051b7-9051-4cfe-9f38-586116291616 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-ad9051b7-9051-4cfe-9f38-586116291616 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-ad9051b7-9051-4cfe-9f38-586116291616 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-ad9051b7-9051-4cfe-9f38-586116291616 td.shogun-table-row {
  background-color: rgba(31, 102, 81, 1);
  padding: 5px;
}

#s-ad9051b7-9051-4cfe-9f38-586116291616 td.shogun-table-column, #s-ad9051b7-9051-4cfe-9f38-586116291616 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-1a4be03c-6f60-41a6-9317-49e7481f6105 {
  max-width: 300px;
text-align: center;
}







  #s-1a4be03c-6f60-41a6-9317-49e7481f6105 img.shogun-image {
    

    
    
    
  }


#s-1a4be03c-6f60-41a6-9317-49e7481f6105 .shogun-image-content {
  
    align-items: center;
  
}

#s-128aebbe-7e03-4e8e-ac95-1f02069d0452 {
  max-width: 300px;
text-align: center;
}







  #s-128aebbe-7e03-4e8e-ac95-1f02069d0452 img.shogun-image {
    

    
    
    
  }


#s-128aebbe-7e03-4e8e-ac95-1f02069d0452 .shogun-image-content {
  
    align-items: center;
  
}

#s-6a4091e6-12a5-459c-b57a-d2663b565a83 {
  max-width: 300px;
text-align: center;
}







  #s-6a4091e6-12a5-459c-b57a-d2663b565a83 img.shogun-image {
    

    
    
    
  }


#s-6a4091e6-12a5-459c-b57a-d2663b565a83 .shogun-image-content {
  
    align-items: center;
  
}

#s-0df2ac63-6898-4656-b284-ab7402689247 {
  max-width: 300px;
text-align: center;
}







  #s-0df2ac63-6898-4656-b284-ab7402689247 img.shogun-image {
    

    
    
    
  }


#s-0df2ac63-6898-4656-b284-ab7402689247 .shogun-image-content {
  
    align-items: center;
  
}

#s-2793a5e7-b121-493d-8521-448d2cca60b0 {
  max-width: 300px;
text-align: center;
}







  #s-2793a5e7-b121-493d-8521-448d2cca60b0 img.shogun-image {
    

    
    
    
  }


#s-2793a5e7-b121-493d-8521-448d2cca60b0 .shogun-image-content {
  
    align-items: center;
  
}

#s-4b153836-34dc-4a0c-a2a4-5401c738e87a {
  max-width: 300px;
text-align: center;
}







  #s-4b153836-34dc-4a0c-a2a4-5401c738e87a img.shogun-image {
    

    
    
    
  }


#s-4b153836-34dc-4a0c-a2a4-5401c738e87a .shogun-image-content {
  
    align-items: center;
  
}

#s-678f6203-dc0b-4293-97a5-51ec67122534 {
  max-width: 300px;
text-align: center;
}







  #s-678f6203-dc0b-4293-97a5-51ec67122534 img.shogun-image {
    

    
    
    
  }


#s-678f6203-dc0b-4293-97a5-51ec67122534 .shogun-image-content {
  
    align-items: center;
  
}

#s-c2198ae7-5ad9-4504-bfe0-3080d24deac4 {
  max-width: 300px;
text-align: center;
}







  #s-c2198ae7-5ad9-4504-bfe0-3080d24deac4 img.shogun-image {
    

    
    
    
  }


#s-c2198ae7-5ad9-4504-bfe0-3080d24deac4 .shogun-image-content {
  
    align-items: center;
  
}

#s-b338052a-29ac-4825-aad0-3b6c110da6ee {
  max-width: 300px;
text-align: center;
}







  #s-b338052a-29ac-4825-aad0-3b6c110da6ee img.shogun-image {
    

    
    
    
  }


#s-b338052a-29ac-4825-aad0-3b6c110da6ee .shogun-image-content {
  
    align-items: center;
  
}

#s-c94f8f7b-132c-4a89-ac19-0758eea1e772 {
  max-width: 300px;
text-align: center;
}







  #s-c94f8f7b-132c-4a89-ac19-0758eea1e772 img.shogun-image {
    

    
    
    
  }


#s-c94f8f7b-132c-4a89-ac19-0758eea1e772 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-ed07e043-5a12-4f1c-828c-ace565dba6a4 {
  display: none;
}
#s-ed07e043-5a12-4f1c-828c-ace565dba6a4, #wrap-s-ed07e043-5a12-4f1c-828c-ace565dba6a4 { display: none !important; }}@media (max-width: 767px){#s-ed07e043-5a12-4f1c-828c-ace565dba6a4 {
  display: none;
}
#s-ed07e043-5a12-4f1c-828c-ace565dba6a4, #wrap-s-ed07e043-5a12-4f1c-828c-ace565dba6a4 { display: none !important; }}
#s-ed07e043-5a12-4f1c-828c-ace565dba6a4 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-ed07e043-5a12-4f1c-828c-ace565dba6a4 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-ed07e043-5a12-4f1c-828c-ace565dba6a4 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-ed07e043-5a12-4f1c-828c-ace565dba6a4 td.shogun-table-row {
  background-color: rgba(31, 102, 81, 1);
  padding: 5px;
}

#s-ed07e043-5a12-4f1c-828c-ace565dba6a4 td.shogun-table-column, #s-ed07e043-5a12-4f1c-828c-ace565dba6a4 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-545f8cca-83f1-4eaf-85ab-ca7cada896b8 {
  max-width: 300px;
text-align: center;
}







  #s-545f8cca-83f1-4eaf-85ab-ca7cada896b8 img.shogun-image {
    

    
    
    
  }


#s-545f8cca-83f1-4eaf-85ab-ca7cada896b8 .shogun-image-content {
  
    align-items: center;
  
}

#s-93e2b764-7b33-4951-9fda-7de6bf947e31 {
  max-width: 300px;
text-align: center;
}







  #s-93e2b764-7b33-4951-9fda-7de6bf947e31 img.shogun-image {
    

    
    
    
  }


#s-93e2b764-7b33-4951-9fda-7de6bf947e31 .shogun-image-content {
  
    align-items: center;
  
}

#s-4a7ef0ae-b8a1-451e-bcc9-96ac9d19f7c3 {
  max-width: 300px;
text-align: center;
}







  #s-4a7ef0ae-b8a1-451e-bcc9-96ac9d19f7c3 img.shogun-image {
    

    
    
    
  }


#s-4a7ef0ae-b8a1-451e-bcc9-96ac9d19f7c3 .shogun-image-content {
  
    align-items: center;
  
}

#s-a267eaca-b054-4c62-bd6d-c21855f71d1b {
  max-width: 300px;
text-align: center;
}







  #s-a267eaca-b054-4c62-bd6d-c21855f71d1b img.shogun-image {
    

    
    
    
  }


#s-a267eaca-b054-4c62-bd6d-c21855f71d1b .shogun-image-content {
  
    align-items: center;
  
}

#s-081f4e84-f0ba-43c4-a552-46f1f9985a5e {
  max-width: 300px;
text-align: center;
}







  #s-081f4e84-f0ba-43c4-a552-46f1f9985a5e img.shogun-image {
    

    
    
    
  }


#s-081f4e84-f0ba-43c4-a552-46f1f9985a5e .shogun-image-content {
  
    align-items: center;
  
}

#s-ea5e3dae-3dd7-4692-a418-1cb195839b5c {
  max-width: 300px;
text-align: center;
}







  #s-ea5e3dae-3dd7-4692-a418-1cb195839b5c img.shogun-image {
    

    
    
    
  }


#s-ea5e3dae-3dd7-4692-a418-1cb195839b5c .shogun-image-content {
  
    align-items: center;
  
}

#s-7e0526ce-e69d-4944-82fb-8d68b7616dc4 {
  max-width: 300px;
text-align: center;
}







  #s-7e0526ce-e69d-4944-82fb-8d68b7616dc4 img.shogun-image {
    

    
    
    
  }


#s-7e0526ce-e69d-4944-82fb-8d68b7616dc4 .shogun-image-content {
  
    align-items: center;
  
}

#s-d457fbbb-947c-42fd-8fc3-4c2aa35f3a2c {
  max-width: 300px;
text-align: center;
}







  #s-d457fbbb-947c-42fd-8fc3-4c2aa35f3a2c img.shogun-image {
    

    
    
    
  }


#s-d457fbbb-947c-42fd-8fc3-4c2aa35f3a2c .shogun-image-content {
  
    align-items: center;
  
}

#s-652badc3-f0b5-44c2-8103-3e4ac20baad2 {
  max-width: 300px;
text-align: center;
}







  #s-652badc3-f0b5-44c2-8103-3e4ac20baad2 img.shogun-image {
    

    
    
    
  }


#s-652badc3-f0b5-44c2-8103-3e4ac20baad2 .shogun-image-content {
  
    align-items: center;
  
}

#s-5603382b-ae3b-483c-b4ca-b09b5cb9710f {
  max-width: 300px;
text-align: center;
}







  #s-5603382b-ae3b-483c-b4ca-b09b5cb9710f img.shogun-image {
    

    
    
    
  }


#s-5603382b-ae3b-483c-b4ca-b09b5cb9710f .shogun-image-content {
  
    align-items: center;
  
}

#s-783ba828-0b23-4c5d-9f14-d1ed6866e33e {
  margin-top: 20px;
margin-bottom: 20px;
max-width: 310px;
aspect-ratio: 1612/329;
text-align: center;
}



.shg-image-margin-container-s-783ba828-0b23-4c5d-9f14-d1ed6866e33e {
  
  
  margin-top: 20px;
  margin-bottom: 20px;
}

#s-783ba828-0b23-4c5d-9f14-d1ed6866e33e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-783ba828-0b23-4c5d-9f14-d1ed6866e33e .shg-image-content-wrapper {
      aspect-ratio: 1612/329;
      min-width: 100%;
      height: auto;
    }

    #s-783ba828-0b23-4c5d-9f14-d1ed6866e33e .shogun-image-link {
      aspect-ratio: 1612/329;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-783ba828-0b23-4c5d-9f14-d1ed6866e33e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-783ba828-0b23-4c5d-9f14-d1ed6866e33e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shogun-image {
    
    
  }


.s-783ba828-0b23-4c5d-9f14-d1ed6866e33e .shogun-image-content {
  
    align-items: center;
  
}

.s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-783ba828-0b23-4c5d-9f14-d1ed6866e33e {
      --shg-aspect-ratio: calc(1612/329); 
    }

    .s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shogun-image-container {
      position: relative;
    }

    .s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-783ba828-0b23-4c5d-9f14-d1ed6866e33e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-783ba828-0b23-4c5d-9f14-d1ed6866e33e {
  
  
  
  
}

#s-783ba828-0b23-4c5d-9f14-d1ed6866e33e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-783ba828-0b23-4c5d-9f14-d1ed6866e33e .shg-image-content-wrapper {
      aspect-ratio: 1612/329;
      min-width: 100%;
      height: auto;
    }

    #s-783ba828-0b23-4c5d-9f14-d1ed6866e33e .shogun-image-link {
      aspect-ratio: 1612/329;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-783ba828-0b23-4c5d-9f14-d1ed6866e33e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-783ba828-0b23-4c5d-9f14-d1ed6866e33e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shogun-image {
    
    
  }


.s-783ba828-0b23-4c5d-9f14-d1ed6866e33e .shogun-image-content {
  
    align-items: center;
  
}

.s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-783ba828-0b23-4c5d-9f14-d1ed6866e33e {
      --shg-aspect-ratio: calc(1612/329); 
    }

    .s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shogun-image-container {
      position: relative;
    }

    .s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-783ba828-0b23-4c5d-9f14-d1ed6866e33e 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-783ba828-0b23-4c5d-9f14-d1ed6866e33e {
  
  
  
  
}

#s-783ba828-0b23-4c5d-9f14-d1ed6866e33e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-783ba828-0b23-4c5d-9f14-d1ed6866e33e .shg-image-content-wrapper {
      aspect-ratio: 1612/329;
      min-width: 100%;
      height: auto;
    }

    #s-783ba828-0b23-4c5d-9f14-d1ed6866e33e .shogun-image-link {
      aspect-ratio: 1612/329;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-783ba828-0b23-4c5d-9f14-d1ed6866e33e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-783ba828-0b23-4c5d-9f14-d1ed6866e33e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shogun-image {
    
    
  }


.s-783ba828-0b23-4c5d-9f14-d1ed6866e33e .shogun-image-content {
  
    align-items: center;
  
}

.s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-783ba828-0b23-4c5d-9f14-d1ed6866e33e {
      --shg-aspect-ratio: calc(1612/329); 
    }

    .s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shogun-image-container {
      position: relative;
    }

    .s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-783ba828-0b23-4c5d-9f14-d1ed6866e33e 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-783ba828-0b23-4c5d-9f14-d1ed6866e33e {
  
  
  
  
}

#s-783ba828-0b23-4c5d-9f14-d1ed6866e33e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-783ba828-0b23-4c5d-9f14-d1ed6866e33e .shg-image-content-wrapper {
      aspect-ratio: 1612/329;
      min-width: 100%;
      height: auto;
    }

    #s-783ba828-0b23-4c5d-9f14-d1ed6866e33e .shogun-image-link {
      aspect-ratio: 1612/329;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-783ba828-0b23-4c5d-9f14-d1ed6866e33e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-783ba828-0b23-4c5d-9f14-d1ed6866e33e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shogun-image {
    
    
  }


.s-783ba828-0b23-4c5d-9f14-d1ed6866e33e .shogun-image-content {
  
    align-items: center;
  
}

.s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-783ba828-0b23-4c5d-9f14-d1ed6866e33e {
      --shg-aspect-ratio: calc(1612/329); 
    }

    .s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shogun-image-container {
      position: relative;
    }

    .s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-783ba828-0b23-4c5d-9f14-d1ed6866e33e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-783ba828-0b23-4c5d-9f14-d1ed6866e33e {
  
  
  
  
}

#s-783ba828-0b23-4c5d-9f14-d1ed6866e33e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-783ba828-0b23-4c5d-9f14-d1ed6866e33e .shg-image-content-wrapper {
      aspect-ratio: 1612/329;
      min-width: 100%;
      height: auto;
    }

    #s-783ba828-0b23-4c5d-9f14-d1ed6866e33e .shogun-image-link {
      aspect-ratio: 1612/329;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-783ba828-0b23-4c5d-9f14-d1ed6866e33e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-783ba828-0b23-4c5d-9f14-d1ed6866e33e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shogun-image {
    
    
  }


.s-783ba828-0b23-4c5d-9f14-d1ed6866e33e .shogun-image-content {
  
    align-items: center;
  
}

.s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-783ba828-0b23-4c5d-9f14-d1ed6866e33e {
      --shg-aspect-ratio: calc(1612/329); 
    }

    .s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shogun-image-container {
      position: relative;
    }

    .s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-783ba828-0b23-4c5d-9f14-d1ed6866e33e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-783ba828-0b23-4c5d-9f14-d1ed6866e33e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-773b7c57-f26e-4acc-8fe6-074247f3f29d {
  min-height: 50px;
}
@media (min-width: 1200px){#s-773b7c57-f26e-4acc-8fe6-074247f3f29d {
  display: none;
}
#s-773b7c57-f26e-4acc-8fe6-074247f3f29d, #wrap-s-773b7c57-f26e-4acc-8fe6-074247f3f29d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-773b7c57-f26e-4acc-8fe6-074247f3f29d {
  display: none;
}
#s-773b7c57-f26e-4acc-8fe6-074247f3f29d, #wrap-s-773b7c57-f26e-4acc-8fe6-074247f3f29d { display: none !important; }}







#s-773b7c57-f26e-4acc-8fe6-074247f3f29d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-773b7c57-f26e-4acc-8fe6-074247f3f29d.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-56b8ca0f-2522-48a0-9009-663542a85eb1"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 768px) {
[id="s-56b8ca0f-2522-48a0-9009-663542a85eb1"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 992px) {
[id="s-56b8ca0f-2522-48a0-9009-663542a85eb1"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 1200px) {
[id="s-56b8ca0f-2522-48a0-9009-663542a85eb1"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

#s-4873e55e-27f6-481e-b727-01fbdd945b76 {
  max-width: 1166px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-4873e55e-27f6-481e-b727-01fbdd945b76 img.shogun-image,
  #s-4873e55e-27f6-481e-b727-01fbdd945b76 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4873e55e-27f6-481e-b727-01fbdd945b76 {
    width: 100%;
    height: auto;
  }



  #s-4873e55e-27f6-481e-b727-01fbdd945b76 img.shogun-image {
    

    
    
    
  }


#s-4873e55e-27f6-481e-b727-01fbdd945b76 .shogun-image-content {
  
    align-items: center;
  
}

#s-71cd25e1-7031-4de8-9e2a-d8d761b56055 {
  max-width: 1164px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-71cd25e1-7031-4de8-9e2a-d8d761b56055 img.shogun-image,
  #s-71cd25e1-7031-4de8-9e2a-d8d761b56055 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-71cd25e1-7031-4de8-9e2a-d8d761b56055 {
    width: 100%;
    height: auto;
  }



  #s-71cd25e1-7031-4de8-9e2a-d8d761b56055 img.shogun-image {
    

    
    
    
  }


#s-71cd25e1-7031-4de8-9e2a-d8d761b56055 .shogun-image-content {
  
    align-items: center;
  
}

#s-33780e96-8975-41ea-b4c0-3678c029a1ad {
  max-width: 1162px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-33780e96-8975-41ea-b4c0-3678c029a1ad img.shogun-image,
  #s-33780e96-8975-41ea-b4c0-3678c029a1ad .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-33780e96-8975-41ea-b4c0-3678c029a1ad {
    width: 100%;
    height: auto;
  }



  #s-33780e96-8975-41ea-b4c0-3678c029a1ad img.shogun-image {
    

    
    
    
  }


#s-33780e96-8975-41ea-b4c0-3678c029a1ad .shogun-image-content {
  
    align-items: center;
  
}

#s-5b0de8dc-1679-4c05-a8ef-bb2c9d6e1997 {
  margin-top: 5px;
}

@media (min-width: 0px) {
[id="s-5b0de8dc-1679-4c05-a8ef-bb2c9d6e1997"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 768px) {
[id="s-5b0de8dc-1679-4c05-a8ef-bb2c9d6e1997"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 992px) {
[id="s-5b0de8dc-1679-4c05-a8ef-bb2c9d6e1997"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 1200px) {
[id="s-5b0de8dc-1679-4c05-a8ef-bb2c9d6e1997"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

#s-e57c71ad-47b1-48db-acff-7f3f388b7ed3 {
  max-width: 1078px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-e57c71ad-47b1-48db-acff-7f3f388b7ed3 img.shogun-image,
  #s-e57c71ad-47b1-48db-acff-7f3f388b7ed3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e57c71ad-47b1-48db-acff-7f3f388b7ed3 {
    width: 100%;
    height: auto;
  }



  #s-e57c71ad-47b1-48db-acff-7f3f388b7ed3 img.shogun-image {
    

    
    
    
  }


#s-e57c71ad-47b1-48db-acff-7f3f388b7ed3 .shogun-image-content {
  
    align-items: center;
  
}

#s-d7c165be-41d9-47e5-9c77-a3d3ea4cf9ad {
  max-width: 603px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-d7c165be-41d9-47e5-9c77-a3d3ea4cf9ad img.shogun-image,
  #s-d7c165be-41d9-47e5-9c77-a3d3ea4cf9ad .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d7c165be-41d9-47e5-9c77-a3d3ea4cf9ad {
    width: 100%;
    height: auto;
  }



  #s-d7c165be-41d9-47e5-9c77-a3d3ea4cf9ad img.shogun-image {
    

    
    
    
  }


#s-d7c165be-41d9-47e5-9c77-a3d3ea4cf9ad .shogun-image-content {
  
    align-items: center;
  
}

#s-900b0612-2543-4f09-93db-5a8269abe174 {
  max-width: 1680px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-900b0612-2543-4f09-93db-5a8269abe174 img.shogun-image,
  #s-900b0612-2543-4f09-93db-5a8269abe174 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-900b0612-2543-4f09-93db-5a8269abe174 {
    width: 100%;
    height: auto;
  }



  #s-900b0612-2543-4f09-93db-5a8269abe174 img.shogun-image {
    

    
    
    
  }


#s-900b0612-2543-4f09-93db-5a8269abe174 .shogun-image-content {
  
    align-items: center;
  
}

#s-391db012-5a1f-4ec3-bbe0-c3d9888f09f1 {
  margin-top: 5px;
margin-bottom: 5px;
}

@media (min-width: 0px) {
[id="s-391db012-5a1f-4ec3-bbe0-c3d9888f09f1"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 768px) {
[id="s-391db012-5a1f-4ec3-bbe0-c3d9888f09f1"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 992px) {
[id="s-391db012-5a1f-4ec3-bbe0-c3d9888f09f1"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 1200px) {
[id="s-391db012-5a1f-4ec3-bbe0-c3d9888f09f1"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

#s-0232243e-25a4-45aa-8d6d-ab09cd4e246e {
  max-width: 906px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-0232243e-25a4-45aa-8d6d-ab09cd4e246e img.shogun-image,
  #s-0232243e-25a4-45aa-8d6d-ab09cd4e246e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0232243e-25a4-45aa-8d6d-ab09cd4e246e {
    width: 100%;
    height: auto;
  }



  #s-0232243e-25a4-45aa-8d6d-ab09cd4e246e img.shogun-image {
    

    
    
    
  }


#s-0232243e-25a4-45aa-8d6d-ab09cd4e246e .shogun-image-content {
  
    align-items: center;
  
}

#s-7d5ab8ee-a5f1-486b-a058-68afd93d9fdc {
  max-width: 1354px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-7d5ab8ee-a5f1-486b-a058-68afd93d9fdc img.shogun-image,
  #s-7d5ab8ee-a5f1-486b-a058-68afd93d9fdc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7d5ab8ee-a5f1-486b-a058-68afd93d9fdc {
    width: 100%;
    height: auto;
  }



  #s-7d5ab8ee-a5f1-486b-a058-68afd93d9fdc img.shogun-image {
    

    
    
    
  }


#s-7d5ab8ee-a5f1-486b-a058-68afd93d9fdc .shogun-image-content {
  
    align-items: center;
  
}

#s-cf0387c6-95f3-477b-b4ad-9f535ef93aaf {
  max-width: 910px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-cf0387c6-95f3-477b-b4ad-9f535ef93aaf img.shogun-image,
  #s-cf0387c6-95f3-477b-b4ad-9f535ef93aaf .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cf0387c6-95f3-477b-b4ad-9f535ef93aaf {
    width: 100%;
    height: auto;
  }



  #s-cf0387c6-95f3-477b-b4ad-9f535ef93aaf img.shogun-image {
    

    
    
    
  }


#s-cf0387c6-95f3-477b-b4ad-9f535ef93aaf .shogun-image-content {
  
    align-items: center;
  
}

#s-e52b06b4-8e79-4484-97a2-c6013b5d53a5 {
  padding-top: 64px;
padding-bottom: 5px;
min-height: 50px;
background-color: rgba(26, 87, 69, 1);
}
@media (min-width: 1200px){#s-e52b06b4-8e79-4484-97a2-c6013b5d53a5 {
  padding-top: 40px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-e52b06b4-8e79-4484-97a2-c6013b5d53a5 {
  padding-top: 40px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-e52b06b4-8e79-4484-97a2-c6013b5d53a5 {
  padding-top: 40px;
display: none;
}
#s-e52b06b4-8e79-4484-97a2-c6013b5d53a5, #wrap-s-e52b06b4-8e79-4484-97a2-c6013b5d53a5 { display: none !important; }}@media (max-width: 767px){#s-e52b06b4-8e79-4484-97a2-c6013b5d53a5 {
  padding-top: 32px;
padding-bottom: 0px;
display: none;
}
#s-e52b06b4-8e79-4484-97a2-c6013b5d53a5, #wrap-s-e52b06b4-8e79-4484-97a2-c6013b5d53a5 { display: none !important; }}







#s-e52b06b4-8e79-4484-97a2-c6013b5d53a5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e52b06b4-8e79-4484-97a2-c6013b5d53a5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc {
  margin-top: 0px;
margin-bottom: 0px;
max-width: 700px;
aspect-ratio: 3185/136;
text-align: center;
}



.shg-image-margin-container-s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc {
  
  
  margin-top: 0px;
  margin-bottom: 0px;
}

#s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc .shg-image-content-wrapper {
      aspect-ratio: 3185/136;
      min-width: 100%;
      height: auto;
    }

    #s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc .shogun-image-link {
      aspect-ratio: 3185/136;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shogun-image {
    
    
  }


.s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc .shogun-image-content {
  
    align-items: center;
  
}

.s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc {
      --shg-aspect-ratio: calc(3185/136); 
    }

    .s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shogun-image-container {
      position: relative;
    }

    .s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc {
  
  
  
  
}

#s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc .shg-image-content-wrapper {
      aspect-ratio: 3185/136;
      min-width: 100%;
      height: auto;
    }

    #s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc .shogun-image-link {
      aspect-ratio: 3185/136;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shogun-image {
    
    
  }


.s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc .shogun-image-content {
  
    align-items: center;
  
}

.s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc {
      --shg-aspect-ratio: calc(3185/136); 
    }

    .s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shogun-image-container {
      position: relative;
    }

    .s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc 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-7f3b4109-7e28-45b9-b1c5-34c897ef15fc {
  
  
  
  
}

#s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc .shg-image-content-wrapper {
      aspect-ratio: 3185/136;
      min-width: 100%;
      height: auto;
    }

    #s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc .shogun-image-link {
      aspect-ratio: 3185/136;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shogun-image {
    
    
  }


.s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc .shogun-image-content {
  
    align-items: center;
  
}

.s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc {
      --shg-aspect-ratio: calc(3185/136); 
    }

    .s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shogun-image-container {
      position: relative;
    }

    .s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc 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-7f3b4109-7e28-45b9-b1c5-34c897ef15fc {
  
  
  
  
}

#s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc .shg-image-content-wrapper {
      aspect-ratio: 3185/136;
      min-width: 100%;
      height: auto;
    }

    #s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc .shogun-image-link {
      aspect-ratio: 3185/136;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shogun-image {
    
    
  }


.s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc .shogun-image-content {
  
    align-items: center;
  
}

.s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc {
      --shg-aspect-ratio: calc(3185/136); 
    }

    .s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shogun-image-container {
      position: relative;
    }

    .s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc {
  
  
  
  
}

#s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc .shg-image-content-wrapper {
      aspect-ratio: 3185/136;
      min-width: 100%;
      height: auto;
    }

    #s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc .shogun-image-link {
      aspect-ratio: 3185/136;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shogun-image {
    
    
  }


.s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc .shogun-image-content {
  
    align-items: center;
  
}

.s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc {
      --shg-aspect-ratio: calc(3185/136); 
    }

    .s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shogun-image-container {
      position: relative;
    }

    .s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7f3b4109-7e28-45b9-b1c5-34c897ef15fc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-1f468b03-5f39-422b-81fc-2a9df7c10506 {
  margin-top: 15px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
max-width: 800px;
text-align: center;
}

#s-1f468b03-5f39-422b-81fc-2a9df7c10506 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  500 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  
  
}



@media (min-width: 768px) and (max-width: 991px){#s-86247ab9-b835-45e1-a61c-6047323d39e4 {
  display: none;
}
#s-86247ab9-b835-45e1-a61c-6047323d39e4, #wrap-s-86247ab9-b835-45e1-a61c-6047323d39e4 { display: none !important; }}@media (max-width: 767px){#s-86247ab9-b835-45e1-a61c-6047323d39e4 {
  display: none;
}
#s-86247ab9-b835-45e1-a61c-6047323d39e4, #wrap-s-86247ab9-b835-45e1-a61c-6047323d39e4 { display: none !important; }}
#s-86247ab9-b835-45e1-a61c-6047323d39e4 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-86247ab9-b835-45e1-a61c-6047323d39e4 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-86247ab9-b835-45e1-a61c-6047323d39e4 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-86247ab9-b835-45e1-a61c-6047323d39e4 td.shogun-table-row {
  background-color: rgba(31, 102, 81, 0);
  padding: 5px;
}

#s-86247ab9-b835-45e1-a61c-6047323d39e4 td.shogun-table-column, #s-86247ab9-b835-45e1-a61c-6047323d39e4 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-415a855a-6720-45ef-abfa-2af331dcc3e3 {
  max-width: 300px;
text-align: center;
}







  #s-415a855a-6720-45ef-abfa-2af331dcc3e3 img.shogun-image {
    

    
    
    
  }


#s-415a855a-6720-45ef-abfa-2af331dcc3e3 .shogun-image-content {
  
    align-items: center;
  
}

#s-4357bcfb-e365-4c06-a295-86a9c036f077 {
  max-width: 300px;
text-align: center;
}







  #s-4357bcfb-e365-4c06-a295-86a9c036f077 img.shogun-image {
    

    
    
    
  }


#s-4357bcfb-e365-4c06-a295-86a9c036f077 .shogun-image-content {
  
    align-items: center;
  
}

#s-e48929d3-9085-453f-8fe4-ecfe2f44d144 {
  max-width: 300px;
text-align: center;
}







  #s-e48929d3-9085-453f-8fe4-ecfe2f44d144 img.shogun-image {
    

    
    
    
  }


#s-e48929d3-9085-453f-8fe4-ecfe2f44d144 .shogun-image-content {
  
    align-items: center;
  
}

#s-1b138082-15fb-4b04-8f24-851ef1554e13 {
  max-width: 300px;
text-align: center;
}







  #s-1b138082-15fb-4b04-8f24-851ef1554e13 img.shogun-image {
    

    
    
    
  }


#s-1b138082-15fb-4b04-8f24-851ef1554e13 .shogun-image-content {
  
    align-items: center;
  
}

#s-e4630e03-402f-49e3-9600-1dfe9f965d48 {
  max-width: 300px;
text-align: center;
}







  #s-e4630e03-402f-49e3-9600-1dfe9f965d48 img.shogun-image {
    

    
    
    
  }


#s-e4630e03-402f-49e3-9600-1dfe9f965d48 .shogun-image-content {
  
    align-items: center;
  
}

#s-dbf69b37-9341-4d8d-8884-ed8195785a18 {
  max-width: 300px;
text-align: center;
}







  #s-dbf69b37-9341-4d8d-8884-ed8195785a18 img.shogun-image {
    

    
    
    
  }


#s-dbf69b37-9341-4d8d-8884-ed8195785a18 .shogun-image-content {
  
    align-items: center;
  
}

#s-15b1eada-f928-4648-aa42-a320ab722aa0 {
  max-width: 300px;
text-align: center;
}







  #s-15b1eada-f928-4648-aa42-a320ab722aa0 img.shogun-image {
    

    
    
    
  }


#s-15b1eada-f928-4648-aa42-a320ab722aa0 .shogun-image-content {
  
    align-items: center;
  
}

#s-8ad166ed-380c-4b2c-97e4-bee3cff897d8 {
  max-width: 300px;
text-align: center;
}







  #s-8ad166ed-380c-4b2c-97e4-bee3cff897d8 img.shogun-image {
    

    
    
    
  }


#s-8ad166ed-380c-4b2c-97e4-bee3cff897d8 .shogun-image-content {
  
    align-items: center;
  
}

#s-f2fc6da3-ee44-48d9-920e-343cab6d007c {
  max-width: 300px;
text-align: center;
}







  #s-f2fc6da3-ee44-48d9-920e-343cab6d007c img.shogun-image {
    

    
    
    
  }


#s-f2fc6da3-ee44-48d9-920e-343cab6d007c .shogun-image-content {
  
    align-items: center;
  
}

#s-5abbda08-d63a-4a4b-b88d-1c38b9c18c95 {
  max-width: 300px;
text-align: center;
}







  #s-5abbda08-d63a-4a4b-b88d-1c38b9c18c95 img.shogun-image {
    

    
    
    
  }


#s-5abbda08-d63a-4a4b-b88d-1c38b9c18c95 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-1670fa91-7d06-484b-bbc0-9d9267f9d36b {
  display: none;
}
#s-1670fa91-7d06-484b-bbc0-9d9267f9d36b, #wrap-s-1670fa91-7d06-484b-bbc0-9d9267f9d36b { display: none !important; }}@media (max-width: 767px){#s-1670fa91-7d06-484b-bbc0-9d9267f9d36b {
  display: none;
}
#s-1670fa91-7d06-484b-bbc0-9d9267f9d36b, #wrap-s-1670fa91-7d06-484b-bbc0-9d9267f9d36b { display: none !important; }}
#s-1670fa91-7d06-484b-bbc0-9d9267f9d36b .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-1670fa91-7d06-484b-bbc0-9d9267f9d36b table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-1670fa91-7d06-484b-bbc0-9d9267f9d36b 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-1670fa91-7d06-484b-bbc0-9d9267f9d36b td.shogun-table-row {
  background-color: rgba(31, 102, 81, 0);
  padding: 5px;
}

#s-1670fa91-7d06-484b-bbc0-9d9267f9d36b td.shogun-table-column, #s-1670fa91-7d06-484b-bbc0-9d9267f9d36b td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-e22d1b37-bc58-4d54-8747-5112e0703c0b {
  max-width: 300px;
text-align: center;
}







  #s-e22d1b37-bc58-4d54-8747-5112e0703c0b img.shogun-image {
    

    
    
    
  }


#s-e22d1b37-bc58-4d54-8747-5112e0703c0b .shogun-image-content {
  
    align-items: center;
  
}

#s-b328f58a-e5f1-4e65-b332-9bfbf88194d3 {
  max-width: 300px;
text-align: center;
}







  #s-b328f58a-e5f1-4e65-b332-9bfbf88194d3 img.shogun-image {
    

    
    
    
  }


#s-b328f58a-e5f1-4e65-b332-9bfbf88194d3 .shogun-image-content {
  
    align-items: center;
  
}

#s-8d26423c-4f57-43b0-b2a2-4099120fb3e3 {
  max-width: 300px;
text-align: center;
}







  #s-8d26423c-4f57-43b0-b2a2-4099120fb3e3 img.shogun-image {
    

    
    
    
  }


#s-8d26423c-4f57-43b0-b2a2-4099120fb3e3 .shogun-image-content {
  
    align-items: center;
  
}

#s-12885be0-eda4-4ab5-83e1-bdce658fcf49 {
  max-width: 300px;
text-align: center;
}







  #s-12885be0-eda4-4ab5-83e1-bdce658fcf49 img.shogun-image {
    

    
    
    
  }


#s-12885be0-eda4-4ab5-83e1-bdce658fcf49 .shogun-image-content {
  
    align-items: center;
  
}

#s-23708aa7-344c-4e42-86f0-049aa0ee3334 {
  max-width: 300px;
text-align: center;
}







  #s-23708aa7-344c-4e42-86f0-049aa0ee3334 img.shogun-image {
    

    
    
    
  }


#s-23708aa7-344c-4e42-86f0-049aa0ee3334 .shogun-image-content {
  
    align-items: center;
  
}

#s-e9d31d74-c23b-4661-8af1-f3750c706140 {
  max-width: 300px;
text-align: center;
}







  #s-e9d31d74-c23b-4661-8af1-f3750c706140 img.shogun-image {
    

    
    
    
  }


#s-e9d31d74-c23b-4661-8af1-f3750c706140 .shogun-image-content {
  
    align-items: center;
  
}

#s-f553c1f2-da8e-4dec-92c4-4b8a9dbc1ab5 {
  max-width: 300px;
text-align: center;
}







  #s-f553c1f2-da8e-4dec-92c4-4b8a9dbc1ab5 img.shogun-image {
    

    
    
    
  }


#s-f553c1f2-da8e-4dec-92c4-4b8a9dbc1ab5 .shogun-image-content {
  
    align-items: center;
  
}

#s-21c8be68-85b2-40d7-851d-880e29379265 {
  max-width: 300px;
text-align: center;
}







  #s-21c8be68-85b2-40d7-851d-880e29379265 img.shogun-image {
    

    
    
    
  }


#s-21c8be68-85b2-40d7-851d-880e29379265 .shogun-image-content {
  
    align-items: center;
  
}

#s-70ee7856-14a4-4c02-bc5a-98d26dc7f6db {
  max-width: 300px;
text-align: center;
}







  #s-70ee7856-14a4-4c02-bc5a-98d26dc7f6db img.shogun-image {
    

    
    
    
  }


#s-70ee7856-14a4-4c02-bc5a-98d26dc7f6db .shogun-image-content {
  
    align-items: center;
  
}

#s-1c58facf-b274-426f-81e2-951b9e7d1905 {
  max-width: 300px;
text-align: center;
}







  #s-1c58facf-b274-426f-81e2-951b9e7d1905 img.shogun-image {
    

    
    
    
  }


#s-1c58facf-b274-426f-81e2-951b9e7d1905 .shogun-image-content {
  
    align-items: center;
  
}

#s-153f4e9e-3f48-4f44-9131-bbdea304298c {
  padding-top: 64px;
padding-bottom: 64px;
min-height: 50px;
background-color: rgba(251, 251, 251, 1);
}
@media (max-width: 767px){#s-153f4e9e-3f48-4f44-9131-bbdea304298c {
  padding-top: 32px;
padding-left: 0%;
padding-bottom: 32px;
padding-right: 0%;
}
}







#s-153f4e9e-3f48-4f44-9131-bbdea304298c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-153f4e9e-3f48-4f44-9131-bbdea304298c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a50a3269-f570-41d4-bd57-f87e9389f779 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-a50a3269-f570-41d4-bd57-f87e9389f779 {
  margin-left: 5%;
margin-right: 5%;
}
}
#s-a50a3269-f570-41d4-bd57-f87e9389f779 .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 35px;
  
  
  
}


@media (max-width: 767px){#s-a50a3269-f570-41d4-bd57-f87e9389f779 .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 23px;
  
  
  
}


}
#s-f6482341-2a16-4c56-8e5b-8b146c6934fb {
  margin-top: 50px;
margin-left: auto;
margin-right: auto;
max-width: 1200px;
aspect-ratio: 5889/2356;
text-align: center;
}
@media (max-width: 767px){#s-f6482341-2a16-4c56-8e5b-8b146c6934fb {
  display: none;
}
#s-f6482341-2a16-4c56-8e5b-8b146c6934fb, #wrap-s-f6482341-2a16-4c56-8e5b-8b146c6934fb { display: none !important; }}




  #s-f6482341-2a16-4c56-8e5b-8b146c6934fb img.shogun-image,
  #s-f6482341-2a16-4c56-8e5b-8b146c6934fb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f6482341-2a16-4c56-8e5b-8b146c6934fb {
    width: 100%;
    height: auto;
  }



  #s-f6482341-2a16-4c56-8e5b-8b146c6934fb img.shogun-image {
    

    
    
    
  }


#s-f6482341-2a16-4c56-8e5b-8b146c6934fb .shogun-image-content {
  
    align-items: center;
  
}

#s-c0c4170a-271f-440f-ad97-a7837021c1cd {
  margin-top: 20px;
margin-left: auto;
margin-right: auto;
max-width: 4545px;
aspect-ratio: 4545/2413;
text-align: center;
}
@media (min-width: 1200px){#s-c0c4170a-271f-440f-ad97-a7837021c1cd {
  display: none;
}
#s-c0c4170a-271f-440f-ad97-a7837021c1cd, #wrap-s-c0c4170a-271f-440f-ad97-a7837021c1cd { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c0c4170a-271f-440f-ad97-a7837021c1cd {
  display: none;
}
#s-c0c4170a-271f-440f-ad97-a7837021c1cd, #wrap-s-c0c4170a-271f-440f-ad97-a7837021c1cd { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c0c4170a-271f-440f-ad97-a7837021c1cd {
  display: none;
}
#s-c0c4170a-271f-440f-ad97-a7837021c1cd, #wrap-s-c0c4170a-271f-440f-ad97-a7837021c1cd { display: none !important; }}






  #s-c0c4170a-271f-440f-ad97-a7837021c1cd img.shogun-image {
    

    
    
    
  }


#s-c0c4170a-271f-440f-ad97-a7837021c1cd .shogun-image-content {
  
    align-items: center;
  
}

#s-c107db48-5f26-4888-8af8-2c6b501c9b11 {
  margin-top: 50px;
margin-left: auto;
margin-right: auto;
max-width: 900px;
aspect-ratio: 5448/957;
text-align: center;
}
@media (max-width: 767px){#s-c107db48-5f26-4888-8af8-2c6b501c9b11 {
  display: none;
}
#s-c107db48-5f26-4888-8af8-2c6b501c9b11, #wrap-s-c107db48-5f26-4888-8af8-2c6b501c9b11 { display: none !important; }}




  #s-c107db48-5f26-4888-8af8-2c6b501c9b11 img.shogun-image,
  #s-c107db48-5f26-4888-8af8-2c6b501c9b11 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c107db48-5f26-4888-8af8-2c6b501c9b11 {
    width: 100%;
    height: auto;
  }



  #s-c107db48-5f26-4888-8af8-2c6b501c9b11 img.shogun-image {
    

    
    
    
  }


#s-c107db48-5f26-4888-8af8-2c6b501c9b11 .shogun-image-content {
  
    align-items: center;
  
}

#s-89f44b41-68d1-4214-a723-926ebabc300b {
  margin-top: 20px;
margin-left: auto;
margin-right: auto;
max-width: 350px;
text-align: center;
}
@media (min-width: 1200px){#s-89f44b41-68d1-4214-a723-926ebabc300b {
  display: none;
}
#s-89f44b41-68d1-4214-a723-926ebabc300b, #wrap-s-89f44b41-68d1-4214-a723-926ebabc300b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-89f44b41-68d1-4214-a723-926ebabc300b {
  display: none;
}
#s-89f44b41-68d1-4214-a723-926ebabc300b, #wrap-s-89f44b41-68d1-4214-a723-926ebabc300b { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-89f44b41-68d1-4214-a723-926ebabc300b {
  display: none;
}
#s-89f44b41-68d1-4214-a723-926ebabc300b, #wrap-s-89f44b41-68d1-4214-a723-926ebabc300b { display: none !important; }}






  #s-89f44b41-68d1-4214-a723-926ebabc300b img.shogun-image {
    

    
    
    
  }


#s-89f44b41-68d1-4214-a723-926ebabc300b .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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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