.shg-box {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  /**
   * 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;
}

.shg-box-vertical-align-wrapper, .shg-box-vertical-center-wrapper {
  display: flex;
  width: 100%;
}

.shg-box-vertical-align-top {
  justify-content: flex-start;
}

.shg-box-vertical-align-center, .shg-box-vertical-center {
  justify-content: center;
}

.shg-box-vertical-align-bottom {
  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;
}

@media (min-width: 768px) and (max-width: 991px){#s-d7b35ce4-49f6-42b0-a7c4-c3e0cc52a5ca {
  display: none;
}
#s-d7b35ce4-49f6-42b0-a7c4-c3e0cc52a5ca, #wrap-s-d7b35ce4-49f6-42b0-a7c4-c3e0cc52a5ca { display: none !important; }}@media (max-width: 767px){#s-d7b35ce4-49f6-42b0-a7c4-c3e0cc52a5ca {
  display: none;
}
#s-d7b35ce4-49f6-42b0-a7c4-c3e0cc52a5ca, #wrap-s-d7b35ce4-49f6-42b0-a7c4-c3e0cc52a5ca { display: none !important; }}







#s-d7b35ce4-49f6-42b0-a7c4-c3e0cc52a5ca > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d7b35ce4-49f6-42b0-a7c4-c3e0cc52a5ca.shg-box.shg-c {
  justify-content: center;
}

#s-f3a9518c-dbbb-4bd7-8b5a-70233a78d310 {
  min-height: 300px;
}








#s-f3a9518c-dbbb-4bd7-8b5a-70233a78d310 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f3a9518c-dbbb-4bd7-8b5a-70233a78d310.shg-box.shg-c {
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-contain {
  font-family: "object-fit: contain;";
  -o-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-7ab4b4a4-d383-4e1f-b22d-dd257fcb0abb {
  text-align: center;
}







  #s-7ab4b4a4-d383-4e1f-b22d-dd257fcb0abb img.shogun-image {
    

    
    
    
  }


#s-7ab4b4a4-d383-4e1f-b22d-dd257fcb0abb .shogun-image-content {
  
    align-items: center;
  
}

#s-ee1d9506-c021-4dac-a68b-7636d0e810ca {
  margin-top: 25px;
margin-bottom: 25px;
min-height: 300px;
}








#s-ee1d9506-c021-4dac-a68b-7636d0e810ca > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ee1d9506-c021-4dac-a68b-7636d0e810ca.shg-box.shg-c {
  justify-content: center;
}

.shg-row {
  display: flex;
  flex-wrap: wrap;
  min-height: inherit;
  max-height: inherit;
  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;
}

/* 
  Shopify base css adds display none to empty divs
  This causes items in the second column position to shift when
  the first column is empty. In order to overwrite that style,
  we have to manually set empty divs in the column to display block 
  so the whole element holds its positioning on published pages.
*/

.shg-row > div:empty {
  display: block;
}

#s-ed4c5c0e-b6ee-429d-87bc-0931f11794c0 {
  margin-left: auto;
margin-right: auto;
min-height: 27px;
max-width: 1250px;
}

@media (min-width: 0px) {
[id="s-ed4c5c0e-b6ee-429d-87bc-0931f11794c0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ed4c5c0e-b6ee-429d-87bc-0931f11794c0"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-ed4c5c0e-b6ee-429d-87bc-0931f11794c0"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ed4c5c0e-b6ee-429d-87bc-0931f11794c0"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-ed4c5c0e-b6ee-429d-87bc-0931f11794c0"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ed4c5c0e-b6ee-429d-87bc-0931f11794c0"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-ed4c5c0e-b6ee-429d-87bc-0931f11794c0"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

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

.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 ::-moz-selection, .shg-default-text-content *::-moz-selection {
  background: #accef7;
}
.shg-default-text-content ::selection,
.shg-default-text-content *::selection {
  background: #accef7;
}

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

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

.shg-theme-text-content p {
  
  
  
}

#s-d7d28699-a5a6-4721-97ee-a962e5025072 {
  margin-left: 10px;
margin-bottom: -15px;
margin-right: 10px;
}

.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;
  
  
  text-transform: none;
  
  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-e282e394-c29c-4098-bc93-74f5bb30fd0a {
  margin-left: 10px;
margin-right: 10px;
text-align: left;
}

#s-e282e394-c29c-4098-bc93-74f5bb30fd0a .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 38px;
  
  
  text-align: left;
}



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

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

#s-a98b0efd-e5ff-4702-9444-1ec7e0d54bc2 {
  padding-left: 2%;
padding-right: 2%;
}

#s-a98b0efd-e5ff-4702-9444-1ec7e0d54bc2 hr {
  border-top: 2px solid #ddd;
}

#s-8b8dbb4e-c86e-4ebd-a213-ae073ff14f1b {
  margin-left: 10px;
margin-right: 10px;
}

#s-db64fd1b-442f-477b-a276-7575398aa2d6 {
  margin-top: auto;
margin-left: 25px;
margin-bottom: auto;
margin-right: 25px;
min-height: 500px;
}








#s-db64fd1b-442f-477b-a276-7575398aa2d6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-db64fd1b-442f-477b-a276-7575398aa2d6.shg-box.shg-c {
  justify-content: center;
}

#s-ac424996-b55d-40cd-a09c-06e312ee4c6e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ac424996-b55d-40cd-a09c-06e312ee4c6e .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}



.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-9eccd5d9-497d-49b9-848a-de4e654fc124 {
  margin-top: 10px;
margin-left: 90px;
margin-right: 90px;
}

#s-47f87e1c-5efb-4d28-b3d9-7ab6402b91a0 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 1250px;
}








#s-47f87e1c-5efb-4d28-b3d9-7ab6402b91a0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-47f87e1c-5efb-4d28-b3d9-7ab6402b91a0.shg-box.shg-c {
  justify-content: center;
}

#s-94e85d90-6eef-4ef9-8fbe-2c53a8120482 {
  margin-left: 10px;
margin-bottom: -30px;
margin-right: 10px;
}

#s-94e85d90-6eef-4ef9-8fbe-2c53a8120482 hr {
  border-top: 2px solid #ddd;
}

#s-2ba278c0-1b4d-492a-992d-6ea959a400da {
  margin-top: 25px;
margin-left: 150px;
margin-right: 150px;
}

#s-086c25d8-1e2d-45f7-82de-df52b404c2e0 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 300px;
background-position: center center;
}








#s-086c25d8-1e2d-45f7-82de-df52b404c2e0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-086c25d8-1e2d-45f7-82de-df52b404c2e0.shg-box.shg-c {
  justify-content: center;
}

#s-a5f251e1-5339-4678-94ea-ddfd2c5b4df1 {
  margin-top: 15px;
margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
min-height: 200px;
max-width: 800px;
}








#s-a5f251e1-5339-4678-94ea-ddfd2c5b4df1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a5f251e1-5339-4678-94ea-ddfd2c5b4df1.shg-box.shg-c {
  justify-content: center;
}

#s-1320e058-4f4c-4812-a69a-4fb379fe1cd8 {
  margin-left: 25px;
margin-right: 25px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1320e058-4f4c-4812-a69a-4fb379fe1cd8 .shogun-heading-component h1 {
  color: rgba(255, 182, 0, 1);
  font-weight:  900 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-231142e6-e6e4-4581-bc86-bbe76519778b {
  margin-left: 15px;
margin-right: 15px;
}

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

.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-4cde6433-b405-4786-9a72-8c7797319859 {
  box-shadow:2px 2px 5px 1px rgba(0, 0, 0, 0.23);
background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNGFjNzVhNDItODFiNi00NTNiLTllMDgtN2Q2MWQzYTRhZjFjIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjZiODI3O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIwLjIiIHN0eWxlPSJzdG9wLWNvbG9yOiNmNmI4Mjc7c3RvcC1vcGFjaXR5OjEiLz48c3RvcCBvZmZzZXQ9IjAuMjc3MjcyNzI3MjcyNzI3MyIgc3R5bGU9InN0b3AtY29sb3I6I2Y2YjgyNztzdG9wLW9wYWNpdHk6MSIvPjxzdG9wIG9mZnNldD0iMC41IiBzdHlsZT0ic3RvcC1jb2xvcjojZjZiODI3O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIwLjkxMzYzNjM2MzYzNjM2MzciIHN0eWxlPSJzdG9wLWNvbG9yOiNlMGEwMTM7c3RvcC1vcGFjaXR5OjEiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoIzRhYzc1YTQyLTgxYjYtNDUzYi05ZTA4LTdkNjFkM2E0YWYxYykiLz48L3N2Zz4=);
background-repeat: no-repeat;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 30px;
padding-bottom: 10px;
padding-right: 30px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(187, 136, 15, 1);
border-style: solid;
border-radius: 3px;
max-width: 277px;
text-align: center;
text-decoration: none;
color: rgba(21, 43, 79, 1);
hover-type: gradient;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f6b827"}, {"id"=>4, "pos"=>0.2, "color"=>"#f6b827"}, {"id"=>3, "pos"=>0.2772727272727273, "color"=>"#f6b827"}, {"id"=>5, "pos"=>0.5, "color"=>"#f6b827"}, {"id"=>2, "pos"=>0.9136363636363637, "color"=>"#e0a013"}];
}
#s-4cde6433-b405-4786-9a72-8c7797319859:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(21, 43, 79, 1) !important;
border-radius: 3px !important;
background-color: rgba(21, 43, 79, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-4cde6433-b405-4786-9a72-8c7797319859:active {background-color: rgba(21, 43, 79, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-4cde6433-b405-4786-9a72-8c7797319859-root {
    text-align: center;
  }


#s-4cde6433-b405-4786-9a72-8c7797319859.shg-btn {
  color: rgba(21, 43, 79, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Lato;
  display:  block ;
}
@media (min-width: 1200px){
  #s-4cde6433-b405-4786-9a72-8c7797319859-root {
    text-align: center;
  }


#s-4cde6433-b405-4786-9a72-8c7797319859.shg-btn {
  color: rgba(21, 43, 79, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Lato;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4cde6433-b405-4786-9a72-8c7797319859-root {
    text-align: center;
  }


#s-4cde6433-b405-4786-9a72-8c7797319859.shg-btn {
  color: rgba(21, 43, 79, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Lato;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4cde6433-b405-4786-9a72-8c7797319859-root {
    text-align: center;
  }


#s-4cde6433-b405-4786-9a72-8c7797319859.shg-btn {
  color: rgba(21, 43, 79, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Lato;
  display:  block ;
}
}@media (max-width: 767px){
  #s-4cde6433-b405-4786-9a72-8c7797319859-root {
    text-align: center;
  }


#s-4cde6433-b405-4786-9a72-8c7797319859.shg-btn {
  color: rgba(21, 43, 79, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Lato;
  display:  block ;
}
}
#s-29dd4765-f23d-429b-87c0-d26f1d414f32 {
  margin-top: 25px;
margin-left: auto;
margin-right: auto;
min-height: 300px;
max-width: 1250px;
}








#s-29dd4765-f23d-429b-87c0-d26f1d414f32 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-29dd4765-f23d-429b-87c0-d26f1d414f32.shg-box.shg-c {
  justify-content: center;
}

#s-2e8efce8-36c0-4727-b6f0-bb33d33554ec {
  margin-left: 25px;
margin-right: 25px;
min-height: 200px;
}








#s-2e8efce8-36c0-4727-b6f0-bb33d33554ec > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2e8efce8-36c0-4727-b6f0-bb33d33554ec.shg-box.shg-c {
  justify-content: center;
}

#s-3ce63d1a-3ce4-4d0c-a130-06d37c691a36 {
  margin-bottom: -15px;
}

#s-c2d603ba-53ef-4775-9967-c48f8e832119 {
  text-align: center;
}

#s-c2d603ba-53ef-4775-9967-c48f8e832119 .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 50px;
  
  
  text-align: center;
}



#s-3a74acd7-a1e8-4494-8d66-f36f73173d1d {
  margin-left: auto;
margin-right: auto;
max-width: 800px;
}








#s-896c2eee-1de2-4b85-bba0-e2bcdee38bdf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-896c2eee-1de2-4b85-bba0-e2bcdee38bdf.shg-box.shg-c {
  justify-content: center;
}

#s-bdf64f7f-5a10-4271-bee6-1c294b8631ba {
  min-height: 50px;
}








#s-bdf64f7f-5a10-4271-bee6-1c294b8631ba > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-bdf64f7f-5a10-4271-bee6-1c294b8631ba.shg-box.shg-c {
  justify-content: center;
}

#s-1a378f4a-9d65-45d7-9dad-6a5725eb168f {
  text-align: center;
}







  #s-1a378f4a-9d65-45d7-9dad-6a5725eb168f img.shogun-image {
    

    
    
    
  }


#s-1a378f4a-9d65-45d7-9dad-6a5725eb168f .shogun-image-content {
  
    align-items: center;
  
}

#s-99c78dd0-add3-4272-8c01-93ffbb8b4c12 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-99c78dd0-add3-4272-8c01-93ffbb8b4c12 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

#s-abf901b2-0b1a-4870-bfc8-ff3c7bed480b {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-abf901b2-0b1a-4870-bfc8-ff3c7bed480b .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-abf901b2-0b1a-4870-bfc8-ff3c7bed480b .shg-sld-nav-button.shg-sld-left,
#s-abf901b2-0b1a-4870-bfc8-ff3c7bed480b .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-2aa8bf43-ff6f-423a-b622-e0799e8b0d64 {
  margin-top: 25px;
}

@media (min-width: 0px) {
[id="s-2aa8bf43-ff6f-423a-b622-e0799e8b0d64"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2aa8bf43-ff6f-423a-b622-e0799e8b0d64"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-2aa8bf43-ff6f-423a-b622-e0799e8b0d64"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-2aa8bf43-ff6f-423a-b622-e0799e8b0d64"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-ce189398-664c-491c-a02f-00a28225b70a {
  min-height: 200px;
}








#s-ce189398-664c-491c-a02f-00a28225b70a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ce189398-664c-491c-a02f-00a28225b70a.shg-box.shg-c {
  justify-content: center;
}

#s-c8c7e6ad-d3b8-4929-a28f-6da9c9f938bc {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
text-align: center;
}







  #s-c8c7e6ad-d3b8-4929-a28f-6da9c9f938bc img.shogun-image {
    

    
    
    
  }


#s-c8c7e6ad-d3b8-4929-a28f-6da9c9f938bc .shogun-image-content {
  
    align-items: center;
  
}

#s-e39c9f6e-d8b3-4224-acc9-2a55e472475a {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-e39c9f6e-d8b3-4224-acc9-2a55e472475a .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}



#s-5db503ba-d51d-4540-bdc5-d61b554cd407 {
  min-height: 200px;
}








#s-5db503ba-d51d-4540-bdc5-d61b554cd407 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5db503ba-d51d-4540-bdc5-d61b554cd407.shg-box.shg-c {
  justify-content: center;
}

#s-1827a41e-f224-424e-87f1-2e017144f89b {
  margin-left: auto;
margin-right: auto;
max-width: 973px;
aspect-ratio: 973/503;
text-align: center;
}





  #s-1827a41e-f224-424e-87f1-2e017144f89b img.shogun-image,
  #s-1827a41e-f224-424e-87f1-2e017144f89b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1827a41e-f224-424e-87f1-2e017144f89b {
    width: 100%;
    height: auto;
  }



  #s-1827a41e-f224-424e-87f1-2e017144f89b img.shogun-image {
    

    
    
    
  }


#s-1827a41e-f224-424e-87f1-2e017144f89b .shogun-image-content {
  
    align-items: center;
  
}

#s-ee57761f-ab97-47c4-9a56-12506f77f372 {
  padding-top: 10px;
text-align: center;
}

#s-ee57761f-ab97-47c4-9a56-12506f77f372 .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}



#s-8e24862a-2aa4-4458-8421-ffd92b433e04 {
  min-height: 200px;
}








#s-8e24862a-2aa4-4458-8421-ffd92b433e04 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8e24862a-2aa4-4458-8421-ffd92b433e04.shg-box.shg-c {
  justify-content: center;
}

#s-40e4404b-9799-4ef8-b096-279209338a03 {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
text-align: center;
}







  #s-40e4404b-9799-4ef8-b096-279209338a03 img.shogun-image {
    

    
    
    
  }


#s-40e4404b-9799-4ef8-b096-279209338a03 .shogun-image-content {
  
    align-items: center;
  
}

#s-1a11b38c-7492-42fd-806b-af8bb7efa8bc {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-1a11b38c-7492-42fd-806b-af8bb7efa8bc .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}



#s-3fec1e26-e77f-405d-b711-fc1e26a44600 {
  margin-top: 25px;
}

@media (min-width: 0px) {
[id="s-3fec1e26-e77f-405d-b711-fc1e26a44600"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3fec1e26-e77f-405d-b711-fc1e26a44600"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-3fec1e26-e77f-405d-b711-fc1e26a44600"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-3fec1e26-e77f-405d-b711-fc1e26a44600"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-bceeb263-f6a1-4c8e-90c5-72c12105901e {
  min-height: 200px;
}








#s-bceeb263-f6a1-4c8e-90c5-72c12105901e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-bceeb263-f6a1-4c8e-90c5-72c12105901e.shg-box.shg-c {
  justify-content: center;
}

#s-a147df14-1ec5-47e4-8ccb-4f873f587998 {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
text-align: center;
}







  #s-a147df14-1ec5-47e4-8ccb-4f873f587998 img.shogun-image {
    

    
    
    
  }


#s-a147df14-1ec5-47e4-8ccb-4f873f587998 .shogun-image-content {
  
    align-items: center;
  
}

#s-fce74874-e103-45d2-9da1-0a3e5e7160fb {
  padding-top: 10px;
text-align: center;
}

#s-fce74874-e103-45d2-9da1-0a3e5e7160fb .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}



