.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-0d62a140-6973-44fd-b224-4a51f185dba4 {
  min-height: 50px;
}








#s-0d62a140-6973-44fd-b224-4a51f185dba4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0d62a140-6973-44fd-b224-4a51f185dba4.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-cc6a72b7-a0ce-4e64-80ec-3bd3e2516ab9 {
  margin-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-cc6a72b7-a0ce-4e64-80ec-3bd3e2516ab9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cc6a72b7-a0ce-4e64-80ec-3bd3e2516ab9"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-cc6a72b7-a0ce-4e64-80ec-3bd3e2516ab9"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-cc6a72b7-a0ce-4e64-80ec-3bd3e2516ab9"] > .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-88d85a1a-4a6a-4724-9c5c-51f3191f309e {
  text-align: center;
}
@media (max-width: 767px){#s-88d85a1a-4a6a-4724-9c5c-51f3191f309e {
  margin-left: 25px;
margin-right: 25px;
}
}






  #s-88d85a1a-4a6a-4724-9c5c-51f3191f309e img.shogun-image {
    

    
    
    
  }


#s-88d85a1a-4a6a-4724-9c5c-51f3191f309e .shogun-image-content {
  
    align-items: center;
  
}

#s-cd0b1076-fd43-4840-9b6b-7dc0edf68a0c {
  padding-top: 40px;
padding-left: 40px;
padding-bottom: 0px;
padding-right: 40px;
min-height: 50px;
background-color: rgba(207, 236, 247, 1);
}








#s-cd0b1076-fd43-4840-9b6b-7dc0edf68a0c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cd0b1076-fd43-4840-9b6b-7dc0edf68a0c.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-cb0b94b1-483b-45cd-8cac-d71917f6a5f2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-cb0b94b1-483b-45cd-8cac-d71917f6a5f2 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-cb0b94b1-483b-45cd-8cac-d71917f6a5f2 {
  margin-top: 0px;
margin-bottom: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-cb0b94b1-483b-45cd-8cac-d71917f6a5f2 {
  margin-top: 0px;
margin-bottom: 0px;
}
}@media (max-width: 767px){#s-cb0b94b1-483b-45cd-8cac-d71917f6a5f2 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}
}
#s-cb0b94b1-483b-45cd-8cac-d71917f6a5f2 .shogun-heading-component h1 {
  color: rgba(76, 130, 195, 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-b14a8024-3456-49c8-be2e-bf8c6883d7ae {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-0493dc6e-4b93-4e06-91ab-6779988cffa8 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
max-width: 950px;
}
@media (min-width: 768px) and (max-width: 991px){#s-0493dc6e-4b93-4e06-91ab-6779988cffa8 {
  display: none;
}
#s-0493dc6e-4b93-4e06-91ab-6779988cffa8, #wrap-s-0493dc6e-4b93-4e06-91ab-6779988cffa8 { display:none !important; }}
@media (min-width: 0px) {
[id="s-0493dc6e-4b93-4e06-91ab-6779988cffa8"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.5px);
}

}

@media (min-width: 768px) {
[id="s-0493dc6e-4b93-4e06-91ab-6779988cffa8"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.8333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-0493dc6e-4b93-4e06-91ab-6779988cffa8"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.8333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-0493dc6e-4b93-4e06-91ab-6779988cffa8"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.8333333333333334px);
}

}

#s-cbd7220a-78ec-4419-b5af-46d412b2387b {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-cbd7220a-78ec-4419-b5af-46d412b2387b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cbd7220a-78ec-4419-b5af-46d412b2387b.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-33639e90-ceb5-4362-98a7-33874fcbcff0 {
  margin-top: 5px;
margin-left: 0px;
margin-bottom: 5px;
margin-right: 0px;
text-align: center;
}







  #s-33639e90-ceb5-4362-98a7-33874fcbcff0 img.shogun-image {
    

    
    
    
  }


#s-33639e90-ceb5-4362-98a7-33874fcbcff0 .shogun-image-content {
  
    align-items: center;
  
}

#s-db33dc7b-9cbf-4bb6-88b0-c329a0d09115 {
  margin-left: 10px;
margin-right: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-db33dc7b-9cbf-4bb6-88b0-c329a0d09115 .shogun-heading-component h1 {
  color: rgba(133, 93, 59, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-b8de9a14-0501-4424-9fad-2cca0fcadb29 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-b8de9a14-0501-4424-9fad-2cca0fcadb29 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b8de9a14-0501-4424-9fad-2cca0fcadb29.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-bf514cf3-1331-49f6-b9ee-dc263bbe8195 {
  margin-top: 5px;
margin-left: 0px;
margin-bottom: 5px;
margin-right: 0px;
text-align: center;
}







  #s-bf514cf3-1331-49f6-b9ee-dc263bbe8195 img.shogun-image {
    

    
    
    
  }


#s-bf514cf3-1331-49f6-b9ee-dc263bbe8195 .shogun-image-content {
  
    align-items: center;
  
}

#s-ff92fc35-4c4a-40d3-a833-505ed4aeefcb {
  margin-left: 10px;
margin-right: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-ff92fc35-4c4a-40d3-a833-505ed4aeefcb .shogun-heading-component h1 {
  color: rgba(133, 93, 59, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-140585b8-1cb8-4c88-9686-15ca3837bf50 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-140585b8-1cb8-4c88-9686-15ca3837bf50 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-140585b8-1cb8-4c88-9686-15ca3837bf50.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-bf2e5753-f545-43f2-b6f1-672ab5c39299 {
  margin-top: 5px;
margin-left: 0px;
margin-bottom: 5px;
margin-right: 0px;
text-align: center;
}







  #s-bf2e5753-f545-43f2-b6f1-672ab5c39299 img.shogun-image {
    

    
    
    
  }


#s-bf2e5753-f545-43f2-b6f1-672ab5c39299 .shogun-image-content {
  
    align-items: center;
  
}

#s-1f0b8f00-08ee-46e0-a0ec-c67894505da6 {
  margin-left: 10px;
