.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-e2d573e5-e41c-48b9-9b80-cbb254005acf {
  min-height: 50px;
}








#s-e2d573e5-e41c-48b9-9b80-cbb254005acf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e2d573e5-e41c-48b9-9b80-cbb254005acf.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-1d763eca-2516-4af8-a22e-aa713dd18a5a {
  margin-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-1d763eca-2516-4af8-a22e-aa713dd18a5a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1d763eca-2516-4af8-a22e-aa713dd18a5a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-1d763eca-2516-4af8-a22e-aa713dd18a5a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-1d763eca-2516-4af8-a22e-aa713dd18a5a"] > .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-7ea2f7d5-f1de-49dc-978f-3d44eb73ed3d {
  text-align: center;
}
@media (max-width: 767px){#s-7ea2f7d5-f1de-49dc-978f-3d44eb73ed3d {
  margin-left: 25px;
margin-right: 25px;
}
}






  #s-7ea2f7d5-f1de-49dc-978f-3d44eb73ed3d img.shogun-image {
    

    
    
    
  }


#s-7ea2f7d5-f1de-49dc-978f-3d44eb73ed3d .shogun-image-content {
  
    align-items: center;
  
}

#s-28e13583-a397-4cbc-bb94-66364837b780 {
  padding-top: 40px;
padding-left: 40px;
padding-bottom: 0px;
padding-right: 40px;
min-height: 50px;
background-color: rgba(254, 223, 194, 1);
}








#s-28e13583-a397-4cbc-bb94-66364837b780 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-28e13583-a397-4cbc-bb94-66364837b780.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-84501cce-51ea-4b2f-97b9-e6039d1f95da {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-84501cce-51ea-4b2f-97b9-e6039d1f95da {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-84501cce-51ea-4b2f-97b9-e6039d1f95da {
  margin-top: 0px;
margin-bottom: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-84501cce-51ea-4b2f-97b9-e6039d1f95da {
  margin-top: 0px;
margin-bottom: 0px;
}
}@media (max-width: 767px){#s-84501cce-51ea-4b2f-97b9-e6039d1f95da {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}
}
#s-84501cce-51ea-4b2f-97b9-e6039d1f95da .shogun-heading-component h1 {
  color: rgba(156, 79, 43, 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-482669fc-59a8-41fa-96f3-8e934aa6670c {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-7928b7e6-208a-468d-975d-ddfe4b1f1fe2 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
max-width: 900px;
}
@media (min-width: 768px) and (max-width: 991px){#s-7928b7e6-208a-468d-975d-ddfe4b1f1fe2 {
  display: none;
}
#s-7928b7e6-208a-468d-975d-ddfe4b1f1fe2, #wrap-s-7928b7e6-208a-468d-975d-ddfe4b1f1fe2 { display:none !important; }}
@media (min-width: 0px) {
[id="s-7928b7e6-208a-468d-975d-ddfe4b1f1fe2"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-7928b7e6-208a-468d-975d-ddfe4b1f1fe2"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-7928b7e6-208a-468d-975d-ddfe4b1f1fe2"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-7928b7e6-208a-468d-975d-ddfe4b1f1fe2"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-f890de86-7812-4982-97f7-8a8c1098d138 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-f890de86-7812-4982-97f7-8a8c1098d138 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f890de86-7812-4982-97f7-8a8c1098d138.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-66033d6f-c4a0-4467-9ee9-cb0df02c74ad {
  margin-top: 5px;
margin-left: 15px;
margin-bottom: 5px;
margin-right: 15px;
text-align: center;
}







  #s-66033d6f-c4a0-4467-9ee9-cb0df02c74ad img.shogun-image {
    

    
    
    
  }


#s-66033d6f-c4a0-4467-9ee9-cb0df02c74ad .shogun-image-content {
  
    align-items: center;
  
}

#s-de8f4679-b1bf-4a1b-af94-a86b47485593 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-de8f4679-b1bf-4a1b-af94-a86b47485593 .shogun-heading-component h1 {
  color: rgba(103, 158, 102, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-3683b20e-45a6-440b-bbee-aa1345c6cec8 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-3683b20e-45a6-440b-bbee-aa1345c6cec8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3683b20e-45a6-440b-bbee-aa1345c6cec8.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-880b109f-a9e5-44c2-8ffd-b6184b3ff869 {
  margin-top: 5px;
margin-left: 15px;
margin-bottom: 5px;
margin-right: 15px;
text-align: center;
}







  #s-880b109f-a9e5-44c2-8ffd-b6184b3ff869 img.shogun-image {
    

    
    
    
  }


#s-880b109f-a9e5-44c2-8ffd-b6184b3ff869 .shogun-image-content {
  
    align-items: center;
  
}

#s-dea3e7e6-6827-428a-aec6-cfd2c011efd0 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-dea3e7e6-6827-428a-aec6-cfd2c011efd0 .shogun-heading-component h1 {
  color: rgba(103, 158, 102, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-dcc84d53-0927-41d2-aa79-903f88b0b71c {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-dcc84d53-0927-41d2-aa79-903f88b0b71c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dcc84d53-0927-41d2-aa79-903f88b0b71c.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-1a8c4340-a5b2-4a34-bdc8-bc74fa7ec034 {
  margin-top: 5px;
margin-left: 15px;
margin-bottom: 5px;
margin-right: 15px;
text-align: center;
}







  #s-1a8c4340-a5b2-4a34-bdc8-bc74fa7ec034 img.shogun-image {
    

    
    
    
  }


#s-1a8c4340-a5b2-4a34-bdc8-bc74fa7ec034 .shogun-image-content {
  
    align-items: center;
  
}

#s-fa82ec65-7a28-45b1-8c3a-9eeaa83d4ef5 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-fa82ec65-7a28-45b1-8c3a-9eeaa83d4ef5 .shogun-heading-component h1 {
  color: rgba(103, 158, 102, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-bad7b0b4-3cc9-462f-b972-784aa07f44a8 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-bad7b0b4-3cc9-462f-b972-784aa07f44a8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bad7b0b4-3cc9-462f-b972-784aa07f44a8.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-8d0b74b8-c7f4-4134-807e-011260041e9e {
  margin-top: 5px;
margin-left: 15px;
margin-bottom: 5px;
margin-right: 15px;
text-align: center;
}







  #s-8d0b74b8-c7f4-4134-807e-011260041e9e img.shogun-image {
    

    
    
    
  }


#s-8d0b74b8-c7f4-4134-807e-011260041e9e .shogun-image-content {
  
    align-items: center;
  
}

#s-adcc5cee-ee7d-4f17-bdf1-76dbd8ddb1fd {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-adcc5cee-ee7d-4f17-bdf1-76dbd8ddb1fd .shogun-heading-component h1 {
  color: rgba(103, 158, 102, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-546096d0-eae2-445a-a4ce-1d448635a209 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-546096d0-eae2-445a-a4ce-1d448635a209 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-546096d0-eae2-445a-a4ce-1d448635a209.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-d1ff7ae0-5b36-4919-b250-ddcea5a9076b {
  margin-top: 5px;
margin-left: 15px;
margin-bottom: 5px;
margin-right: 15px;
text-align: center;
}







  #s-d1ff7ae0-5b36-4919-b250-ddcea5a9076b img.shogun-image {
    

    
    
    
  }


