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

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

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

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

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

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

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

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

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

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

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

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

#s-6fcf0678-5af6-4875-98e5-d5eb42371c60 {
  min-height: 50px;
}








#s-6fcf0678-5af6-4875-98e5-d5eb42371c60 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6fcf0678-5af6-4875-98e5-d5eb42371c60.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-image-content-wrapper .shogun-image.hover~* {
  z-index: 1;
}
#s-0cf7b5e8-9736-4404-9bd0-db8f2a159db1 {
  text-align: center;
}
@media (min-width: 1200px){#s-0cf7b5e8-9736-4404-9bd0-db8f2a159db1 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0cf7b5e8-9736-4404-9bd0-db8f2a159db1 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-0cf7b5e8-9736-4404-9bd0-db8f2a159db1 {
  display: none;
}
#s-0cf7b5e8-9736-4404-9bd0-db8f2a159db1, #wrap-s-0cf7b5e8-9736-4404-9bd0-db8f2a159db1 { display: none !important; }}@media (max-width: 767px){#s-0cf7b5e8-9736-4404-9bd0-db8f2a159db1 {
  display: none;
}
#s-0cf7b5e8-9736-4404-9bd0-db8f2a159db1, #wrap-s-0cf7b5e8-9736-4404-9bd0-db8f2a159db1 { display: none !important; }}






  img.s-0cf7b5e8-9736-4404-9bd0-db8f2a159db1.shogun-image {
    
    
  }


.s-0cf7b5e8-9736-4404-9bd0-db8f2a159db1 .shogun-image-content {
  
    align-items: center;
  
}

.s-0cf7b5e8-9736-4404-9bd0-db8f2a159db1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0cf7b5e8-9736-4404-9bd0-db8f2a159db1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0cf7b5e8-9736-4404-9bd0-db8f2a159db1.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-0cf7b5e8-9736-4404-9bd0-db8f2a159db1.shogun-image {
    
    
  }


.s-0cf7b5e8-9736-4404-9bd0-db8f2a159db1 .shogun-image-content {
  
    align-items: center;
  
}

.s-0cf7b5e8-9736-4404-9bd0-db8f2a159db1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0cf7b5e8-9736-4404-9bd0-db8f2a159db1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0cf7b5e8-9736-4404-9bd0-db8f2a159db1.shogun-image {
  box-sizing: border-box;
}



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





  img.s-0cf7b5e8-9736-4404-9bd0-db8f2a159db1.shogun-image {
    
    
  }


.s-0cf7b5e8-9736-4404-9bd0-db8f2a159db1 .shogun-image-content {
  
    align-items: center;
  
}

.s-0cf7b5e8-9736-4404-9bd0-db8f2a159db1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0cf7b5e8-9736-4404-9bd0-db8f2a159db1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0cf7b5e8-9736-4404-9bd0-db8f2a159db1.shogun-image {
  box-sizing: border-box;
}



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





  img.s-0cf7b5e8-9736-4404-9bd0-db8f2a159db1.shogun-image {
    
    
  }


.s-0cf7b5e8-9736-4404-9bd0-db8f2a159db1 .shogun-image-content {
  
    align-items: center;
  
}

.s-0cf7b5e8-9736-4404-9bd0-db8f2a159db1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0cf7b5e8-9736-4404-9bd0-db8f2a159db1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0cf7b5e8-9736-4404-9bd0-db8f2a159db1.shogun-image {
  box-sizing: border-box;
}



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





  img.s-0cf7b5e8-9736-4404-9bd0-db8f2a159db1.shogun-image {
    
    
  }


.s-0cf7b5e8-9736-4404-9bd0-db8f2a159db1 .shogun-image-content {
  
    align-items: center;
  
}

.s-0cf7b5e8-9736-4404-9bd0-db8f2a159db1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0cf7b5e8-9736-4404-9bd0-db8f2a159db1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0cf7b5e8-9736-4404-9bd0-db8f2a159db1.shogun-image {
  box-sizing: border-box;
}



}
#s-8fa63389-cd98-47ca-821c-146f2dbf4096 {
  text-align: center;
}
@media (min-width: 1200px){#s-8fa63389-cd98-47ca-821c-146f2dbf4096 {
  display: none;
}
#s-8fa63389-cd98-47ca-821c-146f2dbf4096, #wrap-s-8fa63389-cd98-47ca-821c-146f2dbf4096 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8fa63389-cd98-47ca-821c-146f2dbf4096 {
  display: none;
}
#s-8fa63389-cd98-47ca-821c-146f2dbf4096, #wrap-s-8fa63389-cd98-47ca-821c-146f2dbf4096 { display: none !important; }}






  img.s-8fa63389-cd98-47ca-821c-146f2dbf4096.shogun-image {
    
    
  }


.s-8fa63389-cd98-47ca-821c-146f2dbf4096 .shogun-image-content {
  
    align-items: center;
  
}

.s-8fa63389-cd98-47ca-821c-146f2dbf4096.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8fa63389-cd98-47ca-821c-146f2dbf4096.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8fa63389-cd98-47ca-821c-146f2dbf4096.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-8fa63389-cd98-47ca-821c-146f2dbf4096.shogun-image {
    
    
  }


.s-8fa63389-cd98-47ca-821c-146f2dbf4096 .shogun-image-content {
  
    align-items: center;
  
}

.s-8fa63389-cd98-47ca-821c-146f2dbf4096.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8fa63389-cd98-47ca-821c-146f2dbf4096.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8fa63389-cd98-47ca-821c-146f2dbf4096.shogun-image {
  box-sizing: border-box;
}



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





  img.s-8fa63389-cd98-47ca-821c-146f2dbf4096.shogun-image {
    
    
  }


.s-8fa63389-cd98-47ca-821c-146f2dbf4096 .shogun-image-content {
  
    align-items: center;
  
}

.s-8fa63389-cd98-47ca-821c-146f2dbf4096.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8fa63389-cd98-47ca-821c-146f2dbf4096.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8fa63389-cd98-47ca-821c-146f2dbf4096.shogun-image {
  box-sizing: border-box;
}



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





  img.s-8fa63389-cd98-47ca-821c-146f2dbf4096.shogun-image {
    
    
  }


.s-8fa63389-cd98-47ca-821c-146f2dbf4096 .shogun-image-content {
  
    align-items: center;
  
}

.s-8fa63389-cd98-47ca-821c-146f2dbf4096.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8fa63389-cd98-47ca-821c-146f2dbf4096.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8fa63389-cd98-47ca-821c-146f2dbf4096.shogun-image {
  box-sizing: border-box;
}



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





  img.s-8fa63389-cd98-47ca-821c-146f2dbf4096.shogun-image {
    
    
  }


.s-8fa63389-cd98-47ca-821c-146f2dbf4096 .shogun-image-content {
  
    align-items: center;
  
}

.s-8fa63389-cd98-47ca-821c-146f2dbf4096.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8fa63389-cd98-47ca-821c-146f2dbf4096.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8fa63389-cd98-47ca-821c-146f2dbf4096.shogun-image {
  box-sizing: border-box;
}



}
#s-ce67e7bd-3aae-4750-94bc-088163d87fb8 {
  background-repeat: no-repeat;
padding-left: 15px;
padding-right: 15px;
min-height: 50px;
}

#s-ce67e7bd-3aae-4750-94bc-088163d87fb8 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNDA2ZDg4ZWQtZWExZi00YmNiLThkNmYtM2E2ZDRlODdiNWE2IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZmZmZmZmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZWJmZWU3O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM0MDZkODhlZC1lYTFmLTRiY2ItOGQ2Zi0zYTZkNGU4N2I1YTYpIi8+PC9zdmc+);
}








#s-ce67e7bd-3aae-4750-94bc-088163d87fb8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ce67e7bd-3aae-4750-94bc-088163d87fb8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2e26b3d2-b6f3-4dee-8aa1-83b4e37f045b {
  margin-left: auto;
margin-right: auto;
padding-top: 60px;
padding-left: 15px;
padding-bottom: 60px;
padding-right: 15px;
min-height: 50px;
max-width: 80%;
}
@media (min-width: 768px) and (max-width: 991px){#s-2e26b3d2-b6f3-4dee-8aa1-83b4e37f045b {
  max-width: 100%;
}
}@media (max-width: 767px){#s-2e26b3d2-b6f3-4dee-8aa1-83b4e37f045b {
  max-width: 100%;
}
}
#s-2e26b3d2-b6f3-4dee-8aa1-83b4e37f045b {
  background-image: url();
}








#s-2e26b3d2-b6f3-4dee-8aa1-83b4e37f045b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2e26b3d2-b6f3-4dee-8aa1-83b4e37f045b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 767px){






#s-2e26b3d2-b6f3-4dee-8aa1-83b4e37f045b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2e26b3d2-b6f3-4dee-8aa1-83b4e37f045b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
}
.shg-rich-text {
  overflow-wrap: break-word;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-e797acd8-e200-4aa6-ae01-c3b06b624467 {
  margin-top: 0px;
margin-bottom: 20px;
}
@media (max-width: 767px){#s-e797acd8-e200-4aa6-ae01-c3b06b624467 {
  display: none;
}
#s-e797acd8-e200-4aa6-ae01-c3b06b624467, #wrap-s-e797acd8-e200-4aa6-ae01-c3b06b624467 { display: none !important; }}
#s-d3467816-91e1-41fc-b415-418f66f31236 {
  margin-top: 0px;
margin-bottom: 20px;
}
@media (min-width: 1200px){#s-d3467816-91e1-41fc-b415-418f66f31236 {
  display: none;
}
#s-d3467816-91e1-41fc-b415-418f66f31236, #wrap-s-d3467816-91e1-41fc-b415-418f66f31236 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d3467816-91e1-41fc-b415-418f66f31236 {
  display: none;
}
#s-d3467816-91e1-41fc-b415-418f66f31236, #wrap-s-d3467816-91e1-41fc-b415-418f66f31236 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d3467816-91e1-41fc-b415-418f66f31236 {
  display: none;
}
#s-d3467816-91e1-41fc-b415-418f66f31236, #wrap-s-d3467816-91e1-41fc-b415-418f66f31236 { display: none !important; }}
#s-5f8b88b8-db47-4ee8-8de5-23410e978b43 {
  margin-bottom: 30px;
}

#s-a5a933c3-ffc5-4a9f-84eb-c7ff245bd011 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}







  img.s-a5a933c3-ffc5-4a9f-84eb-c7ff245bd011.shogun-image {
    
    
  }


.s-a5a933c3-ffc5-4a9f-84eb-c7ff245bd011 .shogun-image-content {
  
    align-items: center;
  
}

.s-a5a933c3-ffc5-4a9f-84eb-c7ff245bd011.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5a933c3-ffc5-4a9f-84eb-c7ff245bd011.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5a933c3-ffc5-4a9f-84eb-c7ff245bd011.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-a5a933c3-ffc5-4a9f-84eb-c7ff245bd011.shogun-image {
    
    
  }


.s-a5a933c3-ffc5-4a9f-84eb-c7ff245bd011 .shogun-image-content {
  
    align-items: center;
  
}

.s-a5a933c3-ffc5-4a9f-84eb-c7ff245bd011.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5a933c3-ffc5-4a9f-84eb-c7ff245bd011.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5a933c3-ffc5-4a9f-84eb-c7ff245bd011.shogun-image {
  box-sizing: border-box;
}



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





  img.s-a5a933c3-ffc5-4a9f-84eb-c7ff245bd011.shogun-image {
    
    
  }


.s-a5a933c3-ffc5-4a9f-84eb-c7ff245bd011 .shogun-image-content {
  
    align-items: center;
  
}

.s-a5a933c3-ffc5-4a9f-84eb-c7ff245bd011.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5a933c3-ffc5-4a9f-84eb-c7ff245bd011.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5a933c3-ffc5-4a9f-84eb-c7ff245bd011.shogun-image {
  box-sizing: border-box;
}



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





  img.s-a5a933c3-ffc5-4a9f-84eb-c7ff245bd011.shogun-image {
    
    
  }


.s-a5a933c3-ffc5-4a9f-84eb-c7ff245bd011 .shogun-image-content {
  
    align-items: center;
  
}

.s-a5a933c3-ffc5-4a9f-84eb-c7ff245bd011.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5a933c3-ffc5-4a9f-84eb-c7ff245bd011.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5a933c3-ffc5-4a9f-84eb-c7ff245bd011.shogun-image {
  box-sizing: border-box;
}



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





  img.s-a5a933c3-ffc5-4a9f-84eb-c7ff245bd011.shogun-image {
    
    
  }


.s-a5a933c3-ffc5-4a9f-84eb-c7ff245bd011 .shogun-image-content {
  
    align-items: center;
  
}

.s-a5a933c3-ffc5-4a9f-84eb-c7ff245bd011.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5a933c3-ffc5-4a9f-84eb-c7ff245bd011.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5a933c3-ffc5-4a9f-84eb-c7ff245bd011.shogun-image {
  box-sizing: border-box;
}



}
#s-ce5149a7-f65c-4da4-bc4e-79332b43b334 {
  margin-top: 15px;
margin-bottom: 15px;
}

#s-1961495b-d3e3-4eb9-a6dd-ef32733491f4 {
  margin-top: 30px;
}

#s-7a3994fd-0d34-4d27-8e7b-9017ff2f23da {
  box-shadow:0px 0px 0px 0px rgba(255, 252, 247, 1);
margin-top: 30px;
padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(254, 246, 243, 1);
border-style: solid;
border-radius: 10px;
background-color: rgba(255, 255, 255, 1);
}

#s-1909bb89-b72b-4ea4-927c-6a2ddeca96b0 {
  margin-top: 30px;
}

.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-de94a7fa-d277-4e41-9a3d-93366dbd95d5 {
  margin-top: 30px;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
border-radius: 50px;
max-width: 400px;
background-color: rgba(255, 90, 157, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-de94a7fa-d277-4e41-9a3d-93366dbd95d5:hover {background-color: rgba(250, 71, 145, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-de94a7fa-d277-4e41-9a3d-93366dbd95d5:active {background-color: rgba(252, 156, 59, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-de94a7fa-d277-4e41-9a3d-93366dbd95d5-root {
    text-align: center;
  }


#s-de94a7fa-d277-4e41-9a3d-93366dbd95d5.shg-btn {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  block ;
}
@media (min-width: 1200px){
  #s-de94a7fa-d277-4e41-9a3d-93366dbd95d5-root {
    text-align: center;
  }


#s-de94a7fa-d277-4e41-9a3d-93366dbd95d5.shg-btn {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-de94a7fa-d277-4e41-9a3d-93366dbd95d5-root {
    text-align: center;
  }


#s-de94a7fa-d277-4e41-9a3d-93366dbd95d5.shg-btn {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-de94a7fa-d277-4e41-9a3d-93366dbd95d5-root {
    text-align: center;
  }


#s-de94a7fa-d277-4e41-9a3d-93366dbd95d5.shg-btn {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  block ;
}
}@media (max-width: 767px){
  #s-de94a7fa-d277-4e41-9a3d-93366dbd95d5-root {
    text-align: center;
  }


#s-de94a7fa-d277-4e41-9a3d-93366dbd95d5.shg-btn {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  block ;
}
}
#s-511003ac-a8b6-4a1c-8da6-46fe1906ac8d {
  margin-top: 15px;
}

#s-757025b0-7f97-440a-8c91-7380ff4031be {
  margin-left: auto;
margin-right: auto;
padding-top: 60px;
padding-left: 20px;
padding-bottom: 60px;
padding-right: 20px;
min-height: 50px;
max-width: 80%;
}
@media (min-width: 768px) and (max-width: 991px){#s-757025b0-7f97-440a-8c91-7380ff4031be {
  max-width: 100%;
}
}@media (max-width: 767px){#s-757025b0-7f97-440a-8c91-7380ff4031be {
  max-width: 100%;
}
}
#s-757025b0-7f97-440a-8c91-7380ff4031be {
  background-image: url();
}








#s-757025b0-7f97-440a-8c91-7380ff4031be > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-757025b0-7f97-440a-8c91-7380ff4031be.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 767px){






#s-757025b0-7f97-440a-8c91-7380ff4031be > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-757025b0-7f97-440a-8c91-7380ff4031be.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-54dfd2ad-cc4d-4361-b8ce-3ab4e59c705b {
  margin-top: 0px;
margin-bottom: 30px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-54dfd2ad-cc4d-4361-b8ce-3ab4e59c705b .shogun-heading-component h1 {
  color: rgba(19, 83, 14, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 36px;
  line-height: 1.2em;
  
  
}



#s-294c7513-ac9f-47ef-bdbb-134dfaefa6e0 {
  margin-bottom: 30px;
}

#s-804ab678-2769-4085-954d-0ca64d0cf978 {
  text-align: center;
}







  img.s-804ab678-2769-4085-954d-0ca64d0cf978.shogun-image {
    
    
  }


.s-804ab678-2769-4085-954d-0ca64d0cf978 .shogun-image-content {
  
    align-items: center;
  
}

.s-804ab678-2769-4085-954d-0ca64d0cf978.shg-align-container {
  display: flex;
  justify-content: center
}

.s-804ab678-2769-4085-954d-0ca64d0cf978.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-804ab678-2769-4085-954d-0ca64d0cf978.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-804ab678-2769-4085-954d-0ca64d0cf978.shogun-image {
    
    
  }


.s-804ab678-2769-4085-954d-0ca64d0cf978 .shogun-image-content {
  
    align-items: center;
  
}

.s-804ab678-2769-4085-954d-0ca64d0cf978.shg-align-container {
  display: flex;
  justify-content: center
}

.s-804ab678-2769-4085-954d-0ca64d0cf978.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-804ab678-2769-4085-954d-0ca64d0cf978.shogun-image {
  box-sizing: border-box;
}



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





  img.s-804ab678-2769-4085-954d-0ca64d0cf978.shogun-image {
    
    
  }


.s-804ab678-2769-4085-954d-0ca64d0cf978 .shogun-image-content {
  
    align-items: center;
  
}

.s-804ab678-2769-4085-954d-0ca64d0cf978.shg-align-container {
  display: flex;
  justify-content: center
}

.s-804ab678-2769-4085-954d-0ca64d0cf978.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-804ab678-2769-4085-954d-0ca64d0cf978.shogun-image {
  box-sizing: border-box;
}



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





  img.s-804ab678-2769-4085-954d-0ca64d0cf978.shogun-image {
    
    
  }


.s-804ab678-2769-4085-954d-0ca64d0cf978 .shogun-image-content {
  
    align-items: center;
  
}

.s-804ab678-2769-4085-954d-0ca64d0cf978.shg-align-container {
  display: flex;
  justify-content: center
}

.s-804ab678-2769-4085-954d-0ca64d0cf978.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-804ab678-2769-4085-954d-0ca64d0cf978.shogun-image {
  box-sizing: border-box;
}



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





  img.s-804ab678-2769-4085-954d-0ca64d0cf978.shogun-image {
    
    
  }


.s-804ab678-2769-4085-954d-0ca64d0cf978 .shogun-image-content {
  
    align-items: center;
  
}

.s-804ab678-2769-4085-954d-0ca64d0cf978.shg-align-container {
  display: flex;
  justify-content: center
}

.s-804ab678-2769-4085-954d-0ca64d0cf978.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-804ab678-2769-4085-954d-0ca64d0cf978.shogun-image {
  box-sizing: border-box;
}



}
#s-532f8563-6b5a-427b-acf2-7b4a6bb4090b {
  margin-top: 30px;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
border-radius: 50px;
max-width: 400px;
background-color: rgba(255, 90, 157, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-532f8563-6b5a-427b-acf2-7b4a6bb4090b:hover {background-color: rgba(250, 71, 145, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-532f8563-6b5a-427b-acf2-7b4a6bb4090b:active {background-color: rgba(255, 90, 157, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-532f8563-6b5a-427b-acf2-7b4a6bb4090b-root {
    text-align: center;
  }


#s-532f8563-6b5a-427b-acf2-7b4a6bb4090b.shg-btn {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  block ;
}
@media (min-width: 1200px){
  #s-532f8563-6b5a-427b-acf2-7b4a6bb4090b-root {
    text-align: center;
  }


#s-532f8563-6b5a-427b-acf2-7b4a6bb4090b.shg-btn {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-532f8563-6b5a-427b-acf2-7b4a6bb4090b-root {
    text-align: center;
  }


#s-532f8563-6b5a-427b-acf2-7b4a6bb4090b.shg-btn {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-532f8563-6b5a-427b-acf2-7b4a6bb4090b-root {
    text-align: center;
  }


#s-532f8563-6b5a-427b-acf2-7b4a6bb4090b.shg-btn {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  block ;
}
}@media (max-width: 767px){
  #s-532f8563-6b5a-427b-acf2-7b4a6bb4090b-root {
    text-align: center;
  }


#s-532f8563-6b5a-427b-acf2-7b4a6bb4090b.shg-btn {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  block ;
}
}
#s-23db6419-bdd0-494d-b066-bbd19c808860 {
  margin-top: 15px;
}

#s-70bbfcde-89a6-4b9d-9dd1-5cce89a36653 {
  min-height: 50px;
background-color: rgba(235, 254, 231, 1);
}








#s-70bbfcde-89a6-4b9d-9dd1-5cce89a36653 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-70bbfcde-89a6-4b9d-9dd1-5cce89a36653.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-06a8cc2c-dd86-4b15-8006-8e4c92200690 {
  margin-left: auto;
margin-right: auto;
padding-top: 60px;
padding-left: 15px;
padding-bottom: 60px;
padding-right: 15px;
min-height: 50px;
max-width: 80%;
}
@media (min-width: 768px) and (max-width: 991px){#s-06a8cc2c-dd86-4b15-8006-8e4c92200690 {
  max-width: 100%;
}
}@media (max-width: 767px){#s-06a8cc2c-dd86-4b15-8006-8e4c92200690 {
  max-width: 100%;
}
}
#s-06a8cc2c-dd86-4b15-8006-8e4c92200690 {
  background-image: url();
}








#s-06a8cc2c-dd86-4b15-8006-8e4c92200690 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-06a8cc2c-dd86-4b15-8006-8e4c92200690.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 767px){






#s-06a8cc2c-dd86-4b15-8006-8e4c92200690 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-06a8cc2c-dd86-4b15-8006-8e4c92200690.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
}
#s-abe710cf-4a03-4959-a477-48dbbf9f6c4c {
  margin-top: 0px;
