.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-7633bcbd-f70f-41e5-9270-4852540438e3 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-7633bcbd-f70f-41e5-9270-4852540438e3 {
  display: none;
}
#s-7633bcbd-f70f-41e5-9270-4852540438e3, #wrap-s-7633bcbd-f70f-41e5-9270-4852540438e3 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7633bcbd-f70f-41e5-9270-4852540438e3 {
  display: none;
}
#s-7633bcbd-f70f-41e5-9270-4852540438e3, #wrap-s-7633bcbd-f70f-41e5-9270-4852540438e3 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7633bcbd-f70f-41e5-9270-4852540438e3 {
  display: none;
}
#s-7633bcbd-f70f-41e5-9270-4852540438e3, #wrap-s-7633bcbd-f70f-41e5-9270-4852540438e3 { display: none !important; }}@media (max-width: 767px){#s-7633bcbd-f70f-41e5-9270-4852540438e3 {
  display: none;
}
#s-7633bcbd-f70f-41e5-9270-4852540438e3, #wrap-s-7633bcbd-f70f-41e5-9270-4852540438e3 { display: none !important; }}







#s-7633bcbd-f70f-41e5-9270-4852540438e3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7633bcbd-f70f-41e5-9270-4852540438e3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d15dbe96-881a-45d4-a328-d51047bba17f {
  min-height: 20px;
}








#s-d15dbe96-881a-45d4-a328-d51047bba17f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d15dbe96-881a-45d4-a328-d51047bba17f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.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-a0e3b8fb-4b85-45f6-a7bc-b832c4956289 {
  text-align: center;
}
@media (min-width: 1200px){#s-a0e3b8fb-4b85-45f6-a7bc-b832c4956289 {
  display: none;
}
#s-a0e3b8fb-4b85-45f6-a7bc-b832c4956289, #wrap-s-a0e3b8fb-4b85-45f6-a7bc-b832c4956289 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a0e3b8fb-4b85-45f6-a7bc-b832c4956289 {
  display: none;
}
#s-a0e3b8fb-4b85-45f6-a7bc-b832c4956289, #wrap-s-a0e3b8fb-4b85-45f6-a7bc-b832c4956289 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a0e3b8fb-4b85-45f6-a7bc-b832c4956289 {
  display: none;
}
#s-a0e3b8fb-4b85-45f6-a7bc-b832c4956289, #wrap-s-a0e3b8fb-4b85-45f6-a7bc-b832c4956289 { display: none !important; }}






  #s-a0e3b8fb-4b85-45f6-a7bc-b832c4956289 img.shogun-image {
    

    
    
    
  }


#s-a0e3b8fb-4b85-45f6-a7bc-b832c4956289 .shogun-image-content {
  
    align-items: center;
  
}

.shg-rich-text {
  overflow-wrap: break-word;
}

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

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

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

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

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

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

.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: 400;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0.6em;
  color: #000000;
  font-family: Open Sans;
}

.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: #000000;
  font-family: Montserrat;
  font-weight: 500;
}

.shg-theme-text-content p {
  color: #000000;
  font-family: Open Sans;
  font-weight: 400;
}

@media (min-width: 1200px){#s-28d0eab3-b044-4421-8120-03b9fb3d66a1 {
  display: none;
}
#s-28d0eab3-b044-4421-8120-03b9fb3d66a1, #wrap-s-28d0eab3-b044-4421-8120-03b9fb3d66a1 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-28d0eab3-b044-4421-8120-03b9fb3d66a1 {
  display: none;
}
#s-28d0eab3-b044-4421-8120-03b9fb3d66a1, #wrap-s-28d0eab3-b044-4421-8120-03b9fb3d66a1 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-28d0eab3-b044-4421-8120-03b9fb3d66a1 {
  display: none;
}
#s-28d0eab3-b044-4421-8120-03b9fb3d66a1, #wrap-s-28d0eab3-b044-4421-8120-03b9fb3d66a1 { display: none !important; }}
.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-c6ffb6e2-f4f0-4d07-a204-87e2fbb71261 {
  margin-left: auto;
margin-right: auto;
max-width: 1200px;
}
@media (max-width: 767px){#s-c6ffb6e2-f4f0-4d07-a204-87e2fbb71261 {
  display: none;
}
#s-c6ffb6e2-f4f0-4d07-a204-87e2fbb71261, #wrap-s-c6ffb6e2-f4f0-4d07-a204-87e2fbb71261 { display: none !important; }}
@media (min-width: 0px) {
[id="s-c6ffb6e2-f4f0-4d07-a204-87e2fbb71261"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-c6ffb6e2-f4f0-4d07-a204-87e2fbb71261"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-c6ffb6e2-f4f0-4d07-a204-87e2fbb71261"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-c6ffb6e2-f4f0-4d07-a204-87e2fbb71261"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-3b903570-3225-4288-b7fc-1f47ed0d45ab {
  text-align: center;
}







  #s-3b903570-3225-4288-b7fc-1f47ed0d45ab img.shogun-image {
    

    
    
    
  }


#s-3b903570-3225-4288-b7fc-1f47ed0d45ab .shogun-image-content {
  
    align-items: center;
  
}

#s-e77d0fba-2fef-4586-a649-05a1fddedb78 {
  opacity: 1;
}
@media (min-width: 1200px){#s-e77d0fba-2fef-4586-a649-05a1fddedb78 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-e77d0fba-2fef-4586-a649-05a1fddedb78 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-e77d0fba-2fef-4586-a649-05a1fddedb78 {
  
}
}@media (max-width: 767px){#s-e77d0fba-2fef-4586-a649-05a1fddedb78 {
  
}
}
#s-2a95fe92-ff25-403a-835f-d38382577a77 {
  margin-top: 6px;
text-align: center;
}







  #s-2a95fe92-ff25-403a-835f-d38382577a77 img.shogun-image {
    

    
    
    
  }


#s-2a95fe92-ff25-403a-835f-d38382577a77 .shogun-image-content {
  
    align-items: center;
  
}

#s-dea50ca3-1a13-4438-be90-6adf2ae0f62e {
  margin-top: 8px;
text-align: center;
}







  #s-dea50ca3-1a13-4438-be90-6adf2ae0f62e img.shogun-image {
    

    
    
    
  }


#s-dea50ca3-1a13-4438-be90-6adf2ae0f62e .shogun-image-content {
  
    align-items: center;
  
}

#s-a19635d3-f055-46b0-a405-791ae52a2c98 {
  margin-left: auto;
margin-right: auto;
max-width: 1200px;
}
@media (min-width: 1200px){#s-a19635d3-f055-46b0-a405-791ae52a2c98 {
  display: none;
}
#s-a19635d3-f055-46b0-a405-791ae52a2c98, #wrap-s-a19635d3-f055-46b0-a405-791ae52a2c98 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a19635d3-f055-46b0-a405-791ae52a2c98 {
  display: none;
}
#s-a19635d3-f055-46b0-a405-791ae52a2c98, #wrap-s-a19635d3-f055-46b0-a405-791ae52a2c98 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a19635d3-f055-46b0-a405-791ae52a2c98 {
  display: none;
}
#s-a19635d3-f055-46b0-a405-791ae52a2c98, #wrap-s-a19635d3-f055-46b0-a405-791ae52a2c98 { display: none !important; }}@media (max-width: 767px){#s-a19635d3-f055-46b0-a405-791ae52a2c98 {
  display: none;
}
#s-a19635d3-f055-46b0-a405-791ae52a2c98, #wrap-s-a19635d3-f055-46b0-a405-791ae52a2c98 { display: none !important; }}
@media (min-width: 0px) {
[id="s-a19635d3-f055-46b0-a405-791ae52a2c98"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-a19635d3-f055-46b0-a405-791ae52a2c98"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-a19635d3-f055-46b0-a405-791ae52a2c98"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-a19635d3-f055-46b0-a405-791ae52a2c98"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

.shg-btn.shg-cse, .shg-btn.shg-cse:hover, .shg-btn.shg-cse:focus {
  color: #FFF;
}

.shg-btn {
  cursor: pointer;
  box-sizing: border-box;
}

.shg-btn-text {
  font-weight: 400;
  font-family: Open Sans;
}

.shg-btn.shg-btn-stretch {
  display: block;
}

.shg-btn:not(.shg-btn-stretch) {
  display: inline-block;
}

.shg-btn-wrapper.shg-align-left {
  text-align: left;
}

.shg-btn-wrapper.shg-align-center {
  text-align: center;
}

.shg-btn-wrapper.shg-align-right {
  text-align: right;
}

#s-150c2a70-d847-4290-85c0-b042028a342b {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 30px;
padding-bottom: 10px;
padding-right: 30px;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-150c2a70-d847-4290-85c0-b042028a342b:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-150c2a70-d847-4290-85c0-b042028a342b:active {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-150c2a70-d847-4290-85c0-b042028a342b-root {
    text-align: center;
  }


#s-150c2a70-d847-4290-85c0-b042028a342b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-150c2a70-d847-4290-85c0-b042028a342b-root {
    text-align: center;
  }


#s-150c2a70-d847-4290-85c0-b042028a342b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-150c2a70-d847-4290-85c0-b042028a342b-root {
    text-align: center;
  }


#s-150c2a70-d847-4290-85c0-b042028a342b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-150c2a70-d847-4290-85c0-b042028a342b-root {
    text-align: center;
  }


#s-150c2a70-d847-4290-85c0-b042028a342b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-150c2a70-d847-4290-85c0-b042028a342b-root {
    text-align: center;
  }


#s-150c2a70-d847-4290-85c0-b042028a342b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-8263aa7b-858a-41b3-95f0-0b5e82e725c6 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 30px;
padding-bottom: 10px;
padding-right: 30px;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-8263aa7b-858a-41b3-95f0-0b5e82e725c6:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-8263aa7b-858a-41b3-95f0-0b5e82e725c6:active {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-8263aa7b-858a-41b3-95f0-0b5e82e725c6-root {
    text-align: center;
  }


#s-8263aa7b-858a-41b3-95f0-0b5e82e725c6.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-8263aa7b-858a-41b3-95f0-0b5e82e725c6-root {
    text-align: center;
  }


#s-8263aa7b-858a-41b3-95f0-0b5e82e725c6.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-8263aa7b-858a-41b3-95f0-0b5e82e725c6-root {
    text-align: center;
  }


#s-8263aa7b-858a-41b3-95f0-0b5e82e725c6.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-8263aa7b-858a-41b3-95f0-0b5e82e725c6-root {
    text-align: center;
  }


#s-8263aa7b-858a-41b3-95f0-0b5e82e725c6.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-8263aa7b-858a-41b3-95f0-0b5e82e725c6-root {
    text-align: center;
  }


#s-8263aa7b-858a-41b3-95f0-0b5e82e725c6.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-60cc513f-9e92-40a9-aeab-0d9c41eb2e85 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 30px;
padding-bottom: 10px;
padding-right: 30px;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-60cc513f-9e92-40a9-aeab-0d9c41eb2e85:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-60cc513f-9e92-40a9-aeab-0d9c41eb2e85:active {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-60cc513f-9e92-40a9-aeab-0d9c41eb2e85-root {
    text-align: center;
  }


#s-60cc513f-9e92-40a9-aeab-0d9c41eb2e85.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-60cc513f-9e92-40a9-aeab-0d9c41eb2e85-root {
    text-align: center;
  }