#s-867bfca7-f4a9-4312-b722-9763c337c7c1 {
  min-height: 200px;
}








#s-867bfca7-f4a9-4312-b722-9763c337c7c1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-867bfca7-f4a9-4312-b722-9763c337c7c1.shg-box.shg-c {
  justify-content: center;
}

#s-a3bef926-ad47-440c-8f6e-d1d1ce89598f {
  margin-left: auto;
margin-right: auto;
min-height: 0px;
max-width: 1138px;
aspect-ratio: 16/9;
text-align: center;
}





  #s-a3bef926-ad47-440c-8f6e-d1d1ce89598f img.shogun-image,
  #s-a3bef926-ad47-440c-8f6e-d1d1ce89598f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a3bef926-ad47-440c-8f6e-d1d1ce89598f {
    width: 100%;
    height: auto;
  }



  #s-a3bef926-ad47-440c-8f6e-d1d1ce89598f img.shogun-image {
    

    
    
    
  }


#s-a3bef926-ad47-440c-8f6e-d1d1ce89598f .shogun-image-content {
  
    align-items: center;
  
}

#s-50596fbb-642d-4bd3-a59d-a51d7ad0f5cf {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-50596fbb-642d-4bd3-a59d-a51d7ad0f5cf .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}



#s-c803bc7e-db69-467d-94de-084218828615 {
  min-height: 200px;
}








#s-c803bc7e-db69-467d-94de-084218828615 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c803bc7e-db69-467d-94de-084218828615.shg-box.shg-c {
  justify-content: center;
}

#s-f31968b1-5c42-48bd-8a93-0e04415a778d {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
text-align: center;
}







  #s-f31968b1-5c42-48bd-8a93-0e04415a778d img.shogun-image {
    

    
    
    
  }


#s-f31968b1-5c42-48bd-8a93-0e04415a778d .shogun-image-content {
  
    align-items: center;
  
}

#s-08f3c6d6-9d5c-4014-95c1-3590755a7535 {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-08f3c6d6-9d5c-4014-95c1-3590755a7535 .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}



#s-781cc90f-91c8-4d7f-8a71-693894814973 {
  margin-top: 25px;
}








#s-781cc90f-91c8-4d7f-8a71-693894814973 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-781cc90f-91c8-4d7f-8a71-693894814973.shg-box.shg-c {
  justify-content: center;
}

#s-e6908311-4643-4296-b603-c667c6a15955 {
  min-height: 50px;
}








#s-e6908311-4643-4296-b603-c667c6a15955 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e6908311-4643-4296-b603-c667c6a15955.shg-box.shg-c {
  justify-content: center;
}

#s-fed1457c-9bcd-4d8b-be00-6d47d234dd0f {
  text-align: center;
}







  #s-fed1457c-9bcd-4d8b-be00-6d47d234dd0f img.shogun-image {
    

    
    
    
  }


#s-fed1457c-9bcd-4d8b-be00-6d47d234dd0f .shogun-image-content {
  
    align-items: center;
  
}

#s-59da92a8-3974-47d5-9553-5fb77367e2fe {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-59da92a8-3974-47d5-9553-5fb77367e2fe .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-0c186f2f-c406-43ac-8e58-85c8f53c1698 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-0c186f2f-c406-43ac-8e58-85c8f53c1698 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-0c186f2f-c406-43ac-8e58-85c8f53c1698 .shg-sld-nav-button.shg-sld-left,
#s-0c186f2f-c406-43ac-8e58-85c8f53c1698 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-8a2cca60-f8ea-4a83-9fa1-da0950b1ba9b {
  margin-top: 25px;
}

@media (min-width: 0px) {
[id="s-8a2cca60-f8ea-4a83-9fa1-da0950b1ba9b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8a2cca60-f8ea-4a83-9fa1-da0950b1ba9b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-8a2cca60-f8ea-4a83-9fa1-da0950b1ba9b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-8a2cca60-f8ea-4a83-9fa1-da0950b1ba9b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-f2aef83d-f57c-4514-a48b-f7282c688f58 {
  min-height: 200px;
}








#s-f2aef83d-f57c-4514-a48b-f7282c688f58 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f2aef83d-f57c-4514-a48b-f7282c688f58.shg-box.shg-c {
  justify-content: center;
}

#s-549dee55-9bb1-485f-bab1-b609b0b4b5b9 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
text-align: center;
}







  #s-549dee55-9bb1-485f-bab1-b609b0b4b5b9 img.shogun-image {
    

    
    
    
  }


#s-549dee55-9bb1-485f-bab1-b609b0b4b5b9 .shogun-image-content {
  
    align-items: center;
  
}

#s-4e791cbc-f0cf-422d-a411-93441d5ac649 {
  padding-top: 10px;
text-align: center;
}

#s-4e791cbc-f0cf-422d-a411-93441d5ac649 .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}



#s-3c08e749-ffb2-4cd3-a776-933afaa3bfb6 {
  min-height: 200px;
}








#s-3c08e749-ffb2-4cd3-a776-933afaa3bfb6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3c08e749-ffb2-4cd3-a776-933afaa3bfb6.shg-box.shg-c {
  justify-content: center;
}

#s-6f49322d-39bd-41d4-b6a5-b1617dcccded {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
text-align: center;
}







  #s-6f49322d-39bd-41d4-b6a5-b1617dcccded img.shogun-image {
    

    
    
    
  }


#s-6f49322d-39bd-41d4-b6a5-b1617dcccded .shogun-image-content {
  
    align-items: center;
  
}

#s-d44bba6b-09c2-4893-808b-8e6f3bcc7fb6 {
  padding-top: 10px;
text-align: center;
}

#s-d44bba6b-09c2-4893-808b-8e6f3bcc7fb6 .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}



#s-eb4e01a0-2c68-4e21-b3f1-7a2792475da9 {
  min-height: 200px;
}








#s-eb4e01a0-2c68-4e21-b3f1-7a2792475da9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-eb4e01a0-2c68-4e21-b3f1-7a2792475da9.shg-box.shg-c {
  justify-content: center;
}

#s-18b4ae0b-0335-490e-9d93-4ff76f00e4eb {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
text-align: center;
}







  #s-18b4ae0b-0335-490e-9d93-4ff76f00e4eb img.shogun-image {
    

    
    
    
  }


#s-18b4ae0b-0335-490e-9d93-4ff76f00e4eb .shogun-image-content {
  
    align-items: center;
  
}

#s-3751ea7c-e01a-4aff-8cf8-7285bffdc53d {
  padding-top: 10px;
text-align: center;
}

#s-3751ea7c-e01a-4aff-8cf8-7285bffdc53d .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}



#s-d53bb793-e1aa-4a87-95bf-212f4ba40db1 {
  margin-top: 25px;
}

@media (min-width: 0px) {
[id="s-d53bb793-e1aa-4a87-95bf-212f4ba40db1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d53bb793-e1aa-4a87-95bf-212f4ba40db1"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-d53bb793-e1aa-4a87-95bf-212f4ba40db1"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-d53bb793-e1aa-4a87-95bf-212f4ba40db1"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-72e47d34-e0ae-4969-94a0-d7aa731aace3 {
  min-height: 200px;
}








#s-72e47d34-e0ae-4969-94a0-d7aa731aace3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-72e47d34-e0ae-4969-94a0-d7aa731aace3.shg-box.shg-c {
  justify-content: center;
}

#s-832e6ec5-ca75-4d00-b1d4-7b084f1bd4d7 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
text-align: center;
}







  #s-832e6ec5-ca75-4d00-b1d4-7b084f1bd4d7 img.shogun-image {
    

    
    
    
  }


#s-832e6ec5-ca75-4d00-b1d4-7b084f1bd4d7 .shogun-image-content {
  
    align-items: center;
  
}

#s-22f92e81-8bbe-4b60-aa63-b71809763c28 {
  padding-top: 10px;
text-align: center;
}

#s-22f92e81-8bbe-4b60-aa63-b71809763c28 .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}



#s-7881cab0-849c-4ef3-a63c-3118af00431a {
  min-height: 200px;
}








#s-7881cab0-849c-4ef3-a63c-3118af00431a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7881cab0-849c-4ef3-a63c-3118af00431a.shg-box.shg-c {
  justify-content: center;
}

#s-89ba5591-acee-478a-8183-790a48d19c99 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
text-align: center;
}







  #s-89ba5591-acee-478a-8183-790a48d19c99 img.shogun-image {
    

    
    
    
  }


#s-89ba5591-acee-478a-8183-790a48d19c99 .shogun-image-content {
  
    align-items: center;
  
}

#s-a61f48d5-eb1d-44f0-b262-251363a64feb {
  padding-top: 10px;
text-align: center;
}

#s-a61f48d5-eb1d-44f0-b262-251363a64feb .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}



#s-e674f8c0-d2eb-4499-9d90-cf4df6c8fae3 {
  min-height: 200px;
}








#s-e674f8c0-d2eb-4499-9d90-cf4df6c8fae3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e674f8c0-d2eb-4499-9d90-cf4df6c8fae3.shg-box.shg-c {
  justify-content: center;
}

#s-4f5bab95-78f6-4421-bc00-214c693ba9d0 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
text-align: center;
}







  #s-4f5bab95-78f6-4421-bc00-214c693ba9d0 img.shogun-image {
    

    
    
    
  }


#s-4f5bab95-78f6-4421-bc00-214c693ba9d0 .shogun-image-content {
  
    align-items: center;
  
}

#s-d8d3234d-922d-4505-b1e0-969e7567dd13 {
  padding-top: 10px;
text-align: center;
}

#s-d8d3234d-922d-4505-b1e0-969e7567dd13 .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}



#s-40ac83ed-ac9b-4cff-b0c0-806ea1f0b174 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 25px;
min-height: 700px;
background-position: center top;
}








#s-40ac83ed-ac9b-4cff-b0c0-806ea1f0b174 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-40ac83ed-ac9b-4cff-b0c0-806ea1f0b174.shg-box.shg-c {
  justify-content: center;
}

#s-eb8a73b0-ebaf-4e41-a546-49f242c869d9 {
  margin-left: auto;
margin-right: auto;
min-height: 200px;
max-width: 800px;
}








#s-eb8a73b0-ebaf-4e41-a546-49f242c869d9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-eb8a73b0-ebaf-4e41-a546-49f242c869d9.shg-box.shg-c {
  justify-content: center;
}

#s-9bb93c37-f2fe-44a0-a853-dcfbb8414db9 {
  margin-top: 150px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9bb93c37-f2fe-44a0-a853-dcfbb8414db9 .shogun-heading-component h1 {
  color: rgba(255, 182, 0, 1);
  font-weight:  900 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-2d84ade0-fed2-4a15-82ec-58c087b3ba22 {
  margin-top: -5px;
}

#s-0f9f1c3b-51c1-49b4-92b7-8f84824d7f32 {
  margin-top: -7px;
margin-left: 10px;
margin-right: 10px;
}

#s-89ad188a-9bcb-4c33-95e9-3eb3c0524986 {
  margin-left: 25px;
margin-right: 25px;
min-height: 200px;
}








#s-89ad188a-9bcb-4c33-95e9-3eb3c0524986 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-89ad188a-9bcb-4c33-95e9-3eb3c0524986.shg-box.shg-c {
  justify-content: center;
}

#s-f30dd825-c6e9-4d26-bc32-25cdb427f6fb {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
max-width: 1100px;
}

@media (min-width: 0px) {
[id="s-f30dd825-c6e9-4d26-bc32-25cdb427f6fb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f30dd825-c6e9-4d26-bc32-25cdb427f6fb"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-f30dd825-c6e9-4d26-bc32-25cdb427f6fb"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-f30dd825-c6e9-4d26-bc32-25cdb427f6fb"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-07fc8678-7a21-457f-955c-86329084f5be {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(255, 255, 255, 1);
}








#s-07fc8678-7a21-457f-955c-86329084f5be > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-07fc8678-7a21-457f-955c-86329084f5be.shg-box.shg-c {
  justify-content: center;
}

#s-035e148c-29a0-47db-bfc3-ca22af00ebdf {
  margin-top: 10px;
margin-left: 15px;
margin-bottom: 10px;
margin-right: 15px;
min-height: 50px;
}








#s-035e148c-29a0-47db-bfc3-ca22af00ebdf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-035e148c-29a0-47db-bfc3-ca22af00ebdf.shg-box.shg-c {
  justify-content: center;
}

#s-fdd8dd6d-b47e-48e9-975a-6b99105d3a49 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 250px;
text-align: center;
}

#s-fdd8dd6d-b47e-48e9-975a-6b99105d3a49 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-7b35213e-beac-44a7-8d49-41dc0a70d80c {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(255, 255, 255, 1);
}








#s-7b35213e-beac-44a7-8d49-41dc0a70d80c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7b35213e-beac-44a7-8d49-41dc0a70d80c.shg-box.shg-c {
  justify-content: center;
}

#s-a9703330-349a-4029-82f7-980e7fd9368a {
  margin-top: 10px;
margin-left: 15px;
margin-bottom: 10px;
margin-right: 15px;
min-height: 50px;
}








#s-a9703330-349a-4029-82f7-980e7fd9368a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a9703330-349a-4029-82f7-980e7fd9368a.shg-box.shg-c {
  justify-content: center;
}

#s-2b701468-e60c-43f6-b6ec-22144c911c91 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 250px;
text-align: center;
}

#s-2b701468-e60c-43f6-b6ec-22144c911c91 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-9a7114a8-be98-455c-9f4e-88c77c4be595 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(255, 255, 255, 1);
}








#s-9a7114a8-be98-455c-9f4e-88c77c4be595 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9a7114a8-be98-455c-9f4e-88c77c4be595.shg-box.shg-c {
  justify-content: center;
}

#s-95d1ada4-c00b-4cce-8151-1b9e762eba9e {
  margin-top: 10px;
margin-left: 15px;
margin-bottom: 10px;
margin-right: 15px;
min-height: 50px;
}








#s-95d1ada4-c00b-4cce-8151-1b9e762eba9e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-95d1ada4-c00b-4cce-8151-1b9e762eba9e.shg-box.shg-c {
  justify-content: center;
}

#s-9bed7feb-e0a1-44d8-9bcf-09b9aac7bf4b {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 270px;
text-align: center;
}

#s-9bed7feb-e0a1-44d8-9bcf-09b9aac7bf4b .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-7b410ee7-6ad5-4bde-b97c-805666bec752 {
  margin-top: 25px;
margin-left: auto;
margin-right: auto;
max-width: 1100px;
}

@media (min-width: 0px) {
[id="s-7b410ee7-6ad5-4bde-b97c-805666bec752"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7b410ee7-6ad5-4bde-b97c-805666bec752"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-7b410ee7-6ad5-4bde-b97c-805666bec752"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-7b410ee7-6ad5-4bde-b97c-805666bec752"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-aa5fce1e-7f3e-42ae-85a3-9b2b73d73b3b {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(255, 255, 255, 1);
}








#s-aa5fce1e-7f3e-42ae-85a3-9b2b73d73b3b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-aa5fce1e-7f3e-42ae-85a3-9b2b73d73b3b.shg-box.shg-c {
  justify-content: center;
}

#s-1c293427-caaa-4474-a9c3-aa3c0f6d6b9d {
  margin-top: 10px;
margin-left: 15px;
margin-bottom: 10px;
margin-right: 15px;
min-height: 50px;
}








#s-1c293427-caaa-4474-a9c3-aa3c0f6d6b9d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1c293427-caaa-4474-a9c3-aa3c0f6d6b9d.shg-box.shg-c {
  justify-content: center;
}

#s-49827d20-02f1-4ff9-a4f3-7a1b25e498ee {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 250px;
text-align: center;
}

#s-49827d20-02f1-4ff9-a4f3-7a1b25e498ee .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-19206333-900c-48b5-abab-b07a7b478c18 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(255, 255, 255, 1);
}








#s-19206333-900c-48b5-abab-b07a7b478c18 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-19206333-900c-48b5-abab-b07a7b478c18.shg-box.shg-c {
  justify-content: center;
}

#s-e0d587f2-2b00-4ef0-9ae2-589c295b8a70 {
  margin-top: 10px;
margin-left: 15px;
margin-bottom: 10px;
margin-right: 15px;
min-height: 50px;
}








#s-e0d587f2-2b00-4ef0-9ae2-589c295b8a70 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e0d587f2-2b00-4ef0-9ae2-589c295b8a70.shg-box.shg-c {
  justify-content: center;
}

#s-009a0180-51c1-4180-9672-68f7904bbb59 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 250px;
text-align: center;
}

#s-009a0180-51c1-4180-9672-68f7904bbb59 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-ed5292ad-ce82-408c-b83b-1847ad0ea36b {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(255, 255, 255, 1);
}








#s-ed5292ad-ce82-408c-b83b-1847ad0ea36b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ed5292ad-ce82-408c-b83b-1847ad0ea36b.shg-box.shg-c {
  justify-content: center;
}

#s-4098d1fa-191b-43c5-a4f3-bb68e944757d {
  margin-top: 10px;
margin-left: 15px;
margin-bottom: 10px;
margin-right: 15px;
min-height: 50px;
}








#s-4098d1fa-191b-43c5-a4f3-bb68e944757d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4098d1fa-191b-43c5-a4f3-bb68e944757d.shg-box.shg-c {
  justify-content: center;
}

#s-b45d84a4-0f44-4ace-b25c-1d99f2a09890 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 464px;
text-align: center;
}

#s-b45d84a4-0f44-4ace-b25c-1d99f2a09890 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-50688c27-c8c5-4c7d-9c09-b3996b38379a {
  margin-top: 30px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
max-width: 600px;
}

@media (min-width: 0px) {
[id="s-50688c27-c8c5-4c7d-9c09-b3996b38379a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 25.0px);
}

}

@media (min-width: 768px) {
[id="s-50688c27-c8c5-4c7d-9c09-b3996b38379a"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 40.0px);
}

}