margin-right: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-1f0b8f00-08ee-46e0-a0ec-c67894505da6 .shogun-heading-component h1 {
  color: rgba(133, 93, 59, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-6c14edd4-5e25-4c89-afc2-a393237d1e7b {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-6c14edd4-5e25-4c89-afc2-a393237d1e7b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6c14edd4-5e25-4c89-afc2-a393237d1e7b.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-2e462ba2-a55c-49cc-9445-07f684d82d9f {
  margin-top: 5px;
margin-left: 0px;
margin-bottom: 5px;
margin-right: 0px;
text-align: center;
}







  #s-2e462ba2-a55c-49cc-9445-07f684d82d9f img.shogun-image {
    

    
    
    
  }


#s-2e462ba2-a55c-49cc-9445-07f684d82d9f .shogun-image-content {
  
    align-items: center;
  
}

#s-b7cff84a-8cbb-490d-88b0-db632cbfb361 {
  margin-left: 10px;
margin-right: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-b7cff84a-8cbb-490d-88b0-db632cbfb361 .shogun-heading-component h1 {
  color: rgba(133, 93, 59, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-4633c4ae-a7d5-4c43-bf6b-aeb934739d12 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-4633c4ae-a7d5-4c43-bf6b-aeb934739d12 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4633c4ae-a7d5-4c43-bf6b-aeb934739d12.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-c0070625-3d8f-448c-a638-1f31746b4e17 {
  margin-top: 5px;
margin-left: 0px;
margin-bottom: 5px;
margin-right: 0px;
text-align: center;
}







  #s-c0070625-3d8f-448c-a638-1f31746b4e17 img.shogun-image {
    

    
    
    
  }


#s-c0070625-3d8f-448c-a638-1f31746b4e17 .shogun-image-content {
  
    align-items: center;
  
}

#s-2eb05c4f-6533-415e-8709-9d2d13953366 {
  margin-left: 10px;
margin-right: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-2eb05c4f-6533-415e-8709-9d2d13953366 .shogun-heading-component h1 {
  color: rgba(133, 93, 59, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-503e3ae5-2584-4b59-a396-704c0f090f59 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-503e3ae5-2584-4b59-a396-704c0f090f59 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-503e3ae5-2584-4b59-a396-704c0f090f59.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-74d8c13a-d1ff-4dc4-9540-78cd63d96a11 {
  margin-top: 5px;
margin-left: 0px;
margin-bottom: 5px;
margin-right: 0px;
text-align: center;
}







  #s-74d8c13a-d1ff-4dc4-9540-78cd63d96a11 img.shogun-image {
    

    
    
    
  }


#s-74d8c13a-d1ff-4dc4-9540-78cd63d96a11 .shogun-image-content {
  
    align-items: center;
  
}

#s-5065851a-c8b8-4749-a1c1-a1cea4291109 {
  margin-left: 10px;
margin-right: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-5065851a-c8b8-4749-a1c1-a1cea4291109 .shogun-heading-component h1 {
  color: rgba(133, 93, 59, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-5f6a97c3-87e6-4149-9407-b0f43e72e3f9 {
  margin-left: 20px;
margin-right: 20px;
}
@media (min-width: 1200px){#s-5f6a97c3-87e6-4149-9407-b0f43e72e3f9 {
  display: none;
}
#s-5f6a97c3-87e6-4149-9407-b0f43e72e3f9, #wrap-s-5f6a97c3-87e6-4149-9407-b0f43e72e3f9 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5f6a97c3-87e6-4149-9407-b0f43e72e3f9 {
  display: none;
}
#s-5f6a97c3-87e6-4149-9407-b0f43e72e3f9, #wrap-s-5f6a97c3-87e6-4149-9407-b0f43e72e3f9 { display:none !important; }}@media (max-width: 767px){#s-5f6a97c3-87e6-4149-9407-b0f43e72e3f9 {
  display: none;
}
#s-5f6a97c3-87e6-4149-9407-b0f43e72e3f9, #wrap-s-5f6a97c3-87e6-4149-9407-b0f43e72e3f9 { display:none !important; }}
@media (min-width: 0px) {
[id="s-5f6a97c3-87e6-4149-9407-b0f43e72e3f9"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 1.0px);
}

}

@media (min-width: 768px) {
[id="s-5f6a97c3-87e6-4149-9407-b0f43e72e3f9"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.5px);
}

}

@media (min-width: 992px) {
[id="s-5f6a97c3-87e6-4149-9407-b0f43e72e3f9"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.5px);
}

}

@media (min-width: 1200px) {
[id="s-5f6a97c3-87e6-4149-9407-b0f43e72e3f9"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.5px);
}

}

#s-b426e072-960e-467f-b42e-dbdffc836365 {
  margin-top: 20px;
margin-bottom: 20px;
min-height: 50px;
}








#s-b426e072-960e-467f-b42e-dbdffc836365 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b426e072-960e-467f-b42e-dbdffc836365.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-3dcbc07c-248e-4b7f-ab5c-ab63d1ae82dd {
  margin-top: 5px;
margin-left: 0px;
margin-bottom: 5px;
margin-right: 0px;
text-align: center;
}







  #s-3dcbc07c-248e-4b7f-ab5c-ab63d1ae82dd img.shogun-image {
    

    
    
    
  }


#s-3dcbc07c-248e-4b7f-ab5c-ab63d1ae82dd .shogun-image-content {
  
    align-items: center;
  
}

#s-91723d9c-6211-493f-baf2-b36970f00275 {
  margin-left: 10px;
margin-right: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-91723d9c-6211-493f-baf2-b36970f00275 .shogun-heading-component h1 {
  color: rgba(133, 93, 59, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-6cf05633-74ed-4ea1-b8b8-d020516895f6 {
  margin-top: 20px;
margin-bottom: 20px;
min-height: 50px;
}








#s-6cf05633-74ed-4ea1-b8b8-d020516895f6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6cf05633-74ed-4ea1-b8b8-d020516895f6.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-2b3be1b5-5dd0-4d1b-8403-af369ce0306f {
  margin-top: 5px;
margin-left: 0px;
margin-bottom: 5px;
margin-right: 0px;
text-align: center;
}







  #s-2b3be1b5-5dd0-4d1b-8403-af369ce0306f img.shogun-image {
    

    
    
    
  }