#s-60cc513f-9e92-40a9-aeab-0d9c41eb2e85.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-60cc513f-9e92-40a9-aeab-0d9c41eb2e85-root {
    text-align: center;
  }


#s-60cc513f-9e92-40a9-aeab-0d9c41eb2e85.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-60cc513f-9e92-40a9-aeab-0d9c41eb2e85-root {
    text-align: center;
  }


#s-60cc513f-9e92-40a9-aeab-0d9c41eb2e85.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-60cc513f-9e92-40a9-aeab-0d9c41eb2e85-root {
    text-align: center;
  }


#s-60cc513f-9e92-40a9-aeab-0d9c41eb2e85.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-003999fa-8b78-4968-a69c-5489c4226196 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 30px;
padding-bottom: 10px;
padding-right: 30px;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-003999fa-8b78-4968-a69c-5489c4226196:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-003999fa-8b78-4968-a69c-5489c4226196:active {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-003999fa-8b78-4968-a69c-5489c4226196-root {
    text-align: center;
  }


#s-003999fa-8b78-4968-a69c-5489c4226196.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-003999fa-8b78-4968-a69c-5489c4226196-root {
    text-align: center;
  }


#s-003999fa-8b78-4968-a69c-5489c4226196.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-003999fa-8b78-4968-a69c-5489c4226196-root {
    text-align: center;
  }


#s-003999fa-8b78-4968-a69c-5489c4226196.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-003999fa-8b78-4968-a69c-5489c4226196-root {
    text-align: center;
  }


#s-003999fa-8b78-4968-a69c-5489c4226196.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-003999fa-8b78-4968-a69c-5489c4226196-root {
    text-align: center;
  }


#s-003999fa-8b78-4968-a69c-5489c4226196.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-d9e8202e-89d8-47f3-a09a-486ad5442ccd {
  margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
max-width: 1200px;
text-align: center;
}
@media (max-width: 767px){#s-d9e8202e-89d8-47f3-a09a-486ad5442ccd {
  display: none;
}
#s-d9e8202e-89d8-47f3-a09a-486ad5442ccd, #wrap-s-d9e8202e-89d8-47f3-a09a-486ad5442ccd { display: none !important; }}






  #s-d9e8202e-89d8-47f3-a09a-486ad5442ccd img.shogun-image {
    

    
    
    
  }


#s-d9e8202e-89d8-47f3-a09a-486ad5442ccd .shogun-image-content {
  
    align-items: center;
  
}

#s-b0701592-57cc-4a9a-b043-9b61728baf11 {
  margin-bottom: 20px;
text-align: center;
}
@media (min-width: 1200px){#s-b0701592-57cc-4a9a-b043-9b61728baf11 {
  display: none;
}
#s-b0701592-57cc-4a9a-b043-9b61728baf11, #wrap-s-b0701592-57cc-4a9a-b043-9b61728baf11 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b0701592-57cc-4a9a-b043-9b61728baf11 {
  display: none;
}
#s-b0701592-57cc-4a9a-b043-9b61728baf11, #wrap-s-b0701592-57cc-4a9a-b043-9b61728baf11 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b0701592-57cc-4a9a-b043-9b61728baf11 {
  display: none;
}
#s-b0701592-57cc-4a9a-b043-9b61728baf11, #wrap-s-b0701592-57cc-4a9a-b043-9b61728baf11 { display: none !important; }}@media (max-width: 767px){#s-b0701592-57cc-4a9a-b043-9b61728baf11 {
  
}
}






  #s-b0701592-57cc-4a9a-b043-9b61728baf11 img.shogun-image {
    

    
    
    
  }


#s-b0701592-57cc-4a9a-b043-9b61728baf11 .shogun-image-content {
  
    align-items: center;
  
}

#s-9ac6d26c-336c-43df-b0e1-f038b94a15cd {
  text-align: center;
}

#s-505bf864-4970-4657-8c14-745a6a99d50c {
  box-shadow:2px 4px 4px 2px rgba(0, 0, 0, 0.46);
border-style: solid;
margin-top: 16px;
margin-bottom: 24px;
padding-top: 17px;
padding-left: 20px;
padding-bottom: 17px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 20px;
background-color: rgba(240, 105, 10, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
letter-spacing: 5px;
opacity: 1;
}
#s-505bf864-4970-4657-8c14-745a6a99d50c:hover {background-color: rgba(243, 159, 100, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-505bf864-4970-4657-8c14-745a6a99d50c:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-505bf864-4970-4657-8c14-745a6a99d50c {
  line-height: 1em;
}
}

  #s-505bf864-4970-4657-8c14-745a6a99d50c-root {
    text-align: center;
  }


#s-505bf864-4970-4657-8c14-745a6a99d50c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 50px;
  font-weight: 300;
  font-style: italic;
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-505bf864-4970-4657-8c14-745a6a99d50c-root {
    text-align: center;
  }


#s-505bf864-4970-4657-8c14-745a6a99d50c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 50px;
  font-weight: 300;
  font-style: italic;
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-505bf864-4970-4657-8c14-745a6a99d50c-root {
    text-align: center;
  }


#s-505bf864-4970-4657-8c14-745a6a99d50c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 50px;
  font-weight: 300;
  font-style: italic;
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-505bf864-4970-4657-8c14-745a6a99d50c-root {
    text-align: center;
  }


#s-505bf864-4970-4657-8c14-745a6a99d50c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 50px;
  font-weight: 300;
  font-style: italic;
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-505bf864-4970-4657-8c14-745a6a99d50c-root {
    text-align: center;
  }


#s-505bf864-4970-4657-8c14-745a6a99d50c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 33px;
  font-weight: 300;
  font-style: italic;
  font-family: Open Sans;
  display:  inline-block ;
}
}
@media (min-width: 768px) and (max-width: 991px){#s-a0683de1-3c99-44eb-bc9b-68d804ffd0eb {
  display: none;
}
#s-a0683de1-3c99-44eb-bc9b-68d804ffd0eb, #wrap-s-a0683de1-3c99-44eb-bc9b-68d804ffd0eb { display: none !important; }}@media (max-width: 767px){#s-a0683de1-3c99-44eb-bc9b-68d804ffd0eb {
  display: none;
}
#s-a0683de1-3c99-44eb-bc9b-68d804ffd0eb, #wrap-s-a0683de1-3c99-44eb-bc9b-68d804ffd0eb { display: none !important; }}
@media (min-width: 1200px){#s-ca0f9c51-5ed0-427a-ac9d-eb61df17f5e8 {
  display: none;
}
#s-ca0f9c51-5ed0-427a-ac9d-eb61df17f5e8, #wrap-s-ca0f9c51-5ed0-427a-ac9d-eb61df17f5e8 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ca0f9c51-5ed0-427a-ac9d-eb61df17f5e8 {
  display: none;
}
#s-ca0f9c51-5ed0-427a-ac9d-eb61df17f5e8, #wrap-s-ca0f9c51-5ed0-427a-ac9d-eb61df17f5e8 { display: none !important; }}
#s-3f9f0290-690b-43c9-8eb6-22540e71ae70 {
  min-height: 50px;
}








#s-3f9f0290-690b-43c9-8eb6-22540e71ae70 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3f9f0290-690b-43c9-8eb6-22540e71ae70.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: #000000;
  font-family: Montserrat;
  text-transform: none;
  font-weight: 500;
  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-bcc38c13-0e33-49d3-96fd-1a96bb08631a {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(254, 136, 26, 1);
border-style: solid;
max-width: 1200px;
text-align: center;
}
@media (min-width: 1200px){#s-bcc38c13-0e33-49d3-96fd-1a96bb08631a {
  display: none;
}
#s-bcc38c13-0e33-49d3-96fd-1a96bb08631a, #wrap-s-bcc38c13-0e33-49d3-96fd-1a96bb08631a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-bcc38c13-0e33-49d3-96fd-1a96bb08631a {
  display: none;
}
#s-bcc38c13-0e33-49d3-96fd-1a96bb08631a, #wrap-s-bcc38c13-0e33-49d3-96fd-1a96bb08631a { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-bcc38c13-0e33-49d3-96fd-1a96bb08631a {
  
}
}@media (max-width: 767px){#s-bcc38c13-0e33-49d3-96fd-1a96bb08631a {
  display: none;
}
#s-bcc38c13-0e33-49d3-96fd-1a96bb08631a, #wrap-s-bcc38c13-0e33-49d3-96fd-1a96bb08631a { display: none !important; }}
#s-bcc38c13-0e33-49d3-96fd-1a96bb08631a .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 29px;
  line-height: 2em;
  
  
}



#s-791d2340-7c84-407d-a0ee-b36c402328d6 {
  margin-left: auto;
margin-right: auto;
max-width: 1200px;
}

@media (min-width: 0px) {
[id="s-791d2340-7c84-407d-a0ee-b36c402328d6"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-791d2340-7c84-407d-a0ee-b36c402328d6"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-791d2340-7c84-407d-a0ee-b36c402328d6"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-791d2340-7c84-407d-a0ee-b36c402328d6"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-a9d149e2-5b7d-4019-abe5-cc2b2f2d7d6b {
  text-align: center;
}







  #s-a9d149e2-5b7d-4019-abe5-cc2b2f2d7d6b img.shogun-image {
    

    
    
    
  }


#s-a9d149e2-5b7d-4019-abe5-cc2b2f2d7d6b .shogun-image-content {
  
    align-items: center;
  
}

#s-fafc7d8b-29dc-497d-9f51-5cb28bdd92a1 {
  text-align: center;
}







  #s-fafc7d8b-29dc-497d-9f51-5cb28bdd92a1 img.shogun-image {
    

    
    
    
  }


#s-fafc7d8b-29dc-497d-9f51-5cb28bdd92a1 .shogun-image-content {
  
    align-items: center;
  
}

#s-0015ae2c-3e1b-492a-be3d-7b5fd9302f50 {
  text-align: center;
}







  #s-0015ae2c-3e1b-492a-be3d-7b5fd9302f50 img.shogun-image {
    

    
    
    
  }


#s-0015ae2c-3e1b-492a-be3d-7b5fd9302f50 .shogun-image-content {
  
    align-items: center;
  
}

#s-6afa4fde-18cb-4176-a4b7-454f50f7c533 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-style: solid;
border-radius: 3px;
text-align: center;
}







  #s-6afa4fde-18cb-4176-a4b7-454f50f7c533 img.shogun-image {
    

    
    
    
  }


#s-6afa4fde-18cb-4176-a4b7-454f50f7c533 .shogun-image-content {
  
    align-items: center;
  
}

#s-f83b58ad-bc15-41ec-8623-02e490c2e82b {
  text-align: center;
}







  #s-f83b58ad-bc15-41ec-8623-02e490c2e82b img.shogun-image {
    

    
    
    
  }


#s-f83b58ad-bc15-41ec-8623-02e490c2e82b .shogun-image-content {
  
    align-items: center;
  
}

#s-165e7cec-2e74-4fd3-9f39-e9554be8a097 {
  min-height: 50px;
}








#s-165e7cec-2e74-4fd3-9f39-e9554be8a097 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-165e7cec-2e74-4fd3-9f39-e9554be8a097.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1c6207db-42a3-447b-a11b-47e8518707f1 {
  min-height: 50px;
}








#s-1c6207db-42a3-447b-a11b-47e8518707f1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1c6207db-42a3-447b-a11b-47e8518707f1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9f4c1faf-95f9-473f-8523-765f164808ab {
  margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(254, 136, 26, 1);