margin-bottom: 30px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-abe710cf-4a03-4959-a477-48dbbf9f6c4c .shogun-heading-component h1 {
  color: rgba(19, 83, 14, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 36px;
  line-height: 1.2em;
  
  
}



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

@media (min-width: 0px) {
[id="s-bbdde15c-e5ec-4852-8f00-995c2b636fa5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bbdde15c-e5ec-4852-8f00-995c2b636fa5"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-bbdde15c-e5ec-4852-8f00-995c2b636fa5"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-bbdde15c-e5ec-4852-8f00-995c2b636fa5"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-d7291728-4f96-4f32-bd5f-87488706ce7c {
  margin-bottom: 30px;
min-height: 50px;
}








#s-d7291728-4f96-4f32-bd5f-87488706ce7c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d7291728-4f96-4f32-bd5f-87488706ce7c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-faa2fdaf-85cb-4ee1-9e3b-ae25fc3d33d1 {
  margin-left: auto;
margin-right: auto;
max-width: 200px;
text-align: center;
}







  img.s-faa2fdaf-85cb-4ee1-9e3b-ae25fc3d33d1.shogun-image {
    
    
  }


.s-faa2fdaf-85cb-4ee1-9e3b-ae25fc3d33d1 .shogun-image-content {
  
    align-items: center;
  
}

.s-faa2fdaf-85cb-4ee1-9e3b-ae25fc3d33d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-faa2fdaf-85cb-4ee1-9e3b-ae25fc3d33d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-faa2fdaf-85cb-4ee1-9e3b-ae25fc3d33d1.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-faa2fdaf-85cb-4ee1-9e3b-ae25fc3d33d1.shogun-image {
    
    
  }


.s-faa2fdaf-85cb-4ee1-9e3b-ae25fc3d33d1 .shogun-image-content {
  
    align-items: center;
  
}

.s-faa2fdaf-85cb-4ee1-9e3b-ae25fc3d33d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-faa2fdaf-85cb-4ee1-9e3b-ae25fc3d33d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-faa2fdaf-85cb-4ee1-9e3b-ae25fc3d33d1.shogun-image {
  box-sizing: border-box;
}



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





  img.s-faa2fdaf-85cb-4ee1-9e3b-ae25fc3d33d1.shogun-image {
    
    
  }


.s-faa2fdaf-85cb-4ee1-9e3b-ae25fc3d33d1 .shogun-image-content {
  
    align-items: center;
  
}

.s-faa2fdaf-85cb-4ee1-9e3b-ae25fc3d33d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-faa2fdaf-85cb-4ee1-9e3b-ae25fc3d33d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-faa2fdaf-85cb-4ee1-9e3b-ae25fc3d33d1.shogun-image {
  box-sizing: border-box;
}



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





  img.s-faa2fdaf-85cb-4ee1-9e3b-ae25fc3d33d1.shogun-image {
    
    
  }


.s-faa2fdaf-85cb-4ee1-9e3b-ae25fc3d33d1 .shogun-image-content {
  
    align-items: center;
  
}

.s-faa2fdaf-85cb-4ee1-9e3b-ae25fc3d33d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-faa2fdaf-85cb-4ee1-9e3b-ae25fc3d33d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-faa2fdaf-85cb-4ee1-9e3b-ae25fc3d33d1.shogun-image {
  box-sizing: border-box;
}



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





  img.s-faa2fdaf-85cb-4ee1-9e3b-ae25fc3d33d1.shogun-image {
    
    
  }


.s-faa2fdaf-85cb-4ee1-9e3b-ae25fc3d33d1 .shogun-image-content {
  
    align-items: center;
  
}

.s-faa2fdaf-85cb-4ee1-9e3b-ae25fc3d33d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-faa2fdaf-85cb-4ee1-9e3b-ae25fc3d33d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-faa2fdaf-85cb-4ee1-9e3b-ae25fc3d33d1.shogun-image {
  box-sizing: border-box;
}



}
#s-92d95c04-a010-442b-8f06-c91ff5537761 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-92d95c04-a010-442b-8f06-c91ff5537761 .shogun-heading-component h3 {
  color: rgba(27, 58, 93, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 26px;
  
  
  
}



#s-2cfd35be-9b4b-46a3-be72-e852a99834f9 {
  margin-bottom: 30px;
min-height: 50px;
}








#s-2cfd35be-9b4b-46a3-be72-e852a99834f9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2cfd35be-9b4b-46a3-be72-e852a99834f9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a7e32223-4e40-432f-95be-5091a29cd877 {
  margin-left: auto;
margin-right: auto;
max-width: 200px;
text-align: center;
}







  img.s-a7e32223-4e40-432f-95be-5091a29cd877.shogun-image {
    
    
  }


.s-a7e32223-4e40-432f-95be-5091a29cd877 .shogun-image-content {
  
    align-items: center;
  
}

.s-a7e32223-4e40-432f-95be-5091a29cd877.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a7e32223-4e40-432f-95be-5091a29cd877.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a7e32223-4e40-432f-95be-5091a29cd877.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-a7e32223-4e40-432f-95be-5091a29cd877.shogun-image {
    
    
  }


.s-a7e32223-4e40-432f-95be-5091a29cd877 .shogun-image-content {
  
    align-items: center;
  
}

.s-a7e32223-4e40-432f-95be-5091a29cd877.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a7e32223-4e40-432f-95be-5091a29cd877.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a7e32223-4e40-432f-95be-5091a29cd877.shogun-image {
  box-sizing: border-box;
}



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





  img.s-a7e32223-4e40-432f-95be-5091a29cd877.shogun-image {
    
    
  }


.s-a7e32223-4e40-432f-95be-5091a29cd877 .shogun-image-content {
  
    align-items: center;
  
}

.s-a7e32223-4e40-432f-95be-5091a29cd877.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a7e32223-4e40-432f-95be-5091a29cd877.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a7e32223-4e40-432f-95be-5091a29cd877.shogun-image {
  box-sizing: border-box;
}



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





  img.s-a7e32223-4e40-432f-95be-5091a29cd877.shogun-image {
    
    
  }


.s-a7e32223-4e40-432f-95be-5091a29cd877 .shogun-image-content {
  
    align-items: center;
  
}

.s-a7e32223-4e40-432f-95be-5091a29cd877.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a7e32223-4e40-432f-95be-5091a29cd877.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a7e32223-4e40-432f-95be-5091a29cd877.shogun-image {
  box-sizing: border-box;
}



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





  img.s-a7e32223-4e40-432f-95be-5091a29cd877.shogun-image {
    
    
  }


.s-a7e32223-4e40-432f-95be-5091a29cd877 .shogun-image-content {
  
    align-items: center;
  
}

.s-a7e32223-4e40-432f-95be-5091a29cd877.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a7e32223-4e40-432f-95be-5091a29cd877.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a7e32223-4e40-432f-95be-5091a29cd877.shogun-image {
  box-sizing: border-box;
}



}
#s-667f4e71-8737-4135-8ab1-9b1cd05bc05e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-667f4e71-8737-4135-8ab1-9b1cd05bc05e .shogun-heading-component h3 {
  color: rgba(27, 58, 93, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 26px;
  
  
  
}



#s-7c2ca5c9-5b6e-4d83-801d-b0fb1eafe854 {
  margin-bottom: 30px;
min-height: 50px;
}








#s-7c2ca5c9-5b6e-4d83-801d-b0fb1eafe854 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7c2ca5c9-5b6e-4d83-801d-b0fb1eafe854.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5027d434-2eba-4934-977a-67979369d1fc {
  margin-left: auto;
margin-right: auto;
max-width: 200px;
text-align: center;
}







  img.s-5027d434-2eba-4934-977a-67979369d1fc.shogun-image {
    
    
  }


.s-5027d434-2eba-4934-977a-67979369d1fc .shogun-image-content {
  
    align-items: center;
  
}

.s-5027d434-2eba-4934-977a-67979369d1fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5027d434-2eba-4934-977a-67979369d1fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5027d434-2eba-4934-977a-67979369d1fc.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-5027d434-2eba-4934-977a-67979369d1fc.shogun-image {
    
    
  }


.s-5027d434-2eba-4934-977a-67979369d1fc .shogun-image-content {
  
    align-items: center;
  
}

.s-5027d434-2eba-4934-977a-67979369d1fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5027d434-2eba-4934-977a-67979369d1fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5027d434-2eba-4934-977a-67979369d1fc.shogun-image {
  box-sizing: border-box;
}



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





  img.s-5027d434-2eba-4934-977a-67979369d1fc.shogun-image {
    
    
  }


.s-5027d434-2eba-4934-977a-67979369d1fc .shogun-image-content {
  
    align-items: center;
  
}

.s-5027d434-2eba-4934-977a-67979369d1fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5027d434-2eba-4934-977a-67979369d1fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5027d434-2eba-4934-977a-67979369d1fc.shogun-image {
  box-sizing: border-box;
}



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





  img.s-5027d434-2eba-4934-977a-67979369d1fc.shogun-image {
    
    
  }


.s-5027d434-2eba-4934-977a-67979369d1fc .shogun-image-content {
  
    align-items: center;
  
}

.s-5027d434-2eba-4934-977a-67979369d1fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5027d434-2eba-4934-977a-67979369d1fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5027d434-2eba-4934-977a-67979369d1fc.shogun-image {
  box-sizing: border-box;
}



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





  img.s-5027d434-2eba-4934-977a-67979369d1fc.shogun-image {
    
    
  }


.s-5027d434-2eba-4934-977a-67979369d1fc .shogun-image-content {
  
    align-items: center;
  
}

.s-5027d434-2eba-4934-977a-67979369d1fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5027d434-2eba-4934-977a-67979369d1fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5027d434-2eba-4934-977a-67979369d1fc.shogun-image {
  box-sizing: border-box;
}



}
#s-09d1b3ae-296c-4ca2-a876-1edf322b9237 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-09d1b3ae-296c-4ca2-a876-1edf322b9237 .shogun-heading-component h3 {
  color: rgba(27, 58, 93, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 26px;
  
  
  
}



@media (min-width: 0px) {
[id="s-211633ab-e2e7-4103-8be9-c8af376edfbb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-211633ab-e2e7-4103-8be9-c8af376edfbb"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-211633ab-e2e7-4103-8be9-c8af376edfbb"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-211633ab-e2e7-4103-8be9-c8af376edfbb"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-41bb5d1f-f981-408d-85c1-e7630da81f25 {
  margin-bottom: 30px;
min-height: 50px;
}








#s-41bb5d1f-f981-408d-85c1-e7630da81f25 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-41bb5d1f-f981-408d-85c1-e7630da81f25.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fefaab1e-6576-4650-8d5c-9499ec913d5e {
  margin-left: auto;
margin-right: auto;
max-width: 200px;
text-align: center;
}







  img.s-fefaab1e-6576-4650-8d5c-9499ec913d5e.shogun-image {
    
    
  }


.s-fefaab1e-6576-4650-8d5c-9499ec913d5e .shogun-image-content {
  
    align-items: center;
  
}

.s-fefaab1e-6576-4650-8d5c-9499ec913d5e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fefaab1e-6576-4650-8d5c-9499ec913d5e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fefaab1e-6576-4650-8d5c-9499ec913d5e.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-fefaab1e-6576-4650-8d5c-9499ec913d5e.shogun-image {
    
    
  }


.s-fefaab1e-6576-4650-8d5c-9499ec913d5e .shogun-image-content {
  
    align-items: center;
  
}

.s-fefaab1e-6576-4650-8d5c-9499ec913d5e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fefaab1e-6576-4650-8d5c-9499ec913d5e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fefaab1e-6576-4650-8d5c-9499ec913d5e.shogun-image {
  box-sizing: border-box;
}



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





  img.s-fefaab1e-6576-4650-8d5c-9499ec913d5e.shogun-image {
    
    
  }


.s-fefaab1e-6576-4650-8d5c-9499ec913d5e .shogun-image-content {
  
    align-items: center;
  
}

.s-fefaab1e-6576-4650-8d5c-9499ec913d5e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fefaab1e-6576-4650-8d5c-9499ec913d5e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fefaab1e-6576-4650-8d5c-9499ec913d5e.shogun-image {
  box-sizing: border-box;
}



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





  img.s-fefaab1e-6576-4650-8d5c-9499ec913d5e.shogun-image {
    
    
  }


.s-fefaab1e-6576-4650-8d5c-9499ec913d5e .shogun-image-content {
  
    align-items: center;
  
}

.s-fefaab1e-6576-4650-8d5c-9499ec913d5e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fefaab1e-6576-4650-8d5c-9499ec913d5e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fefaab1e-6576-4650-8d5c-9499ec913d5e.shogun-image {
  box-sizing: border-box;
}



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





  img.s-fefaab1e-6576-4650-8d5c-9499ec913d5e.shogun-image {
    
    
  }


.s-fefaab1e-6576-4650-8d5c-9499ec913d5e .shogun-image-content {
  
    align-items: center;
  
}

.s-fefaab1e-6576-4650-8d5c-9499ec913d5e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fefaab1e-6576-4650-8d5c-9499ec913d5e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fefaab1e-6576-4650-8d5c-9499ec913d5e.shogun-image {
  box-sizing: border-box;
}



}
#s-1f9bdf32-91b9-4a6e-974e-4eb96fa079a8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1f9bdf32-91b9-4a6e-974e-4eb96fa079a8 .shogun-heading-component h3 {
  color: rgba(27, 58, 93, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 26px;
  
  
  
}



#s-9a105e63-8040-41d2-813a-7c842dfb5d0d {
  margin-bottom: 30px;
min-height: 50px;
}








#s-9a105e63-8040-41d2-813a-7c842dfb5d0d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9a105e63-8040-41d2-813a-7c842dfb5d0d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0145de62-c9c6-4d92-948a-1ddbd7f8102b {
  margin-left: auto;
margin-right: auto;
max-width: 200px;
text-align: center;
}







  img.s-0145de62-c9c6-4d92-948a-1ddbd7f8102b.shogun-image {
    
    
  }


.s-0145de62-c9c6-4d92-948a-1ddbd7f8102b .shogun-image-content {
  
    align-items: center;
  
}

.s-0145de62-c9c6-4d92-948a-1ddbd7f8102b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0145de62-c9c6-4d92-948a-1ddbd7f8102b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0145de62-c9c6-4d92-948a-1ddbd7f8102b.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-0145de62-c9c6-4d92-948a-1ddbd7f8102b.shogun-image {
    
    
  }


.s-0145de62-c9c6-4d92-948a-1ddbd7f8102b .shogun-image-content {
  
    align-items: center;
  
}

.s-0145de62-c9c6-4d92-948a-1ddbd7f8102b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0145de62-c9c6-4d92-948a-1ddbd7f8102b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0145de62-c9c6-4d92-948a-1ddbd7f8102b.shogun-image {
  box-sizing: border-box;
}



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





  img.s-0145de62-c9c6-4d92-948a-1ddbd7f8102b.shogun-image {
    
    
  }


.s-0145de62-c9c6-4d92-948a-1ddbd7f8102b .shogun-image-content {
  
    align-items: center;
  
}

.s-0145de62-c9c6-4d92-948a-1ddbd7f8102b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0145de62-c9c6-4d92-948a-1ddbd7f8102b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0145de62-c9c6-4d92-948a-1ddbd7f8102b.shogun-image {
  box-sizing: border-box;
}



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





  img.s-0145de62-c9c6-4d92-948a-1ddbd7f8102b.shogun-image {
    
    
  }


.s-0145de62-c9c6-4d92-948a-1ddbd7f8102b .shogun-image-content {
  
    align-items: center;
  
}

.s-0145de62-c9c6-4d92-948a-1ddbd7f8102b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0145de62-c9c6-4d92-948a-1ddbd7f8102b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0145de62-c9c6-4d92-948a-1ddbd7f8102b.shogun-image {
  box-sizing: border-box;
}



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





  img.s-0145de62-c9c6-4d92-948a-1ddbd7f8102b.shogun-image {
    
    
  }


.s-0145de62-c9c6-4d92-948a-1ddbd7f8102b .shogun-image-content {
  
    align-items: center;
  
}

.s-0145de62-c9c6-4d92-948a-1ddbd7f8102b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0145de62-c9c6-4d92-948a-1ddbd7f8102b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0145de62-c9c6-4d92-948a-1ddbd7f8102b.shogun-image {
  box-sizing: border-box;
}



}
#s-1414d0e0-4f4c-40cd-8c84-168ff661c8ab {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1414d0e0-4f4c-40cd-8c84-168ff661c8ab .shogun-heading-component h3 {
  color: rgba(27, 58, 93, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 26px;
  
  
  
}



#s-f1107cf1-8458-4829-ad62-f5b66f9716b2 {
  margin-bottom: 30px;
min-height: 50px;
}








#s-f1107cf1-8458-4829-ad62-f5b66f9716b2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f1107cf1-8458-4829-ad62-f5b66f9716b2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ff01db3c-8009-4141-9c56-674d1b9df69b {
  margin-left: auto;
margin-right: auto;
max-width: 200px;
text-align: center;
}







  img.s-ff01db3c-8009-4141-9c56-674d1b9df69b.shogun-image {
    
    
  }


.s-ff01db3c-8009-4141-9c56-674d1b9df69b .shogun-image-content {
  
    align-items: center;
  
}

.s-ff01db3c-8009-4141-9c56-674d1b9df69b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff01db3c-8009-4141-9c56-674d1b9df69b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff01db3c-8009-4141-9c56-674d1b9df69b.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-ff01db3c-8009-4141-9c56-674d1b9df69b.shogun-image {
    
    
  }


.s-ff01db3c-8009-4141-9c56-674d1b9df69b .shogun-image-content {
  
    align-items: center;
  
}

.s-ff01db3c-8009-4141-9c56-674d1b9df69b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff01db3c-8009-4141-9c56-674d1b9df69b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff01db3c-8009-4141-9c56-674d1b9df69b.shogun-image {
  box-sizing: border-box;
}



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





  img.s-ff01db3c-8009-4141-9c56-674d1b9df69b.shogun-image {
    
    
  }


.s-ff01db3c-8009-4141-9c56-674d1b9df69b .shogun-image-content {
  
    align-items: center;
  
}

.s-ff01db3c-8009-4141-9c56-674d1b9df69b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff01db3c-8009-4141-9c56-674d1b9df69b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff01db3c-8009-4141-9c56-674d1b9df69b.shogun-image {
  box-sizing: border-box;
}



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





  img.s-ff01db3c-8009-4141-9c56-674d1b9df69b.shogun-image {
    
    
  }


.s-ff01db3c-8009-4141-9c56-674d1b9df69b .shogun-image-content {
  
    align-items: center;
  
}

.s-ff01db3c-8009-4141-9c56-674d1b9df69b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff01db3c-8009-4141-9c56-674d1b9df69b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff01db3c-8009-4141-9c56-674d1b9df69b.shogun-image {
  box-sizing: border-box;
}



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





  img.s-ff01db3c-8009-4141-9c56-674d1b9df69b.shogun-image {
    
    
  }


.s-ff01db3c-8009-4141-9c56-674d1b9df69b .shogun-image-content {
  
    align-items: center;
  
}

.s-ff01db3c-8009-4141-9c56-674d1b9df69b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff01db3c-8009-4141-9c56-674d1b9df69b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff01db3c-8009-4141-9c56-674d1b9df69b.shogun-image {
  box-sizing: border-box;
}



}
#s-752e7aa7-2c22-4a9e-b82a-84df8125e1b4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-752e7aa7-2c22-4a9e-b82a-84df8125e1b4 .shogun-heading-component h3 {
  color: rgba(27, 58, 93, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 26px;
  
  
  
}



#s-15a90759-14f7-4bd7-82d9-771023edcb92 {
  margin-left: auto;
margin-right: auto;
padding-top: 60px;
padding-left: 20px;
padding-bottom: 60px;
padding-right: 20px;
min-height: 50px;
max-width: 80%;
}
@media (min-width: 768px) and (max-width: 991px){#s-15a90759-14f7-4bd7-82d9-771023edcb92 {
  max-width: 100%;
}
}@media (max-width: 767px){#s-15a90759-14f7-4bd7-82d9-771023edcb92 {
  max-width: 100%;
}
}
#s-15a90759-14f7-4bd7-82d9-771023edcb92 {
  background-image: url();
}








#s-15a90759-14f7-4bd7-82d9-771023edcb92 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-15a90759-14f7-4bd7-82d9-771023edcb92.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 767px){






#s-15a90759-14f7-4bd7-82d9-771023edcb92 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-15a90759-14f7-4bd7-82d9-771023edcb92.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
}
#s-33e5419e-45de-4681-8b6b-db20df92ba75 {
  margin-top: 0px;
margin-bottom: 30px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-33e5419e-45de-4681-8b6b-db20df92ba75 .shogun-heading-component h1 {
  color: rgba(19, 83, 14, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 36px;
  line-height: 1.2em;
  
  
}



@media (min-width: 0px) {
[id="s-8a8ff408-de7e-49be-8af4-78607edc0da4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8a8ff408-de7e-49be-8af4-78607edc0da4"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8a8ff408-de7e-49be-8af4-78607edc0da4"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8a8ff408-de7e-49be-8af4-78607edc0da4"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-eae3df74-a7d4-4ddc-a493-d48cf5119a9a {
  padding-bottom: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
text-align: center;
}







  img.s-eae3df74-a7d4-4ddc-a493-d48cf5119a9a.shogun-image {
    
    
  }


.s-eae3df74-a7d4-4ddc-a493-d48cf5119a9a .shogun-image-content {
  
    align-items: center;
  
}

.s-eae3df74-a7d4-4ddc-a493-d48cf5119a9a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eae3df74-a7d4-4ddc-a493-d48cf5119a9a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eae3df74-a7d4-4ddc-a493-d48cf5119a9a.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-eae3df74-a7d4-4ddc-a493-d48cf5119a9a.shogun-image {
    
    
  }


.s-eae3df74-a7d4-4ddc-a493-d48cf5119a9a .shogun-image-content {
  
    align-items: center;
  
}

.s-eae3df74-a7d4-4ddc-a493-d48cf5119a9a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eae3df74-a7d4-4ddc-a493-d48cf5119a9a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eae3df74-a7d4-4ddc-a493-d48cf5119a9a.shogun-image {
  box-sizing: border-box;
}



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





  img.s-eae3df74-a7d4-4ddc-a493-d48cf5119a9a.shogun-image {
    
    
  }


.s-eae3df74-a7d4-4ddc-a493-d48cf5119a9a .shogun-image-content {
  
    align-items: center;
  
}

.s-eae3df74-a7d4-4ddc-a493-d48cf5119a9a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eae3df74-a7d4-4ddc-a493-d48cf5119a9a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eae3df74-a7d4-4ddc-a493-d48cf5119a9a.shogun-image {
  box-sizing: border-box;
}



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





  img.s-eae3df74-a7d4-4ddc-a493-d48cf5119a9a.shogun-image {
    
    
  }


.s-eae3df74-a7d4-4ddc-a493-d48cf5119a9a .shogun-image-content {
  
    align-items: center;
  
}

.s-eae3df74-a7d4-4ddc-a493-d48cf5119a9a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eae3df74-a7d4-4ddc-a493-d48cf5119a9a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eae3df74-a7d4-4ddc-a493-d48cf5119a9a.shogun-image {
  box-sizing: border-box;
}



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





  img.s-eae3df74-a7d4-4ddc-a493-d48cf5119a9a.shogun-image {
    
    
  }


.s-eae3df74-a7d4-4ddc-a493-d48cf5119a9a .shogun-image-content {
  
    align-items: center;
  
}

.s-eae3df74-a7d4-4ddc-a493-d48cf5119a9a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eae3df74-a7d4-4ddc-a493-d48cf5119a9a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eae3df74-a7d4-4ddc-a493-d48cf5119a9a.shogun-image {
  box-sizing: border-box;
}



}
#s-292ab93a-ea0e-4c02-b495-59c430a5f311 {
  padding-top: 15px;
padding-bottom: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
text-align: center;
}







  img.s-292ab93a-ea0e-4c02-b495-59c430a5f311.shogun-image {
    
    
  }


.s-292ab93a-ea0e-4c02-b495-59c430a5f311 .shogun-image-content {
  
    align-items: center;
  
}

.s-292ab93a-ea0e-4c02-b495-59c430a5f311.shg-align-container {
  display: flex;
  justify-content: center
}

.s-292ab93a-ea0e-4c02-b495-59c430a5f311.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-292ab93a-ea0e-4c02-b495-59c430a5f311.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-292ab93a-ea0e-4c02-b495-59c430a5f311.shogun-image {
    
    
  }


.s-292ab93a-ea0e-4c02-b495-59c430a5f311 .shogun-image-content {
  
    align-items: center;
  
}

.s-292ab93a-ea0e-4c02-b495-59c430a5f311.shg-align-container {
  display: flex;
  justify-content: center
}

.s-292ab93a-ea0e-4c02-b495-59c430a5f311.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-292ab93a-ea0e-4c02-b495-59c430a5f311.shogun-image {
  box-sizing: border-box;
}



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





  img.s-292ab93a-ea0e-4c02-b495-59c430a5f311.shogun-image {
    
    
  }


.s-292ab93a-ea0e-4c02-b495-59c430a5f311 .shogun-image-content {
  
    align-items: center;
  
}

.s-292ab93a-ea0e-4c02-b495-59c430a5f311.shg-align-container {
  display: flex;
  justify-content: center
}

.s-292ab93a-ea0e-4c02-b495-59c430a5f311.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-292ab93a-ea0e-4c02-b495-59c430a5f311.shogun-image {
  box-sizing: border-box;
}



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





  img.s-292ab93a-ea0e-4c02-b495-59c430a5f311.shogun-image {
    
    
  }


.s-292ab93a-ea0e-4c02-b495-59c430a5f311 .shogun-image-content {
  
    align-items: center;
  
}

.s-292ab93a-ea0e-4c02-b495-59c430a5f311.shg-align-container {
  display: flex;
  justify-content: center
}

.s-292ab93a-ea0e-4c02-b495-59c430a5f311.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-292ab93a-ea0e-4c02-b495-59c430a5f311.shogun-image {
  box-sizing: border-box;
}



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





  img.s-292ab93a-ea0e-4c02-b495-59c430a5f311.shogun-image {
    
    
  }


.s-292ab93a-ea0e-4c02-b495-59c430a5f311 .shogun-image-content {
  
    align-items: center;
  
}

.s-292ab93a-ea0e-4c02-b495-59c430a5f311.shg-align-container {
  display: flex;
  justify-content: center
}

.s-292ab93a-ea0e-4c02-b495-59c430a5f311.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-292ab93a-ea0e-4c02-b495-59c430a5f311.shogun-image {
  box-sizing: border-box;
}



}
#s-b4f2080f-9210-45be-807a-8bf56e2b45f4 {
  margin-bottom: 30px;