#s-2b3be1b5-5dd0-4d1b-8403-af369ce0306f .shogun-image-content {
  
    align-items: center;
  
}

#s-8ade34ad-37c0-4521-95d5-21b2dce3c6b4 {
  margin-left: 10px;
margin-right: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-8ade34ad-37c0-4521-95d5-21b2dce3c6b4 .shogun-heading-component h1 {
  color: rgba(133, 93, 59, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-6b455f13-9c7e-491d-ad43-1c08aaac8d1c {
  margin-top: 20px;
margin-bottom: 20px;
min-height: 50px;
}








#s-6b455f13-9c7e-491d-ad43-1c08aaac8d1c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6b455f13-9c7e-491d-ad43-1c08aaac8d1c.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-b350ad1c-6ba1-4220-9dff-ef1a7f78f97d {
  margin-top: 5px;
margin-left: 0px;
margin-bottom: 5px;
margin-right: 0px;
text-align: center;
}







  #s-b350ad1c-6ba1-4220-9dff-ef1a7f78f97d img.shogun-image {
    

    
    
    
  }


#s-b350ad1c-6ba1-4220-9dff-ef1a7f78f97d .shogun-image-content {
  
    align-items: center;
  
}

#s-2063ec79-b6b9-453d-a38a-35290df0dda7 {
  margin-left: 10px;
margin-right: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-2063ec79-b6b9-453d-a38a-35290df0dda7 .shogun-heading-component h1 {
  color: rgba(133, 93, 59, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-d6ab8fed-6b67-48bb-a9bd-e12ba17d1c15 {
  margin-top: 20px;
margin-bottom: 20px;
min-height: 50px;
}








#s-d6ab8fed-6b67-48bb-a9bd-e12ba17d1c15 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d6ab8fed-6b67-48bb-a9bd-e12ba17d1c15.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-8dd1e6e1-f026-4dde-a7b0-4736a98075d5 {
  margin-top: 5px;
margin-left: 0px;
margin-bottom: 5px;
margin-right: 0px;
text-align: center;
}







  #s-8dd1e6e1-f026-4dde-a7b0-4736a98075d5 img.shogun-image {
    

    
    
    
  }


#s-8dd1e6e1-f026-4dde-a7b0-4736a98075d5 .shogun-image-content {
  
    align-items: center;
  
}

#s-645ea1a6-0436-468f-a432-406b5c1f08f7 {
  margin-left: 10px;
margin-right: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-645ea1a6-0436-468f-a432-406b5c1f08f7 .shogun-heading-component h1 {
  color: rgba(133, 93, 59, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-c5d0dc35-bf83-432a-bb79-8428f021662e {
  margin-top: 20px;
margin-left: 20px;
margin-right: 20px;
min-height: 50px;
}
@media (min-width: 1200px){#s-c5d0dc35-bf83-432a-bb79-8428f021662e {
  display: none;
}
#s-c5d0dc35-bf83-432a-bb79-8428f021662e, #wrap-s-c5d0dc35-bf83-432a-bb79-8428f021662e { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c5d0dc35-bf83-432a-bb79-8428f021662e {
  display: none;
}
#s-c5d0dc35-bf83-432a-bb79-8428f021662e, #wrap-s-c5d0dc35-bf83-432a-bb79-8428f021662e { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c5d0dc35-bf83-432a-bb79-8428f021662e {
  
}
}







#s-c5d0dc35-bf83-432a-bb79-8428f021662e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c5d0dc35-bf83-432a-bb79-8428f021662e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9406b170-8a2e-49d1-9b62-eb6e7b1abe5a {
  margin-bottom: 10px;
min-height: 50px;
}








#s-9406b170-8a2e-49d1-9b62-eb6e7b1abe5a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9406b170-8a2e-49d1-9b62-eb6e7b1abe5a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cf6b9021-700b-4287-873d-d608bb450dbc {
  padding-top: 10px;
}