#s-d1ff7ae0-5b36-4919-b250-ddcea5a9076b .shogun-image-content {
  
    align-items: center;
  
}

#s-9433f2de-102d-4fa7-a6c5-ffd79e7a885d {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-9433f2de-102d-4fa7-a6c5-ffd79e7a885d .shogun-heading-component h1 {
  color: rgba(103, 158, 102, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-2f531461-e4b9-4625-aec6-3e8dbe675cd1 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-2f531461-e4b9-4625-aec6-3e8dbe675cd1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2f531461-e4b9-4625-aec6-3e8dbe675cd1.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-83ef8f8b-cc4f-4ebc-b8e6-6e6504cd398e {
  margin-top: 5px;
margin-left: 15px;
margin-bottom: 5px;
margin-right: 15px;
text-align: center;
}







  #s-83ef8f8b-cc4f-4ebc-b8e6-6e6504cd398e img.shogun-image {
    

    
    
    
  }


#s-83ef8f8b-cc4f-4ebc-b8e6-6e6504cd398e .shogun-image-content {
  
    align-items: center;
  
}

#s-69832ed2-f4a7-47be-bc24-ab2a9a6c568a {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-69832ed2-f4a7-47be-bc24-ab2a9a6c568a .shogun-heading-component h1 {
  color: rgba(103, 158, 102, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-a69c1a01-2914-4046-a46c-ef1b03132e0c {
  margin-left: 40px;
margin-right: 40px;
}
@media (min-width: 1200px){#s-a69c1a01-2914-4046-a46c-ef1b03132e0c {
  display: none;
}
#s-a69c1a01-2914-4046-a46c-ef1b03132e0c, #wrap-s-a69c1a01-2914-4046-a46c-ef1b03132e0c { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a69c1a01-2914-4046-a46c-ef1b03132e0c {
  display: none;
}
#s-a69c1a01-2914-4046-a46c-ef1b03132e0c, #wrap-s-a69c1a01-2914-4046-a46c-ef1b03132e0c { display:none !important; }}@media (max-width: 767px){#s-a69c1a01-2914-4046-a46c-ef1b03132e0c {
  display: none;
}
#s-a69c1a01-2914-4046-a46c-ef1b03132e0c, #wrap-s-a69c1a01-2914-4046-a46c-ef1b03132e0c { display:none !important; }}
@media (min-width: 0px) {
[id="s-a69c1a01-2914-4046-a46c-ef1b03132e0c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-a69c1a01-2914-4046-a46c-ef1b03132e0c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-a69c1a01-2914-4046-a46c-ef1b03132e0c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-a69c1a01-2914-4046-a46c-ef1b03132e0c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-2c9d9f0e-2616-474e-87a9-9bd91beab724 {
  margin-top: 20px;
margin-bottom: 20px;
min-height: 50px;
}








#s-2c9d9f0e-2616-474e-87a9-9bd91beab724 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2c9d9f0e-2616-474e-87a9-9bd91beab724.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-86a3ea53-f828-4eab-a866-658bbc39423b {
  margin-top: 5px;
margin-left: 15px;
margin-bottom: 5px;
margin-right: 15px;
text-align: center;
}







  #s-86a3ea53-f828-4eab-a866-658bbc39423b img.shogun-image {
    

    
    
    
  }


#s-86a3ea53-f828-4eab-a866-658bbc39423b .shogun-image-content {
  
    align-items: center;
  
}

#s-158a4e1d-681c-4615-91b2-6aa06bb18655 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-158a4e1d-681c-4615-91b2-6aa06bb18655 .shogun-heading-component h1 {
  color: rgba(103, 158, 102, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-62fc3688-3b1e-4366-ad2e-1bdcdbfa0be6 {
  margin-top: 20px;
margin-bottom: 20px;
min-height: 50px;
}








#s-62fc3688-3b1e-4366-ad2e-1bdcdbfa0be6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-62fc3688-3b1e-4366-ad2e-1bdcdbfa0be6.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-85f89aca-26c7-4581-883e-9768a0a3f181 {
  margin-top: 5px;
margin-left: 15px;
margin-bottom: 5px;
margin-right: 15px;
text-align: center;
}







  #s-85f89aca-26c7-4581-883e-9768a0a3f181 img.shogun-image {
    

    
    
    
  }


#s-85f89aca-26c7-4581-883e-9768a0a3f181 .shogun-image-content {
  
    align-items: center;
  
}

#s-2d808b10-d3d1-46ab-8176-c12af9bc2000 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-2d808b10-d3d1-46ab-8176-c12af9bc2000 .shogun-heading-component h1 {
  color: rgba(103, 158, 102, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-b379ea7f-d587-435b-81ee-07d8a79e64aa {
  margin-top: 20px;
margin-bottom: 20px;
min-height: 50px;
}








#s-b379ea7f-d587-435b-81ee-07d8a79e64aa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b379ea7f-d587-435b-81ee-07d8a79e64aa.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-a52b78cd-5c39-4f5c-b886-f24d4304e811 {
  margin-top: 5px;
margin-left: 15px;
margin-bottom: 5px;
margin-right: 15px;
text-align: center;
}







  #s-a52b78cd-5c39-4f5c-b886-f24d4304e811 img.shogun-image {
    

    
    
    
  }


#s-a52b78cd-5c39-4f5c-b886-f24d4304e811 .shogun-image-content {
  
    align-items: center;
  
}

#s-64d2553c-70e4-46ec-bc3a-0a0c7b2d9e8b {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-64d2553c-70e4-46ec-bc3a-0a0c7b2d9e8b .shogun-heading-component h1 {
  color: rgba(103, 158, 102, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-ee17242c-2acb-4020-830f-d4184482d589 {
  margin-top: 20px;
margin-bottom: 20px;
min-height: 50px;
}








#s-ee17242c-2acb-4020-830f-d4184482d589 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ee17242c-2acb-4020-830f-d4184482d589.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-020c5411-128f-4547-866a-82a182890c7f {
  margin-top: 5px;
margin-left: 15px;
margin-bottom: 5px;
margin-right: 15px;
text-align: center;
}







  #s-020c5411-128f-4547-866a-82a182890c7f img.shogun-image {
    

    
    
    
  }


#s-020c5411-128f-4547-866a-82a182890c7f .shogun-image-content {
  
    align-items: center;
  
}