padding-top: 30px;
padding-bottom: 30px;
}

#s-b435588d-158a-464f-9010-3c3cd305ad38 {
  min-height: 50px;
background-color: rgba(235, 254, 231, 1);
}








#s-b435588d-158a-464f-9010-3c3cd305ad38 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b435588d-158a-464f-9010-3c3cd305ad38.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-df5f6245-c76d-41bb-98a9-216923f7deb6 {
  margin-left: auto;
margin-right: auto;
padding-top: 60px;
padding-left: 15px;
padding-bottom: 60px;
padding-right: 15px;
min-height: 50px;
max-width: 80%;
}
@media (min-width: 768px) and (max-width: 991px){#s-df5f6245-c76d-41bb-98a9-216923f7deb6 {
  max-width: 100%;
}
}@media (max-width: 767px){#s-df5f6245-c76d-41bb-98a9-216923f7deb6 {
  max-width: 100%;
}
}
#s-df5f6245-c76d-41bb-98a9-216923f7deb6 {
  background-image: url();
}








#s-df5f6245-c76d-41bb-98a9-216923f7deb6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-df5f6245-c76d-41bb-98a9-216923f7deb6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 767px){






#s-df5f6245-c76d-41bb-98a9-216923f7deb6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-df5f6245-c76d-41bb-98a9-216923f7deb6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
}
#s-ff6bd980-375e-4973-aa75-5c02f1fcd975 {
  margin-top: 0px;
margin-bottom: 30px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ff6bd980-375e-4973-aa75-5c02f1fcd975 .shogun-heading-component h1 {
  color: rgba(19, 83, 14, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 36px;
  line-height: 1.2em;
  
  
}



#s-a13b9905-f097-4f29-ad99-2fe8107c1ee7 {
  text-align: left;
}

#s-78aec4cb-b146-41b0-a957-642738259108 {
  margin-top: 30px;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
border-radius: 50px;
max-width: 400px;
background-color: rgba(255, 90, 157, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-78aec4cb-b146-41b0-a957-642738259108:hover {background-color: rgba(250, 71, 145, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-78aec4cb-b146-41b0-a957-642738259108:active {background-color: rgba(255, 90, 157, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-78aec4cb-b146-41b0-a957-642738259108-root {
    text-align: center;
  }


#s-78aec4cb-b146-41b0-a957-642738259108.shg-btn {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  block ;
}
@media (min-width: 1200px){
  #s-78aec4cb-b146-41b0-a957-642738259108-root {
    text-align: center;
  }


#s-78aec4cb-b146-41b0-a957-642738259108.shg-btn {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-78aec4cb-b146-41b0-a957-642738259108-root {
    text-align: center;
  }


#s-78aec4cb-b146-41b0-a957-642738259108.shg-btn {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-78aec4cb-b146-41b0-a957-642738259108-root {
    text-align: center;
  }


#s-78aec4cb-b146-41b0-a957-642738259108.shg-btn {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  block ;
}
}@media (max-width: 767px){
  #s-78aec4cb-b146-41b0-a957-642738259108-root {
    text-align: center;
  }


#s-78aec4cb-b146-41b0-a957-642738259108.shg-btn {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  block ;
}
}
#s-e705567e-2901-43fb-ad38-881d5cc38253 {
  margin-top: 15px;
}

#s-426a44e8-6d8c-42f1-b2f9-18f5b2b1f815 {
  margin-left: auto;
margin-right: auto;
padding-top: 61px;
padding-left: 20px;
padding-bottom: 30px;
padding-right: 20px;
min-height: 50px;
max-width: 80%;
}
@media (min-width: 768px) and (max-width: 991px){#s-426a44e8-6d8c-42f1-b2f9-18f5b2b1f815 {
  max-width: 100%;
}
}@media (max-width: 767px){#s-426a44e8-6d8c-42f1-b2f9-18f5b2b1f815 {
  max-width: 100%;
}
}
#s-426a44e8-6d8c-42f1-b2f9-18f5b2b1f815 {
  background-image: url();
}








#s-426a44e8-6d8c-42f1-b2f9-18f5b2b1f815 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-426a44e8-6d8c-42f1-b2f9-18f5b2b1f815.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 767px){






#s-426a44e8-6d8c-42f1-b2f9-18f5b2b1f815 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-426a44e8-6d8c-42f1-b2f9-18f5b2b1f815.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
}
#s-5c134b48-5121-4d20-837a-0ed830dcfeb3 {
  margin-top: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5c134b48-5121-4d20-837a-0ed830dcfeb3 .shogun-heading-component h1 {
  color: rgba(19, 83, 14, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 36px;
  line-height: 1.2em;
  
  
}



#s-a46bc461-cf42-4697-b514-129fe25717bb {
  margin-top: 30px;
margin-bottom: 30px;
}

@media (min-width: 0px) {
[id="s-a764a475-647e-46d7-92ce-a356c40f9eee"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a764a475-647e-46d7-92ce-a356c40f9eee"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-a764a475-647e-46d7-92ce-a356c40f9eee"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-a764a475-647e-46d7-92ce-a356c40f9eee"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-3bd5a614-153e-4d59-a2cd-4b0c03b7a6fc {
  min-height: 50px;
}








#s-3bd5a614-153e-4d59-a2cd-4b0c03b7a6fc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3bd5a614-153e-4d59-a2cd-4b0c03b7a6fc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0ad37055-bb65-490b-8a1e-42d89ace52b3 {
  margin-top: 15px;
margin-bottom: 30px;
padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(235, 254, 231, 1);
}








#s-0ad37055-bb65-490b-8a1e-42d89ace52b3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0ad37055-bb65-490b-8a1e-42d89ace52b3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f7c761aa-1522-4e97-ab1e-5529fb917761 {
  margin-bottom: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
max-width: 400px;
text-align: center;
}







  img.s-f7c761aa-1522-4e97-ab1e-5529fb917761.shogun-image {
    
    
  }


.s-f7c761aa-1522-4e97-ab1e-5529fb917761 .shogun-image-content {
  
    align-items: center;
  
}

.s-f7c761aa-1522-4e97-ab1e-5529fb917761.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f7c761aa-1522-4e97-ab1e-5529fb917761.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f7c761aa-1522-4e97-ab1e-5529fb917761.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-f7c761aa-1522-4e97-ab1e-5529fb917761.shogun-image {
    
    
  }


.s-f7c761aa-1522-4e97-ab1e-5529fb917761 .shogun-image-content {
  
    align-items: center;
  
}

.s-f7c761aa-1522-4e97-ab1e-5529fb917761.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f7c761aa-1522-4e97-ab1e-5529fb917761.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f7c761aa-1522-4e97-ab1e-5529fb917761.shogun-image {
  box-sizing: border-box;
}



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





  img.s-f7c761aa-1522-4e97-ab1e-5529fb917761.shogun-image {
    
    
  }


.s-f7c761aa-1522-4e97-ab1e-5529fb917761 .shogun-image-content {
  
    align-items: center;
  
}

.s-f7c761aa-1522-4e97-ab1e-5529fb917761.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f7c761aa-1522-4e97-ab1e-5529fb917761.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f7c761aa-1522-4e97-ab1e-5529fb917761.shogun-image {
  box-sizing: border-box;
}



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





  img.s-f7c761aa-1522-4e97-ab1e-5529fb917761.shogun-image {
    
    
  }


.s-f7c761aa-1522-4e97-ab1e-5529fb917761 .shogun-image-content {
  
    align-items: center;
  
}

.s-f7c761aa-1522-4e97-ab1e-5529fb917761.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f7c761aa-1522-4e97-ab1e-5529fb917761.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f7c761aa-1522-4e97-ab1e-5529fb917761.shogun-image {
  box-sizing: border-box;
}



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





  img.s-f7c761aa-1522-4e97-ab1e-5529fb917761.shogun-image {
    
    
  }


.s-f7c761aa-1522-4e97-ab1e-5529fb917761 .shogun-image-content {
  
    align-items: center;
  
}

.s-f7c761aa-1522-4e97-ab1e-5529fb917761.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f7c761aa-1522-4e97-ab1e-5529fb917761.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f7c761aa-1522-4e97-ab1e-5529fb917761.shogun-image {
  box-sizing: border-box;
}



}
#s-9353246b-6e80-4b91-a5cc-51a707c81fdb {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-e6b2fe43-545d-49f8-8f2d-700a14a5fc8b {
  min-height: 50px;
}








#s-e6b2fe43-545d-49f8-8f2d-700a14a5fc8b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e6b2fe43-545d-49f8-8f2d-700a14a5fc8b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6ca653fe-5857-4d03-8d2d-069f5000b89d {
  margin-top: 15px;
margin-bottom: 30px;
padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(235, 254, 231, 1);
}








#s-6ca653fe-5857-4d03-8d2d-069f5000b89d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6ca653fe-5857-4d03-8d2d-069f5000b89d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-407f53ea-909f-4ac5-90ba-c1022c81aeb1 {
  margin-bottom: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
max-width: 400px;
text-align: center;
}







  img.s-407f53ea-909f-4ac5-90ba-c1022c81aeb1.shogun-image {
    
    
  }


.s-407f53ea-909f-4ac5-90ba-c1022c81aeb1 .shogun-image-content {
  
    align-items: center;
  
}

.s-407f53ea-909f-4ac5-90ba-c1022c81aeb1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-407f53ea-909f-4ac5-90ba-c1022c81aeb1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-407f53ea-909f-4ac5-90ba-c1022c81aeb1.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-407f53ea-909f-4ac5-90ba-c1022c81aeb1.shogun-image {
    
    
  }


.s-407f53ea-909f-4ac5-90ba-c1022c81aeb1 .shogun-image-content {
  
    align-items: center;
  
}

.s-407f53ea-909f-4ac5-90ba-c1022c81aeb1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-407f53ea-909f-4ac5-90ba-c1022c81aeb1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-407f53ea-909f-4ac5-90ba-c1022c81aeb1.shogun-image {
  box-sizing: border-box;
}



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





  img.s-407f53ea-909f-4ac5-90ba-c1022c81aeb1.shogun-image {
    
    
  }


.s-407f53ea-909f-4ac5-90ba-c1022c81aeb1 .shogun-image-content {
  
    align-items: center;
  
}

.s-407f53ea-909f-4ac5-90ba-c1022c81aeb1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-407f53ea-909f-4ac5-90ba-c1022c81aeb1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-407f53ea-909f-4ac5-90ba-c1022c81aeb1.shogun-image {
  box-sizing: border-box;
}



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





  img.s-407f53ea-909f-4ac5-90ba-c1022c81aeb1.shogun-image {
    
    
  }


.s-407f53ea-909f-4ac5-90ba-c1022c81aeb1 .shogun-image-content {
  
    align-items: center;
  
}

.s-407f53ea-909f-4ac5-90ba-c1022c81aeb1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-407f53ea-909f-4ac5-90ba-c1022c81aeb1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-407f53ea-909f-4ac5-90ba-c1022c81aeb1.shogun-image {
  box-sizing: border-box;
}



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





  img.s-407f53ea-909f-4ac5-90ba-c1022c81aeb1.shogun-image {
    
    
  }


.s-407f53ea-909f-4ac5-90ba-c1022c81aeb1 .shogun-image-content {
  
    align-items: center;
  
}

.s-407f53ea-909f-4ac5-90ba-c1022c81aeb1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-407f53ea-909f-4ac5-90ba-c1022c81aeb1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-407f53ea-909f-4ac5-90ba-c1022c81aeb1.shogun-image {
  box-sizing: border-box;
}



}
#s-84421e06-52a0-4d53-8f15-36dc3d4717f2 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-5519c0f4-ddca-45cf-a8ef-3fb7e9f7b636 {
  min-height: 50px;
}








#s-5519c0f4-ddca-45cf-a8ef-3fb7e9f7b636 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5519c0f4-ddca-45cf-a8ef-3fb7e9f7b636.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-52ba60e5-c15e-4424-9e81-64c2af41726b {
  margin-top: 15px;
margin-bottom: 30px;
padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(235, 254, 231, 1);
}








#s-52ba60e5-c15e-4424-9e81-64c2af41726b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-52ba60e5-c15e-4424-9e81-64c2af41726b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e3df4af6-b6d8-4808-9926-88384d838422 {
  margin-bottom: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
max-width: 400px;
text-align: center;
}







  img.s-e3df4af6-b6d8-4808-9926-88384d838422.shogun-image {
    
    
  }


.s-e3df4af6-b6d8-4808-9926-88384d838422 .shogun-image-content {
  
    align-items: center;
  
}

.s-e3df4af6-b6d8-4808-9926-88384d838422.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e3df4af6-b6d8-4808-9926-88384d838422.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e3df4af6-b6d8-4808-9926-88384d838422.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-e3df4af6-b6d8-4808-9926-88384d838422.shogun-image {
    
    
  }


.s-e3df4af6-b6d8-4808-9926-88384d838422 .shogun-image-content {
  
    align-items: center;
  
}

.s-e3df4af6-b6d8-4808-9926-88384d838422.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e3df4af6-b6d8-4808-9926-88384d838422.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e3df4af6-b6d8-4808-9926-88384d838422.shogun-image {
  box-sizing: border-box;
}



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





  img.s-e3df4af6-b6d8-4808-9926-88384d838422.shogun-image {
    
    
  }


.s-e3df4af6-b6d8-4808-9926-88384d838422 .shogun-image-content {
  
    align-items: center;
  
}

.s-e3df4af6-b6d8-4808-9926-88384d838422.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e3df4af6-b6d8-4808-9926-88384d838422.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e3df4af6-b6d8-4808-9926-88384d838422.shogun-image {
  box-sizing: border-box;
}



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





  img.s-e3df4af6-b6d8-4808-9926-88384d838422.shogun-image {
    
    
  }


.s-e3df4af6-b6d8-4808-9926-88384d838422 .shogun-image-content {
  
    align-items: center;
  
}

.s-e3df4af6-b6d8-4808-9926-88384d838422.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e3df4af6-b6d8-4808-9926-88384d838422.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e3df4af6-b6d8-4808-9926-88384d838422.shogun-image {
  box-sizing: border-box;
}



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





  img.s-e3df4af6-b6d8-4808-9926-88384d838422.shogun-image {
    
    
  }


.s-e3df4af6-b6d8-4808-9926-88384d838422 .shogun-image-content {
  
    align-items: center;
  
}

.s-e3df4af6-b6d8-4808-9926-88384d838422.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e3df4af6-b6d8-4808-9926-88384d838422.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e3df4af6-b6d8-4808-9926-88384d838422.shogun-image {
  box-sizing: border-box;
}



}
#s-42b382b8-e6ee-4735-990e-c5285f9cd1ef {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-febdce6b-3ca8-43f0-89d7-4290328d7dad {
  margin-left: auto;
margin-right: auto;
padding-top: 30px;
padding-left: 15px;
padding-bottom: 60px;
padding-right: 15px;
min-height: 50px;
max-width: 80%;
}
@media (min-width: 768px) and (max-width: 991px){#s-febdce6b-3ca8-43f0-89d7-4290328d7dad {
  max-width: 100%;
}
}@media (max-width: 767px){#s-febdce6b-3ca8-43f0-89d7-4290328d7dad {
  max-width: 100%;
}
}
#s-febdce6b-3ca8-43f0-89d7-4290328d7dad {
  background-image: url();
}








#s-febdce6b-3ca8-43f0-89d7-4290328d7dad > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-febdce6b-3ca8-43f0-89d7-4290328d7dad.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 767px){






#s-febdce6b-3ca8-43f0-89d7-4290328d7dad > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-febdce6b-3ca8-43f0-89d7-4290328d7dad.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
}
#s-02ed544f-a134-4e9e-b7fb-f67f4b65d88e {
  margin-top: 0px;
margin-bottom: 30px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-02ed544f-a134-4e9e-b7fb-f67f4b65d88e .shogun-heading-component h1 {
  color: rgba(19, 83, 14, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 36px;
  line-height: 1.2em;
  
  
}



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

#s-cc667b09-1c82-40ab-9ee7-f87e0d9b8ca2 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-cc667b09-1c82-40ab-9ee7-f87e0d9b8ca2 .shg-sld-dot {
  background-color: rgba(69, 206, 154, 1);
}

#s-cc667b09-1c82-40ab-9ee7-f87e0d9b8ca2 .shg-sld-nav-button.shg-sld-left,
#s-cc667b09-1c82-40ab-9ee7-f87e0d9b8ca2 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(69, 206, 154, 1);
}

#s-ce0a68f1-3bff-44d5-ac78-409e8d52bb11 {
  min-height: 50px;
}








#s-ce0a68f1-3bff-44d5-ac78-409e8d52bb11 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ce0a68f1-3bff-44d5-ac78-409e8d52bb11.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d780a2e3-1c1e-4f22-ac04-6f0bcc57e407 {
  margin-bottom: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
max-width: 400px;
text-align: center;
}







  img.s-d780a2e3-1c1e-4f22-ac04-6f0bcc57e407.shogun-image {
    
    
  }


.s-d780a2e3-1c1e-4f22-ac04-6f0bcc57e407 .shogun-image-content {
  
    align-items: center;
  
}

.s-d780a2e3-1c1e-4f22-ac04-6f0bcc57e407.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d780a2e3-1c1e-4f22-ac04-6f0bcc57e407.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d780a2e3-1c1e-4f22-ac04-6f0bcc57e407.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-d780a2e3-1c1e-4f22-ac04-6f0bcc57e407.shogun-image {
    
    
  }


.s-d780a2e3-1c1e-4f22-ac04-6f0bcc57e407 .shogun-image-content {
  
    align-items: center;
  
}

.s-d780a2e3-1c1e-4f22-ac04-6f0bcc57e407.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d780a2e3-1c1e-4f22-ac04-6f0bcc57e407.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d780a2e3-1c1e-4f22-ac04-6f0bcc57e407.shogun-image {
  box-sizing: border-box;
}



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





  img.s-d780a2e3-1c1e-4f22-ac04-6f0bcc57e407.shogun-image {
    
    
  }


.s-d780a2e3-1c1e-4f22-ac04-6f0bcc57e407 .shogun-image-content {
  
    align-items: center;
  
}

.s-d780a2e3-1c1e-4f22-ac04-6f0bcc57e407.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d780a2e3-1c1e-4f22-ac04-6f0bcc57e407.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d780a2e3-1c1e-4f22-ac04-6f0bcc57e407.shogun-image {
  box-sizing: border-box;
}



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





  img.s-d780a2e3-1c1e-4f22-ac04-6f0bcc57e407.shogun-image {
    
    
  }


.s-d780a2e3-1c1e-4f22-ac04-6f0bcc57e407 .shogun-image-content {
  
    align-items: center;
  
}

.s-d780a2e3-1c1e-4f22-ac04-6f0bcc57e407.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d780a2e3-1c1e-4f22-ac04-6f0bcc57e407.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d780a2e3-1c1e-4f22-ac04-6f0bcc57e407.shogun-image {
  box-sizing: border-box;
}



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





  img.s-d780a2e3-1c1e-4f22-ac04-6f0bcc57e407.shogun-image {
    
    
  }


.s-d780a2e3-1c1e-4f22-ac04-6f0bcc57e407 .shogun-image-content {
  
    align-items: center;
  
}

.s-d780a2e3-1c1e-4f22-ac04-6f0bcc57e407.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d780a2e3-1c1e-4f22-ac04-6f0bcc57e407.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d780a2e3-1c1e-4f22-ac04-6f0bcc57e407.shogun-image {
  box-sizing: border-box;
}



}
#s-17afe253-cbda-45a9-b883-dee4aab963d0 {
  margin-top: 15px;
margin-bottom: 30px;
padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(235, 254, 231, 1);
}








#s-17afe253-cbda-45a9-b883-dee4aab963d0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-17afe253-cbda-45a9-b883-dee4aab963d0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6f5db968-3e15-4e31-a4f3-45f91e246977 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-971359c6-af8a-47a8-9562-900026dda506 {
  min-height: 50px;
}








#s-971359c6-af8a-47a8-9562-900026dda506 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-971359c6-af8a-47a8-9562-900026dda506.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3f91e5f4-f98c-43e3-826f-90284958fa5a {
  margin-bottom: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
max-width: 400px;
text-align: center;
}







  img.s-3f91e5f4-f98c-43e3-826f-90284958fa5a.shogun-image {
    
    
  }


.s-3f91e5f4-f98c-43e3-826f-90284958fa5a .shogun-image-content {
  
    align-items: center;
  
}

.s-3f91e5f4-f98c-43e3-826f-90284958fa5a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3f91e5f4-f98c-43e3-826f-90284958fa5a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3f91e5f4-f98c-43e3-826f-90284958fa5a.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-3f91e5f4-f98c-43e3-826f-90284958fa5a.shogun-image {
    
    
  }


.s-3f91e5f4-f98c-43e3-826f-90284958fa5a .shogun-image-content {
  
    align-items: center;
  
}

