.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-a86f2340-2a9e-470e-94f2-f4b912f58545 {
  min-height: 50px;
}








#s-a86f2340-2a9e-470e-94f2-f4b912f58545 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a86f2340-2a9e-470e-94f2-f4b912f58545.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

#s-499bc7f2-4b97-444a-932f-59c7f736066e {
  margin-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-499bc7f2-4b97-444a-932f-59c7f736066e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-499bc7f2-4b97-444a-932f-59c7f736066e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-499bc7f2-4b97-444a-932f-59c7f736066e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-499bc7f2-4b97-444a-932f-59c7f736066e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

.shogun-image-container {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-fd320262-a286-404f-a53f-43090aa447a7 {
  text-align: center;
}
@media (max-width: 767px){#s-fd320262-a286-404f-a53f-43090aa447a7 {
  margin-left: 25px;
margin-right: 25px;
}
}






  #s-fd320262-a286-404f-a53f-43090aa447a7 img.shogun-image {
    

    
    
    
  }


#s-fd320262-a286-404f-a53f-43090aa447a7 .shogun-image-content {
  
    align-items: center;
  
}

#s-f6941d81-2a73-4821-907e-d9a2d3adb1ec {
  padding-top: 40px;
padding-left: 40px;
padding-bottom: 0px;
padding-right: 40px;
min-height: 50px;
background-color: rgba(206, 226, 197, 1);
}








#s-f6941d81-2a73-4821-907e-d9a2d3adb1ec > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f6941d81-2a73-4821-907e-d9a2d3adb1ec.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-1fd092fb-3d30-42b5-954e-0fc0bbb4f0a3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-1fd092fb-3d30-42b5-954e-0fc0bbb4f0a3 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-1fd092fb-3d30-42b5-954e-0fc0bbb4f0a3 {
  margin-top: 0px;
margin-bottom: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-1fd092fb-3d30-42b5-954e-0fc0bbb4f0a3 {
  margin-top: 0px;
margin-bottom: 0px;
}
}@media (max-width: 767px){#s-1fd092fb-3d30-42b5-954e-0fc0bbb4f0a3 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}
}
#s-1fd092fb-3d30-42b5-954e-0fc0bbb4f0a3 .shogun-heading-component h1 {
  color: rgba(61, 94, 45, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  letter-spacing: 1px;
  
}



.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-84a72baf-49a0-4ec8-865c-76e5819db763 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-ff2d171c-9d74-439e-b65f-0718c0c7b90e {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
max-width: 950px;
}
@media (min-width: 768px) and (max-width: 991px){#s-ff2d171c-9d74-439e-b65f-0718c0c7b90e {
  display: none;
}
#s-ff2d171c-9d74-439e-b65f-0718c0c7b90e, #wrap-s-ff2d171c-9d74-439e-b65f-0718c0c7b90e { display:none !important; }}
@media (min-width: 0px) {
[id="s-ff2d171c-9d74-439e-b65f-0718c0c7b90e"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.5px);
}

}

@media (min-width: 768px) {
[id="s-ff2d171c-9d74-439e-b65f-0718c0c7b90e"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.8333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-ff2d171c-9d74-439e-b65f-0718c0c7b90e"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.8333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-ff2d171c-9d74-439e-b65f-0718c0c7b90e"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.8333333333333334px);
}

}

#s-0af20c63-5c06-4a87-b47f-2e9fce9701b6 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-0af20c63-5c06-4a87-b47f-2e9fce9701b6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0af20c63-5c06-4a87-b47f-2e9fce9701b6.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-ee9e667d-c9d0-4350-8c6e-ca86e4e6f944 {
  margin-top: 5px;
margin-left: 0px;
margin-bottom: 5px;
margin-right: 0px;
text-align: center;
}







  #s-ee9e667d-c9d0-4350-8c6e-ca86e4e6f944 img.shogun-image {
    

    
    
    
  }


#s-ee9e667d-c9d0-4350-8c6e-ca86e4e6f944 .shogun-image-content {
  
    align-items: center;
  
}

#s-e9edf4e1-adee-4cdd-8ce7-852e5e0967bb {
  margin-left: 10px;
margin-right: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-e9edf4e1-adee-4cdd-8ce7-852e5e0967bb .shogun-heading-component h1 {
  color: rgba(211, 100, 88, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-3bddba73-3eaf-47bd-b476-1e248bfb9e87 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-3bddba73-3eaf-47bd-b476-1e248bfb9e87 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3bddba73-3eaf-47bd-b476-1e248bfb9e87.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-970160e3-1dba-420f-ac1c-9dc993a9e1c0 {
  margin-top: 5px;
margin-left: 0px;
margin-bottom: 5px;
margin-right: 0px;
text-align: center;
}







  #s-970160e3-1dba-420f-ac1c-9dc993a9e1c0 img.shogun-image {
    

    
    
    
  }


#s-970160e3-1dba-420f-ac1c-9dc993a9e1c0 .shogun-image-content {
  
    align-items: center;
  
}

#s-ca10de77-e6ed-4fd2-9b17-1abbacfd05e8 {
  margin-left: 10px;
margin-right: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-ca10de77-e6ed-4fd2-9b17-1abbacfd05e8 .shogun-heading-component h1 {
  color: rgba(211, 100, 88, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-d1c66b07-55bd-4988-b638-f327c250b026 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-d1c66b07-55bd-4988-b638-f327c250b026 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d1c66b07-55bd-4988-b638-f327c250b026.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-f6fb42ad-e0ea-4c16-b24e-cef32deebaa5 {
  margin-top: 5px;
margin-left: 0px;
margin-bottom: 5px;
margin-right: 0px;
text-align: center;
}







  #s-f6fb42ad-e0ea-4c16-b24e-cef32deebaa5 img.shogun-image {
    

    
    
    
  }


#s-f6fb42ad-e0ea-4c16-b24e-cef32deebaa5 .shogun-image-content {
  
    align-items: center;
  
}

#s-082c17c2-7b77-4095-aea2-69262827c340 {
  margin-left: 10px;