@media (min-width: 0px) {
[id="s-cf6b9021-700b-4287-873d-d608bb450dbc"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 768px) {
[id="s-cf6b9021-700b-4287-873d-d608bb450dbc"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-cf6b9021-700b-4287-873d-d608bb450dbc"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-cf6b9021-700b-4287-873d-d608bb450dbc"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

#s-c5cf3347-1900-4dff-b249-99715970696f {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-c5cf3347-1900-4dff-b249-99715970696f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c5cf3347-1900-4dff-b249-99715970696f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-190fc125-c5bf-4172-af3c-735f16ba558e {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-190fc125-c5bf-4172-af3c-735f16ba558e .shogun-heading-component h1 {
  color: rgba(76, 130, 195, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-f5c989b8-0c58-4e17-b6ad-7f0b91510de0 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-f5c989b8-0c58-4e17-b6ad-7f0b91510de0 .shogun-heading-component h1 {
  color: rgba(76, 130, 195, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-b4f2229f-587d-4707-a2b6-57cf26231649 {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-b4f2229f-587d-4707-a2b6-57cf26231649 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b4f2229f-587d-4707-a2b6-57cf26231649.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a39696a6-9f37-40f0-b3ad-369b5abef2cc {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-a39696a6-9f37-40f0-b3ad-369b5abef2cc .shogun-heading-component h1 {
  color: rgba(76, 130, 195, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-32b766b5-f550-4ebf-bfcf-d95898b72dd7 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-32b766b5-f550-4ebf-bfcf-d95898b72dd7 .shogun-heading-component h1 {
  color: rgba(76, 130, 195, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-c13d7bb5-7262-456d-b9ab-ac02da21df34 {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-c13d7bb5-7262-456d-b9ab-ac02da21df34 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c13d7bb5-7262-456d-b9ab-ac02da21df34.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3baba25f-eefc-4550-bfce-a6d287ab8038 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-3baba25f-eefc-4550-bfce-a6d287ab8038 .shogun-heading-component h1 {
  color: rgba(76, 130, 195, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-f01288ce-6c43-4215-9c60-8b71b238a9ba {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-f01288ce-6c43-4215-9c60-8b71b238a9ba .shogun-heading-component h1 {
  color: rgba(76, 130, 195, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



@media (min-width: 0px) {
[id="s-d241cff0-009d-4826-bed2-6af2673acc1f"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 768px) {
[id="s-d241cff0-009d-4826-bed2-6af2673acc1f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-d241cff0-009d-4826-bed2-6af2673acc1f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-d241cff0-009d-4826-bed2-6af2673acc1f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

#s-67534292-bd47-459c-8a05-d0c9a8810db8 {
  margin-top: 15px;
margin-bottom: 15px;
min-height: 50px;
}








#s-67534292-bd47-459c-8a05-d0c9a8810db8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-67534292-bd47-459c-8a05-d0c9a8810db8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-88d1049a-0904-4d34-bd97-00e7e57d48da {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-88d1049a-0904-4d34-bd97-00e7e57d48da .shogun-heading-component h1 {
  color: rgba(76, 130, 195, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-8638052c-5eb5-46fb-bb97-211a2f338a60 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-8638052c-5eb5-46fb-bb97-211a2f338a60 .shogun-heading-component h1 {
  color: rgba(76, 130, 195, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-78730ce6-f72e-4945-949f-a49dfb114e42 {
  margin-top: 15px;
margin-bottom: 15px;
min-height: 50px;
}








#s-78730ce6-f72e-4945-949f-a49dfb114e42 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-78730ce6-f72e-4945-949f-a49dfb114e42.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-36fef7d5-471b-4645-9419-448bce2d8716 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-36fef7d5-471b-4645-9419-448bce2d8716 .shogun-heading-component h1 {
  color: rgba(76, 130, 195, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-879428b3-4498-4720-be87-54f2884782ec {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-879428b3-4498-4720-be87-54f2884782ec .shogun-heading-component h1 {
  color: rgba(76, 130, 195, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-88a46817-1d2f-4a82-8ffe-c4e190917e79 {
  min-height: 50px;
}








#s-88a46817-1d2f-4a82-8ffe-c4e190917e79 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-88a46817-1d2f-4a82-8ffe-c4e190917e79.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a532eb91-49d6-4ca5-9296-8f8fe4767be6 {
  text-align: center;
}







  #s-a532eb91-49d6-4ca5-9296-8f8fe4767be6 img.shogun-image {
    

    
    
    
  }


#s-a532eb91-49d6-4ca5-9296-8f8fe4767be6 .shogun-image-content {
  
    align-items: center;
  
}

#s-74c84b2e-59f1-41ac-8fc1-e919af7e4d19 {
  margin-top: 0px;
margin-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-74c84b2e-59f1-41ac-8fc1-e919af7e4d19 {
  margin-left: 0px;
margin-right: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-74c84b2e-59f1-41ac-8fc1-e919af7e4d19 {
  margin-right: 50px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-74c84b2e-59f1-41ac-8fc1-e919af7e4d19 {
  margin-left: 150px;
margin-right: 150px;
}
}@media (max-width: 767px){#s-74c84b2e-59f1-41ac-8fc1-e919af7e4d19 {
  padding-left: 30px;
padding-right: 30px;
}
}






  #s-74c84b2e-59f1-41ac-8fc1-e919af7e4d19 img.shogun-image {
    

    
    
    
  }


#s-74c84b2e-59f1-41ac-8fc1-e919af7e4d19 .shogun-image-content {
  
    align-items: center;
  
}

#s-748e3430-3b04-4f05-bb72-82c008aca8c9 {
  margin-top: 20px;
margin-left: 50px;
margin-right: 50px;
min-height: 50px;
}
@media (min-width: 1200px){#s-748e3430-3b04-4f05-bb72-82c008aca8c9 {
  display: none;
}
#s-748e3430-3b04-4f05-bb72-82c008aca8c9, #wrap-s-748e3430-3b04-4f05-bb72-82c008aca8c9 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-748e3430-3b04-4f05-bb72-82c008aca8c9 {
  display: none;
}
#s-748e3430-3b04-4f05-bb72-82c008aca8c9, #wrap-s-748e3430-3b04-4f05-bb72-82c008aca8c9 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-748e3430-3b04-4f05-bb72-82c008aca8c9 {
  
}
}@media (max-width: 767px){#s-748e3430-3b04-4f05-bb72-82c008aca8c9 {
  
}
}







#s-748e3430-3b04-4f05-bb72-82c008aca8c9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-748e3430-3b04-4f05-bb72-82c008aca8c9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2d94e54b-64d8-4016-9def-42256f4011b4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-2d94e54b-64d8-4016-9def-42256f4011b4 .shogun-heading-component h1 {
  color: rgba(133, 93, 59, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 30px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-60e8f90b-5ce4-41e1-8f8f-6271765d4f58 {
  margin-bottom: 20px;
min-height: 50px;
max-width: 700px;
}








#s-60e8f90b-5ce4-41e1-8f8f-6271765d4f58 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-60e8f90b-5ce4-41e1-8f8f-6271765d4f58.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-559388d0-31dc-41c5-9356-8f75303bf73e {
  margin-left: 0px;
margin-right: 0px;
}

@media (min-width: 0px) {
[id="s-559388d0-31dc-41c5-9356-8f75303bf73e"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-559388d0-31dc-41c5-9356-8f75303bf73e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-559388d0-31dc-41c5-9356-8f75303bf73e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-559388d0-31dc-41c5-9356-8f75303bf73e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-3607731f-0482-4abb-bbf7-da4ef95ba9cd {
  margin-top: 10px;
margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}








#s-3607731f-0482-4abb-bbf7-da4ef95ba9cd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3607731f-0482-4abb-bbf7-da4ef95ba9cd.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-01aca3a4-bf8b-4892-8753-526dd816ac45 {
  text-align: center;
}







  #s-01aca3a4-bf8b-4892-8753-526dd816ac45 img.shogun-image {
    

    
    
    
  }


#s-01aca3a4-bf8b-4892-8753-526dd816ac45 .shogun-image-content {
  
    align-items: center;
  
}

#s-52aa7e84-0b6f-4a0a-bd70-47e3fa7f4750 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-52aa7e84-0b6f-4a0a-bd70-47e3fa7f4750 .shogun-heading-component h1 {
  color: rgba(76, 130, 195, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 26px;
  line-height: 0.9em;
  
  
}



#s-620665b1-6b60-4bbd-8aee-642a6e534766 {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}








#s-620665b1-6b60-4bbd-8aee-642a6e534766 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-620665b1-6b60-4bbd-8aee-642a6e534766.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-a865b0f9-aba7-4030-99b1-f8c59d5a3449 {
  text-align: center;
}







  #s-a865b0f9-aba7-4030-99b1-f8c59d5a3449 img.shogun-image {
    

    
    
    
  }


#s-a865b0f9-aba7-4030-99b1-f8c59d5a3449 .shogun-image-content {
  
    align-items: center;
  
}

#s-33bc3ede-a70a-40e6-8b81-d919f2c2911e {
  text-align: center;
}

#s-33bc3ede-a70a-40e6-8b81-d919f2c2911e .shogun-heading-component h1 {
  color: rgba(76, 130, 195, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 26px;
  line-height: 0.9em;
  
  
}



#s-5ec7d0a6-afa7-415a-8a7e-5487cac648d8 {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}








#s-5ec7d0a6-afa7-415a-8a7e-5487cac648d8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5ec7d0a6-afa7-415a-8a7e-5487cac648d8.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-ecbfed54-ce1f-40b0-b099-95228d09a484 {
  text-align: center;
}







  #s-ecbfed54-ce1f-40b0-b099-95228d09a484 img.shogun-image {
    

    
    
    
  }


#s-ecbfed54-ce1f-40b0-b099-95228d09a484 .shogun-image-content {
  
    align-items: center;
  
}

#s-9ed40bdf-f760-4284-9f3d-93c44a79229e {
  text-align: center;
}

#s-9ed40bdf-f760-4284-9f3d-93c44a79229e .shogun-heading-component h1 {
  color: rgba(76, 130, 195, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 26px;
  line-height: 0.9em;
  
  
}



#s-d32d0fa0-f982-4194-944b-61ba361bad3f {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}








#s-d32d0fa0-f982-4194-944b-61ba361bad3f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d32d0fa0-f982-4194-944b-61ba361bad3f.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-025f4f63-36fd-4658-9e7e-cc19f4d4c56d {
  text-align: center;
}







  #s-025f4f63-36fd-4658-9e7e-cc19f4d4c56d img.shogun-image {
    

    
    
    
  }


#s-025f4f63-36fd-4658-9e7e-cc19f4d4c56d .shogun-image-content {
  
    align-items: center;
  
}

#s-297d698c-f5bd-456e-96b7-b892c35106c1 {
  text-align: center;
}

#s-297d698c-f5bd-456e-96b7-b892c35106c1 .shogun-heading-component h1 {
  color: rgba(76, 130, 195, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 26px;
  line-height: 0.9em;
  
  
}



#s-6001ec39-2995-470b-a5b7-2250e2037b71 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-6001ec39-2995-470b-a5b7-2250e2037b71 .shogun-heading-component h1 {
  color: rgba(133, 93, 59, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 30px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-446eb779-41aa-4507-8240-af6f14809eda {
  margin-top: 40px;
margin-bottom: 40px;
}
@media (min-width: 768px) and (max-width: 991px){#s-446eb779-41aa-4507-8240-af6f14809eda {
  display: none;
}
#s-446eb779-41aa-4507-8240-af6f14809eda, #wrap-s-446eb779-41aa-4507-8240-af6f14809eda { display:none !important; }}@media (max-width: 767px){#s-446eb779-41aa-4507-8240-af6f14809eda {
  display: none;
}
#s-446eb779-41aa-4507-8240-af6f14809eda, #wrap-s-446eb779-41aa-4507-8240-af6f14809eda { display:none !important; }}
@media (min-width: 0px) {
[id="s-446eb779-41aa-4507-8240-af6f14809eda"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-446eb779-41aa-4507-8240-af6f14809eda"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-446eb779-41aa-4507-8240-af6f14809eda"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-446eb779-41aa-4507-8240-af6f14809eda"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-446eb779-41aa-4507-8240-af6f14809eda"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-446eb779-41aa-4507-8240-af6f14809eda"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-446eb779-41aa-4507-8240-af6f14809eda"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-197fbe73-5b67-4eba-9256-a944154e4bc7 {
  margin-left: 50px;
margin-right: 50px;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-197fbe73-5b67-4eba-9256-a944154e4bc7 {
  
}
}@media (max-width: 767px){#s-197fbe73-5b67-4eba-9256-a944154e4bc7 {
  
}
}







#s-197fbe73-5b67-4eba-9256-a944154e4bc7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-197fbe73-5b67-4eba-9256-a944154e4bc7.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-28145671-6168-4f56-819e-0c195e5251a7"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 768px) {
[id="s-28145671-6168-4f56-819e-0c195e5251a7"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-28145671-6168-4f56-819e-0c195e5251a7"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-28145671-6168-4f56-819e-0c195e5251a7"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

#s-c2dc3e78-746d-4c4a-bf2b-2e0ab4a7fcc8 {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-c2dc3e78-746d-4c4a-bf2b-2e0ab4a7fcc8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c2dc3e78-746d-4c4a-bf2b-2e0ab4a7fcc8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e8bc82c8-f7db-429c-81be-2f9f6905f50d {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-e8bc82c8-f7db-429c-81be-2f9f6905f50d .shogun-heading-component h1 {
  color: rgba(76, 130, 195, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-a6bc3047-333d-489a-925d-bc8928c6f91b {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-a6bc3047-333d-489a-925d-bc8928c6f91b .shogun-heading-component h1 {
  color: rgba(76, 130, 195, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-016d6d7e-7854-473f-b70c-229026b705ce {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-016d6d7e-7854-473f-b70c-229026b705ce > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-016d6d7e-7854-473f-b70c-229026b705ce.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a4266859-590c-4d58-8169-f3dc2b257a93 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-a4266859-590c-4d58-8169-f3dc2b257a93 .shogun-heading-component h1 {
  color: rgba(76, 130, 195, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-4c0c6be2-8d87-4734-9f16-40eb5f54d3b4 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-4c0c6be2-8d87-4734-9f16-40eb5f54d3b4 .shogun-heading-component h1 {
  color: rgba(76, 130, 195, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-246d7755-c3f6-4000-8cb7-a719dfbab3ee {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-246d7755-c3f6-4000-8cb7-a719dfbab3ee > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-246d7755-c3f6-4000-8cb7-a719dfbab3ee.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e3645d6b-9bfa-43d0-a985-ae0ee595867f {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-e3645d6b-9bfa-43d0-a985-ae0ee595867f .shogun-heading-component h1 {
  color: rgba(76, 130, 195, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-902fa407-346c-4f11-ae64-bdd3a23d7cfe {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-902fa407-346c-4f11-ae64-bdd3a23d7cfe .shogun-heading-component h1 {
  color: rgba(76, 130, 195, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-99999ac3-fc3c-4a6d-92dc-85f698df9690 {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-99999ac3-fc3c-4a6d-92dc-85f698df9690 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-99999ac3-fc3c-4a6d-92dc-85f698df9690.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-031301ce-4616-4d83-a5ea-ea0fa7e55b5b {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-031301ce-4616-4d83-a5ea-ea0fa7e55b5b .shogun-heading-component h1 {
  color: rgba(76, 130, 195, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-717fd465-bbf1-421a-9410-f4437698fbfd {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-717fd465-bbf1-421a-9410-f4437698fbfd .shogun-heading-component h1 {
  color: rgba(76, 130, 195, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-2b21215a-bdf5-40e8-9f14-b00e63d493f6 {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-2b21215a-bdf5-40e8-9f14-b00e63d493f6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2b21215a-bdf5-40e8-9f14-b00e63d493f6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5c52437a-ad91-40bd-b946-ee64d12beab2 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-5c52437a-ad91-40bd-b946-ee64d12beab2 .shogun-heading-component h1 {
  color: rgba(76, 130, 195, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-ac22dd67-cb64-49c7-999a-4d3b028bed98 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-ac22dd67-cb64-49c7-999a-4d3b028bed98 .shogun-heading-component h1 {
  color: rgba(76, 130, 195, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-5856bd71-57a2-40d7-b813-562bf8553e1d {
  min-height: 50px;
}








#s-5856bd71-57a2-40d7-b813-562bf8553e1d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5856bd71-57a2-40d7-b813-562bf8553e1d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d1bfd1eb-3150-4b85-9cbd-b16238228207 {
  text-align: center;
}







  #s-d1bfd1eb-3150-4b85-9cbd-b16238228207 img.shogun-image {
    

    
    
    
  }


#s-d1bfd1eb-3150-4b85-9cbd-b16238228207 .shogun-image-content {
  
    align-items: center;
  
}

#s-af3c824e-560f-4347-b1eb-5175ec4a7488 {
  text-align: center;
}
@media (max-width: 767px){#s-af3c824e-560f-4347-b1eb-5175ec4a7488 {
  display: none;
}
#s-af3c824e-560f-4347-b1eb-5175ec4a7488, #wrap-s-af3c824e-560f-4347-b1eb-5175ec4a7488 { display:none !important; }}






  #s-af3c824e-560f-4347-b1eb-5175ec4a7488 img.shogun-image {
    

    
    
    
  }


#s-af3c824e-560f-4347-b1eb-5175ec4a7488 .shogun-image-content {
  
    align-items: center;
  
}

#s-bd275a8b-8725-4e76-aeef-8b33f0aec650 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-bd275a8b-8725-4e76-aeef-8b33f0aec650 .shogun-heading-component h1 {
  color: rgba(133, 93, 59, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 30px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-a76b246f-34e5-4c7e-85e0-41da5fd64df7 {
  margin-bottom: 20px;
min-height: 50px;
max-width: 700px;
}








#s-a76b246f-34e5-4c7e-85e0-41da5fd64df7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a76b246f-34e5-4c7e-85e0-41da5fd64df7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-aeb6e2ec-84dc-4deb-9832-28e7ce6a066b {
  margin-left: 0px;
margin-right: 0px;
}

@media (min-width: 0px) {
[id="s-aeb6e2ec-84dc-4deb-9832-28e7ce6a066b"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-aeb6e2ec-84dc-4deb-9832-28e7ce6a066b"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-aeb6e2ec-84dc-4deb-9832-28e7ce6a066b"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-aeb6e2ec-84dc-4deb-9832-28e7ce6a066b"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-80de4d74-ef8f-4c5d-95ad-9ddc3950e4c8 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-80de4d74-ef8f-4c5d-95ad-9ddc3950e4c8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-80de4d74-ef8f-4c5d-95ad-9ddc3950e4c8.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-a5e2c001-c6d5-4c34-813c-bc22feecafc2 {
  text-align: center;
}







  #s-a5e2c001-c6d5-4c34-813c-bc22feecafc2 img.shogun-image {
    

    
    
    
  }


#s-a5e2c001-c6d5-4c34-813c-bc22feecafc2 .shogun-image-content {
  
    align-items: center;
  
}

#s-0be6b3ea-92d5-4e53-9527-5a57ee944e42 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-0be6b3ea-92d5-4e53-9527-5a57ee944e42 .shogun-heading-component h1 {
  color: rgba(76, 130, 195, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 22px;
  line-height: 0.9em;
  
  
}



#s-015e7742-c7ef-4e80-ba9c-41a3115283d4 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-015e7742-c7ef-4e80-ba9c-41a3115283d4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-015e7742-c7ef-4e80-ba9c-41a3115283d4.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-0c1071c3-455f-4b97-b86e-29b618184b84 {
  text-align: center;
}







  #s-0c1071c3-455f-4b97-b86e-29b618184b84 img.shogun-image {
    

    
    
    
  }


#s-0c1071c3-455f-4b97-b86e-29b618184b84 .shogun-image-content {
  
    align-items: center;
  
}

#s-b9ba4113-3e3f-4498-9d32-bdca13659e3e {
  text-align: center;
}

#s-b9ba4113-3e3f-4498-9d32-bdca13659e3e .shogun-heading-component h1 {
  color: rgba(76, 130, 195, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 22px;
  line-height: 0.9em;
  
  
}



#s-5b29fba8-d48c-4388-8d8e-f34409409763 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-5b29fba8-d48c-4388-8d8e-f34409409763 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5b29fba8-d48c-4388-8d8e-f34409409763.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-81c41b15-b35e-465d-bb6f-4b23f6fef167 {
  text-align: center;
}







  #s-81c41b15-b35e-465d-bb6f-4b23f6fef167 img.shogun-image {
    

    
    
    
  }


#s-81c41b15-b35e-465d-bb6f-4b23f6fef167 .shogun-image-content {
  
    align-items: center;
  
}

#s-2537fcb5-870e-4968-869d-fe7cf8d25daf {
  text-align: center;
}

#s-2537fcb5-870e-4968-869d-fe7cf8d25daf .shogun-heading-component h1 {
  color: rgba(76, 130, 195, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 22px;
  line-height: 0.9em;
  
  
}



#s-72ab19b1-4f76-4c80-ad77-c40b71bf42ab {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-72ab19b1-4f76-4c80-ad77-c40b71bf42ab > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-72ab19b1-4f76-4c80-ad77-c40b71bf42ab.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-83adac8a-d65e-444e-8554-b53c21d49d62 {
  text-align: center;
}







  #s-83adac8a-d65e-444e-8554-b53c21d49d62 img.shogun-image {
    

    
    
    
  }


#s-83adac8a-d65e-444e-8554-b53c21d49d62 .shogun-image-content {
  
    align-items: center;
  
}

#s-9b408137-f973-4c3d-90ca-4800d75969bd {
  text-align: center;
}

#s-9b408137-f973-4c3d-90ca-4800d75969bd .shogun-heading-component h1 {
  color: rgba(76, 130, 195, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 22px;
  line-height: 0.9em;
  
  
}



#s-1cf33e37-063c-460e-a33b-ea8a165aa03e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-1cf33e37-063c-460e-a33b-ea8a165aa03e .shogun-heading-component h1 {
  color: rgba(133, 93, 59, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 30px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-a7c500dc-692f-485c-a2bf-f7d4fab2810f {
  margin-top: 0px;
margin-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-a7c500dc-692f-485c-a2bf-f7d4fab2810f {
  margin-left: 0px;
margin-right: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a7c500dc-692f-485c-a2bf-f7d4fab2810f {
  margin-right: 50px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-a7c500dc-692f-485c-a2bf-f7d4fab2810f {
  
}
}@media (max-width: 767px){#s-a7c500dc-692f-485c-a2bf-f7d4fab2810f {
  padding-left: 50px;
padding-right: 50px;
}
}






  #s-a7c500dc-692f-485c-a2bf-f7d4fab2810f img.shogun-image {
    

    
    
    
  }


#s-a7c500dc-692f-485c-a2bf-f7d4fab2810f .shogun-image-content {
  
    align-items: center;
  
}

#s-a31e2c62-d031-467a-9d0e-2d361cd72f8a {
  margin-left: 0px;
margin-right: 0px;
padding-left: 40px;
padding-bottom: 0px;
padding-right: 40px;
min-height: 50px;
}








#s-a31e2c62-d031-467a-9d0e-2d361cd72f8a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a31e2c62-d031-467a-9d0e-2d361cd72f8a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9cb6cb8b-af47-41b6-af89-60433a578aed {
  text-align: center;
}
@media (min-width: 1200px){#s-9cb6cb8b-af47-41b6-af89-60433a578aed {
  display: none;
}
#s-9cb6cb8b-af47-41b6-af89-60433a578aed, #wrap-s-9cb6cb8b-af47-41b6-af89-60433a578aed { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9cb6cb8b-af47-41b6-af89-60433a578aed {
  display: none;
}
#s-9cb6cb8b-af47-41b6-af89-60433a578aed, #wrap-s-9cb6cb8b-af47-41b6-af89-60433a578aed { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-9cb6cb8b-af47-41b6-af89-60433a578aed {
  display: none;
}
#s-9cb6cb8b-af47-41b6-af89-60433a578aed, #wrap-s-9cb6cb8b-af47-41b6-af89-60433a578aed { display:none !important; }}






  #s-9cb6cb8b-af47-41b6-af89-60433a578aed img.shogun-image {
    

    
    
    
  }


#s-9cb6cb8b-af47-41b6-af89-60433a578aed .shogun-image-content {
  
    align-items: center;
  
}

#s-3e99ab54-5a67-438f-a3a3-ec5594d24cad {
  margin-left: 0px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
text-align: center;
}
@media (max-width: 767px){#s-3e99ab54-5a67-438f-a3a3-ec5594d24cad {
  display: none;
}
#s-3e99ab54-5a67-438f-a3a3-ec5594d24cad, #wrap-s-3e99ab54-5a67-438f-a3a3-ec5594d24cad { display:none !important; }}






  #s-3e99ab54-5a67-438f-a3a3-ec5594d24cad img.shogun-image {
    

    
    
    
  }


#s-3e99ab54-5a67-438f-a3a3-ec5594d24cad .shogun-image-content {
  
    align-items: center;
  
}

#s-40f79987-2596-4b2c-99bc-0b1368e5451a {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-40f79987-2596-4b2c-99bc-0b1368e5451a {
  margin-bottom: 10px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-40f79987-2596-4b2c-99bc-0b1368e5451a {
  margin-top: 15px;
margin-bottom: 15px;
}
}@media (max-width: 767px){#s-40f79987-2596-4b2c-99bc-0b1368e5451a {
  margin-left: 25px;
margin-right: 25px;
padding-top: 20px;
padding-bottom: 20px;
}
}
#s-40f79987-2596-4b2c-99bc-0b1368e5451a .shogun-heading-component h1 {
  color: rgba(133, 93, 59, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  
  
  letter-spacing: 1px;
  text-align: center;
}


@media (min-width: 1200px){#s-40f79987-2596-4b2c-99bc-0b1368e5451a .shogun-heading-component h1 {
  color: rgba(133, 93, 59, 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-40f79987-2596-4b2c-99bc-0b1368e5451a .shogun-heading-component h1 {
  color: rgba(133, 93, 59, 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-40f79987-2596-4b2c-99bc-0b1368e5451a .shogun-heading-component h1 {
  color: rgba(133, 93, 59, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  letter-spacing: 1px;
  text-align: center;
}


}
#s-ba98d974-1306-4ecb-bbfe-911655e5be42 {
  margin-left: auto;
margin-right: auto;
padding-left: 0px;
padding-right: 0px;
max-width: 1000px;
}
@media (min-width: 768px) and (max-width: 991px){#s-ba98d974-1306-4ecb-bbfe-911655e5be42 {
  
}
}@media (max-width: 767px){#s-ba98d974-1306-4ecb-bbfe-911655e5be42 {
  
}
}
@media (min-width: 0px) {
[id="s-ba98d974-1306-4ecb-bbfe-911655e5be42"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-ba98d974-1306-4ecb-bbfe-911655e5be42"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-ba98d974-1306-4ecb-bbfe-911655e5be42"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-ba98d974-1306-4ecb-bbfe-911655e5be42"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-0b714930-5843-431d-bb95-5405b3317203 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-0b714930-5843-431d-bb95-5405b3317203 {
  
}
}@media (max-width: 767px){#s-0b714930-5843-431d-bb95-5405b3317203 {
  
}
}






  #s-0b714930-5843-431d-bb95-5405b3317203 img.shogun-image {
    

    
    
    
  }


#s-0b714930-5843-431d-bb95-5405b3317203 .shogun-image-content {
  
    align-items: center;
  
}

#s-c049ddd7-e107-407d-bf02-7007da43eaa2 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-c049ddd7-e107-407d-bf02-7007da43eaa2 {
  
}
}@media (max-width: 767px){#s-c049ddd7-e107-407d-bf02-7007da43eaa2 {
  
}
}






  #s-c049ddd7-e107-407d-bf02-7007da43eaa2 img.shogun-image {
    

    
    
    
  }