.s-3f91e5f4-f98c-43e3-826f-90284958fa5a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3f91e5f4-f98c-43e3-826f-90284958fa5a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3f91e5f4-f98c-43e3-826f-90284958fa5a.shogun-image {
  box-sizing: border-box;
}



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





  img.s-3f91e5f4-f98c-43e3-826f-90284958fa5a.shogun-image {
    
    
  }


.s-3f91e5f4-f98c-43e3-826f-90284958fa5a .shogun-image-content {
  
    align-items: center;
  
}

.s-3f91e5f4-f98c-43e3-826f-90284958fa5a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3f91e5f4-f98c-43e3-826f-90284958fa5a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3f91e5f4-f98c-43e3-826f-90284958fa5a.shogun-image {
  box-sizing: border-box;
}



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





  img.s-3f91e5f4-f98c-43e3-826f-90284958fa5a.shogun-image {
    
    
  }


.s-3f91e5f4-f98c-43e3-826f-90284958fa5a .shogun-image-content {
  
    align-items: center;
  
}

.s-3f91e5f4-f98c-43e3-826f-90284958fa5a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3f91e5f4-f98c-43e3-826f-90284958fa5a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3f91e5f4-f98c-43e3-826f-90284958fa5a.shogun-image {
  box-sizing: border-box;
}



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





  img.s-3f91e5f4-f98c-43e3-826f-90284958fa5a.shogun-image {
    
    
  }


.s-3f91e5f4-f98c-43e3-826f-90284958fa5a .shogun-image-content {
  
    align-items: center;
  
}

.s-3f91e5f4-f98c-43e3-826f-90284958fa5a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3f91e5f4-f98c-43e3-826f-90284958fa5a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3f91e5f4-f98c-43e3-826f-90284958fa5a.shogun-image {
  box-sizing: border-box;
}



}
#s-67940cb8-ce9c-4bd0-9c5f-502afc2a26a6 {
  margin-top: 15px;
margin-bottom: 30px;
padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(235, 254, 231, 1);
}








#s-67940cb8-ce9c-4bd0-9c5f-502afc2a26a6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-67940cb8-ce9c-4bd0-9c5f-502afc2a26a6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5df1dc32-26de-4961-88a2-65f2e88114be {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-f49d965c-0ed9-43a8-a94e-ce86194dd205 {
  min-height: 50px;
}








#s-f49d965c-0ed9-43a8-a94e-ce86194dd205 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f49d965c-0ed9-43a8-a94e-ce86194dd205.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a6e3eecf-0dad-4f56-9e12-13c439d066e8 {
  margin-bottom: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
max-width: 400px;
text-align: center;
}







  img.s-a6e3eecf-0dad-4f56-9e12-13c439d066e8.shogun-image {
    
    
  }


.s-a6e3eecf-0dad-4f56-9e12-13c439d066e8 .shogun-image-content {
  
    align-items: center;
  
}

.s-a6e3eecf-0dad-4f56-9e12-13c439d066e8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a6e3eecf-0dad-4f56-9e12-13c439d066e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a6e3eecf-0dad-4f56-9e12-13c439d066e8.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-a6e3eecf-0dad-4f56-9e12-13c439d066e8.shogun-image {
    
    
  }


.s-a6e3eecf-0dad-4f56-9e12-13c439d066e8 .shogun-image-content {
  
    align-items: center;
  
}

.s-a6e3eecf-0dad-4f56-9e12-13c439d066e8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a6e3eecf-0dad-4f56-9e12-13c439d066e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a6e3eecf-0dad-4f56-9e12-13c439d066e8.shogun-image {
  box-sizing: border-box;
}



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





  img.s-a6e3eecf-0dad-4f56-9e12-13c439d066e8.shogun-image {
    
    
  }


.s-a6e3eecf-0dad-4f56-9e12-13c439d066e8 .shogun-image-content {
  
    align-items: center;
  
}

.s-a6e3eecf-0dad-4f56-9e12-13c439d066e8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a6e3eecf-0dad-4f56-9e12-13c439d066e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a6e3eecf-0dad-4f56-9e12-13c439d066e8.shogun-image {
  box-sizing: border-box;
}



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





  img.s-a6e3eecf-0dad-4f56-9e12-13c439d066e8.shogun-image {
    
    
  }


.s-a6e3eecf-0dad-4f56-9e12-13c439d066e8 .shogun-image-content {
  
    align-items: center;
  
}

.s-a6e3eecf-0dad-4f56-9e12-13c439d066e8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a6e3eecf-0dad-4f56-9e12-13c439d066e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a6e3eecf-0dad-4f56-9e12-13c439d066e8.shogun-image {
  box-sizing: border-box;
}



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





  img.s-a6e3eecf-0dad-4f56-9e12-13c439d066e8.shogun-image {
    
    
  }


.s-a6e3eecf-0dad-4f56-9e12-13c439d066e8 .shogun-image-content {
  
    align-items: center;
  
}

.s-a6e3eecf-0dad-4f56-9e12-13c439d066e8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a6e3eecf-0dad-4f56-9e12-13c439d066e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a6e3eecf-0dad-4f56-9e12-13c439d066e8.shogun-image {
  box-sizing: border-box;
}



}
#s-ecd14fd1-67d7-4f0b-834b-f3dccbcae8c1 {
  margin-top: 15px;
margin-bottom: 30px;
padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(235, 254, 231, 1);
}








#s-ecd14fd1-67d7-4f0b-834b-f3dccbcae8c1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ecd14fd1-67d7-4f0b-834b-f3dccbcae8c1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fdbffb71-fd3d-405a-a0ec-3da1a81f9154 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-9cda9f71-d3ec-4cb9-a3f8-889f6a89ecbd {
  min-height: 50px;
}








#s-9cda9f71-d3ec-4cb9-a3f8-889f6a89ecbd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9cda9f71-d3ec-4cb9-a3f8-889f6a89ecbd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d6dbdf70-90b6-4b0f-ac8c-cd8bc5ef3464 {
  margin-bottom: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
max-width: 400px;
text-align: center;
}







  img.s-d6dbdf70-90b6-4b0f-ac8c-cd8bc5ef3464.shogun-image {
    
    
  }


.s-d6dbdf70-90b6-4b0f-ac8c-cd8bc5ef3464 .shogun-image-content {
  
    align-items: center;
  
}

.s-d6dbdf70-90b6-4b0f-ac8c-cd8bc5ef3464.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d6dbdf70-90b6-4b0f-ac8c-cd8bc5ef3464.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d6dbdf70-90b6-4b0f-ac8c-cd8bc5ef3464.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-d6dbdf70-90b6-4b0f-ac8c-cd8bc5ef3464.shogun-image {
    
    
  }


.s-d6dbdf70-90b6-4b0f-ac8c-cd8bc5ef3464 .shogun-image-content {
  
    align-items: center;
  
}

.s-d6dbdf70-90b6-4b0f-ac8c-cd8bc5ef3464.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d6dbdf70-90b6-4b0f-ac8c-cd8bc5ef3464.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d6dbdf70-90b6-4b0f-ac8c-cd8bc5ef3464.shogun-image {
  box-sizing: border-box;
}



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





  img.s-d6dbdf70-90b6-4b0f-ac8c-cd8bc5ef3464.shogun-image {
    
    
  }


.s-d6dbdf70-90b6-4b0f-ac8c-cd8bc5ef3464 .shogun-image-content {
  
    align-items: center;
  
}

.s-d6dbdf70-90b6-4b0f-ac8c-cd8bc5ef3464.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d6dbdf70-90b6-4b0f-ac8c-cd8bc5ef3464.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d6dbdf70-90b6-4b0f-ac8c-cd8bc5ef3464.shogun-image {
  box-sizing: border-box;
}



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





  img.s-d6dbdf70-90b6-4b0f-ac8c-cd8bc5ef3464.shogun-image {
    
    
  }


.s-d6dbdf70-90b6-4b0f-ac8c-cd8bc5ef3464 .shogun-image-content {
  
    align-items: center;
  
}

.s-d6dbdf70-90b6-4b0f-ac8c-cd8bc5ef3464.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d6dbdf70-90b6-4b0f-ac8c-cd8bc5ef3464.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d6dbdf70-90b6-4b0f-ac8c-cd8bc5ef3464.shogun-image {
  box-sizing: border-box;
}



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





  img.s-d6dbdf70-90b6-4b0f-ac8c-cd8bc5ef3464.shogun-image {
    
    
  }


.s-d6dbdf70-90b6-4b0f-ac8c-cd8bc5ef3464 .shogun-image-content {
  
    align-items: center;
  
}

.s-d6dbdf70-90b6-4b0f-ac8c-cd8bc5ef3464.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d6dbdf70-90b6-4b0f-ac8c-cd8bc5ef3464.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d6dbdf70-90b6-4b0f-ac8c-cd8bc5ef3464.shogun-image {
  box-sizing: border-box;
}



}
#s-4ef4406e-b344-4157-83af-4fd4550a54c1 {
  margin-top: 15px;
margin-bottom: 30px;
padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(235, 254, 231, 1);
}








#s-4ef4406e-b344-4157-83af-4fd4550a54c1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4ef4406e-b344-4157-83af-4fd4550a54c1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6a423161-8691-417d-81f1-4e887e8094b0 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-1fb678fd-6689-42ca-8d2d-b9609090f32d {
  min-height: 50px;
}








#s-1fb678fd-6689-42ca-8d2d-b9609090f32d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1fb678fd-6689-42ca-8d2d-b9609090f32d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ca80539f-88e7-46a7-93a2-5612941588ff {
  margin-bottom: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
max-width: 400px;
text-align: center;
}







  img.s-ca80539f-88e7-46a7-93a2-5612941588ff.shogun-image {
    
    
  }


.s-ca80539f-88e7-46a7-93a2-5612941588ff .shogun-image-content {
  
    align-items: center;
  
}

.s-ca80539f-88e7-46a7-93a2-5612941588ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ca80539f-88e7-46a7-93a2-5612941588ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ca80539f-88e7-46a7-93a2-5612941588ff.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-ca80539f-88e7-46a7-93a2-5612941588ff.shogun-image {
    
    
  }


.s-ca80539f-88e7-46a7-93a2-5612941588ff .shogun-image-content {
  
    align-items: center;
  
}

.s-ca80539f-88e7-46a7-93a2-5612941588ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ca80539f-88e7-46a7-93a2-5612941588ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ca80539f-88e7-46a7-93a2-5612941588ff.shogun-image {
  box-sizing: border-box;
}



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





  img.s-ca80539f-88e7-46a7-93a2-5612941588ff.shogun-image {
    
    
  }


.s-ca80539f-88e7-46a7-93a2-5612941588ff .shogun-image-content {
  
    align-items: center;
  
}

.s-ca80539f-88e7-46a7-93a2-5612941588ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ca80539f-88e7-46a7-93a2-5612941588ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ca80539f-88e7-46a7-93a2-5612941588ff.shogun-image {
  box-sizing: border-box;
}



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





  img.s-ca80539f-88e7-46a7-93a2-5612941588ff.shogun-image {
    
    
  }


.s-ca80539f-88e7-46a7-93a2-5612941588ff .shogun-image-content {
  
    align-items: center;
  
}

.s-ca80539f-88e7-46a7-93a2-5612941588ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ca80539f-88e7-46a7-93a2-5612941588ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ca80539f-88e7-46a7-93a2-5612941588ff.shogun-image {
  box-sizing: border-box;
}



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





  img.s-ca80539f-88e7-46a7-93a2-5612941588ff.shogun-image {
    
    
  }


.s-ca80539f-88e7-46a7-93a2-5612941588ff .shogun-image-content {
  
    align-items: center;
  
}

.s-ca80539f-88e7-46a7-93a2-5612941588ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ca80539f-88e7-46a7-93a2-5612941588ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ca80539f-88e7-46a7-93a2-5612941588ff.shogun-image {
  box-sizing: border-box;
}



}
#s-d10e9928-f219-44be-9c54-02b7f397b4fe {
  margin-top: 15px;
margin-bottom: 30px;
padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(235, 254, 231, 1);
}








#s-d10e9928-f219-44be-9c54-02b7f397b4fe > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d10e9928-f219-44be-9c54-02b7f397b4fe.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a70fe854-27a7-4963-9f24-a0b1e303175c {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-3b2abd33-8c74-40a9-bf64-41422733c1a7 {
  min-height: 50px;
}








#s-3b2abd33-8c74-40a9-bf64-41422733c1a7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3b2abd33-8c74-40a9-bf64-41422733c1a7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-27d65ed8-0b8a-4b37-8947-950fdd4ffe30 {
  margin-bottom: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
max-width: 400px;
text-align: center;
}







  img.s-27d65ed8-0b8a-4b37-8947-950fdd4ffe30.shogun-image {
    
    
  }


.s-27d65ed8-0b8a-4b37-8947-950fdd4ffe30 .shogun-image-content {
  
    align-items: center;
  
}

.s-27d65ed8-0b8a-4b37-8947-950fdd4ffe30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-27d65ed8-0b8a-4b37-8947-950fdd4ffe30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-27d65ed8-0b8a-4b37-8947-950fdd4ffe30.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-27d65ed8-0b8a-4b37-8947-950fdd4ffe30.shogun-image {
    
    
  }


.s-27d65ed8-0b8a-4b37-8947-950fdd4ffe30 .shogun-image-content {
  
    align-items: center;
  
}

.s-27d65ed8-0b8a-4b37-8947-950fdd4ffe30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-27d65ed8-0b8a-4b37-8947-950fdd4ffe30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-27d65ed8-0b8a-4b37-8947-950fdd4ffe30.shogun-image {
  box-sizing: border-box;
}



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





  img.s-27d65ed8-0b8a-4b37-8947-950fdd4ffe30.shogun-image {
    
    
  }


.s-27d65ed8-0b8a-4b37-8947-950fdd4ffe30 .shogun-image-content {
  
    align-items: center;
  
}

.s-27d65ed8-0b8a-4b37-8947-950fdd4ffe30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-27d65ed8-0b8a-4b37-8947-950fdd4ffe30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-27d65ed8-0b8a-4b37-8947-950fdd4ffe30.shogun-image {
  box-sizing: border-box;
}



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





  img.s-27d65ed8-0b8a-4b37-8947-950fdd4ffe30.shogun-image {
    
    
  }


.s-27d65ed8-0b8a-4b37-8947-950fdd4ffe30 .shogun-image-content {
  
    align-items: center;
  
}

.s-27d65ed8-0b8a-4b37-8947-950fdd4ffe30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-27d65ed8-0b8a-4b37-8947-950fdd4ffe30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-27d65ed8-0b8a-4b37-8947-950fdd4ffe30.shogun-image {
  box-sizing: border-box;
}



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





  img.s-27d65ed8-0b8a-4b37-8947-950fdd4ffe30.shogun-image {
    
    
  }


.s-27d65ed8-0b8a-4b37-8947-950fdd4ffe30 .shogun-image-content {
  
    align-items: center;
  
}

.s-27d65ed8-0b8a-4b37-8947-950fdd4ffe30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-27d65ed8-0b8a-4b37-8947-950fdd4ffe30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-27d65ed8-0b8a-4b37-8947-950fdd4ffe30.shogun-image {
  box-sizing: border-box;
}



}
#s-cc6f608d-5c24-4045-9f7d-7be31cf14fc5 {
  margin-top: 15px;
margin-bottom: 30px;
padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(235, 254, 231, 1);
}








#s-cc6f608d-5c24-4045-9f7d-7be31cf14fc5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cc6f608d-5c24-4045-9f7d-7be31cf14fc5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a69cb7f6-544c-40cf-aa24-5caf59cdf545 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-18c9d2cd-e00e-4e64-a627-22eeed38e40e {
  min-height: 50px;
}








#s-18c9d2cd-e00e-4e64-a627-22eeed38e40e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-18c9d2cd-e00e-4e64-a627-22eeed38e40e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-789324c7-02d6-4c57-bd9e-a309c0dcbcaf {
  margin-bottom: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
max-width: 400px;
text-align: center;
}







  img.s-789324c7-02d6-4c57-bd9e-a309c0dcbcaf.shogun-image {
    
    
  }


.s-789324c7-02d6-4c57-bd9e-a309c0dcbcaf .shogun-image-content {
  
    align-items: center;
  
}

.s-789324c7-02d6-4c57-bd9e-a309c0dcbcaf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-789324c7-02d6-4c57-bd9e-a309c0dcbcaf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-789324c7-02d6-4c57-bd9e-a309c0dcbcaf.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-789324c7-02d6-4c57-bd9e-a309c0dcbcaf.shogun-image {
    
    
  }


.s-789324c7-02d6-4c57-bd9e-a309c0dcbcaf .shogun-image-content {
  
    align-items: center;
  
}

.s-789324c7-02d6-4c57-bd9e-a309c0dcbcaf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-789324c7-02d6-4c57-bd9e-a309c0dcbcaf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-789324c7-02d6-4c57-bd9e-a309c0dcbcaf.shogun-image {
  box-sizing: border-box;
}



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





  img.s-789324c7-02d6-4c57-bd9e-a309c0dcbcaf.shogun-image {
    
    
  }


.s-789324c7-02d6-4c57-bd9e-a309c0dcbcaf .shogun-image-content {
  
    align-items: center;
  
}

.s-789324c7-02d6-4c57-bd9e-a309c0dcbcaf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-789324c7-02d6-4c57-bd9e-a309c0dcbcaf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-789324c7-02d6-4c57-bd9e-a309c0dcbcaf.shogun-image {
  box-sizing: border-box;
}



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





  img.s-789324c7-02d6-4c57-bd9e-a309c0dcbcaf.shogun-image {
    
    
  }


.s-789324c7-02d6-4c57-bd9e-a309c0dcbcaf .shogun-image-content {
  
    align-items: center;
  
}

.s-789324c7-02d6-4c57-bd9e-a309c0dcbcaf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-789324c7-02d6-4c57-bd9e-a309c0dcbcaf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-789324c7-02d6-4c57-bd9e-a309c0dcbcaf.shogun-image {
  box-sizing: border-box;
}



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





  img.s-789324c7-02d6-4c57-bd9e-a309c0dcbcaf.shogun-image {
    
    
  }


.s-789324c7-02d6-4c57-bd9e-a309c0dcbcaf .shogun-image-content {
  
    align-items: center;
  
}

.s-789324c7-02d6-4c57-bd9e-a309c0dcbcaf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-789324c7-02d6-4c57-bd9e-a309c0dcbcaf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-789324c7-02d6-4c57-bd9e-a309c0dcbcaf.shogun-image {
  box-sizing: border-box;
}



}
#s-97f92e89-7973-4e34-8927-76dbb14234ea {
  margin-top: 15px;
margin-bottom: 30px;
padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(235, 254, 231, 1);
}








#s-97f92e89-7973-4e34-8927-76dbb14234ea > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-97f92e89-7973-4e34-8927-76dbb14234ea.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5315caf0-965e-4c82-b822-88719fd35990 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-ae7dc68a-3705-45e1-ade9-86b32cb7f90b {
  min-height: 50px;
}








#s-ae7dc68a-3705-45e1-ade9-86b32cb7f90b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ae7dc68a-3705-45e1-ade9-86b32cb7f90b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-23ce798e-c940-4603-9c1f-29e5edea0062 {
  margin-bottom: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
max-width: 400px;
text-align: center;
}







  img.s-23ce798e-c940-4603-9c1f-29e5edea0062.shogun-image {
    
    
  }


.s-23ce798e-c940-4603-9c1f-29e5edea0062 .shogun-image-content {
  
    align-items: center;
  
}

.s-23ce798e-c940-4603-9c1f-29e5edea0062.shg-align-container {
  display: flex;
  justify-content: center
}

.s-23ce798e-c940-4603-9c1f-29e5edea0062.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-23ce798e-c940-4603-9c1f-29e5edea0062.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-23ce798e-c940-4603-9c1f-29e5edea0062.shogun-image {
    
    
  }


.s-23ce798e-c940-4603-9c1f-29e5edea0062 .shogun-image-content {
  
    align-items: center;
  
}

.s-23ce798e-c940-4603-9c1f-29e5edea0062.shg-align-container {
  display: flex;
  justify-content: center
}

.s-23ce798e-c940-4603-9c1f-29e5edea0062.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-23ce798e-c940-4603-9c1f-29e5edea0062.shogun-image {
  box-sizing: border-box;
}



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





  img.s-23ce798e-c940-4603-9c1f-29e5edea0062.shogun-image {
    
    
  }


.s-23ce798e-c940-4603-9c1f-29e5edea0062 .shogun-image-content {
  
    align-items: center;
  
}

.s-23ce798e-c940-4603-9c1f-29e5edea0062.shg-align-container {
  display: flex;
  justify-content: center
}

.s-23ce798e-c940-4603-9c1f-29e5edea0062.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-23ce798e-c940-4603-9c1f-29e5edea0062.shogun-image {
  box-sizing: border-box;
}



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





  img.s-23ce798e-c940-4603-9c1f-29e5edea0062.shogun-image {
    
    
  }


.s-23ce798e-c940-4603-9c1f-29e5edea0062 .shogun-image-content {
  
    align-items: center;
  
}

.s-23ce798e-c940-4603-9c1f-29e5edea0062.shg-align-container {
  display: flex;
  justify-content: center
}

.s-23ce798e-c940-4603-9c1f-29e5edea0062.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-23ce798e-c940-4603-9c1f-29e5edea0062.shogun-image {
  box-sizing: border-box;
}



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





  img.s-23ce798e-c940-4603-9c1f-29e5edea0062.shogun-image {
    
    
  }


.s-23ce798e-c940-4603-9c1f-29e5edea0062 .shogun-image-content {
  
    align-items: center;
  
}

.s-23ce798e-c940-4603-9c1f-29e5edea0062.shg-align-container {
  display: flex;
  justify-content: center
}

.s-23ce798e-c940-4603-9c1f-29e5edea0062.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-23ce798e-c940-4603-9c1f-29e5edea0062.shogun-image {
  box-sizing: border-box;
}



}
#s-0fcbd31c-51b6-466f-808a-cbc84ad0bad4 {
  margin-top: 15px;
margin-bottom: 30px;
padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(235, 254, 231, 1);
}








#s-0fcbd31c-51b6-466f-808a-cbc84ad0bad4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0fcbd31c-51b6-466f-808a-cbc84ad0bad4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6e27eb39-d27b-4d67-8d56-baeb39ece47c {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-362d78e1-a22b-4800-a819-76eac8a9855a {
  min-height: 50px;
}








#s-362d78e1-a22b-4800-a819-76eac8a9855a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-362d78e1-a22b-4800-a819-76eac8a9855a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5e941590-f88e-4707-b8bb-80363082c968 {
  margin-bottom: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
max-width: 400px;
text-align: center;
}







  img.s-5e941590-f88e-4707-b8bb-80363082c968.shogun-image {
    
    
  }


.s-5e941590-f88e-4707-b8bb-80363082c968 .shogun-image-content {
  
    align-items: center;
  
}

.s-5e941590-f88e-4707-b8bb-80363082c968.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e941590-f88e-4707-b8bb-80363082c968.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e941590-f88e-4707-b8bb-80363082c968.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-5e941590-f88e-4707-b8bb-80363082c968.shogun-image {
    
    
  }


.s-5e941590-f88e-4707-b8bb-80363082c968 .shogun-image-content {
  
    align-items: center;
  
}

