.shogun-accordion-wrapper .shogun-accordion {
  margin-bottom: 0;
  border-radius: 4px;
}

.shogun-accordion {
  margin-bottom: 20px;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.shogun-accordion-wrapper .shogun-accordion + .shogun-accordion {
  margin-top: 5px;
}

.shogun-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.shogun-accordion-heading {
  color: #333;
  border-bottom: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  cursor: pointer;
}

.shogun-accordion-title {
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer;
  text-decoration: none;
  flex: 1;
  user-select: none;
}

.shogun-accordion-body {
  display: none;
  opacity: 0;
  transition: opacity 0.5s linear;
}

.shogun-accordion-body.shogun-accordion-active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.shogun-accordion-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1.2em;
}

.shogun-accordion-icon > span {
  transition: 0.3s transform;
  position: absolute;
  right: 0;
  font-size: 1.2em;
}

.shogun-accordion-icon.shogun-icon-chevron > span::after {
  content: "▸";
}

.shogun-accordion.shogun-accordion-active
  > .shogun-accordion-heading
  .shogun-accordion-icon.shogun-icon-chevron
  > span {
  transform: rotate(90deg);
}

.shogun-accordion-icon.shogun-icon-plus > span::after {
  content: "＋";
}

.shogun-accordion.shogun-accordion-active
  > .shogun-accordion-heading
  .shogun-accordion-icon.shogun-icon-plus
  > span {
  transform: rotate(-225deg);
}

#s-001a9f5b-c9a0-4e08-9786-a10d833f69a9 {
  opacity: 1;
}

#s-001a9f5b-c9a0-4e08-9786-a10d833f69a9 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(255, 255, 255, 1);
}

#s-001a9f5b-c9a0-4e08-9786-a10d833f69a9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(245, 245, 245, 1);
  padding: 10px;
}

#s-001a9f5b-c9a0-4e08-9786-a10d833f69a9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(2, 167, 233, 1);
}

#s-001a9f5b-c9a0-4e08-9786-a10d833f69a9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-001a9f5b-c9a0-4e08-9786-a10d833f69a9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(2, 167, 233, 1);
  text-align: left;
  font-family: Open Sans;
  font-weight: 700;
  font-style: ;
  font-size: 18px;
}

#s-001a9f5b-c9a0-4e08-9786-a10d833f69a9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 18px;
}
.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-466ad2f9-06ab-468a-b55e-8d75100f9dfb {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(238, 237, 237, 1);
}








#s-466ad2f9-06ab-468a-b55e-8d75100f9dfb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-466ad2f9-06ab-468a-b55e-8d75100f9dfb.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-238620be-c44f-42dd-9c7d-860bc89387e1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-238620be-c44f-42dd-9c7d-860bc89387e1 .shogun-heading-component h2 {
  color: rgba(89, 89, 89, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-177ea47b-8ddd-428f-a92f-bd1b10a32bf6 {
  min-height: 50px;
}








#s-177ea47b-8ddd-428f-a92f-bd1b10a32bf6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-177ea47b-8ddd-428f-a92f-bd1b10a32bf6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-height: inherit;
  max-height: inherit;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.shg-row > * {
  min-height: inherit;
  max-height: inherit;
}

[class*=shg-c-xs],
[class*=shg-c-sm],
[class*=shg-c-md],
[class*=shg-c-lg] {
  position: relative;
}

@media (min-width: 0px) {
[id="s-9007f946-4e07-4a6f-815f-1269344d8e7e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9007f946-4e07-4a6f-815f-1269344d8e7e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9007f946-4e07-4a6f-815f-1269344d8e7e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9007f946-4e07-4a6f-815f-1269344d8e7e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

.shogun-image-container {
  position: relative;
}

.shogun-image-container.shg-align-left {
  text-align: left;
}

.shogun-image-container.shg-align-center {
  text-align: center;
}

.shogun-image-container.shg-align-right {
  text-align: right;
}

.shogun-image-linked {
  cursor: pointer;
}

.shogun-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.shogun-image-overlay.shg-top-left {
  align-items: flex-start;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-top-center {
  align-items: flex-start;
  justify-content: center;
}

.shogun-image-overlay.shg-top-right {
  align-items: flex-start;
  justify-content: flex-end;
}

.shogun-image-overlay.shg-middle-left {
  align-items: center;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-middle-center {
  align-items: center;
  justify-content: center;
}

.shogun-image-overlay.shg-middle-right {
  align-items: center;
  justify-content: flex-end;
}

.shogun-image-overlay.shg-bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-bottom-center {
  align-items: flex-end;
  justify-content: center;
}

.shogun-image-overlay.shg-bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}

.shogun-image-overlay p {
  margin: 0;
  padding: 0;
  line-height: normal;
}

.shogun-image-cover {
  object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
}

.shogun-image-contain {
  font-family: "object-fit: contain;";
  object-fit: contain;
  width: 100%;
}

.shogun-image-link {
  display: block;
  min-height: inherit;
  max-height: inherit;
}

img.shogun-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.shogun-image-content {
  display: flex;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.shogun-image-content-linked,
.shogun-image-content-not-linked {
  pointer-events: none;
}

.shogun-image-content-not-linked > div {
  pointer-events: auto;
}

.shogun-image-content-linked a,
.shogun-image-content-linked button,
.shogun-image-content-linked iframe,
.shogun-image-content-linked .shg-box-linked {
  pointer-events: auto;
}

.shogun-image-content > div {
  width: 100%;
}

.shogun-image-content-top {
  align-items: flex-start;
}

.shogun-image-content-center {
  align-items: center;
}

.shogun-image-content-bottom {
  align-items: flex-end;
}

.shogun-image.hover {
  opacity: 0;
  z-index: 200;
  position: absolute;
  left: 0;
  top: 0;
}

.shogun-image.hover:hover {
  opacity: 1;
}

#s-467d2633-2d1f-43bd-8a8b-156387dbc886 {
  text-align: center;
}







  #s-467d2633-2d1f-43bd-8a8b-156387dbc886 img.shogun-image {
    

    
    
    
  }


#s-467d2633-2d1f-43bd-8a8b-156387dbc886 .shogun-image-content {
  
    align-items: center;
  
}

#s-5eec1bc1-063e-4713-9d29-ffd34af49c76 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-5eec1bc1-063e-4713-9d29-ffd34af49c76 .shogun-heading-component h4 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 16px;
  
  
  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: ;
}

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

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

#s-06260014-a1ec-4650-97ae-46ef45a2eb76 hr {
  border-top: 2px solid #ddd;
}

@media (min-width: 0px) {
[id="s-fef4e41b-46bf-4856-8442-77bf62fde84e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fef4e41b-46bf-4856-8442-77bf62fde84e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-fef4e41b-46bf-4856-8442-77bf62fde84e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-fef4e41b-46bf-4856-8442-77bf62fde84e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-56147792-8675-4329-88a0-1017158ca5fc {
  text-align: center;
}







  #s-56147792-8675-4329-88a0-1017158ca5fc img.shogun-image {
    

    
    
    
  }


#s-56147792-8675-4329-88a0-1017158ca5fc .shogun-image-content {
  
    align-items: center;
  
}

#s-13fefcae-420d-492f-877c-95ff6299856b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-13fefcae-420d-492f-877c-95ff6299856b .shogun-heading-component h4 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: left;
}



#s-f5f0ecd5-cc22-4c4f-a8a1-60f6df8ce97f hr {
  border-top: 2px solid #ddd;
}

#s-02501af1-9901-4456-b15e-f6dd16b9c27e {
  min-height: 50px;
}








#s-02501af1-9901-4456-b15e-f6dd16b9c27e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-02501af1-9901-4456-b15e-f6dd16b9c27e.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-618728f2-c740-4d83-9a9d-3cd6b90e1c87"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-618728f2-c740-4d83-9a9d-3cd6b90e1c87"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-618728f2-c740-4d83-9a9d-3cd6b90e1c87"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-618728f2-c740-4d83-9a9d-3cd6b90e1c87"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-2251c411-1829-4a73-b5b2-bd88515f00f0 {
  text-align: center;
}







  #s-2251c411-1829-4a73-b5b2-bd88515f00f0 img.shogun-image {
    

    
    
    
  }


#s-2251c411-1829-4a73-b5b2-bd88515f00f0 .shogun-image-content {
  
    align-items: center;
  
}

#s-e274db7e-c504-42ee-8857-0a8a1ebf0cea {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-e274db7e-c504-42ee-8857-0a8a1ebf0cea .shogun-heading-component h4 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: left;
}



#s-d5bfb51d-27e5-49d8-8455-0baa4e9ad90e {
  text-align: center;
}







  #s-d5bfb51d-27e5-49d8-8455-0baa4e9ad90e img.shogun-image {
    

    
    
    
  }


#s-d5bfb51d-27e5-49d8-8455-0baa4e9ad90e .shogun-image-content {
  
    align-items: center;
  
}

#s-16e942fd-9ab1-4397-b60a-0b0fd655daee {
  min-height: 50px;
}








#s-16e942fd-9ab1-4397-b60a-0b0fd655daee > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-16e942fd-9ab1-4397-b60a-0b0fd655daee.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-19a390be-234f-420f-bdd9-418bbfb1b6a7 {
  min-height: 50px;
}








#s-19a390be-234f-420f-bdd9-418bbfb1b6a7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-19a390be-234f-420f-bdd9-418bbfb1b6a7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5fe43a35-9643-4051-b667-798304633c4c {
  min-height: 50px;
}