margin-right: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-082c17c2-7b77-4095-aea2-69262827c340 .shogun-heading-component h1 {
  color: rgba(211, 100, 88, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-91f63efe-0ae1-47c2-bf8e-e25222fc5717 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-91f63efe-0ae1-47c2-bf8e-e25222fc5717 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-91f63efe-0ae1-47c2-bf8e-e25222fc5717.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-0fb7d6c4-f414-49da-b192-87b53421d377 {
  margin-top: 5px;
margin-left: 0px;
margin-bottom: 5px;
margin-right: 0px;
text-align: center;
}







  #s-0fb7d6c4-f414-49da-b192-87b53421d377 img.shogun-image {
    

    
    
    
  }


#s-0fb7d6c4-f414-49da-b192-87b53421d377 .shogun-image-content {
  
    align-items: center;
  
}

#s-852b0cf6-c6ab-4fad-ae12-cf70f34cc22c {
  margin-left: 10px;
margin-right: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-852b0cf6-c6ab-4fad-ae12-cf70f34cc22c .shogun-heading-component h1 {
  color: rgba(211, 100, 88, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-adc40c97-0f8a-437c-8d92-1f6522444716 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-adc40c97-0f8a-437c-8d92-1f6522444716 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-adc40c97-0f8a-437c-8d92-1f6522444716.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-64ffaeec-08ba-4677-b922-dde62b07c235 {
  margin-top: 5px;
margin-left: 0px;
margin-bottom: 5px;
margin-right: 0px;
text-align: center;
}







  #s-64ffaeec-08ba-4677-b922-dde62b07c235 img.shogun-image {
    

    
    
    
  }


#s-64ffaeec-08ba-4677-b922-dde62b07c235 .shogun-image-content {
  
    align-items: center;
  
}

#s-998d09cb-ae47-498e-9b18-e60286a787ef {
  margin-left: 10px;
margin-right: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-998d09cb-ae47-498e-9b18-e60286a787ef .shogun-heading-component h1 {
  color: rgba(211, 100, 88, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-3e501fef-9852-432c-9dc3-84a0258199c6 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-3e501fef-9852-432c-9dc3-84a0258199c6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3e501fef-9852-432c-9dc3-84a0258199c6.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-f519041e-1ec8-45ef-bb73-319983432a09 {
  margin-top: 5px;
margin-left: 0px;
margin-bottom: 5px;
margin-right: 0px;
text-align: center;
}







  #s-f519041e-1ec8-45ef-bb73-319983432a09 img.shogun-image {
    

    
    
    
  }


#s-f519041e-1ec8-45ef-bb73-319983432a09 .shogun-image-content {
  
    align-items: center;
  
}

#s-0492c3af-e72b-4816-81ae-3b2e81a3aa56 {
  margin-left: 10px;
margin-right: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-0492c3af-e72b-4816-81ae-3b2e81a3aa56 .shogun-heading-component h1 {
  color: rgba(211, 100, 88, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-af7e05fe-b60d-4828-81a6-e919f944eac1 {
  margin-left: 20px;
margin-right: 20px;
}
@media (min-width: 1200px){#s-af7e05fe-b60d-4828-81a6-e919f944eac1 {
  display: none;
}
#s-af7e05fe-b60d-4828-81a6-e919f944eac1, #wrap-s-af7e05fe-b60d-4828-81a6-e919f944eac1 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-af7e05fe-b60d-4828-81a6-e919f944eac1 {
  display: none;
}
#s-af7e05fe-b60d-4828-81a6-e919f944eac1, #wrap-s-af7e05fe-b60d-4828-81a6-e919f944eac1 { display:none !important; }}@media (max-width: 767px){#s-af7e05fe-b60d-4828-81a6-e919f944eac1 {
  display: none;
}
#s-af7e05fe-b60d-4828-81a6-e919f944eac1, #wrap-s-af7e05fe-b60d-4828-81a6-e919f944eac1 { display:none !important; }}
@media (min-width: 0px) {
[id="s-af7e05fe-b60d-4828-81a6-e919f944eac1"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 1.0px);
}

}

@media (min-width: 768px) {
[id="s-af7e05fe-b60d-4828-81a6-e919f944eac1"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.5px);
}

}

@media (min-width: 992px) {
[id="s-af7e05fe-b60d-4828-81a6-e919f944eac1"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.5px);
}

}

@media (min-width: 1200px) {
[id="s-af7e05fe-b60d-4828-81a6-e919f944eac1"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.5px);
}

}

#s-a7ffa169-a535-4236-b8c5-bd50a3f6b8b7 {
  margin-top: 20px;
margin-bottom: 20px;
min-height: 50px;
}








#s-a7ffa169-a535-4236-b8c5-bd50a3f6b8b7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a7ffa169-a535-4236-b8c5-bd50a3f6b8b7.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-81472a1e-3f24-4f95-8686-6b11d1d026d2 {
  margin-top: 5px;
margin-left: 0px;
margin-bottom: 5px;
margin-right: 0px;
text-align: center;
}







  #s-81472a1e-3f24-4f95-8686-6b11d1d026d2 img.shogun-image {
    

    
    
    
  }


#s-81472a1e-3f24-4f95-8686-6b11d1d026d2 .shogun-image-content {
  
    align-items: center;
  
}

#s-79262d31-18a8-402c-8ff5-9bde79b5b945 {
  margin-left: 10px;
margin-right: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-79262d31-18a8-402c-8ff5-9bde79b5b945 .shogun-heading-component h1 {
  color: rgba(211, 100, 88, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-c8c6ef85-2519-4048-90f9-d15244f85a2e {
  margin-top: 20px;
margin-bottom: 20px;
min-height: 50px;
}








#s-c8c6ef85-2519-4048-90f9-d15244f85a2e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c8c6ef85-2519-4048-90f9-d15244f85a2e.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-449a4259-0a03-4e21-9ce7-3a2ca8985da4 {
  margin-top: 5px;
margin-left: 0px;
margin-bottom: 5px;
margin-right: 0px;
text-align: center;
}







  #s-449a4259-0a03-4e21-9ce7-3a2ca8985da4 img.shogun-image {
    

    
    
    
  }


#s-449a4259-0a03-4e21-9ce7-3a2ca8985da4 .shogun-image-content {
  
    align-items: center;
  
}

#s-bd0c6340-22cc-48ae-b67f-9481c25467be {
  margin-left: 10px;