.s-5e941590-f88e-4707-b8bb-80363082c968.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e941590-f88e-4707-b8bb-80363082c968.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e941590-f88e-4707-b8bb-80363082c968.shogun-image {
  box-sizing: border-box;
}



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





  img.s-5e941590-f88e-4707-b8bb-80363082c968.shogun-image {
    
    
  }


.s-5e941590-f88e-4707-b8bb-80363082c968 .shogun-image-content {
  
    align-items: center;
  
}

.s-5e941590-f88e-4707-b8bb-80363082c968.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e941590-f88e-4707-b8bb-80363082c968.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e941590-f88e-4707-b8bb-80363082c968.shogun-image {
  box-sizing: border-box;
}



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





  img.s-5e941590-f88e-4707-b8bb-80363082c968.shogun-image {
    
    
  }


.s-5e941590-f88e-4707-b8bb-80363082c968 .shogun-image-content {
  
    align-items: center;
  
}

.s-5e941590-f88e-4707-b8bb-80363082c968.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e941590-f88e-4707-b8bb-80363082c968.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e941590-f88e-4707-b8bb-80363082c968.shogun-image {
  box-sizing: border-box;
}



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





  img.s-5e941590-f88e-4707-b8bb-80363082c968.shogun-image {
    
    
  }


.s-5e941590-f88e-4707-b8bb-80363082c968 .shogun-image-content {
  
    align-items: center;
  
}

.s-5e941590-f88e-4707-b8bb-80363082c968.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e941590-f88e-4707-b8bb-80363082c968.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e941590-f88e-4707-b8bb-80363082c968.shogun-image {
  box-sizing: border-box;
}



}
#s-c1748c8b-9c5a-46fe-b072-2018a722dad8 {
  margin-top: 15px;
margin-bottom: 30px;
padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(235, 254, 231, 1);
}








#s-c1748c8b-9c5a-46fe-b072-2018a722dad8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c1748c8b-9c5a-46fe-b072-2018a722dad8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3c93234a-1625-4b3d-b5cb-467a0c0f0c0c {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-49f84541-0c0f-40a5-a831-942fe2720a5d {
  margin-bottom: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
max-width: 400px;
text-align: center;
}







  img.s-49f84541-0c0f-40a5-a831-942fe2720a5d.shogun-image {
    
    
  }


.s-49f84541-0c0f-40a5-a831-942fe2720a5d .shogun-image-content {
  
    align-items: center;
  
}

.s-49f84541-0c0f-40a5-a831-942fe2720a5d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-49f84541-0c0f-40a5-a831-942fe2720a5d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-49f84541-0c0f-40a5-a831-942fe2720a5d.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-49f84541-0c0f-40a5-a831-942fe2720a5d.shogun-image {
    
    
  }


.s-49f84541-0c0f-40a5-a831-942fe2720a5d .shogun-image-content {
  
    align-items: center;
  
}

.s-49f84541-0c0f-40a5-a831-942fe2720a5d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-49f84541-0c0f-40a5-a831-942fe2720a5d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-49f84541-0c0f-40a5-a831-942fe2720a5d.shogun-image {
  box-sizing: border-box;
}



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





  img.s-49f84541-0c0f-40a5-a831-942fe2720a5d.shogun-image {
    
    
  }


.s-49f84541-0c0f-40a5-a831-942fe2720a5d .shogun-image-content {
  
    align-items: center;
  
}

.s-49f84541-0c0f-40a5-a831-942fe2720a5d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-49f84541-0c0f-40a5-a831-942fe2720a5d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-49f84541-0c0f-40a5-a831-942fe2720a5d.shogun-image {
  box-sizing: border-box;
}



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





  img.s-49f84541-0c0f-40a5-a831-942fe2720a5d.shogun-image {
    
    
  }


.s-49f84541-0c0f-40a5-a831-942fe2720a5d .shogun-image-content {
  
    align-items: center;
  
}

.s-49f84541-0c0f-40a5-a831-942fe2720a5d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-49f84541-0c0f-40a5-a831-942fe2720a5d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-49f84541-0c0f-40a5-a831-942fe2720a5d.shogun-image {
  box-sizing: border-box;
}



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





  img.s-49f84541-0c0f-40a5-a831-942fe2720a5d.shogun-image {
    
    
  }


.s-49f84541-0c0f-40a5-a831-942fe2720a5d .shogun-image-content {
  
    align-items: center;
  
}

.s-49f84541-0c0f-40a5-a831-942fe2720a5d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-49f84541-0c0f-40a5-a831-942fe2720a5d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-49f84541-0c0f-40a5-a831-942fe2720a5d.shogun-image {
  box-sizing: border-box;
}



}
#s-f95387df-1aa8-4588-821c-eaaa6747cd36 {
  margin-top: 15px;
margin-bottom: 30px;
padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(235, 254, 231, 1);
}








#s-f95387df-1aa8-4588-821c-eaaa6747cd36 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f95387df-1aa8-4588-821c-eaaa6747cd36.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f79a9296-9e80-4f02-ae24-417c778e46ef {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-ef5eb017-0b45-4295-8153-3d8b3a2bf799 {
  padding-left: 20px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(235, 254, 231, 1);
}








#s-ef5eb017-0b45-4295-8153-3d8b3a2bf799 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ef5eb017-0b45-4295-8153-3d8b3a2bf799.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7913c89e-6ba7-404b-b399-f0bfbf478e18 {
  margin-left: auto;
margin-right: auto;
padding-top: 60px;
padding-left: 15px;
padding-bottom: 60px;
padding-right: 15px;
min-height: 50px;
max-width: 80%;
}
@media (min-width: 768px) and (max-width: 991px){#s-7913c89e-6ba7-404b-b399-f0bfbf478e18 {
  max-width: 100%;
}
}@media (max-width: 767px){#s-7913c89e-6ba7-404b-b399-f0bfbf478e18 {
  max-width: 100%;
}
}
#s-7913c89e-6ba7-404b-b399-f0bfbf478e18 {
  background-image: url();
}








#s-7913c89e-6ba7-404b-b399-f0bfbf478e18 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7913c89e-6ba7-404b-b399-f0bfbf478e18.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 767px){






#s-7913c89e-6ba7-404b-b399-f0bfbf478e18 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7913c89e-6ba7-404b-b399-f0bfbf478e18.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
}
#s-21379187-1ea1-4913-863f-6dc3ec71ab3a {
  margin-top: 0px;
margin-bottom: 30px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-21379187-1ea1-4913-863f-6dc3ec71ab3a .shogun-heading-component h1 {
  color: rgba(19, 83, 14, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 36px;
  line-height: 1.2em;
  
  
}



#s-ebb34e14-f6c2-4d6a-a8af-18edc893ecb4 {
  margin-top: 0px;
margin-bottom: 30px;
}

#s-091d6f37-884b-4108-abd0-3c9eb4776444 {
  margin-bottom: 30px;
text-align: center;
}







  img.s-091d6f37-884b-4108-abd0-3c9eb4776444.shogun-image {
    
    
  }


.s-091d6f37-884b-4108-abd0-3c9eb4776444 .shogun-image-content {
  
    align-items: center;
  
}

.s-091d6f37-884b-4108-abd0-3c9eb4776444.shg-align-container {
  display: flex;
  justify-content: center
}

.s-091d6f37-884b-4108-abd0-3c9eb4776444.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-091d6f37-884b-4108-abd0-3c9eb4776444.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-091d6f37-884b-4108-abd0-3c9eb4776444.shogun-image {
    
    
  }


.s-091d6f37-884b-4108-abd0-3c9eb4776444 .shogun-image-content {
  
    align-items: center;
  
}

.s-091d6f37-884b-4108-abd0-3c9eb4776444.shg-align-container {
  display: flex;
  justify-content: center
}

.s-091d6f37-884b-4108-abd0-3c9eb4776444.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-091d6f37-884b-4108-abd0-3c9eb4776444.shogun-image {
  box-sizing: border-box;
}



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





  img.s-091d6f37-884b-4108-abd0-3c9eb4776444.shogun-image {
    
    
  }


.s-091d6f37-884b-4108-abd0-3c9eb4776444 .shogun-image-content {
  
    align-items: center;
  
}

.s-091d6f37-884b-4108-abd0-3c9eb4776444.shg-align-container {
  display: flex;
  justify-content: center
}

.s-091d6f37-884b-4108-abd0-3c9eb4776444.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-091d6f37-884b-4108-abd0-3c9eb4776444.shogun-image {
  box-sizing: border-box;
}



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





  img.s-091d6f37-884b-4108-abd0-3c9eb4776444.shogun-image {
    
    
  }


.s-091d6f37-884b-4108-abd0-3c9eb4776444 .shogun-image-content {
  
    align-items: center;
  
}

.s-091d6f37-884b-4108-abd0-3c9eb4776444.shg-align-container {
  display: flex;
  justify-content: center
}

.s-091d6f37-884b-4108-abd0-3c9eb4776444.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-091d6f37-884b-4108-abd0-3c9eb4776444.shogun-image {
  box-sizing: border-box;
}



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





  img.s-091d6f37-884b-4108-abd0-3c9eb4776444.shogun-image {
    
    
  }


.s-091d6f37-884b-4108-abd0-3c9eb4776444 .shogun-image-content {
  
    align-items: center;
  
}

.s-091d6f37-884b-4108-abd0-3c9eb4776444.shg-align-container {
  display: flex;
  justify-content: center
}

.s-091d6f37-884b-4108-abd0-3c9eb4776444.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-091d6f37-884b-4108-abd0-3c9eb4776444.shogun-image {
  box-sizing: border-box;
}



}
#s-96e3c27f-fed9-4f16-a45d-0c366bcc5c84 {
  margin-top: 30px;
margin-bottom: 30px;
}

#s-1bd28026-2c40-4558-b272-af30fd79da86 {
  box-shadow:5px 5px 10px 5px rgba(0, 0, 0, 0.35);
margin-top: 0px;
margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
min-height: 50px;
max-width: 1000px;
background-color: rgba(255, 255, 255, 1);
}








#s-1bd28026-2c40-4558-b272-af30fd79da86 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1bd28026-2c40-4558-b272-af30fd79da86.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3bdd1d49-2b6f-49df-9963-6e73327c8a7e {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-3bdd1d49-2b6f-49df-9963-6e73327c8a7e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3bdd1d49-2b6f-49df-9963-6e73327c8a7e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-3bdd1d49-2b6f-49df-9963-6e73327c8a7e"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3bdd1d49-2b6f-49df-9963-6e73327c8a7e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-3bdd1d49-2b6f-49df-9963-6e73327c8a7e"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3bdd1d49-2b6f-49df-9963-6e73327c8a7e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-3bdd1d49-2b6f-49df-9963-6e73327c8a7e"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

}

#s-63bbe58b-5329-42d6-926e-5dc5b66c80d3 {
  min-height: 50px;
}








#s-63bbe58b-5329-42d6-926e-5dc5b66c80d3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-63bbe58b-5329-42d6-926e-5dc5b66c80d3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2e432f37-400b-4b6b-8bbd-3521acc2414d {
  text-align: center;
}







  img.s-2e432f37-400b-4b6b-8bbd-3521acc2414d.shogun-image {
    
    
  }


.s-2e432f37-400b-4b6b-8bbd-3521acc2414d .shogun-image-content {
  
    align-items: center;
  
}

.s-2e432f37-400b-4b6b-8bbd-3521acc2414d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e432f37-400b-4b6b-8bbd-3521acc2414d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e432f37-400b-4b6b-8bbd-3521acc2414d.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-2e432f37-400b-4b6b-8bbd-3521acc2414d.shogun-image {
    
    
  }


.s-2e432f37-400b-4b6b-8bbd-3521acc2414d .shogun-image-content {
  
    align-items: center;
  
}

.s-2e432f37-400b-4b6b-8bbd-3521acc2414d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e432f37-400b-4b6b-8bbd-3521acc2414d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e432f37-400b-4b6b-8bbd-3521acc2414d.shogun-image {
  box-sizing: border-box;
}



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





  img.s-2e432f37-400b-4b6b-8bbd-3521acc2414d.shogun-image {
    
    
  }


.s-2e432f37-400b-4b6b-8bbd-3521acc2414d .shogun-image-content {
  
    align-items: center;
  
}

.s-2e432f37-400b-4b6b-8bbd-3521acc2414d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e432f37-400b-4b6b-8bbd-3521acc2414d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e432f37-400b-4b6b-8bbd-3521acc2414d.shogun-image {
  box-sizing: border-box;
}



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





  img.s-2e432f37-400b-4b6b-8bbd-3521acc2414d.shogun-image {
    
    
  }


.s-2e432f37-400b-4b6b-8bbd-3521acc2414d .shogun-image-content {
  
    align-items: center;
  
}

.s-2e432f37-400b-4b6b-8bbd-3521acc2414d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e432f37-400b-4b6b-8bbd-3521acc2414d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e432f37-400b-4b6b-8bbd-3521acc2414d.shogun-image {
  box-sizing: border-box;
}



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





  img.s-2e432f37-400b-4b6b-8bbd-3521acc2414d.shogun-image {
    
    
  }


.s-2e432f37-400b-4b6b-8bbd-3521acc2414d .shogun-image-content {
  
    align-items: center;
  
}

.s-2e432f37-400b-4b6b-8bbd-3521acc2414d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e432f37-400b-4b6b-8bbd-3521acc2414d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e432f37-400b-4b6b-8bbd-3521acc2414d.shogun-image {
  box-sizing: border-box;
}



}
#s-b6874c3e-c82a-4d7c-8c21-58a21bbacb7d {
  min-height: 50px;
}








#s-b6874c3e-c82a-4d7c-8c21-58a21bbacb7d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b6874c3e-c82a-4d7c-8c21-58a21bbacb7d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-743d1ccd-bfbe-4229-81a7-7ed9d7cfb331 {
  box-shadow:5px 5px 10px 5px rgba(0, 0, 0, 0.35);
margin-top: 0px;
margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
min-height: 50px;
max-width: 1000px;
background-color: rgba(255, 255, 255, 1);
}








#s-743d1ccd-bfbe-4229-81a7-7ed9d7cfb331 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-743d1ccd-bfbe-4229-81a7-7ed9d7cfb331.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fdd7014e-6ef1-4be9-94fa-058f2ad45485 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-fdd7014e-6ef1-4be9-94fa-058f2ad45485"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fdd7014e-6ef1-4be9-94fa-058f2ad45485"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-fdd7014e-6ef1-4be9-94fa-058f2ad45485"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-fdd7014e-6ef1-4be9-94fa-058f2ad45485"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-fdd7014e-6ef1-4be9-94fa-058f2ad45485"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-fdd7014e-6ef1-4be9-94fa-058f2ad45485"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-fdd7014e-6ef1-4be9-94fa-058f2ad45485"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

}

#s-54aec027-daa4-4f66-bfff-3c9575d86ffc {
  min-height: 50px;
}








#s-54aec027-daa4-4f66-bfff-3c9575d86ffc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-54aec027-daa4-4f66-bfff-3c9575d86ffc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b43b9540-ba32-4e6f-a411-e014f5194429 {
  text-align: center;
}







  img.s-b43b9540-ba32-4e6f-a411-e014f5194429.shogun-image {
    
    
  }


.s-b43b9540-ba32-4e6f-a411-e014f5194429 .shogun-image-content {
  
    align-items: center;
  
}

.s-b43b9540-ba32-4e6f-a411-e014f5194429.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b43b9540-ba32-4e6f-a411-e014f5194429.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b43b9540-ba32-4e6f-a411-e014f5194429.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-b43b9540-ba32-4e6f-a411-e014f5194429.shogun-image {
    
    
  }


.s-b43b9540-ba32-4e6f-a411-e014f5194429 .shogun-image-content {
  
    align-items: center;
  
}

.s-b43b9540-ba32-4e6f-a411-e014f5194429.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b43b9540-ba32-4e6f-a411-e014f5194429.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b43b9540-ba32-4e6f-a411-e014f5194429.shogun-image {
  box-sizing: border-box;
}



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





  img.s-b43b9540-ba32-4e6f-a411-e014f5194429.shogun-image {
    
    
  }


.s-b43b9540-ba32-4e6f-a411-e014f5194429 .shogun-image-content {
  
    align-items: center;
  
}

.s-b43b9540-ba32-4e6f-a411-e014f5194429.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b43b9540-ba32-4e6f-a411-e014f5194429.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b43b9540-ba32-4e6f-a411-e014f5194429.shogun-image {
  box-sizing: border-box;
}



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





  img.s-b43b9540-ba32-4e6f-a411-e014f5194429.shogun-image {
    
    
  }


.s-b43b9540-ba32-4e6f-a411-e014f5194429 .shogun-image-content {
  
    align-items: center;
  
}

.s-b43b9540-ba32-4e6f-a411-e014f5194429.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b43b9540-ba32-4e6f-a411-e014f5194429.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b43b9540-ba32-4e6f-a411-e014f5194429.shogun-image {
  box-sizing: border-box;
}



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





  img.s-b43b9540-ba32-4e6f-a411-e014f5194429.shogun-image {
    
    
  }


.s-b43b9540-ba32-4e6f-a411-e014f5194429 .shogun-image-content {
  
    align-items: center;
  
}

.s-b43b9540-ba32-4e6f-a411-e014f5194429.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b43b9540-ba32-4e6f-a411-e014f5194429.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b43b9540-ba32-4e6f-a411-e014f5194429.shogun-image {
  box-sizing: border-box;
}



}
#s-6039029a-a1f6-42cc-bc85-1078ced1de88 {
  min-height: 50px;
}








#s-6039029a-a1f6-42cc-bc85-1078ced1de88 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6039029a-a1f6-42cc-bc85-1078ced1de88.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7f1f0186-7f74-4d0e-b3b3-d22a25585817 {
  box-shadow:5px 5px 10px 5px rgba(0, 0, 0, 0.35);
margin-top: 0px;
margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
min-height: 50px;
max-width: 1000px;
background-color: rgba(255, 255, 255, 1);
}








#s-7f1f0186-7f74-4d0e-b3b3-d22a25585817 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7f1f0186-7f74-4d0e-b3b3-d22a25585817.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f6bcdef9-dd9a-4fc2-8526-aee68de27707 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-f6bcdef9-dd9a-4fc2-8526-aee68de27707"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f6bcdef9-dd9a-4fc2-8526-aee68de27707"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-f6bcdef9-dd9a-4fc2-8526-aee68de27707"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f6bcdef9-dd9a-4fc2-8526-aee68de27707"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-f6bcdef9-dd9a-4fc2-8526-aee68de27707"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f6bcdef9-dd9a-4fc2-8526-aee68de27707"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-f6bcdef9-dd9a-4fc2-8526-aee68de27707"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

}

#s-adb3dcf2-f095-486a-bb09-6f1f95481739 {
  min-height: 50px;
}








#s-adb3dcf2-f095-486a-bb09-6f1f95481739 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-adb3dcf2-f095-486a-bb09-6f1f95481739.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-054f0364-a1ad-46fe-b140-af71454fac86 {
  text-align: center;
}







  img.s-054f0364-a1ad-46fe-b140-af71454fac86.shogun-image {
    
    
  }


.s-054f0364-a1ad-46fe-b140-af71454fac86 .shogun-image-content {
  
    align-items: center;
  
}

.s-054f0364-a1ad-46fe-b140-af71454fac86.shg-align-container {
  display: flex;
  justify-content: center
}

.s-054f0364-a1ad-46fe-b140-af71454fac86.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-054f0364-a1ad-46fe-b140-af71454fac86.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-054f0364-a1ad-46fe-b140-af71454fac86.shogun-image {
    
    
  }


.s-054f0364-a1ad-46fe-b140-af71454fac86 .shogun-image-content {
  
    align-items: center;
  
}

.s-054f0364-a1ad-46fe-b140-af71454fac86.shg-align-container {
  display: flex;
  justify-content: center
}

.s-054f0364-a1ad-46fe-b140-af71454fac86.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-054f0364-a1ad-46fe-b140-af71454fac86.shogun-image {
  box-sizing: border-box;
}



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





  img.s-054f0364-a1ad-46fe-b140-af71454fac86.shogun-image {
    
    
  }


.s-054f0364-a1ad-46fe-b140-af71454fac86 .shogun-image-content {
  
    align-items: center;
  
}

.s-054f0364-a1ad-46fe-b140-af71454fac86.shg-align-container {
  display: flex;
  justify-content: center
}

.s-054f0364-a1ad-46fe-b140-af71454fac86.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-054f0364-a1ad-46fe-b140-af71454fac86.shogun-image {
  box-sizing: border-box;
}



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





  img.s-054f0364-a1ad-46fe-b140-af71454fac86.shogun-image {
    
    
  }


.s-054f0364-a1ad-46fe-b140-af71454fac86 .shogun-image-content {
  
    align-items: center;
  
}

.s-054f0364-a1ad-46fe-b140-af71454fac86.shg-align-container {
  display: flex;
  justify-content: center
}

.s-054f0364-a1ad-46fe-b140-af71454fac86.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-054f0364-a1ad-46fe-b140-af71454fac86.shogun-image {
  box-sizing: border-box;
}



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





  img.s-054f0364-a1ad-46fe-b140-af71454fac86.shogun-image {
    
    
  }


.s-054f0364-a1ad-46fe-b140-af71454fac86 .shogun-image-content {
  
    align-items: center;
  
}

.s-054f0364-a1ad-46fe-b140-af71454fac86.shg-align-container {
  display: flex;
  justify-content: center
}

.s-054f0364-a1ad-46fe-b140-af71454fac86.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-054f0364-a1ad-46fe-b140-af71454fac86.shogun-image {
  box-sizing: border-box;
}



}
#s-2fec0c9f-3099-4ecc-ac71-3e5139c6e5ac {
  min-height: 50px;
}








#s-2fec0c9f-3099-4ecc-ac71-3e5139c6e5ac > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2fec0c9f-3099-4ecc-ac71-3e5139c6e5ac.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fa56cf11-afec-4a70-9846-1c641fdf1609 {
  margin-top: 30px;
margin-bottom: 30px;
}

#s-f9b9cdf1-7cf3-445b-94a6-62ef4e223423 {
  box-shadow:5px 5px 10px 5px rgba(0, 0, 0, 0.35);
margin-top: 0px;
margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
min-height: 50px;
max-width: 1000px;
background-color: rgba(255, 255, 255, 1);
}








#s-f9b9cdf1-7cf3-445b-94a6-62ef4e223423 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f9b9cdf1-7cf3-445b-94a6-62ef4e223423.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d8273ddc-4274-47ac-b783-593d4ebbfbf1 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-d8273ddc-4274-47ac-b783-593d4ebbfbf1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d8273ddc-4274-47ac-b783-593d4ebbfbf1"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-d8273ddc-4274-47ac-b783-593d4ebbfbf1"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d8273ddc-4274-47ac-b783-593d4ebbfbf1"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-d8273ddc-4274-47ac-b783-593d4ebbfbf1"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d8273ddc-4274-47ac-b783-593d4ebbfbf1"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-d8273ddc-4274-47ac-b783-593d4ebbfbf1"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

}

#s-a433ca4a-7d59-49dd-ae39-9a2960da7e96 {
  min-height: 50px;
}








