.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-34e78e9d-d5b4-42f4-9584-c2dcf4261311 {
  min-height: 50px;
}








#s-34e78e9d-d5b4-42f4-9584-c2dcf4261311 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-34e78e9d-d5b4-42f4-9584-c2dcf4261311.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-e116a7ad-ed57-48ed-b8cc-8c99f846922a {
  margin-bottom: -20px;
}

@media (min-width: 0px) {
[id="s-e116a7ad-ed57-48ed-b8cc-8c99f846922a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e116a7ad-ed57-48ed-b8cc-8c99f846922a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-e116a7ad-ed57-48ed-b8cc-8c99f846922a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-e116a7ad-ed57-48ed-b8cc-8c99f846922a"] > .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-e3084be9-e7b4-446e-b72b-e2a244b532d8 {
  text-align: center;
}
@media (max-width: 767px){#s-e3084be9-e7b4-446e-b72b-e2a244b532d8 {
  margin-left: 25px;
margin-right: 25px;
}
}






  #s-e3084be9-e7b4-446e-b72b-e2a244b532d8 img.shogun-image {
    

    
    
    
  }


#s-e3084be9-e7b4-446e-b72b-e2a244b532d8 .shogun-image-content {
  
    align-items: center;
  
}

#s-cd23d51f-fd50-4309-9143-1d6166ade811 {
  padding-top: 40px;
padding-left: 40px;
padding-bottom: 0px;
padding-right: 40px;
min-height: 50px;
background-color: rgba(252, 213, 203, 1);
}








#s-cd23d51f-fd50-4309-9143-1d6166ade811 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cd23d51f-fd50-4309-9143-1d6166ade811.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-3c7e8bb2-c1ba-484f-bd27-5cf6a56d924b {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-3c7e8bb2-c1ba-484f-bd27-5cf6a56d924b {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-3c7e8bb2-c1ba-484f-bd27-5cf6a56d924b {
  margin-top: 0px;
margin-bottom: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-3c7e8bb2-c1ba-484f-bd27-5cf6a56d924b {
  margin-top: 0px;
margin-bottom: 0px;
}
}@media (max-width: 767px){#s-3c7e8bb2-c1ba-484f-bd27-5cf6a56d924b {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}
}
#s-3c7e8bb2-c1ba-484f-bd27-5cf6a56d924b .shogun-heading-component h1 {
  color: rgba(184, 39, 51, 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-4c942230-2832-4612-ae1b-c0b0869ff73b {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-01782448-d597-4132-b476-a85f9a89e2da {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
max-width: 900px;
}
@media (min-width: 768px) and (max-width: 991px){#s-01782448-d597-4132-b476-a85f9a89e2da {
  display: none;
}
#s-01782448-d597-4132-b476-a85f9a89e2da, #wrap-s-01782448-d597-4132-b476-a85f9a89e2da { display:none !important; }}
@media (min-width: 0px) {
[id="s-01782448-d597-4132-b476-a85f9a89e2da"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-01782448-d597-4132-b476-a85f9a89e2da"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-01782448-d597-4132-b476-a85f9a89e2da"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-01782448-d597-4132-b476-a85f9a89e2da"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-74127586-211c-4429-90e8-2476b84561a4 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-74127586-211c-4429-90e8-2476b84561a4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-74127586-211c-4429-90e8-2476b84561a4.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-f5391b2f-8bc5-47d0-a972-9cf622511c12 {
  margin-top: 5px;
margin-left: 15px;
margin-bottom: 5px;
margin-right: 15px;
text-align: center;
}







  #s-f5391b2f-8bc5-47d0-a972-9cf622511c12 img.shogun-image {
    

    
    
    
  }


#s-f5391b2f-8bc5-47d0-a972-9cf622511c12 .shogun-image-content {
  
    align-items: center;
  
}

#s-33b4f31d-92ad-4418-a67c-1d1ce92ebfe6 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-33b4f31d-92ad-4418-a67c-1d1ce92ebfe6 .shogun-heading-component h1 {
  color: rgba(100, 137, 95, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-bbd306c2-8c8c-42b8-8818-fbbb0f502f96 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-bbd306c2-8c8c-42b8-8818-fbbb0f502f96 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bbd306c2-8c8c-42b8-8818-fbbb0f502f96.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-159ed43e-42d3-410a-a9a6-1e5db55ac103 {
  margin-top: 5px;
margin-left: 15px;
margin-bottom: 5px;
margin-right: 15px;
text-align: center;
}







  #s-159ed43e-42d3-410a-a9a6-1e5db55ac103 img.shogun-image {
    

    
    
    
  }


#s-159ed43e-42d3-410a-a9a6-1e5db55ac103 .shogun-image-content {
  
    align-items: center;
  
}

#s-41020576-c075-468e-a9c0-f473b8d61fc0 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-41020576-c075-468e-a9c0-f473b8d61fc0 .shogun-heading-component h1 {
  color: rgba(100, 137, 95, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-43ca57c0-b492-40f7-a892-40b22423dd37 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-43ca57c0-b492-40f7-a892-40b22423dd37 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-43ca57c0-b492-40f7-a892-40b22423dd37.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-c3b393fb-9022-4722-9368-4cc703822661 {
  margin-top: 5px;
margin-left: 15px;
margin-bottom: 5px;
margin-right: 15px;
text-align: center;
}







  #s-c3b393fb-9022-4722-9368-4cc703822661 img.shogun-image {
    

    
    
    
  }


#s-c3b393fb-9022-4722-9368-4cc703822661 .shogun-image-content {
  
    align-items: center;
  
}

#s-f757ab6b-ab63-4549-8956-8419c17ef5aa {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-f757ab6b-ab63-4549-8956-8419c17ef5aa .shogun-heading-component h1 {
  color: rgba(100, 137, 95, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-8753a8a8-331a-49bc-b590-dc865f5636a2 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-8753a8a8-331a-49bc-b590-dc865f5636a2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8753a8a8-331a-49bc-b590-dc865f5636a2.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-7d3d85d8-3456-4f49-9206-c6e11a0c604e {
  margin-top: 5px;
margin-left: 15px;
margin-bottom: 5px;
margin-right: 15px;
text-align: center;
}







  #s-7d3d85d8-3456-4f49-9206-c6e11a0c604e img.shogun-image {
    

    
    
    
  }


#s-7d3d85d8-3456-4f49-9206-c6e11a0c604e .shogun-image-content {
  
    align-items: center;
  
}

#s-602e1d92-1caa-4871-b4b0-47ca7ee24fc7 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-602e1d92-1caa-4871-b4b0-47ca7ee24fc7 .shogun-heading-component h1 {
  color: rgba(100, 137, 95, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-2ead7341-dbe3-4c64-a56c-d8f551d2e08f {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-2ead7341-dbe3-4c64-a56c-d8f551d2e08f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2ead7341-dbe3-4c64-a56c-d8f551d2e08f.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-4ac13ccb-7aad-4969-a8dc-25e8d2a0a3d7 {
  margin-top: 5px;
margin-left: 15px;
margin-bottom: 5px;
margin-right: 15px;
text-align: center;
}







  #s-4ac13ccb-7aad-4969-a8dc-25e8d2a0a3d7 img.shogun-image {
    

    
    
    
  }


#s-4ac13ccb-7aad-4969-a8dc-25e8d2a0a3d7 .shogun-image-content {
  
    align-items: center;
  
}