@media (min-width: 992px) {
[id="s-50688c27-c8c5-4c7d-9c09-b3996b38379a"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 40.0px);
}

}

@media (min-width: 1200px) {
[id="s-50688c27-c8c5-4c7d-9c09-b3996b38379a"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 40.0px);
}

}

#s-73eced1f-cb20-4cdf-a0dd-6dc9126c7fda {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 200px;
}








#s-73eced1f-cb20-4cdf-a0dd-6dc9126c7fda > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-73eced1f-cb20-4cdf-a0dd-6dc9126c7fda.shg-box.shg-c {
  justify-content: center;
}

#s-67885b9a-2cf8-46ec-a0eb-792aa404e7ac {
  text-align: center;
}







  #s-67885b9a-2cf8-46ec-a0eb-792aa404e7ac img.shogun-image {
    

    
    
    
  }


#s-67885b9a-2cf8-46ec-a0eb-792aa404e7ac .shogun-image-content {
  
    align-items: center;
  
}

#s-2a4dd6b6-66aa-4b0b-8df8-7ec5937111a0 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 200px;
}








#s-2a4dd6b6-66aa-4b0b-8df8-7ec5937111a0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2a4dd6b6-66aa-4b0b-8df8-7ec5937111a0.shg-box.shg-c {
  justify-content: center;
}

#s-713c6ce1-588e-48d1-b107-0ef533044b5e {
  text-align: center;
}







  #s-713c6ce1-588e-48d1-b107-0ef533044b5e img.shogun-image {
    

    
    
    
  }


#s-713c6ce1-588e-48d1-b107-0ef533044b5e .shogun-image-content {
  
    align-items: center;
  
}

#s-c832ed15-3527-469b-92ed-373908b13632 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 200px;
}








#s-c832ed15-3527-469b-92ed-373908b13632 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c832ed15-3527-469b-92ed-373908b13632.shg-box.shg-c {
  justify-content: center;
}

#s-e04f6b75-f25c-458a-84f6-76b97130c0ad {
  text-align: center;
}







  #s-e04f6b75-f25c-458a-84f6-76b97130c0ad img.shogun-image {
    

    
    
    
  }


#s-e04f6b75-f25c-458a-84f6-76b97130c0ad .shogun-image-content {
  
    align-items: center;
  
}

#s-c30d88a7-92aa-4a2f-9115-323be258547a {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 200px;
}








#s-c30d88a7-92aa-4a2f-9115-323be258547a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c30d88a7-92aa-4a2f-9115-323be258547a.shg-box.shg-c {
  justify-content: center;
}

#s-f68d20eb-cf67-45a1-90d9-27f634876994 {
  text-align: center;
}







  #s-f68d20eb-cf67-45a1-90d9-27f634876994 img.shogun-image {
    

    
    
    
  }


#s-f68d20eb-cf67-45a1-90d9-27f634876994 .shogun-image-content {
  
    align-items: center;
  
}

#s-48a0135f-cee1-4b1b-b721-210947d33033 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 200px;
}








#s-48a0135f-cee1-4b1b-b721-210947d33033 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-48a0135f-cee1-4b1b-b721-210947d33033.shg-box.shg-c {
  justify-content: center;
}

#s-cdd22d38-9025-4e62-be43-ce4a978bee9f {
  text-align: center;
}







  #s-cdd22d38-9025-4e62-be43-ce4a978bee9f img.shogun-image {
    

    
    
    
  }


#s-cdd22d38-9025-4e62-be43-ce4a978bee9f .shogun-image-content {
  
    align-items: center;
  
}

#s-8562bd3e-896f-4fe5-809a-b1d72984608a {
  margin-top: 25px;
margin-bottom: 25px;
min-height: 300px;
}








#s-8562bd3e-896f-4fe5-809a-b1d72984608a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8562bd3e-896f-4fe5-809a-b1d72984608a.shg-box.shg-c {
  justify-content: center;
}

#s-f4ec7cd8-81bb-41df-98d6-b3f58f7bcb4c {
  margin-left: auto;
margin-right: auto;
min-height: 27px;
max-width: 1250px;
}

@media (min-width: 0px) {
[id="s-f4ec7cd8-81bb-41df-98d6-b3f58f7bcb4c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f4ec7cd8-81bb-41df-98d6-b3f58f7bcb4c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f4ec7cd8-81bb-41df-98d6-b3f58f7bcb4c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f4ec7cd8-81bb-41df-98d6-b3f58f7bcb4c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-12675780-dd3e-42f8-8bd1-0a98d86234b3 {
  margin-top: 2px;
margin-left: 25px;
margin-bottom: 2px;
margin-right: 25px;
min-height: 400px;
}








#s-12675780-dd3e-42f8-8bd1-0a98d86234b3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-12675780-dd3e-42f8-8bd1-0a98d86234b3.shg-box.shg-c {
  justify-content: center;
}

#s-a5895a8f-53bb-4b35-8521-4aa4debdfd6f {
  text-align: left;
}

#s-a5895a8f-53bb-4b35-8521-4aa4debdfd6f .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 38px;
  
  
  text-align: left;
}



#s-aced2eaf-3a6a-4370-b8ab-0b557fd9549f {
  margin-bottom: -15px;
}

#s-6a885ebf-27b5-48b5-a522-b760e893029d {
  margin-top: 15px;
max-width: 500px;
}

#s-0fd480cf-d793-4bba-badd-6fffb43717bf {
  margin-left: 25px;
margin-right: 25px;
min-height: 400px;
}








#s-0fd480cf-d793-4bba-badd-6fffb43717bf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0fd480cf-d793-4bba-badd-6fffb43717bf.shg-box.shg-c {
  justify-content: center;
}

#s-dc0560d9-0ecc-4ba6-ab2f-1929ec9dfbe8 {
  min-height: 200px;
}

@media (min-width: 0px) {
[id="s-dc0560d9-0ecc-4ba6-ab2f-1929ec9dfbe8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-dc0560d9-0ecc-4ba6-ab2f-1929ec9dfbe8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-dc0560d9-0ecc-4ba6-ab2f-1929ec9dfbe8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-dc0560d9-0ecc-4ba6-ab2f-1929ec9dfbe8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-909b0a9c-5208-4a36-a18a-910977998137 {
  min-height: 250px;
background-color: rgba(0, 0, 0, 0);
}








#s-909b0a9c-5208-4a36-a18a-910977998137 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-909b0a9c-5208-4a36-a18a-910977998137.shg-box.shg-c {
  justify-content: center;
}

#s-34beeee4-5bb6-4a3f-adea-243741d343e2 {
  max-width: 474px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-34beeee4-5bb6-4a3f-adea-243741d343e2 img.shogun-image,
  #s-34beeee4-5bb6-4a3f-adea-243741d343e2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-34beeee4-5bb6-4a3f-adea-243741d343e2 {
    width: 100%;
    height: auto;
  }



  #s-34beeee4-5bb6-4a3f-adea-243741d343e2 img.shogun-image {
    

    
    
    
  }


#s-34beeee4-5bb6-4a3f-adea-243741d343e2 .shogun-image-content {
  
    align-items: center;
  
}

#s-d60c31b2-771d-4d2d-981b-f3647e6bf37b {
  min-height: 200px;
}








#s-d60c31b2-771d-4d2d-981b-f3647e6bf37b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d60c31b2-771d-4d2d-981b-f3647e6bf37b.shg-box.shg-c {
  justify-content: center;
}

#s-838b1339-0fea-4a51-b39b-332f624f1b97 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-838b1339-0fea-4a51-b39b-332f624f1b97 .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 23px;
  
  
  text-align: left;
}



#s-6df34ff4-b50a-478c-92ac-c7001d0050bf {
  padding-top: 15px;
}

#s-6df34ff4-b50a-478c-92ac-c7001d0050bf hr {
  border-top: 4px solid rgba(101, 181, 172, 1);
}

#s-85fa7f62-f22d-4810-ab06-238fc6a6198e {
  background-color: rgba(181, 229, 241, 1);
}








#s-85fa7f62-f22d-4810-ab06-238fc6a6198e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-85fa7f62-f22d-4810-ab06-238fc6a6198e.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-dfc8fbf5-d770-4cbd-ba26-1aade416379a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-dfc8fbf5-d770-4cbd-ba26-1aade416379a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-dfc8fbf5-d770-4cbd-ba26-1aade416379a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-dfc8fbf5-d770-4cbd-ba26-1aade416379a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-cee8ccd6-4c7b-4eee-b5fd-44d7a318dec3 {
  min-height: 448px;
}








#s-cee8ccd6-4c7b-4eee-b5fd-44d7a318dec3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-cee8ccd6-4c7b-4eee-b5fd-44d7a318dec3.shg-box.shg-c {
  justify-content: flex-end;
}

#s-1880e2d2-3752-4f26-80fa-f72a06dc1c50 {
  text-align: center;
}







  #s-1880e2d2-3752-4f26-80fa-f72a06dc1c50 img.shogun-image {
    

    
    
    
  }


#s-1880e2d2-3752-4f26-80fa-f72a06dc1c50 .shogun-image-content {
  
    align-items: center;
  
}

#s-1f5194d1-a12b-4f3a-bd18-3df909ca942f {
  margin-top: auto;
margin-left: 25px;
margin-bottom: auto;
margin-right: 25px;
min-height: 450px;
max-width: 600px;
}








#s-1f5194d1-a12b-4f3a-bd18-3df909ca942f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1f5194d1-a12b-4f3a-bd18-3df909ca942f.shg-box.shg-c {
  justify-content: center;
}

#s-567328b4-f49e-44bd-8dd0-12d1f43cf4e1 {
  margin-bottom: 6px;
max-width: 600px;
text-align: left;
}

#s-567328b4-f49e-44bd-8dd0-12d1f43cf4e1 .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  900 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 28px;
  
  
  text-align: left;
}



#s-0ca6fb78-e8af-47f9-94f2-3202c4c5fabe {
  margin-top: 10px;
margin-right: 64px;
max-width: 700px;
}

#s-d3878445-7fbf-43df-8b20-f5ee19b24a7d {
  box-shadow:2px 2px 5px 1px rgba(0, 0, 0, 0.23);
background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYzZjNGE1OGYtYWM3Ni00NTBiLWFhMTItMjU2ZGRiM2Q5YTgwIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjZiODI3O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIwLjIiIHN0eWxlPSJzdG9wLWNvbG9yOiNmNmI4Mjc7c3RvcC1vcGFjaXR5OjEiLz48c3RvcCBvZmZzZXQ9IjAuMjc3MjcyNzI3MjcyNzI3MyIgc3R5bGU9InN0b3AtY29sb3I6I2Y2YjgyNztzdG9wLW9wYWNpdHk6MSIvPjxzdG9wIG9mZnNldD0iMC41IiBzdHlsZT0ic3RvcC1jb2xvcjojZjZiODI3O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIwLjkxMzYzNjM2MzYzNjM2MzciIHN0eWxlPSJzdG9wLWNvbG9yOiNlMGEwMTM7c3RvcC1vcGFjaXR5OjEiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2M2YzRhNThmLWFjNzYtNDUwYi1hYTEyLTI1NmRkYjNkOWE4MCkiLz48L3N2Zz4=);
background-repeat: no-repeat;
padding-top: 10px;
padding-left: 30px;
padding-bottom: 10px;
padding-right: 30px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(187, 136, 15, 1);
border-style: solid;
border-radius: 3px;
max-width: 277px;
text-align: center;
text-decoration: none;
color: rgba(21, 43, 79, 1);
hover-type: gradient;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f6b827"}, {"id"=>4, "pos"=>0.2, "color"=>"#f6b827"}, {"id"=>3, "pos"=>0.2772727272727273, "color"=>"#f6b827"}, {"id"=>5, "pos"=>0.5, "color"=>"#f6b827"}, {"id"=>2, "pos"=>0.9136363636363637, "color"=>"#e0a013"}];
}
#s-d3878445-7fbf-43df-8b20-f5ee19b24a7d:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(21, 43, 79, 1) !important;
border-radius: 3px !important;
background-color: rgba(21, 43, 79, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-d3878445-7fbf-43df-8b20-f5ee19b24a7d:active {background-color: rgba(21, 43, 79, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-d3878445-7fbf-43df-8b20-f5ee19b24a7d-root {
    text-align: center;
  }


#s-d3878445-7fbf-43df-8b20-f5ee19b24a7d.shg-btn {
  color: rgba(21, 43, 79, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Lato;
  display:  block ;
}
@media (min-width: 1200px){
  #s-d3878445-7fbf-43df-8b20-f5ee19b24a7d-root {
    text-align: center;
  }


#s-d3878445-7fbf-43df-8b20-f5ee19b24a7d.shg-btn {
  color: rgba(21, 43, 79, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Lato;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d3878445-7fbf-43df-8b20-f5ee19b24a7d-root {
    text-align: center;
  }


#s-d3878445-7fbf-43df-8b20-f5ee19b24a7d.shg-btn {
  color: rgba(21, 43, 79, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Lato;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d3878445-7fbf-43df-8b20-f5ee19b24a7d-root {
    text-align: center;
  }


#s-d3878445-7fbf-43df-8b20-f5ee19b24a7d.shg-btn {
  color: rgba(21, 43, 79, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Lato;
  display:  block ;
}
}@media (max-width: 767px){
  #s-d3878445-7fbf-43df-8b20-f5ee19b24a7d-root {
    text-align: center;
  }


#s-d3878445-7fbf-43df-8b20-f5ee19b24a7d.shg-btn {
  color: rgba(21, 43, 79, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Lato;
  display:  block ;
}
}
@media (min-width: 1200px){#s-607fb67d-7bcb-4290-87b0-6fc80301a4a3 {
  display: none;
}
#s-607fb67d-7bcb-4290-87b0-6fc80301a4a3, #wrap-s-607fb67d-7bcb-4290-87b0-6fc80301a4a3 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-607fb67d-7bcb-4290-87b0-6fc80301a4a3 {
  display: none;
}
#s-607fb67d-7bcb-4290-87b0-6fc80301a4a3, #wrap-s-607fb67d-7bcb-4290-87b0-6fc80301a4a3 { display: none !important; }}@media (max-width: 767px){#s-607fb67d-7bcb-4290-87b0-6fc80301a4a3 {
  display: none;
}
#s-607fb67d-7bcb-4290-87b0-6fc80301a4a3, #wrap-s-607fb67d-7bcb-4290-87b0-6fc80301a4a3 { display: none !important; }}







#s-607fb67d-7bcb-4290-87b0-6fc80301a4a3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-607fb67d-7bcb-4290-87b0-6fc80301a4a3.shg-box.shg-c {
  justify-content: center;
}

#s-23a59342-5261-4476-b911-06036fa5c9a1 {
  min-height: 300px;
}








#s-23a59342-5261-4476-b911-06036fa5c9a1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-23a59342-5261-4476-b911-06036fa5c9a1.shg-box.shg-c {
  justify-content: center;
}

#s-017e2da7-218f-47d2-b67c-98359cf7c990 {
  text-align: center;
}







  #s-017e2da7-218f-47d2-b67c-98359cf7c990 img.shogun-image {
    

    
    
    
  }


#s-017e2da7-218f-47d2-b67c-98359cf7c990 .shogun-image-content {
  
    align-items: center;
  
}

#s-5a1ca713-989a-4363-bd45-a666e94221de {
  margin-top: 25px;
margin-bottom: 25px;
min-height: 300px;
}








#s-5a1ca713-989a-4363-bd45-a666e94221de > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5a1ca713-989a-4363-bd45-a666e94221de.shg-box.shg-c {
  justify-content: center;
}

#s-1484fb20-b3b2-4394-9c25-49b8a0a4cf89 {
  margin-top: auto;
margin-left: 25px;
margin-bottom: auto;
margin-right: 25px;
min-height: 500px;
}








#s-1484fb20-b3b2-4394-9c25-49b8a0a4cf89 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1484fb20-b3b2-4394-9c25-49b8a0a4cf89.shg-box.shg-c {
  justify-content: center;
}

#s-d08b162b-c59c-4403-a389-bbd4d5a0e7bd {
  margin-top: auto;
margin-left: 35px;
margin-bottom: auto;
margin-right: 35px;
}








#s-d08b162b-c59c-4403-a389-bbd4d5a0e7bd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d08b162b-c59c-4403-a389-bbd4d5a0e7bd.shg-box.shg-c {
  justify-content: center;
}

#s-71d9da26-3814-418a-8ff2-5f62a0e60867 {
  margin-bottom: -15px;
}

#s-4d16e036-bfb2-4dd6-b994-2b2e35653bae {
  text-align: center;
}

#s-4d16e036-bfb2-4dd6-b994-2b2e35653bae .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 40px;
  
  
  text-align: center;
}



#s-d91c6676-29a9-42b0-a7eb-cc8eeadfeee0 hr {
  border-top: 2px solid #ddd;
}

#s-8ee9533d-5f46-41c8-8887-86cde9d05a16 {
  margin-top: -20px;
margin-bottom: -20px;
}

#s-8ee9533d-5f46-41c8-8887-86cde9d05a16 hr {
  border-top: 2px solid #ddd;
}

#s-cd1704b1-d631-4791-9057-4cb3ac2574bd {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-cd1704b1-d631-4791-9057-4cb3ac2574bd .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-e95eed4d-57fb-4d89-9ab5-0bae89b065ef {
  margin-top: 10px;
margin-left: 25px;
margin-right: 25px;
}

#s-1ccf6017-6a6b-478d-8bb4-187188b83ab4 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 300px;
background-position: center center;
}








#s-1ccf6017-6a6b-478d-8bb4-187188b83ab4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1ccf6017-6a6b-478d-8bb4-187188b83ab4.shg-box.shg-c {
  justify-content: center;
}

#s-2c6e5d50-023f-46db-9c69-3bd9d34e7b19 {
  margin-top: 15px;
margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
min-height: 200px;
max-width: 800px;
}