#s-a433ca4a-7d59-49dd-ae39-9a2960da7e96 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a433ca4a-7d59-49dd-ae39-9a2960da7e96.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8a38d99b-b537-4cc7-98bd-fdb583edbebd {
  text-align: center;
}







  img.s-8a38d99b-b537-4cc7-98bd-fdb583edbebd.shogun-image {
    
    
  }


.s-8a38d99b-b537-4cc7-98bd-fdb583edbebd .shogun-image-content {
  
    align-items: center;
  
}

.s-8a38d99b-b537-4cc7-98bd-fdb583edbebd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8a38d99b-b537-4cc7-98bd-fdb583edbebd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8a38d99b-b537-4cc7-98bd-fdb583edbebd.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-8a38d99b-b537-4cc7-98bd-fdb583edbebd.shogun-image {
    
    
  }


.s-8a38d99b-b537-4cc7-98bd-fdb583edbebd .shogun-image-content {
  
    align-items: center;
  
}

.s-8a38d99b-b537-4cc7-98bd-fdb583edbebd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8a38d99b-b537-4cc7-98bd-fdb583edbebd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8a38d99b-b537-4cc7-98bd-fdb583edbebd.shogun-image {
  box-sizing: border-box;
}



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





  img.s-8a38d99b-b537-4cc7-98bd-fdb583edbebd.shogun-image {
    
    
  }


.s-8a38d99b-b537-4cc7-98bd-fdb583edbebd .shogun-image-content {
  
    align-items: center;
  
}

.s-8a38d99b-b537-4cc7-98bd-fdb583edbebd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8a38d99b-b537-4cc7-98bd-fdb583edbebd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8a38d99b-b537-4cc7-98bd-fdb583edbebd.shogun-image {
  box-sizing: border-box;
}



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





  img.s-8a38d99b-b537-4cc7-98bd-fdb583edbebd.shogun-image {
    
    
  }


.s-8a38d99b-b537-4cc7-98bd-fdb583edbebd .shogun-image-content {
  
    align-items: center;
  
}

.s-8a38d99b-b537-4cc7-98bd-fdb583edbebd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8a38d99b-b537-4cc7-98bd-fdb583edbebd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8a38d99b-b537-4cc7-98bd-fdb583edbebd.shogun-image {
  box-sizing: border-box;
}



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





  img.s-8a38d99b-b537-4cc7-98bd-fdb583edbebd.shogun-image {
    
    
  }


.s-8a38d99b-b537-4cc7-98bd-fdb583edbebd .shogun-image-content {
  
    align-items: center;
  
}

.s-8a38d99b-b537-4cc7-98bd-fdb583edbebd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8a38d99b-b537-4cc7-98bd-fdb583edbebd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8a38d99b-b537-4cc7-98bd-fdb583edbebd.shogun-image {
  box-sizing: border-box;
}



}
#s-a6dff9bd-949a-4d40-9ad2-585b36eb26fc {
  min-height: 50px;
}








#s-a6dff9bd-949a-4d40-9ad2-585b36eb26fc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a6dff9bd-949a-4d40-9ad2-585b36eb26fc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1385aa91-b319-487c-9b55-69a2656a6aad {
  box-shadow:5px 5px 10px 5px rgba(0, 0, 0, 0.35);
margin-top: 0px;
margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
min-height: 50px;
max-width: 1000px;
background-color: rgba(255, 255, 255, 1);
}








#s-1385aa91-b319-487c-9b55-69a2656a6aad > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1385aa91-b319-487c-9b55-69a2656a6aad.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0c7654ba-bdfa-473e-8f32-557dabfb1c92 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-0c7654ba-bdfa-473e-8f32-557dabfb1c92"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0c7654ba-bdfa-473e-8f32-557dabfb1c92"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-0c7654ba-bdfa-473e-8f32-557dabfb1c92"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0c7654ba-bdfa-473e-8f32-557dabfb1c92"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-0c7654ba-bdfa-473e-8f32-557dabfb1c92"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0c7654ba-bdfa-473e-8f32-557dabfb1c92"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-0c7654ba-bdfa-473e-8f32-557dabfb1c92"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

}

#s-2bc5a44a-082c-4238-ba62-ae8724af316c {
  min-height: 50px;
}








#s-2bc5a44a-082c-4238-ba62-ae8724af316c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2bc5a44a-082c-4238-ba62-ae8724af316c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d7044371-6aa4-44b8-bcae-4822e5a474e7 {
  text-align: center;
}







  img.s-d7044371-6aa4-44b8-bcae-4822e5a474e7.shogun-image {
    
    
  }


.s-d7044371-6aa4-44b8-bcae-4822e5a474e7 .shogun-image-content {
  
    align-items: center;
  
}

.s-d7044371-6aa4-44b8-bcae-4822e5a474e7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d7044371-6aa4-44b8-bcae-4822e5a474e7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d7044371-6aa4-44b8-bcae-4822e5a474e7.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-d7044371-6aa4-44b8-bcae-4822e5a474e7.shogun-image {
    
    
  }


.s-d7044371-6aa4-44b8-bcae-4822e5a474e7 .shogun-image-content {
  
    align-items: center;
  
}

.s-d7044371-6aa4-44b8-bcae-4822e5a474e7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d7044371-6aa4-44b8-bcae-4822e5a474e7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d7044371-6aa4-44b8-bcae-4822e5a474e7.shogun-image {
  box-sizing: border-box;
}



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





  img.s-d7044371-6aa4-44b8-bcae-4822e5a474e7.shogun-image {
    
    
  }


.s-d7044371-6aa4-44b8-bcae-4822e5a474e7 .shogun-image-content {
  
    align-items: center;
  
}

.s-d7044371-6aa4-44b8-bcae-4822e5a474e7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d7044371-6aa4-44b8-bcae-4822e5a474e7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d7044371-6aa4-44b8-bcae-4822e5a474e7.shogun-image {
  box-sizing: border-box;
}



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





  img.s-d7044371-6aa4-44b8-bcae-4822e5a474e7.shogun-image {
    
    
  }


.s-d7044371-6aa4-44b8-bcae-4822e5a474e7 .shogun-image-content {
  
    align-items: center;
  
}

.s-d7044371-6aa4-44b8-bcae-4822e5a474e7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d7044371-6aa4-44b8-bcae-4822e5a474e7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d7044371-6aa4-44b8-bcae-4822e5a474e7.shogun-image {
  box-sizing: border-box;
}



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





  img.s-d7044371-6aa4-44b8-bcae-4822e5a474e7.shogun-image {
    
    
  }


.s-d7044371-6aa4-44b8-bcae-4822e5a474e7 .shogun-image-content {
  
    align-items: center;
  
}

.s-d7044371-6aa4-44b8-bcae-4822e5a474e7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d7044371-6aa4-44b8-bcae-4822e5a474e7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d7044371-6aa4-44b8-bcae-4822e5a474e7.shogun-image {
  box-sizing: border-box;
}



}
#s-6ff06585-9a78-4718-a110-1e37519505de {
  min-height: 50px;
}








#s-6ff06585-9a78-4718-a110-1e37519505de > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6ff06585-9a78-4718-a110-1e37519505de.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b5a39dad-c7ab-4acb-960f-64d668db0839 {
  box-shadow:5px 5px 10px 5px rgba(0, 0, 0, 0.35);
margin-top: 0px;
margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
min-height: 50px;
max-width: 1000px;
background-color: rgba(255, 255, 255, 1);
}








#s-b5a39dad-c7ab-4acb-960f-64d668db0839 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b5a39dad-c7ab-4acb-960f-64d668db0839.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9f8b8d7d-b676-48d3-860f-105433bb2817 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-9f8b8d7d-b676-48d3-860f-105433bb2817"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9f8b8d7d-b676-48d3-860f-105433bb2817"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-9f8b8d7d-b676-48d3-860f-105433bb2817"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9f8b8d7d-b676-48d3-860f-105433bb2817"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-9f8b8d7d-b676-48d3-860f-105433bb2817"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9f8b8d7d-b676-48d3-860f-105433bb2817"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-9f8b8d7d-b676-48d3-860f-105433bb2817"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

}

#s-941195fe-2535-4376-adce-27f84287a897 {
  min-height: 50px;
}








#s-941195fe-2535-4376-adce-27f84287a897 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-941195fe-2535-4376-adce-27f84287a897.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e0410508-8236-458c-b221-434c80854b71 {
  text-align: center;
}







  img.s-e0410508-8236-458c-b221-434c80854b71.shogun-image {
    
    
  }


.s-e0410508-8236-458c-b221-434c80854b71 .shogun-image-content {
  
    align-items: center;
  
}

.s-e0410508-8236-458c-b221-434c80854b71.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e0410508-8236-458c-b221-434c80854b71.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e0410508-8236-458c-b221-434c80854b71.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-e0410508-8236-458c-b221-434c80854b71.shogun-image {
    
    
  }


.s-e0410508-8236-458c-b221-434c80854b71 .shogun-image-content {
  
    align-items: center;
  
}

.s-e0410508-8236-458c-b221-434c80854b71.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e0410508-8236-458c-b221-434c80854b71.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e0410508-8236-458c-b221-434c80854b71.shogun-image {
  box-sizing: border-box;
}



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





  img.s-e0410508-8236-458c-b221-434c80854b71.shogun-image {
    
    
  }


.s-e0410508-8236-458c-b221-434c80854b71 .shogun-image-content {
  
    align-items: center;
  
}

.s-e0410508-8236-458c-b221-434c80854b71.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e0410508-8236-458c-b221-434c80854b71.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e0410508-8236-458c-b221-434c80854b71.shogun-image {
  box-sizing: border-box;
}



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





  img.s-e0410508-8236-458c-b221-434c80854b71.shogun-image {
    
    
  }


.s-e0410508-8236-458c-b221-434c80854b71 .shogun-image-content {
  
    align-items: center;
  
}

.s-e0410508-8236-458c-b221-434c80854b71.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e0410508-8236-458c-b221-434c80854b71.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e0410508-8236-458c-b221-434c80854b71.shogun-image {
  box-sizing: border-box;
}



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





  img.s-e0410508-8236-458c-b221-434c80854b71.shogun-image {
    
    
  }


.s-e0410508-8236-458c-b221-434c80854b71 .shogun-image-content {
  
    align-items: center;
  
}

.s-e0410508-8236-458c-b221-434c80854b71.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e0410508-8236-458c-b221-434c80854b71.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e0410508-8236-458c-b221-434c80854b71.shogun-image {
  box-sizing: border-box;
}



}
#s-8968517f-3798-4241-863c-392f99681af8 {
  min-height: 50px;
}








#s-8968517f-3798-4241-863c-392f99681af8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8968517f-3798-4241-863c-392f99681af8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-27c124c3-fe8f-4662-8402-83be719bcc28 {
  box-shadow:5px 5px 10px 5px rgba(0, 0, 0, 0.35);
margin-top: 0px;
margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
min-height: 50px;
max-width: 1000px;
background-color: rgba(255, 255, 255, 1);
}








#s-27c124c3-fe8f-4662-8402-83be719bcc28 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-27c124c3-fe8f-4662-8402-83be719bcc28.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d4b92ad3-625e-433d-a6cd-4cf1c804b42a {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-d4b92ad3-625e-433d-a6cd-4cf1c804b42a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d4b92ad3-625e-433d-a6cd-4cf1c804b42a"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-d4b92ad3-625e-433d-a6cd-4cf1c804b42a"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d4b92ad3-625e-433d-a6cd-4cf1c804b42a"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-d4b92ad3-625e-433d-a6cd-4cf1c804b42a"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d4b92ad3-625e-433d-a6cd-4cf1c804b42a"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-d4b92ad3-625e-433d-a6cd-4cf1c804b42a"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

}

#s-f38d0603-3a57-496a-b6c4-f704d0250b74 {
  min-height: 50px;
}








#s-f38d0603-3a57-496a-b6c4-f704d0250b74 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f38d0603-3a57-496a-b6c4-f704d0250b74.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e8217182-9eb4-430c-8ee8-6b068861501d {
  text-align: center;
}







  img.s-e8217182-9eb4-430c-8ee8-6b068861501d.shogun-image {
    
    
  }


.s-e8217182-9eb4-430c-8ee8-6b068861501d .shogun-image-content {
  
    align-items: center;
  
}

.s-e8217182-9eb4-430c-8ee8-6b068861501d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e8217182-9eb4-430c-8ee8-6b068861501d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e8217182-9eb4-430c-8ee8-6b068861501d.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-e8217182-9eb4-430c-8ee8-6b068861501d.shogun-image {
    
    
  }


.s-e8217182-9eb4-430c-8ee8-6b068861501d .shogun-image-content {
  
    align-items: center;
  
}

.s-e8217182-9eb4-430c-8ee8-6b068861501d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e8217182-9eb4-430c-8ee8-6b068861501d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e8217182-9eb4-430c-8ee8-6b068861501d.shogun-image {
  box-sizing: border-box;
}



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





  img.s-e8217182-9eb4-430c-8ee8-6b068861501d.shogun-image {
    
    
  }


.s-e8217182-9eb4-430c-8ee8-6b068861501d .shogun-image-content {
  
    align-items: center;
  
}

.s-e8217182-9eb4-430c-8ee8-6b068861501d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e8217182-9eb4-430c-8ee8-6b068861501d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e8217182-9eb4-430c-8ee8-6b068861501d.shogun-image {
  box-sizing: border-box;
}



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





  img.s-e8217182-9eb4-430c-8ee8-6b068861501d.shogun-image {
    
    
  }


.s-e8217182-9eb4-430c-8ee8-6b068861501d .shogun-image-content {
  
    align-items: center;
  
}

.s-e8217182-9eb4-430c-8ee8-6b068861501d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e8217182-9eb4-430c-8ee8-6b068861501d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e8217182-9eb4-430c-8ee8-6b068861501d.shogun-image {
  box-sizing: border-box;
}



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





  img.s-e8217182-9eb4-430c-8ee8-6b068861501d.shogun-image {
    
    
  }


.s-e8217182-9eb4-430c-8ee8-6b068861501d .shogun-image-content {
  
    align-items: center;
  
}

.s-e8217182-9eb4-430c-8ee8-6b068861501d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e8217182-9eb4-430c-8ee8-6b068861501d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e8217182-9eb4-430c-8ee8-6b068861501d.shogun-image {
  box-sizing: border-box;
}



}
#s-f64fba8d-0cd0-4b73-a3c6-885995d0f088 {
  min-height: 50px;
}








#s-f64fba8d-0cd0-4b73-a3c6-885995d0f088 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f64fba8d-0cd0-4b73-a3c6-885995d0f088.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-56bdb67b-bd74-4d86-8489-bdb30afe82ae {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-56bdb67b-bd74-4d86-8489-bdb30afe82ae {
  
}
}@media (max-width: 767px){#s-56bdb67b-bd74-4d86-8489-bdb30afe82ae {
  display: none;
}
#s-56bdb67b-bd74-4d86-8489-bdb30afe82ae, #wrap-s-56bdb67b-bd74-4d86-8489-bdb30afe82ae { display: none !important; }}






  img.s-56bdb67b-bd74-4d86-8489-bdb30afe82ae.shogun-image {
    
    
  }


.s-56bdb67b-bd74-4d86-8489-bdb30afe82ae .shogun-image-content {
  
    align-items: center;
  
}

.s-56bdb67b-bd74-4d86-8489-bdb30afe82ae.shg-align-container {
  display: flex;
  justify-content: center
}

.s-56bdb67b-bd74-4d86-8489-bdb30afe82ae.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-56bdb67b-bd74-4d86-8489-bdb30afe82ae.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-56bdb67b-bd74-4d86-8489-bdb30afe82ae.shogun-image {
    
    
  }


.s-56bdb67b-bd74-4d86-8489-bdb30afe82ae .shogun-image-content {
  
    align-items: center;
  
}

.s-56bdb67b-bd74-4d86-8489-bdb30afe82ae.shg-align-container {
  display: flex;
  justify-content: center
}

.s-56bdb67b-bd74-4d86-8489-bdb30afe82ae.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-56bdb67b-bd74-4d86-8489-bdb30afe82ae.shogun-image {
  box-sizing: border-box;
}



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





  img.s-56bdb67b-bd74-4d86-8489-bdb30afe82ae.shogun-image {
    
    
  }


.s-56bdb67b-bd74-4d86-8489-bdb30afe82ae .shogun-image-content {
  
    align-items: center;
  
}

.s-56bdb67b-bd74-4d86-8489-bdb30afe82ae.shg-align-container {
  display: flex;
  justify-content: center
}

.s-56bdb67b-bd74-4d86-8489-bdb30afe82ae.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-56bdb67b-bd74-4d86-8489-bdb30afe82ae.shogun-image {
  box-sizing: border-box;
}



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





  img.s-56bdb67b-bd74-4d86-8489-bdb30afe82ae.shogun-image {
    
    
  }


.s-56bdb67b-bd74-4d86-8489-bdb30afe82ae .shogun-image-content {
  
    align-items: center;
  
}

.s-56bdb67b-bd74-4d86-8489-bdb30afe82ae.shg-align-container {
  display: flex;
  justify-content: center
}

.s-56bdb67b-bd74-4d86-8489-bdb30afe82ae.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-56bdb67b-bd74-4d86-8489-bdb30afe82ae.shogun-image {
  box-sizing: border-box;
}



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





  img.s-56bdb67b-bd74-4d86-8489-bdb30afe82ae.shogun-image {
    
    
  }


.s-56bdb67b-bd74-4d86-8489-bdb30afe82ae .shogun-image-content {
  
    align-items: center;
  
}

.s-56bdb67b-bd74-4d86-8489-bdb30afe82ae.shg-align-container {
  display: flex;
  justify-content: center
}

.s-56bdb67b-bd74-4d86-8489-bdb30afe82ae.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-56bdb67b-bd74-4d86-8489-bdb30afe82ae.shogun-image {
  box-sizing: border-box;
}



}
#s-85e99b79-a6b3-424e-b0ac-af35584788ca {
  margin-top: 15px;
margin-bottom: 15px;
text-align: center;
}
@media (min-width: 1200px){#s-85e99b79-a6b3-424e-b0ac-af35584788ca {
  display: none;
}
#s-85e99b79-a6b3-424e-b0ac-af35584788ca, #wrap-s-85e99b79-a6b3-424e-b0ac-af35584788ca { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-85e99b79-a6b3-424e-b0ac-af35584788ca {
  display: none;
}
#s-85e99b79-a6b3-424e-b0ac-af35584788ca, #wrap-s-85e99b79-a6b3-424e-b0ac-af35584788ca { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-85e99b79-a6b3-424e-b0ac-af35584788ca {
  display: none;
}
#s-85e99b79-a6b3-424e-b0ac-af35584788ca, #wrap-s-85e99b79-a6b3-424e-b0ac-af35584788ca { display: none !important; }}@media (max-width: 767px){#s-85e99b79-a6b3-424e-b0ac-af35584788ca {
  
}
}






  img.s-85e99b79-a6b3-424e-b0ac-af35584788ca.shogun-image {
    
    
  }


.s-85e99b79-a6b3-424e-b0ac-af35584788ca .shogun-image-content {
  
    align-items: center;
  
}

.s-85e99b79-a6b3-424e-b0ac-af35584788ca.shg-align-container {
  display: flex;
  justify-content: center
}

.s-85e99b79-a6b3-424e-b0ac-af35584788ca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-85e99b79-a6b3-424e-b0ac-af35584788ca.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-85e99b79-a6b3-424e-b0ac-af35584788ca.shogun-image {
    
    
  }


.s-85e99b79-a6b3-424e-b0ac-af35584788ca .shogun-image-content {
  
    align-items: center;
  
}

.s-85e99b79-a6b3-424e-b0ac-af35584788ca.shg-align-container {
  display: flex;
  justify-content: center
}

.s-85e99b79-a6b3-424e-b0ac-af35584788ca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-85e99b79-a6b3-424e-b0ac-af35584788ca.shogun-image {
  box-sizing: border-box;
}



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





  img.s-85e99b79-a6b3-424e-b0ac-af35584788ca.shogun-image {
    
    
  }


.s-85e99b79-a6b3-424e-b0ac-af35584788ca .shogun-image-content {
  
    align-items: center;
  
}

.s-85e99b79-a6b3-424e-b0ac-af35584788ca.shg-align-container {
  display: flex;
  justify-content: center
}

.s-85e99b79-a6b3-424e-b0ac-af35584788ca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-85e99b79-a6b3-424e-b0ac-af35584788ca.shogun-image {
  box-sizing: border-box;
}



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





  img.s-85e99b79-a6b3-424e-b0ac-af35584788ca.shogun-image {
    
    
  }


.s-85e99b79-a6b3-424e-b0ac-af35584788ca .shogun-image-content {
  
    align-items: center;
  
}

.s-85e99b79-a6b3-424e-b0ac-af35584788ca.shg-align-container {
  display: flex;
  justify-content: center
}

.s-85e99b79-a6b3-424e-b0ac-af35584788ca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-85e99b79-a6b3-424e-b0ac-af35584788ca.shogun-image {
  box-sizing: border-box;
}



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





  img.s-85e99b79-a6b3-424e-b0ac-af35584788ca.shogun-image {
    
    
  }


.s-85e99b79-a6b3-424e-b0ac-af35584788ca .shogun-image-content {
  
    align-items: center;
  
}

.s-85e99b79-a6b3-424e-b0ac-af35584788ca.shg-align-container {
  display: flex;
  justify-content: center
}

.s-85e99b79-a6b3-424e-b0ac-af35584788ca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-85e99b79-a6b3-424e-b0ac-af35584788ca.shogun-image {
  box-sizing: border-box;
}



}
#s-d4bdf7ef-b8b1-42f0-904c-f56057fd3234 {
  padding-left: 20px;
padding-right: 20px;
min-height: 50px;
}

#s-d4bdf7ef-b8b1-42f0-904c-f56057fd3234 {
  background-image: url();
}








#s-d4bdf7ef-b8b1-42f0-904c-f56057fd3234 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d4bdf7ef-b8b1-42f0-904c-f56057fd3234.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-94f618e9-2f3e-415d-8a44-5d80ed2420f2 {
  margin-left: auto;
margin-right: auto;
padding-top: 60px;
padding-bottom: 60px;
min-height: 50px;
max-width: 80%;
}
@media (min-width: 768px) and (max-width: 991px){#s-94f618e9-2f3e-415d-8a44-5d80ed2420f2 {
  max-width: 100%;
}
}@media (max-width: 767px){#s-94f618e9-2f3e-415d-8a44-5d80ed2420f2 {
  max-width: 100%;
}
}
#s-94f618e9-2f3e-415d-8a44-5d80ed2420f2 {
  background-image: url();
}








#s-94f618e9-2f3e-415d-8a44-5d80ed2420f2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-94f618e9-2f3e-415d-8a44-5d80ed2420f2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 767px){






#s-94f618e9-2f3e-415d-8a44-5d80ed2420f2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-94f618e9-2f3e-415d-8a44-5d80ed2420f2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
}
#s-f9c091b6-9a94-4a86-a9c8-c935f9a7adff {
  margin-top: 0px;