#s-e0ddb592-ce3b-4582-97d6-6eb65225d8cf {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-e0ddb592-ce3b-4582-97d6-6eb65225d8cf .shogun-heading-component h1 {
  color: rgba(103, 158, 102, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-98118a75-3ade-43af-acba-a8e1b056af70 {
  margin-top: 20px;
margin-left: 20px;
margin-right: 20px;
min-height: 50px;
}
@media (min-width: 1200px){#s-98118a75-3ade-43af-acba-a8e1b056af70 {
  display: none;
}
#s-98118a75-3ade-43af-acba-a8e1b056af70, #wrap-s-98118a75-3ade-43af-acba-a8e1b056af70 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-98118a75-3ade-43af-acba-a8e1b056af70 {
  display: none;
}
#s-98118a75-3ade-43af-acba-a8e1b056af70, #wrap-s-98118a75-3ade-43af-acba-a8e1b056af70 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-98118a75-3ade-43af-acba-a8e1b056af70 {
  
}
}







#s-98118a75-3ade-43af-acba-a8e1b056af70 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-98118a75-3ade-43af-acba-a8e1b056af70.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3e48ab46-6c43-4b46-b6ed-73c3ce104054 {
  margin-bottom: 10px;
min-height: 50px;
}








#s-3e48ab46-6c43-4b46-b6ed-73c3ce104054 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3e48ab46-6c43-4b46-b6ed-73c3ce104054.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c136effa-e983-4cd2-921a-fe63d4f40b81 {
  padding-top: 10px;
}