border-style: solid;
max-width: 1200px;
text-align: center;
}
@media (min-width: 1200px){#s-9f4c1faf-95f9-473f-8523-765f164808ab {
  display: none;
}
#s-9f4c1faf-95f9-473f-8523-765f164808ab, #wrap-s-9f4c1faf-95f9-473f-8523-765f164808ab { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9f4c1faf-95f9-473f-8523-765f164808ab {
  display: none;
}
#s-9f4c1faf-95f9-473f-8523-765f164808ab, #wrap-s-9f4c1faf-95f9-473f-8523-765f164808ab { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-9f4c1faf-95f9-473f-8523-765f164808ab {
  display: none;
}
#s-9f4c1faf-95f9-473f-8523-765f164808ab, #wrap-s-9f4c1faf-95f9-473f-8523-765f164808ab { display: none !important; }}
#s-9f4c1faf-95f9-473f-8523-765f164808ab .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  line-height: 2em;
  
  
}



.shogun-video {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.shogun-video-16x9 {
  padding-bottom: 56.25%;
}

.shogun-video-4x3 {
  padding-bottom: 75%;
}

.shogun-video-embed {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#s-5efb186a-a9fe-487d-80f9-aa3c3f19cef3 {
  margin-left: auto;
margin-right: auto;
max-width: 1200px;
}

#s-381a6448-8788-45a0-8248-b8395c910b77 {
  min-height: 20px;
}








#s-381a6448-8788-45a0-8248-b8395c910b77 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-381a6448-8788-45a0-8248-b8395c910b77.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-36a57c89-e401-4690-aca0-eee2dc436b76 {
  margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(254, 136, 26, 1);
border-style: solid;
max-width: 1200px;
text-align: center;
}

#s-36a57c89-e401-4690-aca0-eee2dc436b76 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  line-height: 2em;
  
  
}



#s-301a6386-b397-4990-a4e2-4159bb73211b {
  min-height: 50px;
}








#s-301a6386-b397-4990-a4e2-4159bb73211b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-301a6386-b397-4990-a4e2-4159bb73211b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7f5d93fb-8d9a-4908-8224-7af59ddb9e21 {
  margin-left: auto;
margin-right: auto;
max-width: 1200px;
}

@media (min-width: 0px) {
[id="s-7f5d93fb-8d9a-4908-8224-7af59ddb9e21"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7f5d93fb-8d9a-4908-8224-7af59ddb9e21"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-7f5d93fb-8d9a-4908-8224-7af59ddb9e21"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-7f5d93fb-8d9a-4908-8224-7af59ddb9e21"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-954e0618-c263-49ac-b3b0-7c1671cf0a35 {
  text-align: center;
}







  #s-954e0618-c263-49ac-b3b0-7c1671cf0a35 img.shogun-image {
    

    
    
    
  }


#s-954e0618-c263-49ac-b3b0-7c1671cf0a35 .shogun-image-content {
  
    align-items: center;
  
}

#s-8a82f1a2-efa3-4e9a-ab96-90f89e771be1 {
  text-align: center;
}







  #s-8a82f1a2-efa3-4e9a-ab96-90f89e771be1 img.shogun-image {
    

    
    
    
  }


#s-8a82f1a2-efa3-4e9a-ab96-90f89e771be1 .shogun-image-content {
  
    align-items: center;
  
}

#s-9bc883ff-631a-47c7-8236-ad9df0eba935 {
  text-align: center;
}







  #s-9bc883ff-631a-47c7-8236-ad9df0eba935 img.shogun-image {
    

    
    
    
  }


#s-9bc883ff-631a-47c7-8236-ad9df0eba935 .shogun-image-content {
  
    align-items: center;
  
}

#s-c7ee2e2d-0f49-41e5-bbd4-7c66d5db042c {
  min-height: 20px;
}
@media (min-width: 768px) and (max-width: 991px){#s-c7ee2e2d-0f49-41e5-bbd4-7c66d5db042c {
  display: none;
}
#s-c7ee2e2d-0f49-41e5-bbd4-7c66d5db042c, #wrap-s-c7ee2e2d-0f49-41e5-bbd4-7c66d5db042c { display: none !important; }}@media (max-width: 767px){#s-c7ee2e2d-0f49-41e5-bbd4-7c66d5db042c {
  display: none;
}
#s-c7ee2e2d-0f49-41e5-bbd4-7c66d5db042c, #wrap-s-c7ee2e2d-0f49-41e5-bbd4-7c66d5db042c { display: none !important; }}







#s-c7ee2e2d-0f49-41e5-bbd4-7c66d5db042c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c7ee2e2d-0f49-41e5-bbd4-7c66d5db042c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e237b9cd-5d0d-4a06-8324-7d8d6af19e97 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(254, 136, 26, 1);
border-style: solid;
max-width: 1200px;
text-align: center;
}

#s-e237b9cd-5d0d-4a06-8324-7d8d6af19e97 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  line-height: 2em;
  
  
}



#s-55a4e508-a6df-492c-9095-b69eaf484679 {
  margin-left: auto;
margin-right: auto;
max-width: 1200px;
}
@media (min-width: 768px) and (max-width: 991px){#s-55a4e508-a6df-492c-9095-b69eaf484679 {
  display: none;
}
#s-55a4e508-a6df-492c-9095-b69eaf484679, #wrap-s-55a4e508-a6df-492c-9095-b69eaf484679 { display: none !important; }}@media (max-width: 767px){#s-55a4e508-a6df-492c-9095-b69eaf484679 {
  display: none;
}
#s-55a4e508-a6df-492c-9095-b69eaf484679, #wrap-s-55a4e508-a6df-492c-9095-b69eaf484679 { display: none !important; }}
@media (min-width: 0px) {
[id="s-55a4e508-a6df-492c-9095-b69eaf484679"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-55a4e508-a6df-492c-9095-b69eaf484679"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-55a4e508-a6df-492c-9095-b69eaf484679"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-55a4e508-a6df-492c-9095-b69eaf484679"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-f5af39e1-1f00-4af9-acb5-cc3094387dd5 {
  text-align: center;
}







  #s-f5af39e1-1f00-4af9-acb5-cc3094387dd5 img.shogun-image {
    

    
    
    
  }


#s-f5af39e1-1f00-4af9-acb5-cc3094387dd5 .shogun-image-content {
  
    align-items: center;
  
}

#s-81a48877-4d19-4115-8cd3-ed8369f6271f {
  text-align: center;
}







  #s-81a48877-4d19-4115-8cd3-ed8369f6271f img.shogun-image {
    

    
    
    
  }


#s-81a48877-4d19-4115-8cd3-ed8369f6271f .shogun-image-content {
  
    align-items: center;
  
}

#s-6a8179b7-8474-46fa-ae8e-b5946a3e3008 {
  text-align: center;
}







  #s-6a8179b7-8474-46fa-ae8e-b5946a3e3008 img.shogun-image {
    

    
    
    
  }


#s-6a8179b7-8474-46fa-ae8e-b5946a3e3008 .shogun-image-content {
  
    align-items: center;
  
}

#s-f29039a3-2d00-4c25-8bc7-ce74858b5ba0 {
  margin-top: 0px;
margin-bottom: 0px;
}

#s-2648ca1e-2b97-4d9e-b7a0-8646a1e78c01 {
  margin-left: auto;
margin-right: auto;
max-width: 1200px;
}
@media (min-width: 768px) and (max-width: 991px){#s-2648ca1e-2b97-4d9e-b7a0-8646a1e78c01 {
  display: none;
}
#s-2648ca1e-2b97-4d9e-b7a0-8646a1e78c01, #wrap-s-2648ca1e-2b97-4d9e-b7a0-8646a1e78c01 { display: none !important; }}@media (max-width: 767px){#s-2648ca1e-2b97-4d9e-b7a0-8646a1e78c01 {
  display: none;
}
#s-2648ca1e-2b97-4d9e-b7a0-8646a1e78c01, #wrap-s-2648ca1e-2b97-4d9e-b7a0-8646a1e78c01 { display: none !important; }}
@media (min-width: 0px) {
[id="s-2648ca1e-2b97-4d9e-b7a0-8646a1e78c01"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2648ca1e-2b97-4d9e-b7a0-8646a1e78c01"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-2648ca1e-2b97-4d9e-b7a0-8646a1e78c01"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-2648ca1e-2b97-4d9e-b7a0-8646a1e78c01"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-e54ab9db-91bd-4d10-9e28-c99258e1c779 {
  text-align: center;
}







  #s-e54ab9db-91bd-4d10-9e28-c99258e1c779 img.shogun-image {
    

    
    
    
  }


#s-e54ab9db-91bd-4d10-9e28-c99258e1c779 .shogun-image-content {
  
    align-items: center;
  
}

#s-73d361d1-21f2-4cf1-aba0-a2f7b9f80ee5 {
  text-align: center;
}







  #s-73d361d1-21f2-4cf1-aba0-a2f7b9f80ee5 img.shogun-image {
    

    
    
    
  }


#s-73d361d1-21f2-4cf1-aba0-a2f7b9f80ee5 .shogun-image-content {
  
    align-items: center;
  
}

#s-492ac7e1-e91e-462a-81b9-9712848d979d {
  text-align: center;
}







  #s-492ac7e1-e91e-462a-81b9-9712848d979d img.shogun-image {
    

    
    
    
  }


#s-492ac7e1-e91e-462a-81b9-9712848d979d .shogun-image-content {
  
    align-items: center;
  
}

#s-f9f20828-6b6e-4052-916f-59efad5c5494 {
  border-style: solid;
margin-top: 15px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 5px;
background-color: rgba(254, 136, 26, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-f9f20828-6b6e-4052-916f-59efad5c5494:hover {background-color: rgba(253, 158, 66, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-f9f20828-6b6e-4052-916f-59efad5c5494:active {background-color: rgba(253, 158, 66, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-f9f20828-6b6e-4052-916f-59efad5c5494 {
  display: none;
}
#s-f9f20828-6b6e-4052-916f-59efad5c5494, #wrap-s-f9f20828-6b6e-4052-916f-59efad5c5494 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f9f20828-6b6e-4052-916f-59efad5c5494 {
  display: none;
}
#s-f9f20828-6b6e-4052-916f-59efad5c5494, #wrap-s-f9f20828-6b6e-4052-916f-59efad5c5494 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f9f20828-6b6e-4052-916f-59efad5c5494 {
  display: none;
}
#s-f9f20828-6b6e-4052-916f-59efad5c5494, #wrap-s-f9f20828-6b6e-4052-916f-59efad5c5494 { display: none !important; }}

  #s-f9f20828-6b6e-4052-916f-59efad5c5494-root {
    text-align: center;
  }


#s-f9f20828-6b6e-4052-916f-59efad5c5494.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-f9f20828-6b6e-4052-916f-59efad5c5494-root {
    text-align: center;
  }


#s-f9f20828-6b6e-4052-916f-59efad5c5494.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f9f20828-6b6e-4052-916f-59efad5c5494-root {
    text-align: center;
  }


#s-f9f20828-6b6e-4052-916f-59efad5c5494.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f9f20828-6b6e-4052-916f-59efad5c5494-root {
    text-align: center;
  }


#s-f9f20828-6b6e-4052-916f-59efad5c5494.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-f9f20828-6b6e-4052-916f-59efad5c5494-root {
    text-align: center;
  }


