#s-d9206507-6abf-4880-add2-fa8f2876e553 {
  text-align: left;
}

.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-b5732f2a-5773-4a30-8d1c-3f2c83f62583 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 15px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-b5732f2a-5773-4a30-8d1c-3f2c83f62583 {
  display: none;
}
#s-b5732f2a-5773-4a30-8d1c-3f2c83f62583, #wrap-s-b5732f2a-5773-4a30-8d1c-3f2c83f62583 { display:none !important; }}@media (max-width: 767px){#s-b5732f2a-5773-4a30-8d1c-3f2c83f62583 {
  display: none;
}
#s-b5732f2a-5773-4a30-8d1c-3f2c83f62583, #wrap-s-b5732f2a-5773-4a30-8d1c-3f2c83f62583 { display:none !important; }}







#s-b5732f2a-5773-4a30-8d1c-3f2c83f62583 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b5732f2a-5773-4a30-8d1c-3f2c83f62583.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-sld-content {
  width: 100%;
  position: relative;
  z-index: 1;
}

.shg-sld-slides {
  word-break: break-word;
  position: relative;
}

.shg-sld-slides-padded {
  padding: 0 35px;
}

.shg-sld-nav-button {
  cursor: pointer;
  position: absolute;
  z-index: 10;
  top: 0;
  width: 35px;
  min-height: 35px;
  height: 100%;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.shg-sld-nav-button > svg {
  height: 100%;
  width: 100%;
}

.shg-sld-nav-button.shg-sld-left {
  left: 0;
}

.shg-sld-nav-button.shg-sld-left-over-content {
  left: 2%;
}

.shg-sld-nav-button.shg-sld-right {
  right: 0;
}

.shg-sld-nav-button.shg-sld-right-over-content {
  right: 2%;
}

.shg-sld-nav-button.shg-sld-disabled {
  cursor: default;
  opacity: 0.2;
}

.shg-sld-item {
  display: none;
}

.shg-sld-item.shg-sld-active {
  display: block;
}

.shg-sld-dots {
  margin-top: 10px;
  text-align: center;
  z-index: 1;
  position: relative;
}

.shg-sld-dots-on-top {
  margin-top: -30px !important;
}

.shg-sld-dot {
  cursor: pointer;
  display: inline-block !important;
  height: 14px;
  width: 14px;
  border-radius: 100%;
  margin-left: 5px;
  opacity: 0.5;
}

.shg-sld-dot:first-child {
  margin-left: 0px;
}

.shg-sld-dot.shg-sld-active {
  opacity: 1;
}

@keyframes shg-sld-fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

#s-79d8e3c6-8700-4fcd-a4f1-f07458b7e04a {
  margin-left: 1%;
margin-bottom: 0px;
margin-right: 1%;
padding-top: 0px;
padding-bottom: 0px;
}

#s-79d8e3c6-8700-4fcd-a4f1-f07458b7e04a .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-79d8e3c6-8700-4fcd-a4f1-f07458b7e04a .shg-sld-nav-button.shg-sld-left,
#s-79d8e3c6-8700-4fcd-a4f1-f07458b7e04a .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-9bade4bd-abf5-4c6c-a525-b4c6a0cce875 {
  background-repeat: no-repeat;
background-size: cover;
margin-left: 0%;
margin-right: 0%;
padding-top: 15px;
padding-left: 0%;
padding-bottom: 15px;
padding-right: 0%;
min-height: 500px;
background-position: center center;
}
@media (min-width: 768px) and (max-width: 991px){#s-9bade4bd-abf5-4c6c-a525-b4c6a0cce875 {
  display: none;
}
#s-9bade4bd-abf5-4c6c-a525-b4c6a0cce875, #wrap-s-9bade4bd-abf5-4c6c-a525-b4c6a0cce875 { display:none !important; }}@media (max-width: 767px){#s-9bade4bd-abf5-4c6c-a525-b4c6a0cce875 {
  display: none;
}
#s-9bade4bd-abf5-4c6c-a525-b4c6a0cce875, #wrap-s-9bade4bd-abf5-4c6c-a525-b4c6a0cce875 { display:none !important; }}
#s-9bade4bd-abf5-4c6c-a525-b4c6a0cce875 {
  background-image: url(https://i.shgcdn.com/1f4d8f60-9218-42f5-8518-0170fb0fde60/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-9bade4bd-abf5-4c6c-a525-b4c6a0cce875 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9bade4bd-abf5-4c6c-a525-b4c6a0cce875 {
  cursor: pointer;
}#s-9bade4bd-abf5-4c6c-a525-b4c6a0cce875.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f01292f9-cbd3-4de7-9463-5084cfe13377 {
  padding-top: 15px;
padding-left: 4%;
padding-bottom: 15px;
padding-right: 63%;
min-height: 50px;
}








#s-f01292f9-cbd3-4de7-9463-5084cfe13377 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f01292f9-cbd3-4de7-9463-5084cfe13377.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shogun-heading-component h1,
.shogun-heading-component h2,
.shogun-heading-component h3,
.shogun-heading-component h4,
.shogun-heading-component h5,
.shogun-heading-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: ;
  font-family: ;
  text-transform: none;
  font-weight: ;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
}

.shogun-heading-component a {
  text-decoration: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

#s-aeb0b6b8-5796-44b5-9fdc-f210530108df {
  margin-top: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-aeb0b6b8-5796-44b5-9fdc-f210530108df .shogun-heading-component h2 {
  color: rgba(134, 188, 37, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 60px;
  
  
  text-align: left;
}



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

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

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

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

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

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

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

.shg-default-text-content a {
  background-color: inherit;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-style: inherit;
  text-decoration: underline;
  text-transform: inherit;
}

.shg-default-text-content strong,
.shg-default-text-content em {
  background-color: inherit;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: inherit;
  text-transform: inherit;
}

.shg-default-text-content em {
  font-weight: inherit;
}

.shg-default-text-content strong {
  font-style: inherit;
  font-weight: 700;
}

/* https://stackoverflow.com/a/16094931/3696652 */
.shg-default-text-content ::selection,
.shg-default-text-content *::selection {
  background: #accef7;
}

.shg-default-text-content p {
  font-size: 1em;
  font-weight: ;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0.6em;
  color: ;
  font-family: ;
}

.shg-default-text-content h1 {
  font-size: 1.714em;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.166;
  margin-top: 0.67em;
}

.shg-default-text-content h2 {
  font-size: 1.43em;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-top: 0.83em;
}

.shg-default-text-content h3 {
  font-size: 1.142em;
  font-weight: 500;
  letter-spacing: -0.008em;
  line-height: 1.5;
  margin-top: 1em;
}

.shg-default-text-content h4 {
  font-size: 1em;
  font-weight: 600;
  letter-spacing: -0.006em;
  line-height: 1.428;
  margin-top: 1.33em;
}

.shg-default-text-content h5 {
  font-size: 0.857em;
  font-weight: 600;
  letter-spacing: -0.003em;
  line-height: 1.333;
  margin-top: 1.43em;
}

.shg-default-text-content h6 {
  font-size: 0.785em;
  font-weight: 600;
  letter-spacing: -0.003em;
  line-height: 1.454;
  margin-top: 1.42em;
  text-transform: uppercase;
}

.shg-default-text-content ul {
  list-style: disc;
}

.shg-default-text-content ol {
  list-style: decimal;
}

.shg-default-text-content ul,
.shg-default-text-content ol {
  margin-block-end: 1em;
  margin-block-start: 1em;
  margin-bottom: 0;
  margin-inline-end: 0;
  margin-inline-start: 0;
  margin-top: 0;
  padding-inline-start: 40px;
}

.shg-default-text-content li {
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1;
  list-style: inherit;
  margin-top: 0.67em;
}

.shg-default-text-content pre {
  font-family: monospace;
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 1em;
  white-space: pre-wrap;
  word-break: normal;
}

.shg-default-text-content address {
  font-size: 1em;
  font-style: italic;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0;
}

.shg-default-text-content div {
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-bottom: 0;
  margin-top: 0.67em;
}

.shg-theme-text-content h1,
.shg-theme-text-content h2,
.shg-theme-text-content h3,
.shg-theme-text-content h4,
.shg-theme-text-content h5,
.shg-theme-text-content h6 {
  color: ;
  font-family: ;
  font-weight: ;
}

.shg-theme-text-content p {
  color: ;
  font-family: ;
  font-weight: ;
}

#s-2a893e2a-bc29-463c-b4c5-02b4624ec694 {
  margin-left: 0%;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
}

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

@media (min-width: 0px) {
[id="s-58a1ee58-37ee-4ae6-bfc2-a67c7c40b069"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-58a1ee58-37ee-4ae6-bfc2-a67c7c40b069"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-58a1ee58-37ee-4ae6-bfc2-a67c7c40b069"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-58a1ee58-37ee-4ae6-bfc2-a67c7c40b069"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.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: ;
  font-family: ;
}

.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-8cdb0b74-aa71-4c9a-9fa1-0d4822c73ab9 {
  background-size: 0px 0px;
margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(20, 129, 195, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-8cdb0b74-aa71-4c9a-9fa1-0d4822c73ab9:hover {box-shadow:1px 1px 10px 2px rgba(87, 87, 86, 1) !important;
border-style: solid !important;
border-top-width: 0px !important;
border-left-width: 0px !important;
border-bottom-width: 0px !important;
border-right-width: 0px !important;
border-color: rgba(87, 87, 86, 1) !important;
background-color: rgba(134, 188, 37, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-8cdb0b74-aa71-4c9a-9fa1-0d4822c73ab9:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-8cdb0b74-aa71-4c9a-9fa1-0d4822c73ab9-root {
    text-align: center;
  }


#s-8cdb0b74-aa71-4c9a-9fa1-0d4822c73ab9.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-8cdb0b74-aa71-4c9a-9fa1-0d4822c73ab9-root {
    text-align: center;
  }


#s-8cdb0b74-aa71-4c9a-9fa1-0d4822c73ab9.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-8cdb0b74-aa71-4c9a-9fa1-0d4822c73ab9-root {
    text-align: center;
  }


#s-8cdb0b74-aa71-4c9a-9fa1-0d4822c73ab9.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-8cdb0b74-aa71-4c9a-9fa1-0d4822c73ab9-root {
    text-align: center;
  }


#s-8cdb0b74-aa71-4c9a-9fa1-0d4822c73ab9.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-8cdb0b74-aa71-4c9a-9fa1-0d4822c73ab9-root {
    text-align: center;
  }


#s-8cdb0b74-aa71-4c9a-9fa1-0d4822c73ab9.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
}
  #s-8cdb0b74-aa71-4c9a-9fa1-0d4822c73ab9-root {
    text-align: center;
  }


#s-8cdb0b74-aa71-4c9a-9fa1-0d4822c73ab9.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}

#s-a176a136-7da5-4d8c-a15c-a25be74b375f {
  background-size: 0px 0px;
margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(20, 129, 195, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-a176a136-7da5-4d8c-a15c-a25be74b375f:hover {box-shadow:1px 1px 10px 2px rgba(87, 87, 86, 1) !important;
border-style: solid !important;
border-top-width: 0px !important;
border-left-width: 0px !important;
border-bottom-width: 0px !important;
border-right-width: 0px !important;
border-color: rgba(87, 87, 86, 1) !important;
background-color: rgba(134, 188, 37, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-a176a136-7da5-4d8c-a15c-a25be74b375f:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-a176a136-7da5-4d8c-a15c-a25be74b375f-root {
    text-align: center;
  }


#s-a176a136-7da5-4d8c-a15c-a25be74b375f.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-a176a136-7da5-4d8c-a15c-a25be74b375f-root {
    text-align: center;
  }


#s-a176a136-7da5-4d8c-a15c-a25be74b375f.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a176a136-7da5-4d8c-a15c-a25be74b375f-root {
    text-align: center;
  }


#s-a176a136-7da5-4d8c-a15c-a25be74b375f.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a176a136-7da5-4d8c-a15c-a25be74b375f-root {
    text-align: center;
  }


#s-a176a136-7da5-4d8c-a15c-a25be74b375f.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-a176a136-7da5-4d8c-a15c-a25be74b375f-root {
    text-align: center;
  }


#s-a176a136-7da5-4d8c-a15c-a25be74b375f.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
}
  #s-a176a136-7da5-4d8c-a15c-a25be74b375f-root {
    text-align: center;
  }


#s-a176a136-7da5-4d8c-a15c-a25be74b375f.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}

#s-3f383ec9-799f-4756-86e9-911882018bd3 {
  background-repeat: no-repeat;
background-size: cover;
margin-left: 0%;
margin-right: 0%;
padding-top: 15px;
padding-left: 0%;
padding-bottom: 15px;
padding-right: 0%;
min-height: 500px;
background-position: center center;
}
@media (min-width: 768px) and (max-width: 991px){#s-3f383ec9-799f-4756-86e9-911882018bd3 {
  display: none;
}
#s-3f383ec9-799f-4756-86e9-911882018bd3, #wrap-s-3f383ec9-799f-4756-86e9-911882018bd3 { display:none !important; }}@media (max-width: 767px){#s-3f383ec9-799f-4756-86e9-911882018bd3 {
  display: none;
}
#s-3f383ec9-799f-4756-86e9-911882018bd3, #wrap-s-3f383ec9-799f-4756-86e9-911882018bd3 { display:none !important; }}
#s-3f383ec9-799f-4756-86e9-911882018bd3 {
  background-image: url(https://i.shgcdn.com/e9676867-df04-4a91-be39-fd87492e4309/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-3f383ec9-799f-4756-86e9-911882018bd3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3f383ec9-799f-4756-86e9-911882018bd3 {
  cursor: pointer;
}#s-3f383ec9-799f-4756-86e9-911882018bd3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4cc7f06f-2062-4737-b488-d3f6d5a1cbd8 {
  padding-top: 15px;
padding-left: 4%;
padding-bottom: 15px;
padding-right: 63%;
min-height: 50px;
}








#s-4cc7f06f-2062-4737-b488-d3f6d5a1cbd8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4cc7f06f-2062-4737-b488-d3f6d5a1cbd8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d96d1533-559e-4855-b6fb-bad5a5af5a82 {
  margin-top: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-d96d1533-559e-4855-b6fb-bad5a5af5a82 .shogun-heading-component h2 {
  color: rgba(134, 188, 37, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 60px;
  
  
  text-align: left;
}



#s-a51d4103-240c-4fff-8d91-d7e004835380 {
  margin-left: 0%;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
}

#s-374387e9-7a09-404f-a23f-3f5d5494e1eb {
  background-repeat: no-repeat;