@media (min-width: 0px) {
[id="s-c136effa-e983-4cd2-921a-fe63d4f40b81"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 768px) {
[id="s-c136effa-e983-4cd2-921a-fe63d4f40b81"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-c136effa-e983-4cd2-921a-fe63d4f40b81"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-c136effa-e983-4cd2-921a-fe63d4f40b81"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

#s-8c1e4ff7-e3ee-40f2-8c0b-892de949754a {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-8c1e4ff7-e3ee-40f2-8c0b-892de949754a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8c1e4ff7-e3ee-40f2-8c0b-892de949754a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c661c053-c616-4e32-ba0f-c2d3b5e594a4 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-c661c053-c616-4e32-ba0f-c2d3b5e594a4 .shogun-heading-component h1 {
  color: rgba(246, 142, 64, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-a220b850-e8d4-4539-8521-39f190c3976a {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-a220b850-e8d4-4539-8521-39f190c3976a .shogun-heading-component h1 {
  color: rgba(246, 142, 64, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-8e3e9216-406e-4908-8b14-3735abb5cc97 {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-8e3e9216-406e-4908-8b14-3735abb5cc97 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8e3e9216-406e-4908-8b14-3735abb5cc97.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8c368069-0e87-46ca-88e5-d23216a6753b {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-8c368069-0e87-46ca-88e5-d23216a6753b .shogun-heading-component h1 {
  color: rgba(246, 142, 64, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-afbc0c39-107f-418c-afcd-95371ac16507 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-afbc0c39-107f-418c-afcd-95371ac16507 .shogun-heading-component h1 {
  color: rgba(246, 142, 64, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-ff21f4a6-980d-40f1-b104-f5ae3156aab6 {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-ff21f4a6-980d-40f1-b104-f5ae3156aab6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ff21f4a6-980d-40f1-b104-f5ae3156aab6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d254c3f8-35e4-42c3-bacd-a758fd3f33a3 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-d254c3f8-35e4-42c3-bacd-a758fd3f33a3 .shogun-heading-component h1 {
  color: rgba(246, 142, 64, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-c8325f67-e577-4a1c-b58b-abf8dcfd269f {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-c8325f67-e577-4a1c-b58b-abf8dcfd269f .shogun-heading-component h1 {
  color: rgba(246, 142, 64, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



@media (min-width: 0px) {
[id="s-12275ec9-0a56-44f2-8d5d-f907bc0a816a"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 768px) {
[id="s-12275ec9-0a56-44f2-8d5d-f907bc0a816a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-12275ec9-0a56-44f2-8d5d-f907bc0a816a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-12275ec9-0a56-44f2-8d5d-f907bc0a816a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

#s-bcabd2fd-ee15-4d78-95d8-ab32ea6061d5 {
  margin-top: 15px;
margin-bottom: 15px;
min-height: 50px;
}








#s-bcabd2fd-ee15-4d78-95d8-ab32ea6061d5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bcabd2fd-ee15-4d78-95d8-ab32ea6061d5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-450d5a39-4a75-4039-a192-3f1a1b6459e7 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-450d5a39-4a75-4039-a192-3f1a1b6459e7 .shogun-heading-component h1 {
  color: rgba(246, 142, 64, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-0abbc72e-b9e3-4fe9-8088-e83f23a7a50e {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-0abbc72e-b9e3-4fe9-8088-e83f23a7a50e .shogun-heading-component h1 {
  color: rgba(246, 142, 64, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-5ee34e06-1ca9-44dc-99a3-6c77e29379b6 {
  margin-top: 15px;
margin-bottom: 15px;
min-height: 50px;
}








#s-5ee34e06-1ca9-44dc-99a3-6c77e29379b6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5ee34e06-1ca9-44dc-99a3-6c77e29379b6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dc39f851-efe2-44cc-971b-a85fed766756 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-dc39f851-efe2-44cc-971b-a85fed766756 .shogun-heading-component h1 {
  color: rgba(246, 142, 64, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-9047efcb-f230-4f44-8bf8-d6396e49235f {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-9047efcb-f230-4f44-8bf8-d6396e49235f .shogun-heading-component h1 {
  color: rgba(246, 142, 64, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-b8ce6260-369f-4431-95d7-9ba1c367f927 {
  min-height: 50px;
}








#s-b8ce6260-369f-4431-95d7-9ba1c367f927 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b8ce6260-369f-4431-95d7-9ba1c367f927.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e3a9d98f-f6fb-4d45-82fb-55506d0f80ec {
  text-align: center;
}







  #s-e3a9d98f-f6fb-4d45-82fb-55506d0f80ec img.shogun-image {
    

    
    
    
  }


#s-e3a9d98f-f6fb-4d45-82fb-55506d0f80ec .shogun-image-content {
  
    align-items: center;
  
}

#s-dfa335a7-8a21-4ab7-9529-9502fd376e0f {
  margin-top: 0px;
margin-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-dfa335a7-8a21-4ab7-9529-9502fd376e0f {
  margin-left: 0px;
margin-right: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-dfa335a7-8a21-4ab7-9529-9502fd376e0f {
  margin-right: 50px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-dfa335a7-8a21-4ab7-9529-9502fd376e0f {
  margin-left: 150px;
margin-right: 150px;
}
}@media (max-width: 767px){#s-dfa335a7-8a21-4ab7-9529-9502fd376e0f {
  padding-left: 30px;
padding-right: 30px;
}
}






  #s-dfa335a7-8a21-4ab7-9529-9502fd376e0f img.shogun-image {
    

    
    
    
  }


#s-dfa335a7-8a21-4ab7-9529-9502fd376e0f .shogun-image-content {
  
    align-items: center;
  
}

#s-d7d48fd4-a57c-4a93-83dd-6c7c121a12b5 {
  margin-top: 20px;
margin-left: 50px;
margin-right: 50px;
min-height: 50px;
}
@media (min-width: 1200px){#s-d7d48fd4-a57c-4a93-83dd-6c7c121a12b5 {
  display: none;
}
#s-d7d48fd4-a57c-4a93-83dd-6c7c121a12b5, #wrap-s-d7d48fd4-a57c-4a93-83dd-6c7c121a12b5 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d7d48fd4-a57c-4a93-83dd-6c7c121a12b5 {
  display: none;
}
#s-d7d48fd4-a57c-4a93-83dd-6c7c121a12b5, #wrap-s-d7d48fd4-a57c-4a93-83dd-6c7c121a12b5 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d7d48fd4-a57c-4a93-83dd-6c7c121a12b5 {
  
}
}@media (max-width: 767px){#s-d7d48fd4-a57c-4a93-83dd-6c7c121a12b5 {
  
}
}







#s-d7d48fd4-a57c-4a93-83dd-6c7c121a12b5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d7d48fd4-a57c-4a93-83dd-6c7c121a12b5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-581dd8f1-31d5-4474-b742-dcbbeaa4aec6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-581dd8f1-31d5-4474-b742-dcbbeaa4aec6 .shogun-heading-component h1 {
  color: rgba(156, 79, 43, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 30px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-74e9bd8d-32df-41ea-afff-a135cc1f5e98 {
  margin-bottom: 20px;
min-height: 50px;
max-width: 700px;
}








#s-74e9bd8d-32df-41ea-afff-a135cc1f5e98 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-74e9bd8d-32df-41ea-afff-a135cc1f5e98.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d21c0945-bab3-40e8-8183-88021d8e4166 {
  margin-left: 0px;
margin-right: 0px;
}

@media (min-width: 0px) {
[id="s-d21c0945-bab3-40e8-8183-88021d8e4166"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-d21c0945-bab3-40e8-8183-88021d8e4166"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-d21c0945-bab3-40e8-8183-88021d8e4166"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-d21c0945-bab3-40e8-8183-88021d8e4166"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-43a38d02-fe04-4f8b-ad3f-85d1c6859ac5 {
  margin-top: 10px;
margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}








#s-43a38d02-fe04-4f8b-ad3f-85d1c6859ac5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-43a38d02-fe04-4f8b-ad3f-85d1c6859ac5.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-8bf1b439-e699-4cdd-acae-16eb5e56618b {
  text-align: center;
}







  #s-8bf1b439-e699-4cdd-acae-16eb5e56618b img.shogun-image {
    

    
    
    
  }


#s-8bf1b439-e699-4cdd-acae-16eb5e56618b .shogun-image-content {
  
    align-items: center;
  
}

#s-6d2f9e91-2cea-4286-a807-a20b2621e428 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-6d2f9e91-2cea-4286-a807-a20b2621e428 .shogun-heading-component h1 {
  color: rgba(246, 142, 64, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 26px;
  line-height: 0.9em;
  
  
}



#s-5efbc0b8-ae4d-4119-aaf3-a8d228b7e354 {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}








#s-5efbc0b8-ae4d-4119-aaf3-a8d228b7e354 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5efbc0b8-ae4d-4119-aaf3-a8d228b7e354.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-87c98074-21a8-4336-baed-9544a47cac07 {
  text-align: center;
}







  #s-87c98074-21a8-4336-baed-9544a47cac07 img.shogun-image {
    

    
    
    
  }


#s-87c98074-21a8-4336-baed-9544a47cac07 .shogun-image-content {
  
    align-items: center;
  
}

#s-61ddbc63-6e64-4511-9612-50331d81fe6b {
  text-align: center;
}

#s-61ddbc63-6e64-4511-9612-50331d81fe6b .shogun-heading-component h1 {
  color: rgba(246, 142, 64, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 26px;
  line-height: 0.9em;
  
  
}



#s-11596807-a76f-431c-b250-b37b5d366b19 {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}








#s-11596807-a76f-431c-b250-b37b5d366b19 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-11596807-a76f-431c-b250-b37b5d366b19.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-c5c4a3d7-f022-4653-b11b-185bd2149a57 {
  text-align: center;
}







  #s-c5c4a3d7-f022-4653-b11b-185bd2149a57 img.shogun-image {
    

    
    
    
  }


#s-c5c4a3d7-f022-4653-b11b-185bd2149a57 .shogun-image-content {
  
    align-items: center;
  
}

#s-fdea6560-bad7-44ac-b63d-8e24c846e57b {
  text-align: center;
}

#s-fdea6560-bad7-44ac-b63d-8e24c846e57b .shogun-heading-component h1 {
  color: rgba(246, 142, 64, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 26px;
  line-height: 0.9em;
  
  
}



#s-b100a53d-4c77-4146-ad41-5a2cd1354dd6 {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}








#s-b100a53d-4c77-4146-ad41-5a2cd1354dd6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b100a53d-4c77-4146-ad41-5a2cd1354dd6.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-ea5a7cb7-fb3f-48bf-b5f8-8f8ccd77d64a {
  text-align: center;
}







  #s-ea5a7cb7-fb3f-48bf-b5f8-8f8ccd77d64a img.shogun-image {
    

    
    
    
  }


#s-ea5a7cb7-fb3f-48bf-b5f8-8f8ccd77d64a .shogun-image-content {
  
    align-items: center;
  
}

#s-4aadab5e-70b3-421e-bf8d-038732e4b4ed {
  text-align: center;
}

#s-4aadab5e-70b3-421e-bf8d-038732e4b4ed .shogun-heading-component h1 {
  color: rgba(246, 142, 64, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 26px;
  line-height: 0.9em;
  
  
}



#s-8f09f338-0b0e-4748-bb71-813b3bf0f82d {
  margin-left: 0px;
margin-right: 0px;
}

@media (min-width: 0px) {
[id="s-8f09f338-0b0e-4748-bb71-813b3bf0f82d"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-8f09f338-0b0e-4748-bb71-813b3bf0f82d"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-8f09f338-0b0e-4748-bb71-813b3bf0f82d"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-8f09f338-0b0e-4748-bb71-813b3bf0f82d"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-eccf5186-cf4c-45c3-8e2b-92226a5e72ba {
  margin-top: 10px;
margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}








#s-eccf5186-cf4c-45c3-8e2b-92226a5e72ba > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-eccf5186-cf4c-45c3-8e2b-92226a5e72ba.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-dbbba218-7c40-4cec-8174-ac8d1d160b56 {
  text-align: center;
}







  #s-dbbba218-7c40-4cec-8174-ac8d1d160b56 img.shogun-image {
    

    
    
    
  }


#s-dbbba218-7c40-4cec-8174-ac8d1d160b56 .shogun-image-content {
  
    align-items: center;
  
}

#s-14689663-8654-45f9-8cf0-ed51e6bd1a99 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-14689663-8654-45f9-8cf0-ed51e6bd1a99 .shogun-heading-component h1 {
  color: rgba(246, 142, 64, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 26px;
  line-height: 0.9em;
  
  
}



#s-ff40a51e-2ac2-46a2-9d3f-b451512534ff {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}








#s-ff40a51e-2ac2-46a2-9d3f-b451512534ff > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ff40a51e-2ac2-46a2-9d3f-b451512534ff.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-69c2a4d1-1787-4acc-b578-6ee0afc0c42c {
  text-align: center;
}







  #s-69c2a4d1-1787-4acc-b578-6ee0afc0c42c img.shogun-image {
    

    
    
    
  }