#s-6111bea7-386f-4f6a-ba83-ba9089824a51 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-6111bea7-386f-4f6a-ba83-ba9089824a51 .shogun-heading-component h1 {
  color: rgba(100, 137, 95, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-2485ca1a-d214-4ede-9d52-3cf618dd6673 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-2485ca1a-d214-4ede-9d52-3cf618dd6673 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2485ca1a-d214-4ede-9d52-3cf618dd6673.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-0b998f45-97da-41e5-9a74-c657210c26dc {
  margin-top: 5px;
margin-left: 15px;
margin-bottom: 5px;
margin-right: 15px;
text-align: center;
}







  #s-0b998f45-97da-41e5-9a74-c657210c26dc img.shogun-image {
    

    
    
    
  }


#s-0b998f45-97da-41e5-9a74-c657210c26dc .shogun-image-content {
  
    align-items: center;
  
}

#s-ce086e79-823e-4eb9-a853-dd9ba0fb6747 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-ce086e79-823e-4eb9-a853-dd9ba0fb6747 .shogun-heading-component h1 {
  color: rgba(100, 137, 95, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-77fb4011-9357-4d18-98fa-dc3ee22debd7 {
  margin-left: 40px;
margin-right: 40px;
}
@media (min-width: 1200px){#s-77fb4011-9357-4d18-98fa-dc3ee22debd7 {
  display: none;
}
#s-77fb4011-9357-4d18-98fa-dc3ee22debd7, #wrap-s-77fb4011-9357-4d18-98fa-dc3ee22debd7 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-77fb4011-9357-4d18-98fa-dc3ee22debd7 {
  display: none;
}
#s-77fb4011-9357-4d18-98fa-dc3ee22debd7, #wrap-s-77fb4011-9357-4d18-98fa-dc3ee22debd7 { display:none !important; }}@media (max-width: 767px){#s-77fb4011-9357-4d18-98fa-dc3ee22debd7 {
  display: none;
}
#s-77fb4011-9357-4d18-98fa-dc3ee22debd7, #wrap-s-77fb4011-9357-4d18-98fa-dc3ee22debd7 { display:none !important; }}
@media (min-width: 0px) {
[id="s-77fb4011-9357-4d18-98fa-dc3ee22debd7"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-77fb4011-9357-4d18-98fa-dc3ee22debd7"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-77fb4011-9357-4d18-98fa-dc3ee22debd7"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-77fb4011-9357-4d18-98fa-dc3ee22debd7"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-56807f98-f70e-4618-83cb-8f670a80d714 {
  margin-top: 20px;
margin-bottom: 20px;
min-height: 50px;
}








#s-56807f98-f70e-4618-83cb-8f670a80d714 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-56807f98-f70e-4618-83cb-8f670a80d714.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-7e7cff36-83be-4c4c-a093-abb896498e1d {
  margin-top: 5px;
margin-left: 15px;
margin-bottom: 5px;
margin-right: 15px;
text-align: center;
}







  #s-7e7cff36-83be-4c4c-a093-abb896498e1d img.shogun-image {
    

    
    
    
  }


#s-7e7cff36-83be-4c4c-a093-abb896498e1d .shogun-image-content {
  
    align-items: center;
  
}

#s-d1ab478d-5621-494f-9c74-1fb406769186 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-d1ab478d-5621-494f-9c74-1fb406769186 .shogun-heading-component h1 {
  color: rgba(100, 137, 95, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-105d3b8a-c288-45a9-a6ec-15760f598403 {
  margin-top: 20px;
margin-bottom: 20px;
min-height: 50px;
}








#s-105d3b8a-c288-45a9-a6ec-15760f598403 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-105d3b8a-c288-45a9-a6ec-15760f598403.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-7af8e485-bfb1-4478-8096-9c00f0dce8bb {
  margin-top: 5px;
margin-left: 15px;
margin-bottom: 5px;
margin-right: 15px;
text-align: center;
}







  #s-7af8e485-bfb1-4478-8096-9c00f0dce8bb img.shogun-image {
    

    
    
    
  }


#s-7af8e485-bfb1-4478-8096-9c00f0dce8bb .shogun-image-content {
  
    align-items: center;
  
}

#s-61a5be75-90b5-4911-b109-868fc772c859 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-61a5be75-90b5-4911-b109-868fc772c859 .shogun-heading-component h1 {
  color: rgba(100, 137, 95, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-72f9f240-c3ad-47d7-93e7-1e7294da2953 {
  margin-top: 20px;
margin-bottom: 20px;
min-height: 50px;
}








#s-72f9f240-c3ad-47d7-93e7-1e7294da2953 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-72f9f240-c3ad-47d7-93e7-1e7294da2953.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-6d185642-31ab-4ab0-95f4-55534a6ed0b5 {
  margin-top: 5px;
margin-left: 15px;
margin-bottom: 5px;
margin-right: 15px;
text-align: center;
}







  #s-6d185642-31ab-4ab0-95f4-55534a6ed0b5 img.shogun-image {
    

    
    
    
  }


#s-6d185642-31ab-4ab0-95f4-55534a6ed0b5 .shogun-image-content {
  
    align-items: center;
  
}

#s-b9267fad-46d8-46bb-bd8b-5e1b676237e5 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-b9267fad-46d8-46bb-bd8b-5e1b676237e5 .shogun-heading-component h1 {
  color: rgba(100, 137, 95, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-51d79f1d-1b05-4610-a8a7-440dfa09638c {
  margin-top: 20px;
margin-bottom: 20px;
min-height: 50px;
}








#s-51d79f1d-1b05-4610-a8a7-440dfa09638c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-51d79f1d-1b05-4610-a8a7-440dfa09638c.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-a2a4d92a-b136-4c20-a18a-e72d0aca122d {
  margin-top: 5px;
margin-left: 15px;
margin-bottom: 5px;
margin-right: 15px;
text-align: center;
}







  #s-a2a4d92a-b136-4c20-a18a-e72d0aca122d img.shogun-image {
    

    
    
    
  }


#s-a2a4d92a-b136-4c20-a18a-e72d0aca122d .shogun-image-content {
  
    align-items: center;
  
}