#s-c049ddd7-e107-407d-bf02-7007da43eaa2 .shogun-image-content {
  
    align-items: center;
  
}

#s-090afb26-39c4-445a-98a6-a1e0f4153e24 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-090afb26-39c4-445a-98a6-a1e0f4153e24 {
  
}
}@media (max-width: 767px){#s-090afb26-39c4-445a-98a6-a1e0f4153e24 {
  
}
}






  #s-090afb26-39c4-445a-98a6-a1e0f4153e24 img.shogun-image {
    

    
    
    
  }


#s-090afb26-39c4-445a-98a6-a1e0f4153e24 .shogun-image-content {
  
    align-items: center;
  
}

#s-2a6b00c7-1d77-4d53-8110-3dd5b6ec9d34 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-2a6b00c7-1d77-4d53-8110-3dd5b6ec9d34 {
  
}
}@media (max-width: 767px){#s-2a6b00c7-1d77-4d53-8110-3dd5b6ec9d34 {
  
}
}






  #s-2a6b00c7-1d77-4d53-8110-3dd5b6ec9d34 img.shogun-image {
    

    
    
    
  }


#s-2a6b00c7-1d77-4d53-8110-3dd5b6ec9d34 .shogun-image-content {
  
    align-items: center;
  
}

#s-72c1d320-6f7f-414b-b965-357f2e99664f {
  margin-left: 0px;