margin-right: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-bd0c6340-22cc-48ae-b67f-9481c25467be .shogun-heading-component h1 {
  color: rgba(211, 100, 88, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-2786d538-54a8-486b-a2b0-7e1a3cac8a64 {
  margin-top: 20px;
margin-bottom: 20px;
min-height: 50px;
}








#s-2786d538-54a8-486b-a2b0-7e1a3cac8a64 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2786d538-54a8-486b-a2b0-7e1a3cac8a64.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-02edc186-ef2c-4d13-b4d2-247a2fab6047 {
  margin-top: 5px;
margin-left: 0px;
margin-bottom: 5px;
margin-right: 0px;
text-align: center;
}







  #s-02edc186-ef2c-4d13-b4d2-247a2fab6047 img.shogun-image {
    

    
    
    
  }


#s-02edc186-ef2c-4d13-b4d2-247a2fab6047 .shogun-image-content {
  
    align-items: center;
  
}

#s-1bec0dd4-7a58-4eee-b878-2359b860b991 {
  margin-left: 10px;
margin-right: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-1bec0dd4-7a58-4eee-b878-2359b860b991 .shogun-heading-component h1 {
  color: rgba(211, 100, 88, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-3d5926f2-31f0-4bc7-a3b5-03fb7dbb6291 {
  margin-top: 20px;
margin-bottom: 20px;
min-height: 50px;
}








#s-3d5926f2-31f0-4bc7-a3b5-03fb7dbb6291 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3d5926f2-31f0-4bc7-a3b5-03fb7dbb6291.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-227c911e-c69b-47d7-b94c-98fb1b3a4746 {
  margin-top: 5px;
margin-left: 0px;
margin-bottom: 5px;
margin-right: 0px;
text-align: center;
}







  #s-227c911e-c69b-47d7-b94c-98fb1b3a4746 img.shogun-image {
    

    
    
    
  }


#s-227c911e-c69b-47d7-b94c-98fb1b3a4746 .shogun-image-content {
  
    align-items: center;
  
}

#s-2b4453e9-2721-4a0a-afc5-450c5bb1293f {
  margin-left: 10px;
margin-right: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-2b4453e9-2721-4a0a-afc5-450c5bb1293f .shogun-heading-component h1 {
  color: rgba(211, 100, 88, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-97c1e1ea-2717-48aa-ae27-c05a08418d0e {
  margin-top: 20px;
margin-left: 20px;
margin-right: 20px;
min-height: 50px;
}
@media (min-width: 1200px){#s-97c1e1ea-2717-48aa-ae27-c05a08418d0e {
  display: none;
}
#s-97c1e1ea-2717-48aa-ae27-c05a08418d0e, #wrap-s-97c1e1ea-2717-48aa-ae27-c05a08418d0e { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-97c1e1ea-2717-48aa-ae27-c05a08418d0e {
  display: none;
}
#s-97c1e1ea-2717-48aa-ae27-c05a08418d0e, #wrap-s-97c1e1ea-2717-48aa-ae27-c05a08418d0e { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-97c1e1ea-2717-48aa-ae27-c05a08418d0e {
  
}
}







#s-97c1e1ea-2717-48aa-ae27-c05a08418d0e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-97c1e1ea-2717-48aa-ae27-c05a08418d0e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8bd2ca54-e929-43d9-96aa-bda9237dbc23 {
  margin-bottom: 10px;
min-height: 50px;
}








#s-8bd2ca54-e929-43d9-96aa-bda9237dbc23 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8bd2ca54-e929-43d9-96aa-bda9237dbc23.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6899b704-f644-4c4d-8ddd-398ff9a6d04c {
  padding-top: 10px;
}