#s-5fe43a35-9643-4051-b667-798304633c4c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5fe43a35-9643-4051-b667-798304633c4c.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-3b72e87d-cf5e-4465-91cf-29b605ac1a16"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3b72e87d-cf5e-4465-91cf-29b605ac1a16"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-3b72e87d-cf5e-4465-91cf-29b605ac1a16"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-3b72e87d-cf5e-4465-91cf-29b605ac1a16"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-3b72e87d-cf5e-4465-91cf-29b605ac1a16"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-3b72e87d-cf5e-4465-91cf-29b605ac1a16"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-3b72e87d-cf5e-4465-91cf-29b605ac1a16"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-6a793745-6a00-4d0a-9cec-d0732154ed5f {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-d6213060-5f0a-45c8-9605-e4a8f518eb2b {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-958a4637-0502-44cf-87ae-ab889aa06927"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-958a4637-0502-44cf-87ae-ab889aa06927"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-958a4637-0502-44cf-87ae-ab889aa06927"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-958a4637-0502-44cf-87ae-ab889aa06927"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-958a4637-0502-44cf-87ae-ab889aa06927"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-958a4637-0502-44cf-87ae-ab889aa06927"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-958a4637-0502-44cf-87ae-ab889aa06927"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-f5e6e63f-1d8a-4ad6-9810-891944b5e847 {
  padding-top: 18px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-4fa2e607-60fe-4a91-a05d-e319b84912e5 {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

#s-e58709bf-c6e8-4799-bea3-cf2e192f599e {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-e58709bf-c6e8-4799-bea3-cf2e192f599e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e58709bf-c6e8-4799-bea3-cf2e192f599e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-e58709bf-c6e8-4799-bea3-cf2e192f599e"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-e58709bf-c6e8-4799-bea3-cf2e192f599e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-e58709bf-c6e8-4799-bea3-cf2e192f599e"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-e58709bf-c6e8-4799-bea3-cf2e192f599e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-e58709bf-c6e8-4799-bea3-cf2e192f599e"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-7fa2df68-50eb-4b45-9d80-8b8fe6219ff0 {
  padding-top: 18px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-d9333d1c-e039-4d97-9a50-fa0fa6f98f20 {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-4b961b3e-fa22-4063-95c8-ef0de42833d2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4b961b3e-fa22-4063-95c8-ef0de42833d2"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-4b961b3e-fa22-4063-95c8-ef0de42833d2"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-4b961b3e-fa22-4063-95c8-ef0de42833d2"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-4b961b3e-fa22-4063-95c8-ef0de42833d2"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-4b961b3e-fa22-4063-95c8-ef0de42833d2"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-4b961b3e-fa22-4063-95c8-ef0de42833d2"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-ec5a2afc-ed2b-40d4-becb-60d800bb436c {
  padding-top: 18px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-e7081bf0-5c47-4d68-9478-276f2663dc76 {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-c829262a-6377-4ddd-b91d-0d6f2759c1e6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c829262a-6377-4ddd-b91d-0d6f2759c1e6"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-c829262a-6377-4ddd-b91d-0d6f2759c1e6"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-c829262a-6377-4ddd-b91d-0d6f2759c1e6"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-c829262a-6377-4ddd-b91d-0d6f2759c1e6"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-c829262a-6377-4ddd-b91d-0d6f2759c1e6"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-c829262a-6377-4ddd-b91d-0d6f2759c1e6"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-f2701e02-a4e2-4f7a-89db-def4d8a1b8bd {
  padding-top: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-5bdf18f0-8dca-4384-98f9-3349f31c1d2d {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-15c1b236-d8ca-44a6-84ab-53cc35c6a2e3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-15c1b236-d8ca-44a6-84ab-53cc35c6a2e3"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-15c1b236-d8ca-44a6-84ab-53cc35c6a2e3"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-15c1b236-d8ca-44a6-84ab-53cc35c6a2e3"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-15c1b236-d8ca-44a6-84ab-53cc35c6a2e3"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-15c1b236-d8ca-44a6-84ab-53cc35c6a2e3"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-15c1b236-d8ca-44a6-84ab-53cc35c6a2e3"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-a761d05f-bf67-4e63-b1c2-c1e9510c757f {
  padding-top: 18px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-a73b7acd-890a-45aa-98ff-9c2b46c641fe {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-1de3b6ac-0610-491a-b35c-abbf27358c22"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1de3b6ac-0610-491a-b35c-abbf27358c22"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-1de3b6ac-0610-491a-b35c-abbf27358c22"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-1de3b6ac-0610-491a-b35c-abbf27358c22"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-1de3b6ac-0610-491a-b35c-abbf27358c22"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-1de3b6ac-0610-491a-b35c-abbf27358c22"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-1de3b6ac-0610-491a-b35c-abbf27358c22"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-090bfd60-6a24-492a-af95-d7303942b322 {
  padding-top: 18px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-7d4857cd-fccc-4946-b78e-68d697b30f6e {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

#s-8ddff554-776c-48bd-a455-b713970c3e18 {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-8ddff554-776c-48bd-a455-b713970c3e18"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8ddff554-776c-48bd-a455-b713970c3e18"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-8ddff554-776c-48bd-a455-b713970c3e18"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-8ddff554-776c-48bd-a455-b713970c3e18"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-8ddff554-776c-48bd-a455-b713970c3e18"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-8ddff554-776c-48bd-a455-b713970c3e18"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-8ddff554-776c-48bd-a455-b713970c3e18"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-38a90b2a-0039-41a6-9d86-d589ec7c3b9f {
  padding-top: 18px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-a9437c99-b76a-4438-aa93-f6f6ecfac111 {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-41287dc4-c36e-4a6e-904f-a4461575799e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-41287dc4-c36e-4a6e-904f-a4461575799e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-41287dc4-c36e-4a6e-904f-a4461575799e"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-41287dc4-c36e-4a6e-904f-a4461575799e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-41287dc4-c36e-4a6e-904f-a4461575799e"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-41287dc4-c36e-4a6e-904f-a4461575799e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-41287dc4-c36e-4a6e-904f-a4461575799e"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-287cafcf-ff83-41cf-977a-3878d77961b0 {
  padding-top: 18px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-e36299b1-9da9-4d39-85c1-9031deecb0b1 {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-ad2adca0-b71b-4d73-a617-f1e052cc40c3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ad2adca0-b71b-4d73-a617-f1e052cc40c3"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-ad2adca0-b71b-4d73-a617-f1e052cc40c3"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-ad2adca0-b71b-4d73-a617-f1e052cc40c3"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-ad2adca0-b71b-4d73-a617-f1e052cc40c3"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-ad2adca0-b71b-4d73-a617-f1e052cc40c3"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-ad2adca0-b71b-4d73-a617-f1e052cc40c3"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-91bfb78e-9794-4fa0-a020-b1e84ec56848 {
  padding-top: 18px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-4e65b00f-96dd-4cdc-8648-2d7641cdf319 {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-43c342fe-18ec-447d-8cf3-d76d59c57ed9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-43c342fe-18ec-447d-8cf3-d76d59c57ed9"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-43c342fe-18ec-447d-8cf3-d76d59c57ed9"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-43c342fe-18ec-447d-8cf3-d76d59c57ed9"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-43c342fe-18ec-447d-8cf3-d76d59c57ed9"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-43c342fe-18ec-447d-8cf3-d76d59c57ed9"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-43c342fe-18ec-447d-8cf3-d76d59c57ed9"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-cf55481d-5ed9-49ae-8b10-cee90f7138d5 {
  padding-top: 18px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-8250e12e-8b5c-4092-8bd3-d3fffa6bb5e4 {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-dec9b000-dc84-4e51-b0f1-8af45402958e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-dec9b000-dc84-4e51-b0f1-8af45402958e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-dec9b000-dc84-4e51-b0f1-8af45402958e"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-dec9b000-dc84-4e51-b0f1-8af45402958e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-dec9b000-dc84-4e51-b0f1-8af45402958e"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-dec9b000-dc84-4e51-b0f1-8af45402958e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-dec9b000-dc84-4e51-b0f1-8af45402958e"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-8fc30024-c216-4ecf-afb3-4ac88846f516 {
  padding-top: 18px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-f9b65562-f0bc-4f97-a79a-1deb67408c77 {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-102e40e3-ad9f-4835-8154-ec10adfb4b1f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-102e40e3-ad9f-4835-8154-ec10adfb4b1f"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-102e40e3-ad9f-4835-8154-ec10adfb4b1f"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-102e40e3-ad9f-4835-8154-ec10adfb4b1f"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-102e40e3-ad9f-4835-8154-ec10adfb4b1f"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-102e40e3-ad9f-4835-8154-ec10adfb4b1f"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-102e40e3-ad9f-4835-8154-ec10adfb4b1f"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-da944815-a5db-4df3-991e-2f5aaad343bb {
  padding-top: 30px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-a541b345-f917-4f43-b47f-3646d83f5be3 {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

#s-853aa5e4-23d5-46c0-8eea-bf2da54dd6ac {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-853aa5e4-23d5-46c0-8eea-bf2da54dd6ac"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-853aa5e4-23d5-46c0-8eea-bf2da54dd6ac"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-853aa5e4-23d5-46c0-8eea-bf2da54dd6ac"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-853aa5e4-23d5-46c0-8eea-bf2da54dd6ac"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-853aa5e4-23d5-46c0-8eea-bf2da54dd6ac"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-853aa5e4-23d5-46c0-8eea-bf2da54dd6ac"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-853aa5e4-23d5-46c0-8eea-bf2da54dd6ac"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-b6c76dd1-2d8a-4aeb-8acc-633bb3dbf2f8 {
  padding-top: 18px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-82f7e52b-af87-443e-95ec-e965c55ed552 {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-53445d81-110c-408e-9f26-3dce7acb978e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-53445d81-110c-408e-9f26-3dce7acb978e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-53445d81-110c-408e-9f26-3dce7acb978e"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-53445d81-110c-408e-9f26-3dce7acb978e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-53445d81-110c-408e-9f26-3dce7acb978e"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-53445d81-110c-408e-9f26-3dce7acb978e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-53445d81-110c-408e-9f26-3dce7acb978e"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-8e987722-562b-4145-9d12-f241ecd79aea {
  padding-top: 18px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-a6d33737-469e-4272-9939-8bc0c4fba07b {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-23f06e66-4b57-4821-a19d-a20db590f621"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-23f06e66-4b57-4821-a19d-a20db590f621"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-23f06e66-4b57-4821-a19d-a20db590f621"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-23f06e66-4b57-4821-a19d-a20db590f621"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-23f06e66-4b57-4821-a19d-a20db590f621"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-23f06e66-4b57-4821-a19d-a20db590f621"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-23f06e66-4b57-4821-a19d-a20db590f621"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-669ba35d-137b-4245-b739-c992fe4bb71c {
  padding-top: 18px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-046e6862-ac2b-45b6-ba15-a7fa22d0e6e2 {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-3f651140-512b-4295-974f-fe5cfd48b5e5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3f651140-512b-4295-974f-fe5cfd48b5e5"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-3f651140-512b-4295-974f-fe5cfd48b5e5"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-3f651140-512b-4295-974f-fe5cfd48b5e5"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-3f651140-512b-4295-974f-fe5cfd48b5e5"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-3f651140-512b-4295-974f-fe5cfd48b5e5"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-3f651140-512b-4295-974f-fe5cfd48b5e5"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-d731e8ec-aab2-4a08-9594-4103e50b384a {
  padding-top: 18px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-8597e1bb-00ab-49a4-9b7f-e663a6bec16b {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-477ab0a8-8e68-4373-9ea0-0172e3263dfb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-477ab0a8-8e68-4373-9ea0-0172e3263dfb"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-477ab0a8-8e68-4373-9ea0-0172e3263dfb"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-477ab0a8-8e68-4373-9ea0-0172e3263dfb"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-477ab0a8-8e68-4373-9ea0-0172e3263dfb"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-477ab0a8-8e68-4373-9ea0-0172e3263dfb"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-477ab0a8-8e68-4373-9ea0-0172e3263dfb"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-b8090c0f-cca0-42cf-9791-cc1fe2c62017 {
  padding-top: 18px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-b01a8dee-7971-44f4-9bf6-b5cf438f4b25 {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

#s-f9e9b2dc-57ab-42ad-b28c-6aa5b42995b3 {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-f9e9b2dc-57ab-42ad-b28c-6aa5b42995b3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f9e9b2dc-57ab-42ad-b28c-6aa5b42995b3"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-f9e9b2dc-57ab-42ad-b28c-6aa5b42995b3"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-f9e9b2dc-57ab-42ad-b28c-6aa5b42995b3"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-f9e9b2dc-57ab-42ad-b28c-6aa5b42995b3"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-f9e9b2dc-57ab-42ad-b28c-6aa5b42995b3"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-f9e9b2dc-57ab-42ad-b28c-6aa5b42995b3"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-21d17574-c075-49bd-870a-5c4fc9e4aa67 {
  padding-top: 18px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-228b4e3b-d842-4497-9646-8d993dc438d8 {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-3a2a7093-0a98-4788-bb07-fbff5e4afcff"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3a2a7093-0a98-4788-bb07-fbff5e4afcff"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-3a2a7093-0a98-4788-bb07-fbff5e4afcff"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-3a2a7093-0a98-4788-bb07-fbff5e4afcff"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-3a2a7093-0a98-4788-bb07-fbff5e4afcff"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-3a2a7093-0a98-4788-bb07-fbff5e4afcff"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-3a2a7093-0a98-4788-bb07-fbff5e4afcff"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-22e6126f-9a6c-4f00-9cc2-1822dd1d8ac4 {
  padding-top: 18px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-51d5a269-0319-47d9-924a-e1647629f2b2 {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-12564eca-863f-46b1-aca2-3f2dfb29fdbe"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-12564eca-863f-46b1-aca2-3f2dfb29fdbe"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-12564eca-863f-46b1-aca2-3f2dfb29fdbe"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-12564eca-863f-46b1-aca2-3f2dfb29fdbe"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-12564eca-863f-46b1-aca2-3f2dfb29fdbe"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-12564eca-863f-46b1-aca2-3f2dfb29fdbe"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-12564eca-863f-46b1-aca2-3f2dfb29fdbe"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-b82983f0-3b63-4d7f-8058-bcc825a8fa39 {
  padding-top: 18px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-861bd6b9-a53d-4032-9135-7dcb9eb9a276 {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-ab81880f-fff9-468c-a1e4-8d51548d945d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ab81880f-fff9-468c-a1e4-8d51548d945d"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-ab81880f-fff9-468c-a1e4-8d51548d945d"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-ab81880f-fff9-468c-a1e4-8d51548d945d"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-ab81880f-fff9-468c-a1e4-8d51548d945d"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-ab81880f-fff9-468c-a1e4-8d51548d945d"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-ab81880f-fff9-468c-a1e4-8d51548d945d"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-dbb2ba67-f281-4cb9-bf85-5cbc113b48c8 {
  padding-top: 18px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-aa8c362b-04c6-40a2-ac6d-5d943613d071 {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

#s-91e26076-c480-401e-ba68-d3733e4eb5db {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-91e26076-c480-401e-ba68-d3733e4eb5db"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-91e26076-c480-401e-ba68-d3733e4eb5db"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-91e26076-c480-401e-ba68-d3733e4eb5db"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-91e26076-c480-401e-ba68-d3733e4eb5db"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-91e26076-c480-401e-ba68-d3733e4eb5db"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-91e26076-c480-401e-ba68-d3733e4eb5db"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-91e26076-c480-401e-ba68-d3733e4eb5db"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-097fb355-aa68-4c10-aaf1-adecb72e57da {
  padding-top: 18px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-b9c44737-d439-45db-a035-6748c3838b87 {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-e1740f15-932b-4a06-9385-9b5a83dec405"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e1740f15-932b-4a06-9385-9b5a83dec405"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-e1740f15-932b-4a06-9385-9b5a83dec405"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-e1740f15-932b-4a06-9385-9b5a83dec405"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-e1740f15-932b-4a06-9385-9b5a83dec405"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-e1740f15-932b-4a06-9385-9b5a83dec405"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-e1740f15-932b-4a06-9385-9b5a83dec405"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-ba066551-8158-48db-a422-d3803dec7f16 {
  padding-top: 18px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-382edd3b-7c81-4a9d-ac7b-6f8193aca90c {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-494320c8-a6be-430e-9619-0ef9d9d44436"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-494320c8-a6be-430e-9619-0ef9d9d44436"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-494320c8-a6be-430e-9619-0ef9d9d44436"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-494320c8-a6be-430e-9619-0ef9d9d44436"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-494320c8-a6be-430e-9619-0ef9d9d44436"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-494320c8-a6be-430e-9619-0ef9d9d44436"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-494320c8-a6be-430e-9619-0ef9d9d44436"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-15ac7fec-56d5-4de9-abdc-93f6e3e6a263 {
  padding-top: 18px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-e9f23dae-2309-423c-9388-2ce91d91a5d0 {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

#s-04301699-8b1f-461e-8b1d-586a3271b124 {
  padding-top: 25px;
padding-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-ad05d9aa-d57c-450f-9afa-d29f78c244de"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ad05d9aa-d57c-450f-9afa-d29f78c244de"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-ad05d9aa-d57c-450f-9afa-d29f78c244de"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-ad05d9aa-d57c-450f-9afa-d29f78c244de"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-ad05d9aa-d57c-450f-9afa-d29f78c244de"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-ad05d9aa-d57c-450f-9afa-d29f78c244de"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-ad05d9aa-d57c-450f-9afa-d29f78c244de"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-6125fdf2-1aec-4ec0-bf62-b970f63908c9 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 18px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-3576ce4d-bcd9-47d8-83a8-8770c95a32f7 {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-4778f7de-db39-402b-8447-5782329dda2c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4778f7de-db39-402b-8447-5782329dda2c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-4778f7de-db39-402b-8447-5782329dda2c"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-4778f7de-db39-402b-8447-5782329dda2c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-4778f7de-db39-402b-8447-5782329dda2c"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-4778f7de-db39-402b-8447-5782329dda2c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-4778f7de-db39-402b-8447-5782329dda2c"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-14edd998-7a86-4e27-919c-fb46598ccd85 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 18px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-15436a96-f103-45b4-bb50-877a1f6e11b9 {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

#s-b8d0cff2-521d-4f25-866b-ca5a025b4199 {
  padding-top: 25px;
padding-bottom: 10px;
}

#s-8ad5b171-ece8-470d-be2c-40bdd5e25e87 {
  min-height: 50px;
}








#s-8ad5b171-ece8-470d-be2c-40bdd5e25e87 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8ad5b171-ece8-470d-be2c-40bdd5e25e87.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-5bb16cc5-270b-4c85-a5d3-4914de094da6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5bb16cc5-270b-4c85-a5d3-4914de094da6"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-5bb16cc5-270b-4c85-a5d3-4914de094da6"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-5bb16cc5-270b-4c85-a5d3-4914de094da6"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-5bb16cc5-270b-4c85-a5d3-4914de094da6"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-5bb16cc5-270b-4c85-a5d3-4914de094da6"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-5bb16cc5-270b-4c85-a5d3-4914de094da6"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-84ad2f2e-b187-458c-a105-8f9143b1f0e4 {
  padding-top: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-e60ed9ed-18e3-4766-9698-79ba9ee573e0 {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-a0a5b619-d0a1-4aa3-831c-41a6b3c32bde"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a0a5b619-d0a1-4aa3-831c-41a6b3c32bde"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-a0a5b619-d0a1-4aa3-831c-41a6b3c32bde"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-a0a5b619-d0a1-4aa3-831c-41a6b3c32bde"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-a0a5b619-d0a1-4aa3-831c-41a6b3c32bde"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-a0a5b619-d0a1-4aa3-831c-41a6b3c32bde"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-a0a5b619-d0a1-4aa3-831c-41a6b3c32bde"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-ec9124e6-15bf-477f-873b-e783a654cbd9 {
  padding-top: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-ab9d0971-8274-4226-ad87-f28f214356e3 {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-37da8304-0c11-49ae-9be3-13be50b43fc6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-37da8304-0c11-49ae-9be3-13be50b43fc6"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-37da8304-0c11-49ae-9be3-13be50b43fc6"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-37da8304-0c11-49ae-9be3-13be50b43fc6"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-37da8304-0c11-49ae-9be3-13be50b43fc6"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-37da8304-0c11-49ae-9be3-13be50b43fc6"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-37da8304-0c11-49ae-9be3-13be50b43fc6"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-f5f61102-5d73-4535-80fb-425bab474b96 {
  padding-top: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-0b926592-463c-4b16-b759-bb8fff8a95d6 {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-5c7fc1fe-1010-4489-9685-80390bcb3eac"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5c7fc1fe-1010-4489-9685-80390bcb3eac"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-5c7fc1fe-1010-4489-9685-80390bcb3eac"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-5c7fc1fe-1010-4489-9685-80390bcb3eac"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-5c7fc1fe-1010-4489-9685-80390bcb3eac"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-5c7fc1fe-1010-4489-9685-80390bcb3eac"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-5c7fc1fe-1010-4489-9685-80390bcb3eac"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-80110d34-2f97-48b7-b480-3917052ca6f8 {
  padding-top: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-f8e9dc68-267a-4acb-b3ed-592423c75b2f {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

#s-b617e80f-54a5-4f98-a8e5-0ebfba1ea002 {
  padding-top: 25px;
padding-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-9a69c384-a852-4c9e-9701-be20344870e9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9a69c384-a852-4c9e-9701-be20344870e9"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-9a69c384-a852-4c9e-9701-be20344870e9"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-9a69c384-a852-4c9e-9701-be20344870e9"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-9a69c384-a852-4c9e-9701-be20344870e9"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-9a69c384-a852-4c9e-9701-be20344870e9"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-9a69c384-a852-4c9e-9701-be20344870e9"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-f47ae48d-f3d8-4500-9987-273b755adb67 {
  padding-top: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-99f34a4e-fcf1-4847-bbac-d649b0fae1e3 {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-4054334b-476c-4823-b802-523f5039c5f0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4054334b-476c-4823-b802-523f5039c5f0"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-4054334b-476c-4823-b802-523f5039c5f0"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-4054334b-476c-4823-b802-523f5039c5f0"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-4054334b-476c-4823-b802-523f5039c5f0"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-4054334b-476c-4823-b802-523f5039c5f0"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-4054334b-476c-4823-b802-523f5039c5f0"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-834367d1-30fc-4e28-811c-970a40980ba7 {
  padding-top: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-4b097d51-a76a-4f64-9efd-892e6d4fe613 {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-4bf7a65f-caf6-4ef1-83e6-63435f3a062d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4bf7a65f-caf6-4ef1-83e6-63435f3a062d"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-4bf7a65f-caf6-4ef1-83e6-63435f3a062d"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-4bf7a65f-caf6-4ef1-83e6-63435f3a062d"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-4bf7a65f-caf6-4ef1-83e6-63435f3a062d"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-4bf7a65f-caf6-4ef1-83e6-63435f3a062d"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-4bf7a65f-caf6-4ef1-83e6-63435f3a062d"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-7b949d9a-063f-4eba-b4be-712959ed8882 {
  padding-top: 12px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-7a3ed693-d741-4533-8ca4-15b93e5a8e03 {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-a0fa53a1-51d6-4c74-9c09-c6ac73662e8c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a0fa53a1-51d6-4c74-9c09-c6ac73662e8c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-a0fa53a1-51d6-4c74-9c09-c6ac73662e8c"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-a0fa53a1-51d6-4c74-9c09-c6ac73662e8c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-a0fa53a1-51d6-4c74-9c09-c6ac73662e8c"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-a0fa53a1-51d6-4c74-9c09-c6ac73662e8c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-a0fa53a1-51d6-4c74-9c09-c6ac73662e8c"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-b715f9d4-fe0b-4797-b770-10d109af22e5 {
  padding-top: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-61dd3823-18fc-47ca-87b3-578812dd7462 {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-19308a93-9217-453d-b743-26157363d6e1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-19308a93-9217-453d-b743-26157363d6e1"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-19308a93-9217-453d-b743-26157363d6e1"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-19308a93-9217-453d-b743-26157363d6e1"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-19308a93-9217-453d-b743-26157363d6e1"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-19308a93-9217-453d-b743-26157363d6e1"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-19308a93-9217-453d-b743-26157363d6e1"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-bad07b3e-db02-470f-8211-40c31d1c9c0d {
  padding-top: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-e8eaaf76-8bfd-45e3-9abc-8a89c8dd8d15 {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-585939ca-b633-4060-b64e-c3b4b489fe68"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-585939ca-b633-4060-b64e-c3b4b489fe68"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-585939ca-b633-4060-b64e-c3b4b489fe68"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-585939ca-b633-4060-b64e-c3b4b489fe68"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-585939ca-b633-4060-b64e-c3b4b489fe68"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-585939ca-b633-4060-b64e-c3b4b489fe68"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-585939ca-b633-4060-b64e-c3b4b489fe68"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-ff219438-3d39-4a16-a492-1594d4a7c28b {
  padding-top: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-cb803405-aee7-47fc-8f2c-669b0b64d94f {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-9567145e-cbe8-41f7-b30b-caacd8c426a6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9567145e-cbe8-41f7-b30b-caacd8c426a6"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-9567145e-cbe8-41f7-b30b-caacd8c426a6"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-9567145e-cbe8-41f7-b30b-caacd8c426a6"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-9567145e-cbe8-41f7-b30b-caacd8c426a6"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-9567145e-cbe8-41f7-b30b-caacd8c426a6"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-9567145e-cbe8-41f7-b30b-caacd8c426a6"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-6a9c3b7e-a381-4b33-9185-1382f3887b6e {
  padding-top: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-db7fcf25-2859-4627-8961-6f1814cd3e05 {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-de9b5338-b44d-4817-a8ca-53878f3e78db"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-de9b5338-b44d-4817-a8ca-53878f3e78db"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-de9b5338-b44d-4817-a8ca-53878f3e78db"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-de9b5338-b44d-4817-a8ca-53878f3e78db"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-de9b5338-b44d-4817-a8ca-53878f3e78db"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-de9b5338-b44d-4817-a8ca-53878f3e78db"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-de9b5338-b44d-4817-a8ca-53878f3e78db"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-b171791d-a4c2-41f0-8d50-d8a2e515f47b {
  padding-top: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-5ec625bc-9a59-4ca8-b72a-8a55ab71b7ee {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-cca115ec-b575-44bf-9441-101f136832d4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cca115ec-b575-44bf-9441-101f136832d4"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-cca115ec-b575-44bf-9441-101f136832d4"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-cca115ec-b575-44bf-9441-101f136832d4"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-cca115ec-b575-44bf-9441-101f136832d4"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-cca115ec-b575-44bf-9441-101f136832d4"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-cca115ec-b575-44bf-9441-101f136832d4"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-e9a79e7d-f6dc-46f4-a9da-4b287c12eb02 {
  padding-top: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-064abe04-ed4d-40ca-8225-3fc6ed81c2aa {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-e774cf73-59a4-4ff3-b20e-973bd7fcf8b8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e774cf73-59a4-4ff3-b20e-973bd7fcf8b8"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-e774cf73-59a4-4ff3-b20e-973bd7fcf8b8"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-e774cf73-59a4-4ff3-b20e-973bd7fcf8b8"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-e774cf73-59a4-4ff3-b20e-973bd7fcf8b8"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-e774cf73-59a4-4ff3-b20e-973bd7fcf8b8"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-e774cf73-59a4-4ff3-b20e-973bd7fcf8b8"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

}

#s-c1348914-a189-4f75-8c6c-5a57c664d319 {
  padding-top: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
background-color: rgba(2, 167, 233, 1);
}

#s-3e4e0b92-6702-43ec-a668-acccf7c919ba {
  padding-top: 15px;
padding-left: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(241, 243, 244, 1);
border-style: solid;
}

#s-c098934f-d175-4932-8f17-b8cf75a73184 {
  min-height: 50px;
}








#s-c098934f-d175-4932-8f17-b8cf75a73184 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c098934f-d175-4932-8f17-b8cf75a73184.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a072d243-df5d-4422-9470-49c9947d829f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a072d243-df5d-4422-9470-49c9947d829f .shogun-heading-component h1 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



@media (min-width: 0px) {
[id="s-17e60d97-e277-430c-840e-fd2e95f82f2c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-17e60d97-e277-430c-840e-fd2e95f82f2c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-17e60d97-e277-430c-840e-fd2e95f82f2c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-17e60d97-e277-430c-840e-fd2e95f82f2c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-a7c525ad-6baa-483e-86b7-6e14f09ef5ab {
  min-height: 50px;
}








#s-a7c525ad-6baa-483e-86b7-6e14f09ef5ab > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a7c525ad-6baa-483e-86b7-6e14f09ef5ab.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-fbf09476-b081-426d-9a89-a3d8faa8895e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fbf09476-b081-426d-9a89-a3d8faa8895e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-fbf09476-b081-426d-9a89-a3d8faa8895e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-fbf09476-b081-426d-9a89-a3d8faa8895e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-f6ee231a-b13b-41c9-b12a-0a01d7338ebe {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f6ee231a-b13b-41c9-b12a-0a01d7338ebe .shogun-heading-component h3 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}



#s-80df55c3-8112-400e-bc13-1ac1a6696c3d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-80df55c3-8112-400e-bc13-1ac1a6696c3d .shogun-heading-component h3 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}



#s-f4c74f43-91c5-494f-a0c9-7e9a92917679 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f4c74f43-91c5-494f-a0c9-7e9a92917679 .shogun-heading-component h3 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}



#s-c34e2e4a-689d-4810-9f3d-3a10cda5ffc2 {
  min-height: 50px;
}








#s-c34e2e4a-689d-4810-9f3d-3a10cda5ffc2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c34e2e4a-689d-4810-9f3d-3a10cda5ffc2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-47495ed4-753e-4755-ad6a-871c9756c32d {
  min-height: 50px;
}








#s-47495ed4-753e-4755-ad6a-871c9756c32d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-47495ed4-753e-4755-ad6a-871c9756c32d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.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-8305176f-ecff-4c1e-81e7-47044ee9f457 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: #252525;
text-decoration: none;
color: rgba(255, 255, 255, 1);
}
#s-8305176f-ecff-4c1e-81e7-47044ee9f457:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-8305176f-ecff-4c1e-81e7-47044ee9f457:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-8305176f-ecff-4c1e-81e7-47044ee9f457-root {
    text-align: center;
  }


#s-8305176f-ecff-4c1e-81e7-47044ee9f457.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-8305176f-ecff-4c1e-81e7-47044ee9f457-root {
    text-align: center;
  }


#s-8305176f-ecff-4c1e-81e7-47044ee9f457.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-8305176f-ecff-4c1e-81e7-47044ee9f457-root {
    text-align: center;
  }


#s-8305176f-ecff-4c1e-81e7-47044ee9f457.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-8305176f-ecff-4c1e-81e7-47044ee9f457-root {
    text-align: center;
  }


#s-8305176f-ecff-4c1e-81e7-47044ee9f457.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-8305176f-ecff-4c1e-81e7-47044ee9f457-root {
    text-align: center;
  }


#s-8305176f-ecff-4c1e-81e7-47044ee9f457.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-2d7e2959-56ed-46cb-9956-5064cbc6d569 hr {
  border-top: 2px solid #ddd;
}

#s-bcad2e99-2cfc-485c-bf7e-f6f70d863f03 {
  min-height: 50px;
}








#s-bcad2e99-2cfc-485c-bf7e-f6f70d863f03 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bcad2e99-2cfc-485c-bf7e-f6f70d863f03.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-07ea64b3-cba9-43f1-9ac2-4f9858b6b171 {
  min-height: 50px;
}








#s-07ea64b3-cba9-43f1-9ac2-4f9858b6b171 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-07ea64b3-cba9-43f1-9ac2-4f9858b6b171.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-102f9c54-7286-4a11-8618-130bf7f9b50f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-102f9c54-7286-4a11-8618-130bf7f9b50f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-102f9c54-7286-4a11-8618-130bf7f9b50f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-102f9c54-7286-4a11-8618-130bf7f9b50f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

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

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

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

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

#s-bef8a33f-982a-42f7-b7d6-8baa8bafd01e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-bef8a33f-982a-42f7-b7d6-8baa8bafd01e .shogun-heading-component h2 {
  color: rgba(89, 89, 89, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-48811821-2ecd-4a33-8e52-ccec4b416b84 hr {
  border-top: 2px solid #ddd;
}

#s-61fdd757-c8c7-4b44-9c35-5953a3893fc0 {
  padding-left: 20px;
padding-right: 20px;
}

@media (min-width: 0px) {
[id="s-61fdd757-c8c7-4b44-9c35-5953a3893fc0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-61fdd757-c8c7-4b44-9c35-5953a3893fc0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-61fdd757-c8c7-4b44-9c35-5953a3893fc0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-61fdd757-c8c7-4b44-9c35-5953a3893fc0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-61fdd757-c8c7-4b44-9c35-5953a3893fc0"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-f96c894c-478a-4c77-a27d-e841f04e7b34 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-f96c894c-478a-4c77-a27d-e841f04e7b34 .shogun-heading-component h2 {
  color: rgba(85, 85, 85, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



#s-2a860adc-feee-474c-9746-bbefb77c5e0a {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-b26e1875-78c8-4aa8-9445-f0878de8e3db {
  text-align: center;
}







  #s-b26e1875-78c8-4aa8-9445-f0878de8e3db img.shogun-image {
    

    
    
    
  }


#s-b26e1875-78c8-4aa8-9445-f0878de8e3db .shogun-image-content {
  
    align-items: center;
  
}

#s-9c3a24fc-899d-4cf3-b2a9-08374e25eb23 {
  padding-top: 15px;
padding-bottom: 15px;
}

#s-9c3a24fc-899d-4cf3-b2a9-08374e25eb23 hr {
  border-top: 2px solid #ddd;
}

#s-33349dd2-9187-4eee-a9d4-581be4d10eff {
  padding-left: 20px;
padding-right: 20px;
}

@media (min-width: 0px) {
[id="s-33349dd2-9187-4eee-a9d4-581be4d10eff"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-33349dd2-9187-4eee-a9d4-581be4d10eff"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-33349dd2-9187-4eee-a9d4-581be4d10eff"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-33349dd2-9187-4eee-a9d4-581be4d10eff"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-f386b6eb-c441-4202-a8a8-9d92e16c0a12 {
  text-align: center;
}







  #s-f386b6eb-c441-4202-a8a8-9d92e16c0a12 img.shogun-image {
    

    
    
    
  }


#s-f386b6eb-c441-4202-a8a8-9d92e16c0a12 .shogun-image-content {
  
    align-items: center;
  
}

#s-be6dc2aa-8736-44dd-9a82-7a34f26665fc {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-be6dc2aa-8736-44dd-9a82-7a34f26665fc .shogun-heading-component h2 {
  color: rgba(85, 85, 85, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



#s-9f922c20-e135-4aed-91e4-ad50618e6346 {
  padding-top: 15px;
padding-bottom: 15px;
}

#s-9f922c20-e135-4aed-91e4-ad50618e6346 hr {
  border-top: 2px solid #ddd;
}

#s-02458ff3-729b-4976-97db-fcd2fc927f89 {
  padding-left: 20px;
padding-right: 20px;
}

@media (min-width: 0px) {
[id="s-02458ff3-729b-4976-97db-fcd2fc927f89"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-02458ff3-729b-4976-97db-fcd2fc927f89"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-02458ff3-729b-4976-97db-fcd2fc927f89"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-02458ff3-729b-4976-97db-fcd2fc927f89"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-02458ff3-729b-4976-97db-fcd2fc927f89"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-0005e8e0-ad8f-4360-a163-77fe65ea0128 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-0005e8e0-ad8f-4360-a163-77fe65ea0128 .shogun-heading-component h2 {
  color: rgba(85, 85, 85, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



#s-639648dd-0846-4b21-8189-7f4c10e9d794 {
  text-align: center;
}







  #s-639648dd-0846-4b21-8189-7f4c10e9d794 img.shogun-image {
    

    
    
    
  }


#s-639648dd-0846-4b21-8189-7f4c10e9d794 .shogun-image-content {
  
    align-items: center;
  
}

#s-395ec8d5-0313-48df-963f-a7863462c1eb {
  padding-top: 15px;
padding-bottom: 15px;
}

#s-395ec8d5-0313-48df-963f-a7863462c1eb hr {
  border-top: 2px solid #ddd;
}

#s-563990bb-2a77-4546-92bf-3cd1ac89f115 {
  padding-left: 20px;
padding-right: 20px;
}

@media (min-width: 0px) {
[id="s-563990bb-2a77-4546-92bf-3cd1ac89f115"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-563990bb-2a77-4546-92bf-3cd1ac89f115"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-563990bb-2a77-4546-92bf-3cd1ac89f115"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-563990bb-2a77-4546-92bf-3cd1ac89f115"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-8e225cdf-a186-476c-96c2-2e5511f2c09a {
  text-align: center;
}







  #s-8e225cdf-a186-476c-96c2-2e5511f2c09a img.shogun-image {
    

    
    
    
  }


#s-8e225cdf-a186-476c-96c2-2e5511f2c09a .shogun-image-content {
  
    align-items: center;
  
}

#s-3a04d602-b7ed-4f75-a4e8-838645a39b65 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-3a04d602-b7ed-4f75-a4e8-838645a39b65 .shogun-heading-component h2 {
  color: rgba(85, 85, 85, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



#s-1383319a-69da-4b34-88a9-5bc27767e894 {
  padding-top: 15px;
padding-bottom: 15px;
}

#s-1383319a-69da-4b34-88a9-5bc27767e894 hr {
  border-top: 2px solid #ddd;
}

#s-0348d86c-392e-4cca-b6bb-47089a5e990b {
  padding-left: 20px;
padding-right: 20px;
}

@media (min-width: 0px) {
[id="s-0348d86c-392e-4cca-b6bb-47089a5e990b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0348d86c-392e-4cca-b6bb-47089a5e990b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0348d86c-392e-4cca-b6bb-47089a5e990b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0348d86c-392e-4cca-b6bb-47089a5e990b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-0348d86c-392e-4cca-b6bb-47089a5e990b"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-f9bf4232-7ab2-4730-a2b6-73e09710ec07 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-f9bf4232-7ab2-4730-a2b6-73e09710ec07 .shogun-heading-component h2 {
  color: rgba(85, 85, 85, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



#s-2d53be9e-3036-446a-a8ef-282c8b4aaf82 {
  text-align: center;
}







  #s-2d53be9e-3036-446a-a8ef-282c8b4aaf82 img.shogun-image {
    

    
    
    
  }


#s-2d53be9e-3036-446a-a8ef-282c8b4aaf82 .shogun-image-content {
  
    align-items: center;
  
}

#s-062712fc-5da1-4354-a6ce-f428db5f9a5c {
  padding-top: 15px;
padding-bottom: 15px;
}

#s-062712fc-5da1-4354-a6ce-f428db5f9a5c hr {
  border-top: 2px solid #ddd;
}

#s-9d4b8431-1f14-4228-b0db-50abf7e39c8f {
  padding-left: 20px;
padding-right: 20px;
}

@media (min-width: 0px) {
[id="s-9d4b8431-1f14-4228-b0db-50abf7e39c8f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9d4b8431-1f14-4228-b0db-50abf7e39c8f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9d4b8431-1f14-4228-b0db-50abf7e39c8f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9d4b8431-1f14-4228-b0db-50abf7e39c8f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-681c9316-70cd-4912-a811-7c52387a5d62 {
  text-align: center;
}







  #s-681c9316-70cd-4912-a811-7c52387a5d62 img.shogun-image {
    

    
    
    
  }


#s-681c9316-70cd-4912-a811-7c52387a5d62 .shogun-image-content {
  
    align-items: center;
  
}

#s-388d9f25-9fb7-4fcf-9a26-20115f0697b8 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-388d9f25-9fb7-4fcf-9a26-20115f0697b8 .shogun-heading-component h2 {
  color: rgba(85, 85, 85, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



#s-878cbe4e-0fc8-459b-9805-347902aa6e67 {
  padding-top: 15px;
padding-bottom: 15px;
}

#s-878cbe4e-0fc8-459b-9805-347902aa6e67 hr {
  border-top: 2px solid #ddd;
}

#s-83902a3e-73dc-4106-b803-fa5c71d39ac5 {
  min-height: 50px;
}








#s-83902a3e-73dc-4106-b803-fa5c71d39ac5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-83902a3e-73dc-4106-b803-fa5c71d39ac5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-96523b53-b51d-4407-88c8-18e678f65556 {
  min-height: 50px;
}








#s-96523b53-b51d-4407-88c8-18e678f65556 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-96523b53-b51d-4407-88c8-18e678f65556.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-eb2cc164-6498-4f55-b25a-f2c2154cc87d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-eb2cc164-6498-4f55-b25a-f2c2154cc87d .shogun-heading-component h2 {
  color: rgba(89, 89, 89, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-555d3fe1-d1c4-433e-88d2-a496aaf0d735 {
  min-height: 50px;
}








#s-555d3fe1-d1c4-433e-88d2-a496aaf0d735 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-555d3fe1-d1c4-433e-88d2-a496aaf0d735.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-09e9c59c-d9a2-40a3-a22c-71606e4c638a {
  min-height: 50px;
}








#s-09e9c59c-d9a2-40a3-a22c-71606e4c638a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-09e9c59c-d9a2-40a3-a22c-71606e4c638a.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-a0adbb7c-ef11-4807-8263-0777d6664c7b"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-a0adbb7c-ef11-4807-8263-0777d6664c7b"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-a0adbb7c-ef11-4807-8263-0777d6664c7b"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-a0adbb7c-ef11-4807-8263-0777d6664c7b"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-e1d9f263-bf96-42b6-985e-801f91300b63 {
  text-align: center;
}







  #s-e1d9f263-bf96-42b6-985e-801f91300b63 img.shogun-image {
    

    
    
    
  }


#s-e1d9f263-bf96-42b6-985e-801f91300b63 .shogun-image-content {
  
    align-items: center;
  
}

#s-f60341a3-bb2a-4176-a24b-14e371a4e407 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f60341a3-bb2a-4176-a24b-14e371a4e407 .shogun-heading-component h1 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 22px;
  
  
  
}



#s-f4366898-2894-4772-b627-4278bb080fcc {
  text-align: center;
}







  #s-f4366898-2894-4772-b627-4278bb080fcc img.shogun-image {
    

    
    
    
  }


#s-f4366898-2894-4772-b627-4278bb080fcc .shogun-image-content {
  
    align-items: center;
  
}

#s-3d4305c0-1100-4ddd-8056-4930099dbf69 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3d4305c0-1100-4ddd-8056-4930099dbf69 .shogun-heading-component h1 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 22px;
  
  
  
}



#s-e0d85a62-5743-425b-b0f4-c3759194f679 {
  text-align: center;
}







  #s-e0d85a62-5743-425b-b0f4-c3759194f679 img.shogun-image {
    

    
    
    
  }


#s-e0d85a62-5743-425b-b0f4-c3759194f679 .shogun-image-content {
  
    align-items: center;
  
}

#s-cc5220b0-fe62-4c4d-932b-fa6dc2bfae1f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-cc5220b0-fe62-4c4d-932b-fa6dc2bfae1f .shogun-heading-component h1 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 22px;
  
  
  
}



#s-243591e2-3d1c-4cc2-b3c9-dcb4edbf795e {
  text-align: center;
}







  #s-243591e2-3d1c-4cc2-b3c9-dcb4edbf795e img.shogun-image {
    

    
    
    
  }


#s-243591e2-3d1c-4cc2-b3c9-dcb4edbf795e .shogun-image-content {
  
    align-items: center;
  
}

#s-9f848c4e-2729-4977-bd0b-fe47abb1f17d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9f848c4e-2729-4977-bd0b-fe47abb1f17d .shogun-heading-component h1 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 22px;
  
  
  
}



.shogun-tabs {
  margin: 0 !important;
  list-style: none !important;
  padding: 0 0 0 0;
  overflow: visible;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.shogun-tabs.shogun-modern {
  padding-left: 10px;
  padding-right: 5px;
  overflow: hidden;
  transform: translate(0px, 0px);
}

.shogun-tabs li {
  text-decoration: none;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
}

.shogun-tabs.shogun-modern li {
  width: 200px;
  height: 45px;
  margin: 0 5px 0 0;
}

.shogun-tabs.shogun-rounded li {
  margin-bottom: 0;
  float: left;
  box-sizing: border-box;
  margin-right: 2px;
  line-height: 1.42857143;
  position: relative;
  display: block;
  overflow: visible;
}

.shogun-tabs.shogun-rounded li .shogun-tab-box {
  padding: 10px 15px !important;
  border-radius: 4px 4px 0 0;
}

.shogun-tabs.shogun-modern li .shogun-tab-box {
  padding: 12px 5px !important;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .shogun-tabs.shogun-rounded li .shogun-tab-box {
    padding: 10px 5px !important;
    text-align: center;
  }

  .shogun-tabs.shogun-modern li .shogun-tab-box {
    padding: 12px 15px !important;
  }
}

.shogun-tabs.shogun-rounded .shogun-tab-box {
  border-bottom: none !important;
}

.shogun-tabs.shogun-modern li.active {
  z-index: 40;
}

.shogun-tabs.shogun-modern li .shogun-tab-box::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: -1;
  outline: 1px solid transparent;
  border-radius: 4px 4px 0 0;
  content: "";
  transform: perspective(100px) rotateX(30deg);
  -webkit-transform: perspective(100px) rotateX(30deg);
}

.shogun-tabs.shogun-modern li.shogun-tab-active .shogun-tab-box::after {
  border-bottom: none !important;
  height: 46px;
}

.shogun-tabs-body {
  padding-top: 10px;
}

.shogun-tabs-body.shogun-rounded {
  margin-top: 0px !important;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.shogun-tabs-body > .shogun-tab-content {
  display: none;
}

.shogun-tabs-body > .shogun-tab-content.shogun-tab-active {
  -webkit-animation: fadeIn 0.5s;
  animation: fadeIn 0.5s;
  display: block;
}

.shogun-tab-border {
  position: absolute;
}

.shogun-tab-title {
  white-space: nowrap;
  text-align: center;

  display: inline-block;
  width: 100%;
}

.shogun-tabs.shogun-modern .shogun-tab-title {
  /** Hack for Safari weird bug */
  /* https://stackoverflow.com/questions/18146511/bug-in-css3-rotatey-transition-on-safari */
  transform: translateZ(1000px);
}


  #s-23b6b4ca-93e4-4b47-9d3c-00b1d65c61f2 .shogun-tabs > li > .shogun-tab-box {
    background: #fff;
    border: 1px solid #DDDDDD;
  }
  #s-23b6b4ca-93e4-4b47-9d3c-00b1d65c61f2 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: #F4F4F4;
    border: 1px solid #ddd;
  }
#s-23b6b4ca-93e4-4b47-9d3c-00b1d65c61f2 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(2, 167, 233, 1);
  font-family: Open Sans;
  font-weight: 600;
  font-style: ;
  font-size: 16px;
}

#s-23b6b4ca-93e4-4b47-9d3c-00b1d65c61f2 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: #555;
}

#s-23b6b4ca-93e4-4b47-9d3c-00b1d65c61f2 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: #F4F4F4;
}

#s-23b6b4ca-93e4-4b47-9d3c-00b1d65c61f2 .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid #ddd;
}

#s-ed60bd91-efcb-4e6a-9ac0-391399380fa1 {
  min-height: 50px;
}