margin-right: 0px;
padding-left: 40px;
padding-right: 40px;
min-height: 50px;
}








#s-72c1d320-6f7f-414b-b965-357f2e99664f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-72c1d320-6f7f-414b-b965-357f2e99664f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1484ceed-1dcd-45be-8be1-4c1853ab150f {
  text-align: center;
}
@media (min-width: 1200px){#s-1484ceed-1dcd-45be-8be1-4c1853ab150f {
  display: none;
}
#s-1484ceed-1dcd-45be-8be1-4c1853ab150f, #wrap-s-1484ceed-1dcd-45be-8be1-4c1853ab150f { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1484ceed-1dcd-45be-8be1-4c1853ab150f {
  display: none;
}
#s-1484ceed-1dcd-45be-8be1-4c1853ab150f, #wrap-s-1484ceed-1dcd-45be-8be1-4c1853ab150f { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1484ceed-1dcd-45be-8be1-4c1853ab150f {
  display: none;
}
#s-1484ceed-1dcd-45be-8be1-4c1853ab150f, #wrap-s-1484ceed-1dcd-45be-8be1-4c1853ab150f { display:none !important; }}






  #s-1484ceed-1dcd-45be-8be1-4c1853ab150f img.shogun-image {
    

    
    
    
  }


#s-1484ceed-1dcd-45be-8be1-4c1853ab150f .shogun-image-content {
  
    align-items: center;
  
}