#s-f9f20828-6b6e-4052-916f-59efad5c5494.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  
  display:  inline-block ;
}
}
#s-fde83cd2-9c84-4706-ac98-60c6f3353876 {
  min-height: 20px;
}








#s-fde83cd2-9c84-4706-ac98-60c6f3353876 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fde83cd2-9c84-4706-ac98-60c6f3353876.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-10527a48-2881-4888-b516-18aebd9b0a07 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(254, 136, 26, 1);
border-style: solid;
max-width: 1200px;
text-align: center;
}

#s-10527a48-2881-4888-b516-18aebd9b0a07 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  line-height: 2em;
  
  
}



#s-9fdfbe65-74ac-4263-8aa3-e3c45f57555c {
  margin-left: auto;
margin-right: auto;
max-width: 1200px;
}

@media (min-width: 0px) {
[id="s-9fdfbe65-74ac-4263-8aa3-e3c45f57555c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9fdfbe65-74ac-4263-8aa3-e3c45f57555c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-9fdfbe65-74ac-4263-8aa3-e3c45f57555c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-9fdfbe65-74ac-4263-8aa3-e3c45f57555c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-936d6513-2ecf-4611-bdb0-9fc4082d5853 {
  text-align: center;
}







  #s-936d6513-2ecf-4611-bdb0-9fc4082d5853 img.shogun-image {
    

    
    
    
  }


#s-936d6513-2ecf-4611-bdb0-9fc4082d5853 .shogun-image-content {
  
    align-items: center;
  
}

#s-b5cd22ee-bfdb-4e86-a130-ac6805a8a78d {
  margin-top: 9px;
text-align: center;
}







  #s-b5cd22ee-bfdb-4e86-a130-ac6805a8a78d img.shogun-image {
    

    
    
    
  }


#s-b5cd22ee-bfdb-4e86-a130-ac6805a8a78d .shogun-image-content {
  
    align-items: center;
  
}

#s-69fd68af-2ffb-4053-86ed-8cee3ab7c8b0 {
  border-style: solid;
margin-top: 3px;
margin-bottom: 3px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 5px;
background-color: rgba(254, 136, 26, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-69fd68af-2ffb-4053-86ed-8cee3ab7c8b0:hover {background-color: rgba(253, 158, 66, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-69fd68af-2ffb-4053-86ed-8cee3ab7c8b0:active {background-color: rgba(253, 158, 66, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-69fd68af-2ffb-4053-86ed-8cee3ab7c8b0-root {
    text-align: center;
  }


#s-69fd68af-2ffb-4053-86ed-8cee3ab7c8b0.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-69fd68af-2ffb-4053-86ed-8cee3ab7c8b0-root {
    text-align: center;
  }


#s-69fd68af-2ffb-4053-86ed-8cee3ab7c8b0.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-69fd68af-2ffb-4053-86ed-8cee3ab7c8b0-root {
    text-align: center;
  }


#s-69fd68af-2ffb-4053-86ed-8cee3ab7c8b0.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-69fd68af-2ffb-4053-86ed-8cee3ab7c8b0-root {
    text-align: center;
  }


#s-69fd68af-2ffb-4053-86ed-8cee3ab7c8b0.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-69fd68af-2ffb-4053-86ed-8cee3ab7c8b0-root {
    text-align: center;
  }


#s-69fd68af-2ffb-4053-86ed-8cee3ab7c8b0.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-59558233-7767-4de3-8786-309629e31158 {
  text-align: center;
}







  #s-59558233-7767-4de3-8786-309629e31158 img.shogun-image {
    

    
    
    
  }


#s-59558233-7767-4de3-8786-309629e31158 .shogun-image-content {
  
    align-items: center;
  
}

#s-dc7d6f1e-c06c-49f9-b64c-370c690d9c59 {
  margin-top: 26px;
margin-bottom: 17px;
padding-top: 1px;
padding-bottom: 1px;
text-align: center;
}







  #s-dc7d6f1e-c06c-49f9-b64c-370c690d9c59 img.shogun-image {
    

    
    
    
  }


#s-dc7d6f1e-c06c-49f9-b64c-370c690d9c59 .shogun-image-content {
  
    align-items: center;
  
}

#s-61e57a72-6bb5-4002-99af-f509178ca7c4 {
  border-style: solid;
margin-top: -1px;
margin-bottom: -1px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 5px;
background-color: rgba(254, 136, 26, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-61e57a72-6bb5-4002-99af-f509178ca7c4:hover {background-color: rgba(253, 158, 66, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-61e57a72-6bb5-4002-99af-f509178ca7c4:active {background-color: rgba(253, 158, 66, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-61e57a72-6bb5-4002-99af-f509178ca7c4-root {
    text-align: center;
  }


#s-61e57a72-6bb5-4002-99af-f509178ca7c4.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-61e57a72-6bb5-4002-99af-f509178ca7c4-root {
    text-align: center;
  }


#s-61e57a72-6bb5-4002-99af-f509178ca7c4.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-61e57a72-6bb5-4002-99af-f509178ca7c4-root {
    text-align: center;
  }


#s-61e57a72-6bb5-4002-99af-f509178ca7c4.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-61e57a72-6bb5-4002-99af-f509178ca7c4-root {
    text-align: center;
  }


#s-61e57a72-6bb5-4002-99af-f509178ca7c4.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-61e57a72-6bb5-4002-99af-f509178ca7c4-root {
    text-align: center;
  }


#s-61e57a72-6bb5-4002-99af-f509178ca7c4.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-e8536774-3e84-4c3b-a9cd-134b44c1304b {
  text-align: center;
}







  #s-e8536774-3e84-4c3b-a9cd-134b44c1304b img.shogun-image {
    

    
    
    
  }


#s-e8536774-3e84-4c3b-a9cd-134b44c1304b .shogun-image-content {
  
    align-items: center;
  
}

#s-ce5bfade-2c33-436f-a4bc-b6d969f86a4c {
  margin-top: 10px;
text-align: center;
}







  #s-ce5bfade-2c33-436f-a4bc-b6d969f86a4c img.shogun-image {
    

    
    
    
  }


#s-ce5bfade-2c33-436f-a4bc-b6d969f86a4c .shogun-image-content {
  
    align-items: center;
  
}

#s-a3ce7e14-c1c5-4335-a1ac-5bb9d4b7b596 {
  border-style: solid;
margin-top: 3px;
margin-bottom: 3px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 5px;
background-color: rgba(247, 135, 30, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-a3ce7e14-c1c5-4335-a1ac-5bb9d4b7b596:hover {background-color: rgba(253, 158, 66, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-a3ce7e14-c1c5-4335-a1ac-5bb9d4b7b596:active {background-color: rgba(253, 158, 66, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-a3ce7e14-c1c5-4335-a1ac-5bb9d4b7b596-root {
    text-align: center;
  }


#s-a3ce7e14-c1c5-4335-a1ac-5bb9d4b7b596.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-a3ce7e14-c1c5-4335-a1ac-5bb9d4b7b596-root {
    text-align: center;
  }


#s-a3ce7e14-c1c5-4335-a1ac-5bb9d4b7b596.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a3ce7e14-c1c5-4335-a1ac-5bb9d4b7b596-root {
    text-align: center;
  }


#s-a3ce7e14-c1c5-4335-a1ac-5bb9d4b7b596.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a3ce7e14-c1c5-4335-a1ac-5bb9d4b7b596-root {
    text-align: center;
  }


#s-a3ce7e14-c1c5-4335-a1ac-5bb9d4b7b596.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-a3ce7e14-c1c5-4335-a1ac-5bb9d4b7b596-root {
    text-align: center;
  }


#s-a3ce7e14-c1c5-4335-a1ac-5bb9d4b7b596.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-e69216ed-9a58-4db7-b1fa-1ec541fda392 {
  min-height: 20px;
}








#s-e69216ed-9a58-4db7-b1fa-1ec541fda392 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e69216ed-9a58-4db7-b1fa-1ec541fda392.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-17e060ea-9cb2-496f-a74d-530dcda46803 {
  box-shadow:1px 1px 1px 1px rgba(255, 255, 255, 1);
margin-top: 0px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(236, 109, 17, 1);
border-style: solid;
border-radius: 2px;
max-width: 1200px;
text-align: center;
background-color: rgba(247, 247, 247, 1);
}

#s-17e060ea-9cb2-496f-a74d-530dcda46803 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 35px;
  line-height: 2em;
  
  
}



#s-44f11700-5198-445c-9cad-3b643c0d8c21 {
  box-shadow:2px 3px 4px 2px rgba(0, 0, 0, 0.46);
border-style: solid;
margin-top: 16px;
margin-bottom: 24px;
padding-top: 17px;
padding-left: 20px;
padding-bottom: 17px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 20px;
background-color: rgba(240, 105, 10, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
letter-spacing: 5px;
opacity: 1;
}
#s-44f11700-5198-445c-9cad-3b643c0d8c21:hover {background-color: rgba(243, 159, 100, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-44f11700-5198-445c-9cad-3b643c0d8c21:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-44f11700-5198-445c-9cad-3b643c0d8c21 {
  line-height: 1em;
}
}

  #s-44f11700-5198-445c-9cad-3b643c0d8c21-root {
    text-align: center;
  }


#s-44f11700-5198-445c-9cad-3b643c0d8c21.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 50px;
  font-weight: 300;
  font-style: italic;
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-44f11700-5198-445c-9cad-3b643c0d8c21-root {
    text-align: center;
  }


#s-44f11700-5198-445c-9cad-3b643c0d8c21.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 50px;
  font-weight: 300;
  font-style: italic;
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-44f11700-5198-445c-9cad-3b643c0d8c21-root {
    text-align: center;
  }


#s-44f11700-5198-445c-9cad-3b643c0d8c21.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 50px;
  font-weight: 300;
  font-style: italic;
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-44f11700-5198-445c-9cad-3b643c0d8c21-root {
    text-align: center;
  }


#s-44f11700-5198-445c-9cad-3b643c0d8c21.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 50px;
  font-weight: 300;
  font-style: italic;
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-44f11700-5198-445c-9cad-3b643c0d8c21-root {
    text-align: center;
  }


#s-44f11700-5198-445c-9cad-3b643c0d8c21.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 33px;
  font-weight: 300;
  font-style: italic;
  font-family: Open Sans;
  display:  inline-block ;
}
}
#s-657e8f9f-b7b3-44eb-b7a1-ae680f7470cc {
  margin-top: 0px;
margin-bottom: 0px;
min-height: 50px;
}








#s-657e8f9f-b7b3-44eb-b7a1-ae680f7470cc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-657e8f9f-b7b3-44eb-b7a1-ae680f7470cc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a63ee5b3-4d9a-443c-8ba7-9795b5115c16 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-3f1db36b-d73a-4990-9bbb-3bd8b102ad87 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(254, 136, 26, 1);
border-style: solid;
max-width: 1200px;
text-align: center;
}

#s-3f1db36b-d73a-4990-9bbb-3bd8b102ad87 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  line-height: 2em;
  
  
}



#s-8c5fe149-adb9-4756-890d-100161495d4a {
  margin-left: auto;