#s-ed60bd91-efcb-4e6a-9ac0-391399380fa1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ed60bd91-efcb-4e6a-9ac0-391399380fa1.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-f2a7a36e-b8e9-4664-b504-67d11f635154"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f2a7a36e-b8e9-4664-b504-67d11f635154"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f2a7a36e-b8e9-4664-b504-67d11f635154"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f2a7a36e-b8e9-4664-b504-67d11f635154"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-1c2c3220-1728-4e1f-af9c-f2d67401a612 {
  text-align: center;
}







  #s-1c2c3220-1728-4e1f-af9c-f2d67401a612 img.shogun-image {
    

    
    
    
  }


#s-1c2c3220-1728-4e1f-af9c-f2d67401a612 .shogun-image-content {
  
    align-items: center;
  
}

#s-f78167de-57c6-4604-b72f-a7de24a85e44 {
  min-height: 50px;
}








#s-f78167de-57c6-4604-b72f-a7de24a85e44 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f78167de-57c6-4604-b72f-a7de24a85e44.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-fb7140c8-59fd-4870-8ce8-96b09f8dcce0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fb7140c8-59fd-4870-8ce8-96b09f8dcce0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-fb7140c8-59fd-4870-8ce8-96b09f8dcce0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-fb7140c8-59fd-4870-8ce8-96b09f8dcce0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-7c9a6285-fca5-4612-adef-8953920cfb6a {
  text-align: center;
}







  #s-7c9a6285-fca5-4612-adef-8953920cfb6a img.shogun-image {
    

    
    
    
  }