@media (min-width: 0px) {
[id="s-6899b704-f644-4c4d-8ddd-398ff9a6d04c"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 768px) {
[id="s-6899b704-f644-4c4d-8ddd-398ff9a6d04c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-6899b704-f644-4c4d-8ddd-398ff9a6d04c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-6899b704-f644-4c4d-8ddd-398ff9a6d04c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

#s-f15f4388-2431-48f2-8626-f53a331bd1fb {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-f15f4388-2431-48f2-8626-f53a331bd1fb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f15f4388-2431-48f2-8626-f53a331bd1fb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3da3c770-8dea-4308-9a91-7168ecba46d6 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-3da3c770-8dea-4308-9a91-7168ecba46d6 .shogun-heading-component h1 {
  color: rgba(106, 158, 70, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-729c2711-d2d3-4a47-92be-91998587673f {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-729c2711-d2d3-4a47-92be-91998587673f .shogun-heading-component h1 {
  color: rgba(106, 158, 70, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-888ad4d9-87f8-4bc3-b595-8ad35df60d0a {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-888ad4d9-87f8-4bc3-b595-8ad35df60d0a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-888ad4d9-87f8-4bc3-b595-8ad35df60d0a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6b49a622-50bf-46f6-bb62-8ceb3c9a248f {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-6b49a622-50bf-46f6-bb62-8ceb3c9a248f .shogun-heading-component h1 {
  color: rgba(106, 158, 70, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-cf9eb0fd-375f-44fc-8921-003fabf92d1b {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-cf9eb0fd-375f-44fc-8921-003fabf92d1b .shogun-heading-component h1 {
  color: rgba(106, 158, 70, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-2e79e1e1-af18-4258-84b1-2566176625e6 {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-2e79e1e1-af18-4258-84b1-2566176625e6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2e79e1e1-af18-4258-84b1-2566176625e6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6c0aff1a-a8d3-4c60-9ba4-f67e7aa5cede {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-6c0aff1a-a8d3-4c60-9ba4-f67e7aa5cede .shogun-heading-component h1 {
  color: rgba(106, 158, 70, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-5a018489-fbe0-4ac5-ab34-fcb04dd5289c {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-5a018489-fbe0-4ac5-ab34-fcb04dd5289c .shogun-heading-component h1 {
  color: rgba(106, 158, 70, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



@media (min-width: 0px) {
[id="s-8833f33d-2b85-4197-b114-6c00839d1514"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 768px) {
[id="s-8833f33d-2b85-4197-b114-6c00839d1514"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-8833f33d-2b85-4197-b114-6c00839d1514"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-8833f33d-2b85-4197-b114-6c00839d1514"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

#s-b4fc788c-f1f0-407a-82cf-b95dceb0d8f6 {
  margin-top: 15px;
margin-bottom: 15px;
min-height: 50px;
}








#s-b4fc788c-f1f0-407a-82cf-b95dceb0d8f6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b4fc788c-f1f0-407a-82cf-b95dceb0d8f6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1284dceb-7fc4-4b78-a799-69371a1f3df0 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-1284dceb-7fc4-4b78-a799-69371a1f3df0 .shogun-heading-component h1 {
  color: rgba(106, 158, 70, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-dfe14995-c54a-4953-9dad-1a78524bf25b {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-dfe14995-c54a-4953-9dad-1a78524bf25b .shogun-heading-component h1 {
  color: rgba(106, 158, 70, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-f10337c2-764e-4d36-8425-fc4aa77c40cb {
  margin-top: 15px;
margin-bottom: 15px;
min-height: 50px;
}








#s-f10337c2-764e-4d36-8425-fc4aa77c40cb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f10337c2-764e-4d36-8425-fc4aa77c40cb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dbe1c1f7-f52f-487d-858c-287268a04dc1 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-dbe1c1f7-f52f-487d-858c-287268a04dc1 .shogun-heading-component h1 {
  color: rgba(106, 158, 70, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-febd5d6e-19dc-4ead-9853-85b297237582 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-febd5d6e-19dc-4ead-9853-85b297237582 .shogun-heading-component h1 {
  color: rgba(106, 158, 70, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-17ee43f3-cb41-4dfd-b16a-c44dce7bb803 {
  min-height: 50px;
}








#s-17ee43f3-cb41-4dfd-b16a-c44dce7bb803 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-17ee43f3-cb41-4dfd-b16a-c44dce7bb803.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2a6d9ef4-8cc6-491a-854a-0db328a9d952 {
  text-align: center;
}







  #s-2a6d9ef4-8cc6-491a-854a-0db328a9d952 img.shogun-image {
    

    
    
    
  }


#s-2a6d9ef4-8cc6-491a-854a-0db328a9d952 .shogun-image-content {
  
    align-items: center;
  
}

#s-0623daf5-0fa2-48b9-9884-745baa3027ed {
  margin-top: 0px;
margin-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-0623daf5-0fa2-48b9-9884-745baa3027ed {
  margin-left: 0px;
margin-right: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0623daf5-0fa2-48b9-9884-745baa3027ed {
  margin-right: 50px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-0623daf5-0fa2-48b9-9884-745baa3027ed {
  margin-left: 150px;
margin-right: 150px;
}
}@media (max-width: 767px){#s-0623daf5-0fa2-48b9-9884-745baa3027ed {
  padding-left: 30px;
padding-right: 30px;
}
}






  #s-0623daf5-0fa2-48b9-9884-745baa3027ed img.shogun-image {
    

    
    
    
  }


#s-0623daf5-0fa2-48b9-9884-745baa3027ed .shogun-image-content {
  
    align-items: center;
  
}

#s-a0db4852-69c7-42f6-911b-cbf220b38bb4 {
  margin-top: 20px;
margin-left: 50px;
margin-right: 50px;
min-height: 50px;
}
@media (min-width: 1200px){#s-a0db4852-69c7-42f6-911b-cbf220b38bb4 {
  display: none;
}
#s-a0db4852-69c7-42f6-911b-cbf220b38bb4, #wrap-s-a0db4852-69c7-42f6-911b-cbf220b38bb4 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a0db4852-69c7-42f6-911b-cbf220b38bb4 {
  display: none;
}
#s-a0db4852-69c7-42f6-911b-cbf220b38bb4, #wrap-s-a0db4852-69c7-42f6-911b-cbf220b38bb4 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a0db4852-69c7-42f6-911b-cbf220b38bb4 {
  
}
}@media (max-width: 767px){#s-a0db4852-69c7-42f6-911b-cbf220b38bb4 {
  
}
}







#s-a0db4852-69c7-42f6-911b-cbf220b38bb4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a0db4852-69c7-42f6-911b-cbf220b38bb4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ba3db375-7556-4157-8750-8a91c9108fba {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-ba3db375-7556-4157-8750-8a91c9108fba .shogun-heading-component h1 {
  color: rgba(61, 94, 45, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 30px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-b6f8a39b-880c-49e7-98ff-4d9a6e7e5bc0 {
  margin-bottom: 20px;
min-height: 50px;
max-width: 700px;
}








#s-b6f8a39b-880c-49e7-98ff-4d9a6e7e5bc0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b6f8a39b-880c-49e7-98ff-4d9a6e7e5bc0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-83d142be-8fd9-4de8-9445-1381eaf3851f {
  margin-left: 0px;
margin-right: 0px;
}

@media (min-width: 0px) {
[id="s-83d142be-8fd9-4de8-9445-1381eaf3851f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-83d142be-8fd9-4de8-9445-1381eaf3851f"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-83d142be-8fd9-4de8-9445-1381eaf3851f"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-83d142be-8fd9-4de8-9445-1381eaf3851f"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-a023d4ad-3e3a-4c1c-b64b-a217c395e2b2 {
  margin-top: 10px;
margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}








#s-a023d4ad-3e3a-4c1c-b64b-a217c395e2b2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a023d4ad-3e3a-4c1c-b64b-a217c395e2b2.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-a80b344c-a906-403a-a849-75c1cf740425 {
  text-align: center;
}







  #s-a80b344c-a906-403a-a849-75c1cf740425 img.shogun-image {
    

    
    
    
  }


#s-a80b344c-a906-403a-a849-75c1cf740425 .shogun-image-content {
  
    align-items: center;
  
}

#s-2584caf4-19cf-4b8a-a192-e626e458ffa0 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-2584caf4-19cf-4b8a-a192-e626e458ffa0 .shogun-heading-component h1 {
  color: rgba(106, 158, 70, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 26px;
  line-height: 0.9em;
  
  
}



#s-79268ed9-8993-453d-9803-b47493eed9e4 {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}








#s-79268ed9-8993-453d-9803-b47493eed9e4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-79268ed9-8993-453d-9803-b47493eed9e4.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-c75e3aca-9c71-46a7-b174-f328a793b7e5 {
  text-align: center;
}







  #s-c75e3aca-9c71-46a7-b174-f328a793b7e5 img.shogun-image {
    

    
    
    
  }


#s-c75e3aca-9c71-46a7-b174-f328a793b7e5 .shogun-image-content {
  
    align-items: center;
  
}

#s-0a627ee7-e7eb-42fb-ad44-dc1b05e90358 {
  text-align: center;
}

#s-0a627ee7-e7eb-42fb-ad44-dc1b05e90358 .shogun-heading-component h1 {
  color: rgba(106, 158, 70, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 26px;
  line-height: 0.9em;
  
  
}



#s-79349491-f58e-42f2-b8a1-46007c94113f {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}








#s-79349491-f58e-42f2-b8a1-46007c94113f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-79349491-f58e-42f2-b8a1-46007c94113f.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-f6b847c3-2597-4cff-b2af-41d6d8da3bd3 {
  text-align: center;
}







  #s-f6b847c3-2597-4cff-b2af-41d6d8da3bd3 img.shogun-image {
    

    
    
    
  }


#s-f6b847c3-2597-4cff-b2af-41d6d8da3bd3 .shogun-image-content {
  
    align-items: center;
  
}

#s-e5ddbe6e-b9ee-41bf-ac7a-2c39a15bbba5 {
  text-align: center;
}

#s-e5ddbe6e-b9ee-41bf-ac7a-2c39a15bbba5 .shogun-heading-component h1 {
  color: rgba(106, 158, 70, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 26px;
  line-height: 0.9em;
  
  
}



#s-cebd0311-c14f-4343-9827-488432ec029a {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}








#s-cebd0311-c14f-4343-9827-488432ec029a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cebd0311-c14f-4343-9827-488432ec029a.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-ef3b28ae-f3cb-46ce-88f1-5dad19479755 {
  text-align: center;
}







  #s-ef3b28ae-f3cb-46ce-88f1-5dad19479755 img.shogun-image {
    

    
    
    
  }


#s-ef3b28ae-f3cb-46ce-88f1-5dad19479755 .shogun-image-content {
  
    align-items: center;
  
}

#s-de721f24-4bd0-42e4-a440-b6c79a99b934 {
  text-align: center;
}

#s-de721f24-4bd0-42e4-a440-b6c79a99b934 .shogun-heading-component h1 {
  color: rgba(106, 158, 70, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 26px;
  line-height: 0.9em;
  
  
}



#s-af20ad2d-a61b-43df-8dc5-9b6bc8f6162b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-af20ad2d-a61b-43df-8dc5-9b6bc8f6162b .shogun-heading-component h1 {
  color: rgba(61, 94, 45, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 30px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-4a9d5742-b824-4ec7-873c-db836eb68335 {
  margin-top: 40px;
margin-bottom: 40px;
}
@media (min-width: 768px) and (max-width: 991px){#s-4a9d5742-b824-4ec7-873c-db836eb68335 {
  display: none;
}
#s-4a9d5742-b824-4ec7-873c-db836eb68335, #wrap-s-4a9d5742-b824-4ec7-873c-db836eb68335 { display:none !important; }}@media (max-width: 767px){#s-4a9d5742-b824-4ec7-873c-db836eb68335 {
  display: none;
}
#s-4a9d5742-b824-4ec7-873c-db836eb68335, #wrap-s-4a9d5742-b824-4ec7-873c-db836eb68335 { display:none !important; }}
@media (min-width: 0px) {
[id="s-4a9d5742-b824-4ec7-873c-db836eb68335"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4a9d5742-b824-4ec7-873c-db836eb68335"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-4a9d5742-b824-4ec7-873c-db836eb68335"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-4a9d5742-b824-4ec7-873c-db836eb68335"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-4a9d5742-b824-4ec7-873c-db836eb68335"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-4a9d5742-b824-4ec7-873c-db836eb68335"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-4a9d5742-b824-4ec7-873c-db836eb68335"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-dcd355cd-7951-42cb-b081-fb66f861f2a6 {
  margin-left: 50px;
margin-right: 50px;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-dcd355cd-7951-42cb-b081-fb66f861f2a6 {
  
}
}@media (max-width: 767px){#s-dcd355cd-7951-42cb-b081-fb66f861f2a6 {
  
}
}







#s-dcd355cd-7951-42cb-b081-fb66f861f2a6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dcd355cd-7951-42cb-b081-fb66f861f2a6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-27e4811c-7d26-4092-96b3-f49b03206aff"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 768px) {
[id="s-27e4811c-7d26-4092-96b3-f49b03206aff"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-27e4811c-7d26-4092-96b3-f49b03206aff"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-27e4811c-7d26-4092-96b3-f49b03206aff"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

#s-08561fe9-b62c-4d77-a7c1-6b2758c72bf4 {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-08561fe9-b62c-4d77-a7c1-6b2758c72bf4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-08561fe9-b62c-4d77-a7c1-6b2758c72bf4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-29040dbf-a1d1-4682-8e67-3329fbb6de3f {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-29040dbf-a1d1-4682-8e67-3329fbb6de3f .shogun-heading-component h1 {
  color: rgba(106, 158, 70, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-003b251c-b2c4-4861-871b-f5fd3dfc4037 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-003b251c-b2c4-4861-871b-f5fd3dfc4037 .shogun-heading-component h1 {
  color: rgba(106, 158, 70, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-004e4f77-ee62-4600-bcab-bf9b2e2d85ee {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-004e4f77-ee62-4600-bcab-bf9b2e2d85ee > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-004e4f77-ee62-4600-bcab-bf9b2e2d85ee.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e32cf58b-a424-434f-b773-69322999271d {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-e32cf58b-a424-434f-b773-69322999271d .shogun-heading-component h1 {
  color: rgba(106, 158, 70, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-70db2bcf-9c4c-4dd7-a541-8a5fe1c0f18d {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-70db2bcf-9c4c-4dd7-a541-8a5fe1c0f18d .shogun-heading-component h1 {
  color: rgba(106, 158, 70, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-a0288c3e-15bd-4a41-898a-8aa40dcef600 {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-a0288c3e-15bd-4a41-898a-8aa40dcef600 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a0288c3e-15bd-4a41-898a-8aa40dcef600.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b8cf440e-2d85-4e0a-a4ab-f0f9d28c54e3 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-b8cf440e-2d85-4e0a-a4ab-f0f9d28c54e3 .shogun-heading-component h1 {
  color: rgba(106, 158, 70, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-2c6dde52-3c18-4a0f-9085-b57c5067da23 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-2c6dde52-3c18-4a0f-9085-b57c5067da23 .shogun-heading-component h1 {
  color: rgba(106, 158, 70, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-a486f1be-6d3f-4330-b80d-a6d97bf1adff {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-a486f1be-6d3f-4330-b80d-a6d97bf1adff > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a486f1be-6d3f-4330-b80d-a6d97bf1adff.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-84bf4ee9-1aec-4a15-afff-408414c7075a {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-84bf4ee9-1aec-4a15-afff-408414c7075a .shogun-heading-component h1 {
  color: rgba(106, 158, 70, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-60ea2f16-0deb-48f8-b6ee-9be992368114 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-60ea2f16-0deb-48f8-b6ee-9be992368114 .shogun-heading-component h1 {
  color: rgba(106, 158, 70, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-80c4a0d8-2bfa-46f3-8c04-d074bd9ce4f8 {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-80c4a0d8-2bfa-46f3-8c04-d074bd9ce4f8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-80c4a0d8-2bfa-46f3-8c04-d074bd9ce4f8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3b91bb9a-5b30-4769-aaa5-daa14e8fad57 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-3b91bb9a-5b30-4769-aaa5-daa14e8fad57 .shogun-heading-component h1 {
  color: rgba(106, 158, 70, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-23327eef-d72f-4308-8d09-bd6d67d0bb37 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-23327eef-d72f-4308-8d09-bd6d67d0bb37 .shogun-heading-component h1 {
  color: rgba(106, 158, 70, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-bfe12f8a-3b30-471f-8ed5-3c843870ca98 {
  min-height: 50px;
}








#s-bfe12f8a-3b30-471f-8ed5-3c843870ca98 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bfe12f8a-3b30-471f-8ed5-3c843870ca98.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-41ac1f5e-30f7-429d-832f-5560c2276c08 {
  text-align: center;
}







  #s-41ac1f5e-30f7-429d-832f-5560c2276c08 img.shogun-image {
    

    
    
    
  }


#s-41ac1f5e-30f7-429d-832f-5560c2276c08 .shogun-image-content {
  
    align-items: center;
  
}

#s-9b350e59-1f57-4b9e-98bf-d62d8f036271 {
  text-align: center;
}
@media (max-width: 767px){#s-9b350e59-1f57-4b9e-98bf-d62d8f036271 {
  display: none;
}
#s-9b350e59-1f57-4b9e-98bf-d62d8f036271, #wrap-s-9b350e59-1f57-4b9e-98bf-d62d8f036271 { display:none !important; }}






  #s-9b350e59-1f57-4b9e-98bf-d62d8f036271 img.shogun-image {
    

    
    
    
  }


#s-9b350e59-1f57-4b9e-98bf-d62d8f036271 .shogun-image-content {
  
    align-items: center;
  
}

#s-118a52ee-f6b3-4d08-9cdf-979d8816fced {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-118a52ee-f6b3-4d08-9cdf-979d8816fced .shogun-heading-component h1 {
  color: rgba(61, 94, 45, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 30px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-b479e173-b48c-41ec-a9c7-7fb9c3a4eece {
  margin-bottom: 20px;
min-height: 50px;
max-width: 700px;
}








#s-b479e173-b48c-41ec-a9c7-7fb9c3a4eece > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b479e173-b48c-41ec-a9c7-7fb9c3a4eece.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1e643718-93c9-414a-8b69-82c47f778c57 {
  margin-left: 0px;
margin-right: 0px;
}

@media (min-width: 0px) {
[id="s-1e643718-93c9-414a-8b69-82c47f778c57"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-1e643718-93c9-414a-8b69-82c47f778c57"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-1e643718-93c9-414a-8b69-82c47f778c57"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-1e643718-93c9-414a-8b69-82c47f778c57"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-bfa8afde-fd6c-4bbf-8612-ec44e0588577 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-bfa8afde-fd6c-4bbf-8612-ec44e0588577 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bfa8afde-fd6c-4bbf-8612-ec44e0588577.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-4a37ec9a-76ff-4696-ba58-30ff6a518487 {
  text-align: center;
}







  #s-4a37ec9a-76ff-4696-ba58-30ff6a518487 img.shogun-image {
    

    
    
    
  }


#s-4a37ec9a-76ff-4696-ba58-30ff6a518487 .shogun-image-content {
  
    align-items: center;
  
}

#s-38c178f9-759b-4d4b-a60f-7fc8059924dc {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-38c178f9-759b-4d4b-a60f-7fc8059924dc .shogun-heading-component h1 {
  color: rgba(106, 158, 70, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 22px;
  line-height: 0.9em;
  
  
}



#s-850c5819-1635-44dc-876e-bcf4e061d2fd {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-850c5819-1635-44dc-876e-bcf4e061d2fd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-850c5819-1635-44dc-876e-bcf4e061d2fd.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-ae521949-3f4c-4000-a54d-bbce70286b18 {
  text-align: center;
}







  #s-ae521949-3f4c-4000-a54d-bbce70286b18 img.shogun-image {
    

    
    
    
  }


#s-ae521949-3f4c-4000-a54d-bbce70286b18 .shogun-image-content {
  
    align-items: center;
  
}

#s-f24e0cee-f357-4569-84cf-5b4d61cc7f14 {
  text-align: center;
}

#s-f24e0cee-f357-4569-84cf-5b4d61cc7f14 .shogun-heading-component h1 {
  color: rgba(106, 158, 70, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 22px;
  line-height: 0.9em;
  
  
}



#s-3c27aec4-c430-4239-8377-f352ff6adaff {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-3c27aec4-c430-4239-8377-f352ff6adaff > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3c27aec4-c430-4239-8377-f352ff6adaff.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-faa9f38e-1879-418d-9f05-f4ac122c0eee {
  text-align: center;
}







  #s-faa9f38e-1879-418d-9f05-f4ac122c0eee img.shogun-image {
    

    
    
    
  }


#s-faa9f38e-1879-418d-9f05-f4ac122c0eee .shogun-image-content {
  
    align-items: center;
  
}

#s-ed8c95c7-3239-4872-8b01-a64dfb55b89f {
  text-align: center;
}

#s-ed8c95c7-3239-4872-8b01-a64dfb55b89f .shogun-heading-component h1 {
  color: rgba(106, 158, 70, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 22px;
  line-height: 0.9em;
  
  
}



#s-c17c8f5e-7015-42ca-99e4-138ed7e70f64 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-c17c8f5e-7015-42ca-99e4-138ed7e70f64 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c17c8f5e-7015-42ca-99e4-138ed7e70f64.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-06f0759c-4162-40b2-bd8e-0f6f90756ff9 {
  text-align: center;
}







  #s-06f0759c-4162-40b2-bd8e-0f6f90756ff9 img.shogun-image {
    

    
    
    
  }


#s-06f0759c-4162-40b2-bd8e-0f6f90756ff9 .shogun-image-content {
  
    align-items: center;
  
}

#s-e7ebc44c-8487-4a9c-9c47-c2a393a9b58e {
  text-align: center;
}

#s-e7ebc44c-8487-4a9c-9c47-c2a393a9b58e .shogun-heading-component h1 {
  color: rgba(106, 158, 70, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 22px;
  line-height: 0.9em;
  
  
}



#s-09b4a359-e74c-47fe-94a7-ce5aa438c429 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-09b4a359-e74c-47fe-94a7-ce5aa438c429 .shogun-heading-component h1 {
  color: rgba(61, 94, 45, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 30px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-6ee32b4d-e914-45d7-acad-df4fa1ba583d {
  margin-top: 0px;
margin-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-6ee32b4d-e914-45d7-acad-df4fa1ba583d {
  margin-left: 0px;
margin-right: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-6ee32b4d-e914-45d7-acad-df4fa1ba583d {
  margin-right: 50px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-6ee32b4d-e914-45d7-acad-df4fa1ba583d {
  
}
}@media (max-width: 767px){#s-6ee32b4d-e914-45d7-acad-df4fa1ba583d {
  padding-left: 50px;
padding-right: 50px;
}
}






  #s-6ee32b4d-e914-45d7-acad-df4fa1ba583d img.shogun-image {
    

    
    
    
  }


#s-6ee32b4d-e914-45d7-acad-df4fa1ba583d .shogun-image-content {
  
    align-items: center;
  
}

#s-1b5f6093-34ea-43d9-be59-bfd0061e41c6 {
  margin-left: 0px;
margin-right: 0px;
padding-left: 40px;
padding-bottom: 0px;
padding-right: 40px;
min-height: 50px;
}








#s-1b5f6093-34ea-43d9-be59-bfd0061e41c6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1b5f6093-34ea-43d9-be59-bfd0061e41c6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-42372598-41df-49ec-8325-cdba99927278 {
  text-align: center;
}
@media (min-width: 1200px){#s-42372598-41df-49ec-8325-cdba99927278 {
  display: none;
}
#s-42372598-41df-49ec-8325-cdba99927278, #wrap-s-42372598-41df-49ec-8325-cdba99927278 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-42372598-41df-49ec-8325-cdba99927278 {
  display: none;
}
#s-42372598-41df-49ec-8325-cdba99927278, #wrap-s-42372598-41df-49ec-8325-cdba99927278 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-42372598-41df-49ec-8325-cdba99927278 {
  display: none;
}
#s-42372598-41df-49ec-8325-cdba99927278, #wrap-s-42372598-41df-49ec-8325-cdba99927278 { display:none !important; }}






  #s-42372598-41df-49ec-8325-cdba99927278 img.shogun-image {
    

    
    
    
  }


#s-42372598-41df-49ec-8325-cdba99927278 .shogun-image-content {
  
    align-items: center;
  
}

#s-b14aa0d9-8eba-4795-b9fa-f6abc033b5f1 {
  margin-left: 0px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
text-align: center;
}
@media (max-width: 767px){#s-b14aa0d9-8eba-4795-b9fa-f6abc033b5f1 {
  display: none;
}
#s-b14aa0d9-8eba-4795-b9fa-f6abc033b5f1, #wrap-s-b14aa0d9-8eba-4795-b9fa-f6abc033b5f1 { display:none !important; }}






  #s-b14aa0d9-8eba-4795-b9fa-f6abc033b5f1 img.shogun-image {
    

    
    
    
  }


#s-b14aa0d9-8eba-4795-b9fa-f6abc033b5f1 .shogun-image-content {
  
    align-items: center;
  
}

#s-26acc228-07cd-4d9f-9864-238b0d996edb {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-26acc228-07cd-4d9f-9864-238b0d996edb {
  margin-bottom: 10px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-26acc228-07cd-4d9f-9864-238b0d996edb {
  margin-top: 15px;
margin-bottom: 15px;
}
}@media (max-width: 767px){#s-26acc228-07cd-4d9f-9864-238b0d996edb {
  margin-left: 25px;
margin-right: 25px;
padding-top: 20px;
padding-bottom: 20px;
}
}
#s-26acc228-07cd-4d9f-9864-238b0d996edb .shogun-heading-component h1 {
  color: rgba(61, 94, 45, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  
  
  letter-spacing: 1px;
  text-align: center;
}


@media (min-width: 1200px){#s-26acc228-07cd-4d9f-9864-238b0d996edb .shogun-heading-component h1 {
  color: rgba(61, 94, 45, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 40px;
  
  letter-spacing: 1px;
  text-align: center;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-26acc228-07cd-4d9f-9864-238b0d996edb .shogun-heading-component h1 {
  color: rgba(61, 94, 45, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  letter-spacing: 1px;
  text-align: center;
}


}@media (max-width: 767px){#s-26acc228-07cd-4d9f-9864-238b0d996edb .shogun-heading-component h1 {
  color: rgba(61, 94, 45, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  letter-spacing: 1px;
  text-align: center;
}


}
#s-29415fd9-7a67-469a-897d-c0a4dbddb3ac {
  margin-left: auto;
margin-right: auto;
padding-left: 0px;
padding-right: 0px;
max-width: 1000px;
}
@media (min-width: 768px) and (max-width: 991px){#s-29415fd9-7a67-469a-897d-c0a4dbddb3ac {
  
}
}@media (max-width: 767px){#s-29415fd9-7a67-469a-897d-c0a4dbddb3ac {
  
}
}
@media (min-width: 0px) {
[id="s-29415fd9-7a67-469a-897d-c0a4dbddb3ac"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-29415fd9-7a67-469a-897d-c0a4dbddb3ac"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-29415fd9-7a67-469a-897d-c0a4dbddb3ac"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-29415fd9-7a67-469a-897d-c0a4dbddb3ac"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-06459701-b40b-47e8-8e74-246b83164592 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-06459701-b40b-47e8-8e74-246b83164592 {
  
}
}@media (max-width: 767px){#s-06459701-b40b-47e8-8e74-246b83164592 {
  
}
}






  #s-06459701-b40b-47e8-8e74-246b83164592 img.shogun-image {
    

    
    
    
  }


#s-06459701-b40b-47e8-8e74-246b83164592 .shogun-image-content {
  
    align-items: center;
  
}

#s-02ba5bb4-a3e5-413b-9c40-8af269cd739b {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-02ba5bb4-a3e5-413b-9c40-8af269cd739b {
  
}
}@media (max-width: 767px){#s-02ba5bb4-a3e5-413b-9c40-8af269cd739b {
  
}
}






  #s-02ba5bb4-a3e5-413b-9c40-8af269cd739b img.shogun-image {
    

    
    
    
  }