margin-right: auto;
max-width: 1200px;
}
@media (min-width: 768px) and (max-width: 991px){#s-8c5fe149-adb9-4756-890d-100161495d4a {
  display: none;
}
#s-8c5fe149-adb9-4756-890d-100161495d4a, #wrap-s-8c5fe149-adb9-4756-890d-100161495d4a { display: none !important; }}@media (max-width: 767px){#s-8c5fe149-adb9-4756-890d-100161495d4a {
  display: none;
}
#s-8c5fe149-adb9-4756-890d-100161495d4a, #wrap-s-8c5fe149-adb9-4756-890d-100161495d4a { display: none !important; }}
@media (min-width: 0px) {
[id="s-8c5fe149-adb9-4756-890d-100161495d4a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-8c5fe149-adb9-4756-890d-100161495d4a"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 16.666666666666668px);
}

}

@media (min-width: 992px) {
[id="s-8c5fe149-adb9-4756-890d-100161495d4a"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 16.666666666666668px);
}

}

@media (min-width: 1200px) {
[id="s-8c5fe149-adb9-4756-890d-100161495d4a"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 16.666666666666668px);
}

}

#s-696d6e15-104e-4c62-b1c4-aefc0b08d052 {
  box-shadow:1px 1px 1px 1px rgba(0, 157, 219, 0);
min-height: 50px;
background-color: rgba(0, 157, 219, 1);
}








#s-696d6e15-104e-4c62-b1c4-aefc0b08d052 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-696d6e15-104e-4c62-b1c4-aefc0b08d052.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-33dd4cde-4c99-4642-b90c-46704c2b3d51 {
  margin-left: 5px;
margin-right: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-33dd4cde-4c99-4642-b90c-46704c2b3d51 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  
}



#s-5e5e6ed1-635a-4548-b02e-919c5428ecf5 {
  text-align: center;
}







  #s-5e5e6ed1-635a-4548-b02e-919c5428ecf5 img.shogun-image {
    

    
    
    
  }


#s-5e5e6ed1-635a-4548-b02e-919c5428ecf5 .shogun-image-content {
  
    align-items: center;
  
}

#s-4d9e5ad1-b0db-437a-a6b3-5087604f4d59 {
  box-shadow:1px 1px 1px 1px rgba(0, 157, 219, 0);
min-height: 50px;
background-color: rgba(0, 157, 219, 1);
}








#s-4d9e5ad1-b0db-437a-a6b3-5087604f4d59 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4d9e5ad1-b0db-437a-a6b3-5087604f4d59.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c53c235f-f676-4eba-91fa-d4534afa78c9 {
  margin-left: 5px;
margin-right: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c53c235f-f676-4eba-91fa-d4534afa78c9 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  
}



#s-22599e1b-377a-41af-a6f1-32020b399a6e {
  text-align: center;
}







  #s-22599e1b-377a-41af-a6f1-32020b399a6e img.shogun-image {
    

    
    
    
  }


#s-22599e1b-377a-41af-a6f1-32020b399a6e .shogun-image-content {
  
    align-items: center;
  
}

#s-1b53adbe-a0cb-4cd4-a60d-2af21833335b {
  box-shadow:1px 1px 1px 1px rgba(0, 157, 219, 0);
min-height: 50px;
background-color: rgba(0, 157, 219, 1);
}








#s-1b53adbe-a0cb-4cd4-a60d-2af21833335b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1b53adbe-a0cb-4cd4-a60d-2af21833335b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4e669a7c-c37a-48bf-aebe-0e7d6f4e5c31 {
  margin-left: 5px;
margin-right: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4e669a7c-c37a-48bf-aebe-0e7d6f4e5c31 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  
}



#s-3afd90f2-1eb0-4485-81b8-75aebf876079 {
  text-align: center;
}







  #s-3afd90f2-1eb0-4485-81b8-75aebf876079 img.shogun-image {
    

    
    
    
  }


#s-3afd90f2-1eb0-4485-81b8-75aebf876079 .shogun-image-content {
  
    align-items: center;
  
}

.shg-hr-wrapper {
  padding: 30px 0;
}

.shg-hr-wrapper hr {
  margin: 0;
  border: 0;
  width: 100%;
}

#s-1d2a8578-2816-4c29-ad21-87aec0648bad {
  margin-top: -6px;
margin-bottom: -6px;
}
@media (min-width: 768px) and (max-width: 991px){#s-1d2a8578-2816-4c29-ad21-87aec0648bad {
  display: none;
}
#s-1d2a8578-2816-4c29-ad21-87aec0648bad, #wrap-s-1d2a8578-2816-4c29-ad21-87aec0648bad { display: none !important; }}@media (max-width: 767px){#s-1d2a8578-2816-4c29-ad21-87aec0648bad {
  display: none;
}
#s-1d2a8578-2816-4c29-ad21-87aec0648bad, #wrap-s-1d2a8578-2816-4c29-ad21-87aec0648bad { display: none !important; }}
#s-1d2a8578-2816-4c29-ad21-87aec0648bad hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

#s-3c2f8a0b-98c9-4d13-bc31-53cfd3db4458 {
  margin-left: auto;
margin-right: auto;
max-width: 1200px;
}
@media (min-width: 768px) and (max-width: 991px){#s-3c2f8a0b-98c9-4d13-bc31-53cfd3db4458 {
  display: none;
}
#s-3c2f8a0b-98c9-4d13-bc31-53cfd3db4458, #wrap-s-3c2f8a0b-98c9-4d13-bc31-53cfd3db4458 { display: none !important; }}@media (max-width: 767px){#s-3c2f8a0b-98c9-4d13-bc31-53cfd3db4458 {
  display: none;
}
#s-3c2f8a0b-98c9-4d13-bc31-53cfd3db4458, #wrap-s-3c2f8a0b-98c9-4d13-bc31-53cfd3db4458 { display: none !important; }}
@media (min-width: 0px) {
[id="s-3c2f8a0b-98c9-4d13-bc31-53cfd3db4458"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-3c2f8a0b-98c9-4d13-bc31-53cfd3db4458"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3c2f8a0b-98c9-4d13-bc31-53cfd3db4458"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3c2f8a0b-98c9-4d13-bc31-53cfd3db4458"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

}

#s-108b4f7b-540e-43d0-8849-d43117937e2d {
  box-shadow:1px 1px 1px 1px rgba(0, 157, 219, 0);
min-height: 50px;
background-color: rgba(0, 157, 219, 1);
}








#s-108b4f7b-540e-43d0-8849-d43117937e2d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-108b4f7b-540e-43d0-8849-d43117937e2d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-69863378-b918-4807-af73-5ad3346f4a4f {
  margin-left: 5px;
margin-right: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-69863378-b918-4807-af73-5ad3346f4a4f .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  
}



#s-6faba09e-0fe1-4aff-bce5-c128bab0aaa1 {
  text-align: center;
}







  #s-6faba09e-0fe1-4aff-bce5-c128bab0aaa1 img.shogun-image {
    

    
    
    
  }


#s-6faba09e-0fe1-4aff-bce5-c128bab0aaa1 .shogun-image-content {
  
    align-items: center;
  
}

#s-d3c9917b-47f6-475f-9161-5e6d0c55b9d2 {
  box-shadow:1px 1px 1px 1px rgba(0, 157, 219, 0);
min-height: 50px;
background-color: rgba(0, 157, 219, 1);
}








#s-d3c9917b-47f6-475f-9161-5e6d0c55b9d2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d3c9917b-47f6-475f-9161-5e6d0c55b9d2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a9ec2fb0-69e6-4a59-87b1-6dcc19cbbd29 {
  margin-left: 5px;
margin-right: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a9ec2fb0-69e6-4a59-87b1-6dcc19cbbd29 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  
}



#s-f41b0d34-7bf7-482f-adf8-6fd338a63f80 {
  text-align: center;
}







  #s-f41b0d34-7bf7-482f-adf8-6fd338a63f80 img.shogun-image {
    

    
    
    
  }


#s-f41b0d34-7bf7-482f-adf8-6fd338a63f80 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 1200px){#s-696f00ca-bf15-4feb-9a7e-ad96ca3a4751 {
  display: none;
}
#s-696f00ca-bf15-4feb-9a7e-ad96ca3a4751, #wrap-s-696f00ca-bf15-4feb-9a7e-ad96ca3a4751 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-696f00ca-bf15-4feb-9a7e-ad96ca3a4751 {
  display: none;
}
#s-696f00ca-bf15-4feb-9a7e-ad96ca3a4751, #wrap-s-696f00ca-bf15-4feb-9a7e-ad96ca3a4751 { display: none !important; }}@media (max-width: 767px){#s-696f00ca-bf15-4feb-9a7e-ad96ca3a4751 {
  display: none;
}
#s-696f00ca-bf15-4feb-9a7e-ad96ca3a4751, #wrap-s-696f00ca-bf15-4feb-9a7e-ad96ca3a4751 { display: none !important; }}
@media (min-width: 0px) {
[id="s-696f00ca-bf15-4feb-9a7e-ad96ca3a4751"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-696f00ca-bf15-4feb-9a7e-ad96ca3a4751"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-696f00ca-bf15-4feb-9a7e-ad96ca3a4751"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-696f00ca-bf15-4feb-9a7e-ad96ca3a4751"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-0a6907d9-0eda-4964-878f-53e1967b82f0 {
  padding-top: 15px;
padding-bottom: 5px;
background-color: rgba(0, 157, 219, 1);
}

#s-6cfa596a-a2c2-482b-912b-8a25ece4e07c {
  padding-top: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-6cfa596a-a2c2-482b-912b-8a25ece4e07c {
  display: none;
}
#s-6cfa596a-a2c2-482b-912b-8a25ece4e07c, #wrap-s-6cfa596a-a2c2-482b-912b-8a25ece4e07c { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6cfa596a-a2c2-482b-912b-8a25ece4e07c {
  display: none;
}
#s-6cfa596a-a2c2-482b-912b-8a25ece4e07c, #wrap-s-6cfa596a-a2c2-482b-912b-8a25ece4e07c { display: none !important; }}@media (max-width: 767px){#s-6cfa596a-a2c2-482b-912b-8a25ece4e07c {
  display: none;
}
#s-6cfa596a-a2c2-482b-912b-8a25ece4e07c, #wrap-s-6cfa596a-a2c2-482b-912b-8a25ece4e07c { display: none !important; }}






  #s-6cfa596a-a2c2-482b-912b-8a25ece4e07c img.shogun-image {
    

    
    
    
  }


#s-6cfa596a-a2c2-482b-912b-8a25ece4e07c .shogun-image-content {
  
    align-items: center;
  
}

#s-dc24f720-db82-4a05-a0f2-1fb9a251f48b {
  padding-top: 15px;
padding-bottom: 5px;
background-color: rgba(0, 157, 219, 1);
}

#s-c7337d2a-0386-49af-b148-cd4eeb8d8ed7 {
  text-align: center;
}
@media (min-width: 1200px){#s-c7337d2a-0386-49af-b148-cd4eeb8d8ed7 {
  display: none;
}
#s-c7337d2a-0386-49af-b148-cd4eeb8d8ed7, #wrap-s-c7337d2a-0386-49af-b148-cd4eeb8d8ed7 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c7337d2a-0386-49af-b148-cd4eeb8d8ed7 {
  display: none;
}
#s-c7337d2a-0386-49af-b148-cd4eeb8d8ed7, #wrap-s-c7337d2a-0386-49af-b148-cd4eeb8d8ed7 { display: none !important; }}@media (max-width: 767px){#s-c7337d2a-0386-49af-b148-cd4eeb8d8ed7 {
  display: none;
}
#s-c7337d2a-0386-49af-b148-cd4eeb8d8ed7, #wrap-s-c7337d2a-0386-49af-b148-cd4eeb8d8ed7 { display: none !important; }}






  #s-c7337d2a-0386-49af-b148-cd4eeb8d8ed7 img.shogun-image {
    

    
    
    
  }