background-size: cover;
margin-left: 0%;
margin-right: 0%;
padding-top: 15px;
padding-left: 0%;
padding-bottom: 15px;
padding-right: 0%;
min-height: 500px;
background-position: center center;
}
@media (min-width: 768px) and (max-width: 991px){#s-374387e9-7a09-404f-a23f-3f5d5494e1eb {
  display: none;
}
#s-374387e9-7a09-404f-a23f-3f5d5494e1eb, #wrap-s-374387e9-7a09-404f-a23f-3f5d5494e1eb { display:none !important; }}@media (max-width: 767px){#s-374387e9-7a09-404f-a23f-3f5d5494e1eb {
  display: none;
}
#s-374387e9-7a09-404f-a23f-3f5d5494e1eb, #wrap-s-374387e9-7a09-404f-a23f-3f5d5494e1eb { display:none !important; }}
#s-374387e9-7a09-404f-a23f-3f5d5494e1eb {
  background-image: url(https://i.shgcdn.com/f5c4808a-2b63-410b-80fc-de5803df82b1/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-374387e9-7a09-404f-a23f-3f5d5494e1eb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-374387e9-7a09-404f-a23f-3f5d5494e1eb {
  cursor: pointer;
}#s-374387e9-7a09-404f-a23f-3f5d5494e1eb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2b737c9f-de3c-4069-814f-6558358fa084 {
  padding-top: 15px;
padding-left: 66%;
padding-bottom: 15px;
padding-right: 3%;
min-height: 50px;
}








#s-2b737c9f-de3c-4069-814f-6558358fa084 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2b737c9f-de3c-4069-814f-6558358fa084.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-35b0ff6d-9606-4932-a135-807418aceae7 {
  margin-top: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-35b0ff6d-9606-4932-a135-807418aceae7 .shogun-heading-component h2 {
  color: rgba(3, 128, 196, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 60px;
  
  
  text-align: left;
}



#s-47259a94-dd42-411d-83f8-08dbe0fec5a2 {
  margin-left: 0%;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
}

#s-59435ae3-5606-40f7-a8bc-5f31d377a177 {
  background-repeat: no-repeat;
background-size: cover;
margin-left: 0%;
margin-right: 0%;
padding-top: 15px;
padding-left: 0%;
padding-bottom: 15px;
padding-right: 0%;
min-height: 500px;
background-position: center center;
}
@media (min-width: 768px) and (max-width: 991px){#s-59435ae3-5606-40f7-a8bc-5f31d377a177 {
  display: none;
}
#s-59435ae3-5606-40f7-a8bc-5f31d377a177, #wrap-s-59435ae3-5606-40f7-a8bc-5f31d377a177 { display:none !important; }}@media (max-width: 767px){#s-59435ae3-5606-40f7-a8bc-5f31d377a177 {
  display: none;
}
#s-59435ae3-5606-40f7-a8bc-5f31d377a177, #wrap-s-59435ae3-5606-40f7-a8bc-5f31d377a177 { display:none !important; }}
#s-59435ae3-5606-40f7-a8bc-5f31d377a177 {
  background-image: url(https://i.shgcdn.com/3850313c-4ccb-40ed-9398-54b786b897e8/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-59435ae3-5606-40f7-a8bc-5f31d377a177 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-59435ae3-5606-40f7-a8bc-5f31d377a177 {
  cursor: pointer;
}#s-59435ae3-5606-40f7-a8bc-5f31d377a177.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2c2a2e10-847f-4d28-8939-c661331b78d1 {
  padding-top: 15px;
padding-left: 4%;
padding-bottom: 15px;
padding-right: 63%;
min-height: 50px;
}








#s-2c2a2e10-847f-4d28-8939-c661331b78d1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2c2a2e10-847f-4d28-8939-c661331b78d1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5f650b0f-a1cb-4e07-90f7-491281f5862b {
  margin-top: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-5f650b0f-a1cb-4e07-90f7-491281f5862b .shogun-heading-component h2 {
  color: rgba(134, 188, 37, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 60px;
  
  
  text-align: left;
}



#s-fe452954-931d-44f2-87d0-c50459946e74 {
  margin-left: 0%;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
}

#s-c2dc548d-854c-4cdc-9156-a04ba993a96e {
  background-repeat: no-repeat;
background-size: cover;
margin-left: 0%;
margin-right: 0%;
padding-top: 15px;
padding-left: 0%;
padding-bottom: 15px;
padding-right: 0%;
min-height: 500px;
background-position: center center;
}
@media (min-width: 768px) and (max-width: 991px){#s-c2dc548d-854c-4cdc-9156-a04ba993a96e {
  display: none;
}
#s-c2dc548d-854c-4cdc-9156-a04ba993a96e, #wrap-s-c2dc548d-854c-4cdc-9156-a04ba993a96e { display:none !important; }}@media (max-width: 767px){#s-c2dc548d-854c-4cdc-9156-a04ba993a96e {
  display: none;
}
#s-c2dc548d-854c-4cdc-9156-a04ba993a96e, #wrap-s-c2dc548d-854c-4cdc-9156-a04ba993a96e { display:none !important; }}
#s-c2dc548d-854c-4cdc-9156-a04ba993a96e {
  background-image: url(https://i.shgcdn.com/e82b0b04-fa4e-41f1-8ec8-d3910c7fea50/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-c2dc548d-854c-4cdc-9156-a04ba993a96e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c2dc548d-854c-4cdc-9156-a04ba993a96e {
  cursor: pointer;
}#s-c2dc548d-854c-4cdc-9156-a04ba993a96e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-be6fa44f-51b9-45d7-bcc7-eaf5a8347d82 {
  padding-top: 15px;
padding-left: 66%;
padding-bottom: 15px;
padding-right: 2%;
min-height: 50px;
}








#s-be6fa44f-51b9-45d7-bcc7-eaf5a8347d82 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-be6fa44f-51b9-45d7-bcc7-eaf5a8347d82.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f07b0614-1f3f-4dbd-8a4f-4050ef3f9e72 {
  margin-top: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-f07b0614-1f3f-4dbd-8a4f-4050ef3f9e72 .shogun-heading-component h2 {
  color: rgba(3, 128, 196, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 60px;
  
  
  text-align: left;
}



#s-36752b49-866f-4cee-8eb5-2ea226448d81 {
  margin-left: 0%;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
}

#s-a35c548b-26bf-4515-8cb7-f46991fd4b6f {
  margin-top: 0px;
margin-left: 5%;
margin-right: 5%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-a35c548b-26bf-4515-8cb7-f46991fd4b6f {
  display: none;
}
#s-a35c548b-26bf-4515-8cb7-f46991fd4b6f, #wrap-s-a35c548b-26bf-4515-8cb7-f46991fd4b6f { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a35c548b-26bf-4515-8cb7-f46991fd4b6f {
  display: none;
}
#s-a35c548b-26bf-4515-8cb7-f46991fd4b6f, #wrap-s-a35c548b-26bf-4515-8cb7-f46991fd4b6f { display:none !important; }}
#s-a35c548b-26bf-4515-8cb7-f46991fd4b6f .shogun-heading-component h1 {
  color: rgba(3, 128, 196, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 60px;
  
  
  text-align: center;
}


@media (max-width: 767px){#s-a35c548b-26bf-4515-8cb7-f46991fd4b6f .shogun-heading-component h1 {
  color: rgba(3, 128, 196, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 48px;
  
  
  text-align: center;
}


}
#s-e41d7d31-6845-466c-b65a-160bd61d6091 {
  padding-top: 10px;
padding-left: 5%;
padding-bottom: 10px;
padding-right: 5%;
}
@media (min-width: 1200px){#s-e41d7d31-6845-466c-b65a-160bd61d6091 {
  display: none;
}
#s-e41d7d31-6845-466c-b65a-160bd61d6091, #wrap-s-e41d7d31-6845-466c-b65a-160bd61d6091 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e41d7d31-6845-466c-b65a-160bd61d6091 {
  display: none;
}
#s-e41d7d31-6845-466c-b65a-160bd61d6091, #wrap-s-e41d7d31-6845-466c-b65a-160bd61d6091 { display:none !important; }}
#s-e41d7d31-6845-466c-b65a-160bd61d6091 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-e41d7d31-6845-466c-b65a-160bd61d6091 .shg-sld-nav-button.shg-sld-left,
#s-e41d7d31-6845-466c-b65a-160bd61d6091 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-e8ab534a-2680-410f-ae9b-1496cb85df7f {
  padding-top: 1%;
padding-left: 1%;
padding-bottom: 1%;
padding-right: 1%;
min-height: 50px;
}








#s-e8ab534a-2680-410f-ae9b-1496cb85df7f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e8ab534a-2680-410f-ae9b-1496cb85df7f {
  cursor: pointer;
}#s-e8ab534a-2680-410f-ae9b-1496cb85df7f.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-0ad153ad-44f6-4491-86ad-ce0e61316b1a {
  margin-left: 5%;
margin-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
text-align: center;
}







  #s-0ad153ad-44f6-4491-86ad-ce0e61316b1a img.shogun-image {
    

    
    
    
  }


#s-0ad153ad-44f6-4491-86ad-ce0e61316b1a .shogun-image-content {
  
    align-items: center;
  
}

#s-bda65828-0157-47c8-aebb-f1ed35c39371 {
  margin-left: 5%;
margin-right: 5%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
}

#s-61ceff2a-a5e8-47a1-8c48-c1ce6c705070 {
  padding-top: 1%;
padding-left: 1%;
padding-bottom: 1%;
padding-right: 1%;
min-height: 50px;
}








#s-61ceff2a-a5e8-47a1-8c48-c1ce6c705070 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-61ceff2a-a5e8-47a1-8c48-c1ce6c705070 {
  cursor: pointer;
}#s-61ceff2a-a5e8-47a1-8c48-c1ce6c705070.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b93ee728-39ce-4489-9262-6f7baedb9b09 {
  padding-left: 5%;
padding-right: 5%;
text-align: center;
}







  #s-b93ee728-39ce-4489-9262-6f7baedb9b09 img.shogun-image {
    

    
    
    
  }


#s-b93ee728-39ce-4489-9262-6f7baedb9b09 .shogun-image-content {
  
    align-items: center;
  
}

#s-bce18763-1365-42b6-ab0b-74b8570bb3b3 {
  margin-left: 5%;
margin-right: 5%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
}

#s-23dceb12-e718-4088-ab9a-7512898fb7c9 {
  padding-top: 1%;
padding-left: 1%;
padding-bottom: 1%;
padding-right: 1%;
min-height: 50px;
}








#s-23dceb12-e718-4088-ab9a-7512898fb7c9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-23dceb12-e718-4088-ab9a-7512898fb7c9 {
  cursor: pointer;
}#s-23dceb12-e718-4088-ab9a-7512898fb7c9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-53fd4856-2742-40ce-92ae-fdf0dab1d16e {
  padding-left: 5%;
padding-right: 5%;
text-align: center;
}







  #s-53fd4856-2742-40ce-92ae-fdf0dab1d16e img.shogun-image {
    

    
    
    
  }


#s-53fd4856-2742-40ce-92ae-fdf0dab1d16e .shogun-image-content {
  
    align-items: center;
  
}

#s-bb1aab9f-db8e-4d92-b24d-f18573bd402b {
  margin-left: 5%;
margin-right: 5%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
}

#s-a5609ce8-b441-4ad7-a891-03909b389c0d {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-top: 1%;
padding-left: 1%;
padding-bottom: 1%;
padding-right: 1%;
min-height: 50px;
}








#s-a5609ce8-b441-4ad7-a891-03909b389c0d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a5609ce8-b441-4ad7-a891-03909b389c0d {
  cursor: pointer;
}#s-a5609ce8-b441-4ad7-a891-03909b389c0d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b6c1397c-e542-49b6-abe7-6f82b10ce785 {
  border-style: solid;
margin-left: 5%;
margin-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 10px;
text-align: center;
}







  #s-b6c1397c-e542-49b6-abe7-6f82b10ce785 img.shogun-image {
    

    
    
    
  }


#s-b6c1397c-e542-49b6-abe7-6f82b10ce785 .shogun-image-content {
  
    align-items: center;
  
}

#s-b3b692c5-a73b-4ece-915f-067af02bef25 {
  margin-left: 5%;
margin-right: 5%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
}

#s-7fcec95c-fc40-4869-8134-c2f4ee1d3364 {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-top: 15px;
padding-left: 0%;
padding-bottom: 30px;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 0px;
min-height: 50px;
background-color: rgba(247, 252, 253, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-7fcec95c-fc40-4869-8134-c2f4ee1d3364 {
  display: none;
}
#s-7fcec95c-fc40-4869-8134-c2f4ee1d3364, #wrap-s-7fcec95c-fc40-4869-8134-c2f4ee1d3364 { display:none !important; }}@media (max-width: 767px){#s-7fcec95c-fc40-4869-8134-c2f4ee1d3364 {
  display: none;
}
#s-7fcec95c-fc40-4869-8134-c2f4ee1d3364, #wrap-s-7fcec95c-fc40-4869-8134-c2f4ee1d3364 { display:none !important; }}







#s-7fcec95c-fc40-4869-8134-c2f4ee1d3364 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7fcec95c-fc40-4869-8134-c2f4ee1d3364.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8eed55c0-8111-4d76-a506-ce958503f6b8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8eed55c0-8111-4d76-a506-ce958503f6b8 .shogun-heading-component h1 {
  color: rgba(3, 128, 196, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 48px;
  
  
  
}



#s-06338734-98d4-4c7c-af64-423552808b76 {
  padding-top: 15px;
padding-left: 15%;
padding-bottom: 15px;
padding-right: 15%;
min-height: 50px;
}








#s-06338734-98d4-4c7c-af64-423552808b76 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-06338734-98d4-4c7c-af64-423552808b76.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a9919785-e50f-4438-90d3-1d0125bf08fd {
  margin-top: 0px;
padding-left: 0%;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(234, 240, 242, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-a9919785-e50f-4438-90d3-1d0125bf08fd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a9919785-e50f-4438-90d3-1d0125bf08fd"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 40.0px);
}

}

@media (min-width: 992px) {
[id="s-a9919785-e50f-4438-90d3-1d0125bf08fd"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 40.0px);
}

}

@media (min-width: 1200px) {
[id="s-a9919785-e50f-4438-90d3-1d0125bf08fd"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 40.0px);
}

}

#s-01475a73-99f2-4a87-ab21-540a7ab3bcf9 {
  box-shadow:1px 1px 10px 2px rgba(189, 189, 189, 1);
padding-top: 0px;
padding-left: 5%;
padding-bottom: 0px;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(134, 188, 37, 1);
border-style: solid;
border-radius: 10px;
min-height: 50px;
background-color: rgba(134, 188, 37, 1);
}








#s-01475a73-99f2-4a87-ab21-540a7ab3bcf9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-01475a73-99f2-4a87-ab21-540a7ab3bcf9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5810f190-29c9-432f-b66a-004f697e0a6b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5810f190-29c9-432f-b66a-004f697e0a6b .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-2b05367c-a93a-4a16-8210-bb8888bdf7c5 {
  border-radius: 10px;