#s-6b3d4c22-79c4-4797-9de7-94031af51ca8 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-6b3d4c22-79c4-4797-9de7-94031af51ca8 .shogun-heading-component h1 {
  color: rgba(100, 137, 95, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-8ec7382e-d703-403b-843f-34e5c47fb5be {
  margin-top: 20px;
margin-left: 20px;
margin-right: 20px;
min-height: 50px;
}
@media (min-width: 1200px){#s-8ec7382e-d703-403b-843f-34e5c47fb5be {
  display: none;
}
#s-8ec7382e-d703-403b-843f-34e5c47fb5be, #wrap-s-8ec7382e-d703-403b-843f-34e5c47fb5be { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8ec7382e-d703-403b-843f-34e5c47fb5be {
  display: none;
}
#s-8ec7382e-d703-403b-843f-34e5c47fb5be, #wrap-s-8ec7382e-d703-403b-843f-34e5c47fb5be { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-8ec7382e-d703-403b-843f-34e5c47fb5be {
  
}
}







#s-8ec7382e-d703-403b-843f-34e5c47fb5be > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8ec7382e-d703-403b-843f-34e5c47fb5be.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-50a735b1-dd9e-4bb3-8da7-ea05ac5c5f1b {
  margin-bottom: 10px;
min-height: 50px;
}








#s-50a735b1-dd9e-4bb3-8da7-ea05ac5c5f1b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-50a735b1-dd9e-4bb3-8da7-ea05ac5c5f1b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-216f236b-b56c-4bbb-828c-b00c1060c1ec {
  padding-top: 10px;
}