#s-2c6e5d50-023f-46db-9c69-3bd9d34e7b19 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2c6e5d50-023f-46db-9c69-3bd9d34e7b19.shg-box.shg-c {
  justify-content: center;
}

#s-e4f924ab-64bf-46df-9cf1-f0376f7545d2 {
  margin-left: 25px;
margin-right: 25px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e4f924ab-64bf-46df-9cf1-f0376f7545d2 .shogun-heading-component h1 {
  color: rgba(255, 182, 0, 1);
  font-weight:  900 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-0ad94c90-ba1f-476e-b37f-148e4a191ab0 {
  margin-left: 25px;
margin-bottom: 5px;
margin-right: 25px;
}

#s-3e95ff8d-3931-4957-92c8-6d1702f864a7 {
  box-shadow:2px 2px 5px 1px rgba(0, 0, 0, 0.23);
background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iMjk5YjdhZGItMDJiYy00MDU5LWI1MzAtMmQwM2U4NTBlNmVhIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjZiODI3O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIwLjIiIHN0eWxlPSJzdG9wLWNvbG9yOiNmNmI4Mjc7c3RvcC1vcGFjaXR5OjEiLz48c3RvcCBvZmZzZXQ9IjAuMjc3MjcyNzI3MjcyNzI3MyIgc3R5bGU9InN0b3AtY29sb3I6I2Y2YjgyNztzdG9wLW9wYWNpdHk6MSIvPjxzdG9wIG9mZnNldD0iMC41IiBzdHlsZT0ic3RvcC1jb2xvcjojZjZiODI3O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIwLjkxMzYzNjM2MzYzNjM2MzciIHN0eWxlPSJzdG9wLWNvbG9yOiNlMGEwMTM7c3RvcC1vcGFjaXR5OjEiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoIzI5OWI3YWRiLTAyYmMtNDA1OS1iNTMwLTJkMDNlODUwZTZlYSkiLz48L3N2Zz4=);
background-repeat: no-repeat;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 30px;
padding-bottom: 10px;
padding-right: 30px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(187, 136, 15, 1);
border-style: solid;
border-radius: 3px;
max-width: 277px;
text-align: center;
text-decoration: none;
color: rgba(21, 43, 79, 1);
hover-type: gradient;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f6b827"}, {"id"=>4, "pos"=>0.2, "color"=>"#f6b827"}, {"id"=>3, "pos"=>0.2772727272727273, "color"=>"#f6b827"}, {"id"=>5, "pos"=>0.5, "color"=>"#f6b827"}, {"id"=>2, "pos"=>0.9136363636363637, "color"=>"#e0a013"}];
}
#s-3e95ff8d-3931-4957-92c8-6d1702f864a7:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(21, 43, 79, 1) !important;
border-radius: 3px !important;
background-color: rgba(21, 43, 79, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-3e95ff8d-3931-4957-92c8-6d1702f864a7:active {background-color: rgba(21, 43, 79, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-3e95ff8d-3931-4957-92c8-6d1702f864a7-root {
    text-align: center;
  }


#s-3e95ff8d-3931-4957-92c8-6d1702f864a7.shg-btn {
  color: rgba(21, 43, 79, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Lato;
  display:  block ;
}
@media (min-width: 1200px){
  #s-3e95ff8d-3931-4957-92c8-6d1702f864a7-root {
    text-align: center;
  }


#s-3e95ff8d-3931-4957-92c8-6d1702f864a7.shg-btn {
  color: rgba(21, 43, 79, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Lato;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-3e95ff8d-3931-4957-92c8-6d1702f864a7-root {
    text-align: center;
  }


#s-3e95ff8d-3931-4957-92c8-6d1702f864a7.shg-btn {
  color: rgba(21, 43, 79, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Lato;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-3e95ff8d-3931-4957-92c8-6d1702f864a7-root {
    text-align: center;
  }


#s-3e95ff8d-3931-4957-92c8-6d1702f864a7.shg-btn {
  color: rgba(21, 43, 79, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Lato;
  display:  block ;
}
}@media (max-width: 767px){
  #s-3e95ff8d-3931-4957-92c8-6d1702f864a7-root {
    text-align: center;
  }


#s-3e95ff8d-3931-4957-92c8-6d1702f864a7.shg-btn {
  color: rgba(21, 43, 79, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Lato;
  display:  block ;
}
}
#s-f3a45a84-08b8-4d2f-a52d-7b6ac428c2ec {
  margin-top: 25px;
margin-left: auto;
margin-right: auto;
min-height: 300px;
max-width: 1250px;
}








#s-f3a45a84-08b8-4d2f-a52d-7b6ac428c2ec > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f3a45a84-08b8-4d2f-a52d-7b6ac428c2ec.shg-box.shg-c {
  justify-content: center;
}

#s-78b83d3e-da6a-42e5-9a4c-400e58c7402a {
  margin-left: 35px;
margin-right: 35px;
min-height: 200px;
}








#s-78b83d3e-da6a-42e5-9a4c-400e58c7402a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-78b83d3e-da6a-42e5-9a4c-400e58c7402a.shg-box.shg-c {
  justify-content: center;
}

#s-6d0f752d-1c63-44d9-b0b8-c2b24a21b694 {
  margin-bottom: -15px;
}

#s-ec2f1704-d0f3-4ba3-94b5-7bbdd29c40c2 {
  text-align: center;
}

#s-ec2f1704-d0f3-4ba3-94b5-7bbdd29c40c2 .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 50px;
  
  
  text-align: center;
}



#s-a7d6819b-719d-4146-bbbc-52c6b8c31a78 {
  margin-left: auto;
margin-right: auto;
max-width: 800px;
}








#s-e129a707-fb00-4c6a-b283-32bd96787ccc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e129a707-fb00-4c6a-b283-32bd96787ccc.shg-box.shg-c {
  justify-content: center;
}

#s-d3ab9d4b-3ed8-4d2a-bac7-e0dc6d4e5101 {
  min-height: 50px;
}








#s-d3ab9d4b-3ed8-4d2a-bac7-e0dc6d4e5101 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d3ab9d4b-3ed8-4d2a-bac7-e0dc6d4e5101.shg-box.shg-c {
  justify-content: center;
}

#s-6887be70-22bd-4337-be4d-d14643ca976e {
  text-align: center;
}







  #s-6887be70-22bd-4337-be4d-d14643ca976e img.shogun-image {
    

    
    
    
  }


#s-6887be70-22bd-4337-be4d-d14643ca976e .shogun-image-content {
  
    align-items: center;
  
}

#s-610ebd71-ea79-4a54-a14c-52fb4aaac252 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-610ebd71-ea79-4a54-a14c-52fb4aaac252 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-396012ec-461f-42ba-9364-b00d6bf3fb38 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-396012ec-461f-42ba-9364-b00d6bf3fb38 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-396012ec-461f-42ba-9364-b00d6bf3fb38 .shg-sld-nav-button.shg-sld-left,
#s-396012ec-461f-42ba-9364-b00d6bf3fb38 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-d36ceab2-8a52-4b1f-a38a-8b82db2835c7 {
  margin-top: 25px;
}

@media (min-width: 0px) {
[id="s-d36ceab2-8a52-4b1f-a38a-8b82db2835c7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d36ceab2-8a52-4b1f-a38a-8b82db2835c7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d36ceab2-8a52-4b1f-a38a-8b82db2835c7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d36ceab2-8a52-4b1f-a38a-8b82db2835c7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-41a344ef-bafa-49f4-be16-9dfbddd38077 {
  min-height: 200px;
}








#s-41a344ef-bafa-49f4-be16-9dfbddd38077 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-41a344ef-bafa-49f4-be16-9dfbddd38077.shg-box.shg-c {
  justify-content: center;
}

#s-1fed82eb-f563-484a-b6f5-960f37fcc689 {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
text-align: center;
}







  #s-1fed82eb-f563-484a-b6f5-960f37fcc689 img.shogun-image {
    

    
    
    
  }


#s-1fed82eb-f563-484a-b6f5-960f37fcc689 .shogun-image-content {
  
    align-items: center;
  
}

#s-fe2745e4-8536-4192-8374-437d53ba7fe1 {
  padding-top: 10px;
text-align: center;
}

#s-fe2745e4-8536-4192-8374-437d53ba7fe1 .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}



#s-572d40eb-319e-4800-b52a-c76bdc5558d5 {
  min-height: 200px;
}








#s-572d40eb-319e-4800-b52a-c76bdc5558d5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-572d40eb-319e-4800-b52a-c76bdc5558d5.shg-box.shg-c {
  justify-content: center;
}

#s-89c4507a-7183-4799-8088-0ce5253a4c5f {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
text-align: center;
}







  #s-89c4507a-7183-4799-8088-0ce5253a4c5f img.shogun-image {
    

    
    
    
  }


#s-89c4507a-7183-4799-8088-0ce5253a4c5f .shogun-image-content {
  
    align-items: center;
  
}

#s-4f2a3010-b777-4838-a457-6679b205fe69 {
  padding-top: 10px;
text-align: center;
}

#s-4f2a3010-b777-4838-a457-6679b205fe69 .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}



#s-4fc46627-805e-4bb6-a8bd-9aee6db960e8 {
  margin-top: 25px;
}

@media (min-width: 0px) {
[id="s-4fc46627-805e-4bb6-a8bd-9aee6db960e8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4fc46627-805e-4bb6-a8bd-9aee6db960e8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4fc46627-805e-4bb6-a8bd-9aee6db960e8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4fc46627-805e-4bb6-a8bd-9aee6db960e8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-a24b7411-a7cc-4586-ae14-0d18a25760ba {
  min-height: 200px;
}








#s-a24b7411-a7cc-4586-ae14-0d18a25760ba > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a24b7411-a7cc-4586-ae14-0d18a25760ba.shg-box.shg-c {
  justify-content: center;
}

#s-4ea6ab0c-80c7-42e0-a397-56a7e59cbb26 {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
text-align: center;
}







  #s-4ea6ab0c-80c7-42e0-a397-56a7e59cbb26 img.shogun-image {
    

    
    
    
  }


#s-4ea6ab0c-80c7-42e0-a397-56a7e59cbb26 .shogun-image-content {
  
    align-items: center;
  
}

#s-c4a0d862-9b5f-4599-a189-9baa62f66250 {
  padding-top: 10px;
text-align: center;
}

#s-c4a0d862-9b5f-4599-a189-9baa62f66250 .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}



#s-3a980776-fe27-41a3-86e5-3d0ace32e1ce {
  min-height: 200px;
}








#s-3a980776-fe27-41a3-86e5-3d0ace32e1ce > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3a980776-fe27-41a3-86e5-3d0ace32e1ce.shg-box.shg-c {
  justify-content: center;
}

#s-d8230713-007b-4761-8591-674710f79dd4 {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
text-align: center;
}







  #s-d8230713-007b-4761-8591-674710f79dd4 img.shogun-image {
    

    
    
    
  }


#s-d8230713-007b-4761-8591-674710f79dd4 .shogun-image-content {
  
    align-items: center;
  
}

#s-d465077e-3e79-4338-9a5a-438659c3709f {
  padding-top: 10px;
text-align: center;
}

#s-d465077e-3e79-4338-9a5a-438659c3709f .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}



#s-7ca7b7a9-bcb3-47a3-ab33-e1d7c70c863f {
  margin-top: 25px;
}

@media (min-width: 0px) {
[id="s-7ca7b7a9-bcb3-47a3-ab33-e1d7c70c863f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7ca7b7a9-bcb3-47a3-ab33-e1d7c70c863f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7ca7b7a9-bcb3-47a3-ab33-e1d7c70c863f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7ca7b7a9-bcb3-47a3-ab33-e1d7c70c863f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-f011aa93-4b56-418c-8044-98bb8a6f47b4 {
  min-height: 200px;
}








#s-f011aa93-4b56-418c-8044-98bb8a6f47b4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f011aa93-4b56-418c-8044-98bb8a6f47b4.shg-box.shg-c {
  justify-content: center;
}

#s-04496735-1253-49d8-b482-78d2e2d64e17 {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
text-align: center;
}







  #s-04496735-1253-49d8-b482-78d2e2d64e17 img.shogun-image {
    

    
    
    
  }


#s-04496735-1253-49d8-b482-78d2e2d64e17 .shogun-image-content {
  
    align-items: center;
  
}

#s-4cd8b9d5-70a6-4c97-bd89-79d30b65fef4 {
  padding-top: 10px;
text-align: center;
}

#s-4cd8b9d5-70a6-4c97-bd89-79d30b65fef4 .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}



#s-5b2e43fa-7d30-4382-8153-857180bedb8f {
  min-height: 200px;
}








#s-5b2e43fa-7d30-4382-8153-857180bedb8f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5b2e43fa-7d30-4382-8153-857180bedb8f.shg-box.shg-c {
  justify-content: center;
}

#s-877ad1f6-5cd0-429b-995a-762967df8c17 {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
text-align: center;
}







  #s-877ad1f6-5cd0-429b-995a-762967df8c17 img.shogun-image {
    

    
    
    
  }


#s-877ad1f6-5cd0-429b-995a-762967df8c17 .shogun-image-content {
  
    align-items: center;
  
}

#s-8b57daf2-e1a7-4d1b-a59f-c93282f76e12 {
  padding-top: 10px;
text-align: center;
}

#s-8b57daf2-e1a7-4d1b-a59f-c93282f76e12 .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 26px;
  
  
  
}



#s-f4f8bed5-a924-4793-814a-321dfaa68b29 {
  margin-top: 25px;
}








#s-f4f8bed5-a924-4793-814a-321dfaa68b29 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f4f8bed5-a924-4793-814a-321dfaa68b29.shg-box.shg-c {
  justify-content: center;
}

#s-267090e0-c25a-46a9-9cc7-b41a1331b21d {
  min-height: 50px;
}








#s-267090e0-c25a-46a9-9cc7-b41a1331b21d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-267090e0-c25a-46a9-9cc7-b41a1331b21d.shg-box.shg-c {
  justify-content: center;
}

#s-1bf3afb3-5d23-4f28-a894-f5164ae27472 {
  text-align: center;
}







  #s-1bf3afb3-5d23-4f28-a894-f5164ae27472 img.shogun-image {
    

    
    
    
  }


#s-1bf3afb3-5d23-4f28-a894-f5164ae27472 .shogun-image-content {
  
    align-items: center;
  
}

#s-ad3409b2-c56c-4a4e-b787-49ee4d0478a7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ad3409b2-c56c-4a4e-b787-49ee4d0478a7 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-262894f6-6a37-405f-9b65-31dcc610b07f {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-262894f6-6a37-405f-9b65-31dcc610b07f .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-262894f6-6a37-405f-9b65-31dcc610b07f .shg-sld-nav-button.shg-sld-left,
#s-262894f6-6a37-405f-9b65-31dcc610b07f .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-ef0ec431-3a23-4aba-81d4-45119dfbe717 {
  margin-top: 25px;
}

@media (min-width: 0px) {
[id="s-ef0ec431-3a23-4aba-81d4-45119dfbe717"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ef0ec431-3a23-4aba-81d4-45119dfbe717"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ef0ec431-3a23-4aba-81d4-45119dfbe717"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ef0ec431-3a23-4aba-81d4-45119dfbe717"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-45cc2197-cdac-4213-bc72-1a8b4b4fa3a7 {
  min-height: 200px;
}








#s-45cc2197-cdac-4213-bc72-1a8b4b4fa3a7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-45cc2197-cdac-4213-bc72-1a8b4b4fa3a7.shg-box.shg-c {
  justify-content: center;
}

#s-e7b3ac4f-18ac-4eb5-9640-11af49c0e373 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
text-align: center;
}







  #s-e7b3ac4f-18ac-4eb5-9640-11af49c0e373 img.shogun-image {
    

    
    
    
  }


#s-e7b3ac4f-18ac-4eb5-9640-11af49c0e373 .shogun-image-content {
  
    align-items: center;
  
}

#s-299e0814-65fc-4e85-857b-5644fcd01842 {
  padding-top: 10px;
text-align: center;
}

#s-299e0814-65fc-4e85-857b-5644fcd01842 .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}



#s-543520cd-be6b-4949-a548-1b802ed462fa {
  min-height: 200px;
}








#s-543520cd-be6b-4949-a548-1b802ed462fa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-543520cd-be6b-4949-a548-1b802ed462fa.shg-box.shg-c {
  justify-content: center;
}

#s-9cca28a0-b8f4-46af-b863-3766e3d6f213 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
text-align: center;
}







  #s-9cca28a0-b8f4-46af-b863-3766e3d6f213 img.shogun-image {
    

    
    
    
  }


#s-9cca28a0-b8f4-46af-b863-3766e3d6f213 .shogun-image-content {
  
    align-items: center;
  
}

#s-906f4b70-f9ff-43e2-9a86-a0c863ff7c60 {
  padding-top: 10px;
text-align: center;
}

#s-906f4b70-f9ff-43e2-9a86-a0c863ff7c60 .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}



#s-19ee759a-e980-462f-968d-1c8fe16acbc5 {
  margin-top: 25px;
}

@media (min-width: 0px) {
[id="s-19ee759a-e980-462f-968d-1c8fe16acbc5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-19ee759a-e980-462f-968d-1c8fe16acbc5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-19ee759a-e980-462f-968d-1c8fe16acbc5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-19ee759a-e980-462f-968d-1c8fe16acbc5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-7d712389-42f9-4cfc-953c-3f54d4e29631 {
  min-height: 200px;
}








#s-7d712389-42f9-4cfc-953c-3f54d4e29631 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7d712389-42f9-4cfc-953c-3f54d4e29631.shg-box.shg-c {
  justify-content: center;
}

#s-eeeba067-43b4-4080-8c94-71c94118699f {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
text-align: center;
}







  #s-eeeba067-43b4-4080-8c94-71c94118699f img.shogun-image {
    

    
    
    
  }