text-align: center;
}







  #s-2b05367c-a93a-4a16-8210-bb8888bdf7c5 img.shogun-image {
    

    
    
    
  }


#s-2b05367c-a93a-4a16-8210-bb8888bdf7c5 .shogun-image-content {
  
    align-items: center;
  
}

#s-d52c7d64-6339-40d2-ac07-1320702a1561 {
  padding-top: 15px;
padding-left: 5%;
padding-right: 0%;
}

#s-9dc9413b-8f0b-4b38-9a32-57fb5237426a {
  box-shadow:1px 1px 10px 2px rgba(189, 189, 189, 1);
padding-top: 0px;
padding-left: 5%;
padding-bottom: 0px;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(134, 188, 37, 1);
border-style: solid;
border-radius: 10px;
min-height: 50px;
background-color: rgba(230, 240, 218, 1);
}








#s-9dc9413b-8f0b-4b38-9a32-57fb5237426a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9dc9413b-8f0b-4b38-9a32-57fb5237426a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b20b58cf-090d-46f7-8c6f-aa602a0fef56 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b20b58cf-090d-46f7-8c6f-aa602a0fef56 .shogun-heading-component h1 {
  color: rgba(134, 188, 37, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-0aa52cf8-5b32-431d-b239-abf7855d610f {
  border-radius: 10px;
text-align: center;
}







  #s-0aa52cf8-5b32-431d-b239-abf7855d610f img.shogun-image {
    

    
    
    
  }


#s-0aa52cf8-5b32-431d-b239-abf7855d610f .shogun-image-content {
  
    align-items: center;
  
}

#s-ca4d0ba6-076a-4f21-80f6-6c6d0d029ea2 {
  padding-top: 15px;
padding-left: 5%;
padding-right: 5%;
}

#s-267130da-1778-4a32-948f-4d772c5aeacb {
  box-shadow:1px 1px 10px 2px rgba(189, 189, 189, 1);
padding-top: 0px;
padding-left: 5%;
padding-bottom: 0px;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(134, 188, 37, 1);
border-style: solid;
border-radius: 10px;
min-height: 50px;
background-color: rgba(134, 188, 37, 1);
}








#s-267130da-1778-4a32-948f-4d772c5aeacb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-267130da-1778-4a32-948f-4d772c5aeacb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-26d21593-b4cf-44e3-8f61-d66e6a542957 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-26d21593-b4cf-44e3-8f61-d66e6a542957 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-909a0acc-1594-4822-806c-bdaae732bb2e {
  border-radius: 10px;
text-align: center;
}







  #s-909a0acc-1594-4822-806c-bdaae732bb2e img.shogun-image {
    

    
    
    
  }


#s-909a0acc-1594-4822-806c-bdaae732bb2e .shogun-image-content {
  
    align-items: center;
  
}

#s-4ac3d181-6300-4335-8b48-124f2a9805e4 {
  padding-top: 15px;
padding-left: 5%;
padding-right: 5%;
}

#s-985c130f-4530-4faa-9001-eb5982869d84 {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-top: 15px;
padding-left: 0%;
padding-bottom: 15px;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 0px;
min-height: 50px;
background-color: rgba(247, 252, 253, 1);
}
@media (min-width: 1200px){#s-985c130f-4530-4faa-9001-eb5982869d84 {
  display: none;
}
#s-985c130f-4530-4faa-9001-eb5982869d84, #wrap-s-985c130f-4530-4faa-9001-eb5982869d84 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-985c130f-4530-4faa-9001-eb5982869d84 {
  display: none;
}
#s-985c130f-4530-4faa-9001-eb5982869d84, #wrap-s-985c130f-4530-4faa-9001-eb5982869d84 { display:none !important; }}







#s-985c130f-4530-4faa-9001-eb5982869d84 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-985c130f-4530-4faa-9001-eb5982869d84.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4a970903-c1ea-4a12-b046-38f689f29ce2 {
  margin-left: 7%;
margin-right: 7%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4a970903-c1ea-4a12-b046-38f689f29ce2 .shogun-heading-component h1 {
  color: rgba(3, 128, 196, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 48px;
  
  
  
}



#s-89ed4655-1e7a-468b-b582-867ae7c5438a {
  padding-top: 15px;
padding-left: 15%;
padding-bottom: 15px;
padding-right: 15%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-89ed4655-1e7a-468b-b582-867ae7c5438a {
  display: none;
}
#s-89ed4655-1e7a-468b-b582-867ae7c5438a, #wrap-s-89ed4655-1e7a-468b-b582-867ae7c5438a { display:none !important; }}







#s-89ed4655-1e7a-468b-b582-867ae7c5438a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-89ed4655-1e7a-468b-b582-867ae7c5438a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bc753068-2d3d-4486-823d-2a4f6744cc88 {
  margin-top: 0px;
padding-left: 0%;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(234, 240, 242, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-bc753068-2d3d-4486-823d-2a4f6744cc88"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bc753068-2d3d-4486-823d-2a4f6744cc88"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 40.0px);
}

}

@media (min-width: 992px) {
[id="s-bc753068-2d3d-4486-823d-2a4f6744cc88"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 40.0px);
}

}

@media (min-width: 1200px) {
[id="s-bc753068-2d3d-4486-823d-2a4f6744cc88"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 40.0px);
}

}

#s-f4b178e5-4d30-4504-932b-c66547dfec8d {
  box-shadow:1px 1px 10px 2px rgba(189, 189, 189, 1);
padding-top: 0px;
padding-left: 5%;
padding-bottom: 0px;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(134, 188, 37, 1);
border-style: solid;
border-radius: 10px;
min-height: 50px;
background-color: rgba(134, 188, 37, 1);
}








#s-f4b178e5-4d30-4504-932b-c66547dfec8d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f4b178e5-4d30-4504-932b-c66547dfec8d {
  cursor: pointer;
}#s-f4b178e5-4d30-4504-932b-c66547dfec8d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c45346e5-3216-451b-9a82-5565f0a3496d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c45346e5-3216-451b-9a82-5565f0a3496d .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-4b9b4f94-28fc-486a-b2cb-cbb2550a576b {
  border-radius: 10px;
text-align: center;
}







  #s-4b9b4f94-28fc-486a-b2cb-cbb2550a576b img.shogun-image {
    

    
    
    
  }


#s-4b9b4f94-28fc-486a-b2cb-cbb2550a576b .shogun-image-content {
  
    align-items: center;
  
}

#s-dbed3f26-5c65-4f40-98be-5bb87ba1f81a {
  padding-top: 15px;
padding-left: 5%;
padding-right: 0%;
}

#s-4077a859-33b8-4611-8a51-3b8112b65c99 {
  box-shadow:1px 1px 10px 2px rgba(189, 189, 189, 1);
margin-top: 30px;
margin-bottom: 30px;
padding-top: 0px;
padding-left: 5%;
padding-bottom: 0px;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(134, 188, 37, 1);
border-style: solid;
border-radius: 10px;
min-height: 50px;
background-color: rgba(230, 240, 218, 1);
}








#s-4077a859-33b8-4611-8a51-3b8112b65c99 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4077a859-33b8-4611-8a51-3b8112b65c99 {
  cursor: pointer;
}#s-4077a859-33b8-4611-8a51-3b8112b65c99.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dd88e49d-ffbb-4144-91d1-480b903f38d6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-dd88e49d-ffbb-4144-91d1-480b903f38d6 .shogun-heading-component h1 {
  color: rgba(134, 188, 37, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-1c67444a-877b-44f5-bdea-a1edc1a28890 {
  border-radius: 10px;
text-align: center;
}







  #s-1c67444a-877b-44f5-bdea-a1edc1a28890 img.shogun-image {
    

    
    
    
  }


#s-1c67444a-877b-44f5-bdea-a1edc1a28890 .shogun-image-content {
  
    align-items: center;
  
}

#s-6cd9f2e2-8034-4152-aa30-7e01b392878c {
  padding-top: 15px;
padding-left: 5%;
padding-right: 5%;
}

#s-6ce9a89f-5065-4198-bfe7-438ad1ae7f71 {
  box-shadow:1px 1px 10px 2px rgba(189, 189, 189, 1);
padding-top: 0px;
padding-left: 5%;
padding-bottom: 0px;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(134, 188, 37, 1);
border-style: solid;
border-radius: 10px;
min-height: 50px;
background-color: rgba(134, 188, 37, 1);
}








#s-6ce9a89f-5065-4198-bfe7-438ad1ae7f71 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6ce9a89f-5065-4198-bfe7-438ad1ae7f71 {
  cursor: pointer;
}#s-6ce9a89f-5065-4198-bfe7-438ad1ae7f71.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2d764a92-dc68-45ab-89ef-a8e74525510e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2d764a92-dc68-45ab-89ef-a8e74525510e .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-e1470b23-7ab4-4b68-aff5-09a57c0274ce {
  border-radius: 10px;
text-align: center;
}







  #s-e1470b23-7ab4-4b68-aff5-09a57c0274ce img.shogun-image {
    

    
    
    
  }


#s-e1470b23-7ab4-4b68-aff5-09a57c0274ce .shogun-image-content {
  
    align-items: center;
  
}

#s-8fe25f9a-b520-422e-89ac-eb172cdf311e {
  padding-top: 15px;
padding-left: 5%;
padding-right: 5%;
}

#s-cb60d914-db78-4ba9-9171-1b7c92b868c9 {
  padding-top: 5%;
padding-left: 10%;
padding-bottom: 5%;
padding-right: 10%;
min-height: 50px;
}
@media (min-width: 1200px){#s-cb60d914-db78-4ba9-9171-1b7c92b868c9 {
  display: none;
}
#s-cb60d914-db78-4ba9-9171-1b7c92b868c9, #wrap-s-cb60d914-db78-4ba9-9171-1b7c92b868c9 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-cb60d914-db78-4ba9-9171-1b7c92b868c9 {
  display: none;
}
#s-cb60d914-db78-4ba9-9171-1b7c92b868c9, #wrap-s-cb60d914-db78-4ba9-9171-1b7c92b868c9 { display:none !important; }}@media (max-width: 767px){#s-cb60d914-db78-4ba9-9171-1b7c92b868c9 {
  display: none;
}
#s-cb60d914-db78-4ba9-9171-1b7c92b868c9, #wrap-s-cb60d914-db78-4ba9-9171-1b7c92b868c9 { display:none !important; }}







#s-cb60d914-db78-4ba9-9171-1b7c92b868c9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cb60d914-db78-4ba9-9171-1b7c92b868c9 {
  cursor: pointer;
}#s-cb60d914-db78-4ba9-9171-1b7c92b868c9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4f99e4dc-4649-4c61-ae61-a024382a355e {
  box-shadow:1px 1px 10px 2px rgba(189, 189, 189, 1);
padding-top: 0px;
padding-left: 5%;
padding-bottom: 0px;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(134, 188, 37, 1);
border-style: solid;
border-radius: 10px;
min-height: 50px;
background-color: rgba(134, 188, 37, 1);
}








#s-4f99e4dc-4649-4c61-ae61-a024382a355e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4f99e4dc-4649-4c61-ae61-a024382a355e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5aa2ce89-99e9-4e14-acdc-a22f06ebd30b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5aa2ce89-99e9-4e14-acdc-a22f06ebd30b .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-f826338d-2be9-4aa1-bad7-0f57c8eea2e3 {
  border-radius: 10px;
text-align: center;
}







  #s-f826338d-2be9-4aa1-bad7-0f57c8eea2e3 img.shogun-image {
    

    
    
    
  }


#s-f826338d-2be9-4aa1-bad7-0f57c8eea2e3 .shogun-image-content {
  
    align-items: center;
  
}

#s-d407aa03-e0d9-4e73-bd54-c7dbd42568ff {
  padding-top: 15px;
padding-left: 5%;
padding-right: 0%;
}

#s-875e6823-e220-4001-9cf6-607bb5ceca64 {
  box-shadow:1px 1px 10px 2px rgba(189, 189, 189, 1);
margin-top: 30px;
margin-bottom: 30px;
padding-top: 0px;
padding-left: 5%;
padding-bottom: 0px;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(134, 188, 37, 1);
border-style: solid;
border-radius: 10px;
min-height: 50px;
background-color: rgba(230, 240, 218, 1);
}








#s-875e6823-e220-4001-9cf6-607bb5ceca64 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-875e6823-e220-4001-9cf6-607bb5ceca64.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e89d46ea-aa4e-4e34-ac1e-329c51a70c6f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e89d46ea-aa4e-4e34-ac1e-329c51a70c6f .shogun-heading-component h1 {
  color: rgba(134, 188, 37, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-17ce436f-c5d7-4e1d-8f6d-50a18d97b5c7 {
  border-radius: 10px;
text-align: center;
}







  #s-17ce436f-c5d7-4e1d-8f6d-50a18d97b5c7 img.shogun-image {
    

    
    
    
  }


#s-17ce436f-c5d7-4e1d-8f6d-50a18d97b5c7 .shogun-image-content {
  
    align-items: center;
  
}

#s-6ab66e21-21d4-4f67-bbdc-a5374e462c45 {
  padding-top: 15px;
padding-left: 5%;
padding-right: 5%;
}

#s-07224a72-b375-47ec-8804-cd6e121a2f5b {
  box-shadow:1px 1px 10px 2px rgba(189, 189, 189, 1);
padding-top: 0px;
padding-left: 5%;
padding-bottom: 0px;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(134, 188, 37, 1);
border-style: solid;
border-radius: 10px;
min-height: 50px;
background-color: rgba(134, 188, 37, 1);
}








#s-07224a72-b375-47ec-8804-cd6e121a2f5b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-07224a72-b375-47ec-8804-cd6e121a2f5b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9ce08c1a-b7f1-41e2-8c1c-c94b60db46d7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9ce08c1a-b7f1-41e2-8c1c-c94b60db46d7 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-7c7c941a-5c7c-4bf8-a851-681b18eee1e6 {
  border-radius: 10px;
text-align: center;
}







  #s-7c7c941a-5c7c-4bf8-a851-681b18eee1e6 img.shogun-image {
    

    
    
    
  }


#s-7c7c941a-5c7c-4bf8-a851-681b18eee1e6 .shogun-image-content {
  
    align-items: center;
  
}

#s-d19d153a-a0b2-451c-8866-ad5c57e579d9 {
  padding-top: 15px;
padding-left: 5%;
padding-right: 5%;
}

#s-9818fc2f-69fb-43e4-8789-c469219beddc {
  padding-top: 15px;