#s-7c9a6285-fca5-4612-adef-8953920cfb6a .shogun-image-content {
  
    align-items: center;
  
}

#s-7a45bec1-4468-497b-9886-b9246f3abca5 {
  min-height: 50px;
}








#s-7a45bec1-4468-497b-9886-b9246f3abca5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7a45bec1-4468-497b-9886-b9246f3abca5.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-4503934d-3031-4823-a931-3e34e04fd7ba"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4503934d-3031-4823-a931-3e34e04fd7ba"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4503934d-3031-4823-a931-3e34e04fd7ba"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4503934d-3031-4823-a931-3e34e04fd7ba"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-65e5af48-caf5-4eba-83ca-f812b0b8ca7d {
  text-align: center;
}







  #s-65e5af48-caf5-4eba-83ca-f812b0b8ca7d img.shogun-image {
    

    
    
    
  }


#s-65e5af48-caf5-4eba-83ca-f812b0b8ca7d .shogun-image-content {
  
    align-items: center;
  
}

#s-47c975ff-ac87-4a80-983c-dd2f1a7d9416 {
  min-height: 50px;
}








#s-47c975ff-ac87-4a80-983c-dd2f1a7d9416 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-47c975ff-ac87-4a80-983c-dd2f1a7d9416.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cc7fae31-02f6-4c95-b35a-30c6326f449c hr {
  border-top: 2px solid #ddd;
}