#s-eeeba067-43b4-4080-8c94-71c94118699f .shogun-image-content {
  
    align-items: center;
  
}

#s-01d9fc17-e944-4ecd-820c-d8ac88c1125d {
  padding-top: 10px;
text-align: center;
}

#s-01d9fc17-e944-4ecd-820c-d8ac88c1125d .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}



#s-c66192e6-f148-46c9-83b6-ef036b9d3c4e {
  min-height: 200px;
}








#s-c66192e6-f148-46c9-83b6-ef036b9d3c4e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c66192e6-f148-46c9-83b6-ef036b9d3c4e.shg-box.shg-c {
  justify-content: center;
}

#s-551f7f3a-6b9c-4bab-ae17-1072bc877b37 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
text-align: center;
}







  #s-551f7f3a-6b9c-4bab-ae17-1072bc877b37 img.shogun-image {
    

    
    
    
  }


#s-551f7f3a-6b9c-4bab-ae17-1072bc877b37 .shogun-image-content {
  
    align-items: center;
  
}

#s-f019405f-bf6d-41a7-884d-2efbad64f04f {
  padding-top: 10px;
text-align: center;
}

#s-f019405f-bf6d-41a7-884d-2efbad64f04f .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}



#s-86773a51-4430-4d0c-8917-4900bce65661 {
  margin-top: 25px;
}

@media (min-width: 0px) {
[id="s-86773a51-4430-4d0c-8917-4900bce65661"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-86773a51-4430-4d0c-8917-4900bce65661"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-86773a51-4430-4d0c-8917-4900bce65661"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-86773a51-4430-4d0c-8917-4900bce65661"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-ca8f9236-b8c2-462b-86ee-cd952ed76c7e {
  min-height: 200px;
}








#s-ca8f9236-b8c2-462b-86ee-cd952ed76c7e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ca8f9236-b8c2-462b-86ee-cd952ed76c7e.shg-box.shg-c {
  justify-content: center;
}

#s-03e9a6ec-e3d4-4d68-babd-a2c72f3835c4 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
text-align: center;
}







  #s-03e9a6ec-e3d4-4d68-babd-a2c72f3835c4 img.shogun-image {
    

    
    
    
  }


#s-03e9a6ec-e3d4-4d68-babd-a2c72f3835c4 .shogun-image-content {
  
    align-items: center;
  
}

#s-47c99966-5a73-4e54-a707-60378e43e73b {
  padding-top: 10px;
text-align: center;
}

#s-47c99966-5a73-4e54-a707-60378e43e73b .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}



#s-2a192e3f-4ad2-402b-ba9f-dbae83082730 {
  min-height: 200px;
}








#s-2a192e3f-4ad2-402b-ba9f-dbae83082730 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2a192e3f-4ad2-402b-ba9f-dbae83082730.shg-box.shg-c {
  justify-content: center;
}

#s-b5beab97-7ad8-4b9b-907f-6341fc1afac3 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
text-align: center;
}







  #s-b5beab97-7ad8-4b9b-907f-6341fc1afac3 img.shogun-image {
    

    
    
    
  }


#s-b5beab97-7ad8-4b9b-907f-6341fc1afac3 .shogun-image-content {
  
    align-items: center;
  
}

#s-5ada45c8-f62e-45d0-ab26-0c47c314f026 {
  padding-top: 10px;
text-align: center;
}

#s-5ada45c8-f62e-45d0-ab26-0c47c314f026 .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}



#s-0624e99c-0a9e-4347-b867-556e29c4d593 {
  background-repeat: no-repeat;
background-size: cover;
background-position: center top;
}








#s-0624e99c-0a9e-4347-b867-556e29c4d593 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0624e99c-0a9e-4347-b867-556e29c4d593.shg-box.shg-c {
  justify-content: center;
}

#s-6761893d-72bf-44ae-be38-513d9f8c473c {
  margin-left: auto;
margin-right: auto;
min-height: 200px;
max-width: 800px;
}








#s-6761893d-72bf-44ae-be38-513d9f8c473c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6761893d-72bf-44ae-be38-513d9f8c473c.shg-box.shg-c {
  justify-content: center;
}

#s-8c9508b8-8434-4abd-a1b8-68a96812e17d {
  margin-top: 150px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8c9508b8-8434-4abd-a1b8-68a96812e17d .shogun-heading-component h1 {
  color: rgba(255, 182, 0, 1);
  font-weight:  900 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 39px;
  
  
  
}



#s-7da58fcd-8f9d-4cff-9a5c-fabf92200a25 {
  margin-top: -5px;
}

#s-aaf27065-0f42-4818-b440-4298475c3be9 {
  margin-top: -7px;
margin-left: 10px;
margin-right: 10px;
}

#s-61e413cc-3df1-4be3-ab72-cd8e7d9e3738 {
  margin-left: 25px;
margin-right: 25px;
min-height: 200px;
}








#s-61e413cc-3df1-4be3-ab72-cd8e7d9e3738 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-61e413cc-3df1-4be3-ab72-cd8e7d9e3738.shg-box.shg-c {
  justify-content: center;
}

#s-0b50032a-9dfd-4a44-a062-35f68d4c3838 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
max-width: 1100px;
}

@media (min-width: 0px) {
[id="s-0b50032a-9dfd-4a44-a062-35f68d4c3838"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0b50032a-9dfd-4a44-a062-35f68d4c3838"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-0b50032a-9dfd-4a44-a062-35f68d4c3838"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-0b50032a-9dfd-4a44-a062-35f68d4c3838"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 7.5px);
}

}

#s-11e665f5-455b-4124-aab9-72813a647649 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(255, 255, 255, 1);
}








#s-11e665f5-455b-4124-aab9-72813a647649 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-11e665f5-455b-4124-aab9-72813a647649.shg-box.shg-c {
  justify-content: center;
}

#s-186a06de-4710-4a68-91c3-541c54296c44 {
  margin-top: 10px;
margin-left: 15px;
margin-bottom: 10px;
margin-right: 15px;
min-height: 50px;
}








#s-186a06de-4710-4a68-91c3-541c54296c44 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-186a06de-4710-4a68-91c3-541c54296c44.shg-box.shg-c {
  justify-content: center;
}

#s-db8b788c-6276-432f-b746-577d69553643 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 250px;
text-align: center;
}

#s-db8b788c-6276-432f-b746-577d69553643 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-2f0c6f9b-eda4-41cd-a9a4-1ab675ea307f {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(255, 255, 255, 1);
}








#s-2f0c6f9b-eda4-41cd-a9a4-1ab675ea307f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2f0c6f9b-eda4-41cd-a9a4-1ab675ea307f.shg-box.shg-c {
  justify-content: center;
}

#s-5f99ee95-b973-4192-a00b-fcb2840b2a86 {
  margin-top: 10px;
margin-left: 15px;
margin-bottom: 10px;
margin-right: 15px;
min-height: 50px;
}








#s-5f99ee95-b973-4192-a00b-fcb2840b2a86 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5f99ee95-b973-4192-a00b-fcb2840b2a86.shg-box.shg-c {
  justify-content: center;
}

#s-6e8160d2-07ff-4b42-abf8-e1c996fdea57 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 250px;
text-align: center;
}

#s-6e8160d2-07ff-4b42-abf8-e1c996fdea57 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-3fd8c6d6-a5af-43b0-8666-7886bd91c2f0 {
  margin-top: 15px;
margin-left: auto;
margin-right: auto;
max-width: 1100px;
}

@media (min-width: 0px) {
[id="s-3fd8c6d6-a5af-43b0-8666-7886bd91c2f0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3fd8c6d6-a5af-43b0-8666-7886bd91c2f0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-3fd8c6d6-a5af-43b0-8666-7886bd91c2f0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-3fd8c6d6-a5af-43b0-8666-7886bd91c2f0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 7.5px);
}

}

#s-4799b661-9dca-433e-8936-a45863a5740a {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(255, 255, 255, 1);
}








#s-4799b661-9dca-433e-8936-a45863a5740a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4799b661-9dca-433e-8936-a45863a5740a.shg-box.shg-c {
  justify-content: center;
}

#s-0cd9d11c-c211-4a99-8aec-1f78bf75619b {
  margin-top: 10px;
margin-left: 15px;
margin-bottom: 10px;
margin-right: 15px;
min-height: 50px;
}








#s-0cd9d11c-c211-4a99-8aec-1f78bf75619b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0cd9d11c-c211-4a99-8aec-1f78bf75619b.shg-box.shg-c {
  justify-content: center;
}

#s-2cd0ef5e-a72c-420a-89e1-2cf99ecadd4f {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 270px;
text-align: center;
}

#s-2cd0ef5e-a72c-420a-89e1-2cf99ecadd4f .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-44bd029f-e4d2-4a5a-a71a-b5f963fa50e2 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(255, 255, 255, 1);
}








#s-44bd029f-e4d2-4a5a-a71a-b5f963fa50e2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-44bd029f-e4d2-4a5a-a71a-b5f963fa50e2.shg-box.shg-c {
  justify-content: center;
}

#s-641e5f02-6110-46f6-bbf1-17247c0e6fda {
  margin-top: 10px;
margin-left: 15px;
margin-bottom: 10px;
margin-right: 15px;
min-height: 50px;
}








#s-641e5f02-6110-46f6-bbf1-17247c0e6fda > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-641e5f02-6110-46f6-bbf1-17247c0e6fda.shg-box.shg-c {
  justify-content: center;
}

#s-d4f91785-972d-49a9-ae4e-63c8659dbe7a {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 250px;
text-align: center;
}

#s-d4f91785-972d-49a9-ae4e-63c8659dbe7a .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-90cb1095-2a28-47f9-93a5-4626f81c0c52 {
  margin-top: 15px;
margin-left: auto;
margin-right: auto;
max-width: 1100px;
}

@media (min-width: 0px) {
[id="s-90cb1095-2a28-47f9-93a5-4626f81c0c52"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-90cb1095-2a28-47f9-93a5-4626f81c0c52"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-90cb1095-2a28-47f9-93a5-4626f81c0c52"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-90cb1095-2a28-47f9-93a5-4626f81c0c52"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 7.5px);
}

}

#s-add99d3e-869d-4e99-bb06-5217ea7e335b {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(255, 255, 255, 1);
}








#s-add99d3e-869d-4e99-bb06-5217ea7e335b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-add99d3e-869d-4e99-bb06-5217ea7e335b.shg-box.shg-c {
  justify-content: center;
}

#s-c531d99a-a181-4e46-b235-54a7d90b55f3 {
  margin-top: 10px;
margin-left: 15px;
margin-bottom: 10px;
margin-right: 15px;
min-height: 50px;
}








#s-c531d99a-a181-4e46-b235-54a7d90b55f3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c531d99a-a181-4e46-b235-54a7d90b55f3.shg-box.shg-c {
  justify-content: center;
}

#s-13b48475-8d13-4825-8578-2de8332d1ba8 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 250px;
text-align: center;
}

#s-13b48475-8d13-4825-8578-2de8332d1ba8 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-a81d20e8-af78-4bb9-904a-6f3f5438752b {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(255, 255, 255, 1);
}








#s-a81d20e8-af78-4bb9-904a-6f3f5438752b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a81d20e8-af78-4bb9-904a-6f3f5438752b.shg-box.shg-c {
  justify-content: center;
}

#s-a82b1da8-a487-4846-add7-5440b5580bcd {
  margin-top: 10px;
margin-left: 15px;
margin-bottom: 10px;
margin-right: 15px;
min-height: 50px;
}








#s-a82b1da8-a487-4846-add7-5440b5580bcd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a82b1da8-a487-4846-add7-5440b5580bcd.shg-box.shg-c {
  justify-content: center;
}

#s-9c990392-8907-4c9d-9f41-b843dec544a7 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 295px;
text-align: center;
}

#s-9c990392-8907-4c9d-9f41-b843dec544a7 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-0e0d7f5f-96c7-4814-9300-912378fe9088 {
  margin-top: 25px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
max-width: 600px;
}

@media (min-width: 0px) {
[id="s-0e0d7f5f-96c7-4814-9300-912378fe9088"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 25.0px);
}

}

@media (min-width: 768px) {
[id="s-0e0d7f5f-96c7-4814-9300-912378fe9088"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 40.0px);
}

}

@media (min-width: 992px) {
[id="s-0e0d7f5f-96c7-4814-9300-912378fe9088"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 40.0px);
}

}

@media (min-width: 1200px) {
[id="s-0e0d7f5f-96c7-4814-9300-912378fe9088"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 40.0px);
}

}

#s-a2c0b0a6-7025-4ed9-a14f-b8f824620b7f {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 200px;
}








#s-a2c0b0a6-7025-4ed9-a14f-b8f824620b7f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a2c0b0a6-7025-4ed9-a14f-b8f824620b7f.shg-box.shg-c {
  justify-content: center;
}

#s-612169ed-05a9-4b1d-b5b2-8c6058356cfa {
  text-align: center;
}







  #s-612169ed-05a9-4b1d-b5b2-8c6058356cfa img.shogun-image {
    

    
    
    
  }


#s-612169ed-05a9-4b1d-b5b2-8c6058356cfa .shogun-image-content {
  
    align-items: center;
  
}

#s-7c6d9092-e8dc-4510-9a5f-eaa8982b2f4b {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 200px;
}








#s-7c6d9092-e8dc-4510-9a5f-eaa8982b2f4b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7c6d9092-e8dc-4510-9a5f-eaa8982b2f4b.shg-box.shg-c {
  justify-content: center;
}

#s-4587d82f-6337-4d0c-9f00-e98cdd915826 {
  text-align: center;
}







  #s-4587d82f-6337-4d0c-9f00-e98cdd915826 img.shogun-image {
    

    
    
    
  }


#s-4587d82f-6337-4d0c-9f00-e98cdd915826 .shogun-image-content {
  
    align-items: center;
  
}

#s-d4523500-a7ea-4d0c-9cf0-16b8680395ec {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 200px;
}








#s-d4523500-a7ea-4d0c-9cf0-16b8680395ec > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d4523500-a7ea-4d0c-9cf0-16b8680395ec.shg-box.shg-c {
  justify-content: center;
}

#s-0903ea3d-823f-4a23-b760-f86d67a5fa3d {
  text-align: center;
}







  #s-0903ea3d-823f-4a23-b760-f86d67a5fa3d img.shogun-image {
    

    
    
    
  }


#s-0903ea3d-823f-4a23-b760-f86d67a5fa3d .shogun-image-content {
  
    align-items: center;
  
}

#s-baaa36de-fd35-41d1-8318-6b208be9e7ff {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 200px;
}








#s-baaa36de-fd35-41d1-8318-6b208be9e7ff > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-baaa36de-fd35-41d1-8318-6b208be9e7ff.shg-box.shg-c {
  justify-content: center;
}

#s-0c492b18-3b17-4918-a823-46ac0d5d02ad {
  text-align: center;
}







  #s-0c492b18-3b17-4918-a823-46ac0d5d02ad img.shogun-image {
    

    
    
    
  }


#s-0c492b18-3b17-4918-a823-46ac0d5d02ad .shogun-image-content {
  
    align-items: center;
  
}

#s-e9860d58-fd75-4331-bd20-385896bfb469 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 200px;
}








#s-e9860d58-fd75-4331-bd20-385896bfb469 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e9860d58-fd75-4331-bd20-385896bfb469.shg-box.shg-c {
  justify-content: center;
}

#s-327b5afe-4c2e-4194-8803-1aa894419da5 {
  text-align: center;
}







  #s-327b5afe-4c2e-4194-8803-1aa894419da5 img.shogun-image {
    

    
    
    
  }


#s-327b5afe-4c2e-4194-8803-1aa894419da5 .shogun-image-content {
  
    align-items: center;
  
}

#s-37a02b27-ade5-43e4-840e-667937f38b99 {
  margin-top: 25px;
margin-bottom: 25px;
}








#s-37a02b27-ade5-43e4-840e-667937f38b99 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-37a02b27-ade5-43e4-840e-667937f38b99.shg-box.shg-c {
  justify-content: center;
}

#s-8efd090b-3606-4081-8eeb-ff47fd566640 {
  margin-top: 2px;
margin-left: 50px;
margin-bottom: 2px;
margin-right: 50px;
}








#s-8efd090b-3606-4081-8eeb-ff47fd566640 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8efd090b-3606-4081-8eeb-ff47fd566640.shg-box.shg-c {
  justify-content: center;
}

#s-fe97f02c-3aaa-499a-8a2d-2ac617c4973b {
  text-align: center;
}

#s-fe97f02c-3aaa-499a-8a2d-2ac617c4973b .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 39px;
  
  
  text-align: center;
}



#s-91b4f86f-f535-4164-a6f1-d9016645ab91 {
  margin-bottom: -15px;
}

#s-123b3ddc-8bf0-48ca-b708-9a06d89ca75e {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 5px;
margin-right: 10px;
}

#s-7dd3d957-c47c-40e5-a2b3-6fd7ce2aeac2 {
  margin-bottom: -15px;
}

#s-f5f46aac-dee0-48df-88b2-28cb782c61d6 {
  margin-left: 10%;
margin-right: 10%;
padding-left: 30px;
padding-right: 30px;
}

#s-f5f46aac-dee0-48df-88b2-28cb782c61d6 hr {
  border-top: 3px solid rgba(101, 181, 172, 1);
}

#s-2217f100-9626-484c-80cf-26534ee37b2c {
  margin-top: 5px;
margin-bottom: -15px;
}

#s-25c09f48-7510-4a69-bb9c-2c72d50d78d6 {
  margin-left: 10%;
margin-right: 10%;
padding-left: 30px;
padding-right: 30px;
}

#s-25c09f48-7510-4a69-bb9c-2c72d50d78d6 hr {
  border-top: 3px solid rgba(101, 181, 172, 1);
}

#s-98db63a2-cc85-4516-a5a7-4e11cf72651f {
  margin-top: 5px;