padding-left: 10%;
padding-bottom: 15px;
padding-right: 10%;
min-height: 50px;
}
@media (min-width: 1200px){#s-9818fc2f-69fb-43e4-8789-c469219beddc {
  display: none;
}
#s-9818fc2f-69fb-43e4-8789-c469219beddc, #wrap-s-9818fc2f-69fb-43e4-8789-c469219beddc { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9818fc2f-69fb-43e4-8789-c469219beddc {
  display: none;
}
#s-9818fc2f-69fb-43e4-8789-c469219beddc, #wrap-s-9818fc2f-69fb-43e4-8789-c469219beddc { display:none !important; }}@media (max-width: 767px){#s-9818fc2f-69fb-43e4-8789-c469219beddc {
  display: none;
}
#s-9818fc2f-69fb-43e4-8789-c469219beddc, #wrap-s-9818fc2f-69fb-43e4-8789-c469219beddc { display:none !important; }}







#s-9818fc2f-69fb-43e4-8789-c469219beddc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9818fc2f-69fb-43e4-8789-c469219beddc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0bf8bc4f-e720-4479-bd51-301961bcb4ce {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0bf8bc4f-e720-4479-bd51-301961bcb4ce .shogun-heading-component h2 {
  color: rgba(3, 128, 196, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: center;
}



#s-e23a6a08-8ff7-402b-a452-1101a4142530 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-e23a6a08-8ff7-402b-a452-1101a4142530 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-e23a6a08-8ff7-402b-a452-1101a4142530 .shg-sld-nav-button.shg-sld-left,
#s-e23a6a08-8ff7-402b-a452-1101a4142530 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-7ccd2b37-b806-4277-8b55-6a1df03203de {
  padding-top: 15px;
}

#s-84a19900-f726-40f1-9017-f6f38958ae42 {
  padding-top: 15px;
}

#s-4aa8f197-68ee-4884-8225-2755f1143e7d {
  padding-top: 15px;
}

#s-345ff502-268c-418b-bcdb-acc689395973 {
  text-align: center;
}







  #s-345ff502-268c-418b-bcdb-acc689395973 img.shogun-image {
    

    
    
    
  }


#s-345ff502-268c-418b-bcdb-acc689395973 .shogun-image-content {
  
    align-items: center;
  
}

#s-bfa76e78-2062-41ad-bac7-12ca02bf195f {
  text-align: center;
}







  #s-bfa76e78-2062-41ad-bac7-12ca02bf195f img.shogun-image {
    

    
    
    
  }


#s-bfa76e78-2062-41ad-bac7-12ca02bf195f .shogun-image-content {
  
    align-items: center;
  
}

#s-247072a8-9d2f-4d90-9b71-dae7d51c13c6 {
  text-align: center;
}







  #s-247072a8-9d2f-4d90-9b71-dae7d51c13c6 img.shogun-image {
    

    
    
    
  }


#s-247072a8-9d2f-4d90-9b71-dae7d51c13c6 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-3d25f73c-2a39-4f10-9df7-8d6982101add"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3d25f73c-2a39-4f10-9df7-8d6982101add"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3d25f73c-2a39-4f10-9df7-8d6982101add"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3d25f73c-2a39-4f10-9df7-8d6982101add"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-43d5ceb0-62e7-4494-ba61-fc921c89a4c9 {
  margin-left: 5%;
margin-right: 5%;
padding-top: 15px;
padding-bottom: 15px;
min-height: 50px;
}








#s-43d5ceb0-62e7-4494-ba61-fc921c89a4c9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-43d5ceb0-62e7-4494-ba61-fc921c89a4c9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d54e110d-7b73-4d69-8f03-0a79ab5b42e6 {
  border-style: solid;
padding-top: 15px;
padding-left: 10%;
padding-bottom: 15px;
padding-right: 10%;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(255, 255, 255, 1);
border-radius: 0px;
text-align: center;
}
#s-d54e110d-7b73-4d69-8f03-0a79ab5b42e6:hover {border-style: solid !important;
border-top-width: 3px !important;
border-left-width: 3px !important;
border-bottom-width: 3px !important;
border-right-width: 3px !important;
border-color: rgba(3, 128, 196, 1) !important;
border-radius: 10px !important;}






  #s-d54e110d-7b73-4d69-8f03-0a79ab5b42e6 img.shogun-image {
    

    
    
    
  }


#s-d54e110d-7b73-4d69-8f03-0a79ab5b42e6 .shogun-image-content {
  
    align-items: center;
  
}

#s-d3f430a5-82e9-4b51-a71c-3cd34bb709af {
  margin-left: 5%;
margin-right: 5%;
padding-top: 15px;
padding-bottom: 15px;
min-height: 50px;
}








#s-d3f430a5-82e9-4b51-a71c-3cd34bb709af > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d3f430a5-82e9-4b51-a71c-3cd34bb709af.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a84cec73-3011-4ec6-b27b-06e0b7926757 {
  border-style: solid;
margin-top: 5%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 0%;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(255, 255, 255, 1);
border-radius: 0px;
text-align: center;
}
#s-a84cec73-3011-4ec6-b27b-06e0b7926757:hover {border-style: solid !important;
border-top-width: 3px !important;
border-left-width: 3px !important;
border-bottom-width: 3px !important;
border-right-width: 3px !important;
border-color: rgba(3, 128, 196, 1) !important;
border-radius: 10px !important;}






  #s-a84cec73-3011-4ec6-b27b-06e0b7926757 img.shogun-image {
    

    
    
    
  }


#s-a84cec73-3011-4ec6-b27b-06e0b7926757 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-166964ea-f5ed-4eb4-ad05-df1440d1df94"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-166964ea-f5ed-4eb4-ad05-df1440d1df94"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-166964ea-f5ed-4eb4-ad05-df1440d1df94"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-166964ea-f5ed-4eb4-ad05-df1440d1df94"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-22c46582-de3b-4ebc-a130-03386d1f4389 {
  margin-left: 5%;
margin-right: 5%;
padding-top: 15px;
padding-bottom: 15px;
min-height: 50px;
}








#s-22c46582-de3b-4ebc-a130-03386d1f4389 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-22c46582-de3b-4ebc-a130-03386d1f4389.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-efd2f4aa-145d-4c84-8e09-45e9ee82c245 {
  border-style: solid;
padding-top: 15px;
padding-left: 10%;
padding-bottom: 15px;
padding-right: 10%;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(255, 255, 255, 1);
border-radius: 0px;
text-align: center;
}
#s-efd2f4aa-145d-4c84-8e09-45e9ee82c245:hover {border-style: solid !important;
border-top-width: 3px !important;
border-left-width: 3px !important;
border-bottom-width: 3px !important;
border-right-width: 3px !important;
border-color: rgba(3, 128, 196, 1) !important;
border-radius: 10px !important;}






  #s-efd2f4aa-145d-4c84-8e09-45e9ee82c245 img.shogun-image {
    

    
    
    
  }


#s-efd2f4aa-145d-4c84-8e09-45e9ee82c245 .shogun-image-content {
  
    align-items: center;
  
}

#s-88b70198-bec9-4362-8923-12fc9f43090b {
  margin-left: 5%;
margin-right: 5%;
padding-top: 15px;
padding-bottom: 15px;
min-height: 50px;
}








#s-88b70198-bec9-4362-8923-12fc9f43090b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-88b70198-bec9-4362-8923-12fc9f43090b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1ed9582b-b237-4832-aa61-c335554434ec {
  border-style: solid;
margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(255, 255, 255, 1);
border-radius: 0px;
text-align: center;
}
#s-1ed9582b-b237-4832-aa61-c335554434ec:hover {border-style: solid !important;
border-top-width: 3px !important;
border-left-width: 3px !important;
border-bottom-width: 3px !important;
border-right-width: 3px !important;
border-color: rgba(3, 128, 196, 1) !important;
border-radius: 10px !important;}






  #s-1ed9582b-b237-4832-aa61-c335554434ec img.shogun-image {
    

    
    
    
  }


#s-1ed9582b-b237-4832-aa61-c335554434ec .shogun-image-content {
  
    align-items: center;
  
}

#s-3fdf5fd1-927b-4e7a-b274-679602abecda {
  margin-top: 6%;
}

@media (min-width: 0px) {
[id="s-3b087a72-8e94-436d-886a-b967f4c00dd8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3b087a72-8e94-436d-886a-b967f4c00dd8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3b087a72-8e94-436d-886a-b967f4c00dd8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3b087a72-8e94-436d-886a-b967f4c00dd8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-73b9c2c4-56ac-46dd-9480-b3aea1b34d91 {
  margin-left: 5%;
margin-right: 5%;
padding-top: 15px;
padding-bottom: 15px;
min-height: 50px;
}








#s-73b9c2c4-56ac-46dd-9480-b3aea1b34d91 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-73b9c2c4-56ac-46dd-9480-b3aea1b34d91.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1618c3fe-f3fc-4ff3-bec7-cca03de39f4f {
  border-style: solid;
margin-left: 0%;
margin-right: 0%;
padding-top: 15px;
padding-left: 10%;
padding-bottom: 15px;
padding-right: 10%;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(255, 255, 255, 1);
border-radius: 10px;
text-align: center;
}
#s-1618c3fe-f3fc-4ff3-bec7-cca03de39f4f:hover {border-style: solid !important;
border-top-width: 3px !important;
border-left-width: 3px !important;
border-bottom-width: 3px !important;
border-right-width: 3px !important;
border-color: rgba(3, 128, 196, 1) !important;
border-radius: 10px !important;}






  #s-1618c3fe-f3fc-4ff3-bec7-cca03de39f4f img.shogun-image {
    

    
    
    
  }


#s-1618c3fe-f3fc-4ff3-bec7-cca03de39f4f .shogun-image-content {
  
    align-items: center;
  
}

#s-1facada8-df71-49be-8227-690c1c22ac26 {
  margin-left: 5%;
margin-right: 5%;
padding-top: 15px;
padding-bottom: 15px;
min-height: 50px;
}








#s-1facada8-df71-49be-8227-690c1c22ac26 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1facada8-df71-49be-8227-690c1c22ac26.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-242d0704-6f48-431f-8fc7-cfcec9d7a4e7 {
  border-style: solid;
margin-left: 0%;
margin-right: 0%;
padding-top: 15px;
padding-left: 10%;
padding-bottom: 15px;
padding-right: 10%;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(255, 255, 255, 1);
border-radius: 10px;
text-align: center;
}
#s-242d0704-6f48-431f-8fc7-cfcec9d7a4e7:hover {border-style: solid !important;
border-top-width: 3px !important;
border-left-width: 3px !important;
border-bottom-width: 3px !important;
border-right-width: 3px !important;
border-color: rgba(3, 128, 196, 1) !important;
border-radius: 10px !important;}






  #s-242d0704-6f48-431f-8fc7-cfcec9d7a4e7 img.shogun-image {
    

    
    
    
  }


#s-242d0704-6f48-431f-8fc7-cfcec9d7a4e7 .shogun-image-content {
  
    align-items: center;
  
}

#s-c8402e91-cdd4-4460-80a1-a7c8704555c9 {
  padding-top: 15px;
padding-bottom: 15px;
min-height: 50px;
}








#s-c8402e91-cdd4-4460-80a1-a7c8704555c9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c8402e91-cdd4-4460-80a1-a7c8704555c9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ae702169-89ef-47b9-908b-b20f0df657e8 {
  background-size: 0px 0px;
margin-top: 0px;
margin-left: 10%;
margin-bottom: 0px;
margin-right: 10%;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(20, 129, 195, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-ae702169-89ef-47b9-908b-b20f0df657e8:hover {box-shadow:1px 1px 10px 2px rgba(87, 87, 86, 1) !important;
border-style: solid !important;
border-top-width: 0px !important;
border-left-width: 0px !important;
border-bottom-width: 0px !important;
border-right-width: 0px !important;
border-color: rgba(87, 87, 86, 1) !important;
background-color: rgba(134, 188, 37, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-ae702169-89ef-47b9-908b-b20f0df657e8:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-ae702169-89ef-47b9-908b-b20f0df657e8-root {
    text-align: center;
  }


#s-ae702169-89ef-47b9-908b-b20f0df657e8.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-ae702169-89ef-47b9-908b-b20f0df657e8-root {
    text-align: center;
  }


#s-ae702169-89ef-47b9-908b-b20f0df657e8.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ae702169-89ef-47b9-908b-b20f0df657e8-root {
    text-align: center;
  }


#s-ae702169-89ef-47b9-908b-b20f0df657e8.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ae702169-89ef-47b9-908b-b20f0df657e8-root {
    text-align: center;
  }


#s-ae702169-89ef-47b9-908b-b20f0df657e8.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-ae702169-89ef-47b9-908b-b20f0df657e8-root {
    text-align: center;
  }


#s-ae702169-89ef-47b9-908b-b20f0df657e8.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
}
  #s-ae702169-89ef-47b9-908b-b20f0df657e8-root {
    text-align: center;
  }


#s-ae702169-89ef-47b9-908b-b20f0df657e8.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}

#s-652ddf0f-d26c-4012-80f7-796698c18c5b {
  padding-top: 15px;
padding-bottom: 15px;
min-height: 50px;
}








#s-652ddf0f-d26c-4012-80f7-796698c18c5b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-652ddf0f-d26c-4012-80f7-796698c18c5b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9c54dcd5-f120-4412-9889-a78c5340dc1c {
  background-size: 0px 0px;
margin-top: 0px;
margin-left: 10%;
margin-bottom: 0px;
margin-right: 10%;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(20, 129, 195, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-9c54dcd5-f120-4412-9889-a78c5340dc1c:hover {box-shadow:1px 1px 10px 2px rgba(87, 87, 86, 1) !important;
border-style: solid !important;
border-top-width: 0px !important;
border-left-width: 0px !important;
border-bottom-width: 0px !important;
border-right-width: 0px !important;
border-color: rgba(87, 87, 86, 1) !important;
background-color: rgba(134, 188, 37, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-9c54dcd5-f120-4412-9889-a78c5340dc1c:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-9c54dcd5-f120-4412-9889-a78c5340dc1c-root {
    text-align: center;
  }


#s-9c54dcd5-f120-4412-9889-a78c5340dc1c.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-9c54dcd5-f120-4412-9889-a78c5340dc1c-root {
    text-align: center;
  }


#s-9c54dcd5-f120-4412-9889-a78c5340dc1c.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9c54dcd5-f120-4412-9889-a78c5340dc1c-root {
    text-align: center;
  }


#s-9c54dcd5-f120-4412-9889-a78c5340dc1c.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9c54dcd5-f120-4412-9889-a78c5340dc1c-root {
    text-align: center;
  }


#s-9c54dcd5-f120-4412-9889-a78c5340dc1c.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-9c54dcd5-f120-4412-9889-a78c5340dc1c-root {
    text-align: center;
  }


#s-9c54dcd5-f120-4412-9889-a78c5340dc1c.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
}
  #s-9c54dcd5-f120-4412-9889-a78c5340dc1c-root {
    text-align: center;
  }