#s-d999409b-7594-4140-85e0-3a3ee7af2e60 {
  min-height: 50px;
}








#s-d999409b-7594-4140-85e0-3a3ee7af2e60 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d999409b-7594-4140-85e0-3a3ee7af2e60.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3d0a6c5e-f90e-4a48-b930-2bc8da15cc03 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3d0a6c5e-f90e-4a48-b930-2bc8da15cc03 .shogun-heading-component h2 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-0c4d0a19-2c52-48b9-a307-7e04d55a79e8 {
  min-height: 50px;
}








#s-0c4d0a19-2c52-48b9-a307-7e04d55a79e8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0c4d0a19-2c52-48b9-a307-7e04d55a79e8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5ddbadf4-2ca3-437f-aa09-1e8d60201b3d {
  min-height: 50px;
}








#s-5ddbadf4-2ca3-437f-aa09-1e8d60201b3d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5ddbadf4-2ca3-437f-aa09-1e8d60201b3d.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-32e93b6e-4c61-46e9-b499-0c20395e30c3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-32e93b6e-4c61-46e9-b499-0c20395e30c3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-32e93b6e-4c61-46e9-b499-0c20395e30c3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-32e93b6e-4c61-46e9-b499-0c20395e30c3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-55a60e3b-04b1-477a-a36e-3951de46da09 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-55a60e3b-04b1-477a-a36e-3951de46da09 .shogun-heading-component h4 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-a259145a-7637-44dc-a1b1-9d5801a5343a {
  min-height: 50px;
}