margin-bottom: -15px;
}

#s-57521c70-b797-4db2-b3a0-21f0aa165f04 {
  margin-left: 10%;
margin-right: 10%;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}

#s-57521c70-b797-4db2-b3a0-21f0aa165f04 hr {
  border-top: 3px solid rgba(101, 181, 172, 1);
}

#s-7b4a070d-6212-4a9c-83f8-ced3424a4385 {
  margin-left: 30px;
margin-right: 30px;
min-height: 300px;
}








#s-7b4a070d-6212-4a9c-83f8-ced3424a4385 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7b4a070d-6212-4a9c-83f8-ced3424a4385.shg-box.shg-c {
  justify-content: center;
}

#s-6799ed54-1821-4673-a76f-6b63b1bb9450 {
  min-height: 200px;
}

@media (min-width: 0px) {
[id="s-6799ed54-1821-4673-a76f-6b63b1bb9450"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6799ed54-1821-4673-a76f-6b63b1bb9450"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-6799ed54-1821-4673-a76f-6b63b1bb9450"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6799ed54-1821-4673-a76f-6b63b1bb9450"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-6799ed54-1821-4673-a76f-6b63b1bb9450"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6799ed54-1821-4673-a76f-6b63b1bb9450"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-6799ed54-1821-4673-a76f-6b63b1bb9450"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

#s-53603f9d-5267-4f64-9477-affd14a832ac {
  margin-left: auto;
margin-right: auto;
min-height: 250px;
background-color: rgba(255, 255, 255, 1);
}








#s-53603f9d-5267-4f64-9477-affd14a832ac > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-53603f9d-5267-4f64-9477-affd14a832ac.shg-box.shg-c {
  justify-content: center;
}

#s-edfd37ba-76d3-4336-839c-1eed5cddcd71 {
  margin-left: auto;
margin-right: auto;
max-width: 474px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-edfd37ba-76d3-4336-839c-1eed5cddcd71 img.shogun-image,
  #s-edfd37ba-76d3-4336-839c-1eed5cddcd71 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-edfd37ba-76d3-4336-839c-1eed5cddcd71 {
    width: 100%;
    height: auto;
  }



  #s-edfd37ba-76d3-4336-839c-1eed5cddcd71 img.shogun-image {
    

    
    
    
  }


#s-edfd37ba-76d3-4336-839c-1eed5cddcd71 .shogun-image-content {
  
    align-items: center;
  
}

#s-90f0e22d-8cd5-4939-bb58-33c6eabdc0fd {
  margin-left: 0px;
margin-right: 25px;
min-height: 250px;
}








#s-90f0e22d-8cd5-4939-bb58-33c6eabdc0fd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-90f0e22d-8cd5-4939-bb58-33c6eabdc0fd.shg-box.shg-c {
  justify-content: center;
}

#s-c1c6c868-a775-4f8b-be5c-a66d2b58471e {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-c1c6c868-a775-4f8b-be5c-a66d2b58471e .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 23px;
  
  
  text-align: left;
}



#s-6f039a68-55c9-4b6b-8612-57184b8b26c4 {
  background-color: rgba(181, 229, 241, 1);
}








#s-6f039a68-55c9-4b6b-8612-57184b8b26c4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6f039a68-55c9-4b6b-8612-57184b8b26c4.shg-box.shg-c {
  justify-content: center;
}

#s-5f34d6d0-344e-42e7-8906-59b61907935b {
  margin-top: auto;
margin-left: 60px;
margin-bottom: auto;
margin-right: 60px;
max-width: 800px;
}








#s-5f34d6d0-344e-42e7-8906-59b61907935b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5f34d6d0-344e-42e7-8906-59b61907935b.shg-box.shg-c {
  justify-content: center;
}

#s-865428ee-4374-4cce-8a21-af7d9ac063d5 {
  margin-top: 25px;
margin-bottom: 6px;
text-align: center;
}

#s-865428ee-4374-4cce-8a21-af7d9ac063d5 .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  900 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: center;
}



#s-4fde1d25-2ce0-4d67-8f03-2aa41b47b067 {
  margin-top: 5px;
margin-bottom: -15px;
}

#s-01441d6c-65dd-40b7-b711-5f7433ec2ea7 {
  margin-top: 10px;
}








#s-27c57d4d-d20f-437d-b484-6e19e02b6ebc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-27c57d4d-d20f-437d-b484-6e19e02b6ebc.shg-box.shg-c {
  justify-content: flex-end;
}

#s-7d98597e-3889-46a1-9510-12dc4704312a {
  text-align: center;
}







  #s-7d98597e-3889-46a1-9510-12dc4704312a img.shogun-image {
    

    
    
    
  }


#s-7d98597e-3889-46a1-9510-12dc4704312a .shogun-image-content {
  
    align-items: center;
  
}

#s-9c1048a4-271b-4e25-82f7-14d7ce18a980 {
  box-shadow:2px 2px 5px 1px rgba(0, 0, 0, 0.23);
background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYWRkMDEzZjgtZTljZi00YTQ1LTgxOGEtYjBlNmQ5MmY5MDNlIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjZiODI3O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIwLjIiIHN0eWxlPSJzdG9wLWNvbG9yOiNmNmI4Mjc7c3RvcC1vcGFjaXR5OjEiLz48c3RvcCBvZmZzZXQ9IjAuMjc3MjcyNzI3MjcyNzI3MyIgc3R5bGU9InN0b3AtY29sb3I6I2Y2YjgyNztzdG9wLW9wYWNpdHk6MSIvPjxzdG9wIG9mZnNldD0iMC41IiBzdHlsZT0ic3RvcC1jb2xvcjojZjZiODI3O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIwLjkxMzYzNjM2MzYzNjM2MzciIHN0eWxlPSJzdG9wLWNvbG9yOiNlMGEwMTM7c3RvcC1vcGFjaXR5OjEiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2FkZDAxM2Y4LWU5Y2YtNGE0NS04MThhLWIwZTZkOTJmOTAzZSkiLz48L3N2Zz4=);
background-repeat: no-repeat;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 10px;
padding-left: 30px;
padding-bottom: 10px;
padding-right: 30px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(187, 136, 15, 1);
border-style: solid;
border-radius: 3px;
max-width: 225px;
text-align: center;
text-decoration: none;
color: rgba(21, 43, 79, 1);
hover-type: gradient;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f6b827"}, {"id"=>4, "pos"=>0.2, "color"=>"#f6b827"}, {"id"=>3, "pos"=>0.2772727272727273, "color"=>"#f6b827"}, {"id"=>5, "pos"=>0.5, "color"=>"#f6b827"}, {"id"=>2, "pos"=>0.9136363636363637, "color"=>"#e0a013"}];
}
#s-9c1048a4-271b-4e25-82f7-14d7ce18a980:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(21, 43, 79, 1) !important;
border-radius: 3px !important;
background-color: rgba(21, 43, 79, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-9c1048a4-271b-4e25-82f7-14d7ce18a980:active {background-color: rgba(21, 43, 79, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-9c1048a4-271b-4e25-82f7-14d7ce18a980-root {
    text-align: center;
  }


#s-9c1048a4-271b-4e25-82f7-14d7ce18a980.shg-btn {
  color: rgba(21, 43, 79, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Lato;
  display:  block ;
}
@media (min-width: 1200px){
  #s-9c1048a4-271b-4e25-82f7-14d7ce18a980-root {
    text-align: center;
  }


#s-9c1048a4-271b-4e25-82f7-14d7ce18a980.shg-btn {
  color: rgba(21, 43, 79, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Lato;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9c1048a4-271b-4e25-82f7-14d7ce18a980-root {
    text-align: center;
  }


#s-9c1048a4-271b-4e25-82f7-14d7ce18a980.shg-btn {
  color: rgba(21, 43, 79, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Lato;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9c1048a4-271b-4e25-82f7-14d7ce18a980-root {
    text-align: center;
  }


#s-9c1048a4-271b-4e25-82f7-14d7ce18a980.shg-btn {
  color: rgba(21, 43, 79, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Lato;
  display:  block ;
}
}@media (max-width: 767px){
  #s-9c1048a4-271b-4e25-82f7-14d7ce18a980-root {
    text-align: center;
  }


#s-9c1048a4-271b-4e25-82f7-14d7ce18a980.shg-btn {
  color: rgba(21, 43, 79, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Lato;
  display:  block ;
}
}
@media (min-width: 1200px){#s-bf1008e0-2395-40ce-9a95-e7018e0fec72 {
  display: none;
}
#s-bf1008e0-2395-40ce-9a95-e7018e0fec72, #wrap-s-bf1008e0-2395-40ce-9a95-e7018e0fec72 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-bf1008e0-2395-40ce-9a95-e7018e0fec72 {
  display: none;
}
#s-bf1008e0-2395-40ce-9a95-e7018e0fec72, #wrap-s-bf1008e0-2395-40ce-9a95-e7018e0fec72 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-bf1008e0-2395-40ce-9a95-e7018e0fec72 {
  display: none;
}
#s-bf1008e0-2395-40ce-9a95-e7018e0fec72, #wrap-s-bf1008e0-2395-40ce-9a95-e7018e0fec72 { display: none !important; }}







#s-bf1008e0-2395-40ce-9a95-e7018e0fec72 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-bf1008e0-2395-40ce-9a95-e7018e0fec72.shg-box.shg-c {
  justify-content: center;
}

#s-4a22fd8d-00fb-4772-aed3-b12441a8b6f2 {
  
}








#s-4a22fd8d-00fb-4772-aed3-b12441a8b6f2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4a22fd8d-00fb-4772-aed3-b12441a8b6f2.shg-box.shg-c {
  justify-content: center;
}

#s-0fc5a5d3-7cbe-46f5-b484-6c812d0328ac {
  text-align: center;
}







  #s-0fc5a5d3-7cbe-46f5-b484-6c812d0328ac img.shogun-image {
    

    
    
    
  }


#s-0fc5a5d3-7cbe-46f5-b484-6c812d0328ac .shogun-image-content {
  
    align-items: center;
  
}

#s-367180f5-b036-48f7-b59a-5228243e9451 {
  margin-top: 25px;
margin-bottom: 25px;
min-height: 300px;
}








#s-367180f5-b036-48f7-b59a-5228243e9451 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-367180f5-b036-48f7-b59a-5228243e9451.shg-box.shg-c {
  justify-content: center;
}

#s-bf7a1d34-124b-475f-ac50-6936d30050a0 {
  margin-top: auto;
margin-left: 25px;
margin-bottom: auto;
margin-right: 25px;
min-height: 500px;
}








#s-bf7a1d34-124b-475f-ac50-6936d30050a0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-bf7a1d34-124b-475f-ac50-6936d30050a0.shg-box.shg-c {
  justify-content: center;
}

#s-420bec66-1e0c-491e-a5b3-2606cb11b0dd {
  margin-bottom: -15px;
}

#s-101d3862-5958-4dee-b046-92bfc77c0a5d {
  text-align: left;
}

#s-101d3862-5958-4dee-b046-92bfc77c0a5d .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 25px;
  
  
  text-align: left;
}



#s-f3a18aa3-9f18-402f-9997-05ebf14b1256 hr {
  border-top: 2px solid #ddd;
}

#s-827a4329-3033-43fd-9ef2-3056aeca818b {
  margin-top: -20px;
margin-bottom: -20px;
}

#s-827a4329-3033-43fd-9ef2-3056aeca818b hr {
  border-top: 2px solid #ddd;
}

#s-0dc56259-04f6-44cb-8d70-6b5b55381c6f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0dc56259-04f6-44cb-8d70-6b5b55381c6f .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}



#s-6f6c4ee5-85ff-4def-9665-4888da323b1f {
  margin-top: 10px;
margin-left: 10px;
margin-right: 10px;
}

#s-1e249153-fb84-49ce-84a0-fa53b6e0c819 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 300px;
background-position: center center;
}








#s-1e249153-fb84-49ce-84a0-fa53b6e0c819 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1e249153-fb84-49ce-84a0-fa53b6e0c819.shg-box.shg-c {
  justify-content: center;
}

#s-53d53f8d-4ad2-4150-8433-6653dab07776 {
  margin-top: 15px;
margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
min-height: 200px;
max-width: 800px;
}








#s-53d53f8d-4ad2-4150-8433-6653dab07776 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-53d53f8d-4ad2-4150-8433-6653dab07776.shg-box.shg-c {
  justify-content: center;
}

#s-38150130-6168-44a0-860b-4335d4ed8933 {
  margin-left: 25px;
margin-right: 25px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-38150130-6168-44a0-860b-4335d4ed8933 .shogun-heading-component h1 {
  color: rgba(255, 182, 0, 1);
  font-weight:  900 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 33px;
  
  
  
}



#s-4f8fcebb-83a7-4948-be6e-f71a8ca9110f {
  margin-left: 25px;
margin-right: 25px;
}

#s-bce886eb-0d36-488f-910c-ce4a150ddc2e {
  box-shadow:2px 2px 5px 1px rgba(0, 0, 0, 0.23);
background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNTkzZTU2MGYtZTExMS00NGJlLTliZWMtZDFjYzE1ZTQ5YmFkIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjZiODI3O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIwLjIiIHN0eWxlPSJzdG9wLWNvbG9yOiNmNmI4Mjc7c3RvcC1vcGFjaXR5OjEiLz48c3RvcCBvZmZzZXQ9IjAuMjc3MjcyNzI3MjcyNzI3MyIgc3R5bGU9InN0b3AtY29sb3I6I2Y2YjgyNztzdG9wLW9wYWNpdHk6MSIvPjxzdG9wIG9mZnNldD0iMC41IiBzdHlsZT0ic3RvcC1jb2xvcjojZjZiODI3O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIwLjkxMzYzNjM2MzYzNjM2MzciIHN0eWxlPSJzdG9wLWNvbG9yOiNlMGEwMTM7c3RvcC1vcGFjaXR5OjEiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoIzU5M2U1NjBmLWUxMTEtNDRiZS05YmVjLWQxY2MxNWU0OWJhZCkiLz48L3N2Zz4=);
background-repeat: no-repeat;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
padding-top: 10px;
padding-left: 30px;
padding-bottom: 10px;
padding-right: 30px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(187, 136, 15, 1);
border-style: solid;
border-radius: 3px;
max-width: 277px;
text-align: center;
text-decoration: none;
color: rgba(21, 43, 79, 1);
hover-type: gradient;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f6b827"}, {"id"=>4, "pos"=>0.2, "color"=>"#f6b827"}, {"id"=>3, "pos"=>0.2772727272727273, "color"=>"#f6b827"}, {"id"=>5, "pos"=>0.5, "color"=>"#f6b827"}, {"id"=>2, "pos"=>0.9136363636363637, "color"=>"#e0a013"}];
}
#s-bce886eb-0d36-488f-910c-ce4a150ddc2e:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(21, 43, 79, 1) !important;
border-radius: 3px !important;
background-color: rgba(21, 43, 79, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-bce886eb-0d36-488f-910c-ce4a150ddc2e:active {background-color: rgba(21, 43, 79, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-bce886eb-0d36-488f-910c-ce4a150ddc2e-root {
    text-align: center;
  }


#s-bce886eb-0d36-488f-910c-ce4a150ddc2e.shg-btn {
  color: rgba(21, 43, 79, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Lato;
  display:  block ;
}
@media (min-width: 1200px){
  #s-bce886eb-0d36-488f-910c-ce4a150ddc2e-root {
    text-align: center;
  }


#s-bce886eb-0d36-488f-910c-ce4a150ddc2e.shg-btn {
  color: rgba(21, 43, 79, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Lato;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-bce886eb-0d36-488f-910c-ce4a150ddc2e-root {
    text-align: center;
  }


#s-bce886eb-0d36-488f-910c-ce4a150ddc2e.shg-btn {
  color: rgba(21, 43, 79, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Lato;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-bce886eb-0d36-488f-910c-ce4a150ddc2e-root {
    text-align: center;
  }


#s-bce886eb-0d36-488f-910c-ce4a150ddc2e.shg-btn {
  color: rgba(21, 43, 79, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Lato;
  display:  block ;
}
}@media (max-width: 767px){
  #s-bce886eb-0d36-488f-910c-ce4a150ddc2e-root {
    text-align: center;
  }


#s-bce886eb-0d36-488f-910c-ce4a150ddc2e.shg-btn {
  color: rgba(21, 43, 79, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Lato;
  display:  block ;
}
}
#s-8235d0e5-1ed8-4469-b50b-6d8f3b60db32 {
  margin-top: 25px;
margin-left: auto;
margin-right: auto;
min-height: 300px;
max-width: 1250px;
}








#s-8235d0e5-1ed8-4469-b50b-6d8f3b60db32 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8235d0e5-1ed8-4469-b50b-6d8f3b60db32.shg-box.shg-c {
  justify-content: center;
}

#s-057bd352-241f-4c0f-b401-7249c74a2655 {
  margin-left: 25px;
margin-right: 25px;
min-height: 200px;
}








#s-057bd352-241f-4c0f-b401-7249c74a2655 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-057bd352-241f-4c0f-b401-7249c74a2655.shg-box.shg-c {
  justify-content: center;
}

#s-f5f0815a-53a4-4c80-8cf8-d56dab9b1f34 {
  margin-bottom: -15px;
}

#s-058b0f32-cff4-46a3-ad9e-9b42bfa1f42a {
  padding-bottom: 10px;
text-align: center;
}

#s-058b0f32-cff4-46a3-ad9e-9b42bfa1f42a .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 38px;
  
  
  text-align: center;
}



#s-162d1cd8-b2cf-41d2-a326-0e206acf2360 {
  margin-left: auto;
margin-right: auto;
max-width: 800px;
}








#s-2926dad2-b213-46f4-9cb3-a96a38eed23a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2926dad2-b213-46f4-9cb3-a96a38eed23a.shg-box.shg-c {
  justify-content: center;
}