@media (min-width: 0px) {
[id="s-216f236b-b56c-4bbb-828c-b00c1060c1ec"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 768px) {
[id="s-216f236b-b56c-4bbb-828c-b00c1060c1ec"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-216f236b-b56c-4bbb-828c-b00c1060c1ec"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-216f236b-b56c-4bbb-828c-b00c1060c1ec"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

#s-fdc11715-c2ef-403a-9753-78d9e2a1d447 {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-fdc11715-c2ef-403a-9753-78d9e2a1d447 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fdc11715-c2ef-403a-9753-78d9e2a1d447.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d4ddffe9-368a-47ba-9120-3ae7be371883 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-d4ddffe9-368a-47ba-9120-3ae7be371883 .shogun-heading-component h1 {
  color: rgba(219, 105, 100, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-7a86c491-0023-4b59-85c9-aa6363d480e0 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-7a86c491-0023-4b59-85c9-aa6363d480e0 .shogun-heading-component h1 {
  color: rgba(219, 105, 100, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-844d67bd-2fbe-4149-b47b-a7bf40d0ee06 {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-844d67bd-2fbe-4149-b47b-a7bf40d0ee06 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-844d67bd-2fbe-4149-b47b-a7bf40d0ee06.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-66ad8b36-4b36-45c0-9f48-62bb68cad34e {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-66ad8b36-4b36-45c0-9f48-62bb68cad34e .shogun-heading-component h1 {
  color: rgba(219, 105, 100, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-5a2f5f60-4c41-4cbd-8fa3-313fec49807e {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-5a2f5f60-4c41-4cbd-8fa3-313fec49807e .shogun-heading-component h1 {
  color: rgba(219, 105, 100, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-7653bc5f-1153-40ee-b350-191190e96d0c {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-7653bc5f-1153-40ee-b350-191190e96d0c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7653bc5f-1153-40ee-b350-191190e96d0c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-aa2ecdaa-2ca3-4f49-b220-e3e137efeb5b {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-aa2ecdaa-2ca3-4f49-b220-e3e137efeb5b .shogun-heading-component h1 {
  color: rgba(219, 105, 100, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-ef06cbd4-6738-4e94-9695-d5647d47e01d {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-ef06cbd4-6738-4e94-9695-d5647d47e01d .shogun-heading-component h1 {
  color: rgba(219, 105, 100, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



@media (min-width: 0px) {
[id="s-84b5ff43-a985-484d-a5fd-c29ab79e7265"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 768px) {
[id="s-84b5ff43-a985-484d-a5fd-c29ab79e7265"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-84b5ff43-a985-484d-a5fd-c29ab79e7265"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-84b5ff43-a985-484d-a5fd-c29ab79e7265"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

#s-d9df363f-cdaf-4ad4-885f-5e1dc5b8ce0e {
  margin-top: 15px;
margin-bottom: 15px;
min-height: 50px;
}








#s-d9df363f-cdaf-4ad4-885f-5e1dc5b8ce0e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d9df363f-cdaf-4ad4-885f-5e1dc5b8ce0e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-65557854-56c1-4a99-83c3-fe666698f6f2 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-65557854-56c1-4a99-83c3-fe666698f6f2 .shogun-heading-component h1 {
  color: rgba(219, 105, 100, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-10e0afc0-c66e-4b37-8983-769793cc4824 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-10e0afc0-c66e-4b37-8983-769793cc4824 .shogun-heading-component h1 {
  color: rgba(219, 105, 100, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-635428f5-6118-412c-8733-abb1e1483abb {
  margin-top: 15px;
margin-bottom: 15px;
min-height: 50px;
}








#s-635428f5-6118-412c-8733-abb1e1483abb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-635428f5-6118-412c-8733-abb1e1483abb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7089b287-fd7a-483e-923f-4bb16bce50d1 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-7089b287-fd7a-483e-923f-4bb16bce50d1 .shogun-heading-component h1 {
  color: rgba(219, 105, 100, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-4ef38aff-74e4-4d1d-8e2a-960a56550a2b {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-4ef38aff-74e4-4d1d-8e2a-960a56550a2b .shogun-heading-component h1 {
  color: rgba(219, 105, 100, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-8cbbbce6-a640-4906-8d69-7952799bd3e5 {
  min-height: 50px;
}








#s-8cbbbce6-a640-4906-8d69-7952799bd3e5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8cbbbce6-a640-4906-8d69-7952799bd3e5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-48f5fdc5-6ff3-4b40-bccf-2565fe34e310 {
  text-align: center;
}







  #s-48f5fdc5-6ff3-4b40-bccf-2565fe34e310 img.shogun-image {
    

    
    
    
  }


#s-48f5fdc5-6ff3-4b40-bccf-2565fe34e310 .shogun-image-content {
  
    align-items: center;
  
}

#s-a83ac4f7-a00a-42e7-8382-4fca98554e64 {
  margin-top: 0px;
margin-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-a83ac4f7-a00a-42e7-8382-4fca98554e64 {
  margin-left: 0px;
margin-right: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a83ac4f7-a00a-42e7-8382-4fca98554e64 {
  margin-right: 50px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-a83ac4f7-a00a-42e7-8382-4fca98554e64 {
  margin-left: 150px;
margin-right: 150px;
}
}@media (max-width: 767px){#s-a83ac4f7-a00a-42e7-8382-4fca98554e64 {
  padding-left: 30px;
padding-right: 30px;
}
}






  #s-a83ac4f7-a00a-42e7-8382-4fca98554e64 img.shogun-image {
    

    
    
    
  }


#s-a83ac4f7-a00a-42e7-8382-4fca98554e64 .shogun-image-content {
  
    align-items: center;
  
}

#s-d8d810fd-9d5d-4cb0-b95a-8576cef9386e {
  margin-top: 20px;
margin-left: 50px;
margin-bottom: 0px;
margin-right: 50px;
min-height: 50px;
}
@media (min-width: 1200px){#s-d8d810fd-9d5d-4cb0-b95a-8576cef9386e {
  display: none;
}
#s-d8d810fd-9d5d-4cb0-b95a-8576cef9386e, #wrap-s-d8d810fd-9d5d-4cb0-b95a-8576cef9386e { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d8d810fd-9d5d-4cb0-b95a-8576cef9386e {
  display: none;
}
#s-d8d810fd-9d5d-4cb0-b95a-8576cef9386e, #wrap-s-d8d810fd-9d5d-4cb0-b95a-8576cef9386e { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d8d810fd-9d5d-4cb0-b95a-8576cef9386e {
  
}
}@media (max-width: 767px){#s-d8d810fd-9d5d-4cb0-b95a-8576cef9386e {
  
}
}







#s-d8d810fd-9d5d-4cb0-b95a-8576cef9386e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d8d810fd-9d5d-4cb0-b95a-8576cef9386e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-191c781a-093c-4d83-b489-27dcbb178c4e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-191c781a-093c-4d83-b489-27dcbb178c4e .shogun-heading-component h1 {
  color: rgba(184, 39, 51, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 30px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-7b1921c0-6e6d-4594-9752-c38b6ec9a77c {
  margin-bottom: 20px;
min-height: 50px;
max-width: 700px;
}








#s-7b1921c0-6e6d-4594-9752-c38b6ec9a77c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7b1921c0-6e6d-4594-9752-c38b6ec9a77c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7c3c701d-9529-42f7-a11e-3ee928b01ba2 {
  margin-left: 0px;
margin-right: 0px;
}

@media (min-width: 0px) {
[id="s-7c3c701d-9529-42f7-a11e-3ee928b01ba2"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 2.5px);
}

}

@media (min-width: 768px) {
[id="s-7c3c701d-9529-42f7-a11e-3ee928b01ba2"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 4.166666666666667px);
}

}

@media (min-width: 992px) {
[id="s-7c3c701d-9529-42f7-a11e-3ee928b01ba2"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 4.166666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-7c3c701d-9529-42f7-a11e-3ee928b01ba2"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 4.166666666666667px);
}

}

#s-910c7661-f24b-4b65-a178-0f38427e078a {
  margin-top: 10px;
margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}








#s-910c7661-f24b-4b65-a178-0f38427e078a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-910c7661-f24b-4b65-a178-0f38427e078a.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-a9fc5a45-b6fc-4ec8-9e9e-79bab80cb415 {
  text-align: center;
}







  #s-a9fc5a45-b6fc-4ec8-9e9e-79bab80cb415 img.shogun-image {
    

    
    
    
  }


#s-a9fc5a45-b6fc-4ec8-9e9e-79bab80cb415 .shogun-image-content {
  
    align-items: center;
  
}

#s-e7d5b33b-35a9-4ab6-84b5-516163b9cafa {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-e7d5b33b-35a9-4ab6-84b5-516163b9cafa .shogun-heading-component h1 {
  color: rgba(219, 105, 100, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 26px;
  line-height: 0.9em;
  
  
}



#s-da938f4f-3084-4309-9e12-ccded00995cd {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}








#s-da938f4f-3084-4309-9e12-ccded00995cd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-da938f4f-3084-4309-9e12-ccded00995cd.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-d87f5d4a-96cd-4bb7-88ab-d099777508ab {
  text-align: center;
}







  #s-d87f5d4a-96cd-4bb7-88ab-d099777508ab img.shogun-image {
    

    
    
    
  }


#s-d87f5d4a-96cd-4bb7-88ab-d099777508ab .shogun-image-content {
  
    align-items: center;
  
}

#s-b765f9a6-8ffb-46c9-bdd5-85af154b3a21 {
  text-align: center;
}

#s-b765f9a6-8ffb-46c9-bdd5-85af154b3a21 .shogun-heading-component h1 {
  color: rgba(219, 105, 100, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 26px;
  line-height: 0.9em;
  
  
}



#s-473b7e8c-be27-45bd-8935-d2d50f1627c3 {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}








#s-473b7e8c-be27-45bd-8935-d2d50f1627c3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-473b7e8c-be27-45bd-8935-d2d50f1627c3.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-2870eb3e-6295-477e-8c2a-c62587b8367e {
  text-align: center;
}







  #s-2870eb3e-6295-477e-8c2a-c62587b8367e img.shogun-image {
    

    
    
    
  }


#s-2870eb3e-6295-477e-8c2a-c62587b8367e .shogun-image-content {
  
    align-items: center;
  
}

#s-3d6c8beb-179b-44dc-8b0e-dad2d5c4a45f {
  text-align: center;
}

#s-3d6c8beb-179b-44dc-8b0e-dad2d5c4a45f .shogun-heading-component h1 {
  color: rgba(219, 105, 100, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 26px;
  line-height: 0.9em;
  
  
}



#s-627b9fcc-0201-4168-907d-9afc9268c145 {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}








#s-627b9fcc-0201-4168-907d-9afc9268c145 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-627b9fcc-0201-4168-907d-9afc9268c145.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-5129c873-9808-46f6-ad9a-dc0f2e9bbb3b {
  text-align: center;
}







  #s-5129c873-9808-46f6-ad9a-dc0f2e9bbb3b img.shogun-image {
    

    
    
    
  }


#s-5129c873-9808-46f6-ad9a-dc0f2e9bbb3b .shogun-image-content {
  
    align-items: center;
  
}

#s-9d46f1db-0e20-4e15-b3c0-068c7d5595c2 {
  text-align: center;
}

#s-9d46f1db-0e20-4e15-b3c0-068c7d5595c2 .shogun-heading-component h1 {
  color: rgba(219, 105, 100, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 26px;
  line-height: 0.9em;
  
  
}



#s-c3f0070d-b4e8-42d1-9126-1026906a6fd4 {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}








#s-c3f0070d-b4e8-42d1-9126-1026906a6fd4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c3f0070d-b4e8-42d1-9126-1026906a6fd4.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-e25460ad-7e45-4781-99fe-482dbfececce {
  text-align: center;
}







  #s-e25460ad-7e45-4781-99fe-482dbfececce img.shogun-image {
    

    
    
    
  }


#s-e25460ad-7e45-4781-99fe-482dbfececce .shogun-image-content {
  
    align-items: center;
  
}

#s-b936d14b-9e54-4acb-8b23-e03a4d813205 {
  text-align: center;
}

#s-b936d14b-9e54-4acb-8b23-e03a4d813205 .shogun-heading-component h1 {
  color: rgba(219, 105, 100, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 26px;
  line-height: 0.9em;
  
  
}



#s-68465eda-9802-41de-be9f-7f8612198a99 {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}








#s-68465eda-9802-41de-be9f-7f8612198a99 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-68465eda-9802-41de-be9f-7f8612198a99.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-351ee9ff-c889-4adc-82ca-7d1fd1cafe8d {
  text-align: center;
}







  #s-351ee9ff-c889-4adc-82ca-7d1fd1cafe8d img.shogun-image {
    

    
    
    
  }