#s-a259145a-7637-44dc-a1b1-9d5801a5343a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a259145a-7637-44dc-a1b1-9d5801a5343a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8682d282-b96e-4c8f-87ca-809de77494eb {
  text-align: center;
}







  #s-8682d282-b96e-4c8f-87ca-809de77494eb img.shogun-image {
    

    
    
    
  }


#s-8682d282-b96e-4c8f-87ca-809de77494eb .shogun-image-content {
  
    align-items: center;
  
}

#s-aaf9f550-9fe5-4737-adfa-01ac8687e754 {
  min-height: 50px;
}








#s-aaf9f550-9fe5-4737-adfa-01ac8687e754 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-aaf9f550-9fe5-4737-adfa-01ac8687e754.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0449ea67-c942-4b5b-b364-5d48e5175e1d hr {
  border-top: 2px solid #ddd;
}

#s-58380121-8ff9-4517-9ece-a6cf8498e123 {
  min-height: 50px;
}








#s-58380121-8ff9-4517-9ece-a6cf8498e123 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-58380121-8ff9-4517-9ece-a6cf8498e123.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-159307a1-4a5e-4ef6-8f49-0b80814ff733"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-159307a1-4a5e-4ef6-8f49-0b80814ff733"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-159307a1-4a5e-4ef6-8f49-0b80814ff733"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-159307a1-4a5e-4ef6-8f49-0b80814ff733"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-78af00bb-970b-4ee6-bc53-1a836b62a0a3 {
  text-align: center;
}







  #s-78af00bb-970b-4ee6-bc53-1a836b62a0a3 img.shogun-image {
    

    
    
    
  }