#s-c7337d2a-0386-49af-b148-cd4eeb8d8ed7 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 1200px){#s-7d8c271a-48b5-4c80-8259-782c37c6565d {
  display: none;
}
#s-7d8c271a-48b5-4c80-8259-782c37c6565d, #wrap-s-7d8c271a-48b5-4c80-8259-782c37c6565d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7d8c271a-48b5-4c80-8259-782c37c6565d {
  display: none;
}
#s-7d8c271a-48b5-4c80-8259-782c37c6565d, #wrap-s-7d8c271a-48b5-4c80-8259-782c37c6565d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7d8c271a-48b5-4c80-8259-782c37c6565d {
  display: none;
}
#s-7d8c271a-48b5-4c80-8259-782c37c6565d, #wrap-s-7d8c271a-48b5-4c80-8259-782c37c6565d { display: none !important; }}
@media (min-width: 0px) {
[id="s-7d8c271a-48b5-4c80-8259-782c37c6565d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7d8c271a-48b5-4c80-8259-782c37c6565d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7d8c271a-48b5-4c80-8259-782c37c6565d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7d8c271a-48b5-4c80-8259-782c37c6565d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-da7c73b4-6660-4e2f-9b3d-04df1c600b0e {
  box-shadow:1px 1px 1px 1px rgba(0, 157, 219, 0);
min-height: 50px;
background-color: rgba(0, 157, 219, 1);
}
@media (min-width: 1200px){#s-da7c73b4-6660-4e2f-9b3d-04df1c600b0e {
  display: none;
}
#s-da7c73b4-6660-4e2f-9b3d-04df1c600b0e, #wrap-s-da7c73b4-6660-4e2f-9b3d-04df1c600b0e { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-da7c73b4-6660-4e2f-9b3d-04df1c600b0e {
  display: none;
}
#s-da7c73b4-6660-4e2f-9b3d-04df1c600b0e, #wrap-s-da7c73b4-6660-4e2f-9b3d-04df1c600b0e { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-da7c73b4-6660-4e2f-9b3d-04df1c600b0e {
  display: none;
}
#s-da7c73b4-6660-4e2f-9b3d-04df1c600b0e, #wrap-s-da7c73b4-6660-4e2f-9b3d-04df1c600b0e { display: none !important; }}@media (max-width: 767px){#s-da7c73b4-6660-4e2f-9b3d-04df1c600b0e {
  
}
}







#s-da7c73b4-6660-4e2f-9b3d-04df1c600b0e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-da7c73b4-6660-4e2f-9b3d-04df1c600b0e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b5c47c56-69dd-413b-b777-2bcd3629fc31 {
  margin-top: 1px;
margin-left: 5px;
margin-right: 5px;
padding-top: 15px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-b5c47c56-69dd-413b-b777-2bcd3629fc31 {
  display: none;
}
#s-b5c47c56-69dd-413b-b777-2bcd3629fc31, #wrap-s-b5c47c56-69dd-413b-b777-2bcd3629fc31 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b5c47c56-69dd-413b-b777-2bcd3629fc31 {
  display: none;
}
#s-b5c47c56-69dd-413b-b777-2bcd3629fc31, #wrap-s-b5c47c56-69dd-413b-b777-2bcd3629fc31 { display: none !important; }}
#s-b5c47c56-69dd-413b-b777-2bcd3629fc31 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  
}



#s-c1858b2f-cf4e-4f3a-9311-dadc89dcd838 {
  text-align: center;
}
@media (min-width: 1200px){#s-c1858b2f-cf4e-4f3a-9311-dadc89dcd838 {
  display: none;
}
#s-c1858b2f-cf4e-4f3a-9311-dadc89dcd838, #wrap-s-c1858b2f-cf4e-4f3a-9311-dadc89dcd838 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c1858b2f-cf4e-4f3a-9311-dadc89dcd838 {
  display: none;
}
#s-c1858b2f-cf4e-4f3a-9311-dadc89dcd838, #wrap-s-c1858b2f-cf4e-4f3a-9311-dadc89dcd838 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c1858b2f-cf4e-4f3a-9311-dadc89dcd838 {
  display: none;
}
#s-c1858b2f-cf4e-4f3a-9311-dadc89dcd838, #wrap-s-c1858b2f-cf4e-4f3a-9311-dadc89dcd838 { display: none !important; }}






  #s-c1858b2f-cf4e-4f3a-9311-dadc89dcd838 img.shogun-image {
    

    
    
    
  }


#s-c1858b2f-cf4e-4f3a-9311-dadc89dcd838 .shogun-image-content {
  
    align-items: center;
  
}

#s-885a450b-52a1-48b7-93cb-53f55a0988b1 {
  margin-top: -6px;
margin-bottom: -6px;
}
@media (min-width: 1200px){#s-885a450b-52a1-48b7-93cb-53f55a0988b1 {
  display: none;
}
#s-885a450b-52a1-48b7-93cb-53f55a0988b1, #wrap-s-885a450b-52a1-48b7-93cb-53f55a0988b1 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-885a450b-52a1-48b7-93cb-53f55a0988b1 {
  display: none;
}
#s-885a450b-52a1-48b7-93cb-53f55a0988b1, #wrap-s-885a450b-52a1-48b7-93cb-53f55a0988b1 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-885a450b-52a1-48b7-93cb-53f55a0988b1 {
  display: none;
}
#s-885a450b-52a1-48b7-93cb-53f55a0988b1, #wrap-s-885a450b-52a1-48b7-93cb-53f55a0988b1 { display: none !important; }}
#s-885a450b-52a1-48b7-93cb-53f55a0988b1 hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

#s-193db686-f35f-4888-8d76-dd3d7807b6b3 {
  box-shadow:1px 1px 1px 1px rgba(0, 157, 219, 0);
min-height: 50px;
background-color: rgba(0, 157, 219, 1);
}
@media (min-width: 1200px){#s-193db686-f35f-4888-8d76-dd3d7807b6b3 {
  display: none;
}
#s-193db686-f35f-4888-8d76-dd3d7807b6b3, #wrap-s-193db686-f35f-4888-8d76-dd3d7807b6b3 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-193db686-f35f-4888-8d76-dd3d7807b6b3 {
  display: none;
}
#s-193db686-f35f-4888-8d76-dd3d7807b6b3, #wrap-s-193db686-f35f-4888-8d76-dd3d7807b6b3 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-193db686-f35f-4888-8d76-dd3d7807b6b3 {
  display: none;
}
#s-193db686-f35f-4888-8d76-dd3d7807b6b3, #wrap-s-193db686-f35f-4888-8d76-dd3d7807b6b3 { display: none !important; }}







#s-193db686-f35f-4888-8d76-dd3d7807b6b3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-193db686-f35f-4888-8d76-dd3d7807b6b3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c86e821b-eceb-4450-8d44-cb7c4001a8a0 {
  margin-left: 5px;
margin-right: 5px;
padding-top: 15px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-c86e821b-eceb-4450-8d44-cb7c4001a8a0 {
  display: none;
}
#s-c86e821b-eceb-4450-8d44-cb7c4001a8a0, #wrap-s-c86e821b-eceb-4450-8d44-cb7c4001a8a0 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c86e821b-eceb-4450-8d44-cb7c4001a8a0 {
  display: none;
}
#s-c86e821b-eceb-4450-8d44-cb7c4001a8a0, #wrap-s-c86e821b-eceb-4450-8d44-cb7c4001a8a0 { display: none !important; }}
#s-c86e821b-eceb-4450-8d44-cb7c4001a8a0 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  
}



#s-145b11d4-963b-45e0-98bb-584394f4993d {
  text-align: center;
}
@media (min-width: 1200px){#s-145b11d4-963b-45e0-98bb-584394f4993d {
  display: none;
}
#s-145b11d4-963b-45e0-98bb-584394f4993d, #wrap-s-145b11d4-963b-45e0-98bb-584394f4993d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-145b11d4-963b-45e0-98bb-584394f4993d {
  display: none;
}
#s-145b11d4-963b-45e0-98bb-584394f4993d, #wrap-s-145b11d4-963b-45e0-98bb-584394f4993d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-145b11d4-963b-45e0-98bb-584394f4993d {
  display: none;
}
#s-145b11d4-963b-45e0-98bb-584394f4993d, #wrap-s-145b11d4-963b-45e0-98bb-584394f4993d { display: none !important; }}






  #s-145b11d4-963b-45e0-98bb-584394f4993d img.shogun-image {
    

    
    
    
  }


#s-145b11d4-963b-45e0-98bb-584394f4993d .shogun-image-content {
  
    align-items: center;
  
}

#s-d954ee81-36a9-4ec4-b283-1890d90a9bfc {
  margin-top: -6px;
margin-bottom: -6px;
}
@media (min-width: 1200px){#s-d954ee81-36a9-4ec4-b283-1890d90a9bfc {
  display: none;
}
#s-d954ee81-36a9-4ec4-b283-1890d90a9bfc, #wrap-s-d954ee81-36a9-4ec4-b283-1890d90a9bfc { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d954ee81-36a9-4ec4-b283-1890d90a9bfc {
  display: none;
}
#s-d954ee81-36a9-4ec4-b283-1890d90a9bfc, #wrap-s-d954ee81-36a9-4ec4-b283-1890d90a9bfc { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d954ee81-36a9-4ec4-b283-1890d90a9bfc {
  display: none;
}
#s-d954ee81-36a9-4ec4-b283-1890d90a9bfc, #wrap-s-d954ee81-36a9-4ec4-b283-1890d90a9bfc { display: none !important; }}
#s-d954ee81-36a9-4ec4-b283-1890d90a9bfc hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

#s-6ae10e78-01c6-491c-bb95-a211b994c972 {
  box-shadow:1px 1px 1px 1px rgba(0, 157, 219, 0);
min-height: 50px;
background-color: rgba(0, 157, 219, 1);
}
@media (min-width: 1200px){#s-6ae10e78-01c6-491c-bb95-a211b994c972 {
  display: none;
}
#s-6ae10e78-01c6-491c-bb95-a211b994c972, #wrap-s-6ae10e78-01c6-491c-bb95-a211b994c972 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6ae10e78-01c6-491c-bb95-a211b994c972 {
  display: none;
}
#s-6ae10e78-01c6-491c-bb95-a211b994c972, #wrap-s-6ae10e78-01c6-491c-bb95-a211b994c972 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-6ae10e78-01c6-491c-bb95-a211b994c972 {
  display: none;
}
#s-6ae10e78-01c6-491c-bb95-a211b994c972, #wrap-s-6ae10e78-01c6-491c-bb95-a211b994c972 { display: none !important; }}







#s-6ae10e78-01c6-491c-bb95-a211b994c972 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6ae10e78-01c6-491c-bb95-a211b994c972.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-58e41027-1460-4896-86e6-804491d0e0a5 {
  margin-left: 5px;