#s-9c54dcd5-f120-4412-9889-a78c5340dc1c.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}

#s-438e2a5e-14cc-4793-ab84-621ad20614e2 {
  padding-top: 15px;
padding-bottom: 15px;
min-height: 50px;
}








#s-438e2a5e-14cc-4793-ab84-621ad20614e2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-438e2a5e-14cc-4793-ab84-621ad20614e2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-34bd72c2-c344-4b43-903b-56dae36e5a5c {
  background-size: 0px 0px;
margin-top: 0px;
margin-left: 10%;
margin-bottom: 0px;
margin-right: 10%;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(20, 129, 195, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-34bd72c2-c344-4b43-903b-56dae36e5a5c:hover {box-shadow:1px 1px 10px 2px rgba(87, 87, 86, 1) !important;
border-style: solid !important;
border-top-width: 0px !important;
border-left-width: 0px !important;
border-bottom-width: 0px !important;
border-right-width: 0px !important;
border-color: rgba(87, 87, 86, 1) !important;
background-color: rgba(134, 188, 37, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-34bd72c2-c344-4b43-903b-56dae36e5a5c:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-34bd72c2-c344-4b43-903b-56dae36e5a5c-root {
    text-align: center;
  }


#s-34bd72c2-c344-4b43-903b-56dae36e5a5c.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-34bd72c2-c344-4b43-903b-56dae36e5a5c-root {
    text-align: center;
  }


#s-34bd72c2-c344-4b43-903b-56dae36e5a5c.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-34bd72c2-c344-4b43-903b-56dae36e5a5c-root {
    text-align: center;
  }


#s-34bd72c2-c344-4b43-903b-56dae36e5a5c.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-34bd72c2-c344-4b43-903b-56dae36e5a5c-root {
    text-align: center;
  }


#s-34bd72c2-c344-4b43-903b-56dae36e5a5c.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-34bd72c2-c344-4b43-903b-56dae36e5a5c-root {
    text-align: center;
  }


#s-34bd72c2-c344-4b43-903b-56dae36e5a5c.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
}
  #s-34bd72c2-c344-4b43-903b-56dae36e5a5c-root {
    text-align: center;
  }


#s-34bd72c2-c344-4b43-903b-56dae36e5a5c.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}

#s-7c574cac-7583-482e-80dc-2e8634db9e3d {
  padding-top: 15px;
padding-left: 10%;
padding-bottom: 30px;
padding-right: 10%;
min-height: 50px;
}
@media (min-width: 1200px){#s-7c574cac-7583-482e-80dc-2e8634db9e3d {
  display: none;
}
#s-7c574cac-7583-482e-80dc-2e8634db9e3d, #wrap-s-7c574cac-7583-482e-80dc-2e8634db9e3d { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7c574cac-7583-482e-80dc-2e8634db9e3d {
  display: none;
}
#s-7c574cac-7583-482e-80dc-2e8634db9e3d, #wrap-s-7c574cac-7583-482e-80dc-2e8634db9e3d { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7c574cac-7583-482e-80dc-2e8634db9e3d {
  display: none;
}
#s-7c574cac-7583-482e-80dc-2e8634db9e3d, #wrap-s-7c574cac-7583-482e-80dc-2e8634db9e3d { display:none !important; }}







#s-7c574cac-7583-482e-80dc-2e8634db9e3d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7c574cac-7583-482e-80dc-2e8634db9e3d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-04e53c12-ae85-43e9-b628-8dfd48b81161 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-04e53c12-ae85-43e9-b628-8dfd48b81161 .shogun-heading-component h2 {
  color: rgba(3, 128, 196, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: center;
}



#s-00ee6cea-68cb-4177-850d-ae6def3865a2 {
  border-radius: 10px;
text-align: center;
}







  #s-00ee6cea-68cb-4177-850d-ae6def3865a2 img.shogun-image {
    

    
    
    
  }


#s-00ee6cea-68cb-4177-850d-ae6def3865a2 .shogun-image-content {
  
    align-items: center;
  
}

#s-55164144-f0b0-477f-82f8-b9b76cfc9a63 {
  background-size: 0px 0px;
margin-top: 15px;
margin-left: 10%;
margin-bottom: 0px;
margin-right: 10%;
padding-top: 10px;
padding-left: 20%;
padding-bottom: 10px;
padding-right: 20%;
border-radius: 10px;
background-color: rgba(20, 129, 195, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-55164144-f0b0-477f-82f8-b9b76cfc9a63:hover {background-color: rgba(87, 87, 86, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-55164144-f0b0-477f-82f8-b9b76cfc9a63:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-55164144-f0b0-477f-82f8-b9b76cfc9a63-root {
    text-align: center;
  }


#s-55164144-f0b0-477f-82f8-b9b76cfc9a63.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-55164144-f0b0-477f-82f8-b9b76cfc9a63-root {
    text-align: center;
  }


#s-55164144-f0b0-477f-82f8-b9b76cfc9a63.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-55164144-f0b0-477f-82f8-b9b76cfc9a63-root {
    text-align: center;
  }


#s-55164144-f0b0-477f-82f8-b9b76cfc9a63.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-55164144-f0b0-477f-82f8-b9b76cfc9a63-root {
    text-align: center;
  }


#s-55164144-f0b0-477f-82f8-b9b76cfc9a63.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-55164144-f0b0-477f-82f8-b9b76cfc9a63-root {
    text-align: center;
  }


#s-55164144-f0b0-477f-82f8-b9b76cfc9a63.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
}
  #s-55164144-f0b0-477f-82f8-b9b76cfc9a63-root {
    text-align: center;
  }


#s-55164144-f0b0-477f-82f8-b9b76cfc9a63.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}

#s-f91bfce7-ad0d-43d9-832c-ab9dac3fd8eb {
  padding-top: 15px;
padding-left: 10%;
padding-bottom: 15px;
padding-right: 10%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-f91bfce7-ad0d-43d9-832c-ab9dac3fd8eb {
  display: none;
}
#s-f91bfce7-ad0d-43d9-832c-ab9dac3fd8eb, #wrap-s-f91bfce7-ad0d-43d9-832c-ab9dac3fd8eb { display:none !important; }}@media (max-width: 767px){#s-f91bfce7-ad0d-43d9-832c-ab9dac3fd8eb {
  display: none;
}
#s-f91bfce7-ad0d-43d9-832c-ab9dac3fd8eb, #wrap-s-f91bfce7-ad0d-43d9-832c-ab9dac3fd8eb { display:none !important; }}







#s-f91bfce7-ad0d-43d9-832c-ab9dac3fd8eb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f91bfce7-ad0d-43d9-832c-ab9dac3fd8eb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2cb6fa17-902c-4381-9afc-6b679524e7e0 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2cb6fa17-902c-4381-9afc-6b679524e7e0 .shogun-heading-component h2 {
  color: rgba(3, 128, 196, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 48px;
  
  
  
}



#s-8dbfd520-c41d-4442-b3ee-4bdb69e7883e {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-8dbfd520-c41d-4442-b3ee-4bdb69e7883e .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-8dbfd520-c41d-4442-b3ee-4bdb69e7883e .shg-sld-nav-button.shg-sld-left,
#s-8dbfd520-c41d-4442-b3ee-4bdb69e7883e .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-3767b00b-61ab-4ce3-9fb4-a3cf7ac66c94 {
  padding-top: 15px;
}

#s-68d51dd6-da7b-4bd0-add0-ae9c2be9787a {
  padding-top: 15px;
}

#s-648c75cb-5ed3-4cc3-8217-e4aefdc63c26 {
  padding-top: 15px;
}

@media (min-width: 0px) {
[id="s-ecf036b2-32e2-4ba2-8fad-039b5bb76840"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ecf036b2-32e2-4ba2-8fad-039b5bb76840"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-ecf036b2-32e2-4ba2-8fad-039b5bb76840"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-ecf036b2-32e2-4ba2-8fad-039b5bb76840"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-f65b1715-1c26-413e-b68f-a044fc94f698 {
  margin-left: 5%;
margin-right: 5%;
padding-top: 15px;
padding-bottom: 15px;
min-height: 50px;
}








#s-f65b1715-1c26-413e-b68f-a044fc94f698 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f65b1715-1c26-413e-b68f-a044fc94f698.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dec272b5-442b-404f-8fbe-d57cc519b45c {
  border-style: solid;
margin-left: 0%;
margin-right: 0%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 0%;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(255, 255, 255, 1);
border-radius: 0px;
text-align: center;
}
#s-dec272b5-442b-404f-8fbe-d57cc519b45c:hover {border-style: solid !important;
border-top-width: 3px !important;
border-left-width: 3px !important;
border-bottom-width: 3px !important;
border-right-width: 3px !important;
border-color: rgba(3, 128, 196, 1) !important;
border-radius: 10px !important;}






  #s-dec272b5-442b-404f-8fbe-d57cc519b45c img.shogun-image {
    

    
    
    
  }


#s-dec272b5-442b-404f-8fbe-d57cc519b45c .shogun-image-content {
  
    align-items: center;
  
}

#s-be908776-8b97-4cdb-bd12-bf82308ca6ee {
  text-align: center;
}







  #s-be908776-8b97-4cdb-bd12-bf82308ca6ee img.shogun-image {
    

    
    
    
  }


#s-be908776-8b97-4cdb-bd12-bf82308ca6ee .shogun-image-content {
  
    align-items: center;
  
}

#s-75b5f61a-8bf5-4d4e-a5ad-535718d2b828 {
  border-style: solid;
padding-top: 15px;
padding-left: 10%;
padding-bottom: 15px;
padding-right: 10%;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(255, 255, 255, 1);
border-radius: 0px;
text-align: center;
}
#s-75b5f61a-8bf5-4d4e-a5ad-535718d2b828:hover {border-style: solid !important;
border-top-width: 3px !important;
border-left-width: 3px !important;
border-bottom-width: 3px !important;
border-right-width: 3px !important;
border-color: rgba(3, 128, 196, 1) !important;
border-radius: 10px !important;}






  #s-75b5f61a-8bf5-4d4e-a5ad-535718d2b828 img.shogun-image {
    

    
    
    
  }


#s-75b5f61a-8bf5-4d4e-a5ad-535718d2b828 .shogun-image-content {
  
    align-items: center;
  
}

#s-7082b026-5bf0-462b-81ed-ec3f90c8d873 {
  margin-left: 5%;
margin-right: 5%;
padding-top: 15px;
padding-bottom: 15px;
min-height: 50px;
}








#s-7082b026-5bf0-462b-81ed-ec3f90c8d873 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7082b026-5bf0-462b-81ed-ec3f90c8d873.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-de60471e-03fa-41e7-8222-5cbd4c788382"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-de60471e-03fa-41e7-8222-5cbd4c788382"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-de60471e-03fa-41e7-8222-5cbd4c788382"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-de60471e-03fa-41e7-8222-5cbd4c788382"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-b915fd6f-8374-48e3-a1da-c4fe1030a436 {
  margin-left: 5%;
margin-right: 5%;
padding-top: 15px;
padding-bottom: 15px;
min-height: 50px;
}








#s-b915fd6f-8374-48e3-a1da-c4fe1030a436 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b915fd6f-8374-48e3-a1da-c4fe1030a436.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a73ab7ac-4840-4320-a17d-fb67273a3bbd {
  border-style: solid;
padding-top: 15px;
padding-left: 10%;
padding-bottom: 15px;
padding-right: 10%;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(255, 255, 255, 1);
border-radius: 0px;
text-align: center;
}
#s-a73ab7ac-4840-4320-a17d-fb67273a3bbd:hover {border-style: solid !important;
border-top-width: 3px !important;
border-left-width: 3px !important;
border-bottom-width: 3px !important;
border-right-width: 3px !important;
border-color: rgba(3, 128, 196, 1) !important;
border-radius: 10px !important;}






  #s-a73ab7ac-4840-4320-a17d-fb67273a3bbd img.shogun-image {
    

    
    
    
  }


#s-a73ab7ac-4840-4320-a17d-fb67273a3bbd .shogun-image-content {
  
    align-items: center;
  
}

#s-2e3a5810-5c0b-4c8a-9bdd-9cb980ae7a7d {
  text-align: center;
}







  #s-2e3a5810-5c0b-4c8a-9bdd-9cb980ae7a7d img.shogun-image {
    

    
    
    
  }


#s-2e3a5810-5c0b-4c8a-9bdd-9cb980ae7a7d .shogun-image-content {
  
    align-items: center;
  
}

#s-dbb52330-70a6-4260-897d-b98e62d203c1 {
  margin-left: 5%;
margin-right: 5%;
padding-top: 15px;
padding-bottom: 15px;
min-height: 50px;
}








#s-dbb52330-70a6-4260-897d-b98e62d203c1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dbb52330-70a6-4260-897d-b98e62d203c1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-36c9bd3f-afcb-42f3-b55b-634930d8b19f {
  border-style: solid;
margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(255, 255, 255, 1);
border-radius: 0px;
text-align: center;
}
#s-36c9bd3f-afcb-42f3-b55b-634930d8b19f:hover {border-style: solid !important;
border-top-width: 3px !important;
border-left-width: 3px !important;
border-bottom-width: 3px !important;
border-right-width: 3px !important;
border-color: rgba(3, 128, 196, 1) !important;
border-radius: 10px !important;}






  #s-36c9bd3f-afcb-42f3-b55b-634930d8b19f img.shogun-image {
    

    
    
    
  }


#s-36c9bd3f-afcb-42f3-b55b-634930d8b19f .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-bce71550-5d68-49a4-acd1-4b59ad63f804"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bce71550-5d68-49a4-acd1-4b59ad63f804"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-bce71550-5d68-49a4-acd1-4b59ad63f804"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-bce71550-5d68-49a4-acd1-4b59ad63f804"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-49715241-931e-4a3c-b38e-643c84693836 {
  margin-left: 5%;
margin-right: 5%;
padding-top: 15px;
padding-bottom: 15px;
min-height: 50px;
}








#s-49715241-931e-4a3c-b38e-643c84693836 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-49715241-931e-4a3c-b38e-643c84693836.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-63b44148-c4f0-424e-a8bf-51b9a0c8031e {
  border-style: solid;
margin-left: 0%;
margin-right: 0%;
padding-top: 15px;
padding-left: 10%;
padding-bottom: 15px;
padding-right: 10%;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(255, 255, 255, 1);
border-radius: 10px;
text-align: center;
}
#s-63b44148-c4f0-424e-a8bf-51b9a0c8031e:hover {border-style: solid !important;
border-top-width: 3px !important;
border-left-width: 3px !important;
border-bottom-width: 3px !important;
border-right-width: 3px !important;
border-color: rgba(3, 128, 196, 1) !important;
border-radius: 10px !important;}






  #s-63b44148-c4f0-424e-a8bf-51b9a0c8031e img.shogun-image {
    

    
    
    
  }