#s-351ee9ff-c889-4adc-82ca-7d1fd1cafe8d .shogun-image-content {
  
    align-items: center;
  
}

#s-21aa1d23-4cb3-4a67-abf9-714b8937428a {
  text-align: center;
}

#s-21aa1d23-4cb3-4a67-abf9-714b8937428a .shogun-heading-component h1 {
  color: rgba(219, 105, 100, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 26px;
  line-height: 0.9em;
  
  
}



#s-62566446-97e7-4ac5-867b-70ca9fb8c8c7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-62566446-97e7-4ac5-867b-70ca9fb8c8c7 .shogun-heading-component h1 {
  color: rgba(184, 39, 51, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 30px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-8420b4c7-23cd-434b-a61e-2053b9192600 {
  margin-top: 40px;
margin-bottom: 40px;
}
@media (min-width: 768px) and (max-width: 991px){#s-8420b4c7-23cd-434b-a61e-2053b9192600 {
  display: none;
}
#s-8420b4c7-23cd-434b-a61e-2053b9192600, #wrap-s-8420b4c7-23cd-434b-a61e-2053b9192600 { display:none !important; }}@media (max-width: 767px){#s-8420b4c7-23cd-434b-a61e-2053b9192600 {
  display: none;
}
#s-8420b4c7-23cd-434b-a61e-2053b9192600, #wrap-s-8420b4c7-23cd-434b-a61e-2053b9192600 { display:none !important; }}
@media (min-width: 0px) {
[id="s-8420b4c7-23cd-434b-a61e-2053b9192600"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8420b4c7-23cd-434b-a61e-2053b9192600"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-8420b4c7-23cd-434b-a61e-2053b9192600"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-8420b4c7-23cd-434b-a61e-2053b9192600"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-8420b4c7-23cd-434b-a61e-2053b9192600"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-8420b4c7-23cd-434b-a61e-2053b9192600"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-8420b4c7-23cd-434b-a61e-2053b9192600"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-052c8fcd-cfd2-4579-8f08-b9d351fc640c {
  margin-left: 50px;
margin-right: 50px;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-052c8fcd-cfd2-4579-8f08-b9d351fc640c {
  
}
}@media (max-width: 767px){#s-052c8fcd-cfd2-4579-8f08-b9d351fc640c {
  
}
}







#s-052c8fcd-cfd2-4579-8f08-b9d351fc640c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-052c8fcd-cfd2-4579-8f08-b9d351fc640c.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-19faed8a-dd0f-4c64-82ba-0ef45c504387"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 768px) {
[id="s-19faed8a-dd0f-4c64-82ba-0ef45c504387"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-19faed8a-dd0f-4c64-82ba-0ef45c504387"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-19faed8a-dd0f-4c64-82ba-0ef45c504387"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

#s-49ed1c97-7a28-41f2-9954-51aa4d047500 {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-49ed1c97-7a28-41f2-9954-51aa4d047500 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-49ed1c97-7a28-41f2-9954-51aa4d047500.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f5a8ce19-3620-4239-9e35-2a4b4ae5e372 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-f5a8ce19-3620-4239-9e35-2a4b4ae5e372 .shogun-heading-component h1 {
  color: rgba(219, 105, 100, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-c961689e-77ea-4d69-a9de-697837646a3a {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-c961689e-77ea-4d69-a9de-697837646a3a .shogun-heading-component h1 {
  color: rgba(219, 105, 100, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-2648353e-1eb3-4348-9363-ac5e78609f37 {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-2648353e-1eb3-4348-9363-ac5e78609f37 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2648353e-1eb3-4348-9363-ac5e78609f37.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a464e4a7-ecfd-488d-81f7-f01300d6771f {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-a464e4a7-ecfd-488d-81f7-f01300d6771f .shogun-heading-component h1 {
  color: rgba(219, 105, 100, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-5399823a-9500-4487-b1d7-44cacd6fee3b {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-5399823a-9500-4487-b1d7-44cacd6fee3b .shogun-heading-component h1 {
  color: rgba(219, 105, 100, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-77a7f3cd-90f9-45b8-a38b-3887796245c3 {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-77a7f3cd-90f9-45b8-a38b-3887796245c3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-77a7f3cd-90f9-45b8-a38b-3887796245c3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9dc01a10-7e07-416a-840e-8c52ba0b0348 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-9dc01a10-7e07-416a-840e-8c52ba0b0348 .shogun-heading-component h1 {
  color: rgba(219, 105, 100, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-01d926c9-d5e4-47fa-b463-6ff4a934f754 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-01d926c9-d5e4-47fa-b463-6ff4a934f754 .shogun-heading-component h1 {
  color: rgba(219, 105, 100, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-26c3fe97-1e20-4086-983f-1a882f015785 {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-26c3fe97-1e20-4086-983f-1a882f015785 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-26c3fe97-1e20-4086-983f-1a882f015785.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6c275eaa-6ed6-45ec-94bb-c1176cc532fd {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-6c275eaa-6ed6-45ec-94bb-c1176cc532fd .shogun-heading-component h1 {
  color: rgba(219, 105, 100, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-1495bc7a-64cf-4c89-ba9c-033e42edf1bc {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-1495bc7a-64cf-4c89-ba9c-033e42edf1bc .shogun-heading-component h1 {
  color: rgba(219, 105, 100, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-0a004839-af47-49ff-88e0-23880e32796b {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-0a004839-af47-49ff-88e0-23880e32796b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0a004839-af47-49ff-88e0-23880e32796b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-86844aa9-79b4-423b-818c-92186c70b1f4 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-86844aa9-79b4-423b-818c-92186c70b1f4 .shogun-heading-component h1 {
  color: rgba(219, 105, 100, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-dbfd9790-a562-4c93-b8d6-f79b593e1c43 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-dbfd9790-a562-4c93-b8d6-f79b593e1c43 .shogun-heading-component h1 {
  color: rgba(219, 105, 100, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-d877d2f7-8aaa-40f3-87e8-27543e7d61eb {
  min-height: 50px;
}








#s-d877d2f7-8aaa-40f3-87e8-27543e7d61eb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d877d2f7-8aaa-40f3-87e8-27543e7d61eb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b0890d5f-bd85-47dd-aa5e-1aff1593841d {
  text-align: center;
}







  #s-b0890d5f-bd85-47dd-aa5e-1aff1593841d img.shogun-image {
    

    
    
    
  }


#s-b0890d5f-bd85-47dd-aa5e-1aff1593841d .shogun-image-content {
  
    align-items: center;
  
}

#s-e0e927fa-90e1-4501-a9b9-01082282246a {
  text-align: center;
}
@media (max-width: 767px){#s-e0e927fa-90e1-4501-a9b9-01082282246a {
  display: none;
}
#s-e0e927fa-90e1-4501-a9b9-01082282246a, #wrap-s-e0e927fa-90e1-4501-a9b9-01082282246a { display:none !important; }}






  #s-e0e927fa-90e1-4501-a9b9-01082282246a img.shogun-image {
    

    
    
    
  }


#s-e0e927fa-90e1-4501-a9b9-01082282246a .shogun-image-content {
  
    align-items: center;
  
}

#s-c755e4e8-bfe2-4a68-8501-544f949944d0 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-c755e4e8-bfe2-4a68-8501-544f949944d0 .shogun-heading-component h1 {
  color: rgba(184, 39, 51, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 30px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-8c4f3fd6-4cf9-44b7-8d2e-96a5a7b5fb73 {
  margin-bottom: 20px;
min-height: 50px;
max-width: 850px;
}








#s-8c4f3fd6-4cf9-44b7-8d2e-96a5a7b5fb73 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8c4f3fd6-4cf9-44b7-8d2e-96a5a7b5fb73.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cae5ce2b-54f4-4c4f-88f8-e3284300a4bd {
  margin-left: 0px;
margin-right: 0px;
}

@media (min-width: 0px) {
[id="s-cae5ce2b-54f4-4c4f-88f8-e3284300a4bd"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-cae5ce2b-54f4-4c4f-88f8-e3284300a4bd"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 16.666666666666668px);
}

}

@media (min-width: 992px) {
[id="s-cae5ce2b-54f4-4c4f-88f8-e3284300a4bd"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 16.666666666666668px);
}

}

@media (min-width: 1200px) {
[id="s-cae5ce2b-54f4-4c4f-88f8-e3284300a4bd"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 16.666666666666668px);
}

}

#s-98019cb8-85ff-4941-ab9f-c819b5e8e863 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-98019cb8-85ff-4941-ab9f-c819b5e8e863 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-98019cb8-85ff-4941-ab9f-c819b5e8e863.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-14cba05f-e6a5-4870-aefd-2e67b8159a42 {
  text-align: center;
}







  #s-14cba05f-e6a5-4870-aefd-2e67b8159a42 img.shogun-image {
    

    
    
    
  }


#s-14cba05f-e6a5-4870-aefd-2e67b8159a42 .shogun-image-content {
  
    align-items: center;
  
}

#s-145cd777-0daf-4a14-863f-4dbba71e2a08 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-145cd777-0daf-4a14-863f-4dbba71e2a08 .shogun-heading-component h1 {
  color: rgba(219, 105, 100, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 22px;
  line-height: 0.9em;
  
  
}



#s-000c97e8-47d6-4103-b8b6-3e94fb0651e5 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-000c97e8-47d6-4103-b8b6-3e94fb0651e5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-000c97e8-47d6-4103-b8b6-3e94fb0651e5.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-4af1265a-834b-4b9d-9efa-8b6123bfcca0 {
  text-align: center;
}







  #s-4af1265a-834b-4b9d-9efa-8b6123bfcca0 img.shogun-image {
    

    
    
    
  }


#s-4af1265a-834b-4b9d-9efa-8b6123bfcca0 .shogun-image-content {
  
    align-items: center;
  
}

#s-fded4b6b-fb12-41ff-8576-ca3446e801e6 {
  text-align: center;
}

#s-fded4b6b-fb12-41ff-8576-ca3446e801e6 .shogun-heading-component h1 {
  color: rgba(219, 105, 100, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 22px;
  line-height: 0.9em;
  
  
}



#s-798f460a-baec-4880-83a0-03030cd6d954 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-798f460a-baec-4880-83a0-03030cd6d954 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-798f460a-baec-4880-83a0-03030cd6d954.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-43f44d13-cb47-4b97-ab6d-bca3197758cd {
  text-align: center;
}







  #s-43f44d13-cb47-4b97-ab6d-bca3197758cd img.shogun-image {
    

    
    
    
  }


#s-43f44d13-cb47-4b97-ab6d-bca3197758cd .shogun-image-content {
  
    align-items: center;
  
}

#s-50f98e71-3359-4056-8251-4f839cba03c6 {
  text-align: center;
}

#s-50f98e71-3359-4056-8251-4f839cba03c6 .shogun-heading-component h1 {
  color: rgba(219, 105, 100, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 22px;
  line-height: 0.9em;
  
  
}



#s-ff6e5c57-99a6-4958-975e-00c823218f3b {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-ff6e5c57-99a6-4958-975e-00c823218f3b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ff6e5c57-99a6-4958-975e-00c823218f3b.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-b3f646ff-8111-406f-a898-c88108361379 {
  text-align: center;
}







  #s-b3f646ff-8111-406f-a898-c88108361379 img.shogun-image {
    

    
    
    
  }


#s-b3f646ff-8111-406f-a898-c88108361379 .shogun-image-content {
  
    align-items: center;
  
}

#s-b864bbec-9854-4697-a974-b30e40ff1a6e {
  text-align: center;
}

#s-b864bbec-9854-4697-a974-b30e40ff1a6e .shogun-heading-component h1 {
  color: rgba(219, 105, 100, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 22px;
  line-height: 0.9em;
  
  
}



#s-6d154dc1-55a3-479f-aae6-39effa75bc2b {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-6d154dc1-55a3-479f-aae6-39effa75bc2b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6d154dc1-55a3-479f-aae6-39effa75bc2b.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-8bde3525-6470-4d1b-9a7d-8ebedfc87a4c {
  text-align: center;
}







  #s-8bde3525-6470-4d1b-9a7d-8ebedfc87a4c img.shogun-image {
    

    
    
    
  }


#s-8bde3525-6470-4d1b-9a7d-8ebedfc87a4c .shogun-image-content {
  
    align-items: center;
  
}

#s-dcb3eaf1-1c35-466e-95ea-505bedfcddd6 {
  text-align: center;
}

#s-dcb3eaf1-1c35-466e-95ea-505bedfcddd6 .shogun-heading-component h1 {
  color: rgba(219, 105, 100, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 22px;
  line-height: 0.9em;
  
  
}



#s-fa1ae66c-082d-43fa-aad3-8fa28445230e {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-fa1ae66c-082d-43fa-aad3-8fa28445230e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fa1ae66c-082d-43fa-aad3-8fa28445230e.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-bcbe52a0-a33c-4f0b-b6c1-12fcd20b82be {
  text-align: center;
}







  #s-bcbe52a0-a33c-4f0b-b6c1-12fcd20b82be img.shogun-image {
    

    
    
    
  }


#s-bcbe52a0-a33c-4f0b-b6c1-12fcd20b82be .shogun-image-content {
  
    align-items: center;
  
}