#s-78af00bb-970b-4ee6-bc53-1a836b62a0a3 .shogun-image-content {
  
    align-items: center;
  
}

#s-8ee0314c-e87f-4616-bada-471f8c32edfb {
  min-height: 50px;
}








#s-8ee0314c-e87f-4616-bada-471f8c32edfb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8ee0314c-e87f-4616-bada-471f8c32edfb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2de4cb51-8e4b-45d5-a049-c24467216303 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2de4cb51-8e4b-45d5-a049-c24467216303 .shogun-heading-component h2 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-0194900b-8381-4c11-944d-33c82b4ef23a {
  min-height: 50px;
}








#s-0194900b-8381-4c11-944d-33c82b4ef23a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0194900b-8381-4c11-944d-33c82b4ef23a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-37ade1bb-ab3c-4bfa-be94-2f76cf9e2f31 hr {
  border-top: 2px solid #ddd;
}

#s-903d13e4-1ada-491d-817a-65bfaea71fb6 {
  min-height: 50px;
}








#s-903d13e4-1ada-491d-817a-65bfaea71fb6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-903d13e4-1ada-491d-817a-65bfaea71fb6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}


  #s-a73cf16d-078f-41bb-852a-4931ff61623c .shogun-tabs > li > .shogun-tab-box {
    background: #fff;
    border: 1px solid #DDDDDD;
  }
  #s-a73cf16d-078f-41bb-852a-4931ff61623c .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: #F4F4F4;
    border: 1px solid #ddd;
  }
#s-a73cf16d-078f-41bb-852a-4931ff61623c .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: #50b3da;
  font-family: Open Sans;
  font-weight: 600;
  font-style: ;
  font-size: 14px;
}

#s-a73cf16d-078f-41bb-852a-4931ff61623c .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: #555;
}

#s-a73cf16d-078f-41bb-852a-4931ff61623c .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: #F4F4F4;
}

#s-a73cf16d-078f-41bb-852a-4931ff61623c .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid #ddd;
}

@media (min-width: 0px) {
[id="s-d8ab715d-8834-45c0-b669-5092bf71a764"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d8ab715d-8834-45c0-b669-5092bf71a764"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d8ab715d-8834-45c0-b669-5092bf71a764"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d8ab715d-8834-45c0-b669-5092bf71a764"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-387c00d1-9fef-400b-895b-20a14a7c8659 {
  min-height: 50px;
}








#s-387c00d1-9fef-400b-895b-20a14a7c8659 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-387c00d1-9fef-400b-895b-20a14a7c8659.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1ad882b7-9fa9-4964-8470-0002ec1254a6 {
  text-align: center;
}







  #s-1ad882b7-9fa9-4964-8470-0002ec1254a6 img.shogun-image {
    

    
    
    
  }


#s-1ad882b7-9fa9-4964-8470-0002ec1254a6 .shogun-image-content {
  
    align-items: center;
  
}

#s-a6fffa48-9102-4d07-81cf-072be89c68b5 {
  min-height: 50px;
}








#s-a6fffa48-9102-4d07-81cf-072be89c68b5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a6fffa48-9102-4d07-81cf-072be89c68b5.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-c3995bcd-849d-4f20-81bf-54b7045c76dc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c3995bcd-849d-4f20-81bf-54b7045c76dc"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c3995bcd-849d-4f20-81bf-54b7045c76dc"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c3995bcd-849d-4f20-81bf-54b7045c76dc"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-b511bf6a-be79-4ac9-848d-387d7b82fcea {
  min-height: 50px;
}








#s-b511bf6a-be79-4ac9-848d-387d7b82fcea > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b511bf6a-be79-4ac9-848d-387d7b82fcea.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-57c16827-6c50-41f4-ad27-92d2e88bbbec {
  min-height: 50px;
}








#s-57c16827-6c50-41f4-ad27-92d2e88bbbec > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-57c16827-6c50-41f4-ad27-92d2e88bbbec.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c2ef814e-c5d4-4f65-8692-2a3b7a982809 {
  text-align: center;
}







  #s-c2ef814e-c5d4-4f65-8692-2a3b7a982809 img.shogun-image {
    

    
    
    
  }


#s-c2ef814e-c5d4-4f65-8692-2a3b7a982809 .shogun-image-content {
  
    align-items: center;
  
}

#s-6933cb25-7dd7-463b-8f4b-4dfbb6d8cced {
  min-height: 50px;
}








#s-6933cb25-7dd7-463b-8f4b-4dfbb6d8cced > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6933cb25-7dd7-463b-8f4b-4dfbb6d8cced.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-bf79f698-d15e-43a9-b1d5-654a2961901a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bf79f698-d15e-43a9-b1d5-654a2961901a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-bf79f698-d15e-43a9-b1d5-654a2961901a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-bf79f698-d15e-43a9-b1d5-654a2961901a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-f1fd03ac-b6ed-484b-91ca-86f9bef9b655 {
  text-align: center;
}







  #s-f1fd03ac-b6ed-484b-91ca-86f9bef9b655 img.shogun-image {
    

    
    
    
  }