#s-63b44148-c4f0-424e-a8bf-51b9a0c8031e .shogun-image-content {
  
    align-items: center;
  
}

#s-3003a0d7-ac6a-44b3-a0cb-54d891d301b3 {
  text-align: center;
}







  #s-3003a0d7-ac6a-44b3-a0cb-54d891d301b3 img.shogun-image {
    

    
    
    
  }


#s-3003a0d7-ac6a-44b3-a0cb-54d891d301b3 .shogun-image-content {
  
    align-items: center;
  
}

#s-8ee82991-73c5-4731-93e5-7189e69ade52 {
  margin-left: 5%;
margin-right: 5%;
padding-top: 15px;
padding-bottom: 15px;
min-height: 50px;
}








#s-8ee82991-73c5-4731-93e5-7189e69ade52 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8ee82991-73c5-4731-93e5-7189e69ade52.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9a4f295d-3540-4706-82c6-a6bc65ca69ee {
  border-style: solid;
margin-left: 0%;
margin-right: 0%;
padding-top: 15px;
padding-left: 10%;
padding-bottom: 15px;
padding-right: 10%;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(255, 255, 255, 1);
border-radius: 10px;
text-align: center;
}
#s-9a4f295d-3540-4706-82c6-a6bc65ca69ee:hover {border-style: solid !important;
border-top-width: 3px !important;
border-left-width: 3px !important;
border-bottom-width: 3px !important;
border-right-width: 3px !important;
border-color: rgba(3, 128, 196, 1) !important;
border-radius: 10px !important;}






  #s-9a4f295d-3540-4706-82c6-a6bc65ca69ee img.shogun-image {
    

    
    
    
  }


#s-9a4f295d-3540-4706-82c6-a6bc65ca69ee .shogun-image-content {
  
    align-items: center;
  
}

#s-92d49f70-6a41-445e-a93b-6edc7f81a4d7 {
  padding-top: 15px;
padding-bottom: 15px;
min-height: 50px;
}








#s-92d49f70-6a41-445e-a93b-6edc7f81a4d7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-92d49f70-6a41-445e-a93b-6edc7f81a4d7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-71a56d96-41de-415c-a08a-884080165e07 {
  background-size: 0px 0px;
margin-top: 0px;
margin-left: 30%;
margin-bottom: 0px;
margin-right: 30%;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(20, 129, 195, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-71a56d96-41de-415c-a08a-884080165e07:hover {box-shadow:1px 1px 10px 2px rgba(87, 87, 86, 1) !important;
border-style: solid !important;
border-top-width: 0px !important;
border-left-width: 0px !important;
border-bottom-width: 0px !important;
border-right-width: 0px !important;
border-color: rgba(87, 87, 86, 1) !important;
background-color: rgba(134, 188, 37, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-71a56d96-41de-415c-a08a-884080165e07:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-71a56d96-41de-415c-a08a-884080165e07-root {
    text-align: center;
  }


#s-71a56d96-41de-415c-a08a-884080165e07.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-71a56d96-41de-415c-a08a-884080165e07-root {
    text-align: center;
  }


#s-71a56d96-41de-415c-a08a-884080165e07.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-71a56d96-41de-415c-a08a-884080165e07-root {
    text-align: center;
  }


#s-71a56d96-41de-415c-a08a-884080165e07.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-71a56d96-41de-415c-a08a-884080165e07-root {
    text-align: center;
  }


#s-71a56d96-41de-415c-a08a-884080165e07.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-71a56d96-41de-415c-a08a-884080165e07-root {
    text-align: center;
  }


#s-71a56d96-41de-415c-a08a-884080165e07.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
}
  #s-71a56d96-41de-415c-a08a-884080165e07-root {
    text-align: center;
  }


#s-71a56d96-41de-415c-a08a-884080165e07.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}

#s-edd2bed5-fd08-4ac6-913c-707a3dc878db {
  padding-top: 15px;
padding-bottom: 15px;
min-height: 50px;
}








#s-edd2bed5-fd08-4ac6-913c-707a3dc878db > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-edd2bed5-fd08-4ac6-913c-707a3dc878db.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5f576a0b-60c1-4345-80f1-a12c91a6a5c5 {
  background-size: 0px 0px;
margin-top: 0px;
margin-left: 30%;
margin-bottom: 0px;
margin-right: 30%;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(20, 129, 195, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-5f576a0b-60c1-4345-80f1-a12c91a6a5c5:hover {box-shadow:1px 1px 10px 2px rgba(87, 87, 86, 1) !important;
border-style: solid !important;
border-top-width: 0px !important;
border-left-width: 0px !important;
border-bottom-width: 0px !important;
border-right-width: 0px !important;
border-color: rgba(87, 87, 86, 1) !important;
background-color: rgba(134, 188, 37, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-5f576a0b-60c1-4345-80f1-a12c91a6a5c5:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-5f576a0b-60c1-4345-80f1-a12c91a6a5c5-root {
    text-align: center;
  }


#s-5f576a0b-60c1-4345-80f1-a12c91a6a5c5.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-5f576a0b-60c1-4345-80f1-a12c91a6a5c5-root {
    text-align: center;
  }


#s-5f576a0b-60c1-4345-80f1-a12c91a6a5c5.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-5f576a0b-60c1-4345-80f1-a12c91a6a5c5-root {
    text-align: center;
  }


#s-5f576a0b-60c1-4345-80f1-a12c91a6a5c5.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-5f576a0b-60c1-4345-80f1-a12c91a6a5c5-root {
    text-align: center;
  }


#s-5f576a0b-60c1-4345-80f1-a12c91a6a5c5.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-5f576a0b-60c1-4345-80f1-a12c91a6a5c5-root {
    text-align: center;
  }


#s-5f576a0b-60c1-4345-80f1-a12c91a6a5c5.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
}
  #s-5f576a0b-60c1-4345-80f1-a12c91a6a5c5-root {
    text-align: center;
  }


#s-5f576a0b-60c1-4345-80f1-a12c91a6a5c5.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}

#s-8c2bab23-3e52-4343-b32b-7f8bf42d5bf5 {
  padding-top: 15px;
padding-bottom: 15px;
min-height: 50px;
}








#s-8c2bab23-3e52-4343-b32b-7f8bf42d5bf5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8c2bab23-3e52-4343-b32b-7f8bf42d5bf5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3ef4c442-0198-4519-bc36-2fe7fefe5474 {
  background-size: 0px 0px;
margin-top: 0px;
margin-left: 30%;
margin-bottom: 0px;
margin-right: 30%;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(20, 129, 195, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-3ef4c442-0198-4519-bc36-2fe7fefe5474:hover {box-shadow:1px 1px 10px 2px rgba(87, 87, 86, 1) !important;
border-style: solid !important;
border-top-width: 0px !important;
border-left-width: 0px !important;
border-bottom-width: 0px !important;
border-right-width: 0px !important;
border-color: rgba(87, 87, 86, 1) !important;
background-color: rgba(134, 188, 37, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-3ef4c442-0198-4519-bc36-2fe7fefe5474:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-3ef4c442-0198-4519-bc36-2fe7fefe5474-root {
    text-align: center;
  }


#s-3ef4c442-0198-4519-bc36-2fe7fefe5474.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-3ef4c442-0198-4519-bc36-2fe7fefe5474-root {
    text-align: center;
  }


#s-3ef4c442-0198-4519-bc36-2fe7fefe5474.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-3ef4c442-0198-4519-bc36-2fe7fefe5474-root {
    text-align: center;
  }


#s-3ef4c442-0198-4519-bc36-2fe7fefe5474.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-3ef4c442-0198-4519-bc36-2fe7fefe5474-root {
    text-align: center;
  }


#s-3ef4c442-0198-4519-bc36-2fe7fefe5474.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-3ef4c442-0198-4519-bc36-2fe7fefe5474-root {
    text-align: center;
  }


#s-3ef4c442-0198-4519-bc36-2fe7fefe5474.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}
}
  #s-3ef4c442-0198-4519-bc36-2fe7fefe5474-root {
    text-align: center;
  }


#s-3ef4c442-0198-4519-bc36-2fe7fefe5474.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  block ;
}

#s-ac87421a-b385-411a-b9a8-7e44f15bf477 {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-top: 15px;
padding-left: 0%;
padding-bottom: 30px;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 0px;
min-height: 50px;
background-color: rgba(247, 252, 253, 1);
}
@media (min-width: 1200px){#s-ac87421a-b385-411a-b9a8-7e44f15bf477 {
  display: none;
}
#s-ac87421a-b385-411a-b9a8-7e44f15bf477, #wrap-s-ac87421a-b385-411a-b9a8-7e44f15bf477 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ac87421a-b385-411a-b9a8-7e44f15bf477 {
  display: none;
}
#s-ac87421a-b385-411a-b9a8-7e44f15bf477, #wrap-s-ac87421a-b385-411a-b9a8-7e44f15bf477 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ac87421a-b385-411a-b9a8-7e44f15bf477 {
  display: none;
}
#s-ac87421a-b385-411a-b9a8-7e44f15bf477, #wrap-s-ac87421a-b385-411a-b9a8-7e44f15bf477 { display:none !important; }}







#s-ac87421a-b385-411a-b9a8-7e44f15bf477 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ac87421a-b385-411a-b9a8-7e44f15bf477.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ce9a2624-b37e-49c5-b6c1-6f2e98bece69 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ce9a2624-b37e-49c5-b6c1-6f2e98bece69 .shogun-heading-component h2 {
  color: rgba(3, 128, 196, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-560b7ae5-dbb0-4b3f-a4c4-010fcdb7f9df {
  margin-left: 5%;
margin-right: 5%;
padding-top: 10px;
padding-bottom: 10px;
}

#s-560b7ae5-dbb0-4b3f-a4c4-010fcdb7f9df .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-560b7ae5-dbb0-4b3f-a4c4-010fcdb7f9df .shg-sld-nav-button.shg-sld-left,
#s-560b7ae5-dbb0-4b3f-a4c4-010fcdb7f9df .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

@media (min-width: 0px) {
[id="s-dab8a8a6-732a-48bd-aa12-2577aba0a9df"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-dab8a8a6-732a-48bd-aa12-2577aba0a9df"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-dab8a8a6-732a-48bd-aa12-2577aba0a9df"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-dab8a8a6-732a-48bd-aa12-2577aba0a9df"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-b8937cfb-c36c-4271-8fcb-69ed01bab961 {
  padding-top: 15px;
}

#s-3fb699c3-b6d7-483f-bc69-b41ccb2aeed3 {
  margin-top: 18px;
margin-bottom: 18px;
min-height: 100%;
max-width: 100%;
}








#s-3fb699c3-b6d7-483f-bc69-b41ccb2aeed3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3fb699c3-b6d7-483f-bc69-b41ccb2aeed3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4d2739e9-684b-4512-aa28-bf5cdc4a8a15 {
  text-align: center;
}







  #s-4d2739e9-684b-4512-aa28-bf5cdc4a8a15 img.shogun-image {
    

    
    
    
  }


#s-4d2739e9-684b-4512-aa28-bf5cdc4a8a15 .shogun-image-content {
  
    align-items: center;
  
}

#s-910a4854-a159-4051-88bc-9a641e7c54ae {
  padding-top: 15px;
}

#s-d008a88b-bdd8-4006-89f0-9f7fb5dfc79e {
  padding-top: 15px;
}

#s-eca87a8c-ab7b-44ef-99fe-67f3949d89fa {
  padding-top: 15px;
}

#s-bbbe0a5b-40d6-45b7-9bae-8f57d97beed9 {
  padding-top: 15px;
}

@media (min-width: 0px) {
[id="s-28a518a3-2ae5-4760-9e54-331e10fcef72"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-28a518a3-2ae5-4760-9e54-331e10fcef72"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-28a518a3-2ae5-4760-9e54-331e10fcef72"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-28a518a3-2ae5-4760-9e54-331e10fcef72"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-d7634cd6-208c-41ba-b6f7-efbcb3a1a1bc {
  padding-top: 15px;
}

#s-857336f3-ab51-43d8-a26d-017fef38f919 {
  margin-top: 18px;
margin-bottom: 18px;
min-height: 100%;
max-width: 100%;
}








#s-857336f3-ab51-43d8-a26d-017fef38f919 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-857336f3-ab51-43d8-a26d-017fef38f919.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-577cb561-5e62-4e1c-b2f5-143e3092fc05 {
  text-align: center;
}







  #s-577cb561-5e62-4e1c-b2f5-143e3092fc05 img.shogun-image {
    

    
    
    
  }


#s-577cb561-5e62-4e1c-b2f5-143e3092fc05 .shogun-image-content {
  
    align-items: center;
  
}

#s-683d005f-6ccb-454d-951d-016209af8586 {
  padding-top: 15px;
}

#s-f15a65bc-9fe3-457e-9a8c-99afeeb10abd {
  padding-top: 15px;
}

#s-e5ef5150-d02c-4548-981a-7f1e5c54c9ec {
  padding-top: 15px;
}

#s-77e85527-5c18-4643-aff2-4c142f38fa6a {
  padding-top: 15px;
}

@media (min-width: 0px) {
[id="s-fe49c08e-33c7-40e7-9ddd-d57e60449d3c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fe49c08e-33c7-40e7-9ddd-d57e60449d3c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-fe49c08e-33c7-40e7-9ddd-d57e60449d3c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-fe49c08e-33c7-40e7-9ddd-d57e60449d3c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-7a41181e-3971-4923-ac20-d8e6b0c81cbe {
  padding-top: 15px;
}

#s-2c787292-865f-4eb3-8b93-6e0b5a809788 {
  margin-top: 18px;
margin-bottom: 18px;
min-height: 100%;
max-width: 100%;
}








#s-2c787292-865f-4eb3-8b93-6e0b5a809788 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2c787292-865f-4eb3-8b93-6e0b5a809788.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c85c5c5b-c67e-401b-9014-d40e412ff038 {
  text-align: center;
}







  #s-c85c5c5b-c67e-401b-9014-d40e412ff038 img.shogun-image {
    

    
    
    
  }


#s-c85c5c5b-c67e-401b-9014-d40e412ff038 .shogun-image-content {
  
    align-items: center;
  
}

#s-8d1636e7-d398-4eff-9de5-8a22f3f74b98 {
  padding-top: 15px;
}

#s-0f058728-4004-412d-8053-24f02e2432d9 {
  padding-top: 15px;
padding-left: 5%;
padding-right: 5%;
}

#s-bce7be4d-f31c-455c-a9c0-411d9ab19181 {
  padding-top: 15px;
}

#s-5ef0dc6b-8195-4a8f-b799-52e081934884 {
  padding-top: 15px;
}