#s-69c2a4d1-1787-4acc-b578-6ee0afc0c42c .shogun-image-content {
  
    align-items: center;
  
}

#s-34894a2a-12bd-4f5a-a51c-7053d8c514cc {
  text-align: center;
}

#s-34894a2a-12bd-4f5a-a51c-7053d8c514cc .shogun-heading-component h1 {
  color: rgba(246, 142, 64, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 26px;
  line-height: 0.9em;
  
  
}



#s-726a55f2-e5e3-4dbc-8655-48461b09f6ea {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}








#s-726a55f2-e5e3-4dbc-8655-48461b09f6ea > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-726a55f2-e5e3-4dbc-8655-48461b09f6ea.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-612d8fc5-23c6-4834-b2a5-70635cac9fc4 {
  text-align: center;
}







  #s-612d8fc5-23c6-4834-b2a5-70635cac9fc4 img.shogun-image {
    

    
    
    
  }


#s-612d8fc5-23c6-4834-b2a5-70635cac9fc4 .shogun-image-content {
  
    align-items: center;
  
}

#s-51f63d71-b80c-4d60-a162-f085c7caf6ba {
  text-align: center;
}

#s-51f63d71-b80c-4d60-a162-f085c7caf6ba .shogun-heading-component h1 {
  color: rgba(246, 142, 64, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 26px;
  line-height: 0.9em;
  
  
}