margin-right: 5px;
padding-top: 15px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-58e41027-1460-4896-86e6-804491d0e0a5 {
  display: none;
}
#s-58e41027-1460-4896-86e6-804491d0e0a5, #wrap-s-58e41027-1460-4896-86e6-804491d0e0a5 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-58e41027-1460-4896-86e6-804491d0e0a5 {
  display: none;
}
#s-58e41027-1460-4896-86e6-804491d0e0a5, #wrap-s-58e41027-1460-4896-86e6-804491d0e0a5 { display: none !important; }}
#s-58e41027-1460-4896-86e6-804491d0e0a5 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  
}



#s-5183d050-c04b-46a3-8b60-18e3deb84635 {
  text-align: center;
}
@media (min-width: 1200px){#s-5183d050-c04b-46a3-8b60-18e3deb84635 {
  display: none;
}
#s-5183d050-c04b-46a3-8b60-18e3deb84635, #wrap-s-5183d050-c04b-46a3-8b60-18e3deb84635 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5183d050-c04b-46a3-8b60-18e3deb84635 {
  display: none;
}
#s-5183d050-c04b-46a3-8b60-18e3deb84635, #wrap-s-5183d050-c04b-46a3-8b60-18e3deb84635 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-5183d050-c04b-46a3-8b60-18e3deb84635 {
  display: none;
}
#s-5183d050-c04b-46a3-8b60-18e3deb84635, #wrap-s-5183d050-c04b-46a3-8b60-18e3deb84635 { display: none !important; }}






  #s-5183d050-c04b-46a3-8b60-18e3deb84635 img.shogun-image {
    

    
    
    
  }


#s-5183d050-c04b-46a3-8b60-18e3deb84635 .shogun-image-content {
  
    align-items: center;
  
}

#s-e8b6ffc8-566a-4f1f-99da-62efdd6e182c {
  min-height: 20px;
}








#s-e8b6ffc8-566a-4f1f-99da-62efdd6e182c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e8b6ffc8-566a-4f1f-99da-62efdd6e182c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e0e396a3-1a3c-4099-8534-8a847507a27e {
  margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(254, 136, 26, 1);
border-style: solid;
max-width: 1200px;
text-align: center;
}

#s-e0e396a3-1a3c-4099-8534-8a847507a27e .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  line-height: 2em;
  
  
}



#s-6ec48efd-6020-4b0e-ac71-e266e5c50ecf {
  min-height: 50px;
}








#s-6ec48efd-6020-4b0e-ac71-e266e5c50ecf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6ec48efd-6020-4b0e-ac71-e266e5c50ecf.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cfb895e1-bd47-4869-bb4e-d31811d97f53 {
  margin-left: auto;
margin-right: auto;
max-width: 1200px;
}

@media (min-width: 0px) {
[id="s-cfb895e1-bd47-4869-bb4e-d31811d97f53"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-cfb895e1-bd47-4869-bb4e-d31811d97f53"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-cfb895e1-bd47-4869-bb4e-d31811d97f53"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-cfb895e1-bd47-4869-bb4e-d31811d97f53"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-8105a649-c93f-46f8-9bee-d9cd055fce0b {
  border-style: solid;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 242, 242, 1);
text-align: center;
}







  #s-8105a649-c93f-46f8-9bee-d9cd055fce0b img.shogun-image {
    

    
    
    
  }


#s-8105a649-c93f-46f8-9bee-d9cd055fce0b .shogun-image-content {
  
    align-items: center;
  
}

#s-584a5276-1f00-40cb-b09d-c26e1f092269 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
background-color: rgba(241, 242, 242, 1);
}

#s-2c986b3a-05cc-4451-837c-7139b0e0aac2 {
  border-style: solid;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 242, 242, 1);
text-align: center;
}







  #s-2c986b3a-05cc-4451-837c-7139b0e0aac2 img.shogun-image {
    

    
    
    
  }


#s-2c986b3a-05cc-4451-837c-7139b0e0aac2 .shogun-image-content {
  
    align-items: center;
  
}

#s-f751d676-96e2-4ff5-98f5-7ccaeb771c4a {
  margin-top: 10px;
margin-bottom: 10px;
background-color: rgba(241, 242, 242, 1);
}

#s-d7a16629-5313-4203-aa2f-8a0612d46479 {
  border-style: solid;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 242, 242, 1);
text-align: center;
}







  #s-d7a16629-5313-4203-aa2f-8a0612d46479 img.shogun-image {
    

    
    
    
  }


#s-d7a16629-5313-4203-aa2f-8a0612d46479 .shogun-image-content {
  
    align-items: center;
  
}

#s-dda843fe-4493-4386-8db0-6114f3dd3e12 {
  margin-top: 10px;
margin-bottom: 10px;
background-color: rgba(241, 242, 242, 1);
}

#s-82a92d3c-29e7-4141-b584-dcd80c28f68c {
  border-style: solid;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 242, 242, 1);
text-align: center;
}







  #s-82a92d3c-29e7-4141-b584-dcd80c28f68c img.shogun-image {
    

    
    
    
  }


#s-82a92d3c-29e7-4141-b584-dcd80c28f68c .shogun-image-content {
  
    align-items: center;
  
}

#s-c0d71c17-99c5-4b5d-bc23-79fec0d86142 {
  margin-top: 10px;
margin-bottom: 10px;
background-color: rgba(241, 242, 242, 1);
}

#s-7817bda6-e2ae-4879-a34a-1567e50ebdd2 {
  border-style: solid;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 242, 242, 1);
text-align: center;
}







  #s-7817bda6-e2ae-4879-a34a-1567e50ebdd2 img.shogun-image {
    

    
    
    
  }


#s-7817bda6-e2ae-4879-a34a-1567e50ebdd2 .shogun-image-content {
  
    align-items: center;
  
}

#s-8bdf3f6a-ba45-44a6-8c30-6b646c447240 {
  margin-top: 10px;
margin-bottom: 10px;
background-color: rgba(241, 242, 242, 1);
}

#s-1ea6ac0d-07e2-45a7-9f77-f2630325f424 {
  border-style: solid;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 242, 242, 1);
text-align: center;
}







  #s-1ea6ac0d-07e2-45a7-9f77-f2630325f424 img.shogun-image {
    

    
    
    
  }


#s-1ea6ac0d-07e2-45a7-9f77-f2630325f424 .shogun-image-content {
  
    align-items: center;
  
}

#s-c72680c5-0b05-4f5d-9896-03af5c950bdf {
  margin-top: 10px;
margin-bottom: 10px;
background-color: rgba(241, 242, 242, 1);
}

#s-677d48bf-89b6-4c7f-b85c-6e06fd0e7c83 {
  min-height: 20px;
}
@media (min-width: 1200px){#s-677d48bf-89b6-4c7f-b85c-6e06fd0e7c83 {
  display: none;
}
#s-677d48bf-89b6-4c7f-b85c-6e06fd0e7c83, #wrap-s-677d48bf-89b6-4c7f-b85c-6e06fd0e7c83 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-677d48bf-89b6-4c7f-b85c-6e06fd0e7c83 {
  display: none;
}
#s-677d48bf-89b6-4c7f-b85c-6e06fd0e7c83, #wrap-s-677d48bf-89b6-4c7f-b85c-6e06fd0e7c83 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-677d48bf-89b6-4c7f-b85c-6e06fd0e7c83 {
  display: none;
}
#s-677d48bf-89b6-4c7f-b85c-6e06fd0e7c83, #wrap-s-677d48bf-89b6-4c7f-b85c-6e06fd0e7c83 { display: none !important; }}







#s-677d48bf-89b6-4c7f-b85c-6e06fd0e7c83 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-677d48bf-89b6-4c7f-b85c-6e06fd0e7c83.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1471a704-7943-4501-a281-609cc04db461 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
max-width: 1200px;
background-color: rgba(255, 130, 32, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-1471a704-7943-4501-a281-609cc04db461 {
  display: none;
}
#s-1471a704-7943-4501-a281-609cc04db461, #wrap-s-1471a704-7943-4501-a281-609cc04db461 { display: none !important; }}@media (max-width: 767px){#s-1471a704-7943-4501-a281-609cc04db461 {
  display: none;
}
#s-1471a704-7943-4501-a281-609cc04db461, #wrap-s-1471a704-7943-4501-a281-609cc04db461 { display: none !important; }}
@media (min-width: 0px) {
[id="s-1471a704-7943-4501-a281-609cc04db461"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1471a704-7943-4501-a281-609cc04db461"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1471a704-7943-4501-a281-609cc04db461"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1471a704-7943-4501-a281-609cc04db461"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-1471a704-7943-4501-a281-609cc04db461"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-1bc5b684-e276-489e-85fb-451e3ac12095 {
  margin-top: 10px;
margin-left: 37px;
margin-bottom: 10px;
margin-right: 27px;
}

#s-ffc9f636-ca13-4a94-b533-5fcc78bc185a {
  margin-left: 27px;
margin-right: 27px;
}

@media (min-width: 0px) {
[id="s-ffc9f636-ca13-4a94-b533-5fcc78bc185a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ffc9f636-ca13-4a94-b533-5fcc78bc185a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ffc9f636-ca13-4a94-b533-5fcc78bc185a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ffc9f636-ca13-4a94-b533-5fcc78bc185a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-9d5d87b8-8eeb-4cad-b43a-4cfe377a5c75 {
  box-shadow:2px 3px 4px 2px rgba(0, 0, 0, 0.46);
border-style: solid;
margin-top: 10px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 20px;
background-color: rgba(240, 105, 10, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
opacity: 1;
}
#s-9d5d87b8-8eeb-4cad-b43a-4cfe377a5c75:hover {background-color: rgba(243, 159, 100, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-9d5d87b8-8eeb-4cad-b43a-4cfe377a5c75:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-9d5d87b8-8eeb-4cad-b43a-4cfe377a5c75-root {
    text-align: center;
  }


#s-9d5d87b8-8eeb-4cad-b43a-4cfe377a5c75.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-9d5d87b8-8eeb-4cad-b43a-4cfe377a5c75-root {
    text-align: center;
  }


#s-9d5d87b8-8eeb-4cad-b43a-4cfe377a5c75.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9d5d87b8-8eeb-4cad-b43a-4cfe377a5c75-root {
    text-align: center;
  }


#s-9d5d87b8-8eeb-4cad-b43a-4cfe377a5c75.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9d5d87b8-8eeb-4cad-b43a-4cfe377a5c75-root {
    text-align: center;
  }


#s-9d5d87b8-8eeb-4cad-b43a-4cfe377a5c75.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-9d5d87b8-8eeb-4cad-b43a-4cfe377a5c75-root {
    text-align: center;
  }


#s-9d5d87b8-8eeb-4cad-b43a-4cfe377a5c75.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}
#s-08b34a34-9e4f-41fe-9ae5-234f6b370e9f {
  border-style: solid;
margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 40px;
padding-bottom: 10px;
padding-right: 40px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-radius: 5px;
background-color: rgba(240, 105, 10, 0);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-08b34a34-9e4f-41fe-9ae5-234f6b370e9f:hover {background-color: rgba(250, 157, 92, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-08b34a34-9e4f-41fe-9ae5-234f6b370e9f:active {background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-08b34a34-9e4f-41fe-9ae5-234f6b370e9f-root {
    text-align: center;
  }


#s-08b34a34-9e4f-41fe-9ae5-234f6b370e9f.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-08b34a34-9e4f-41fe-9ae5-234f6b370e9f-root {
    text-align: center;
  }


#s-08b34a34-9e4f-41fe-9ae5-234f6b370e9f.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-08b34a34-9e4f-41fe-9ae5-234f6b370e9f-root {
    text-align: center;
  }


#s-08b34a34-9e4f-41fe-9ae5-234f6b370e9f.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-08b34a34-9e4f-41fe-9ae5-234f6b370e9f-root {
    text-align: center;
  }