#s-02ba5bb4-a3e5-413b-9c40-8af269cd739b .shogun-image-content {
  
    align-items: center;
  
}

#s-91fcc34b-0dbf-4406-995e-288074b56293 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-91fcc34b-0dbf-4406-995e-288074b56293 {
  
}
}@media (max-width: 767px){#s-91fcc34b-0dbf-4406-995e-288074b56293 {
  
}
}






  #s-91fcc34b-0dbf-4406-995e-288074b56293 img.shogun-image {
    

    
    
    
  }


#s-91fcc34b-0dbf-4406-995e-288074b56293 .shogun-image-content {
  
    align-items: center;
  
}

#s-ab3b94e8-206b-4a9e-96d0-6deff1f9a3d3 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-ab3b94e8-206b-4a9e-96d0-6deff1f9a3d3 {
  
}
}@media (max-width: 767px){#s-ab3b94e8-206b-4a9e-96d0-6deff1f9a3d3 {
  
}
}






  #s-ab3b94e8-206b-4a9e-96d0-6deff1f9a3d3 img.shogun-image {
    

    
    
    
  }


#s-ab3b94e8-206b-4a9e-96d0-6deff1f9a3d3 .shogun-image-content {
  
    align-items: center;
  
}

#s-560ebc8c-201e-4cf8-9607-cbf73eb2b4a9 {
  margin-left: 0px;