#s-27a8c493-8f38-4e6e-abd2-8649e4b5c99d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-27a8c493-8f38-4e6e-abd2-8649e4b5c99d .shogun-heading-component h1 {
  color: rgba(156, 79, 43, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 30px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-41dbd934-76f7-43db-8c77-e23340a14bed {
  margin-top: 40px;
margin-bottom: 40px;
}
@media (min-width: 768px) and (max-width: 991px){#s-41dbd934-76f7-43db-8c77-e23340a14bed {
  display: none;
}
#s-41dbd934-76f7-43db-8c77-e23340a14bed, #wrap-s-41dbd934-76f7-43db-8c77-e23340a14bed { display:none !important; }}@media (max-width: 767px){#s-41dbd934-76f7-43db-8c77-e23340a14bed {
  display: none;
}
#s-41dbd934-76f7-43db-8c77-e23340a14bed, #wrap-s-41dbd934-76f7-43db-8c77-e23340a14bed { display:none !important; }}
@media (min-width: 0px) {
[id="s-41dbd934-76f7-43db-8c77-e23340a14bed"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-41dbd934-76f7-43db-8c77-e23340a14bed"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-41dbd934-76f7-43db-8c77-e23340a14bed"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-41dbd934-76f7-43db-8c77-e23340a14bed"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-41dbd934-76f7-43db-8c77-e23340a14bed"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-41dbd934-76f7-43db-8c77-e23340a14bed"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-41dbd934-76f7-43db-8c77-e23340a14bed"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-7d91da7f-9a3a-439d-bc6b-6e25e97e6fbb {
  margin-left: 50px;
margin-right: 50px;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-7d91da7f-9a3a-439d-bc6b-6e25e97e6fbb {
  
}
}@media (max-width: 767px){#s-7d91da7f-9a3a-439d-bc6b-6e25e97e6fbb {
  
}
}







#s-7d91da7f-9a3a-439d-bc6b-6e25e97e6fbb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7d91da7f-9a3a-439d-bc6b-6e25e97e6fbb.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-de90c6ab-c1d9-4b64-b510-27edee705c6d"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 768px) {
[id="s-de90c6ab-c1d9-4b64-b510-27edee705c6d"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-de90c6ab-c1d9-4b64-b510-27edee705c6d"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-de90c6ab-c1d9-4b64-b510-27edee705c6d"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

#s-7a04e6d5-ae1a-4dea-b270-72ae21d23013 {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-7a04e6d5-ae1a-4dea-b270-72ae21d23013 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7a04e6d5-ae1a-4dea-b270-72ae21d23013.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b400f2cf-1017-4492-8afd-bb9b9d904453 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-b400f2cf-1017-4492-8afd-bb9b9d904453 .shogun-heading-component h1 {
  color: rgba(246, 142, 64, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-8ccbe01f-01d1-4068-b7a1-c1a0a212c9e9 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-8ccbe01f-01d1-4068-b7a1-c1a0a212c9e9 .shogun-heading-component h1 {
  color: rgba(246, 142, 64, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-5212e672-766f-450f-b2ca-83dc2de20f0e {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-5212e672-766f-450f-b2ca-83dc2de20f0e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5212e672-766f-450f-b2ca-83dc2de20f0e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5943197b-f1e9-4660-9ff8-b9b98037b3cf {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-5943197b-f1e9-4660-9ff8-b9b98037b3cf .shogun-heading-component h1 {
  color: rgba(246, 142, 64, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-eceaf5e5-ba3b-4053-a17d-30e530ea52d8 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-eceaf5e5-ba3b-4053-a17d-30e530ea52d8 .shogun-heading-component h1 {
  color: rgba(246, 142, 64, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-b84e2926-4792-4f11-8377-6adb788a322d {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-b84e2926-4792-4f11-8377-6adb788a322d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b84e2926-4792-4f11-8377-6adb788a322d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-81fd0377-ad3d-4cec-825b-38eb6dbbe709 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-81fd0377-ad3d-4cec-825b-38eb6dbbe709 .shogun-heading-component h1 {
  color: rgba(246, 142, 64, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-8c409e1e-4852-4a8e-8d59-dc9d96c64758 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-8c409e1e-4852-4a8e-8d59-dc9d96c64758 .shogun-heading-component h1 {
  color: rgba(246, 142, 64, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-aff04491-a58c-4d28-9854-2d52a6ea4823 {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-aff04491-a58c-4d28-9854-2d52a6ea4823 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-aff04491-a58c-4d28-9854-2d52a6ea4823.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-71912d5c-4023-408b-a66a-43ce282826cd {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-71912d5c-4023-408b-a66a-43ce282826cd .shogun-heading-component h1 {
  color: rgba(246, 142, 64, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-c43971ed-ca43-4b39-8516-dbdab64a306d {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-c43971ed-ca43-4b39-8516-dbdab64a306d .shogun-heading-component h1 {
  color: rgba(246, 142, 64, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-f02ec758-662f-49c4-b170-7aa197ef405c {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-f02ec758-662f-49c4-b170-7aa197ef405c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f02ec758-662f-49c4-b170-7aa197ef405c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ca8bf4ca-89e1-44d9-a43d-abcda32da567 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-ca8bf4ca-89e1-44d9-a43d-abcda32da567 .shogun-heading-component h1 {
  color: rgba(246, 142, 64, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-116c0591-964f-43bf-b046-d79bd823b93c {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-116c0591-964f-43bf-b046-d79bd823b93c .shogun-heading-component h1 {
  color: rgba(246, 142, 64, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-9a4e2bf4-4b72-41a1-94a1-cd8f4ffe927e {
  min-height: 50px;
}








#s-9a4e2bf4-4b72-41a1-94a1-cd8f4ffe927e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9a4e2bf4-4b72-41a1-94a1-cd8f4ffe927e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-03263075-8d51-4166-963f-8977964c5158 {
  text-align: center;
}







  #s-03263075-8d51-4166-963f-8977964c5158 img.shogun-image {
    

    
    
    
  }


#s-03263075-8d51-4166-963f-8977964c5158 .shogun-image-content {
  
    align-items: center;
  
}

#s-e50db2dd-3ebc-48f6-92af-1e4f20f79452 {
  text-align: center;
}
@media (max-width: 767px){#s-e50db2dd-3ebc-48f6-92af-1e4f20f79452 {
  display: none;
}
#s-e50db2dd-3ebc-48f6-92af-1e4f20f79452, #wrap-s-e50db2dd-3ebc-48f6-92af-1e4f20f79452 { display:none !important; }}






  #s-e50db2dd-3ebc-48f6-92af-1e4f20f79452 img.shogun-image {
    

    
    
    
  }


#s-e50db2dd-3ebc-48f6-92af-1e4f20f79452 .shogun-image-content {
  
    align-items: center;
  
}

#s-7e969941-bba7-4f09-b39d-6b107576aede {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-7e969941-bba7-4f09-b39d-6b107576aede .shogun-heading-component h1 {
  color: rgba(156, 79, 43, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 30px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-ab1a7af9-4609-42c6-93c0-60718d3c0d38 {
  margin-bottom: 20px;
min-height: 50px;
max-width: 700px;
}








#s-ab1a7af9-4609-42c6-93c0-60718d3c0d38 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ab1a7af9-4609-42c6-93c0-60718d3c0d38.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-862dbf04-89d7-49af-baea-43943d04058f {
  margin-left: 0px;
margin-right: 0px;
}

@media (min-width: 0px) {
[id="s-862dbf04-89d7-49af-baea-43943d04058f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-862dbf04-89d7-49af-baea-43943d04058f"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-862dbf04-89d7-49af-baea-43943d04058f"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-862dbf04-89d7-49af-baea-43943d04058f"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-8a63bc02-1da7-4e06-be4c-54a36b793422 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-8a63bc02-1da7-4e06-be4c-54a36b793422 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8a63bc02-1da7-4e06-be4c-54a36b793422.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-73e7b78d-3499-4529-aca7-4c8aa5136e41 {
  text-align: center;
}







  #s-73e7b78d-3499-4529-aca7-4c8aa5136e41 img.shogun-image {
    

    
    
    
  }


#s-73e7b78d-3499-4529-aca7-4c8aa5136e41 .shogun-image-content {
  
    align-items: center;
  
}

#s-4ee758c8-b139-429a-822b-f3d92e7829a0 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-4ee758c8-b139-429a-822b-f3d92e7829a0 .shogun-heading-component h1 {
  color: rgba(246, 142, 64, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 22px;
  line-height: 0.9em;
  
  
}



#s-7f2ef965-ce78-4970-8ad5-0ea8f82b329d {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-7f2ef965-ce78-4970-8ad5-0ea8f82b329d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7f2ef965-ce78-4970-8ad5-0ea8f82b329d.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-6c94d552-192c-42f4-97e8-736ecca05a2b {
  text-align: center;
}







  #s-6c94d552-192c-42f4-97e8-736ecca05a2b img.shogun-image {
    

    
    
    
  }


#s-6c94d552-192c-42f4-97e8-736ecca05a2b .shogun-image-content {
  
    align-items: center;
  
}

#s-9862d85a-6541-49f3-b1a3-e90379483589 {
  text-align: center;
}

#s-9862d85a-6541-49f3-b1a3-e90379483589 .shogun-heading-component h1 {
  color: rgba(246, 142, 64, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 22px;
  line-height: 0.9em;
  
  
}



#s-edf2c531-fca3-4ce9-936f-c599cceff915 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-edf2c531-fca3-4ce9-936f-c599cceff915 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-edf2c531-fca3-4ce9-936f-c599cceff915.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-bfcda292-d482-476f-b33b-c851721f9061 {
  text-align: center;
}







  #s-bfcda292-d482-476f-b33b-c851721f9061 img.shogun-image {
    

    
    
    
  }


#s-bfcda292-d482-476f-b33b-c851721f9061 .shogun-image-content {
  
    align-items: center;
  
}

#s-d90e6464-5c66-4451-b515-0a1e3b2f2363 {
  text-align: center;
}

#s-d90e6464-5c66-4451-b515-0a1e3b2f2363 .shogun-heading-component h1 {
  color: rgba(246, 142, 64, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 22px;
  line-height: 0.9em;
  
  
}



#s-da5bb726-6ff2-4907-9514-818b6402bb46 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-da5bb726-6ff2-4907-9514-818b6402bb46 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-da5bb726-6ff2-4907-9514-818b6402bb46.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-1e9d139f-201c-4dd4-ae1c-2620d1f20ad7 {
  text-align: center;
}







  #s-1e9d139f-201c-4dd4-ae1c-2620d1f20ad7 img.shogun-image {
    

    
    
    
  }


#s-1e9d139f-201c-4dd4-ae1c-2620d1f20ad7 .shogun-image-content {
  
    align-items: center;
  
}

#s-3e578ed9-bb8e-4e8f-807b-ce8fca4123c6 {
  text-align: center;
}

#s-3e578ed9-bb8e-4e8f-807b-ce8fca4123c6 .shogun-heading-component h1 {
  color: rgba(246, 142, 64, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 22px;
  line-height: 0.9em;
  
  
}



#s-f47a80ad-9593-47df-bfd5-81b05b13d27a {
  margin-left: 0px;
margin-right: 0px;
}

@media (min-width: 0px) {
[id="s-f47a80ad-9593-47df-bfd5-81b05b13d27a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-f47a80ad-9593-47df-bfd5-81b05b13d27a"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-f47a80ad-9593-47df-bfd5-81b05b13d27a"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-f47a80ad-9593-47df-bfd5-81b05b13d27a"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-6b92e448-7879-4a02-ad94-41353a016550 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-6b92e448-7879-4a02-ad94-41353a016550 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6b92e448-7879-4a02-ad94-41353a016550.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-445c3b7a-931f-4166-9911-3ed9a1b5d331 {
  text-align: center;
}







  #s-445c3b7a-931f-4166-9911-3ed9a1b5d331 img.shogun-image {
    

    
    
    
  }


#s-445c3b7a-931f-4166-9911-3ed9a1b5d331 .shogun-image-content {
  
    align-items: center;
  
}

#s-c676de3f-01e2-49ba-b9e3-7f16a1878ebd {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-c676de3f-01e2-49ba-b9e3-7f16a1878ebd .shogun-heading-component h1 {
  color: rgba(246, 142, 64, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 22px;
  line-height: 0.9em;
  
  
}



#s-2490791d-8230-4c01-9e29-daf2e8cc8156 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-2490791d-8230-4c01-9e29-daf2e8cc8156 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2490791d-8230-4c01-9e29-daf2e8cc8156.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-1fb00611-da6c-4b0d-ad12-9e876a8b01a2 {
  text-align: center;
}







  #s-1fb00611-da6c-4b0d-ad12-9e876a8b01a2 img.shogun-image {
    

    
    
    
  }


#s-1fb00611-da6c-4b0d-ad12-9e876a8b01a2 .shogun-image-content {
  
    align-items: center;
  
}

#s-8dffd399-93d8-4f7c-a987-1850d3c47072 {
  text-align: center;
}

#s-8dffd399-93d8-4f7c-a987-1850d3c47072 .shogun-heading-component h1 {
  color: rgba(246, 142, 64, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 22px;
  line-height: 0.9em;
  
  
}



#s-73176278-1d7e-4bc3-8740-9620ce698bc5 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-73176278-1d7e-4bc3-8740-9620ce698bc5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-73176278-1d7e-4bc3-8740-9620ce698bc5.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-f236edfd-8982-4b22-aa2b-be9962be5d84 {
  text-align: center;
}







  #s-f236edfd-8982-4b22-aa2b-be9962be5d84 img.shogun-image {
    

    
    
    
  }


#s-f236edfd-8982-4b22-aa2b-be9962be5d84 .shogun-image-content {
  
    align-items: center;
  
}

#s-28149dbc-50ec-470f-b980-b8e6c0df9eed {
  text-align: center;
}

#s-28149dbc-50ec-470f-b980-b8e6c0df9eed .shogun-heading-component h1 {
  color: rgba(246, 142, 64, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 22px;
  line-height: 0.9em;
  
  
}



#s-3ca4895a-9506-4145-8e68-b8a45838bafb {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-3ca4895a-9506-4145-8e68-b8a45838bafb .shogun-heading-component h1 {
  color: rgba(156, 79, 43, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 30px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-500107d4-1b88-474f-8aa1-703cde3a34bd {
  margin-top: 0px;
margin-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-500107d4-1b88-474f-8aa1-703cde3a34bd {
  margin-left: 0px;
margin-right: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-500107d4-1b88-474f-8aa1-703cde3a34bd {
  margin-right: 50px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-500107d4-1b88-474f-8aa1-703cde3a34bd {
  
}
}@media (max-width: 767px){#s-500107d4-1b88-474f-8aa1-703cde3a34bd {
  padding-left: 50px;
padding-right: 50px;
}
}






  #s-500107d4-1b88-474f-8aa1-703cde3a34bd img.shogun-image {
    

    
    
    
  }


#s-500107d4-1b88-474f-8aa1-703cde3a34bd .shogun-image-content {
  
    align-items: center;
  
}

#s-bccddb38-107b-45e0-a056-2792f48f8375 {
  margin-left: 0px;
margin-right: 0px;
padding-left: 40px;
padding-bottom: 0px;
padding-right: 40px;
min-height: 50px;
}








#s-bccddb38-107b-45e0-a056-2792f48f8375 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bccddb38-107b-45e0-a056-2792f48f8375.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b8a4e799-2841-4194-9c3f-aedd209ab2b1 {
  text-align: center;
}
@media (min-width: 1200px){#s-b8a4e799-2841-4194-9c3f-aedd209ab2b1 {
  display: none;
}
#s-b8a4e799-2841-4194-9c3f-aedd209ab2b1, #wrap-s-b8a4e799-2841-4194-9c3f-aedd209ab2b1 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b8a4e799-2841-4194-9c3f-aedd209ab2b1 {
  display: none;
}
#s-b8a4e799-2841-4194-9c3f-aedd209ab2b1, #wrap-s-b8a4e799-2841-4194-9c3f-aedd209ab2b1 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b8a4e799-2841-4194-9c3f-aedd209ab2b1 {
  display: none;
}
#s-b8a4e799-2841-4194-9c3f-aedd209ab2b1, #wrap-s-b8a4e799-2841-4194-9c3f-aedd209ab2b1 { display:none !important; }}






  #s-b8a4e799-2841-4194-9c3f-aedd209ab2b1 img.shogun-image {
    

    
    
    
  }