#s-73cb317d-13b2-4e30-b395-68696b0790ae {
  text-align: center;
}

#s-73cb317d-13b2-4e30-b395-68696b0790ae .shogun-heading-component h1 {
  color: rgba(219, 105, 100, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 22px;
  line-height: 0.9em;
  
  
}



#s-bec06e04-ae4d-4e23-a656-2e3ebd7d28e1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-bec06e04-ae4d-4e23-a656-2e3ebd7d28e1 .shogun-heading-component h1 {
  color: rgba(184, 39, 51, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 30px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-8483c299-6ca5-4032-abed-cf993dd6c7b6 {
  margin-top: 0px;
margin-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-8483c299-6ca5-4032-abed-cf993dd6c7b6 {
  margin-left: 0px;
margin-right: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-8483c299-6ca5-4032-abed-cf993dd6c7b6 {
  margin-right: 50px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-8483c299-6ca5-4032-abed-cf993dd6c7b6 {
  
}
}@media (max-width: 767px){#s-8483c299-6ca5-4032-abed-cf993dd6c7b6 {
  padding-left: 50px;
padding-right: 50px;
}
}






  #s-8483c299-6ca5-4032-abed-cf993dd6c7b6 img.shogun-image {
    

    
    
    
  }


#s-8483c299-6ca5-4032-abed-cf993dd6c7b6 .shogun-image-content {
  
    align-items: center;
  
}