margin-right: 0px;
padding-left: 40px;
padding-right: 40px;
min-height: 50px;
}








#s-560ebc8c-201e-4cf8-9607-cbf73eb2b4a9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-560ebc8c-201e-4cf8-9607-cbf73eb2b4a9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f0cfb440-1ffd-4b8c-a009-5b98baa840ea {
  text-align: center;
}
@media (min-width: 1200px){#s-f0cfb440-1ffd-4b8c-a009-5b98baa840ea {
  display: none;
}
#s-f0cfb440-1ffd-4b8c-a009-5b98baa840ea, #wrap-s-f0cfb440-1ffd-4b8c-a009-5b98baa840ea { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f0cfb440-1ffd-4b8c-a009-5b98baa840ea {
  display: none;
}
#s-f0cfb440-1ffd-4b8c-a009-5b98baa840ea, #wrap-s-f0cfb440-1ffd-4b8c-a009-5b98baa840ea { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f0cfb440-1ffd-4b8c-a009-5b98baa840ea {
  display: none;
}
#s-f0cfb440-1ffd-4b8c-a009-5b98baa840ea, #wrap-s-f0cfb440-1ffd-4b8c-a009-5b98baa840ea { display:none !important; }}






  #s-f0cfb440-1ffd-4b8c-a009-5b98baa840ea img.shogun-image {
    

    
    
    
  }