#s-b8a4e799-2841-4194-9c3f-aedd209ab2b1 .shogun-image-content {
  
    align-items: center;
  
}

#s-497fe8b9-b1a7-46fb-91f5-2b0d927268e2 {
  margin-left: 0px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
text-align: center;
}
@media (max-width: 767px){#s-497fe8b9-b1a7-46fb-91f5-2b0d927268e2 {
  display: none;
}
#s-497fe8b9-b1a7-46fb-91f5-2b0d927268e2, #wrap-s-497fe8b9-b1a7-46fb-91f5-2b0d927268e2 { display:none !important; }}






  #s-497fe8b9-b1a7-46fb-91f5-2b0d927268e2 img.shogun-image {
    

    
    
    
  }


#s-497fe8b9-b1a7-46fb-91f5-2b0d927268e2 .shogun-image-content {
  
    align-items: center;
  
}

#s-0d8c4e04-63f5-4e0c-a0a4-f1ece6358256 {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-0d8c4e04-63f5-4e0c-a0a4-f1ece6358256 {
  margin-bottom: 10px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0d8c4e04-63f5-4e0c-a0a4-f1ece6358256 {
  margin-top: 15px;
margin-bottom: 15px;
}
}@media (max-width: 767px){#s-0d8c4e04-63f5-4e0c-a0a4-f1ece6358256 {
  margin-left: 25px;
margin-right: 25px;
padding-top: 20px;
padding-bottom: 20px;
}
}
#s-0d8c4e04-63f5-4e0c-a0a4-f1ece6358256 .shogun-heading-component h1 {
  color: rgba(156, 79, 43, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  
  
  letter-spacing: 1px;
  text-align: center;
}