#s-1c51071c-01c2-4150-87ce-12973efad004 {
  margin-left: 0px;
margin-right: 0px;
padding-left: 40px;
padding-bottom: 0px;
padding-right: 40px;
min-height: 50px;
}








#s-1c51071c-01c2-4150-87ce-12973efad004 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1c51071c-01c2-4150-87ce-12973efad004.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-36238a57-ffb8-460e-9b1f-73dcb9d1d516 {
  text-align: center;
}
@media (min-width: 1200px){#s-36238a57-ffb8-460e-9b1f-73dcb9d1d516 {
  display: none;
}
#s-36238a57-ffb8-460e-9b1f-73dcb9d1d516, #wrap-s-36238a57-ffb8-460e-9b1f-73dcb9d1d516 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-36238a57-ffb8-460e-9b1f-73dcb9d1d516 {
  display: none;
}
#s-36238a57-ffb8-460e-9b1f-73dcb9d1d516, #wrap-s-36238a57-ffb8-460e-9b1f-73dcb9d1d516 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-36238a57-ffb8-460e-9b1f-73dcb9d1d516 {
  display: none;
}
#s-36238a57-ffb8-460e-9b1f-73dcb9d1d516, #wrap-s-36238a57-ffb8-460e-9b1f-73dcb9d1d516 { display:none !important; }}






  #s-36238a57-ffb8-460e-9b1f-73dcb9d1d516 img.shogun-image {
    

    
    
    
  }


#s-36238a57-ffb8-460e-9b1f-73dcb9d1d516 .shogun-image-content {
  
    align-items: center;
  
}

#s-8f315322-7b78-41bd-8294-f11b5a3e83d0 {
  margin-left: 0px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
text-align: center;
}
@media (max-width: 767px){#s-8f315322-7b78-41bd-8294-f11b5a3e83d0 {
  display: none;
}
#s-8f315322-7b78-41bd-8294-f11b5a3e83d0, #wrap-s-8f315322-7b78-41bd-8294-f11b5a3e83d0 { display:none !important; }}






  #s-8f315322-7b78-41bd-8294-f11b5a3e83d0 img.shogun-image {
    

    
    
    
  }


#s-8f315322-7b78-41bd-8294-f11b5a3e83d0 .shogun-image-content {
  
    align-items: center;
  
}

#s-00858c4f-ddc9-4ba7-8a12-f502b6f112a6 {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-00858c4f-ddc9-4ba7-8a12-f502b6f112a6 {
  margin-bottom: 10px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-00858c4f-ddc9-4ba7-8a12-f502b6f112a6 {
  margin-top: 15px;
margin-bottom: 15px;
}
}@media (max-width: 767px){#s-00858c4f-ddc9-4ba7-8a12-f502b6f112a6 {
  margin-left: 25px;
margin-right: 25px;
padding-top: 20px;
padding-bottom: 20px;
}
}
#s-00858c4f-ddc9-4ba7-8a12-f502b6f112a6 .shogun-heading-component h1 {
  color: rgba(184, 39, 51, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  
  
  letter-spacing: 1px;
  text-align: center;
}


@media (min-width: 1200px){#s-00858c4f-ddc9-4ba7-8a12-f502b6f112a6 .shogun-heading-component h1 {
  color: rgba(184, 39, 51, 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-00858c4f-ddc9-4ba7-8a12-f502b6f112a6 .shogun-heading-component h1 {
  color: rgba(184, 39, 51, 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-00858c4f-ddc9-4ba7-8a12-f502b6f112a6 .shogun-heading-component h1 {
  color: rgba(184, 39, 51, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  letter-spacing: 1px;
  text-align: center;
}


}
#s-e9209cce-9d6a-46ee-884e-77625254d114 {
  margin-left: auto;
margin-right: auto;
padding-left: 0px;
padding-right: 0px;
max-width: 1000px;
}
@media (min-width: 768px) and (max-width: 991px){#s-e9209cce-9d6a-46ee-884e-77625254d114 {
  
}
}@media (max-width: 767px){#s-e9209cce-9d6a-46ee-884e-77625254d114 {
  
}
}
@media (min-width: 0px) {
[id="s-e9209cce-9d6a-46ee-884e-77625254d114"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-e9209cce-9d6a-46ee-884e-77625254d114"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-e9209cce-9d6a-46ee-884e-77625254d114"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-e9209cce-9d6a-46ee-884e-77625254d114"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-b61d716c-15aa-4471-b059-99cdbf79a3e6 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-b61d716c-15aa-4471-b059-99cdbf79a3e6 {
  
}
}@media (max-width: 767px){#s-b61d716c-15aa-4471-b059-99cdbf79a3e6 {
  
}
}






  #s-b61d716c-15aa-4471-b059-99cdbf79a3e6 img.shogun-image {
    

    
    
    
  }


#s-b61d716c-15aa-4471-b059-99cdbf79a3e6 .shogun-image-content {
  
    align-items: center;
  
}

#s-c59814fa-859d-45f1-8b88-7584a96dbf4b {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-c59814fa-859d-45f1-8b88-7584a96dbf4b {
  
}
}@media (max-width: 767px){#s-c59814fa-859d-45f1-8b88-7584a96dbf4b {
  
}
}






  #s-c59814fa-859d-45f1-8b88-7584a96dbf4b img.shogun-image {
    

    
    
    
  }


#s-c59814fa-859d-45f1-8b88-7584a96dbf4b .shogun-image-content {
  
    align-items: center;
  
}

#s-d91764e5-121a-465f-b424-fbc3ced84359 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-d91764e5-121a-465f-b424-fbc3ced84359 {
  
}
}@media (max-width: 767px){#s-d91764e5-121a-465f-b424-fbc3ced84359 {
  
}
}






  #s-d91764e5-121a-465f-b424-fbc3ced84359 img.shogun-image {
    

    
    
    
  }


#s-d91764e5-121a-465f-b424-fbc3ced84359 .shogun-image-content {
  
    align-items: center;
  
}