#s-f0cfb440-1ffd-4b8c-a009-5b98baa840ea .shogun-image-content {
  
    align-items: center;
  
}

#s-f8e6e265-605c-468a-85aa-eace69c17c87 {
  margin-left: 0px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
text-align: center;
}
@media (max-width: 767px){#s-f8e6e265-605c-468a-85aa-eace69c17c87 {
  display: none;
}
#s-f8e6e265-605c-468a-85aa-eace69c17c87, #wrap-s-f8e6e265-605c-468a-85aa-eace69c17c87 { display:none !important; }}






  #s-f8e6e265-605c-468a-85aa-eace69c17c87 img.shogun-image {
    

    
    
    
  }


#s-f8e6e265-605c-468a-85aa-eace69c17c87 .shogun-image-content {
  
    align-items: center;
  
}

#s-572c7123-df57-4561-a07d-0a0b511216f7 {
  padding-top: 20px;
padding-left: 150px;
padding-bottom: 20px;
padding-right: 150px;
text-align: center;
}
@media (max-width: 767px){#s-572c7123-df57-4561-a07d-0a0b511216f7 {
  padding-left: 0px;
padding-right: 0px;
}
}
#s-572c7123-df57-4561-a07d-0a0b511216f7 .shogun-heading-component h1 {
  color: rgba(61, 94, 45, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  
  
  letter-spacing: 1px;
  text-align: center;
}


@media (min-width: 1200px){#s-572c7123-df57-4561-a07d-0a0b511216f7 .shogun-heading-component h1 {
  color: rgba(61, 94, 45, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 40px;
  
  letter-spacing: 1px;
  text-align: center;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-572c7123-df57-4561-a07d-0a0b511216f7 .shogun-heading-component h1 {
  color: rgba(61, 94, 45, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  letter-spacing: 1px;
  text-align: center;
}


}@media (max-width: 767px){#s-572c7123-df57-4561-a07d-0a0b511216f7 .shogun-heading-component h1 {
  color: rgba(61, 94, 45, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  letter-spacing: 1px;
  text-align: center;
}


}
/*
  $vgutter : 20px
  $hgutter : 10px;
*/

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

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

.shogun-root iframe {
  display: initial;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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