@media (min-width: 1200px){#s-0d8c4e04-63f5-4e0c-a0a4-f1ece6358256 .shogun-heading-component h1 {
  color: rgba(156, 79, 43, 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-0d8c4e04-63f5-4e0c-a0a4-f1ece6358256 .shogun-heading-component h1 {
  color: rgba(156, 79, 43, 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-0d8c4e04-63f5-4e0c-a0a4-f1ece6358256 .shogun-heading-component h1 {
  color: rgba(156, 79, 43, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  letter-spacing: 1px;
  text-align: center;
}


}
#s-796090ff-20fc-4fba-9c3c-394b1c13c3a5 {
  margin-left: auto;
margin-right: auto;
padding-left: 0px;
padding-right: 0px;
max-width: 1000px;
}
@media (min-width: 768px) and (max-width: 991px){#s-796090ff-20fc-4fba-9c3c-394b1c13c3a5 {
  
}
}@media (max-width: 767px){#s-796090ff-20fc-4fba-9c3c-394b1c13c3a5 {
  
}
}
@media (min-width: 0px) {
[id="s-796090ff-20fc-4fba-9c3c-394b1c13c3a5"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-796090ff-20fc-4fba-9c3c-394b1c13c3a5"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-796090ff-20fc-4fba-9c3c-394b1c13c3a5"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-796090ff-20fc-4fba-9c3c-394b1c13c3a5"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-e8a1ae6a-df45-4e3f-9c99-3d669b2247b7 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-e8a1ae6a-df45-4e3f-9c99-3d669b2247b7 {
  
}
}@media (max-width: 767px){#s-e8a1ae6a-df45-4e3f-9c99-3d669b2247b7 {
  
}
}






  #s-e8a1ae6a-df45-4e3f-9c99-3d669b2247b7 img.shogun-image {
    

    
    
    
  }


#s-e8a1ae6a-df45-4e3f-9c99-3d669b2247b7 .shogun-image-content {
  
    align-items: center;
  
}

#s-4b8463cb-0467-44f6-84ef-7d3217012458 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-4b8463cb-0467-44f6-84ef-7d3217012458 {
  
}
}@media (max-width: 767px){#s-4b8463cb-0467-44f6-84ef-7d3217012458 {
  
}
}






  #s-4b8463cb-0467-44f6-84ef-7d3217012458 img.shogun-image {
    

    
    
    
  }


#s-4b8463cb-0467-44f6-84ef-7d3217012458 .shogun-image-content {
  
    align-items: center;
  
}

#s-98f4bdfb-76fa-4659-87e6-49b0f6bd0d2e {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-98f4bdfb-76fa-4659-87e6-49b0f6bd0d2e {
  
}
}@media (max-width: 767px){#s-98f4bdfb-76fa-4659-87e6-49b0f6bd0d2e {
  
}
}






  #s-98f4bdfb-76fa-4659-87e6-49b0f6bd0d2e img.shogun-image {
    

    
    
    
  }


#s-98f4bdfb-76fa-4659-87e6-49b0f6bd0d2e .shogun-image-content {
  
    align-items: center;
  
}

#s-46f14863-40c1-4e04-9a4c-c1428f650dee {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-46f14863-40c1-4e04-9a4c-c1428f650dee {
  
}
}@media (max-width: 767px){#s-46f14863-40c1-4e04-9a4c-c1428f650dee {
  
}
}






  #s-46f14863-40c1-4e04-9a4c-c1428f650dee img.shogun-image {
    

    
    
    
  }


#s-46f14863-40c1-4e04-9a4c-c1428f650dee .shogun-image-content {
  
    align-items: center;
  
}

#s-92e3a187-17a6-4747-82fd-444a8c1ac39a {
  margin-left: 0px;
margin-right: 0px;
padding-left: 40px;
padding-right: 40px;
min-height: 50px;
}








#s-92e3a187-17a6-4747-82fd-444a8c1ac39a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-92e3a187-17a6-4747-82fd-444a8c1ac39a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4f29c45a-53b1-4c2e-9a5c-13a53df2cea2 {
  text-align: center;
}
@media (min-width: 1200px){#s-4f29c45a-53b1-4c2e-9a5c-13a53df2cea2 {
  display: none;
}
#s-4f29c45a-53b1-4c2e-9a5c-13a53df2cea2, #wrap-s-4f29c45a-53b1-4c2e-9a5c-13a53df2cea2 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4f29c45a-53b1-4c2e-9a5c-13a53df2cea2 {
  display: none;
}
#s-4f29c45a-53b1-4c2e-9a5c-13a53df2cea2, #wrap-s-4f29c45a-53b1-4c2e-9a5c-13a53df2cea2 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-4f29c45a-53b1-4c2e-9a5c-13a53df2cea2 {
  display: none;
}
#s-4f29c45a-53b1-4c2e-9a5c-13a53df2cea2, #wrap-s-4f29c45a-53b1-4c2e-9a5c-13a53df2cea2 { display:none !important; }}






  #s-4f29c45a-53b1-4c2e-9a5c-13a53df2cea2 img.shogun-image {
    

    
    
    
  }


#s-4f29c45a-53b1-4c2e-9a5c-13a53df2cea2 .shogun-image-content {
  
    align-items: center;
  
}

#s-82967233-45a6-4fbf-b3f3-3436ddb0a46b {
  margin-left: 0px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
text-align: center;
}
@media (max-width: 767px){#s-82967233-45a6-4fbf-b3f3-3436ddb0a46b {
  display: none;
}
#s-82967233-45a6-4fbf-b3f3-3436ddb0a46b, #wrap-s-82967233-45a6-4fbf-b3f3-3436ddb0a46b { display:none !important; }}






  #s-82967233-45a6-4fbf-b3f3-3436ddb0a46b img.shogun-image {
    

    
    
    
  }


#s-82967233-45a6-4fbf-b3f3-3436ddb0a46b .shogun-image-content {
  
    align-items: center;
  
}

#s-4bbe6897-c8de-4848-a0af-3f86e2b5a04b {
  padding-top: 20px;
padding-left: 150px;
padding-bottom: 20px;
padding-right: 150px;
text-align: center;
}
@media (max-width: 767px){#s-4bbe6897-c8de-4848-a0af-3f86e2b5a04b {
  padding-left: 0px;
padding-right: 0px;
}
}
#s-4bbe6897-c8de-4848-a0af-3f86e2b5a04b .shogun-heading-component h1 {
  color: rgba(156, 79, 43, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  
  
  letter-spacing: 1px;
  text-align: center;
}


@media (min-width: 1200px){#s-4bbe6897-c8de-4848-a0af-3f86e2b5a04b .shogun-heading-component h1 {
  color: rgba(156, 79, 43, 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-4bbe6897-c8de-4848-a0af-3f86e2b5a04b .shogun-heading-component h1 {
  color: rgba(156, 79, 43, 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-4bbe6897-c8de-4848-a0af-3f86e2b5a04b .shogun-heading-component h1 {
  color: rgba(156, 79, 43, 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:after,.shg-c:before{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width:1024px){.shg-box,.shg-c{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,.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:focus,.shg-lightbox .shg-lightbox-close:hover{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 .3s}.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}