#s-ab731caf-47d6-42aa-96e4-eaf50702d90d {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-top: 15px;
padding-left: 0%;
padding-bottom: 30px;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 0px;
min-height: 50px;
background-color: rgba(247, 252, 253, 1);
}
@media (min-width: 1200px){#s-ab731caf-47d6-42aa-96e4-eaf50702d90d {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ab731caf-47d6-42aa-96e4-eaf50702d90d {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-ab731caf-47d6-42aa-96e4-eaf50702d90d {
  
}
}@media (max-width: 767px){#s-ab731caf-47d6-42aa-96e4-eaf50702d90d {
  display: none;
}
#s-ab731caf-47d6-42aa-96e4-eaf50702d90d, #wrap-s-ab731caf-47d6-42aa-96e4-eaf50702d90d { display:none !important; }}







#s-ab731caf-47d6-42aa-96e4-eaf50702d90d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ab731caf-47d6-42aa-96e4-eaf50702d90d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2171fe6f-04cc-4db3-b68e-b8fc820387f0 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2171fe6f-04cc-4db3-b68e-b8fc820387f0 .shogun-heading-component h2 {
  color: rgba(3, 128, 196, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 48px;
  
  
  
}



#s-3c004947-0623-4fdd-b03d-37feb98fb53a {
  margin-left: 5%;
margin-right: 5%;
padding-top: 10px;
padding-bottom: 10px;
}

#s-3c004947-0623-4fdd-b03d-37feb98fb53a .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-3c004947-0623-4fdd-b03d-37feb98fb53a .shg-sld-nav-button.shg-sld-left,
#s-3c004947-0623-4fdd-b03d-37feb98fb53a .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

@media (min-width: 0px) {
[id="s-a3eba46d-5df7-425d-9c5e-69f9e208e2c1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a3eba46d-5df7-425d-9c5e-69f9e208e2c1"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-a3eba46d-5df7-425d-9c5e-69f9e208e2c1"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-a3eba46d-5df7-425d-9c5e-69f9e208e2c1"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-a3eba46d-5df7-425d-9c5e-69f9e208e2c1"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-a3eba46d-5df7-425d-9c5e-69f9e208e2c1"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-a3eba46d-5df7-425d-9c5e-69f9e208e2c1"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

}

#s-08c1f36f-d355-428e-b387-20ddd80f317d {
  padding-top: 15px;
}

#s-4097d995-aa7d-4ea1-b7d5-5f5c2c8b975c {
  margin-top: 18px;
margin-bottom: 18px;
min-height: 100%;
max-width: 100%;
}








#s-4097d995-aa7d-4ea1-b7d5-5f5c2c8b975c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4097d995-aa7d-4ea1-b7d5-5f5c2c8b975c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-54784d3b-a8b1-4e69-b798-dcb726b82a48 {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 10px;
text-align: center;
}







  #s-54784d3b-a8b1-4e69-b798-dcb726b82a48 img.shogun-image {
    

    
    
    
  }


#s-54784d3b-a8b1-4e69-b798-dcb726b82a48 .shogun-image-content {
  
    align-items: center;
  
}

#s-5e7a4ca5-6c59-4d6d-b7d7-973fb25b8157 {
  padding-top: 15px;
}

#s-01be3875-ad05-42b8-a699-bc1b8a041d75 {
  padding-top: 15px;
padding-left: 5%;
padding-right: 5%;
}

#s-64717e30-b524-4abc-a268-36fee0888c01 {
  padding-top: 15px;
}

#s-abc262bd-eaf5-46a1-9091-26c89c1c8e9f {
  padding-top: 15px;
}

@media (min-width: 0px) {
[id="s-1dc59417-8064-447e-aabe-d4d4c479338d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1dc59417-8064-447e-aabe-d4d4c479338d"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-1dc59417-8064-447e-aabe-d4d4c479338d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-1dc59417-8064-447e-aabe-d4d4c479338d"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-1dc59417-8064-447e-aabe-d4d4c479338d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-1dc59417-8064-447e-aabe-d4d4c479338d"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-1dc59417-8064-447e-aabe-d4d4c479338d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

}

#s-f5bd7779-5506-4f27-baa2-3598d856e15f {
  padding-top: 15px;
}

#s-7d8ed8e5-442f-401d-a419-fa2072eb8776 {
  margin-top: 18px;
margin-bottom: 18px;
min-height: 100%;
max-width: 100%;
}








#s-7d8ed8e5-442f-401d-a419-fa2072eb8776 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7d8ed8e5-442f-401d-a419-fa2072eb8776.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-57d187c0-98d1-48aa-8f0c-3cf592148aba {
  text-align: center;
}







  #s-57d187c0-98d1-48aa-8f0c-3cf592148aba img.shogun-image {
    

    
    
    
  }


#s-57d187c0-98d1-48aa-8f0c-3cf592148aba .shogun-image-content {
  
    align-items: center;
  
}

#s-58d33dd3-f9dc-475d-a86f-3df8bf7367b6 {
  padding-top: 15px;
}

#s-ebdff1b0-42d5-45c3-952a-67998f2b90b9 {
  padding-top: 15px;
padding-left: 5%;
padding-right: 5%;
}

#s-929364ea-a6c1-4d81-8c67-e5e1b626db66 {
  padding-top: 15px;
}

#s-4d9efdb1-7423-427a-82a3-bd219b57cb60 {
  padding-top: 15px;
}

@media (min-width: 0px) {
[id="s-1131c8a8-606c-4745-b70c-0876b7af234e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1131c8a8-606c-4745-b70c-0876b7af234e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-1131c8a8-606c-4745-b70c-0876b7af234e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-1131c8a8-606c-4745-b70c-0876b7af234e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-1131c8a8-606c-4745-b70c-0876b7af234e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-1131c8a8-606c-4745-b70c-0876b7af234e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-1131c8a8-606c-4745-b70c-0876b7af234e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

}

#s-1e228827-a980-410f-b809-844c26bdc533 {
  padding-top: 15px;
}

#s-0a7a04c6-2601-45b1-936d-9f086a4b33f4 {
  margin-top: 18px;
margin-bottom: 18px;
min-height: 100%;
max-width: 100%;
}








#s-0a7a04c6-2601-45b1-936d-9f086a4b33f4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0a7a04c6-2601-45b1-936d-9f086a4b33f4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d84855dc-5be1-402a-bdf5-1386ba216f2e {
  text-align: center;
}







  #s-d84855dc-5be1-402a-bdf5-1386ba216f2e img.shogun-image {
    

    
    
    
  }


#s-d84855dc-5be1-402a-bdf5-1386ba216f2e .shogun-image-content {
  
    align-items: center;
  
}

#s-0d9f7b02-22a1-4a69-9b12-7e393f34efb1 {
  padding-top: 15px;
}

#s-694dde54-5312-4dda-af49-2f256a60b231 {
  padding-top: 15px;
}

#s-f8126e61-d639-4a60-871d-fe625a04985a {
  padding-top: 15px;
}

#s-7223a042-b12a-433f-a935-3b97f6d52cfd {
  padding-top: 15px;
}

@media (min-width: 0px) {
[id="s-251457d7-58a1-4192-a244-e94bfaa3d2d5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-251457d7-58a1-4192-a244-e94bfaa3d2d5"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-251457d7-58a1-4192-a244-e94bfaa3d2d5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-251457d7-58a1-4192-a244-e94bfaa3d2d5"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-251457d7-58a1-4192-a244-e94bfaa3d2d5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-251457d7-58a1-4192-a244-e94bfaa3d2d5"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-251457d7-58a1-4192-a244-e94bfaa3d2d5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

}

#s-c0f00a6c-d106-4124-80fa-411c6e30972e {
  padding-top: 15px;
}

#s-186f5f33-eaa0-486a-b1bd-c1eea8a23326 {
  margin-top: 18px;
margin-bottom: 18px;
min-height: 100%;
max-width: 100%;
}








#s-186f5f33-eaa0-486a-b1bd-c1eea8a23326 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-186f5f33-eaa0-486a-b1bd-c1eea8a23326.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-919720ee-9569-4b10-aa5a-0663d382c787 {
  text-align: center;
}







  #s-919720ee-9569-4b10-aa5a-0663d382c787 img.shogun-image {
    

    
    
    
  }


#s-919720ee-9569-4b10-aa5a-0663d382c787 .shogun-image-content {
  
    align-items: center;
  
}

#s-35deb132-b193-4494-b53e-6fae13b00ff4 {
  padding-top: 15px;
}

#s-94f3ffed-58ad-4571-9ca2-ed9e982cd827 {
  padding-top: 15px;
}

#s-7b9e060a-d956-4c7f-acc2-95fc5230bdb7 {
  padding-top: 15px;
}

#s-c07aa799-5ad3-434f-bc4e-c77c01ead5e7 {
  padding-top: 15px;
}

#s-ebbbd2ea-ae60-43c5-9320-866aa25ea49f {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-ebbbd2ea-ae60-43c5-9320-866aa25ea49f {
  display: none;
}
#s-ebbbd2ea-ae60-43c5-9320-866aa25ea49f, #wrap-s-ebbbd2ea-ae60-43c5-9320-866aa25ea49f { display:none !important; }}@media (max-width: 767px){#s-ebbbd2ea-ae60-43c5-9320-866aa25ea49f {
  display: none;
}
#s-ebbbd2ea-ae60-43c5-9320-866aa25ea49f, #wrap-s-ebbbd2ea-ae60-43c5-9320-866aa25ea49f { display:none !important; }}







#s-ebbbd2ea-ae60-43c5-9320-866aa25ea49f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ebbbd2ea-ae60-43c5-9320-866aa25ea49f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-76a611d4-6ef4-4fb9-b584-cf0dbec2fafc {
  margin-top: 30px;
padding-left: 10%;
padding-right: 10%;
border-radius: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-76a611d4-6ef4-4fb9-b584-cf0dbec2fafc {
  display: none;
}
#s-76a611d4-6ef4-4fb9-b584-cf0dbec2fafc, #wrap-s-76a611d4-6ef4-4fb9-b584-cf0dbec2fafc { display:none !important; }}@media (max-width: 767px){#s-76a611d4-6ef4-4fb9-b584-cf0dbec2fafc {
  display: none;
}
#s-76a611d4-6ef4-4fb9-b584-cf0dbec2fafc, #wrap-s-76a611d4-6ef4-4fb9-b584-cf0dbec2fafc { display:none !important; }}






  #s-76a611d4-6ef4-4fb9-b584-cf0dbec2fafc img.shogun-image {
    

    
    
    
  }


#s-76a611d4-6ef4-4fb9-b584-cf0dbec2fafc .shogun-image-content {
  
    align-items: center;
  
}

#s-932efc70-1555-4c35-81cd-ef65c75ba4a7 {
  margin-top: 30px;
margin-left: 15%;
margin-bottom: 30px;
margin-right: 15%;
padding-left: 10%;
padding-right: 10%;
}

@media (min-width: 0px) {
[id="s-932efc70-1555-4c35-81cd-ef65c75ba4a7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-932efc70-1555-4c35-81cd-ef65c75ba4a7"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-932efc70-1555-4c35-81cd-ef65c75ba4a7"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-932efc70-1555-4c35-81cd-ef65c75ba4a7"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-36e81c99-91a1-4176-99c3-90d3a2534335 {
  box-shadow:1px 1px 10px 3px rgba(189, 189, 189, 1);
margin-left: 0%;
margin-right: 0%;
padding-top: 15px;
padding-left: 5%;
padding-bottom: 15px;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(3, 128, 196, 1);
border-style: solid;
border-radius: 10px;
min-height: 50px;
background-color: rgba(134, 188, 37, 1);
}








#s-36e81c99-91a1-4176-99c3-90d3a2534335 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-36e81c99-91a1-4176-99c3-90d3a2534335 {
  cursor: pointer;
}#s-36e81c99-91a1-4176-99c3-90d3a2534335.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1d19bd48-70cf-4d2e-8de6-3edeaac08262 {
  text-align: center;
}







  #s-1d19bd48-70cf-4d2e-8de6-3edeaac08262 img.shogun-image {
    

    
    
    
  }


#s-1d19bd48-70cf-4d2e-8de6-3edeaac08262 .shogun-image-content {
  
    align-items: center;
  
}

#s-a3044475-a8f8-46d8-9dac-b8a47654bd07 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a3044475-a8f8-46d8-9dac-b8a47654bd07 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-864a2cfe-f128-4970-aa76-404e7b9e2208 {
  box-shadow:1px 1px 10px 3px rgba(189, 189, 189, 1);
margin-left: 0%;
margin-right: 0%;
padding-top: 15px;
padding-left: 5%;
padding-bottom: 15px;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(3, 128, 196, 1);
border-style: solid;
border-radius: 10px;
min-height: 50px;
background-color: rgba(230, 240, 218, 1);
}








#s-864a2cfe-f128-4970-aa76-404e7b9e2208 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-864a2cfe-f128-4970-aa76-404e7b9e2208 {
  cursor: pointer;
}#s-864a2cfe-f128-4970-aa76-404e7b9e2208.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-52fbb7e0-8c05-4e46-8e62-aa56068f28ca {
  text-align: center;
}







  #s-52fbb7e0-8c05-4e46-8e62-aa56068f28ca img.shogun-image {
    

    
    
    
  }


#s-52fbb7e0-8c05-4e46-8e62-aa56068f28ca .shogun-image-content {
  
    align-items: center;
  
}

#s-8e983dea-0dbd-499d-b303-0048cd514668 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8e983dea-0dbd-499d-b303-0048cd514668 .shogun-heading-component h3 {
  color: rgba(134, 188, 37, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-6ebb07fd-3439-4122-bfbd-00b62d264410 {
  box-shadow:1px 1px 10px 3px rgba(189, 189, 189, 1);
margin-left: 0%;
margin-right: 0%;
padding-top: 15px;
padding-left: 5%;
padding-bottom: 15px;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(3, 128, 196, 1);
border-style: solid;
border-radius: 10px;
min-height: 50px;
background-color: rgba(134, 188, 37, 1);
}








#s-6ebb07fd-3439-4122-bfbd-00b62d264410 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6ebb07fd-3439-4122-bfbd-00b62d264410 {
  cursor: pointer;
}#s-6ebb07fd-3439-4122-bfbd-00b62d264410.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9487f018-3aa8-40cc-9579-385cee9fc6c3 {
  text-align: center;
}







  #s-9487f018-3aa8-40cc-9579-385cee9fc6c3 img.shogun-image {
    

    
    
    
  }


#s-9487f018-3aa8-40cc-9579-385cee9fc6c3 .shogun-image-content {
  
    align-items: center;
  
}