#s-c40d8f5c-d0e6-4b39-b14b-b953c93a3140 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-c40d8f5c-d0e6-4b39-b14b-b953c93a3140 {
  
}
}@media (max-width: 767px){#s-c40d8f5c-d0e6-4b39-b14b-b953c93a3140 {
  
}
}






  #s-c40d8f5c-d0e6-4b39-b14b-b953c93a3140 img.shogun-image {
    

    
    
    
  }


#s-c40d8f5c-d0e6-4b39-b14b-b953c93a3140 .shogun-image-content {
  
    align-items: center;
  
}

#s-fb62207b-4da8-4f52-9fb7-074a3e0d9580 {
  margin-left: 0px;
margin-right: 0px;
padding-left: 40px;
padding-right: 40px;
min-height: 50px;
}








#s-fb62207b-4da8-4f52-9fb7-074a3e0d9580 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fb62207b-4da8-4f52-9fb7-074a3e0d9580.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-eea4526e-f185-432b-a320-b778c1ca5ddf {
  text-align: center;
}
@media (min-width: 1200px){#s-eea4526e-f185-432b-a320-b778c1ca5ddf {
  display: none;
}
#s-eea4526e-f185-432b-a320-b778c1ca5ddf, #wrap-s-eea4526e-f185-432b-a320-b778c1ca5ddf { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-eea4526e-f185-432b-a320-b778c1ca5ddf {
  display: none;
}
#s-eea4526e-f185-432b-a320-b778c1ca5ddf, #wrap-s-eea4526e-f185-432b-a320-b778c1ca5ddf { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-eea4526e-f185-432b-a320-b778c1ca5ddf {
  display: none;
}
#s-eea4526e-f185-432b-a320-b778c1ca5ddf, #wrap-s-eea4526e-f185-432b-a320-b778c1ca5ddf { display:none !important; }}






  #s-eea4526e-f185-432b-a320-b778c1ca5ddf img.shogun-image {
    

    
    
    
  }


#s-eea4526e-f185-432b-a320-b778c1ca5ddf .shogun-image-content {
  
    align-items: center;
  
}

#s-01319c85-158b-4b21-b047-121c398a0e51 {
  margin-left: 0px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
text-align: center;
}
@media (max-width: 767px){#s-01319c85-158b-4b21-b047-121c398a0e51 {
  display: none;
}
#s-01319c85-158b-4b21-b047-121c398a0e51, #wrap-s-01319c85-158b-4b21-b047-121c398a0e51 { display:none !important; }}






  #s-01319c85-158b-4b21-b047-121c398a0e51 img.shogun-image {
    

    
    
    
  }


#s-01319c85-158b-4b21-b047-121c398a0e51 .shogun-image-content {
  
    align-items: center;
  
}

#s-654b1b7b-5c10-469d-a177-4a4ce4defa5b {
  padding-top: 20px;
padding-left: 150px;
padding-bottom: 20px;
padding-right: 150px;
text-align: center;
}
@media (max-width: 767px){#s-654b1b7b-5c10-469d-a177-4a4ce4defa5b {
  padding-left: 0px;
padding-right: 0px;
}
}
#s-654b1b7b-5c10-469d-a177-4a4ce4defa5b .shogun-heading-component h1 {
  color: rgba(184, 39, 51, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  
  
  letter-spacing: 1px;
  text-align: center;
}


@media (min-width: 1200px){#s-654b1b7b-5c10-469d-a177-4a4ce4defa5b .shogun-heading-component h1 {
  color: rgba(184, 39, 51, 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-654b1b7b-5c10-469d-a177-4a4ce4defa5b .shogun-heading-component h1 {
  color: rgba(184, 39, 51, 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-654b1b7b-5c10-469d-a177-4a4ce4defa5b .shogun-heading-component h1 {
  color: rgba(184, 39, 51, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  letter-spacing: 1px;
  text-align: center;
}


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

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

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

.shogun-root iframe {
  display: initial;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-lazyload-bg-image {
  display: none;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}
/* <-- User Content Animations */

.shogun-form-error-msg, .shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}

.shg-c:before,.shg-c:after{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width: 1024px){.shg-c,.shg-box{background-attachment:scroll !important}}@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape){.shg-box{background-attachment:scroll !important}}#mc_embed_signup .clear{width:auto !important;height:auto !important;visibility:visible !important}.shg-clearfix:after{content:"";display:block;clear:both}.shogun-image{max-width:100%;min-height:inherit;max-height:inherit;display:inline !important;border:0;vertical-align:middle}.shg-fw{margin-left:calc(50% - 50vw);width:100vw}.shg-fw .shg-fw{margin-left:auto;margin-right:auto;width:100%}div[data-shg-lightbox-switch]{cursor:pointer}.shg-lightbox{position:fixed;z-index:999999;left:0;top:0;width:100%;height:100%;overflow:hidden;background-color:#000;background-color:rgba(0,0,0,0.85)}.shg-lightbox.hidden{display:none !important}.shg-lightbox .shg-lightbox-content{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:100%;text-align:center}.shg-lightbox .shg-lightbox-close{position:absolute;right:0;padding:5px 0;color:#fff;font-size:45px;margin-right:10px;line-height:30px;user-select:none;cursor:pointer;z-index:1}.shg-lightbox .shg-lightbox-image-container{padding:25px}.shg-lightbox .shg-lightbox-image{margin:auto;max-height:90vh;max-width:100%}.shg-lightbox .shg-lightbox-close:hover,.shg-lightbox .shg-lightbox-close:focus{color:#a2a2a2;text-decoration:none;cursor:pointer}.shg-lightbox .shg-lightbox-nav{cursor:pointer;position:absolute;top:50%;width:35px;height:100px;background-size:contain;background-repeat:no-repeat;background-position:center;transform:translate(0%, -50%);z-index:1}.shg-lightbox .shg-lightbox-nav.hidden{display:none !important}.shg-lightbox .shg-lightbox-nav.shg-nav-left{left:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==)}.shg-lightbox .shg-lightbox-nav.shg-nav-right{right:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+)}@media screen and (min-width: 769px){.shg-lightbox .shg-lightbox-image-container{padding:50px}}.shogun-lazyload:not([src]),.shogun-lazyloading:not([src]){opacity:0}.shogun-lazyloaded{opacity:1;transition:opacity 300ms}.shogun-lazyload-bg-image{display:none}.shogun-root a:empty,.shogun-root article:empty,.shogun-root dl:empty,.shogun-root h1:empty,.shogun-root h2:empty,.shogun-root h3:empty,.shogun-root h4:empty,.shogun-root h5:empty,.shogun-root h6:empty,.shogun-root p:empty,.shogun-root section:empty,.shogun-root ul:empty{display:unset}.shogun-root div:empty{display:inline-block}[data-animations*="enterviewport"][data-animations*="fadeIn"],[data-animations*="enterviewport"][data-animations*="zoomIn"]{opacity:0}.shogun-form-error-msg,.shogun-form-field-error-msg{display:flex;align-items:center;color:#dc143c}.shogun-badge{margin-bottom:50px}.shogun-badge-container{position:fixed;right:0;bottom:0;margin-bottom:-10px}