#s-08b34a34-9e4f-41fe-9ae5-234f6b370e9f.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-08b34a34-9e4f-41fe-9ae5-234f6b370e9f-root {
    text-align: center;
  }


#s-08b34a34-9e4f-41fe-9ae5-234f6b370e9f.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}
#s-2d93de9c-7c89-4e89-bb68-a25d53929d4e {
  text-align: center;
}







  #s-2d93de9c-7c89-4e89-bb68-a25d53929d4e img.shogun-image {
    

    
    
    
  }


#s-2d93de9c-7c89-4e89-bb68-a25d53929d4e .shogun-image-content {
  
    align-items: center;
  
}

#s-f99572a8-4e9f-4357-b7c1-f9102888b385 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
max-width: 1200px;
background-color: rgba(255, 130, 32, 1);
}
@media (min-width: 1200px){#s-f99572a8-4e9f-4357-b7c1-f9102888b385 {
  display: none;
}
#s-f99572a8-4e9f-4357-b7c1-f9102888b385, #wrap-s-f99572a8-4e9f-4357-b7c1-f9102888b385 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f99572a8-4e9f-4357-b7c1-f9102888b385 {
  display: none;
}
#s-f99572a8-4e9f-4357-b7c1-f9102888b385, #wrap-s-f99572a8-4e9f-4357-b7c1-f9102888b385 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f99572a8-4e9f-4357-b7c1-f9102888b385 {
  
}
}@media (max-width: 767px){#s-f99572a8-4e9f-4357-b7c1-f9102888b385 {
  display: none;
}
#s-f99572a8-4e9f-4357-b7c1-f9102888b385, #wrap-s-f99572a8-4e9f-4357-b7c1-f9102888b385 { display: none !important; }}
@media (min-width: 0px) {
[id="s-f99572a8-4e9f-4357-b7c1-f9102888b385"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f99572a8-4e9f-4357-b7c1-f9102888b385"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 5.0px);
}

[id="s-f99572a8-4e9f-4357-b7c1-f9102888b385"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-f99572a8-4e9f-4357-b7c1-f9102888b385"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 5.0px);
}

[id="s-f99572a8-4e9f-4357-b7c1-f9102888b385"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-f99572a8-4e9f-4357-b7c1-f9102888b385"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 5.0px);
}

[id="s-f99572a8-4e9f-4357-b7c1-f9102888b385"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 5.0px);
}

}

@media (max-width: 767px) {
  [id="s-f99572a8-4e9f-4357-b7c1-f9102888b385"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-7234e89c-f54e-46b6-a449-e2f0cbd524f3 {
  margin-top: 10px;
margin-left: 37px;
margin-bottom: 10px;
margin-right: 27px;
}

#s-c63b675f-3e7a-4eaa-b9dd-dcdeacd4961f {
  margin-left: 27px;
margin-right: 27px;
}

@media (min-width: 0px) {
[id="s-c63b675f-3e7a-4eaa-b9dd-dcdeacd4961f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c63b675f-3e7a-4eaa-b9dd-dcdeacd4961f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c63b675f-3e7a-4eaa-b9dd-dcdeacd4961f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c63b675f-3e7a-4eaa-b9dd-dcdeacd4961f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-9efd52e9-26e6-4724-a9f4-c5a38ffc4d86 {
  box-shadow:2px 3px 4px 2px rgba(0, 0, 0, 0.46);
border-style: solid;
margin-top: 10px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(240, 105, 10, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-9efd52e9-26e6-4724-a9f4-c5a38ffc4d86:hover {background-color: rgba(243, 159, 100, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-9efd52e9-26e6-4724-a9f4-c5a38ffc4d86:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-9efd52e9-26e6-4724-a9f4-c5a38ffc4d86-root {
    text-align: center;
  }


#s-9efd52e9-26e6-4724-a9f4-c5a38ffc4d86.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-9efd52e9-26e6-4724-a9f4-c5a38ffc4d86-root {
    text-align: center;
  }


#s-9efd52e9-26e6-4724-a9f4-c5a38ffc4d86.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9efd52e9-26e6-4724-a9f4-c5a38ffc4d86-root {
    text-align: center;
  }


#s-9efd52e9-26e6-4724-a9f4-c5a38ffc4d86.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9efd52e9-26e6-4724-a9f4-c5a38ffc4d86-root {
    text-align: center;
  }


#s-9efd52e9-26e6-4724-a9f4-c5a38ffc4d86.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-9efd52e9-26e6-4724-a9f4-c5a38ffc4d86-root {
    text-align: center;
  }


#s-9efd52e9-26e6-4724-a9f4-c5a38ffc4d86.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}
#s-26074e1d-ee0c-4863-980d-575d9b47472e {
  border-style: solid;
margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 40px;
padding-bottom: 10px;
padding-right: 40px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-radius: 5px;
background-color: rgba(240, 105, 10, 0);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-26074e1d-ee0c-4863-980d-575d9b47472e:hover {background-color: rgba(250, 157, 92, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-26074e1d-ee0c-4863-980d-575d9b47472e:active {background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-26074e1d-ee0c-4863-980d-575d9b47472e-root {
    text-align: center;
  }


#s-26074e1d-ee0c-4863-980d-575d9b47472e.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-26074e1d-ee0c-4863-980d-575d9b47472e-root {
    text-align: center;
  }


#s-26074e1d-ee0c-4863-980d-575d9b47472e.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-26074e1d-ee0c-4863-980d-575d9b47472e-root {
    text-align: center;
  }


#s-26074e1d-ee0c-4863-980d-575d9b47472e.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-26074e1d-ee0c-4863-980d-575d9b47472e-root {
    text-align: center;
  }


#s-26074e1d-ee0c-4863-980d-575d9b47472e.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-26074e1d-ee0c-4863-980d-575d9b47472e-root {
    text-align: center;
  }


#s-26074e1d-ee0c-4863-980d-575d9b47472e.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}
#s-35a883c9-6bdb-4044-bc68-29732d130a8f {
  margin-top: 30px;
text-align: center;
}







  #s-35a883c9-6bdb-4044-bc68-29732d130a8f img.shogun-image {
    

    
    
    
  }


#s-35a883c9-6bdb-4044-bc68-29732d130a8f .shogun-image-content {
  
    align-items: center;
  
}

#s-3b726361-22ab-45d7-8884-408439f6d86d {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
max-width: 1200px;
background-color: rgba(255, 130, 32, 1);
}
@media (min-width: 1200px){#s-3b726361-22ab-45d7-8884-408439f6d86d {
  display: none;
}
#s-3b726361-22ab-45d7-8884-408439f6d86d, #wrap-s-3b726361-22ab-45d7-8884-408439f6d86d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3b726361-22ab-45d7-8884-408439f6d86d {
  display: none;
}
#s-3b726361-22ab-45d7-8884-408439f6d86d, #wrap-s-3b726361-22ab-45d7-8884-408439f6d86d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3b726361-22ab-45d7-8884-408439f6d86d {
  display: none;
}
#s-3b726361-22ab-45d7-8884-408439f6d86d, #wrap-s-3b726361-22ab-45d7-8884-408439f6d86d { display: none !important; }}@media (max-width: 767px){#s-3b726361-22ab-45d7-8884-408439f6d86d {
  
}
}
@media (min-width: 0px) {
[id="s-3b726361-22ab-45d7-8884-408439f6d86d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3b726361-22ab-45d7-8884-408439f6d86d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3b726361-22ab-45d7-8884-408439f6d86d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3b726361-22ab-45d7-8884-408439f6d86d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-3b726361-22ab-45d7-8884-408439f6d86d"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-a810cd4f-30ba-42d6-8e0f-37ff1e1b60be {
  margin-top: 20px;
margin-left: 37px;
margin-bottom: 20px;
margin-right: 27px;
}

#s-3ecdd696-18b7-4d89-82b8-ed3e4c4bc867 {
  margin-left: 27px;
margin-right: 27px;
}

@media (min-width: 0px) {
[id="s-3ecdd696-18b7-4d89-82b8-ed3e4c4bc867"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3ecdd696-18b7-4d89-82b8-ed3e4c4bc867"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3ecdd696-18b7-4d89-82b8-ed3e4c4bc867"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3ecdd696-18b7-4d89-82b8-ed3e4c4bc867"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-f7e5affc-a878-4a01-ab84-bc608d95ef01 {
  box-shadow:2px 3px 4px 2px rgba(0, 0, 0, 0.46);
border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(240, 105, 10, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-f7e5affc-a878-4a01-ab84-bc608d95ef01:hover {background-color: rgba(243, 159, 100, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-f7e5affc-a878-4a01-ab84-bc608d95ef01:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-f7e5affc-a878-4a01-ab84-bc608d95ef01-root {
    text-align: center;
  }


#s-f7e5affc-a878-4a01-ab84-bc608d95ef01.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-f7e5affc-a878-4a01-ab84-bc608d95ef01-root {
    text-align: center;
  }


#s-f7e5affc-a878-4a01-ab84-bc608d95ef01.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f7e5affc-a878-4a01-ab84-bc608d95ef01-root {
    text-align: center;
  }


#s-f7e5affc-a878-4a01-ab84-bc608d95ef01.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f7e5affc-a878-4a01-ab84-bc608d95ef01-root {
    text-align: center;
  }


#s-f7e5affc-a878-4a01-ab84-bc608d95ef01.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-f7e5affc-a878-4a01-ab84-bc608d95ef01-root {
    text-align: center;
  }


#s-f7e5affc-a878-4a01-ab84-bc608d95ef01.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  
  display:  inline-block ;
}
}
#s-66021344-23aa-4133-9ece-256f443aeeb5 {
  border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 40px;
padding-bottom: 10px;
padding-right: 40px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-radius: 5px;
background-color: rgba(240, 105, 10, 0);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-66021344-23aa-4133-9ece-256f443aeeb5:hover {background-color: rgba(250, 157, 92, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-66021344-23aa-4133-9ece-256f443aeeb5:active {background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-66021344-23aa-4133-9ece-256f443aeeb5-root {
    text-align: center;
  }


#s-66021344-23aa-4133-9ece-256f443aeeb5.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-66021344-23aa-4133-9ece-256f443aeeb5-root {
    text-align: center;
  }


#s-66021344-23aa-4133-9ece-256f443aeeb5.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-66021344-23aa-4133-9ece-256f443aeeb5-root {
    text-align: center;
  }


#s-66021344-23aa-4133-9ece-256f443aeeb5.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-66021344-23aa-4133-9ece-256f443aeeb5-root {
    text-align: center;
  }


#s-66021344-23aa-4133-9ece-256f443aeeb5.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-66021344-23aa-4133-9ece-256f443aeeb5-root {
    text-align: center;
  }


#s-66021344-23aa-4133-9ece-256f443aeeb5.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}
#s-98e54777-0759-4967-bc15-c1f5dcfeae62 {
  text-align: center;
}







  #s-98e54777-0759-4967-bc15-c1f5dcfeae62 img.shogun-image {
    

    
    
    
  }


#s-98e54777-0759-4967-bc15-c1f5dcfeae62 .shogun-image-content {
  
    align-items: 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}