#s-1abf0633-6480-4d3d-96a6-f6d5edf79783 {
  min-height: 50px;
}








#s-1abf0633-6480-4d3d-96a6-f6d5edf79783 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1abf0633-6480-4d3d-96a6-f6d5edf79783.shg-box.shg-c {
  justify-content: center;
}

#s-4b699c56-83d3-42e1-b911-bdbbfd370ea1 {
  text-align: center;
}







  #s-4b699c56-83d3-42e1-b911-bdbbfd370ea1 img.shogun-image {
    

    
    
    
  }


#s-4b699c56-83d3-42e1-b911-bdbbfd370ea1 .shogun-image-content {
  
    align-items: center;
  
}

#s-50fa531b-4ecf-4e28-8551-aa332db2589f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-50fa531b-4ecf-4e28-8551-aa332db2589f .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-0cc9bb38-c8a8-40a3-8d49-7296fbe06fb8 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-0cc9bb38-c8a8-40a3-8d49-7296fbe06fb8 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-0cc9bb38-c8a8-40a3-8d49-7296fbe06fb8 .shg-sld-nav-button.shg-sld-left,
#s-0cc9bb38-c8a8-40a3-8d49-7296fbe06fb8 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-5e4913e1-2b1f-471d-ba96-1dd9cfa6114c {
  min-height: 200px;
}








#s-5e4913e1-2b1f-471d-ba96-1dd9cfa6114c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5e4913e1-2b1f-471d-ba96-1dd9cfa6114c.shg-box.shg-c {
  justify-content: center;
}

#s-29eabce2-edc3-4cfe-a422-2d482b006056 {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
text-align: center;
}







  #s-29eabce2-edc3-4cfe-a422-2d482b006056 img.shogun-image {
    

    
    
    
  }


#s-29eabce2-edc3-4cfe-a422-2d482b006056 .shogun-image-content {
  
    align-items: center;
  
}

#s-28715011-4970-40c7-a11f-d6d8c7b26c2d {
  padding-top: 10px;
text-align: center;
}

#s-28715011-4970-40c7-a11f-d6d8c7b26c2d .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-74d0d80b-96a8-4fb6-b4c5-910a7951ff2f {
  min-height: 50px;
}








#s-74d0d80b-96a8-4fb6-b4c5-910a7951ff2f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-74d0d80b-96a8-4fb6-b4c5-910a7951ff2f.shg-box.shg-c {
  justify-content: center;
}

#s-9dfae951-69ca-4850-9767-94cf8f0a7014 {
  margin-left: auto;
margin-right: auto;
max-width: 973px;
aspect-ratio: 973/503;
text-align: center;
}





  #s-9dfae951-69ca-4850-9767-94cf8f0a7014 img.shogun-image,
  #s-9dfae951-69ca-4850-9767-94cf8f0a7014 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9dfae951-69ca-4850-9767-94cf8f0a7014 {
    width: 100%;
    height: auto;
  }



  #s-9dfae951-69ca-4850-9767-94cf8f0a7014 img.shogun-image {
    

    
    
    
  }


#s-9dfae951-69ca-4850-9767-94cf8f0a7014 .shogun-image-content {
  
    align-items: center;
  
}

#s-0479ec43-1bfa-4c13-80ce-12b7a2c61158 {
  padding-top: 10px;
text-align: center;
}

#s-0479ec43-1bfa-4c13-80ce-12b7a2c61158 .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-c5c7f883-f44e-438e-a1b0-b19eb3b44cc3 {
  min-height: 200px;
}








#s-c5c7f883-f44e-438e-a1b0-b19eb3b44cc3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c5c7f883-f44e-438e-a1b0-b19eb3b44cc3.shg-box.shg-c {
  justify-content: center;
}

#s-9441a2cb-9e25-40ba-8865-b8f1099d6e72 {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
text-align: center;
}







  #s-9441a2cb-9e25-40ba-8865-b8f1099d6e72 img.shogun-image {
    

    
    
    
  }


#s-9441a2cb-9e25-40ba-8865-b8f1099d6e72 .shogun-image-content {
  
    align-items: center;
  
}

#s-8110d22f-3802-417f-bb4d-e056125cae6a {
  padding-top: 10px;
text-align: center;
}

#s-8110d22f-3802-417f-bb4d-e056125cae6a .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-0e686342-7515-4029-bb35-26967079cd7d {
  min-height: 200px;
}








#s-0e686342-7515-4029-bb35-26967079cd7d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0e686342-7515-4029-bb35-26967079cd7d.shg-box.shg-c {
  justify-content: center;
}

#s-075f6069-2c07-4e56-9ceb-94e9d51dd8f3 {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
text-align: center;
}







  #s-075f6069-2c07-4e56-9ceb-94e9d51dd8f3 img.shogun-image {
    

    
    
    
  }


#s-075f6069-2c07-4e56-9ceb-94e9d51dd8f3 .shogun-image-content {
  
    align-items: center;
  
}

#s-f68a007e-5430-4530-bc6a-ad49ff19babb {
  padding-top: 10px;
text-align: center;
}

#s-f68a007e-5430-4530-bc6a-ad49ff19babb .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-cfd9f9c2-5e50-489b-bf83-8a2e80c2fcc2 {
  min-height: 200px;
}








#s-cfd9f9c2-5e50-489b-bf83-8a2e80c2fcc2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-cfd9f9c2-5e50-489b-bf83-8a2e80c2fcc2.shg-box.shg-c {
  justify-content: center;
}

#s-a7dabada-c7ed-405d-aaa8-e8bdea53926b {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
text-align: center;
}







  #s-a7dabada-c7ed-405d-aaa8-e8bdea53926b img.shogun-image {
    

    
    
    
  }


#s-a7dabada-c7ed-405d-aaa8-e8bdea53926b .shogun-image-content {
  
    align-items: center;
  
}

#s-6ea6329f-d968-4432-9665-623ac2091f6d {
  padding-top: 10px;
text-align: center;
}

#s-6ea6329f-d968-4432-9665-623ac2091f6d .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-a2eb05de-5d5d-4ea6-90f6-14b751f96272 {
  min-height: 200px;
}








#s-a2eb05de-5d5d-4ea6-90f6-14b751f96272 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a2eb05de-5d5d-4ea6-90f6-14b751f96272.shg-box.shg-c {
  justify-content: center;
}

#s-25efa93b-279a-40db-ab95-4aa19dbfa4a9 {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
text-align: center;
}







  #s-25efa93b-279a-40db-ab95-4aa19dbfa4a9 img.shogun-image {
    

    
    
    
  }


#s-25efa93b-279a-40db-ab95-4aa19dbfa4a9 .shogun-image-content {
  
    align-items: center;
  
}

#s-fc7274f2-ff26-4f28-b98a-b9d5f4eec676 {
  padding-top: 10px;
text-align: center;
}

#s-fc7274f2-ff26-4f28-b98a-b9d5f4eec676 .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-49655782-33c4-4e18-b051-a7156b1c4e5e {
  margin-top: 25px;
}








#s-49655782-33c4-4e18-b051-a7156b1c4e5e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-49655782-33c4-4e18-b051-a7156b1c4e5e.shg-box.shg-c {
  justify-content: center;
}

#s-3e051bba-cfcf-4587-92de-414d5d6623c4 {
  min-height: 50px;
}








#s-3e051bba-cfcf-4587-92de-414d5d6623c4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3e051bba-cfcf-4587-92de-414d5d6623c4.shg-box.shg-c {
  justify-content: center;
}

#s-722b52d4-fe12-4c99-998c-a23283bc5ab0 {
  text-align: center;
}







  #s-722b52d4-fe12-4c99-998c-a23283bc5ab0 img.shogun-image {
    

    
    
    
  }


#s-722b52d4-fe12-4c99-998c-a23283bc5ab0 .shogun-image-content {
  
    align-items: center;
  
}

#s-61c1703e-20f9-41b1-a298-ecbe61f1013d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-61c1703e-20f9-41b1-a298-ecbe61f1013d .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-516fbcbe-145d-4f2a-a4ae-742e8eea4d32 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-516fbcbe-145d-4f2a-a4ae-742e8eea4d32 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-516fbcbe-145d-4f2a-a4ae-742e8eea4d32 .shg-sld-nav-button.shg-sld-left,
#s-516fbcbe-145d-4f2a-a4ae-742e8eea4d32 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-967f7ec7-5fb6-4b0d-ad7d-2aa133560489 {
  min-height: 50px;
}








#s-967f7ec7-5fb6-4b0d-ad7d-2aa133560489 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-967f7ec7-5fb6-4b0d-ad7d-2aa133560489.shg-box.shg-c {
  justify-content: center;
}

#s-52d270ae-a4a9-46ac-bbe6-44b47300e3bc {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
text-align: center;
}







  #s-52d270ae-a4a9-46ac-bbe6-44b47300e3bc img.shogun-image {
    

    
    
    
  }


#s-52d270ae-a4a9-46ac-bbe6-44b47300e3bc .shogun-image-content {
  
    align-items: center;
  
}

#s-814aa96f-6264-48b0-9086-0fc98c734ee7 {
  padding-top: 10px;
text-align: center;
}

#s-814aa96f-6264-48b0-9086-0fc98c734ee7 .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-7e2c3da4-f3ab-49f2-99d0-ed37d554dc11 {
  min-height: 50px;
}








#s-7e2c3da4-f3ab-49f2-99d0-ed37d554dc11 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7e2c3da4-f3ab-49f2-99d0-ed37d554dc11.shg-box.shg-c {
  justify-content: center;
}

#s-fb30009c-5304-40f3-96ce-543c9e43341c {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
text-align: center;
}







  #s-fb30009c-5304-40f3-96ce-543c9e43341c img.shogun-image {
    

    
    
    
  }


#s-fb30009c-5304-40f3-96ce-543c9e43341c .shogun-image-content {
  
    align-items: center;
  
}

#s-d12312ec-6b55-472f-a876-0bb8abdd7706 {
  padding-top: 10px;
text-align: center;
}

#s-d12312ec-6b55-472f-a876-0bb8abdd7706 .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-5e494314-bb85-424f-b21e-ed702e53f5e5 {
  min-height: 50px;
}








#s-5e494314-bb85-424f-b21e-ed702e53f5e5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5e494314-bb85-424f-b21e-ed702e53f5e5.shg-box.shg-c {
  justify-content: center;
}

#s-425b928e-9991-4fa8-8060-e4f12ca16b97 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
text-align: center;
}







  #s-425b928e-9991-4fa8-8060-e4f12ca16b97 img.shogun-image {
    

    
    
    
  }


#s-425b928e-9991-4fa8-8060-e4f12ca16b97 .shogun-image-content {
  
    align-items: center;
  
}

#s-71c7fd48-592f-4305-b3ae-9d396868277b {
  padding-top: 10px;
text-align: center;
}

#s-71c7fd48-592f-4305-b3ae-9d396868277b .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-1f32cf40-60cd-4f59-bed9-7fd210d0105b {
  min-height: 50px;
}








#s-1f32cf40-60cd-4f59-bed9-7fd210d0105b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1f32cf40-60cd-4f59-bed9-7fd210d0105b.shg-box.shg-c {
  justify-content: center;
}

#s-1449cdcb-a805-4248-89a7-9b5ea4bc8b4f {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
text-align: center;
}







  #s-1449cdcb-a805-4248-89a7-9b5ea4bc8b4f img.shogun-image {
    

    
    
    
  }


#s-1449cdcb-a805-4248-89a7-9b5ea4bc8b4f .shogun-image-content {
  
    align-items: center;
  
}

#s-b6af91bf-7ca7-4394-999e-92669f3c1869 {
  padding-top: 10px;
text-align: center;
}

#s-b6af91bf-7ca7-4394-999e-92669f3c1869 .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-582be929-c15e-427d-b9f7-7812ee143d25 {
  min-height: 50px;
}








#s-582be929-c15e-427d-b9f7-7812ee143d25 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-582be929-c15e-427d-b9f7-7812ee143d25.shg-box.shg-c {
  justify-content: center;
}

#s-6809e4c0-941d-4ba8-a811-7ecc5f5f5329 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
text-align: center;
}







  #s-6809e4c0-941d-4ba8-a811-7ecc5f5f5329 img.shogun-image {
    

    
    
    
  }


#s-6809e4c0-941d-4ba8-a811-7ecc5f5f5329 .shogun-image-content {
  
    align-items: center;
  
}

#s-cab3a247-d328-466c-b34b-a9fe02850cf1 {
  padding-top: 10px;
text-align: center;
}

#s-cab3a247-d328-466c-b34b-a9fe02850cf1 .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-3eef96ed-057e-44c7-a499-c620f1c2c7ab {
  min-height: 50px;
}








#s-3eef96ed-057e-44c7-a499-c620f1c2c7ab > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3eef96ed-057e-44c7-a499-c620f1c2c7ab.shg-box.shg-c {
  justify-content: center;
}

#s-80316a4a-243c-48d9-8f42-c75e3eba8d1b {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
text-align: center;
}







  #s-80316a4a-243c-48d9-8f42-c75e3eba8d1b img.shogun-image {
    

    
    
    
  }


#s-80316a4a-243c-48d9-8f42-c75e3eba8d1b .shogun-image-content {
  
    align-items: center;
  
}

#s-b221cca3-40a1-456d-a5d3-4c31e46bda80 {
  padding-top: 10px;
text-align: center;
}

#s-b221cca3-40a1-456d-a5d3-4c31e46bda80 .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-3bfa26db-0f23-48c6-b319-de61d8428444 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 25px;
min-height: 700px;
background-position: center center;
}








#s-3bfa26db-0f23-48c6-b319-de61d8428444 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3bfa26db-0f23-48c6-b319-de61d8428444.shg-box.shg-c {
  justify-content: center;
}

#s-2306e5f6-ade8-44e3-a0c2-d299f01469da {
  margin-left: auto;
margin-right: auto;
min-height: 200px;
max-width: 800px;
}








#s-2306e5f6-ade8-44e3-a0c2-d299f01469da > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2306e5f6-ade8-44e3-a0c2-d299f01469da.shg-box.shg-c {
  justify-content: center;
}

#s-b4088f3c-bebf-432d-95a8-349d524be021 {
  margin-top: 100px;
margin-left: 25px;
margin-right: 25px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b4088f3c-bebf-432d-95a8-349d524be021 .shogun-heading-component h1 {
  color: rgba(255, 182, 0, 1);
  font-weight:  900 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-8d581acf-525d-448a-bbe6-67c1c23311dd {
  margin-top: -5px;
margin-left: 25px;
margin-right: 25px;
}

#s-3257b9c2-b76a-498e-b3d6-342b9fb27894 {
  margin-top: -7px;
margin-left: 10px;
margin-right: 10px;
}

#s-c72d77c5-244d-4178-b685-ab85dfa888c7 {
  margin-left: 25px;
margin-bottom: 15px;
margin-right: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(255, 255, 255, 1);
}








#s-c72d77c5-244d-4178-b685-ab85dfa888c7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c72d77c5-244d-4178-b685-ab85dfa888c7.shg-box.shg-c {
  justify-content: center;
}

#s-1de4d3f3-811d-48dd-a5e1-9cab92569cf0 {
  margin-top: 10px;
margin-left: 15px;
margin-bottom: 2px;
margin-right: 15px;
min-height: 50px;
}








#s-1de4d3f3-811d-48dd-a5e1-9cab92569cf0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1de4d3f3-811d-48dd-a5e1-9cab92569cf0.shg-box.shg-c {
  justify-content: center;
}

#s-fafdcd57-8d40-41e9-9838-c549af1fb5a4 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 250px;
text-align: center;
}

#s-fafdcd57-8d40-41e9-9838-c549af1fb5a4 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-be0a2a7e-8bc6-408c-8c52-f3380250acfc {
  margin-left: 25px;
margin-bottom: 15px;
margin-right: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(255, 255, 255, 1);
}








#s-be0a2a7e-8bc6-408c-8c52-f3380250acfc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-be0a2a7e-8bc6-408c-8c52-f3380250acfc.shg-box.shg-c {
  justify-content: center;
}

#s-f02faf3d-9170-4438-b513-6f9907758e77 {
  margin-top: 10px;
margin-left: 15px;
margin-bottom: 10px;
margin-right: 15px;
min-height: 50px;
}








#s-f02faf3d-9170-4438-b513-6f9907758e77 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f02faf3d-9170-4438-b513-6f9907758e77.shg-box.shg-c {
  justify-content: center;
}

#s-5ab3c555-7bf8-4fdd-907e-8b06d0c44c8e {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 250px;
text-align: center;
}

#s-5ab3c555-7bf8-4fdd-907e-8b06d0c44c8e .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-5cb08479-8367-4f92-8784-22b10a2761e7 {
  margin-left: 25px;
margin-bottom: 15px;
margin-right: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(255, 255, 255, 1);
}








#s-5cb08479-8367-4f92-8784-22b10a2761e7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5cb08479-8367-4f92-8784-22b10a2761e7.shg-box.shg-c {
  justify-content: center;
}

#s-3257fcb8-734a-4d61-aad9-1284cff2a0e8 {
  margin-top: 10px;
margin-left: 15px;
margin-bottom: 10px;
margin-right: 15px;
min-height: 50px;
}








#s-3257fcb8-734a-4d61-aad9-1284cff2a0e8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3257fcb8-734a-4d61-aad9-1284cff2a0e8.shg-box.shg-c {
  justify-content: center;
}

#s-d8fd262f-c536-40c6-a740-c99a70ebefcc {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 270px;
text-align: center;
}

#s-d8fd262f-c536-40c6-a740-c99a70ebefcc .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-3bf34d6a-bf53-44bd-b852-dd809e7db3be {
  margin-left: 25px;
margin-bottom: 15px;
margin-right: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(255, 255, 255, 1);
}








#s-3bf34d6a-bf53-44bd-b852-dd809e7db3be > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3bf34d6a-bf53-44bd-b852-dd809e7db3be.shg-box.shg-c {
  justify-content: center;
}