margin-bottom: 30px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f9c091b6-9a94-4a86-a9c8-c935f9a7adff .shogun-heading-component h1 {
  color: rgba(19, 83, 14, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 36px;
  line-height: 1.2em;
  
  
}



@media (min-width: 0px) {
[id="s-2a70295f-fe7d-4f54-9b32-f686faf6f3fb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2a70295f-fe7d-4f54-9b32-f686faf6f3fb"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-2a70295f-fe7d-4f54-9b32-f686faf6f3fb"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-2a70295f-fe7d-4f54-9b32-f686faf6f3fb"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-c3991eed-b135-4567-a604-3eef9aca9402 {
  margin-bottom: 30px;
min-height: 50px;
}








#s-c3991eed-b135-4567-a604-3eef9aca9402 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c3991eed-b135-4567-a604-3eef9aca9402.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-13fdff8e-6552-49ea-89b8-277b3929bd44 {
  text-align: center;
}







  img.s-13fdff8e-6552-49ea-89b8-277b3929bd44.shogun-image {
    
    
  }


.s-13fdff8e-6552-49ea-89b8-277b3929bd44 .shogun-image-content {
  
    align-items: center;
  
}

.s-13fdff8e-6552-49ea-89b8-277b3929bd44.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13fdff8e-6552-49ea-89b8-277b3929bd44.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13fdff8e-6552-49ea-89b8-277b3929bd44.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-13fdff8e-6552-49ea-89b8-277b3929bd44.shogun-image {
    
    
  }


.s-13fdff8e-6552-49ea-89b8-277b3929bd44 .shogun-image-content {
  
    align-items: center;
  
}

.s-13fdff8e-6552-49ea-89b8-277b3929bd44.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13fdff8e-6552-49ea-89b8-277b3929bd44.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13fdff8e-6552-49ea-89b8-277b3929bd44.shogun-image {
  box-sizing: border-box;
}



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





  img.s-13fdff8e-6552-49ea-89b8-277b3929bd44.shogun-image {
    
    
  }


.s-13fdff8e-6552-49ea-89b8-277b3929bd44 .shogun-image-content {
  
    align-items: center;
  
}

.s-13fdff8e-6552-49ea-89b8-277b3929bd44.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13fdff8e-6552-49ea-89b8-277b3929bd44.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13fdff8e-6552-49ea-89b8-277b3929bd44.shogun-image {
  box-sizing: border-box;
}



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





  img.s-13fdff8e-6552-49ea-89b8-277b3929bd44.shogun-image {
    
    
  }


.s-13fdff8e-6552-49ea-89b8-277b3929bd44 .shogun-image-content {
  
    align-items: center;
  
}

.s-13fdff8e-6552-49ea-89b8-277b3929bd44.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13fdff8e-6552-49ea-89b8-277b3929bd44.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13fdff8e-6552-49ea-89b8-277b3929bd44.shogun-image {
  box-sizing: border-box;
}



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





  img.s-13fdff8e-6552-49ea-89b8-277b3929bd44.shogun-image {
    
    
  }


.s-13fdff8e-6552-49ea-89b8-277b3929bd44 .shogun-image-content {
  
    align-items: center;
  
}

.s-13fdff8e-6552-49ea-89b8-277b3929bd44.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13fdff8e-6552-49ea-89b8-277b3929bd44.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13fdff8e-6552-49ea-89b8-277b3929bd44.shogun-image {
  box-sizing: border-box;
}



}
#s-98462c14-865d-457e-b45d-b67915b52998 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-98462c14-865d-457e-b45d-b67915b52998 .shogun-heading-component h3 {
  color: rgba(27, 58, 93, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 26px;
  
  
  text-align: center;
}



#s-ab89013e-41f2-4869-9311-e40dd96a9a52 {
  margin-bottom: 30px;
min-height: 50px;
}








#s-ab89013e-41f2-4869-9311-e40dd96a9a52 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ab89013e-41f2-4869-9311-e40dd96a9a52.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ae0e886d-2df3-483e-aa9a-ff695f68442c {
  text-align: center;
}







  img.s-ae0e886d-2df3-483e-aa9a-ff695f68442c.shogun-image {
    
    
  }


.s-ae0e886d-2df3-483e-aa9a-ff695f68442c .shogun-image-content {
  
    align-items: center;
  
}

.s-ae0e886d-2df3-483e-aa9a-ff695f68442c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ae0e886d-2df3-483e-aa9a-ff695f68442c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ae0e886d-2df3-483e-aa9a-ff695f68442c.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-ae0e886d-2df3-483e-aa9a-ff695f68442c.shogun-image {
    
    
  }


.s-ae0e886d-2df3-483e-aa9a-ff695f68442c .shogun-image-content {
  
    align-items: center;
  
}

.s-ae0e886d-2df3-483e-aa9a-ff695f68442c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ae0e886d-2df3-483e-aa9a-ff695f68442c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ae0e886d-2df3-483e-aa9a-ff695f68442c.shogun-image {
  box-sizing: border-box;
}



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





  img.s-ae0e886d-2df3-483e-aa9a-ff695f68442c.shogun-image {
    
    
  }


.s-ae0e886d-2df3-483e-aa9a-ff695f68442c .shogun-image-content {
  
    align-items: center;
  
}

.s-ae0e886d-2df3-483e-aa9a-ff695f68442c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ae0e886d-2df3-483e-aa9a-ff695f68442c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ae0e886d-2df3-483e-aa9a-ff695f68442c.shogun-image {
  box-sizing: border-box;
}



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





  img.s-ae0e886d-2df3-483e-aa9a-ff695f68442c.shogun-image {
    
    
  }


.s-ae0e886d-2df3-483e-aa9a-ff695f68442c .shogun-image-content {
  
    align-items: center;
  
}

.s-ae0e886d-2df3-483e-aa9a-ff695f68442c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ae0e886d-2df3-483e-aa9a-ff695f68442c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ae0e886d-2df3-483e-aa9a-ff695f68442c.shogun-image {
  box-sizing: border-box;
}



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





  img.s-ae0e886d-2df3-483e-aa9a-ff695f68442c.shogun-image {
    
    
  }


.s-ae0e886d-2df3-483e-aa9a-ff695f68442c .shogun-image-content {
  
    align-items: center;
  
}

.s-ae0e886d-2df3-483e-aa9a-ff695f68442c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ae0e886d-2df3-483e-aa9a-ff695f68442c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ae0e886d-2df3-483e-aa9a-ff695f68442c.shogun-image {
  box-sizing: border-box;
}



}
#s-2d2fbb3c-523f-4dc8-b831-672da0eff08e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2d2fbb3c-523f-4dc8-b831-672da0eff08e .shogun-heading-component h3 {
  color: rgba(27, 58, 93, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 26px;
  
  
  
}



#s-8023bbaa-c583-4473-b113-c1a96398be95 {
  margin-bottom: 30px;
min-height: 50px;
}








#s-8023bbaa-c583-4473-b113-c1a96398be95 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8023bbaa-c583-4473-b113-c1a96398be95.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-909537bd-3a3d-4010-8fb8-d6a3f0ad77b9 {
  text-align: center;
}







  img.s-909537bd-3a3d-4010-8fb8-d6a3f0ad77b9.shogun-image {
    
    
  }


.s-909537bd-3a3d-4010-8fb8-d6a3f0ad77b9 .shogun-image-content {
  
    align-items: center;
  
}

.s-909537bd-3a3d-4010-8fb8-d6a3f0ad77b9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-909537bd-3a3d-4010-8fb8-d6a3f0ad77b9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-909537bd-3a3d-4010-8fb8-d6a3f0ad77b9.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-909537bd-3a3d-4010-8fb8-d6a3f0ad77b9.shogun-image {
    
    
  }


.s-909537bd-3a3d-4010-8fb8-d6a3f0ad77b9 .shogun-image-content {
  
    align-items: center;
  
}

.s-909537bd-3a3d-4010-8fb8-d6a3f0ad77b9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-909537bd-3a3d-4010-8fb8-d6a3f0ad77b9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-909537bd-3a3d-4010-8fb8-d6a3f0ad77b9.shogun-image {
  box-sizing: border-box;
}



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





  img.s-909537bd-3a3d-4010-8fb8-d6a3f0ad77b9.shogun-image {
    
    
  }


.s-909537bd-3a3d-4010-8fb8-d6a3f0ad77b9 .shogun-image-content {
  
    align-items: center;
  
}

.s-909537bd-3a3d-4010-8fb8-d6a3f0ad77b9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-909537bd-3a3d-4010-8fb8-d6a3f0ad77b9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-909537bd-3a3d-4010-8fb8-d6a3f0ad77b9.shogun-image {
  box-sizing: border-box;
}



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





  img.s-909537bd-3a3d-4010-8fb8-d6a3f0ad77b9.shogun-image {
    
    
  }


.s-909537bd-3a3d-4010-8fb8-d6a3f0ad77b9 .shogun-image-content {
  
    align-items: center;
  
}

.s-909537bd-3a3d-4010-8fb8-d6a3f0ad77b9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-909537bd-3a3d-4010-8fb8-d6a3f0ad77b9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-909537bd-3a3d-4010-8fb8-d6a3f0ad77b9.shogun-image {
  box-sizing: border-box;
}



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





  img.s-909537bd-3a3d-4010-8fb8-d6a3f0ad77b9.shogun-image {
    
    
  }


.s-909537bd-3a3d-4010-8fb8-d6a3f0ad77b9 .shogun-image-content {
  
    align-items: center;
  
}

.s-909537bd-3a3d-4010-8fb8-d6a3f0ad77b9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-909537bd-3a3d-4010-8fb8-d6a3f0ad77b9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-909537bd-3a3d-4010-8fb8-d6a3f0ad77b9.shogun-image {
  box-sizing: border-box;
}



}
#s-1435c1c7-5a54-4e2a-84a3-780b1b2a7d70 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1435c1c7-5a54-4e2a-84a3-780b1b2a7d70 .shogun-heading-component h3 {
  color: rgba(27, 58, 93, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 26px;
  
  
  
}



#s-a0426166-2c86-4a96-b5cf-5a9a56cbac2b {
  padding-left: 20px;
padding-right: 20px;
min-height: 50px;
}

#s-a0426166-2c86-4a96-b5cf-5a9a56cbac2b {
  background-image: url();
}








#s-a0426166-2c86-4a96-b5cf-5a9a56cbac2b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a0426166-2c86-4a96-b5cf-5a9a56cbac2b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-632f9157-a4f4-44cb-a6f8-2a8f09e612f1 {
  text-align: left;
}

#s-275c7285-3d13-48f5-895a-c6518aa29e2b {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 60px;
padding-left: 15px;
padding-bottom: 60px;
padding-right: 15px;
min-height: 50px;
max-width: 80%;
}
@media (min-width: 768px) and (max-width: 991px){#s-275c7285-3d13-48f5-895a-c6518aa29e2b {
  max-width: 100%;
}
}@media (max-width: 767px){#s-275c7285-3d13-48f5-895a-c6518aa29e2b {
  max-width: 100%;
}
}
#s-275c7285-3d13-48f5-895a-c6518aa29e2b {
  background-image: url();
}








#s-275c7285-3d13-48f5-895a-c6518aa29e2b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-275c7285-3d13-48f5-895a-c6518aa29e2b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 767px){






#s-275c7285-3d13-48f5-895a-c6518aa29e2b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-275c7285-3d13-48f5-895a-c6518aa29e2b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
}
#s-68b9b8ae-1165-471b-9662-b23ccf576235 {
  margin-top: 0px;
margin-bottom: 30px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-68b9b8ae-1165-471b-9662-b23ccf576235 .shogun-heading-component h1 {
  color: rgba(19, 83, 14, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 36px;
  line-height: 1.2em;
  
  
}



#s-987f9083-d16e-46b0-9494-4c81869dabf0 {
  margin-top: 60px;
margin-left: auto;
margin-right: auto;
max-width: 1200px;
}

#s-54d9e818-dcbc-484b-a32f-abfe5a5a1ce2 {
  min-height: 50px;
background-color: rgba(255, 250, 238, 1);
}








#s-54d9e818-dcbc-484b-a32f-abfe5a5a1ce2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-54d9e818-dcbc-484b-a32f-abfe5a5a1ce2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-30283837-029a-4645-9fae-0ae3deb09781 {
  margin-left: auto;
margin-right: auto;
padding-top: 60px;
padding-left: 15px;
padding-bottom: 60px;
padding-right: 15px;
min-height: 50px;
max-width: 80%;
}
@media (min-width: 768px) and (max-width: 991px){#s-30283837-029a-4645-9fae-0ae3deb09781 {
  max-width: 100%;
}
}@media (max-width: 767px){#s-30283837-029a-4645-9fae-0ae3deb09781 {
  max-width: 100%;
}
}
#s-30283837-029a-4645-9fae-0ae3deb09781 {
  background-image: url();
}








#s-30283837-029a-4645-9fae-0ae3deb09781 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-30283837-029a-4645-9fae-0ae3deb09781.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 767px){






#s-30283837-029a-4645-9fae-0ae3deb09781 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-30283837-029a-4645-9fae-0ae3deb09781.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
}
#s-b83e1c44-f4aa-41e7-8214-bde9cf6a7c7a {
  margin-top: 0px;
margin-bottom: 30px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b83e1c44-f4aa-41e7-8214-bde9cf6a7c7a .shogun-heading-component h1 {
  color: rgba(19, 83, 14, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 36px;
  line-height: 1.2em;
  
  
}



@media (min-width: 0px) {
[id="s-5c0999d2-388d-4243-aa23-3da714e5142a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5c0999d2-388d-4243-aa23-3da714e5142a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-5c0999d2-388d-4243-aa23-3da714e5142a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-5c0999d2-388d-4243-aa23-3da714e5142a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-d809f565-6989-4836-bb8b-bcf23b1b1325 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(221, 221, 221, 0);
}

#s-d809f565-6989-4836-bb8b-bcf23b1b1325 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(245, 245, 245, 0);
  padding: 15px;
}

#s-d809f565-6989-4836-bb8b-bcf23b1b1325 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(36, 36, 36, 1);
}

#s-d809f565-6989-4836-bb8b-bcf23b1b1325 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(221, 221, 221, 0);
}

#s-d809f565-6989-4836-bb8b-bcf23b1b1325 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(36, 36, 36, 1);
  text-align: left;
  font-family: Montserrat;
  font-weight: 700;
  font-style: ;
  font-size: 18px;
}

#s-d809f565-6989-4836-bb8b-bcf23b1b1325 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 18px;
}
#s-d1fdb437-4e70-4363-80cc-ba88a0bd2989 {
  margin-top: 15px;
margin-left: 15px;
margin-bottom: 15px;
margin-right: 15px;
min-height: 50px;
}








#s-d1fdb437-4e70-4363-80cc-ba88a0bd2989 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d1fdb437-4e70-4363-80cc-ba88a0bd2989.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-69ba7b5e-a873-485e-b52c-02cc4ef5e6bf {
  margin-top: 15px;
margin-left: 15px;
margin-bottom: 15px;
margin-right: 15px;
min-height: 50px;
}








#s-69ba7b5e-a873-485e-b52c-02cc4ef5e6bf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-69ba7b5e-a873-485e-b52c-02cc4ef5e6bf.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a3904ec7-9a5d-4788-b0a1-b6d36bd2871f {
  margin-top: 15px;
margin-left: 15px;
margin-bottom: 15px;
margin-right: 15px;
min-height: 50px;
}








#s-a3904ec7-9a5d-4788-b0a1-b6d36bd2871f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a3904ec7-9a5d-4788-b0a1-b6d36bd2871f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ff9423b9-09d6-458d-8d16-b90153aeeca6 {
  margin-top: 15px;
margin-left: 15px;
margin-bottom: 15px;
margin-right: 15px;
min-height: 50px;
}








#s-ff9423b9-09d6-458d-8d16-b90153aeeca6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ff9423b9-09d6-458d-8d16-b90153aeeca6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a5fe41eb-6e02-4d04-964a-a77e7e1fd231 {
  margin-top: 15px;
margin-left: 15px;
margin-bottom: 15px;
margin-right: 15px;
min-height: 50px;
}








#s-a5fe41eb-6e02-4d04-964a-a77e7e1fd231 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a5fe41eb-6e02-4d04-964a-a77e7e1fd231.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0961f187-e374-40cd-9e3a-578d2a0bb9ac {
  margin-top: 15px;
margin-left: 15px;
margin-bottom: 15px;
margin-right: 15px;
min-height: 50px;
}








#s-0961f187-e374-40cd-9e3a-578d2a0bb9ac > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0961f187-e374-40cd-9e3a-578d2a0bb9ac.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-292141dd-ac1f-45a5-976b-38a1adc03914 {
  margin-top: 15px;
margin-left: 15px;
margin-bottom: 15px;
margin-right: 15px;
min-height: 50px;
}








#s-292141dd-ac1f-45a5-976b-38a1adc03914 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-292141dd-ac1f-45a5-976b-38a1adc03914.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dc015ef3-da0a-43ed-8e0f-74de84eae10a {
  margin-top: 15px;
margin-left: 15px;
margin-bottom: 15px;
margin-right: 15px;
min-height: 50px;
background-color: rgba(0, 0, 0, 0);
}








#s-dc015ef3-da0a-43ed-8e0f-74de84eae10a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dc015ef3-da0a-43ed-8e0f-74de84eae10a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7001a792-f950-43d0-844b-6f09a76293ed > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(221, 221, 221, 0);
}

#s-7001a792-f950-43d0-844b-6f09a76293ed > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(245, 245, 245, 0);
  padding: 15px;
}

#s-7001a792-f950-43d0-844b-6f09a76293ed > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(36, 36, 36, 1);
}

#s-7001a792-f950-43d0-844b-6f09a76293ed > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(221, 221, 221, 0);
}

#s-7001a792-f950-43d0-844b-6f09a76293ed > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(36, 36, 36, 1);
  text-align: left;
  font-family: Montserrat;
  font-weight: 700;
  font-style: ;
  font-size: 18px;
}

#s-7001a792-f950-43d0-844b-6f09a76293ed > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 18px;
}
#s-ba924fa9-053d-4817-b675-7bfb09f4cb63 {
  margin-top: 15px;
margin-left: 15px;
margin-bottom: 15px;
margin-right: 15px;
min-height: 50px;
}








#s-ba924fa9-053d-4817-b675-7bfb09f4cb63 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ba924fa9-053d-4817-b675-7bfb09f4cb63.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-094b1ed1-6fd1-481a-9724-b02af8b123fa {
  margin-top: 15px;
margin-left: 15px;
margin-bottom: 15px;
margin-right: 15px;
min-height: 50px;
}








#s-094b1ed1-6fd1-481a-9724-b02af8b123fa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-094b1ed1-6fd1-481a-9724-b02af8b123fa.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-27974a5e-91d1-4ec7-9ab6-cec419392810 {
  margin-top: 15px;
margin-left: 15px;
margin-bottom: 15px;
margin-right: 15px;
min-height: 50px;
}








#s-27974a5e-91d1-4ec7-9ab6-cec419392810 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-27974a5e-91d1-4ec7-9ab6-cec419392810.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f3b0f64b-89e9-489e-9c79-88117673750b {
  margin-top: 15px;
margin-left: 15px;
margin-bottom: 15px;
margin-right: 15px;
min-height: 50px;
}








#s-f3b0f64b-89e9-489e-9c79-88117673750b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f3b0f64b-89e9-489e-9c79-88117673750b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8b307f6b-8c38-4b78-bb6b-c3b6d0751cd5 {
  margin-top: 15px;
margin-left: 15px;
margin-bottom: 15px;
margin-right: 15px;
min-height: 50px;
}








#s-8b307f6b-8c38-4b78-bb6b-c3b6d0751cd5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8b307f6b-8c38-4b78-bb6b-c3b6d0751cd5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d539c6aa-6271-4f6f-9584-8d931afcf05d {
  margin-top: 15px;
margin-left: 15px;
margin-bottom: 15px;
margin-right: 15px;
min-height: 50px;
}








#s-d539c6aa-6271-4f6f-9584-8d931afcf05d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d539c6aa-6271-4f6f-9584-8d931afcf05d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-09089940-3f75-4f9c-a479-c85890d8bc04 {
  margin-top: 15px;
margin-left: 15px;
margin-bottom: 15px;
margin-right: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 3px;
min-height: 50px;
}








#s-09089940-3f75-4f9c-a479-c85890d8bc04 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-09089940-3f75-4f9c-a479-c85890d8bc04.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5f3d5d1b-d302-420f-bb3d-5439ab48261c {
  margin-top: 15px;
margin-left: 15px;
margin-bottom: 15px;
margin-right: 15px;
min-height: 50px;
background-color: rgba(0, 0, 0, 0);
}








#s-5f3d5d1b-d302-420f-bb3d-5439ab48261c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5f3d5d1b-d302-420f-bb3d-5439ab48261c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3992f327-4d2a-4bd1-ad6c-27f0329b2408 {
  padding-left: 20px;
padding-right: 20px;
min-height: 50px;
}








#s-3992f327-4d2a-4bd1-ad6c-27f0329b2408 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3992f327-4d2a-4bd1-ad6c-27f0329b2408.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-409bdbb1-6fd2-4e1d-a885-6e86c63e444e {
  margin-left: auto;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
min-height: 50px;
max-width: 1200px;
}








#s-409bdbb1-6fd2-4e1d-a885-6e86c63e444e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-409bdbb1-6fd2-4e1d-a885-6e86c63e444e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fa4da9f3-23ef-47d9-ba53-84d02cab9bf9 {
  margin-top: 0px;
margin-bottom: 30px;
padding-top: 60px;
padding-bottom: 15px;
text-align: center;
}

#s-fa4da9f3-23ef-47d9-ba53-84d02cab9bf9 .shogun-heading-component h1 {
  color: rgba(19, 83, 14, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 36px;
  line-height: 1.2em;
  
  
}



#s-6cf88f95-d84a-43b2-a181-6cfee494edf1 {
  box-shadow:5px 5px 0px 1px rgba(27, 58, 93, 1);
margin-bottom: 30px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(27, 58, 93, 1);
border-style: solid;
border-radius: 20px;
}

@media (min-width: 0px) {
[id="s-6cf88f95-d84a-43b2-a181-6cfee494edf1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6cf88f95-d84a-43b2-a181-6cfee494edf1"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-6cf88f95-d84a-43b2-a181-6cfee494edf1"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-6cf88f95-d84a-43b2-a181-6cfee494edf1"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-6cf88f95-d84a-43b2-a181-6cfee494edf1"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-6cf88f95-d84a-43b2-a181-6cfee494edf1"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-6cf88f95-d84a-43b2-a181-6cfee494edf1"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-fb9f2296-9439-4551-8948-230e0771cfcb {
  padding-top: 30px;
padding-left: 30px;
min-height: 50px;
}








#s-fb9f2296-9439-4551-8948-230e0771cfcb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fb9f2296-9439-4551-8948-230e0771cfcb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-44e63caa-53b4-4ac2-a160-ba782175acd1 {
  text-align: left;
}

#s-302774d5-8d42-482e-9f4f-45a962f615b0 {
  padding-top: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
min-height: 50px;
}








#s-302774d5-8d42-482e-9f4f-45a962f615b0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-302774d5-8d42-482e-9f4f-45a962f615b0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8f55e9cc-fb74-4c6e-acbe-b256f8be81a3 {
  box-shadow:5px 5px 0px 1px rgba(27, 58, 93, 1);
margin-bottom: 30px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(27, 58, 93, 1);
border-style: solid;
border-radius: 20px;
}