#s-f1fd03ac-b6ed-484b-91ca-86f9bef9b655 .shogun-image-content {
  
    align-items: center;
  
}

#s-6747c014-9b39-4b60-9cf5-f7db670c3a2b {
  min-height: 50px;
}








#s-6747c014-9b39-4b60-9cf5-f7db670c3a2b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6747c014-9b39-4b60-9cf5-f7db670c3a2b.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-1cf53622-1373-483e-9be9-6ef019b52086"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1cf53622-1373-483e-9be9-6ef019b52086"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1cf53622-1373-483e-9be9-6ef019b52086"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1cf53622-1373-483e-9be9-6ef019b52086"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-72d67207-f21e-456a-a400-2f9269202154 {
  text-align: center;
}







  #s-72d67207-f21e-456a-a400-2f9269202154 img.shogun-image {
    

    
    
    
  }


#s-72d67207-f21e-456a-a400-2f9269202154 .shogun-image-content {
  
    align-items: center;
  
}

#s-813d314d-b8e8-42a1-9fde-8f012777dd1c {
  min-height: 50px;
}








#s-813d314d-b8e8-42a1-9fde-8f012777dd1c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-813d314d-b8e8-42a1-9fde-8f012777dd1c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c1db5a8e-f1be-4a55-85b1-f2ef5a08cd57 {
  min-height: 50px;
}








#s-c1db5a8e-f1be-4a55-85b1-f2ef5a08cd57 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c1db5a8e-f1be-4a55-85b1-f2ef5a08cd57.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-63860cd1-f359-4704-a170-7a999445fdcd hr {
  border-top: 2px solid #ddd;
}

#s-465586ca-73bc-484b-a9d0-ed01a784be66 {
  min-height: 50px;
}








#s-465586ca-73bc-484b-a9d0-ed01a784be66 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-465586ca-73bc-484b-a9d0-ed01a784be66.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-a15b2cfb-6eb5-47a4-8768-5a0089c3f9d5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a15b2cfb-6eb5-47a4-8768-5a0089c3f9d5"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-a15b2cfb-6eb5-47a4-8768-5a0089c3f9d5"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-a15b2cfb-6eb5-47a4-8768-5a0089c3f9d5"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-e9db85bd-c1e2-4569-95ce-37003f630935 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e9db85bd-c1e2-4569-95ce-37003f630935 .shogun-heading-component h4 {
  color: #000;
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-2bb3f592-9e66-4872-a979-5189e87335bb {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2bb3f592-9e66-4872-a979-5189e87335bb .shogun-heading-component h4 {
  color: #000;
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-f0ee423f-91b5-4a20-9ad8-8d252dab84d7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f0ee423f-91b5-4a20-9ad8-8d252dab84d7 .shogun-heading-component h4 {
  color: #000;
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-45cfab94-ac3c-4683-a64a-8e95b1858374 {
  min-height: 50px;
background-attachment: scroll;
}








#s-45cfab94-ac3c-4683-a64a-8e95b1858374 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-45cfab94-ac3c-4683-a64a-8e95b1858374.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ca9e5034-d555-4e30-9966-9907c01b4609 {
  padding-top: 20px;
padding-bottom: 20px;
}

#s-ca9e5034-d555-4e30-9966-9907c01b4609 hr {
  border-top: 2px solid #ddd;
}

#s-f4ce7368-f30d-409d-b7e9-961fdd28efae {
  padding-top: 10px;
text-align: center;
}

#s-f4ce7368-f30d-409d-b7e9-961fdd28efae .shogun-heading-component h2 {
  color: rgba(89, 89, 89, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-146ce772-d4e3-40aa-a8ef-5eb262095838 {
  border-style: solid;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(236, 236, 236, 1);
border-radius: 0px;
min-height: 0px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-146ce772-d4e3-40aa-a8ef-5eb262095838 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-146ce772-d4e3-40aa-a8ef-5eb262095838 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-146ce772-d4e3-40aa-a8ef-5eb262095838 {
  
}
}@media (max-width: 767px){#s-146ce772-d4e3-40aa-a8ef-5eb262095838 {
  
}
}







#s-146ce772-d4e3-40aa-a8ef-5eb262095838 > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0;
}#s-146ce772-d4e3-40aa-a8ef-5eb262095838.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7873a6f1-6c7d-4fc2-ac7d-98068b379e4d {
  margin-top: 5px;
margin-left: 15px;
margin-bottom: 5px;
margin-right: 15px;
}

@media (min-width: 0px) {
[id="s-7873a6f1-6c7d-4fc2-ac7d-98068b379e4d"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-7873a6f1-6c7d-4fc2-ac7d-98068b379e4d"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-7873a6f1-6c7d-4fc2-ac7d-98068b379e4d"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-7873a6f1-6c7d-4fc2-ac7d-98068b379e4d"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-88e7ea93-6efd-416e-86ab-6cbf09220c3b {
  border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
border-top-width: 0px;
border-left-width: 00px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(221, 221, 221, 1);
min-height: 50px;
}








#s-88e7ea93-6efd-416e-86ab-6cbf09220c3b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-88e7ea93-6efd-416e-86ab-6cbf09220c3b.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-3dedd42b-4c66-4b14-a76e-e18f3e331800 {
  margin-left: 20px;
margin-right: 20px;
}

#s-3dedd42b-4c66-4b14-a76e-e18f3e331800 .shogun-icon-wrapper {
  text-align: center;
}


#s-3dedd42b-4c66-4b14-a76e-e18f3e331800 .shogun-icon-wrapper > .shogun-icon {

  font-size: 48px !important;
  color: rgba(89, 89, 89, 1);
}

#s-d39ac381-acf5-495d-b04c-0fabd309f99d {
  margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d39ac381-acf5-495d-b04c-0fabd309f99d .shogun-heading-component h2 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-51ec2a3f-f51a-4265-939d-2265dd6d9a93 {
  margin-left: 20px;
margin-right: 20px;
}

#s-68b2eed0-09a1-48e4-8f36-ed1163d48b75 {
  border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
border-top-width: 0px;
border-left-width: 00px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(221, 221, 221, 1);
min-height: 50px;
}








#s-68b2eed0-09a1-48e4-8f36-ed1163d48b75 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-68b2eed0-09a1-48e4-8f36-ed1163d48b75.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-d4dafcee-56f2-4227-99cc-d080c95fc7a6 {
  margin-left: 20px;
margin-right: 20px;
}

#s-d4dafcee-56f2-4227-99cc-d080c95fc7a6 .shogun-icon-wrapper {
  text-align: center;
}


#s-d4dafcee-56f2-4227-99cc-d080c95fc7a6 .shogun-icon-wrapper > .shogun-icon {

  font-size: 48px !important;
  color: rgba(89, 89, 89, 1);
}

#s-68be5b68-a4fd-4765-9bf6-6dc58e952ff8 {
  margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-68be5b68-a4fd-4765-9bf6-6dc58e952ff8 .shogun-heading-component h2 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-3094dc2b-109d-4a54-b779-03f229e29747 {
  margin-left: 20px;
margin-right: 20px;
}

#s-edab1919-4474-46c6-a4c6-3762eb616823 {
  border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
border-top-width: 0px;
border-left-width: 00px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(221, 221, 221, 1);
min-height: 50px;
}








#s-edab1919-4474-46c6-a4c6-3762eb616823 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-edab1919-4474-46c6-a4c6-3762eb616823.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-e12b9161-fe16-4cb8-8e45-67ae187fe8f5 {
  margin-left: 20px;
margin-right: 20px;
}

#s-e12b9161-fe16-4cb8-8e45-67ae187fe8f5 .shogun-icon-wrapper {
  text-align: center;
}


#s-e12b9161-fe16-4cb8-8e45-67ae187fe8f5 .shogun-icon-wrapper > .shogun-icon {

  font-size: 48px !important;
  color: rgba(89, 89, 89, 1);
}

#s-43bddea2-c735-46cb-9237-e77ea9e16fb4 {
  margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-43bddea2-c735-46cb-9237-e77ea9e16fb4 .shogun-heading-component h2 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-28e84732-ce41-4607-b568-580c70f39e9a {
  margin-left: 20px;
margin-right: 20px;
}

#s-c8933d39-d99e-4c2f-867d-e5458eee71fc {
  border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
border-top-width: 0px;
border-left-width: 00px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(221, 221, 221, 1);
min-height: 50px;
}








#s-c8933d39-d99e-4c2f-867d-e5458eee71fc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c8933d39-d99e-4c2f-867d-e5458eee71fc.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-3e530f84-57d6-4076-8e81-68e490291823 {
  margin-left: 20px;
margin-right: 20px;
}

#s-3e530f84-57d6-4076-8e81-68e490291823 .shogun-icon-wrapper {
  text-align: center;
}


#s-3e530f84-57d6-4076-8e81-68e490291823 .shogun-icon-wrapper > .shogun-icon {

  font-size: 48px !important;
  color: rgba(89, 89, 89, 1);
}

#s-6c6ae9d1-30d4-4ae5-885e-0776312991a5 {
  margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6c6ae9d1-30d4-4ae5-885e-0776312991a5 .shogun-heading-component h2 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-80accca3-6049-4dd5-9ce5-d582ff68c92b {
  margin-left: 20px;
margin-right: 20px;
}

#s-6a3fa86e-659b-41db-a4f8-982915460678 {
  padding-top: 20px;
padding-bottom: 20px;
}

#s-6a3fa86e-659b-41db-a4f8-982915460678 hr {
  border-top: 2px solid #ddd;
}

/*
  $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}