#s-b62be790-9ebb-4525-9913-7954266dd65e {
  margin-top: 10px;
margin-left: 15px;
margin-bottom: 10px;
margin-right: 15px;
min-height: 50px;
}








#s-b62be790-9ebb-4525-9913-7954266dd65e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b62be790-9ebb-4525-9913-7954266dd65e.shg-box.shg-c {
  justify-content: center;
}

#s-8234e6fc-da03-4dab-b3af-8973f5ee2c79 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 250px;
text-align: center;
}

#s-8234e6fc-da03-4dab-b3af-8973f5ee2c79 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-b2a90e88-077d-4e9c-94cc-eaa264e4412b {
  margin-top: 0px;
margin-left: 25px;
margin-bottom: 15px;
margin-right: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(255, 255, 255, 1);
}








#s-b2a90e88-077d-4e9c-94cc-eaa264e4412b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b2a90e88-077d-4e9c-94cc-eaa264e4412b.shg-box.shg-c {
  justify-content: center;
}

#s-eec004cd-0949-4426-a0ee-67357b5ba8ae {
  margin-top: 10px;
margin-left: 15px;
margin-bottom: 10px;
margin-right: 15px;
min-height: 50px;
}








#s-eec004cd-0949-4426-a0ee-67357b5ba8ae > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-eec004cd-0949-4426-a0ee-67357b5ba8ae.shg-box.shg-c {
  justify-content: center;
}

#s-d0697657-a40b-4e3e-a1d7-63cb5ac55931 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 250px;
text-align: center;
}

#s-d0697657-a40b-4e3e-a1d7-63cb5ac55931 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-89c0b79c-fef7-44c8-bac3-db7252acf007 {
  margin-left: 25px;
margin-right: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(255, 255, 255, 1);
}








#s-89c0b79c-fef7-44c8-bac3-db7252acf007 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-89c0b79c-fef7-44c8-bac3-db7252acf007.shg-box.shg-c {
  justify-content: center;
}

#s-bbb4a592-0747-44bd-8ebd-d5bb2b422400 {
  margin-top: 10px;
margin-left: 15px;
margin-bottom: 10px;
margin-right: 15px;
min-height: 50px;
}








#s-bbb4a592-0747-44bd-8ebd-d5bb2b422400 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-bbb4a592-0747-44bd-8ebd-d5bb2b422400.shg-box.shg-c {
  justify-content: center;
}

#s-f88666e8-72e3-4c8d-8b69-440029ed6ccf {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 464px;
text-align: center;
}

#s-f88666e8-72e3-4c8d-8b69-440029ed6ccf .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-e5eb604d-8935-4f35-8118-cb90221d2d23 {
  margin-top: 30px;
margin-left: 25px;
margin-bottom: 25px;
margin-right: 25px;
max-width: 600px;
}

@media (min-width: 0px) {
[id="s-e5eb604d-8935-4f35-8118-cb90221d2d23"] > .shg-row > .shg-c-xs-2_4 {
  width: calc(20.0% - 20.8px);
}

}

@media (min-width: 768px) {
[id="s-e5eb604d-8935-4f35-8118-cb90221d2d23"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 20.8px);
}

}

@media (min-width: 992px) {
[id="s-e5eb604d-8935-4f35-8118-cb90221d2d23"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 20.8px);
}

}

@media (min-width: 1200px) {
[id="s-e5eb604d-8935-4f35-8118-cb90221d2d23"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 20.8px);
}

}

#s-ca0213c5-dc09-48ec-8158-0b496ca6a64d {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 200px;
}








#s-ca0213c5-dc09-48ec-8158-0b496ca6a64d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ca0213c5-dc09-48ec-8158-0b496ca6a64d.shg-box.shg-c {
  justify-content: center;
}

#s-2df0acc3-dc37-4636-8f46-1c17a47f0af5 {
  text-align: center;
}







  #s-2df0acc3-dc37-4636-8f46-1c17a47f0af5 img.shogun-image {
    

    
    
    
  }


#s-2df0acc3-dc37-4636-8f46-1c17a47f0af5 .shogun-image-content {
  
    align-items: center;
  
}

#s-9e4ec215-8d78-4bc3-b94c-afd7b52ded55 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 200px;
}








#s-9e4ec215-8d78-4bc3-b94c-afd7b52ded55 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9e4ec215-8d78-4bc3-b94c-afd7b52ded55.shg-box.shg-c {
  justify-content: center;
}

#s-a11a67d5-4147-4c0a-93a9-63a8d4312523 {
  text-align: center;
}







  #s-a11a67d5-4147-4c0a-93a9-63a8d4312523 img.shogun-image {
    

    
    
    
  }


#s-a11a67d5-4147-4c0a-93a9-63a8d4312523 .shogun-image-content {
  
    align-items: center;
  
}

#s-c31d7093-2095-4744-a782-5faf183d16ae {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 200px;
}








#s-c31d7093-2095-4744-a782-5faf183d16ae > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c31d7093-2095-4744-a782-5faf183d16ae.shg-box.shg-c {
  justify-content: center;
}

#s-99392faa-cea8-4447-878b-e600dd8b79c2 {
  text-align: center;
}







  #s-99392faa-cea8-4447-878b-e600dd8b79c2 img.shogun-image {
    

    
    
    
  }


#s-99392faa-cea8-4447-878b-e600dd8b79c2 .shogun-image-content {
  
    align-items: center;
  
}

#s-ded1f4dd-1da0-4c7c-98ea-54167e0f8335 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 200px;
}








#s-ded1f4dd-1da0-4c7c-98ea-54167e0f8335 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ded1f4dd-1da0-4c7c-98ea-54167e0f8335.shg-box.shg-c {
  justify-content: center;
}

#s-8216364b-b25b-4414-9759-5d054f44e08e {
  text-align: center;
}







  #s-8216364b-b25b-4414-9759-5d054f44e08e img.shogun-image {
    

    
    
    
  }


#s-8216364b-b25b-4414-9759-5d054f44e08e .shogun-image-content {
  
    align-items: center;
  
}

#s-c66f3359-e79d-411c-be87-14b026bdf04b {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 200px;
}








#s-c66f3359-e79d-411c-be87-14b026bdf04b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c66f3359-e79d-411c-be87-14b026bdf04b.shg-box.shg-c {
  justify-content: center;
}

#s-059973ee-ce4d-479f-b3cf-2b611284b13b {
  text-align: center;
}







  #s-059973ee-ce4d-479f-b3cf-2b611284b13b img.shogun-image {
    

    
    
    
  }


#s-059973ee-ce4d-479f-b3cf-2b611284b13b .shogun-image-content {
  
    align-items: center;
  
}

#s-92b886cc-f069-469e-bf4a-95409b9658d1 {
  margin-top: 25px;
margin-bottom: 10px;
}








#s-92b886cc-f069-469e-bf4a-95409b9658d1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-92b886cc-f069-469e-bf4a-95409b9658d1.shg-box.shg-c {
  justify-content: center;
}

#s-fd6f8b06-41ac-4e94-b05f-d7833a933684 {
  margin-left: auto;
margin-right: auto;
min-height: 27px;
max-width: 1250px;
}

@media (min-width: 0px) {
[id="s-fd6f8b06-41ac-4e94-b05f-d7833a933684"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fd6f8b06-41ac-4e94-b05f-d7833a933684"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-fd6f8b06-41ac-4e94-b05f-d7833a933684"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-fd6f8b06-41ac-4e94-b05f-d7833a933684"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-e34c318d-318f-4c13-b273-495a28aefe6a {
  margin-top: 2px;
margin-left: 25px;
margin-bottom: 2px;
margin-right: 25px;
min-height: 400px;
}








#s-e34c318d-318f-4c13-b273-495a28aefe6a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e34c318d-318f-4c13-b273-495a28aefe6a.shg-box.shg-c {
  justify-content: center;
}

#s-82fef2e5-03a0-459d-858d-fdd87a55ed47 {
  margin-bottom: 5px;
text-align: center;
}

#s-82fef2e5-03a0-459d-858d-fdd87a55ed47 .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 34px;
  
  
  text-align: center;
}



#s-596a80ff-8d01-4250-8977-b1d44ed7452d {
  margin-bottom: -15px;
}

#s-4207d0cf-f825-4006-86bf-ddba4ae7a467 {
  margin-top: 15px;
margin-left: 10px;
margin-right: 10px;
max-width: 500px;
}

#s-e51cee1f-656f-4800-be8c-5a35052803eb {
  margin-bottom: -20px;
}

#s-ce781826-2f9b-452a-b55d-bffe5b601948 {
  padding-left: 5%;
padding-right: 5%;
}

#s-ce781826-2f9b-452a-b55d-bffe5b601948 hr {
  border-top: 3px solid rgba(101, 181, 172, 1);
}

#s-6bcb6eff-b088-49e5-b487-729e249efd97 {
  margin-top: 5px;
margin-bottom: -20px;
}

#s-78a3187b-2173-4a43-ac80-2212718e15d9 {
  padding-left: 5%;
padding-right: 5%;
}

#s-78a3187b-2173-4a43-ac80-2212718e15d9 hr {
  border-top: 3px solid rgba(101, 181, 172, 1);
}

#s-03a25c67-7b45-4bc6-af10-e6a42368b79d {
  margin-top: 5px;
margin-bottom: -20px;
}

#s-069085d0-9752-4fbd-9be9-5da1bb68cbb3 {
  padding-left: 5%;
padding-bottom: 19px;
padding-right: 5%;
}

#s-069085d0-9752-4fbd-9be9-5da1bb68cbb3 hr {
  border-top: 3px solid rgba(101, 181, 172, 1);
}

#s-5f8f6535-c314-4e67-9437-24607195a2d2 {
  margin-left: 25px;
margin-right: 25px;
min-height: 400px;
}








#s-5f8f6535-c314-4e67-9437-24607195a2d2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5f8f6535-c314-4e67-9437-24607195a2d2.shg-box.shg-c {
  justify-content: center;
}

#s-cf734b10-abe5-4269-831b-5c72447420eb {
  min-height: 200px;
}

@media (min-width: 0px) {
[id="s-cf734b10-abe5-4269-831b-5c72447420eb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cf734b10-abe5-4269-831b-5c72447420eb"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-cf734b10-abe5-4269-831b-5c72447420eb"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-cf734b10-abe5-4269-831b-5c72447420eb"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-655b0c0d-fe08-4025-a6fe-d8b2f84ac53c {
  margin-left: 35px;
margin-right: 35px;
min-height: 250px;
background-color: rgba(255, 255, 255, 1);
}








#s-655b0c0d-fe08-4025-a6fe-d8b2f84ac53c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-655b0c0d-fe08-4025-a6fe-d8b2f84ac53c.shg-box.shg-c {
  justify-content: center;
}

#s-3febe512-d02a-435b-9c98-061a98408d55 {
  margin-left: 2px;
margin-bottom: 10px;
margin-right: 2px;
max-width: 474px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-3febe512-d02a-435b-9c98-061a98408d55 img.shogun-image,
  #s-3febe512-d02a-435b-9c98-061a98408d55 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3febe512-d02a-435b-9c98-061a98408d55 {
    width: 100%;
    height: auto;
  }



  #s-3febe512-d02a-435b-9c98-061a98408d55 img.shogun-image {
    

    
    
    
  }


#s-3febe512-d02a-435b-9c98-061a98408d55 .shogun-image-content {
  
    align-items: center;
  
}

#s-286d463d-69d8-4ad5-86eb-232cf65720c0 {
  min-height: 200px;
}








#s-286d463d-69d8-4ad5-86eb-232cf65720c0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-286d463d-69d8-4ad5-86eb-232cf65720c0.shg-box.shg-c {
  justify-content: center;
}

#s-9cbe3ec2-69f7-45a2-b122-486da607e293 {
  margin-top: 15px;
}

#s-be2ca39c-34c0-444b-8f77-68d2e06a91dd {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-be2ca39c-34c0-444b-8f77-68d2e06a91dd .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 23px;
  
  
  text-align: center;
}



#s-8d386c9c-2026-4eac-a1c9-ef0e23e8957a {
  background-color: rgba(181, 229, 241, 1);
}








#s-8d386c9c-2026-4eac-a1c9-ef0e23e8957a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8d386c9c-2026-4eac-a1c9-ef0e23e8957a.shg-box.shg-c {
  justify-content: center;
}

#s-ec18a3fc-43de-4ac3-9a86-a3d6fbbe2693 {
  min-height: 448px;
}








#s-ec18a3fc-43de-4ac3-9a86-a3d6fbbe2693 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ec18a3fc-43de-4ac3-9a86-a3d6fbbe2693.shg-box.shg-c {
  justify-content: flex-end;
}

#s-966106a4-7082-4853-909b-021bbb42eb8c {
  margin-top: auto;
margin-left: 25px;
margin-bottom: auto;
margin-right: 25px;
min-height: 450px;
max-width: 600px;
}








#s-966106a4-7082-4853-909b-021bbb42eb8c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-966106a4-7082-4853-909b-021bbb42eb8c.shg-box.shg-c {
  justify-content: center;
}

#s-a19c8f74-abea-462e-8437-dedc4f905157 {
  margin-top: 25px;
margin-bottom: 6px;
text-align: center;
}

#s-a19c8f74-abea-462e-8437-dedc4f905157 .shogun-heading-component h1 {
  color: rgba(0, 45, 93, 1);
  font-weight:  900 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: center;
}



#s-d13a11fa-20ca-47dd-8386-582f01b6d251 {
  margin-bottom: -15px;
}

#s-b461a14b-24f4-4274-ac84-780d7dbbf86f {
  text-align: center;
}







  #s-b461a14b-24f4-4274-ac84-780d7dbbf86f img.shogun-image {
    

    
    
    
  }


#s-b461a14b-24f4-4274-ac84-780d7dbbf86f .shogun-image-content {
  
    align-items: center;
  
}

#s-c5837fa4-5ae8-40e1-af82-e92c13aecb2a {
  margin-top: 10px;
}

#s-1668d7da-42b2-4659-82d8-7f00a57c9f1f {
  box-shadow:2px 2px 5px 1px rgba(0, 0, 0, 0.23);
background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iMjY4ODg2ZjAtY2MyMC00ZWNjLWJmZGEtYzAzNjZhNjc3NzU5IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjZiODI3O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIwLjIiIHN0eWxlPSJzdG9wLWNvbG9yOiNmNmI4Mjc7c3RvcC1vcGFjaXR5OjEiLz48c3RvcCBvZmZzZXQ9IjAuMjc3MjcyNzI3MjcyNzI3MyIgc3R5bGU9InN0b3AtY29sb3I6I2Y2YjgyNztzdG9wLW9wYWNpdHk6MSIvPjxzdG9wIG9mZnNldD0iMC41IiBzdHlsZT0ic3RvcC1jb2xvcjojZjZiODI3O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIwLjkxMzYzNjM2MzYzNjM2MzciIHN0eWxlPSJzdG9wLWNvbG9yOiNlMGEwMTM7c3RvcC1vcGFjaXR5OjEiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoIzI2ODg4NmYwLWNjMjAtNGVjYy1iZmRhLWMwMzY2YTY3Nzc1OSkiLz48L3N2Zz4=);
background-repeat: no-repeat;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 10px;
padding-left: 30px;
padding-bottom: 10px;
padding-right: 30px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(187, 136, 15, 1);
border-style: solid;
border-radius: 3px;
max-width: 277px;
text-align: center;
text-decoration: none;
color: rgba(21, 43, 79, 1);
hover-type: gradient;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f6b827"}, {"id"=>4, "pos"=>0.2, "color"=>"#f6b827"}, {"id"=>3, "pos"=>0.2772727272727273, "color"=>"#f6b827"}, {"id"=>5, "pos"=>0.5, "color"=>"#f6b827"}, {"id"=>2, "pos"=>0.9136363636363637, "color"=>"#e0a013"}];
}
#s-1668d7da-42b2-4659-82d8-7f00a57c9f1f:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(21, 43, 79, 1) !important;
border-radius: 3px !important;
background-color: rgba(21, 43, 79, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-1668d7da-42b2-4659-82d8-7f00a57c9f1f:active {background-color: rgba(21, 43, 79, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-1668d7da-42b2-4659-82d8-7f00a57c9f1f-root {
    text-align: center;
  }


#s-1668d7da-42b2-4659-82d8-7f00a57c9f1f.shg-btn {
  color: rgba(21, 43, 79, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Lato;
  display:  block ;
}
@media (min-width: 1200px){
  #s-1668d7da-42b2-4659-82d8-7f00a57c9f1f-root {
    text-align: center;
  }


#s-1668d7da-42b2-4659-82d8-7f00a57c9f1f.shg-btn {
  color: rgba(21, 43, 79, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Lato;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-1668d7da-42b2-4659-82d8-7f00a57c9f1f-root {
    text-align: center;
  }


#s-1668d7da-42b2-4659-82d8-7f00a57c9f1f.shg-btn {
  color: rgba(21, 43, 79, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Lato;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-1668d7da-42b2-4659-82d8-7f00a57c9f1f-root {
    text-align: center;
  }


#s-1668d7da-42b2-4659-82d8-7f00a57c9f1f.shg-btn {
  color: rgba(21, 43, 79, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Lato;
  display:  block ;
}
}@media (max-width: 767px){
  #s-1668d7da-42b2-4659-82d8-7f00a57c9f1f-root {
    text-align: center;
  }


#s-1668d7da-42b2-4659-82d8-7f00a57c9f1f.shg-btn {
  color: rgba(21, 43, 79, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Lato;
  display:  block ;
}
}
#s-fee46511-b34f-483a-9934-21761dc4b60b {
  text-align: left;
}

/*
  $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;
}

#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;
  -webkit-user-select: none;
     -moz-user-select: none;
          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-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:not(.shopify-section *):not([id^="wistia"]) {
  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;
}