#s-54913ae6-3cac-4cfc-8d48-c36aded97df2 {
  margin-left: 0px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
text-align: center;
}
@media (max-width: 767px){#s-54913ae6-3cac-4cfc-8d48-c36aded97df2 {
  display: none;
}
#s-54913ae6-3cac-4cfc-8d48-c36aded97df2, #wrap-s-54913ae6-3cac-4cfc-8d48-c36aded97df2 { display:none !important; }}






  #s-54913ae6-3cac-4cfc-8d48-c36aded97df2 img.shogun-image {
    

    
    
    
  }


#s-54913ae6-3cac-4cfc-8d48-c36aded97df2 .shogun-image-content {
  
    align-items: center;
  
}

#s-cabd06f2-cb44-4aa0-8664-14ca26c4d5bf {
  padding-top: 20px;
padding-left: 150px;
padding-bottom: 20px;
padding-right: 150px;
text-align: center;
}
@media (max-width: 767px){#s-cabd06f2-cb44-4aa0-8664-14ca26c4d5bf {
  padding-left: 0px;
padding-right: 0px;
}
}
#s-cabd06f2-cb44-4aa0-8664-14ca26c4d5bf .shogun-heading-component h1 {
  color: rgba(133, 93, 59, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  
  
  letter-spacing: 1px;
  text-align: center;
}


@media (min-width: 1200px){#s-cabd06f2-cb44-4aa0-8664-14ca26c4d5bf .shogun-heading-component h1 {
  color: rgba(133, 93, 59, 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-cabd06f2-cb44-4aa0-8664-14ca26c4d5bf .shogun-heading-component h1 {
  color: rgba(133, 93, 59, 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-cabd06f2-cb44-4aa0-8664-14ca26c4d5bf .shogun-heading-component h1 {
  color: rgba(133, 93, 59, 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}