#s-c5b0b602-78de-4be0-95ad-4c8319fd9def {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c5b0b602-78de-4be0-95ad-4c8319fd9def .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-1389771f-cefe-499e-9f1d-24706d0e9ad6 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-1389771f-cefe-499e-9f1d-24706d0e9ad6 {
  display: none;
}
#s-1389771f-cefe-499e-9f1d-24706d0e9ad6, #wrap-s-1389771f-cefe-499e-9f1d-24706d0e9ad6 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1389771f-cefe-499e-9f1d-24706d0e9ad6 {
  display: none;
}
#s-1389771f-cefe-499e-9f1d-24706d0e9ad6, #wrap-s-1389771f-cefe-499e-9f1d-24706d0e9ad6 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1389771f-cefe-499e-9f1d-24706d0e9ad6 {
  display: none;
}
#s-1389771f-cefe-499e-9f1d-24706d0e9ad6, #wrap-s-1389771f-cefe-499e-9f1d-24706d0e9ad6 { display:none !important; }}







#s-1389771f-cefe-499e-9f1d-24706d0e9ad6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1389771f-cefe-499e-9f1d-24706d0e9ad6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c688fd95-8650-43fb-aded-9055cd6b716f {
  margin-top: 15px;
padding-left: 10%;
padding-right: 10%;
border-radius: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-c688fd95-8650-43fb-aded-9055cd6b716f {
  display: none;
}
#s-c688fd95-8650-43fb-aded-9055cd6b716f, #wrap-s-c688fd95-8650-43fb-aded-9055cd6b716f { display:none !important; }}@media (max-width: 767px){#s-c688fd95-8650-43fb-aded-9055cd6b716f {
  display: none;
}
#s-c688fd95-8650-43fb-aded-9055cd6b716f, #wrap-s-c688fd95-8650-43fb-aded-9055cd6b716f { display:none !important; }}






  #s-c688fd95-8650-43fb-aded-9055cd6b716f img.shogun-image {
    

    
    
    
  }


#s-c688fd95-8650-43fb-aded-9055cd6b716f .shogun-image-content {
  
    align-items: center;
  
}

#s-6bf8ec5b-6ecc-4291-99c1-9614132a5234 {
  margin-top: 30px;
margin-left: 15%;
margin-bottom: 30px;
margin-right: 15%;
padding-left: 10%;
padding-right: 10%;
}

@media (min-width: 0px) {
[id="s-6bf8ec5b-6ecc-4291-99c1-9614132a5234"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6bf8ec5b-6ecc-4291-99c1-9614132a5234"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-6bf8ec5b-6ecc-4291-99c1-9614132a5234"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-6bf8ec5b-6ecc-4291-99c1-9614132a5234"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-22efb13e-502a-49bb-a0c6-e2f47ee48c91 {
  margin-bottom: 30px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-22efb13e-502a-49bb-a0c6-e2f47ee48c91 {
  display: none;
}
#s-22efb13e-502a-49bb-a0c6-e2f47ee48c91, #wrap-s-22efb13e-502a-49bb-a0c6-e2f47ee48c91 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-22efb13e-502a-49bb-a0c6-e2f47ee48c91 {
  display: none;
}
#s-22efb13e-502a-49bb-a0c6-e2f47ee48c91, #wrap-s-22efb13e-502a-49bb-a0c6-e2f47ee48c91 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-22efb13e-502a-49bb-a0c6-e2f47ee48c91 {
  display: none;
}
#s-22efb13e-502a-49bb-a0c6-e2f47ee48c91, #wrap-s-22efb13e-502a-49bb-a0c6-e2f47ee48c91 { display:none !important; }}






  #s-22efb13e-502a-49bb-a0c6-e2f47ee48c91 img.shogun-image {
    

    
    
    
  }


#s-22efb13e-502a-49bb-a0c6-e2f47ee48c91 .shogun-image-content {
  
    align-items: center;
  
}

#s-03a7ff27-84b3-4c47-8d88-4eefbce6286a {
  box-shadow:1px 1px 10px 3px rgba(189, 189, 189, 1);
margin-left: 0%;
margin-right: 0%;
padding-top: 15px;
padding-left: 5%;
padding-bottom: 15px;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(3, 128, 196, 1);
border-style: solid;
border-radius: 10px;
min-height: 50px;
background-color: rgba(134, 188, 37, 1);
}








#s-03a7ff27-84b3-4c47-8d88-4eefbce6286a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-03a7ff27-84b3-4c47-8d88-4eefbce6286a {
  cursor: pointer;
}#s-03a7ff27-84b3-4c47-8d88-4eefbce6286a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-58110143-dcb4-4476-b183-22b50efff5e9 {
  text-align: center;
}







  #s-58110143-dcb4-4476-b183-22b50efff5e9 img.shogun-image {
    

    
    
    
  }


#s-58110143-dcb4-4476-b183-22b50efff5e9 .shogun-image-content {
  
    align-items: center;
  
}

#s-131973a8-a546-4578-a87a-298f6ea1b1d1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-131973a8-a546-4578-a87a-298f6ea1b1d1 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-d68c86d8-6339-4023-be0b-bf2cdbbd9283 {
  box-shadow:1px 1px 10px 3px rgba(189, 189, 189, 1);
margin-top: 30px;
margin-left: 0%;
margin-bottom: 30px;
margin-right: 0%;
padding-top: 15px;
padding-left: 5%;
padding-bottom: 15px;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(3, 128, 196, 1);
border-style: solid;
border-radius: 10px;
min-height: 50px;
background-color: rgba(230, 240, 218, 1);
}








#s-d68c86d8-6339-4023-be0b-bf2cdbbd9283 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d68c86d8-6339-4023-be0b-bf2cdbbd9283 {
  cursor: pointer;
}#s-d68c86d8-6339-4023-be0b-bf2cdbbd9283.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0c82534c-eabf-4e1f-9904-a0552a5699b6 {
  text-align: center;
}







  #s-0c82534c-eabf-4e1f-9904-a0552a5699b6 img.shogun-image {
    

    
    
    
  }


#s-0c82534c-eabf-4e1f-9904-a0552a5699b6 .shogun-image-content {
  
    align-items: center;
  
}

#s-a8ed3adc-af87-4ee4-a061-350c99508e7b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a8ed3adc-af87-4ee4-a061-350c99508e7b .shogun-heading-component h3 {
  color: rgba(134, 188, 37, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-edb05631-415e-4182-b42c-30bbce2d08a6 {
  box-shadow:1px 1px 10px 3px rgba(189, 189, 189, 1);
margin-left: 0%;
margin-right: 0%;
padding-top: 15px;
padding-left: 5%;
padding-bottom: 15px;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(3, 128, 196, 1);
border-style: solid;
border-radius: 10px;
min-height: 50px;
background-color: rgba(134, 188, 37, 1);
}








#s-edb05631-415e-4182-b42c-30bbce2d08a6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-edb05631-415e-4182-b42c-30bbce2d08a6 {
  cursor: pointer;
}#s-edb05631-415e-4182-b42c-30bbce2d08a6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a97e09ba-dcc6-4bc5-8bef-3972ec336a91 {
  text-align: center;
}







  #s-a97e09ba-dcc6-4bc5-8bef-3972ec336a91 img.shogun-image {
    

    
    
    
  }


#s-a97e09ba-dcc6-4bc5-8bef-3972ec336a91 .shogun-image-content {
  
    align-items: center;
  
}

#s-ac7477ae-1fd3-45e9-aa72-71d40349f239 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ac7477ae-1fd3-45e9-aa72-71d40349f239 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-11a26d51-4a2a-48db-bb05-68b533d9ad58 {
  padding-top: 30px;
min-height: 50px;
}
@media (min-width: 1200px){#s-11a26d51-4a2a-48db-bb05-68b533d9ad58 {
  display: none;
}
#s-11a26d51-4a2a-48db-bb05-68b533d9ad58, #wrap-s-11a26d51-4a2a-48db-bb05-68b533d9ad58 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-11a26d51-4a2a-48db-bb05-68b533d9ad58 {
  display: none;
}
#s-11a26d51-4a2a-48db-bb05-68b533d9ad58, #wrap-s-11a26d51-4a2a-48db-bb05-68b533d9ad58 { display:none !important; }}@media (max-width: 767px){#s-11a26d51-4a2a-48db-bb05-68b533d9ad58 {
  display: none;
}
#s-11a26d51-4a2a-48db-bb05-68b533d9ad58, #wrap-s-11a26d51-4a2a-48db-bb05-68b533d9ad58 { display:none !important; }}







#s-11a26d51-4a2a-48db-bb05-68b533d9ad58 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-11a26d51-4a2a-48db-bb05-68b533d9ad58.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1121e588-2970-443e-9800-4b0bcdd76b9b {
  margin-top: 15px;
padding-left: 10%;
padding-right: 10%;
border-radius: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-1121e588-2970-443e-9800-4b0bcdd76b9b {
  display: none;
}
#s-1121e588-2970-443e-9800-4b0bcdd76b9b, #wrap-s-1121e588-2970-443e-9800-4b0bcdd76b9b { display:none !important; }}@media (max-width: 767px){#s-1121e588-2970-443e-9800-4b0bcdd76b9b {
  display: none;
}
#s-1121e588-2970-443e-9800-4b0bcdd76b9b, #wrap-s-1121e588-2970-443e-9800-4b0bcdd76b9b { display:none !important; }}






  #s-1121e588-2970-443e-9800-4b0bcdd76b9b img.shogun-image {
    

    
    
    
  }


#s-1121e588-2970-443e-9800-4b0bcdd76b9b .shogun-image-content {
  
    align-items: center;
  
}

#s-e881f898-61e2-4d07-b730-b0485815412f {
  margin-left: 10%;
margin-right: 10%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-e881f898-61e2-4d07-b730-b0485815412f {
  display: none;
}
#s-e881f898-61e2-4d07-b730-b0485815412f, #wrap-s-e881f898-61e2-4d07-b730-b0485815412f { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e881f898-61e2-4d07-b730-b0485815412f {
  display: none;
}
#s-e881f898-61e2-4d07-b730-b0485815412f, #wrap-s-e881f898-61e2-4d07-b730-b0485815412f { display:none !important; }}@media (max-width: 767px){#s-e881f898-61e2-4d07-b730-b0485815412f {
  display: none;
}
#s-e881f898-61e2-4d07-b730-b0485815412f, #wrap-s-e881f898-61e2-4d07-b730-b0485815412f { display:none !important; }}






  #s-e881f898-61e2-4d07-b730-b0485815412f img.shogun-image {
    

    
    
    
  }


#s-e881f898-61e2-4d07-b730-b0485815412f .shogun-image-content {
  
    align-items: center;
  
}

#s-1dbc13b5-ba7d-425a-bb57-a977aaa7123f {
  margin-top: 30px;
margin-left: 0%;
margin-bottom: 30px;
margin-right: 0%;
padding-left: 10%;
padding-right: 10%;
}

@media (min-width: 0px) {
[id="s-1dbc13b5-ba7d-425a-bb57-a977aaa7123f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1dbc13b5-ba7d-425a-bb57-a977aaa7123f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-1dbc13b5-ba7d-425a-bb57-a977aaa7123f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-1dbc13b5-ba7d-425a-bb57-a977aaa7123f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-8f498f63-d50f-4487-a937-97c9a64a696a {
  box-shadow:1px 1px 10px 3px rgba(189, 189, 189, 1);
margin-left: 0%;
margin-right: 0%;
padding-top: 15px;
padding-left: 5%;
padding-bottom: 15px;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(3, 128, 196, 1);
border-style: solid;
border-radius: 10px;
min-height: 50px;
background-color: rgba(134, 188, 37, 1);
}








#s-8f498f63-d50f-4487-a937-97c9a64a696a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8f498f63-d50f-4487-a937-97c9a64a696a {
  cursor: pointer;
}#s-8f498f63-d50f-4487-a937-97c9a64a696a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6d3ff393-f9a9-438f-ad8d-eeb8af02e79f {
  text-align: center;
}







  #s-6d3ff393-f9a9-438f-ad8d-eeb8af02e79f img.shogun-image {
    

    
    
    
  }


#s-6d3ff393-f9a9-438f-ad8d-eeb8af02e79f .shogun-image-content {
  
    align-items: center;
  
}

#s-282858fa-45ec-4244-a4c6-123eb25f0f5f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-282858fa-45ec-4244-a4c6-123eb25f0f5f .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-97dd6cc2-431d-4cb6-8b8a-00aa98577598 {
  box-shadow:1px 1px 10px 3px rgba(189, 189, 189, 1);
margin-left: 0%;
margin-right: 0%;
padding-top: 15px;
padding-left: 5%;
padding-bottom: 15px;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(3, 128, 196, 1);
border-style: solid;
border-radius: 10px;
min-height: 50px;
background-color: rgba(230, 240, 218, 1);
}








#s-97dd6cc2-431d-4cb6-8b8a-00aa98577598 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-97dd6cc2-431d-4cb6-8b8a-00aa98577598 {
  cursor: pointer;
}#s-97dd6cc2-431d-4cb6-8b8a-00aa98577598.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a0d35c54-82f4-4a02-8dc6-81c3b3064fb2 {
  text-align: center;
}







  #s-a0d35c54-82f4-4a02-8dc6-81c3b3064fb2 img.shogun-image {
    

    
    
    
  }


#s-a0d35c54-82f4-4a02-8dc6-81c3b3064fb2 .shogun-image-content {
  
    align-items: center;
  
}

#s-df1eae21-8e8d-453f-8e27-a9d731705255 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-df1eae21-8e8d-453f-8e27-a9d731705255 .shogun-heading-component h3 {
  color: rgba(134, 188, 37, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-13ef8fcb-8c7a-4a1c-b5eb-f2e8a8af77d3 {
  box-shadow:1px 1px 10px 3px rgba(189, 189, 189, 1);
margin-left: 0%;
margin-right: 0%;
padding-top: 15px;
padding-left: 5%;
padding-bottom: 15px;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(3, 128, 196, 1);
border-style: solid;
border-radius: 10px;
min-height: 50px;
background-color: rgba(134, 188, 37, 1);
}








#s-13ef8fcb-8c7a-4a1c-b5eb-f2e8a8af77d3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-13ef8fcb-8c7a-4a1c-b5eb-f2e8a8af77d3 {
  cursor: pointer;
}#s-13ef8fcb-8c7a-4a1c-b5eb-f2e8a8af77d3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-af8fca20-92b6-48bf-875a-e657eb8ca5db {
  text-align: center;
}







  #s-af8fca20-92b6-48bf-875a-e657eb8ca5db img.shogun-image {
    

    
    
    
  }


#s-af8fca20-92b6-48bf-875a-e657eb8ca5db .shogun-image-content {
  
    align-items: center;
  
}

#s-4c9e3ed4-ec40-4e59-a962-648c17545d80 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4c9e3ed4-ec40-4e59-a962-648c17545d80 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



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

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

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

.shogun-root iframe {
  display: initial;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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