@media (min-width: 0px) {
[id="s-8f55e9cc-fb74-4c6e-acbe-b256f8be81a3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8f55e9cc-fb74-4c6e-acbe-b256f8be81a3"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-8f55e9cc-fb74-4c6e-acbe-b256f8be81a3"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-8f55e9cc-fb74-4c6e-acbe-b256f8be81a3"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-8f55e9cc-fb74-4c6e-acbe-b256f8be81a3"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-8f55e9cc-fb74-4c6e-acbe-b256f8be81a3"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-8f55e9cc-fb74-4c6e-acbe-b256f8be81a3"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-25772b9b-7a4c-4c7e-af28-d7c29c577416 {
  padding-top: 30px;
padding-left: 30px;
min-height: 50px;
}








#s-25772b9b-7a4c-4c7e-af28-d7c29c577416 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-25772b9b-7a4c-4c7e-af28-d7c29c577416.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4b555ee2-e75c-41b3-97b7-6821a2490cc9 {
  text-align: left;
}

#s-f44566e7-047e-490e-ade6-e5e79b46d46e {
  padding-top: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
min-height: 50px;
}








#s-f44566e7-047e-490e-ade6-e5e79b46d46e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f44566e7-047e-490e-ade6-e5e79b46d46e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dcade9ef-d7e5-4ef5-bc3a-2b5b9368906a {
  box-shadow:5px 5px 0px 1px rgba(27, 58, 93, 1);
margin-bottom: 30px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(27, 58, 93, 1);
border-style: solid;
border-radius: 20px;
}

@media (min-width: 0px) {
[id="s-dcade9ef-d7e5-4ef5-bc3a-2b5b9368906a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-dcade9ef-d7e5-4ef5-bc3a-2b5b9368906a"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-dcade9ef-d7e5-4ef5-bc3a-2b5b9368906a"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-dcade9ef-d7e5-4ef5-bc3a-2b5b9368906a"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-dcade9ef-d7e5-4ef5-bc3a-2b5b9368906a"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-dcade9ef-d7e5-4ef5-bc3a-2b5b9368906a"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-dcade9ef-d7e5-4ef5-bc3a-2b5b9368906a"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-fb20631c-84a1-48aa-9af1-da4a9c665118 {
  padding-top: 30px;
padding-left: 30px;
min-height: 50px;
}








#s-fb20631c-84a1-48aa-9af1-da4a9c665118 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fb20631c-84a1-48aa-9af1-da4a9c665118.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1fa3c421-72b0-4d0b-96e7-afe3a15a9dc6 {
  text-align: left;
}

#s-16303b84-0ee4-4415-988f-24f4c2b3f182 {
  padding-top: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
min-height: 50px;
}








#s-16303b84-0ee4-4415-988f-24f4c2b3f182 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-16303b84-0ee4-4415-988f-24f4c2b3f182.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-995f6cb4-ec03-41e5-ace9-f3336de11e43 {
  box-shadow:5px 5px 0px 1px rgba(27, 58, 93, 1);
margin-bottom: 30px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(27, 58, 93, 1);
border-style: solid;
border-radius: 20px;
}

@media (min-width: 0px) {
[id="s-995f6cb4-ec03-41e5-ace9-f3336de11e43"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-995f6cb4-ec03-41e5-ace9-f3336de11e43"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-995f6cb4-ec03-41e5-ace9-f3336de11e43"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-995f6cb4-ec03-41e5-ace9-f3336de11e43"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-995f6cb4-ec03-41e5-ace9-f3336de11e43"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-995f6cb4-ec03-41e5-ace9-f3336de11e43"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-995f6cb4-ec03-41e5-ace9-f3336de11e43"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-e8b9dba2-ad8c-413f-a5b9-914c6348a02b {
  padding-top: 30px;
padding-left: 30px;
min-height: 50px;
}








#s-e8b9dba2-ad8c-413f-a5b9-914c6348a02b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e8b9dba2-ad8c-413f-a5b9-914c6348a02b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-190df65e-1fbf-498e-b30e-5b59afa53253 {
  text-align: left;
}

#s-1d2278ec-e469-4ad1-8dd4-601893fe1b01 {
  padding-top: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
min-height: 50px;
}








#s-1d2278ec-e469-4ad1-8dd4-601893fe1b01 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1d2278ec-e469-4ad1-8dd4-601893fe1b01.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c2fcb02a-b98a-4f65-b08f-83f0f2d7181e {
  box-shadow:5px 5px 0px 1px rgba(27, 58, 93, 1);
margin-bottom: 30px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(27, 58, 93, 1);
border-style: solid;
border-radius: 20px;
}

@media (min-width: 0px) {
[id="s-c2fcb02a-b98a-4f65-b08f-83f0f2d7181e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c2fcb02a-b98a-4f65-b08f-83f0f2d7181e"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-c2fcb02a-b98a-4f65-b08f-83f0f2d7181e"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-c2fcb02a-b98a-4f65-b08f-83f0f2d7181e"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-c2fcb02a-b98a-4f65-b08f-83f0f2d7181e"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-c2fcb02a-b98a-4f65-b08f-83f0f2d7181e"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-c2fcb02a-b98a-4f65-b08f-83f0f2d7181e"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-babe2b57-3ed9-424e-aac8-6045871b8093 {
  padding-top: 30px;
padding-left: 30px;
min-height: 50px;
}








#s-babe2b57-3ed9-424e-aac8-6045871b8093 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-babe2b57-3ed9-424e-aac8-6045871b8093.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c20c585a-3e72-4b29-8758-47e2ccbbbc12 {
  text-align: left;
}

#s-5f552e27-8892-432b-a957-8bf8b6357937 {
  padding-top: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
min-height: 50px;
}








#s-5f552e27-8892-432b-a957-8bf8b6357937 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5f552e27-8892-432b-a957-8bf8b6357937.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-15c119ab-8135-4952-8461-aa4dde458d7d {
  box-shadow:5px 5px 0px 1px rgba(27, 58, 93, 1);
margin-bottom: 30px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(27, 58, 93, 1);
border-style: solid;
border-radius: 20px;
}

@media (min-width: 0px) {
[id="s-15c119ab-8135-4952-8461-aa4dde458d7d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-15c119ab-8135-4952-8461-aa4dde458d7d"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-15c119ab-8135-4952-8461-aa4dde458d7d"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-15c119ab-8135-4952-8461-aa4dde458d7d"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-15c119ab-8135-4952-8461-aa4dde458d7d"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-15c119ab-8135-4952-8461-aa4dde458d7d"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-15c119ab-8135-4952-8461-aa4dde458d7d"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-4313acf2-7b52-412c-8a0f-e6b7d47cf8e1 {
  padding-top: 30px;
padding-left: 30px;
min-height: 50px;
}








#s-4313acf2-7b52-412c-8a0f-e6b7d47cf8e1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4313acf2-7b52-412c-8a0f-e6b7d47cf8e1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-69f39ce1-ef14-4ac3-be9b-da8074fcf37f {
  text-align: left;
}

#s-1707bcfc-bc6f-4781-96f1-04d418f3b602 {
  padding-top: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
min-height: 50px;
}








#s-1707bcfc-bc6f-4781-96f1-04d418f3b602 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1707bcfc-bc6f-4781-96f1-04d418f3b602.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ca9162fc-547e-4d5e-8ef4-1ef6294e4b9a {
  box-shadow:5px 5px 0px 1px rgba(27, 58, 93, 1);
margin-bottom: 30px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(27, 58, 93, 1);
border-style: solid;
border-radius: 20px;
}

@media (min-width: 0px) {
[id="s-ca9162fc-547e-4d5e-8ef4-1ef6294e4b9a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ca9162fc-547e-4d5e-8ef4-1ef6294e4b9a"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-ca9162fc-547e-4d5e-8ef4-1ef6294e4b9a"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-ca9162fc-547e-4d5e-8ef4-1ef6294e4b9a"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-ca9162fc-547e-4d5e-8ef4-1ef6294e4b9a"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-ca9162fc-547e-4d5e-8ef4-1ef6294e4b9a"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-ca9162fc-547e-4d5e-8ef4-1ef6294e4b9a"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-b4c0f5b5-e9b5-4caf-a3d0-69d7730bfbbc {
  padding-top: 30px;
padding-left: 30px;
min-height: 50px;
}








#s-b4c0f5b5-e9b5-4caf-a3d0-69d7730bfbbc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b4c0f5b5-e9b5-4caf-a3d0-69d7730bfbbc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fd403deb-d33e-46fb-904c-24563e4861c3 {
  text-align: left;
}

#s-fd3e3ced-79a5-47cd-8ca7-a06bbbdaa3f6 {
  padding-top: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
min-height: 50px;
}








#s-fd3e3ced-79a5-47cd-8ca7-a06bbbdaa3f6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fd3e3ced-79a5-47cd-8ca7-a06bbbdaa3f6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7bd02cd0-1d6d-47a1-8472-97a970dcf6c7 {
  box-shadow:5px 5px 0px 1px rgba(27, 58, 93, 1);
margin-bottom: 30px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(27, 58, 93, 1);
border-style: solid;
border-radius: 20px;
}

@media (min-width: 0px) {
[id="s-7bd02cd0-1d6d-47a1-8472-97a970dcf6c7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7bd02cd0-1d6d-47a1-8472-97a970dcf6c7"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-7bd02cd0-1d6d-47a1-8472-97a970dcf6c7"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-7bd02cd0-1d6d-47a1-8472-97a970dcf6c7"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-7bd02cd0-1d6d-47a1-8472-97a970dcf6c7"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-7bd02cd0-1d6d-47a1-8472-97a970dcf6c7"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-7bd02cd0-1d6d-47a1-8472-97a970dcf6c7"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-c70a25c3-493f-46ea-96c5-8523ed1be24a {
  padding-top: 30px;
padding-left: 30px;
min-height: 50px;
}








#s-c70a25c3-493f-46ea-96c5-8523ed1be24a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c70a25c3-493f-46ea-96c5-8523ed1be24a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-928525cc-3985-4c26-bc41-ad5a8ad8d464 {
  text-align: left;
}

#s-31da00b9-1eee-4899-8148-da6ef2ff0422 {
  padding-top: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
min-height: 50px;
}








#s-31da00b9-1eee-4899-8148-da6ef2ff0422 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-31da00b9-1eee-4899-8148-da6ef2ff0422.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d526a850-242f-4ace-a3f9-1b71f3c8c962 {
  box-shadow:5px 5px 0px 1px rgba(27, 58, 93, 1);
margin-bottom: 30px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(27, 58, 93, 1);
border-style: solid;
border-radius: 20px;
}

@media (min-width: 0px) {
[id="s-d526a850-242f-4ace-a3f9-1b71f3c8c962"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d526a850-242f-4ace-a3f9-1b71f3c8c962"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-d526a850-242f-4ace-a3f9-1b71f3c8c962"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-d526a850-242f-4ace-a3f9-1b71f3c8c962"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-d526a850-242f-4ace-a3f9-1b71f3c8c962"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-d526a850-242f-4ace-a3f9-1b71f3c8c962"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-d526a850-242f-4ace-a3f9-1b71f3c8c962"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-76c75c45-6810-4c2d-8802-75756bd31869 {
  padding-top: 30px;
padding-left: 30px;
min-height: 50px;
}








#s-76c75c45-6810-4c2d-8802-75756bd31869 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-76c75c45-6810-4c2d-8802-75756bd31869.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-58f527f9-8be6-4392-bd7b-c9f4ff9c84e8 {
  text-align: left;
}

#s-5c606460-527e-4bb2-be47-0306e0a39038 {
  padding-top: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
min-height: 50px;
}








#s-5c606460-527e-4bb2-be47-0306e0a39038 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5c606460-527e-4bb2-be47-0306e0a39038.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ba79628c-3da9-417e-9e01-16fd6f62669f {
  box-shadow:5px 5px 0px 1px rgba(27, 58, 93, 1);
margin-bottom: 30px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(27, 58, 93, 1);
border-style: solid;
border-radius: 20px;
}

@media (min-width: 0px) {
[id="s-ba79628c-3da9-417e-9e01-16fd6f62669f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ba79628c-3da9-417e-9e01-16fd6f62669f"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-ba79628c-3da9-417e-9e01-16fd6f62669f"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-ba79628c-3da9-417e-9e01-16fd6f62669f"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-ba79628c-3da9-417e-9e01-16fd6f62669f"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-ba79628c-3da9-417e-9e01-16fd6f62669f"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-ba79628c-3da9-417e-9e01-16fd6f62669f"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-b7e2575f-08bd-47ab-91c9-ece7c8c0445f {
  padding-top: 30px;
padding-left: 30px;
min-height: 50px;
}








#s-b7e2575f-08bd-47ab-91c9-ece7c8c0445f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b7e2575f-08bd-47ab-91c9-ece7c8c0445f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8c373a71-88cd-4217-b1e9-c1b2526bb039 {
  text-align: left;
}

#s-ac01ffc0-dfd4-4f47-a8a7-ac25f8b407c5 {
  padding-top: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
min-height: 50px;
}








#s-ac01ffc0-dfd4-4f47-a8a7-ac25f8b407c5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ac01ffc0-dfd4-4f47-a8a7-ac25f8b407c5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4e82db2d-33ed-4dd4-a47d-aacaa44285f1 {
  box-shadow:5px 5px 0px 1px rgba(27, 58, 93, 1);
margin-bottom: 30px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(27, 58, 93, 1);
border-style: solid;
border-radius: 20px;
}

@media (min-width: 0px) {
[id="s-4e82db2d-33ed-4dd4-a47d-aacaa44285f1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4e82db2d-33ed-4dd4-a47d-aacaa44285f1"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-4e82db2d-33ed-4dd4-a47d-aacaa44285f1"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-4e82db2d-33ed-4dd4-a47d-aacaa44285f1"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-4e82db2d-33ed-4dd4-a47d-aacaa44285f1"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-4e82db2d-33ed-4dd4-a47d-aacaa44285f1"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-4e82db2d-33ed-4dd4-a47d-aacaa44285f1"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-7931cbd3-d18f-4a8c-9076-fc8cedfd252c {
  padding-top: 30px;
padding-left: 30px;
min-height: 50px;
}








#s-7931cbd3-d18f-4a8c-9076-fc8cedfd252c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7931cbd3-d18f-4a8c-9076-fc8cedfd252c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8f649f66-9885-4f69-b1d8-5392918aee11 {
  text-align: left;
}

#s-8a264310-c5c2-4042-89bd-f65ed82a1e45 {
  padding-top: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
min-height: 50px;
}








#s-8a264310-c5c2-4042-89bd-f65ed82a1e45 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8a264310-c5c2-4042-89bd-f65ed82a1e45.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-965c6883-1db6-4e75-9815-025a7643a1cd {
  box-shadow:5px 5px 0px 1px rgba(27, 58, 93, 1);
margin-bottom: 30px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(27, 58, 93, 1);
border-style: solid;
border-radius: 20px;
}

@media (min-width: 0px) {
[id="s-965c6883-1db6-4e75-9815-025a7643a1cd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-965c6883-1db6-4e75-9815-025a7643a1cd"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-965c6883-1db6-4e75-9815-025a7643a1cd"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-965c6883-1db6-4e75-9815-025a7643a1cd"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-965c6883-1db6-4e75-9815-025a7643a1cd"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-965c6883-1db6-4e75-9815-025a7643a1cd"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-965c6883-1db6-4e75-9815-025a7643a1cd"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-c25fbe88-ce46-4bbc-a49f-2bcb266e3df8 {
  padding-top: 30px;
padding-left: 30px;
min-height: 50px;
}








#s-c25fbe88-ce46-4bbc-a49f-2bcb266e3df8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c25fbe88-ce46-4bbc-a49f-2bcb266e3df8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2d1918fd-25b6-4465-8fd3-159fb6551627 {
  text-align: left;
}

#s-3818b634-3c0f-43ce-9e83-47179bde0d73 {
  padding-top: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
min-height: 50px;
}








#s-3818b634-3c0f-43ce-9e83-47179bde0d73 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3818b634-3c0f-43ce-9e83-47179bde0d73.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d92f87a3-a327-4640-b5cb-ad3134ba0307 {
  box-shadow:5px 5px 0px 1px rgba(27, 58, 93, 1);
margin-bottom: 30px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(27, 58, 93, 1);
border-style: solid;
border-radius: 20px;
}

@media (min-width: 0px) {
[id="s-d92f87a3-a327-4640-b5cb-ad3134ba0307"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d92f87a3-a327-4640-b5cb-ad3134ba0307"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-d92f87a3-a327-4640-b5cb-ad3134ba0307"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-d92f87a3-a327-4640-b5cb-ad3134ba0307"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-d92f87a3-a327-4640-b5cb-ad3134ba0307"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-d92f87a3-a327-4640-b5cb-ad3134ba0307"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-d92f87a3-a327-4640-b5cb-ad3134ba0307"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-a9bed1ae-93e9-4774-8db6-22aacc351ca0 {
  padding-top: 30px;
padding-left: 30px;
min-height: 50px;
}








#s-a9bed1ae-93e9-4774-8db6-22aacc351ca0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a9bed1ae-93e9-4774-8db6-22aacc351ca0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-760197b7-dbe0-42e1-b9c7-2656022dae56 {
  text-align: left;
}

#s-ff64b264-8719-48a5-bf38-75a11048f1f4 {
  padding-top: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
min-height: 50px;
}








#s-ff64b264-8719-48a5-bf38-75a11048f1f4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ff64b264-8719-48a5-bf38-75a11048f1f4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-eb6f3958-0059-4ced-a161-caafe87d4bb7 {
  box-shadow:5px 5px 0px 1px rgba(27, 58, 93, 1);
margin-bottom: 30px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(27, 58, 93, 1);
border-style: solid;
border-radius: 20px;
}

@media (min-width: 0px) {
[id="s-eb6f3958-0059-4ced-a161-caafe87d4bb7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-eb6f3958-0059-4ced-a161-caafe87d4bb7"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-eb6f3958-0059-4ced-a161-caafe87d4bb7"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-eb6f3958-0059-4ced-a161-caafe87d4bb7"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-eb6f3958-0059-4ced-a161-caafe87d4bb7"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-eb6f3958-0059-4ced-a161-caafe87d4bb7"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-eb6f3958-0059-4ced-a161-caafe87d4bb7"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-da227993-21ac-48a2-a996-f88e036e5799 {
  padding-top: 30px;
padding-left: 30px;
min-height: 50px;
}








#s-da227993-21ac-48a2-a996-f88e036e5799 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-da227993-21ac-48a2-a996-f88e036e5799.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f9429733-dcae-45b2-bb2f-21afc5a1d2fa {
  text-align: left;
}

#s-3f2911fa-f0da-46f9-9e09-f74d911e5153 {
  padding-top: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
min-height: 50px;
}








#s-3f2911fa-f0da-46f9-9e09-f74d911e5153 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3f2911fa-f0da-46f9-9e09-f74d911e5153.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cad27f7d-6b86-4e01-a502-9c22b93ce427 {
  box-shadow:5px 5px 0px 1px rgba(27, 58, 93, 1);
margin-bottom: 30px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(27, 58, 93, 1);
border-style: solid;
border-radius: 20px;
}

@media (min-width: 0px) {
[id="s-cad27f7d-6b86-4e01-a502-9c22b93ce427"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cad27f7d-6b86-4e01-a502-9c22b93ce427"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-cad27f7d-6b86-4e01-a502-9c22b93ce427"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-cad27f7d-6b86-4e01-a502-9c22b93ce427"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-cad27f7d-6b86-4e01-a502-9c22b93ce427"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-cad27f7d-6b86-4e01-a502-9c22b93ce427"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-cad27f7d-6b86-4e01-a502-9c22b93ce427"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-f9cc232a-1cd5-4f28-9313-541bcac81129 {
  padding-top: 30px;
padding-left: 30px;
min-height: 50px;
}








#s-f9cc232a-1cd5-4f28-9313-541bcac81129 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f9cc232a-1cd5-4f28-9313-541bcac81129.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-62d97e94-ae70-43bd-b112-c95693fc047b {
  text-align: left;
}

#s-71518dd8-4746-4b5d-a7bd-d3e2614a0ec0 {
  padding-top: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
min-height: 50px;
}








#s-71518dd8-4746-4b5d-a7bd-d3e2614a0ec0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-71518dd8-4746-4b5d-a7bd-d3e2614a0ec0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b77e346a-f4fb-405b-bc10-b8b1e2e3e854 {
  margin-top: 30px;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
border-radius: 50px;
max-width: 400px;
background-color: rgba(255, 90, 157, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-b77e346a-f4fb-405b-bc10-b8b1e2e3e854:hover {background-color: rgba(250, 71, 145, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-b77e346a-f4fb-405b-bc10-b8b1e2e3e854:active {background-color: rgba(255, 90, 157, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-b77e346a-f4fb-405b-bc10-b8b1e2e3e854-root {
    text-align: center;
  }


#s-b77e346a-f4fb-405b-bc10-b8b1e2e3e854.shg-btn {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  block ;
}
@media (min-width: 1200px){
  #s-b77e346a-f4fb-405b-bc10-b8b1e2e3e854-root {
    text-align: center;
  }


#s-b77e346a-f4fb-405b-bc10-b8b1e2e3e854.shg-btn {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b77e346a-f4fb-405b-bc10-b8b1e2e3e854-root {
    text-align: center;
  }


#s-b77e346a-f4fb-405b-bc10-b8b1e2e3e854.shg-btn {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b77e346a-f4fb-405b-bc10-b8b1e2e3e854-root {
    text-align: center;
  }


#s-b77e346a-f4fb-405b-bc10-b8b1e2e3e854.shg-btn {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  block ;
}
}@media (max-width: 767px){
  #s-b77e346a-f4fb-405b-bc10-b8b1e2e3e854-root {
    text-align: center;
  }


#s-b77e346a-f4fb-405b-bc10-b8b1e2e3e854.shg-btn {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  block ;
}
}
#s-6f8585e5-039e-4c1e-b634-fe4931b450c9 {
  margin-top: 15px;
padding-top: 10px;
padding-bottom: 60px;
}

#s-1d497171-9de2-4708-9dc8-b83362cdcb4c {
  min-height: 50px;
background-color: rgba(250, 255, 246, 1);
}








#s-1d497171-9de2-4708-9dc8-b83362cdcb4c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1d497171-9de2-4708-9dc8-b83362cdcb4c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-baae453f-387f-4e7f-a0c4-bb119618856d {
  margin-left: auto;
margin-right: auto;
padding-top: 60px;
padding-left: 20px;
padding-bottom: 60px;
padding-right: 20px;
min-height: 50px;
max-width: 80%;
}
@media (min-width: 768px) and (max-width: 991px){#s-baae453f-387f-4e7f-a0c4-bb119618856d {
  max-width: 100%;
}
}@media (max-width: 767px){#s-baae453f-387f-4e7f-a0c4-bb119618856d {
  max-width: 100%;
}
}
#s-baae453f-387f-4e7f-a0c4-bb119618856d {
  background-image: url();
}








#s-baae453f-387f-4e7f-a0c4-bb119618856d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-baae453f-387f-4e7f-a0c4-bb119618856d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 767px){






#s-baae453f-387f-4e7f-a0c4-bb119618856d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-baae453f-387f-4e7f-a0c4-bb119618856d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
}
#s-5280de8c-4e8a-4843-b665-67dddc0363c6 {
  margin-top: 15px;
margin-left: 15px;
margin-bottom: 15px;
margin-right: 15px;
}

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

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

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

.shogun-root iframe {
  display: initial;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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