.shg-box {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  flex-direction: column;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  /**
   * While `flex: 1` is enough here, we need to supply the rest
   * of the parameters (`1 auto`) to keep compatibility with IE11.
   * Otherwise, IE11 flex would break.
   */
  flex: 1 1 auto;
}

.shg-box > .shg-box-content {
  z-index: 4;
  position: relative;
  /**
   * This is part of an IE11 fallback to avoid flex introducing
   * huge amount of weird space on the bottom on the section element.
   */
  min-height: 1px;
}

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

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

.shg-box-vertical-align-center, .shg-box-vertical-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-box-vertical-align-bottom {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.shg-box-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  pointer-events: none;
}

.shg-box-video-wrapper {
  /*
    It's very important we don't create a new containing block for shg-box-video-wrapper
    Jarallax uses transforms + position: fixed to achieve it's parallaxing effect

    https://developer.mozilla.org/en-US/docs/Web/CSS/position

    position: fixed
    The element is removed from the normal document flow, and no space is created for the element in the page layout. 
    It is positioned relative to the initial containing block established by the viewport, 

    *
      except when one of its ancestors has a transform, perspective, or filter property set to something other than none 
      (see the CSS Transforms Spec), or the will-change property is set to transform, 
      in which case that ancestor behaves as the containing block. 
    *
  */

  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

#s-cf5445d5-2fd6-481b-a0df-26b17cc6b4b8 {
  min-height: 50px;
background-color: rgba(0, 50, 58, 1);
}








#s-cf5445d5-2fd6-481b-a0df-26b17cc6b4b8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cf5445d5-2fd6-481b-a0df-26b17cc6b4b8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-99a49f16-9a4e-4434-b510-32ebdbaa185f {
  min-height: 50px;
}








#s-99a49f16-9a4e-4434-b510-32ebdbaa185f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-99a49f16-9a4e-4434-b510-32ebdbaa185f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-f2a4e213-0467-4dfc-965e-6839262d23ce {
  text-align: center;
}







  #s-f2a4e213-0467-4dfc-965e-6839262d23ce img.shogun-image {
    

    
    
    
  }


#s-f2a4e213-0467-4dfc-965e-6839262d23ce .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-ee2ca163-053a-44b4-b8c7-c40f6efdc04d {
  margin-top: -3em;
margin-left: auto;
margin-right: auto;
padding-left: 1em;
padding-right: 1em;
min-height: 50px;
max-width: 1300px;
}








#s-ee2ca163-053a-44b4-b8c7-c40f6efdc04d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ee2ca163-053a-44b4-b8c7-c40f6efdc04d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.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-58c84766-da55-4223-beb2-ffab93478f30 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-e5184649-5750-4bd2-a488-3d4d8ef48770 {
  margin-top: 3em;
margin-left: auto;
margin-bottom: 3em;
margin-right: auto;
padding-left: 2em;
padding-right: 2em;
min-height: 50px;
max-width: 1300px;
}








#s-e5184649-5750-4bd2-a488-3d4d8ef48770 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e5184649-5750-4bd2-a488-3d4d8ef48770.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-666cac03-bb0f-4e13-90a0-e89be0b60ace {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-98c65677-3a74-4551-9e61-3408f6a1a3d8 {
  padding-left: 1em;
padding-right: 1em;
min-height: 50px;
}








#s-98c65677-3a74-4551-9e61-3408f6a1a3d8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-98c65677-3a74-4551-9e61-3408f6a1a3d8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

#s-01d89ab6-e362-4941-8d1a-491cb4e70fe8 {
  margin-top: 2em;
margin-left: auto;
margin-bottom: 2em;
margin-right: auto;
max-width: 1300px;
}

@media (min-width: 0px) {
[id="s-01d89ab6-e362-4941-8d1a-491cb4e70fe8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-01d89ab6-e362-4941-8d1a-491cb4e70fe8"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-01d89ab6-e362-4941-8d1a-491cb4e70fe8"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-01d89ab6-e362-4941-8d1a-491cb4e70fe8"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-db9ca090-b2d1-4fec-9876-b41b7e888823 {
  text-align: center;
}







  #s-db9ca090-b2d1-4fec-9876-b41b7e888823 img.shogun-image {
    

    
    
    
  }


#s-db9ca090-b2d1-4fec-9876-b41b7e888823 .shogun-image-content {
  
    align-items: center;
  
}

#s-13914d9c-1369-4132-809c-bd757a6675af {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-cf91b69c-f068-4c03-a990-299b8ce22214 {
  text-align: center;
}







  #s-cf91b69c-f068-4c03-a990-299b8ce22214 img.shogun-image {
    

    
    
    
  }


#s-cf91b69c-f068-4c03-a990-299b8ce22214 .shogun-image-content {
  
    align-items: center;
  
}

#s-59f9963c-f529-48aa-9538-e2cf40579699 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-70842a38-1632-4c63-9c80-d8d44a1ec610 {
  text-align: center;
}







  #s-70842a38-1632-4c63-9c80-d8d44a1ec610 img.shogun-image {
    

    
    
    
  }


#s-70842a38-1632-4c63-9c80-d8d44a1ec610 .shogun-image-content {
  
    align-items: center;
  
}

#s-c9826448-7826-45c9-a887-2a8132143102 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-2f3f511f-d2af-46b1-b3d8-2dd461087d01 {
  margin-top: 2em;
margin-left: auto;
margin-bottom: 2em;
margin-right: auto;
padding-left: 1em;
padding-right: 1em;
min-height: 50px;
max-width: 1400px;
}
@media (min-width: 1200px){#s-2f3f511f-d2af-46b1-b3d8-2dd461087d01 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2f3f511f-d2af-46b1-b3d8-2dd461087d01 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-2f3f511f-d2af-46b1-b3d8-2dd461087d01 {
  
}
}







#s-2f3f511f-d2af-46b1-b3d8-2dd461087d01 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2f3f511f-d2af-46b1-b3d8-2dd461087d01.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0d5ebb30-1c66-4352-ada7-b1bb6dc2c513 {
  min-height: 50px;
}








#s-0d5ebb30-1c66-4352-ada7-b1bb6dc2c513 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0d5ebb30-1c66-4352-ada7-b1bb6dc2c513.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

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

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

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

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

@media (max-width: 767px){#s-5e19862e-2c0a-469e-b2e7-beada42365a3 {
  display: none;
}
#s-5e19862e-2c0a-469e-b2e7-beada42365a3, #wrap-s-5e19862e-2c0a-469e-b2e7-beada42365a3 { display:none !important; }}

  #s-5e19862e-2c0a-469e-b2e7-beada42365a3 .shogun-tabs > li > .shogun-tab-box {
    background: rgba(0, 50, 58, 1);
    border: 1px solid #DDDDDD;
  }
  #s-5e19862e-2c0a-469e-b2e7-beada42365a3 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(0, 50, 58, 1);
    border: 1px solid #ddd;
  }
#s-5e19862e-2c0a-469e-b2e7-beada42365a3 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(255, 255, 255, 1);
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 26px;
}

#s-5e19862e-2c0a-469e-b2e7-beada42365a3 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(255, 255, 255, 1);
}

#s-5e19862e-2c0a-469e-b2e7-beada42365a3 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(0, 50, 58, 1);
}

#s-5e19862e-2c0a-469e-b2e7-beada42365a3 .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid #ddd;
}

#s-693d62d8-134a-4517-a3db-c80112d57e07 {
  margin-top: 0em;
margin-left: auto;
margin-bottom: 0em;
margin-right: auto;
padding-left: 0em;
padding-right: 0em;
min-height: 50px;
max-width: 1300px;
}








#s-693d62d8-134a-4517-a3db-c80112d57e07 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-693d62d8-134a-4517-a3db-c80112d57e07.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-81c82b47-a56f-45ce-91d0-0d167dc0ccc9 {
  margin-top: 2em;
margin-bottom: 2em;
}
@media (min-width: 768px) and (max-width: 991px){#s-81c82b47-a56f-45ce-91d0-0d167dc0ccc9 {
  display: none;
}
#s-81c82b47-a56f-45ce-91d0-0d167dc0ccc9, #wrap-s-81c82b47-a56f-45ce-91d0-0d167dc0ccc9 { display:none !important; }}@media (max-width: 767px){#s-81c82b47-a56f-45ce-91d0-0d167dc0ccc9 {
  display: none;
}
#s-81c82b47-a56f-45ce-91d0-0d167dc0ccc9, #wrap-s-81c82b47-a56f-45ce-91d0-0d167dc0ccc9 { display:none !important; }}
@media (min-width: 0px) {
[id="s-81c82b47-a56f-45ce-91d0-0d167dc0ccc9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-81c82b47-a56f-45ce-91d0-0d167dc0ccc9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.5em);
}

}

@media (min-width: 992px) {
[id="s-81c82b47-a56f-45ce-91d0-0d167dc0ccc9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.5em);
}

}

@media (min-width: 1200px) {
[id="s-81c82b47-a56f-45ce-91d0-0d167dc0ccc9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.5em);
}

}

@media (max-width: 767px) {
  [id="s-81c82b47-a56f-45ce-91d0-0d167dc0ccc9"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-0e78aad1-279e-415f-a2b4-acfb311c12aa {
  min-height: 50px;
}








#s-0e78aad1-279e-415f-a2b4-acfb311c12aa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0e78aad1-279e-415f-a2b4-acfb311c12aa.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-eeb3a315-7b8c-4200-b970-3906645f4971 {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-eeb3a315-7b8c-4200-b970-3906645f4971"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-eeb3a315-7b8c-4200-b970-3906645f4971"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-eeb3a315-7b8c-4200-b970-3906645f4971"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-eeb3a315-7b8c-4200-b970-3906645f4971"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-eeb3a315-7b8c-4200-b970-3906645f4971"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-eeb3a315-7b8c-4200-b970-3906645f4971"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-eeb3a315-7b8c-4200-b970-3906645f4971"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

#s-b94b7b5a-7c83-459b-b46d-44deea37e49b {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-b94b7b5a-7c83-459b-b46d-44deea37e49b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b94b7b5a-7c83-459b-b46d-44deea37e49b.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-cb4314f7-958d-47d4-b3c5-6f1b9cac041b {
  margin-left: auto;
margin-right: auto;
max-width: 75px;
text-align: center;
}







  #s-cb4314f7-958d-47d4-b3c5-6f1b9cac041b img.shogun-image {
    

    
    
    
  }


#s-cb4314f7-958d-47d4-b3c5-6f1b9cac041b .shogun-image-content {
  
    align-items: center;
  
}

#s-5967f742-f023-4e0c-b294-570d0ed460a3 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-41897cda-14f7-4686-b4ef-7942415d75f0 {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-41897cda-14f7-4686-b4ef-7942415d75f0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-41897cda-14f7-4686-b4ef-7942415d75f0"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-41897cda-14f7-4686-b4ef-7942415d75f0"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 992px) {
[id="s-41897cda-14f7-4686-b4ef-7942415d75f0"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-41897cda-14f7-4686-b4ef-7942415d75f0"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 1200px) {
[id="s-41897cda-14f7-4686-b4ef-7942415d75f0"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-41897cda-14f7-4686-b4ef-7942415d75f0"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

#s-564a2959-61a2-4415-95a1-ce195788c7d4 {
  margin-left: auto;
margin-right: auto;
max-width: 75px;
text-align: center;
}







  #s-564a2959-61a2-4415-95a1-ce195788c7d4 img.shogun-image {
    

    
    
    
  }


#s-564a2959-61a2-4415-95a1-ce195788c7d4 .shogun-image-content {
  
    align-items: center;
  
}

#s-26b7db28-2bef-4044-8ae8-18c3d5cb9852 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-0380e781-a9f3-4b71-a57e-f7b337e723bb {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-0380e781-a9f3-4b71-a57e-f7b337e723bb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0380e781-a9f3-4b71-a57e-f7b337e723bb"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-0380e781-a9f3-4b71-a57e-f7b337e723bb"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 992px) {
[id="s-0380e781-a9f3-4b71-a57e-f7b337e723bb"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-0380e781-a9f3-4b71-a57e-f7b337e723bb"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 1200px) {
[id="s-0380e781-a9f3-4b71-a57e-f7b337e723bb"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-0380e781-a9f3-4b71-a57e-f7b337e723bb"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

#s-bd074d42-c92a-4bf0-a387-a1b45fbe7490 {
  margin-left: auto;
margin-right: auto;
max-width: 75px;
text-align: center;
}







  #s-bd074d42-c92a-4bf0-a387-a1b45fbe7490 img.shogun-image {
    

    
    
    
  }


#s-bd074d42-c92a-4bf0-a387-a1b45fbe7490 .shogun-image-content {
  
    align-items: center;
  
}

#s-59b64d05-a170-404f-9318-6b397c8089d6 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-8efc2ae9-6ecb-448e-81fa-4fb826f069a0 {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-8efc2ae9-6ecb-448e-81fa-4fb826f069a0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8efc2ae9-6ecb-448e-81fa-4fb826f069a0"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-8efc2ae9-6ecb-448e-81fa-4fb826f069a0"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 992px) {
[id="s-8efc2ae9-6ecb-448e-81fa-4fb826f069a0"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-8efc2ae9-6ecb-448e-81fa-4fb826f069a0"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 1200px) {
[id="s-8efc2ae9-6ecb-448e-81fa-4fb826f069a0"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-8efc2ae9-6ecb-448e-81fa-4fb826f069a0"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

#s-82b69b3e-3a8a-4165-a4a9-0248c7673fac {
  margin-left: auto;
margin-right: auto;
max-width: 75px;
text-align: center;
}







  #s-82b69b3e-3a8a-4165-a4a9-0248c7673fac img.shogun-image {
    

    
    
    
  }


#s-82b69b3e-3a8a-4165-a4a9-0248c7673fac .shogun-image-content {
  
    align-items: center;
  
}

#s-a2709029-35ea-486f-9424-81cd8c834ed9 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-02f0a91a-0270-45f0-87d8-7ef1d081d1aa {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-02f0a91a-0270-45f0-87d8-7ef1d081d1aa"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-02f0a91a-0270-45f0-87d8-7ef1d081d1aa"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-02f0a91a-0270-45f0-87d8-7ef1d081d1aa"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 992px) {
[id="s-02f0a91a-0270-45f0-87d8-7ef1d081d1aa"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-02f0a91a-0270-45f0-87d8-7ef1d081d1aa"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 1200px) {
[id="s-02f0a91a-0270-45f0-87d8-7ef1d081d1aa"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-02f0a91a-0270-45f0-87d8-7ef1d081d1aa"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

#s-5e6edc63-47eb-43e2-8544-66f84db84ea0 {
  margin-left: auto;
margin-right: auto;
max-width: 75px;
text-align: center;
}








#s-5e6edc63-47eb-43e2-8544-66f84db84ea0 .shogun-image-content {
  
    align-items: center;
  
}

#s-1960b224-e1a1-4a93-b28d-406369aad39c {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-40fc215b-0936-4f8e-9203-4bdfa6d27bc2 {
  min-height: 50px;
}








#s-40fc215b-0936-4f8e-9203-4bdfa6d27bc2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-40fc215b-0936-4f8e-9203-4bdfa6d27bc2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8498fcb3-15bc-4673-9aa4-4aa84ffae8a3 {
  text-align: center;
}








#s-8498fcb3-15bc-4673-9aa4-4aa84ffae8a3 .shogun-image-content {
  
    align-items: center;
  
}

#s-611734c7-02d2-49f8-8779-71ca95179767 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-611734c7-02d2-49f8-8779-71ca95179767 {
  display: none;
}
#s-611734c7-02d2-49f8-8779-71ca95179767, #wrap-s-611734c7-02d2-49f8-8779-71ca95179767 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-611734c7-02d2-49f8-8779-71ca95179767 {
  display: none;
}
#s-611734c7-02d2-49f8-8779-71ca95179767, #wrap-s-611734c7-02d2-49f8-8779-71ca95179767 { display:none !important; }}







#s-611734c7-02d2-49f8-8779-71ca95179767 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-611734c7-02d2-49f8-8779-71ca95179767.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3f559e24-cf1a-4c05-afd7-6da6da299ee0 {
  margin-top: 1em;
text-align: center;
}







  #s-3f559e24-cf1a-4c05-afd7-6da6da299ee0 img.shogun-image {
    

    
    
    
  }


#s-3f559e24-cf1a-4c05-afd7-6da6da299ee0 .shogun-image-content {
  
    align-items: center;
  
}

#s-40a1a5e1-5d6c-4569-b31f-24047de1a653 {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-40a1a5e1-5d6c-4569-b31f-24047de1a653"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-40a1a5e1-5d6c-4569-b31f-24047de1a653"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-40a1a5e1-5d6c-4569-b31f-24047de1a653"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-40a1a5e1-5d6c-4569-b31f-24047de1a653"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-40a1a5e1-5d6c-4569-b31f-24047de1a653"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-40a1a5e1-5d6c-4569-b31f-24047de1a653"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-40a1a5e1-5d6c-4569-b31f-24047de1a653"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

#s-8e518423-e894-4930-ab7e-06f6324c6aa5 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-8e518423-e894-4930-ab7e-06f6324c6aa5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8e518423-e894-4930-ab7e-06f6324c6aa5.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-86a2ade3-348c-40e2-90d0-ec748715d7d0 {
  margin-left: auto;
margin-right: auto;
max-width: 75px;
text-align: center;
}







  #s-86a2ade3-348c-40e2-90d0-ec748715d7d0 img.shogun-image {
    

    
    
    
  }


#s-86a2ade3-348c-40e2-90d0-ec748715d7d0 .shogun-image-content {
  
    align-items: center;
  
}

#s-62a33b17-f299-44bb-9986-d0af9299805b {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-dfb8c0db-e2f8-4b3a-9763-0046efd02cd5 {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-dfb8c0db-e2f8-4b3a-9763-0046efd02cd5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-dfb8c0db-e2f8-4b3a-9763-0046efd02cd5"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-dfb8c0db-e2f8-4b3a-9763-0046efd02cd5"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 992px) {
[id="s-dfb8c0db-e2f8-4b3a-9763-0046efd02cd5"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-dfb8c0db-e2f8-4b3a-9763-0046efd02cd5"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 1200px) {
[id="s-dfb8c0db-e2f8-4b3a-9763-0046efd02cd5"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-dfb8c0db-e2f8-4b3a-9763-0046efd02cd5"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

#s-cde63a1d-4e59-420b-830f-a748f48c2e0c {
  margin-left: auto;
margin-right: auto;
max-width: 75px;
text-align: center;
}







  #s-cde63a1d-4e59-420b-830f-a748f48c2e0c img.shogun-image {
    

    
    
    
  }


#s-cde63a1d-4e59-420b-830f-a748f48c2e0c .shogun-image-content {
  
    align-items: center;
  
}

#s-67395d40-3ea8-42e1-ab64-1e41cfba37c6 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-5580c4e3-5538-49a1-a504-62017fa75f6b {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-5580c4e3-5538-49a1-a504-62017fa75f6b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5580c4e3-5538-49a1-a504-62017fa75f6b"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-5580c4e3-5538-49a1-a504-62017fa75f6b"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 992px) {
[id="s-5580c4e3-5538-49a1-a504-62017fa75f6b"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-5580c4e3-5538-49a1-a504-62017fa75f6b"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 1200px) {
[id="s-5580c4e3-5538-49a1-a504-62017fa75f6b"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-5580c4e3-5538-49a1-a504-62017fa75f6b"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

#s-0456ecc2-e532-4958-923e-7d1c42ac019a {
  margin-left: auto;
margin-right: auto;
max-width: 75px;
text-align: center;
}







  #s-0456ecc2-e532-4958-923e-7d1c42ac019a img.shogun-image {
    

    
    
    
  }


#s-0456ecc2-e532-4958-923e-7d1c42ac019a .shogun-image-content {
  
    align-items: center;
  
}

#s-92efd8f6-16a1-4b5c-9edd-f7cc9e638db7 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-87e34024-a0d1-4bee-b130-9c4e571a363e {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-87e34024-a0d1-4bee-b130-9c4e571a363e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-87e34024-a0d1-4bee-b130-9c4e571a363e"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-87e34024-a0d1-4bee-b130-9c4e571a363e"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 992px) {
[id="s-87e34024-a0d1-4bee-b130-9c4e571a363e"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-87e34024-a0d1-4bee-b130-9c4e571a363e"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 1200px) {
[id="s-87e34024-a0d1-4bee-b130-9c4e571a363e"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-87e34024-a0d1-4bee-b130-9c4e571a363e"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

#s-dd6656ba-218b-4ccc-9519-eeaee81a567c {
  margin-left: auto;
margin-right: auto;
max-width: 75px;
text-align: center;
}







  #s-dd6656ba-218b-4ccc-9519-eeaee81a567c img.shogun-image {
    

    
    
    
  }


#s-dd6656ba-218b-4ccc-9519-eeaee81a567c .shogun-image-content {
  
    align-items: center;
  
}

#s-ce059b51-263a-476e-abeb-62b3934e864c {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-ca8170b2-7483-4edf-ac74-4234e08b369d {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-ca8170b2-7483-4edf-ac74-4234e08b369d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ca8170b2-7483-4edf-ac74-4234e08b369d"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-ca8170b2-7483-4edf-ac74-4234e08b369d"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 992px) {
[id="s-ca8170b2-7483-4edf-ac74-4234e08b369d"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-ca8170b2-7483-4edf-ac74-4234e08b369d"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 1200px) {
[id="s-ca8170b2-7483-4edf-ac74-4234e08b369d"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-ca8170b2-7483-4edf-ac74-4234e08b369d"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

#s-36da1dd7-e4bc-478a-8d03-ad46ea69b616 {
  margin-left: auto;
margin-right: auto;
max-width: 75px;
text-align: center;
}








#s-36da1dd7-e4bc-478a-8d03-ad46ea69b616 .shogun-image-content {
  
    align-items: center;
  
}

#s-dc672308-69c0-494b-a603-71f5bba4563f {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

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

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

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

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

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

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

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

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

#s-7b2e01c3-67c1-412f-b172-daa8d8bf79b3 {
  border-style: solid;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(148, 206, 190, 1);
border-radius: 2px;
max-width: 300px;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 1px;
color: rgba(148, 206, 190, 1);
background-image: none;
hover-type: color;
}
#s-7b2e01c3-67c1-412f-b172-daa8d8bf79b3:hover {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(148, 206, 190, 1) !important;
border-radius: 2px !important;
background-color: rgba(148, 206, 190, 0.2) !important;
text-decoration: none !important;
color: rgba(148, 206, 190, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-7b2e01c3-67c1-412f-b172-daa8d8bf79b3:active {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(113, 179, 160, 1) !important;
border-radius: 2px !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(113, 179, 160, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-7b2e01c3-67c1-412f-b172-daa8d8bf79b3-root {
    text-align: center;
  }


#s-7b2e01c3-67c1-412f-b172-daa8d8bf79b3.shg-btn {
  color: rgba(148, 206, 190, 1);
  font-size: 18px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-7b2e01c3-67c1-412f-b172-daa8d8bf79b3-root {
    text-align: center;
  }


#s-7b2e01c3-67c1-412f-b172-daa8d8bf79b3.shg-btn {
  color: rgba(148, 206, 190, 1);
  font-size: 18px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7b2e01c3-67c1-412f-b172-daa8d8bf79b3-root {
    text-align: center;
  }


#s-7b2e01c3-67c1-412f-b172-daa8d8bf79b3.shg-btn {
  color: rgba(148, 206, 190, 1);
  font-size: 18px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7b2e01c3-67c1-412f-b172-daa8d8bf79b3-root {
    text-align: center;
  }


#s-7b2e01c3-67c1-412f-b172-daa8d8bf79b3.shg-btn {
  color: rgba(148, 206, 190, 1);
  font-size: 18px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-7b2e01c3-67c1-412f-b172-daa8d8bf79b3-root {
    text-align: center;
  }


#s-7b2e01c3-67c1-412f-b172-daa8d8bf79b3.shg-btn {
  color: rgba(148, 206, 190, 1);
  font-size: 18px;
  
  
  
  display:  block ;
}
}
@media (min-width: 0px) {
[id="s-0b5433b3-da10-460a-a715-fb7bf4ee0cee"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0b5433b3-da10-460a-a715-fb7bf4ee0cee"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-0b5433b3-da10-460a-a715-fb7bf4ee0cee"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0b5433b3-da10-460a-a715-fb7bf4ee0cee"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-0b5433b3-da10-460a-a715-fb7bf4ee0cee"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0b5433b3-da10-460a-a715-fb7bf4ee0cee"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-0b5433b3-da10-460a-a715-fb7bf4ee0cee"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

#s-be296491-4360-41be-aa5c-59dd380ae0e6 {
  min-height: 50px;
}








#s-be296491-4360-41be-aa5c-59dd380ae0e6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-be296491-4360-41be-aa5c-59dd380ae0e6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-38b15b2a-44eb-46ca-9954-f7851a818e16 {
  text-align: center;
}







  #s-38b15b2a-44eb-46ca-9954-f7851a818e16 img.shogun-image {
    

    
    
    
  }


#s-38b15b2a-44eb-46ca-9954-f7851a818e16 .shogun-image-content {
  
    align-items: center;
  
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-102fba71-3f28-4665-98d5-a41d3279d861 {
  margin-bottom: 2em;
}
@media (min-width: 1200px){#s-102fba71-3f28-4665-98d5-a41d3279d861 {
  display: none;
}
#s-102fba71-3f28-4665-98d5-a41d3279d861, #wrap-s-102fba71-3f28-4665-98d5-a41d3279d861 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-102fba71-3f28-4665-98d5-a41d3279d861 {
  display: none;
}
#s-102fba71-3f28-4665-98d5-a41d3279d861, #wrap-s-102fba71-3f28-4665-98d5-a41d3279d861 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-102fba71-3f28-4665-98d5-a41d3279d861 {
  display: none;
}
#s-102fba71-3f28-4665-98d5-a41d3279d861, #wrap-s-102fba71-3f28-4665-98d5-a41d3279d861 { display:none !important; }}
#s-102fba71-3f28-4665-98d5-a41d3279d861 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(0, 50, 58, 1);
}

#s-102fba71-3f28-4665-98d5-a41d3279d861 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(0, 50, 58, 1);
  padding: 10px;
}

#s-102fba71-3f28-4665-98d5-a41d3279d861 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(255, 255, 255, 1);
}

#s-102fba71-3f28-4665-98d5-a41d3279d861 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(0, 50, 58, 1);
  border-top: 1px solid rgba(0, 50, 58, 1);
}

#s-102fba71-3f28-4665-98d5-a41d3279d861 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(255, 255, 255, 1);
  text-align: left;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 18px;
}

#s-102fba71-3f28-4665-98d5-a41d3279d861 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 18px;
}
#s-d97e39fa-3ede-47b9-bd1c-1a59076b1f84 {
  margin-left: auto;
margin-right: auto;
max-width: 300px;
text-align: center;
}







  #s-d97e39fa-3ede-47b9-bd1c-1a59076b1f84 img.shogun-image {
    

    
    
    
  }


#s-d97e39fa-3ede-47b9-bd1c-1a59076b1f84 .shogun-image-content {
  
    align-items: center;
  
}

#s-869d7f7e-e334-49c0-8709-f04cc19faa2d {
  margin-top: 1em;
text-align: center;
}







  #s-869d7f7e-e334-49c0-8709-f04cc19faa2d img.shogun-image {
    

    
    
    
  }


#s-869d7f7e-e334-49c0-8709-f04cc19faa2d .shogun-image-content {
  
    align-items: center;
  
}

#s-5c8349f1-05a4-475a-a587-303411e13cf4 {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-5c8349f1-05a4-475a-a587-303411e13cf4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5c8349f1-05a4-475a-a587-303411e13cf4"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-5c8349f1-05a4-475a-a587-303411e13cf4"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-5c8349f1-05a4-475a-a587-303411e13cf4"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-5c8349f1-05a4-475a-a587-303411e13cf4"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-5c8349f1-05a4-475a-a587-303411e13cf4"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-5c8349f1-05a4-475a-a587-303411e13cf4"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

#s-43c2c315-4082-4b9d-bf25-9bc50524554b {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-43c2c315-4082-4b9d-bf25-9bc50524554b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-43c2c315-4082-4b9d-bf25-9bc50524554b.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-315c5531-eee3-410b-a039-10873f35437a {
  margin-left: auto;
margin-right: auto;
max-width: 75px;
text-align: center;
}







  #s-315c5531-eee3-410b-a039-10873f35437a img.shogun-image {
    

    
    
    
  }


#s-315c5531-eee3-410b-a039-10873f35437a .shogun-image-content {
  
    align-items: center;
  
}

#s-146bd65a-8c0f-45e0-8d2b-a530a083dcc8 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-2530bdf5-75d9-4da6-aec6-e9a96b1f57a2 {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-2530bdf5-75d9-4da6-aec6-e9a96b1f57a2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2530bdf5-75d9-4da6-aec6-e9a96b1f57a2"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-2530bdf5-75d9-4da6-aec6-e9a96b1f57a2"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 992px) {
[id="s-2530bdf5-75d9-4da6-aec6-e9a96b1f57a2"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-2530bdf5-75d9-4da6-aec6-e9a96b1f57a2"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 1200px) {
[id="s-2530bdf5-75d9-4da6-aec6-e9a96b1f57a2"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-2530bdf5-75d9-4da6-aec6-e9a96b1f57a2"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

#s-54822192-7aac-46f6-b103-30f7d5376078 {
  margin-left: auto;
margin-right: auto;
max-width: 75px;
text-align: center;
}







  #s-54822192-7aac-46f6-b103-30f7d5376078 img.shogun-image {
    

    
    
    
  }


#s-54822192-7aac-46f6-b103-30f7d5376078 .shogun-image-content {
  
    align-items: center;
  
}

#s-ef1d1a29-9227-4206-8ca2-b4f74741930b {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-68196560-5b0b-4658-81bb-007439f43508 {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-68196560-5b0b-4658-81bb-007439f43508"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-68196560-5b0b-4658-81bb-007439f43508"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-68196560-5b0b-4658-81bb-007439f43508"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 992px) {
[id="s-68196560-5b0b-4658-81bb-007439f43508"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-68196560-5b0b-4658-81bb-007439f43508"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 1200px) {
[id="s-68196560-5b0b-4658-81bb-007439f43508"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-68196560-5b0b-4658-81bb-007439f43508"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

#s-e41facc1-abf2-4963-b554-dc66a84571e9 {
  margin-left: auto;
margin-right: auto;
max-width: 75px;
text-align: center;
}







  #s-e41facc1-abf2-4963-b554-dc66a84571e9 img.shogun-image {
    

    
    
    
  }


#s-e41facc1-abf2-4963-b554-dc66a84571e9 .shogun-image-content {
  
    align-items: center;
  
}

#s-1c7f79af-6f58-4b12-bbf3-b499a35786c8 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-1d6b7a49-8535-42b5-93f1-41992559ceb7 {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-1d6b7a49-8535-42b5-93f1-41992559ceb7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1d6b7a49-8535-42b5-93f1-41992559ceb7"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-1d6b7a49-8535-42b5-93f1-41992559ceb7"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 992px) {
[id="s-1d6b7a49-8535-42b5-93f1-41992559ceb7"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-1d6b7a49-8535-42b5-93f1-41992559ceb7"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 1200px) {
[id="s-1d6b7a49-8535-42b5-93f1-41992559ceb7"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-1d6b7a49-8535-42b5-93f1-41992559ceb7"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

#s-3c6d490d-2755-4e55-8045-2ce4a9a1f881 {
  margin-left: auto;
margin-right: auto;
max-width: 75px;
text-align: center;
}







  #s-3c6d490d-2755-4e55-8045-2ce4a9a1f881 img.shogun-image {
    

    
    
    
  }


#s-3c6d490d-2755-4e55-8045-2ce4a9a1f881 .shogun-image-content {
  
    align-items: center;
  
}

#s-cc5cb950-8a23-45e5-ad3f-9ec264000c58 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-9e371589-e9e8-4080-a4bf-e60a68ac1d27 {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-9e371589-e9e8-4080-a4bf-e60a68ac1d27"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9e371589-e9e8-4080-a4bf-e60a68ac1d27"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-9e371589-e9e8-4080-a4bf-e60a68ac1d27"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 992px) {
[id="s-9e371589-e9e8-4080-a4bf-e60a68ac1d27"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-9e371589-e9e8-4080-a4bf-e60a68ac1d27"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 1200px) {
[id="s-9e371589-e9e8-4080-a4bf-e60a68ac1d27"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-9e371589-e9e8-4080-a4bf-e60a68ac1d27"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

#s-15d35837-6540-4b2c-b9cb-b85a7651d931 {
  margin-left: auto;
margin-right: auto;
max-width: 75px;
text-align: center;
}








#s-15d35837-6540-4b2c-b9cb-b85a7651d931 .shogun-image-content {
  
    align-items: center;
  
}

#s-a5c03ba1-dd0e-4f63-a5f6-3db863fc8d90 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-f6a89f8f-9767-4c36-9cb6-a2ac6b4fa539 {
  background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
min-height: 600px;
background-position: center center;
}








#s-f6a89f8f-9767-4c36-9cb6-a2ac6b4fa539 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f6a89f8f-9767-4c36-9cb6-a2ac6b4fa539.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9800f8a2-1861-4e95-8936-a95c047e9d46 {
  margin-top: 2em;
margin-left: auto;
margin-bottom: 0em;
margin-right: auto;
padding-left: 0em;
padding-right: 0em;
min-height: 50px;
}








#s-9800f8a2-1861-4e95-8936-a95c047e9d46 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9800f8a2-1861-4e95-8936-a95c047e9d46.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3afa563a-5652-4b15-acf6-d607dde0ac72 {
  margin-left: auto;
margin-right: auto;
padding-top: 0em;
padding-left: 1em;
padding-bottom: 0em;
padding-right: 1em;
max-width: 1000px;
}

#s-9a949bfc-d9cf-440e-bf44-e2e06b0a0355 {
  min-height: 50px;
}








#s-9a949bfc-d9cf-440e-bf44-e2e06b0a0355 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9a949bfc-d9cf-440e-bf44-e2e06b0a0355.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-3473eefc-45a8-4a8d-a9ba-23b31ba496af"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3473eefc-45a8-4a8d-a9ba-23b31ba496af"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 1.0em);
}

}

@media (min-width: 992px) {
[id="s-3473eefc-45a8-4a8d-a9ba-23b31ba496af"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 1.0em);
}

}

@media (min-width: 1200px) {
[id="s-3473eefc-45a8-4a8d-a9ba-23b31ba496af"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 1.0em);
}

}

@media (max-width: 767px) {
  [id="s-3473eefc-45a8-4a8d-a9ba-23b31ba496af"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-96dfafbb-f41f-44e7-9d5e-2fa060d49e3c {
  margin-left: 4em;
margin-right: 4em;
min-height: 50px;
}
@media (min-width: 1200px){#s-96dfafbb-f41f-44e7-9d5e-2fa060d49e3c {
  margin-left: 5em;
margin-right: 5em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-96dfafbb-f41f-44e7-9d5e-2fa060d49e3c {
  margin-left: 2em;
margin-right: 2em;
}
}@media (max-width: 767px){#s-96dfafbb-f41f-44e7-9d5e-2fa060d49e3c {
  margin-left: 1em;
margin-right: 1em;
}
}







#s-96dfafbb-f41f-44e7-9d5e-2fa060d49e3c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-96dfafbb-f41f-44e7-9d5e-2fa060d49e3c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-67b11247-82cb-4e04-b5c9-502e21cad26e {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
max-width: 300px;
background-color: rgba(148, 206, 190, 1);
text-align: center;
text-decoration: none;
letter-spacing: 1px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-67b11247-82cb-4e04-b5c9-502e21cad26e:hover {background-color: rgba(166, 222, 206, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-67b11247-82cb-4e04-b5c9-502e21cad26e:active {background-color: rgba(94, 166, 151, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}

  #s-67b11247-82cb-4e04-b5c9-502e21cad26e-root {
    text-align: center;
  }


#s-67b11247-82cb-4e04-b5c9-502e21cad26e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-67b11247-82cb-4e04-b5c9-502e21cad26e-root {
    text-align: center;
  }


#s-67b11247-82cb-4e04-b5c9-502e21cad26e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-67b11247-82cb-4e04-b5c9-502e21cad26e-root {
    text-align: center;
  }


#s-67b11247-82cb-4e04-b5c9-502e21cad26e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-67b11247-82cb-4e04-b5c9-502e21cad26e-root {
    text-align: center;
  }


#s-67b11247-82cb-4e04-b5c9-502e21cad26e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-67b11247-82cb-4e04-b5c9-502e21cad26e-root {
    text-align: center;
  }


#s-67b11247-82cb-4e04-b5c9-502e21cad26e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  block ;
}
}
  #s-67b11247-82cb-4e04-b5c9-502e21cad26e-root {
    text-align: center;
  }


#s-67b11247-82cb-4e04-b5c9-502e21cad26e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  block ;
}

#s-4c01e23e-48ab-43f3-901d-7d041b9d92be {
  min-height: 50px;
}








#s-4c01e23e-48ab-43f3-901d-7d041b9d92be > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4c01e23e-48ab-43f3-901d-7d041b9d92be.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5f697cda-cd68-4ec4-8430-9744378939eb {
  max-width: 700px;
text-align: center;
}







  #s-5f697cda-cd68-4ec4-8430-9744378939eb img.shogun-image {
    

    
    
    
  }


#s-5f697cda-cd68-4ec4-8430-9744378939eb .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-fc5b11a8-54a4-40b6-b44b-b9ae62a47379"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fc5b11a8-54a4-40b6-b44b-b9ae62a47379"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 1.0em);
}

}

@media (min-width: 992px) {
[id="s-fc5b11a8-54a4-40b6-b44b-b9ae62a47379"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 1.0em);
}

}

@media (min-width: 1200px) {
[id="s-fc5b11a8-54a4-40b6-b44b-b9ae62a47379"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 1.0em);
}

}

#s-a6369b6a-1b14-4094-bb6a-1635c0c1dada {
  min-height: 50px;
}








#s-a6369b6a-1b14-4094-bb6a-1635c0c1dada > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a6369b6a-1b14-4094-bb6a-1635c0c1dada.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a298e7a8-73a4-40c0-8ed3-273d30b7d6f0 {
  max-width: 700px;
text-align: center;
}







  #s-a298e7a8-73a4-40c0-8ed3-273d30b7d6f0 img.shogun-image {
    

    
    
    
  }


#s-a298e7a8-73a4-40c0-8ed3-273d30b7d6f0 .shogun-image-content {
  
    align-items: center;
  
}

#s-8c87738c-7ce9-49ce-8a6e-ade5de50af8d {
  margin-left: 4em;
margin-right: 4em;
min-height: 50px;
}
@media (min-width: 1200px){#s-8c87738c-7ce9-49ce-8a6e-ade5de50af8d {
  margin-left: 5em;
margin-right: 5em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-8c87738c-7ce9-49ce-8a6e-ade5de50af8d {
  margin-left: 2em;
margin-right: 2em;
}
}@media (max-width: 767px){#s-8c87738c-7ce9-49ce-8a6e-ade5de50af8d {
  margin-left: 1em;
margin-right: 1em;
}
}







#s-8c87738c-7ce9-49ce-8a6e-ade5de50af8d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8c87738c-7ce9-49ce-8a6e-ade5de50af8d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-00f22d2d-5a2e-4d6e-b629-9c46b4c1c9aa {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
max-width: 300px;
background-color: rgba(148, 206, 190, 1);
text-align: center;
text-decoration: none;
letter-spacing: 1px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-00f22d2d-5a2e-4d6e-b629-9c46b4c1c9aa:hover {background-color: rgba(166, 222, 206, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-00f22d2d-5a2e-4d6e-b629-9c46b4c1c9aa:active {background-color: rgba(94, 166, 151, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}

  #s-00f22d2d-5a2e-4d6e-b629-9c46b4c1c9aa-root {
    text-align: center;
  }


#s-00f22d2d-5a2e-4d6e-b629-9c46b4c1c9aa.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-00f22d2d-5a2e-4d6e-b629-9c46b4c1c9aa-root {
    text-align: center;
  }


#s-00f22d2d-5a2e-4d6e-b629-9c46b4c1c9aa.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-00f22d2d-5a2e-4d6e-b629-9c46b4c1c9aa-root {
    text-align: center;
  }


#s-00f22d2d-5a2e-4d6e-b629-9c46b4c1c9aa.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-00f22d2d-5a2e-4d6e-b629-9c46b4c1c9aa-root {
    text-align: center;
  }


#s-00f22d2d-5a2e-4d6e-b629-9c46b4c1c9aa.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-00f22d2d-5a2e-4d6e-b629-9c46b4c1c9aa-root {
    text-align: center;
  }


#s-00f22d2d-5a2e-4d6e-b629-9c46b4c1c9aa.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  block ;
}
}
  #s-00f22d2d-5a2e-4d6e-b629-9c46b4c1c9aa-root {
    text-align: center;
  }


#s-00f22d2d-5a2e-4d6e-b629-9c46b4c1c9aa.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  block ;
}

#s-638a38b4-1844-4992-b2a8-fc7738f01eff {
  margin-top: 3em;
margin-left: auto;
margin-bottom: 3em;
margin-right: auto;
padding-left: 2em;
padding-right: 2em;
min-height: 50px;
max-width: 1300px;
}








#s-638a38b4-1844-4992-b2a8-fc7738f01eff > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-638a38b4-1844-4992-b2a8-fc7738f01eff.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5103f61b-b7d8-4cdf-a6d4-574ae436d1fe {
  margin-top: 2em;
margin-bottom: 2em;
}

@media (min-width: 0px) {
[id="s-5103f61b-b7d8-4cdf-a6d4-574ae436d1fe"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5103f61b-b7d8-4cdf-a6d4-574ae436d1fe"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.6666666666666666em);
}

}

@media (min-width: 992px) {
[id="s-5103f61b-b7d8-4cdf-a6d4-574ae436d1fe"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.6666666666666666em);
}

}

@media (min-width: 1200px) {
[id="s-5103f61b-b7d8-4cdf-a6d4-574ae436d1fe"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.6666666666666666em);
}

}

#s-026aeca1-34b8-44c2-898c-0166cdc262a4 {
  display: none;
}
.shg-product-image-wrapper img.shogun-image,
.shogun-component img.shogun-image {
  display: inline-block;
  vertical-align: middle;
}

.shg-product-img-placeholder img {
  padding: 3rem;
  background: rgba(0, 0, 0, 0.1);
}

.shg-product-image-wrapper {
  display: none;
  position: relative;
  width: 100%;
}

.shg-product-image-wrapper.visible {
  display: inline-block;
}

.shg-product-image-wrapper .shg-product-image-wrapper a {
  text-decoration: none !important;
  border-bottom: 0 !important;
}

.shg-product-image-wrapper .shg-image-zoom {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  max-width: 100%;
  min-height: 100%;
}

.shg-c.shg-align-center .shg-image-zoom {
  margin: 0 auto;
}

.shg-c.shg-align-right .shg-image-zoom {
  margin-left: auto;
}

.shg-image-zoom .shg-image-zoom-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: transform 0.5s ease-out;
  transform: scale(1);
}

/**
  Fix for IE11, as min-width does not works there.
**/
@media screen\0 {
  .shg-product-image-wrapper > .shogun-image {
    width: 100%;
  }
}

#s-3879f60f-9f59-4f7c-a462-1cd1b1e6d740 {
  text-align: left;
}



.shg-c#s-3879f60f-9f59-4f7c-a462-1cd1b1e6d740 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3879f60f-9f59-4f7c-a462-1cd1b1e6d740 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-3879f60f-9f59-4f7c-a462-1cd1b1e6d740 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3879f60f-9f59-4f7c-a462-1cd1b1e6d740 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-3879f60f-9f59-4f7c-a462-1cd1b1e6d740 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3879f60f-9f59-4f7c-a462-1cd1b1e6d740 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-3879f60f-9f59-4f7c-a462-1cd1b1e6d740 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3879f60f-9f59-4f7c-a462-1cd1b1e6d740 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-3879f60f-9f59-4f7c-a462-1cd1b1e6d740 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3879f60f-9f59-4f7c-a462-1cd1b1e6d740 img.shogun-image {
  width: 100%;
}



}

.shg-c#s-3879f60f-9f59-4f7c-a462-1cd1b1e6d740 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3879f60f-9f59-4f7c-a462-1cd1b1e6d740 img.shogun-image {
  width: 100%;
}




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

.shg-product-title-component a {
  text-decoration: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

#s-33be4018-e9bb-47ee-b092-1d6211e325ec {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-33be4018-e9bb-47ee-b092-1d6211e325ec .shg-product-title-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-4bb85852-d040-4892-af89-c73134ef5e90 {
  display: none;
}
#s-9f8439c3-cfc3-4967-b04c-836fea30f36e {
  text-align: left;
}



.shg-c#s-9f8439c3-cfc3-4967-b04c-836fea30f36e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9f8439c3-cfc3-4967-b04c-836fea30f36e img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-9f8439c3-cfc3-4967-b04c-836fea30f36e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9f8439c3-cfc3-4967-b04c-836fea30f36e img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-9f8439c3-cfc3-4967-b04c-836fea30f36e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9f8439c3-cfc3-4967-b04c-836fea30f36e img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-9f8439c3-cfc3-4967-b04c-836fea30f36e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9f8439c3-cfc3-4967-b04c-836fea30f36e img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-9f8439c3-cfc3-4967-b04c-836fea30f36e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9f8439c3-cfc3-4967-b04c-836fea30f36e img.shogun-image {
  width: 100%;
}



}

.shg-c#s-9f8439c3-cfc3-4967-b04c-836fea30f36e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9f8439c3-cfc3-4967-b04c-836fea30f36e img.shogun-image {
  width: 100%;
}




#s-491f6904-2569-4037-b106-40c3deb8e01a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-491f6904-2569-4037-b106-40c3deb8e01a .shg-product-title-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-cddf1590-d9df-4ff2-a059-0b27ad6f5e7b {
  display: none;
}
#s-2f350be7-f466-47fe-a820-ea15a8588a3d {
  text-align: left;
}



.shg-c#s-2f350be7-f466-47fe-a820-ea15a8588a3d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2f350be7-f466-47fe-a820-ea15a8588a3d img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-2f350be7-f466-47fe-a820-ea15a8588a3d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2f350be7-f466-47fe-a820-ea15a8588a3d img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-2f350be7-f466-47fe-a820-ea15a8588a3d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2f350be7-f466-47fe-a820-ea15a8588a3d img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-2f350be7-f466-47fe-a820-ea15a8588a3d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2f350be7-f466-47fe-a820-ea15a8588a3d img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-2f350be7-f466-47fe-a820-ea15a8588a3d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2f350be7-f466-47fe-a820-ea15a8588a3d img.shogun-image {
  width: 100%;
}



}

.shg-c#s-2f350be7-f466-47fe-a820-ea15a8588a3d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2f350be7-f466-47fe-a820-ea15a8588a3d img.shogun-image {
  width: 100%;
}




#s-a138603a-c497-4c87-b06c-a586af03fd6c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a138603a-c497-4c87-b06c-a586af03fd6c .shg-product-title-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-1e555a79-e296-4426-93b6-dd089012fca1 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
max-width: 320px;
background-color: rgba(146, 206, 190, 1);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-1e555a79-e296-4426-93b6-dd089012fca1:hover {background-color: rgba(171, 233, 216, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-1e555a79-e296-4426-93b6-dd089012fca1:active {background-color: rgba(146, 206, 190, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-1e555a79-e296-4426-93b6-dd089012fca1-root {
    text-align: center;
  }


#s-1e555a79-e296-4426-93b6-dd089012fca1.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-1e555a79-e296-4426-93b6-dd089012fca1-root {
    text-align: center;
  }


#s-1e555a79-e296-4426-93b6-dd089012fca1.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-1e555a79-e296-4426-93b6-dd089012fca1-root {
    text-align: center;
  }


#s-1e555a79-e296-4426-93b6-dd089012fca1.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-1e555a79-e296-4426-93b6-dd089012fca1-root {
    text-align: center;
  }


#s-1e555a79-e296-4426-93b6-dd089012fca1.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-1e555a79-e296-4426-93b6-dd089012fca1-root {
    text-align: center;
  }


#s-1e555a79-e296-4426-93b6-dd089012fca1.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
}
  #s-1e555a79-e296-4426-93b6-dd089012fca1-root {
    text-align: center;
  }


#s-1e555a79-e296-4426-93b6-dd089012fca1.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}

#s-cd6f66f8-05b6-4e93-b05b-1362f062a66c {
  margin-left: auto;
margin-right: auto;
padding-left: 1em;
padding-right: 1em;
max-width: 1300px;
}

@media (min-width: 0px) {
[id="s-cd6f66f8-05b6-4e93-b05b-1362f062a66c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.5em);
}

}

@media (min-width: 768px) {
[id="s-cd6f66f8-05b6-4e93-b05b-1362f062a66c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.75em);
}

}

@media (min-width: 992px) {
[id="s-cd6f66f8-05b6-4e93-b05b-1362f062a66c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.75em);
}

}

@media (min-width: 1200px) {
[id="s-cd6f66f8-05b6-4e93-b05b-1362f062a66c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.75em);
}

}

#s-8080e8e1-bf73-4ae5-a1d1-b79382d50d9c {
  min-height: 50px;
}








#s-8080e8e1-bf73-4ae5-a1d1-b79382d50d9c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8080e8e1-bf73-4ae5-a1d1-b79382d50d9c.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-a212c3b2-9c79-45c9-b3ee-ef0c3c69727d {
  margin-left: auto;
margin-right: auto;
max-width: 175px;
text-align: center;
}








#s-a212c3b2-9c79-45c9-b3ee-ef0c3c69727d .shogun-image-content {
  
    align-items: center;
  
}

#s-345d7339-ab37-4039-9e92-76b39982b668 {
  min-height: 50px;
}








#s-345d7339-ab37-4039-9e92-76b39982b668 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-345d7339-ab37-4039-9e92-76b39982b668.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-3defd8b7-9f5c-494a-8e2c-4f1d7fdb5a16 {
  margin-left: auto;
margin-right: auto;
max-width: 175px;
text-align: center;
}








#s-3defd8b7-9f5c-494a-8e2c-4f1d7fdb5a16 .shogun-image-content {
  
    align-items: center;
  
}

#s-0afe5db2-0a54-44e2-8fa8-a5af76c9a4f5 {
  min-height: 50px;
}








#s-0afe5db2-0a54-44e2-8fa8-a5af76c9a4f5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0afe5db2-0a54-44e2-8fa8-a5af76c9a4f5.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-3636d86c-1bee-4f63-9bed-07d6c556e212 {
  margin-left: auto;
margin-right: auto;
max-width: 175px;
text-align: center;
}








#s-3636d86c-1bee-4f63-9bed-07d6c556e212 .shogun-image-content {
  
    align-items: center;
  
}

#s-7150b949-187c-4f41-90bf-176deb4c18f8 {
  min-height: 50px;
}








#s-7150b949-187c-4f41-90bf-176deb4c18f8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7150b949-187c-4f41-90bf-176deb4c18f8.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-1a0990e3-2b03-4b52-b914-c446c6668e05 {
  margin-left: auto;
margin-right: auto;
max-width: 175px;
text-align: center;
}








#s-1a0990e3-2b03-4b52-b914-c446c6668e05 .shogun-image-content {
  
    align-items: center;
  
}

#s-a6fee75e-1916-47d9-8486-bcf16d7a45f4 {
  min-height: 600px;
}








#s-a6fee75e-1916-47d9-8486-bcf16d7a45f4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a6fee75e-1916-47d9-8486-bcf16d7a45f4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

#s-9bd971b3-1937-4c82-ae4a-6f22c081637a {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 0em;
padding-bottom: 0em;
}

#s-9bd971b3-1937-4c82-ae4a-6f22c081637a .shg-sld-dot {
  background-color: rgba(146, 206, 190, 1);
}

#s-9bd971b3-1937-4c82-ae4a-6f22c081637a .shg-sld-nav-button.shg-sld-left,
#s-9bd971b3-1937-4c82-ae4a-6f22c081637a .shg-sld-nav-button.shg-sld-right {
  fill: rgba(146, 206, 190, 1);
}

#s-5cde6f64-667a-45b4-8d5a-9e06004e4554 {
  background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 2em;
padding-left: 2em;
padding-bottom: 2em;
padding-right: 2em;
min-height: 600px;
background-position: center center;
}








#s-5cde6f64-667a-45b4-8d5a-9e06004e4554 > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0.6;
}#s-5cde6f64-667a-45b4-8d5a-9e06004e4554.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shogun-table-wrapper {
  overflow: auto;
}

table.shogun-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  border-style: hidden;
}

thead.shogun-table-column-container {
  font-weight: bold;
}

td.shogun-table-column {
  padding: 10px;
}

td.shogun-table-row {
  padding: 10px;
  min-height: 45px;
}

td.shogun-table-column:only-child, td.shogun-table-row:only-child {
  width: 100%;
}

#s-09872cc1-6074-434d-a638-e3359a39e30e {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
max-width: 250px;
}

#s-09872cc1-6074-434d-a638-e3359a39e30e .shogun-table-wrapper {
  overflow: auto;
  border: 1px solid rgba(213, 214, 215, 0);
  border-radius: 0px;
}

#s-09872cc1-6074-434d-a638-e3359a39e30e table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-09872cc1-6074-434d-a638-e3359a39e30e td.shogun-table-column {
  background-color: rgba(255, 255, 255, 0);
  padding: 5px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-09872cc1-6074-434d-a638-e3359a39e30e td.shogun-table-row {
  background-color: rgba(255, 255, 255, 0);
  padding: 10px;
}

#s-09872cc1-6074-434d-a638-e3359a39e30e td.shogun-table-column, #s-09872cc1-6074-434d-a638-e3359a39e30e td.shogun-table-row {
  border: 1px solid rgba(213, 214, 215, 0);
}

#s-bfec4dad-c4a5-4b0f-8a2d-b7cbacd2d47c .shogun-icon-wrapper {
  text-align: center;
}


#s-bfec4dad-c4a5-4b0f-8a2d-b7cbacd2d47c .shogun-icon-wrapper > .shogun-icon {

  font-size: 24px !important;
  color: rgba(146, 206, 190, 1);
}

#s-257492cf-c232-4206-aee2-6ca18957f38a .shogun-icon-wrapper {
  text-align: center;
}


#s-257492cf-c232-4206-aee2-6ca18957f38a .shogun-icon-wrapper > .shogun-icon {

  font-size: 24px !important;
  color: rgba(146, 206, 190, 1);
}

#s-f11768bc-1321-45df-b271-ec8d148fbff9 .shogun-icon-wrapper {
  text-align: center;
}


#s-f11768bc-1321-45df-b271-ec8d148fbff9 .shogun-icon-wrapper > .shogun-icon {

  font-size: 24px !important;
  color: rgba(146, 206, 190, 1);
}

#s-e257e458-b81c-4335-807d-aaae09acb7eb .shogun-icon-wrapper {
  text-align: center;
}


#s-e257e458-b81c-4335-807d-aaae09acb7eb .shogun-icon-wrapper > .shogun-icon {

  font-size: 24px !important;
  color: rgba(146, 206, 190, 1);
}

#s-34b23eec-d3f3-43b9-89af-a9557116be51 .shogun-icon-wrapper {
  text-align: center;
}


#s-34b23eec-d3f3-43b9-89af-a9557116be51 .shogun-icon-wrapper > .shogun-icon {

  font-size: 24px !important;
  color: rgba(146, 206, 190, 1);
}

#s-52a7f11d-e5e9-41f4-85e8-d84b43948342 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-98c2c33b-12f6-46da-b4fa-ac94f75048d2 {
  background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 2em;
padding-left: 2em;
padding-bottom: 2em;
padding-right: 2em;
min-height: 600px;
background-position: center center;
}








#s-98c2c33b-12f6-46da-b4fa-ac94f75048d2 > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0.6;
}#s-98c2c33b-12f6-46da-b4fa-ac94f75048d2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-15d0a3d4-686f-430f-bfa7-bbe9b15a9555 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
max-width: 250px;
}

#s-15d0a3d4-686f-430f-bfa7-bbe9b15a9555 .shogun-table-wrapper {
  overflow: auto;
  border: 1px solid rgba(213, 214, 215, 0);
  border-radius: 0px;
}

#s-15d0a3d4-686f-430f-bfa7-bbe9b15a9555 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-15d0a3d4-686f-430f-bfa7-bbe9b15a9555 td.shogun-table-column {
  background-color: rgba(255, 255, 255, 0);
  padding: 5px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-15d0a3d4-686f-430f-bfa7-bbe9b15a9555 td.shogun-table-row {
  background-color: rgba(255, 255, 255, 0);
  padding: 10px;
}

#s-15d0a3d4-686f-430f-bfa7-bbe9b15a9555 td.shogun-table-column, #s-15d0a3d4-686f-430f-bfa7-bbe9b15a9555 td.shogun-table-row {
  border: 1px solid rgba(213, 214, 215, 0);
}

#s-51445537-8e4e-4a96-a8ad-bd52cd39894b .shogun-icon-wrapper {
  text-align: center;
}


#s-51445537-8e4e-4a96-a8ad-bd52cd39894b .shogun-icon-wrapper > .shogun-icon {

  font-size: 24px !important;
  color: rgba(146, 206, 190, 1);
}

#s-724cbdd3-7064-46a1-9c76-2511a893f95d .shogun-icon-wrapper {
  text-align: center;
}


#s-724cbdd3-7064-46a1-9c76-2511a893f95d .shogun-icon-wrapper > .shogun-icon {

  font-size: 24px !important;
  color: rgba(146, 206, 190, 1);
}

#s-de956590-ee5a-4e0c-9b3e-330ded3a68b2 .shogun-icon-wrapper {
  text-align: center;
}


#s-de956590-ee5a-4e0c-9b3e-330ded3a68b2 .shogun-icon-wrapper > .shogun-icon {

  font-size: 24px !important;
  color: rgba(146, 206, 190, 1);
}

#s-2902cc8f-fd1b-4c1a-b683-2cfe140e7295 .shogun-icon-wrapper {
  text-align: center;
}


#s-2902cc8f-fd1b-4c1a-b683-2cfe140e7295 .shogun-icon-wrapper > .shogun-icon {

  font-size: 24px !important;
  color: rgba(146, 206, 190, 1);
}

#s-0e2b4232-1900-4458-b391-6ebb7f0b5264 .shogun-icon-wrapper {
  text-align: center;
}


#s-0e2b4232-1900-4458-b391-6ebb7f0b5264 .shogun-icon-wrapper > .shogun-icon {

  font-size: 24px !important;
  color: rgba(146, 206, 190, 1);
}

#s-9ac98c28-408c-41f4-b3fd-9f2468ea46e9 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-0b7ebdcf-77e8-4fee-8443-0c0849dd030a {
  background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 2em;
padding-left: 2em;
padding-bottom: 2em;
padding-right: 2em;
min-height: 600px;
background-position: center center;
}








#s-0b7ebdcf-77e8-4fee-8443-0c0849dd030a > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0.6;
}#s-0b7ebdcf-77e8-4fee-8443-0c0849dd030a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-04b456f1-dbca-48f3-bbb2-7100a0cb87ba {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
max-width: 250px;
}

#s-04b456f1-dbca-48f3-bbb2-7100a0cb87ba .shogun-table-wrapper {
  overflow: auto;
  border: 1px solid rgba(213, 214, 215, 0);
  border-radius: 0px;
}

#s-04b456f1-dbca-48f3-bbb2-7100a0cb87ba table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-04b456f1-dbca-48f3-bbb2-7100a0cb87ba td.shogun-table-column {
  background-color: rgba(255, 255, 255, 0);
  padding: 5px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-04b456f1-dbca-48f3-bbb2-7100a0cb87ba td.shogun-table-row {
  background-color: rgba(255, 255, 255, 0);
  padding: 10px;
}

#s-04b456f1-dbca-48f3-bbb2-7100a0cb87ba td.shogun-table-column, #s-04b456f1-dbca-48f3-bbb2-7100a0cb87ba td.shogun-table-row {
  border: 1px solid rgba(213, 214, 215, 0);
}

#s-ce64dd04-7f5d-44a4-87bc-90e9116586dc .shogun-icon-wrapper {
  text-align: center;
}


#s-ce64dd04-7f5d-44a4-87bc-90e9116586dc .shogun-icon-wrapper > .shogun-icon {

  font-size: 24px !important;
  color: rgba(146, 206, 190, 1);
}

#s-6cf49699-4e6d-410f-8a29-67dad223fc77 .shogun-icon-wrapper {
  text-align: center;
}


#s-6cf49699-4e6d-410f-8a29-67dad223fc77 .shogun-icon-wrapper > .shogun-icon {

  font-size: 24px !important;
  color: rgba(146, 206, 190, 1);
}

#s-9be49d4d-68a0-4f81-96f4-73a14d2cae08 .shogun-icon-wrapper {
  text-align: center;
}


#s-9be49d4d-68a0-4f81-96f4-73a14d2cae08 .shogun-icon-wrapper > .shogun-icon {

  font-size: 24px !important;
  color: rgba(146, 206, 190, 1);
}

#s-a0d1ee07-fba1-484e-9583-2ca3e264ac55 .shogun-icon-wrapper {
  text-align: center;
}


#s-a0d1ee07-fba1-484e-9583-2ca3e264ac55 .shogun-icon-wrapper > .shogun-icon {

  font-size: 24px !important;
  color: rgba(146, 206, 190, 1);
}

#s-6f972cc1-7e89-49dc-9291-2b472c3288cc .shogun-icon-wrapper {
  text-align: center;
}


#s-6f972cc1-7e89-49dc-9291-2b472c3288cc .shogun-icon-wrapper > .shogun-icon {

  font-size: 24px !important;
  color: rgba(146, 206, 190, 1);
}

#s-8f013816-18f1-433b-a5e4-284604ff6b4f {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-bfac45e2-8896-4e6d-84ca-520fa6a6c5da > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(221, 221, 221, 0);
}

#s-bfac45e2-8896-4e6d-84ca-520fa6a6c5da > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(244, 244, 244, 1);
  padding: 10px;
}

#s-bfac45e2-8896-4e6d-84ca-520fa6a6c5da > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 1);
}

#s-bfac45e2-8896-4e6d-84ca-520fa6a6c5da > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(221, 221, 221, 0);
}

#s-bfac45e2-8896-4e6d-84ca-520fa6a6c5da > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 1);
  text-align: left;
  font-family: PT Sans;
  font-weight: 700;
  font-style: ;
  font-size: 12px;
}

#s-bfac45e2-8896-4e6d-84ca-520fa6a6c5da > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 12px;
}
#s-a0873489-1ab9-4a0b-a5f5-28fd14ee1d9c {
  min-height: 50px;
background-color: rgba(0, 50, 58, 1);
}








#s-a0873489-1ab9-4a0b-a5f5-28fd14ee1d9c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a0873489-1ab9-4a0b-a5f5-28fd14ee1d9c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-03d0aa42-e52c-469c-8561-7da8e0b7a11c {
  min-height: 50px;
}








#s-03d0aa42-e52c-469c-8561-7da8e0b7a11c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-03d0aa42-e52c-469c-8561-7da8e0b7a11c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-79473bf3-335b-4ada-9849-6e4e90e5393b {
  text-align: center;
}








#s-79473bf3-335b-4ada-9849-6e4e90e5393b .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-5b92fba8-080b-4fe9-a22c-168c592e748a {
  margin-top: -3em;
margin-left: auto;
margin-right: auto;
padding-left: 1em;
padding-right: 1em;
min-height: 50px;
max-width: 1300px;
}








#s-5b92fba8-080b-4fe9-a22c-168c592e748a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5b92fba8-080b-4fe9-a22c-168c592e748a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5bab505d-3573-4a12-81c5-d93c1418d28f {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-d09b72dc-b9c7-4814-a096-0942d917a10a {
  margin-top: 3em;
margin-left: auto;
margin-bottom: 3em;
margin-right: auto;
padding-left: 2em;
padding-right: 2em;
min-height: 50px;
max-width: 1300px;
}








#s-d09b72dc-b9c7-4814-a096-0942d917a10a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d09b72dc-b9c7-4814-a096-0942d917a10a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3cd9b3a0-cb1d-46a8-a1ab-ef9feb27bccf {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-a91c86c3-a9df-4488-81f2-8e0fde674117 {
  padding-left: 1em;
padding-right: 1em;
min-height: 50px;
}








#s-a91c86c3-a9df-4488-81f2-8e0fde674117 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a91c86c3-a9df-4488-81f2-8e0fde674117.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f0503a1e-5c59-4cb7-b71e-4fbdaa8442af {
  margin-top: 2em;
margin-left: auto;
margin-bottom: 2em;
margin-right: auto;
max-width: 1300px;
}

@media (min-width: 0px) {
[id="s-f0503a1e-5c59-4cb7-b71e-4fbdaa8442af"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f0503a1e-5c59-4cb7-b71e-4fbdaa8442af"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-f0503a1e-5c59-4cb7-b71e-4fbdaa8442af"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-f0503a1e-5c59-4cb7-b71e-4fbdaa8442af"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-3b2b08f5-2a21-4712-83b5-2f1842bf12e6 {
  text-align: center;
}








#s-3b2b08f5-2a21-4712-83b5-2f1842bf12e6 .shogun-image-content {
  
    align-items: center;
  
}

#s-f9c2f650-fe16-4fed-a0f5-5bb18a0eae28 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-04ab60a2-7eaa-4339-8696-0cb54048bbb7 {
  text-align: center;
}








#s-04ab60a2-7eaa-4339-8696-0cb54048bbb7 .shogun-image-content {
  
    align-items: center;
  
}

#s-fc57211d-a8aa-40aa-b6cb-6b6866f664f5 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-91f45c88-af61-4ee6-b166-c2ad7eb39171 {
  text-align: center;
}








#s-91f45c88-af61-4ee6-b166-c2ad7eb39171 .shogun-image-content {
  
    align-items: center;
  
}

#s-f2fd2722-41c2-4885-92bb-666bdca89ca9 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-fe1bf870-0563-4c94-ad4b-03658d9effda {
  margin-top: 2em;
margin-left: auto;
margin-bottom: 2em;
margin-right: auto;
padding-left: 1em;
padding-right: 1em;
min-height: 50px;
max-width: 1400px;
}
@media (min-width: 1200px){#s-fe1bf870-0563-4c94-ad4b-03658d9effda {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-fe1bf870-0563-4c94-ad4b-03658d9effda {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-fe1bf870-0563-4c94-ad4b-03658d9effda {
  
}
}







#s-fe1bf870-0563-4c94-ad4b-03658d9effda > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fe1bf870-0563-4c94-ad4b-03658d9effda.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3eb76c7a-7a87-4c98-ac4c-f718fc70aff0 {
  min-height: 50px;
}








#s-3eb76c7a-7a87-4c98-ac4c-f718fc70aff0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3eb76c7a-7a87-4c98-ac4c-f718fc70aff0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (max-width: 767px){#s-dea0c973-d9eb-4366-8c4c-4eea1d89fa71 {
  display: none;
}
#s-dea0c973-d9eb-4366-8c4c-4eea1d89fa71, #wrap-s-dea0c973-d9eb-4366-8c4c-4eea1d89fa71 { display:none !important; }}

  #s-dea0c973-d9eb-4366-8c4c-4eea1d89fa71 .shogun-tabs > li > .shogun-tab-box {
    background: rgba(0, 50, 58, 1);
    border: 1px solid #DDDDDD;
  }
  #s-dea0c973-d9eb-4366-8c4c-4eea1d89fa71 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(0, 50, 58, 1);
    border: 1px solid #ddd;
  }
#s-dea0c973-d9eb-4366-8c4c-4eea1d89fa71 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(255, 255, 255, 1);
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 26px;
}

#s-dea0c973-d9eb-4366-8c4c-4eea1d89fa71 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(255, 255, 255, 1);
}

#s-dea0c973-d9eb-4366-8c4c-4eea1d89fa71 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(0, 50, 58, 1);
}

#s-dea0c973-d9eb-4366-8c4c-4eea1d89fa71 .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid #ddd;
}

@media (min-width: 0px) {
[id="s-0092ae88-ed9d-4bb6-9f74-7b3882eb8edc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0092ae88-ed9d-4bb6-9f74-7b3882eb8edc"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-0092ae88-ed9d-4bb6-9f74-7b3882eb8edc"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0092ae88-ed9d-4bb6-9f74-7b3882eb8edc"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-0092ae88-ed9d-4bb6-9f74-7b3882eb8edc"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0092ae88-ed9d-4bb6-9f74-7b3882eb8edc"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-0092ae88-ed9d-4bb6-9f74-7b3882eb8edc"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

#s-f953deb1-91ef-4f7a-bed9-6872f2250028 {
  min-height: 50px;
}








#s-f953deb1-91ef-4f7a-bed9-6872f2250028 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f953deb1-91ef-4f7a-bed9-6872f2250028.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cea38ebc-ed0e-46ea-8915-128c153e41b5 {
  text-align: center;
}







  #s-cea38ebc-ed0e-46ea-8915-128c153e41b5 img.shogun-image {
    

    
    
    
  }


#s-cea38ebc-ed0e-46ea-8915-128c153e41b5 .shogun-image-content {
  
    align-items: center;
  
}

#s-833be37c-2e7f-428d-a321-4124ad0805d2 {
  margin-top: 0em;
margin-left: auto;
margin-bottom: 0em;
margin-right: auto;
padding-left: 0em;
padding-right: 0em;
min-height: 50px;
max-width: 1300px;
}








#s-833be37c-2e7f-428d-a321-4124ad0805d2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-833be37c-2e7f-428d-a321-4124ad0805d2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-75eb1a1b-da6f-42cd-8901-b29fec99fa2a {
  margin-top: 2em;
margin-bottom: 2em;
}
@media (min-width: 768px) and (max-width: 991px){#s-75eb1a1b-da6f-42cd-8901-b29fec99fa2a {
  display: none;
}
#s-75eb1a1b-da6f-42cd-8901-b29fec99fa2a, #wrap-s-75eb1a1b-da6f-42cd-8901-b29fec99fa2a { display:none !important; }}@media (max-width: 767px){#s-75eb1a1b-da6f-42cd-8901-b29fec99fa2a {
  display: none;
}
#s-75eb1a1b-da6f-42cd-8901-b29fec99fa2a, #wrap-s-75eb1a1b-da6f-42cd-8901-b29fec99fa2a { display:none !important; }}
@media (min-width: 0px) {
[id="s-75eb1a1b-da6f-42cd-8901-b29fec99fa2a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-75eb1a1b-da6f-42cd-8901-b29fec99fa2a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.5em);
}

}

@media (min-width: 992px) {
[id="s-75eb1a1b-da6f-42cd-8901-b29fec99fa2a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.5em);
}

}

@media (min-width: 1200px) {
[id="s-75eb1a1b-da6f-42cd-8901-b29fec99fa2a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.5em);
}

}

@media (max-width: 767px) {
  [id="s-75eb1a1b-da6f-42cd-8901-b29fec99fa2a"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-016c421b-cd6e-4edb-a25b-c18dee66fb0b {
  min-height: 50px;
}








#s-016c421b-cd6e-4edb-a25b-c18dee66fb0b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-016c421b-cd6e-4edb-a25b-c18dee66fb0b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2a94d4b4-ba20-4dae-804f-4f7664ec252e {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-2a94d4b4-ba20-4dae-804f-4f7664ec252e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2a94d4b4-ba20-4dae-804f-4f7664ec252e"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-2a94d4b4-ba20-4dae-804f-4f7664ec252e"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-2a94d4b4-ba20-4dae-804f-4f7664ec252e"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-2a94d4b4-ba20-4dae-804f-4f7664ec252e"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-2a94d4b4-ba20-4dae-804f-4f7664ec252e"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-2a94d4b4-ba20-4dae-804f-4f7664ec252e"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

#s-2b8a0c17-81bf-4d49-a898-94e3b43e1134 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-2b8a0c17-81bf-4d49-a898-94e3b43e1134 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2b8a0c17-81bf-4d49-a898-94e3b43e1134.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-1b147cc7-912d-4680-9001-545fe3a0441e {
  margin-left: auto;
margin-right: auto;
max-width: 75px;
text-align: center;
}







  #s-1b147cc7-912d-4680-9001-545fe3a0441e img.shogun-image {
    

    
    
    
  }


#s-1b147cc7-912d-4680-9001-545fe3a0441e .shogun-image-content {
  
    align-items: center;
  
}

#s-1db871ff-0922-4846-9b89-32542ae53b0b {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-9f37a9f9-e39f-46c5-8839-8bf95aa6c482 {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-9f37a9f9-e39f-46c5-8839-8bf95aa6c482"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9f37a9f9-e39f-46c5-8839-8bf95aa6c482"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-9f37a9f9-e39f-46c5-8839-8bf95aa6c482"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 992px) {
[id="s-9f37a9f9-e39f-46c5-8839-8bf95aa6c482"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-9f37a9f9-e39f-46c5-8839-8bf95aa6c482"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 1200px) {
[id="s-9f37a9f9-e39f-46c5-8839-8bf95aa6c482"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-9f37a9f9-e39f-46c5-8839-8bf95aa6c482"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

#s-e90723e9-df4c-4369-9fe3-bb34843282a2 {
  margin-left: auto;
margin-right: auto;
max-width: 75px;
text-align: center;
}







  #s-e90723e9-df4c-4369-9fe3-bb34843282a2 img.shogun-image {
    

    
    
    
  }


#s-e90723e9-df4c-4369-9fe3-bb34843282a2 .shogun-image-content {
  
    align-items: center;
  
}

#s-51cab312-aae0-4806-b4e7-d800c76883d5 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-35fb515e-0397-4443-ba75-78c2353acf4d {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-35fb515e-0397-4443-ba75-78c2353acf4d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-35fb515e-0397-4443-ba75-78c2353acf4d"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-35fb515e-0397-4443-ba75-78c2353acf4d"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 992px) {
[id="s-35fb515e-0397-4443-ba75-78c2353acf4d"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-35fb515e-0397-4443-ba75-78c2353acf4d"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 1200px) {
[id="s-35fb515e-0397-4443-ba75-78c2353acf4d"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-35fb515e-0397-4443-ba75-78c2353acf4d"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

#s-4d292136-1557-4cec-a777-97f2b22ec7d1 {
  margin-left: auto;
margin-right: auto;
max-width: 75px;
text-align: center;
}







  #s-4d292136-1557-4cec-a777-97f2b22ec7d1 img.shogun-image {
    

    
    
    
  }


#s-4d292136-1557-4cec-a777-97f2b22ec7d1 .shogun-image-content {
  
    align-items: center;
  
}

#s-a5a3d1d3-c114-448a-8ce2-8a654784de7a {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-354f7f18-4dd3-46ea-adce-9132cf405eaa {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-354f7f18-4dd3-46ea-adce-9132cf405eaa"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-354f7f18-4dd3-46ea-adce-9132cf405eaa"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-354f7f18-4dd3-46ea-adce-9132cf405eaa"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 992px) {
[id="s-354f7f18-4dd3-46ea-adce-9132cf405eaa"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-354f7f18-4dd3-46ea-adce-9132cf405eaa"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 1200px) {
[id="s-354f7f18-4dd3-46ea-adce-9132cf405eaa"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-354f7f18-4dd3-46ea-adce-9132cf405eaa"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

#s-645417c9-744b-4f0b-8f83-b847df32db75 {
  margin-left: auto;
margin-right: auto;
max-width: 75px;
text-align: center;
}







  #s-645417c9-744b-4f0b-8f83-b847df32db75 img.shogun-image {
    

    
    
    
  }


#s-645417c9-744b-4f0b-8f83-b847df32db75 .shogun-image-content {
  
    align-items: center;
  
}

#s-5ccfe95b-31c8-4386-a42e-042585068073 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-bba67176-71f8-47d6-bebf-66d206778102 {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-bba67176-71f8-47d6-bebf-66d206778102"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bba67176-71f8-47d6-bebf-66d206778102"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-bba67176-71f8-47d6-bebf-66d206778102"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 992px) {
[id="s-bba67176-71f8-47d6-bebf-66d206778102"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-bba67176-71f8-47d6-bebf-66d206778102"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 1200px) {
[id="s-bba67176-71f8-47d6-bebf-66d206778102"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-bba67176-71f8-47d6-bebf-66d206778102"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

#s-0549ef43-d06a-4109-a2fc-2bb89b22bf5a {
  margin-left: auto;
margin-right: auto;
max-width: 75px;
text-align: center;
}








#s-0549ef43-d06a-4109-a2fc-2bb89b22bf5a .shogun-image-content {
  
    align-items: center;
  
}

#s-5e1d618c-3770-4602-b35f-78d0c61fe73d {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-32e4d560-ef29-4fd2-947f-e1f0ed17933c {
  min-height: 50px;
}








#s-32e4d560-ef29-4fd2-947f-e1f0ed17933c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-32e4d560-ef29-4fd2-947f-e1f0ed17933c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cb35bbb1-815a-47e7-afa4-52f6cb52d8e4 {
  text-align: center;
}








#s-cb35bbb1-815a-47e7-afa4-52f6cb52d8e4 .shogun-image-content {
  
    align-items: center;
  
}

#s-4d849610-facd-4d33-931c-766b99a69970 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-4d849610-facd-4d33-931c-766b99a69970 {
  display: none;
}
#s-4d849610-facd-4d33-931c-766b99a69970, #wrap-s-4d849610-facd-4d33-931c-766b99a69970 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4d849610-facd-4d33-931c-766b99a69970 {
  display: none;
}
#s-4d849610-facd-4d33-931c-766b99a69970, #wrap-s-4d849610-facd-4d33-931c-766b99a69970 { display:none !important; }}







#s-4d849610-facd-4d33-931c-766b99a69970 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4d849610-facd-4d33-931c-766b99a69970.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7c1f928f-a1c0-4fcb-a5c3-9f19ebb45379 {
  margin-top: 1em;
text-align: center;
}








#s-7c1f928f-a1c0-4fcb-a5c3-9f19ebb45379 .shogun-image-content {
  
    align-items: center;
  
}

#s-99b6afa4-adb9-4e2b-b29d-8d0f32373959 {
  margin-top: 2em;
margin-bottom: 2em;
}
@media (min-width: 1200px){#s-99b6afa4-adb9-4e2b-b29d-8d0f32373959 {
  display: none;
}
#s-99b6afa4-adb9-4e2b-b29d-8d0f32373959, #wrap-s-99b6afa4-adb9-4e2b-b29d-8d0f32373959 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-99b6afa4-adb9-4e2b-b29d-8d0f32373959 {
  display: none;
}
#s-99b6afa4-adb9-4e2b-b29d-8d0f32373959, #wrap-s-99b6afa4-adb9-4e2b-b29d-8d0f32373959 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-99b6afa4-adb9-4e2b-b29d-8d0f32373959 {
  
}
}@media (max-width: 767px){#s-99b6afa4-adb9-4e2b-b29d-8d0f32373959 {
  
}
}
@media (min-width: 0px) {
[id="s-99b6afa4-adb9-4e2b-b29d-8d0f32373959"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-99b6afa4-adb9-4e2b-b29d-8d0f32373959"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.5em);
}

}

@media (min-width: 992px) {
[id="s-99b6afa4-adb9-4e2b-b29d-8d0f32373959"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.5em);
}

}

@media (min-width: 1200px) {
[id="s-99b6afa4-adb9-4e2b-b29d-8d0f32373959"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.5em);
}

}

@media (max-width: 767px) {
  [id="s-99b6afa4-adb9-4e2b-b29d-8d0f32373959"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-aa8fddad-0cb5-4802-8349-d8925b96e6f1 {
  min-height: 50px;
}








#s-aa8fddad-0cb5-4802-8349-d8925b96e6f1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-aa8fddad-0cb5-4802-8349-d8925b96e6f1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-197090dc-ad68-43b9-aa07-23274eb8df08 {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-197090dc-ad68-43b9-aa07-23274eb8df08"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-197090dc-ad68-43b9-aa07-23274eb8df08"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-197090dc-ad68-43b9-aa07-23274eb8df08"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-197090dc-ad68-43b9-aa07-23274eb8df08"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-197090dc-ad68-43b9-aa07-23274eb8df08"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-197090dc-ad68-43b9-aa07-23274eb8df08"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-197090dc-ad68-43b9-aa07-23274eb8df08"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

#s-b4d296ba-dad6-427b-96f5-7f16e022c5be {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-b4d296ba-dad6-427b-96f5-7f16e022c5be > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b4d296ba-dad6-427b-96f5-7f16e022c5be.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-62911d06-5e51-4389-8142-ce29136b6b0c {
  margin-left: auto;
margin-right: auto;
max-width: 75px;
text-align: center;
}







  #s-62911d06-5e51-4389-8142-ce29136b6b0c img.shogun-image {
    

    
    
    
  }


#s-62911d06-5e51-4389-8142-ce29136b6b0c .shogun-image-content {
  
    align-items: center;
  
}

#s-d5686a13-4dd2-45d9-826a-fa1ebe0803ce {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-21ecac21-f762-41a5-83ad-b549920f5d46 {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-21ecac21-f762-41a5-83ad-b549920f5d46"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-21ecac21-f762-41a5-83ad-b549920f5d46"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-21ecac21-f762-41a5-83ad-b549920f5d46"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 992px) {
[id="s-21ecac21-f762-41a5-83ad-b549920f5d46"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-21ecac21-f762-41a5-83ad-b549920f5d46"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 1200px) {
[id="s-21ecac21-f762-41a5-83ad-b549920f5d46"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-21ecac21-f762-41a5-83ad-b549920f5d46"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

#s-dd04e27a-19f2-4af4-b392-446e506d1abc {
  margin-left: auto;
margin-right: auto;
max-width: 75px;
text-align: center;
}







  #s-dd04e27a-19f2-4af4-b392-446e506d1abc img.shogun-image {
    

    
    
    
  }


#s-dd04e27a-19f2-4af4-b392-446e506d1abc .shogun-image-content {
  
    align-items: center;
  
}

#s-aeccda42-72ec-487c-a80b-c7d0df8d63ac {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-42988b55-2f27-4850-979e-a550c3da2e16 {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-42988b55-2f27-4850-979e-a550c3da2e16"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-42988b55-2f27-4850-979e-a550c3da2e16"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-42988b55-2f27-4850-979e-a550c3da2e16"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 992px) {
[id="s-42988b55-2f27-4850-979e-a550c3da2e16"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-42988b55-2f27-4850-979e-a550c3da2e16"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 1200px) {
[id="s-42988b55-2f27-4850-979e-a550c3da2e16"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-42988b55-2f27-4850-979e-a550c3da2e16"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

#s-1d9d213e-343f-4e28-b7ed-922538d11c24 {
  margin-left: auto;
margin-right: auto;
max-width: 75px;
text-align: center;
}







  #s-1d9d213e-343f-4e28-b7ed-922538d11c24 img.shogun-image {
    

    
    
    
  }


#s-1d9d213e-343f-4e28-b7ed-922538d11c24 .shogun-image-content {
  
    align-items: center;
  
}

#s-93259482-6dd0-4046-a50d-5b0f6d13cd5a {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-e974d3a9-32d5-41d0-a549-79430d174b21 {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-e974d3a9-32d5-41d0-a549-79430d174b21"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e974d3a9-32d5-41d0-a549-79430d174b21"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-e974d3a9-32d5-41d0-a549-79430d174b21"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 992px) {
[id="s-e974d3a9-32d5-41d0-a549-79430d174b21"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-e974d3a9-32d5-41d0-a549-79430d174b21"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 1200px) {
[id="s-e974d3a9-32d5-41d0-a549-79430d174b21"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-e974d3a9-32d5-41d0-a549-79430d174b21"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

#s-16f3ef1a-8edd-46a9-8bf4-af9229f74261 {
  margin-left: auto;
margin-right: auto;
max-width: 75px;
text-align: center;
}







  #s-16f3ef1a-8edd-46a9-8bf4-af9229f74261 img.shogun-image {
    

    
    
    
  }


#s-16f3ef1a-8edd-46a9-8bf4-af9229f74261 .shogun-image-content {
  
    align-items: center;
  
}

#s-bcfebb0a-fc24-4fd2-8b88-b9cbe291698a {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-f6b47065-173e-4605-96ea-88e53f1d60c4 {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-f6b47065-173e-4605-96ea-88e53f1d60c4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f6b47065-173e-4605-96ea-88e53f1d60c4"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-f6b47065-173e-4605-96ea-88e53f1d60c4"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 992px) {
[id="s-f6b47065-173e-4605-96ea-88e53f1d60c4"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-f6b47065-173e-4605-96ea-88e53f1d60c4"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 1200px) {
[id="s-f6b47065-173e-4605-96ea-88e53f1d60c4"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-f6b47065-173e-4605-96ea-88e53f1d60c4"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

#s-f3fc7238-01ea-43b4-bc50-f59852927b84 {
  margin-left: auto;
margin-right: auto;
max-width: 75px;
text-align: center;
}








#s-f3fc7238-01ea-43b4-bc50-f59852927b84 .shogun-image-content {
  
    align-items: center;
  
}

#s-140da6df-cc22-486f-80d3-19d5c31ea12b {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-6ee9e865-4054-4616-a014-14b68957afe1 {
  margin-bottom: 2em;
}
@media (min-width: 1200px){#s-6ee9e865-4054-4616-a014-14b68957afe1 {
  display: none;
}
#s-6ee9e865-4054-4616-a014-14b68957afe1, #wrap-s-6ee9e865-4054-4616-a014-14b68957afe1 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6ee9e865-4054-4616-a014-14b68957afe1 {
  display: none;
}
#s-6ee9e865-4054-4616-a014-14b68957afe1, #wrap-s-6ee9e865-4054-4616-a014-14b68957afe1 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-6ee9e865-4054-4616-a014-14b68957afe1 {
  display: none;
}
#s-6ee9e865-4054-4616-a014-14b68957afe1, #wrap-s-6ee9e865-4054-4616-a014-14b68957afe1 { display:none !important; }}
#s-6ee9e865-4054-4616-a014-14b68957afe1 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(0, 50, 58, 1);
}

#s-6ee9e865-4054-4616-a014-14b68957afe1 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(0, 50, 58, 1);
  padding: 10px;
}

#s-6ee9e865-4054-4616-a014-14b68957afe1 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(255, 255, 255, 1);
}

#s-6ee9e865-4054-4616-a014-14b68957afe1 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(0, 50, 58, 1);
  border-top: 1px solid rgba(0, 50, 58, 1);
}

#s-6ee9e865-4054-4616-a014-14b68957afe1 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(255, 255, 255, 1);
  text-align: left;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 18px;
}

#s-6ee9e865-4054-4616-a014-14b68957afe1 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 18px;
}
#s-fab5a044-f9ce-44c2-a2fb-bd363a1c23c0 {
  text-align: center;
}







  #s-fab5a044-f9ce-44c2-a2fb-bd363a1c23c0 img.shogun-image {
    

    
    
    
  }


#s-fab5a044-f9ce-44c2-a2fb-bd363a1c23c0 .shogun-image-content {
  
    align-items: center;
  
}

#s-b3d1a8fe-18ec-4f1d-a19c-375b85d95bb2 {
  margin-top: 1em;
text-align: center;
}







  #s-b3d1a8fe-18ec-4f1d-a19c-375b85d95bb2 img.shogun-image {
    

    
    
    
  }


#s-b3d1a8fe-18ec-4f1d-a19c-375b85d95bb2 .shogun-image-content {
  
    align-items: center;
  
}

#s-a83e875d-f55a-418b-97fe-86084c87db26 {
  margin-top: 2em;
margin-bottom: 2em;
}
@media (min-width: 1200px){#s-a83e875d-f55a-418b-97fe-86084c87db26 {
  display: none;
}
#s-a83e875d-f55a-418b-97fe-86084c87db26, #wrap-s-a83e875d-f55a-418b-97fe-86084c87db26 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a83e875d-f55a-418b-97fe-86084c87db26 {
  display: none;
}
#s-a83e875d-f55a-418b-97fe-86084c87db26, #wrap-s-a83e875d-f55a-418b-97fe-86084c87db26 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a83e875d-f55a-418b-97fe-86084c87db26 {
  display: none;
}
#s-a83e875d-f55a-418b-97fe-86084c87db26, #wrap-s-a83e875d-f55a-418b-97fe-86084c87db26 { display:none !important; }}@media (max-width: 767px){#s-a83e875d-f55a-418b-97fe-86084c87db26 {
  
}
}
@media (min-width: 0px) {
[id="s-a83e875d-f55a-418b-97fe-86084c87db26"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a83e875d-f55a-418b-97fe-86084c87db26"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.5em);
}

}

@media (min-width: 992px) {
[id="s-a83e875d-f55a-418b-97fe-86084c87db26"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.5em);
}

}

@media (min-width: 1200px) {
[id="s-a83e875d-f55a-418b-97fe-86084c87db26"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.5em);
}

}

@media (max-width: 767px) {
  [id="s-a83e875d-f55a-418b-97fe-86084c87db26"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-d88c65cb-8f3e-42a2-b128-50eb2941dc52 {
  min-height: 50px;
}








#s-d88c65cb-8f3e-42a2-b128-50eb2941dc52 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d88c65cb-8f3e-42a2-b128-50eb2941dc52.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-73925a32-e146-429e-8aa6-c9b89fb8d366 {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-73925a32-e146-429e-8aa6-c9b89fb8d366"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-73925a32-e146-429e-8aa6-c9b89fb8d366"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-73925a32-e146-429e-8aa6-c9b89fb8d366"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-73925a32-e146-429e-8aa6-c9b89fb8d366"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-73925a32-e146-429e-8aa6-c9b89fb8d366"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-73925a32-e146-429e-8aa6-c9b89fb8d366"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-73925a32-e146-429e-8aa6-c9b89fb8d366"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

#s-7848dd06-ff29-45c3-949b-631c44ed5719 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-7848dd06-ff29-45c3-949b-631c44ed5719 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7848dd06-ff29-45c3-949b-631c44ed5719.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-9357f3c0-db6f-4664-8433-7a0aa3232d93 {
  margin-left: auto;
margin-right: auto;
max-width: 75px;
text-align: center;
}







  #s-9357f3c0-db6f-4664-8433-7a0aa3232d93 img.shogun-image {
    

    
    
    
  }


#s-9357f3c0-db6f-4664-8433-7a0aa3232d93 .shogun-image-content {
  
    align-items: center;
  
}

#s-7f03676b-112b-4cdb-989b-7ee160748fea {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-4df57c7f-2a13-4113-8e03-f2e6eacd4363 {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-4df57c7f-2a13-4113-8e03-f2e6eacd4363"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4df57c7f-2a13-4113-8e03-f2e6eacd4363"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-4df57c7f-2a13-4113-8e03-f2e6eacd4363"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 992px) {
[id="s-4df57c7f-2a13-4113-8e03-f2e6eacd4363"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-4df57c7f-2a13-4113-8e03-f2e6eacd4363"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 1200px) {
[id="s-4df57c7f-2a13-4113-8e03-f2e6eacd4363"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-4df57c7f-2a13-4113-8e03-f2e6eacd4363"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

#s-953096ed-9ccd-4943-8776-db0e8b44ccec {
  margin-left: auto;
margin-right: auto;
max-width: 75px;
text-align: center;
}







  #s-953096ed-9ccd-4943-8776-db0e8b44ccec img.shogun-image {
    

    
    
    
  }


#s-953096ed-9ccd-4943-8776-db0e8b44ccec .shogun-image-content {
  
    align-items: center;
  
}

#s-a89e5b57-71f9-49b9-9cdc-870571aaa487 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-c5576bbd-cbb1-4dfc-af34-426b1c20ff77 {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-c5576bbd-cbb1-4dfc-af34-426b1c20ff77"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c5576bbd-cbb1-4dfc-af34-426b1c20ff77"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-c5576bbd-cbb1-4dfc-af34-426b1c20ff77"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 992px) {
[id="s-c5576bbd-cbb1-4dfc-af34-426b1c20ff77"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-c5576bbd-cbb1-4dfc-af34-426b1c20ff77"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 1200px) {
[id="s-c5576bbd-cbb1-4dfc-af34-426b1c20ff77"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-c5576bbd-cbb1-4dfc-af34-426b1c20ff77"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

#s-35003901-6adc-4134-a630-c2d9b2d1c1b6 {
  margin-left: auto;
margin-right: auto;
max-width: 75px;
text-align: center;
}







  #s-35003901-6adc-4134-a630-c2d9b2d1c1b6 img.shogun-image {
    

    
    
    
  }


#s-35003901-6adc-4134-a630-c2d9b2d1c1b6 .shogun-image-content {
  
    align-items: center;
  
}

#s-0d4a1667-b549-4708-88fd-4216ec22fc89 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-463676b7-8168-42b7-ac2f-1e90411b0abc {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-463676b7-8168-42b7-ac2f-1e90411b0abc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-463676b7-8168-42b7-ac2f-1e90411b0abc"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-463676b7-8168-42b7-ac2f-1e90411b0abc"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 992px) {
[id="s-463676b7-8168-42b7-ac2f-1e90411b0abc"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-463676b7-8168-42b7-ac2f-1e90411b0abc"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 1200px) {
[id="s-463676b7-8168-42b7-ac2f-1e90411b0abc"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-463676b7-8168-42b7-ac2f-1e90411b0abc"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

#s-43497519-cbc6-445a-be1f-fe04c308291c {
  margin-left: auto;
margin-right: auto;
max-width: 75px;
text-align: center;
}







  #s-43497519-cbc6-445a-be1f-fe04c308291c img.shogun-image {
    

    
    
    
  }


#s-43497519-cbc6-445a-be1f-fe04c308291c .shogun-image-content {
  
    align-items: center;
  
}

#s-4ee7f12f-6422-4486-9209-2e9180336a2c {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-41433f6c-56da-457e-94ab-c8bd4a4f3f45 {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-41433f6c-56da-457e-94ab-c8bd4a4f3f45"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-41433f6c-56da-457e-94ab-c8bd4a4f3f45"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-41433f6c-56da-457e-94ab-c8bd4a4f3f45"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 992px) {
[id="s-41433f6c-56da-457e-94ab-c8bd4a4f3f45"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-41433f6c-56da-457e-94ab-c8bd4a4f3f45"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

@media (min-width: 1200px) {
[id="s-41433f6c-56da-457e-94ab-c8bd4a4f3f45"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.5em);
}

[id="s-41433f6c-56da-457e-94ab-c8bd4a4f3f45"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.5em);
}

}

#s-fef615cc-1158-4f34-95f2-25a4b52e0e5c {
  margin-left: auto;
margin-right: auto;
max-width: 75px;
text-align: center;
}








#s-fef615cc-1158-4f34-95f2-25a4b52e0e5c .shogun-image-content {
  
    align-items: center;
  
}

#s-f0f03d3e-1525-45e2-92b9-43fb2122883f {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-d937c36e-49d0-4571-8a52-872cb4191ad9 {
  border-style: solid;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(148, 206, 190, 1);
border-radius: 2px;
max-width: 300px;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 1px;
color: rgba(148, 206, 190, 1);
background-image: none;
hover-type: color;
}
#s-d937c36e-49d0-4571-8a52-872cb4191ad9:hover {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(148, 206, 190, 1) !important;
border-radius: 2px !important;
background-color: rgba(148, 206, 190, 0.2) !important;
text-decoration: none !important;
color: rgba(148, 206, 190, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-d937c36e-49d0-4571-8a52-872cb4191ad9:active {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(113, 179, 160, 1) !important;
border-radius: 2px !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(113, 179, 160, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-d937c36e-49d0-4571-8a52-872cb4191ad9-root {
    text-align: center;
  }


#s-d937c36e-49d0-4571-8a52-872cb4191ad9.shg-btn {
  color: rgba(148, 206, 190, 1);
  font-size: 18px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-d937c36e-49d0-4571-8a52-872cb4191ad9-root {
    text-align: center;
  }


#s-d937c36e-49d0-4571-8a52-872cb4191ad9.shg-btn {
  color: rgba(148, 206, 190, 1);
  font-size: 18px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d937c36e-49d0-4571-8a52-872cb4191ad9-root {
    text-align: center;
  }


#s-d937c36e-49d0-4571-8a52-872cb4191ad9.shg-btn {
  color: rgba(148, 206, 190, 1);
  font-size: 18px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d937c36e-49d0-4571-8a52-872cb4191ad9-root {
    text-align: center;
  }


#s-d937c36e-49d0-4571-8a52-872cb4191ad9.shg-btn {
  color: rgba(148, 206, 190, 1);
  font-size: 18px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-d937c36e-49d0-4571-8a52-872cb4191ad9-root {
    text-align: center;
  }


#s-d937c36e-49d0-4571-8a52-872cb4191ad9.shg-btn {
  color: rgba(148, 206, 190, 1);
  font-size: 18px;
  
  
  
  display:  block ;
}
}
#s-aabddcb5-13ea-4bc0-b313-ea80f33719e8 {
  background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
min-height: 600px;
background-position: center center;
}








#s-aabddcb5-13ea-4bc0-b313-ea80f33719e8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-aabddcb5-13ea-4bc0-b313-ea80f33719e8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ad0b5bc3-b8c8-4797-83ea-6e2d39c44f36 {
  margin-top: 2em;
margin-left: auto;
margin-bottom: 0em;
margin-right: auto;
padding-left: 0em;
padding-right: 0em;
min-height: 50px;
}








#s-ad0b5bc3-b8c8-4797-83ea-6e2d39c44f36 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ad0b5bc3-b8c8-4797-83ea-6e2d39c44f36.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fe86033e-6d19-4852-8662-c51c25c57817 {
  margin-left: auto;
margin-right: auto;
padding-top: 0em;
padding-left: 1em;
padding-bottom: 0em;
padding-right: 1em;
max-width: 1000px;
}

#s-6fd8fd16-13fb-43d2-b94a-dfa13967077a {
  min-height: 50px;
}








#s-6fd8fd16-13fb-43d2-b94a-dfa13967077a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6fd8fd16-13fb-43d2-b94a-dfa13967077a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-d70aaae6-ed62-46f1-aea0-53fd8a4c2c4f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d70aaae6-ed62-46f1-aea0-53fd8a4c2c4f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 1.0em);
}

}

@media (min-width: 992px) {
[id="s-d70aaae6-ed62-46f1-aea0-53fd8a4c2c4f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 1.0em);
}

}

@media (min-width: 1200px) {
[id="s-d70aaae6-ed62-46f1-aea0-53fd8a4c2c4f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 1.0em);
}

}

@media (max-width: 767px) {
  [id="s-d70aaae6-ed62-46f1-aea0-53fd8a4c2c4f"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-8c806863-f48b-446c-b1b0-6444d87f975b {
  margin-left: 4em;
margin-right: 4em;
min-height: 50px;
}
@media (min-width: 1200px){#s-8c806863-f48b-446c-b1b0-6444d87f975b {
  margin-left: 5em;
margin-right: 5em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-8c806863-f48b-446c-b1b0-6444d87f975b {
  margin-left: 2em;
margin-right: 2em;
}
}@media (max-width: 767px){#s-8c806863-f48b-446c-b1b0-6444d87f975b {
  margin-left: 1em;
margin-right: 1em;
}
}







#s-8c806863-f48b-446c-b1b0-6444d87f975b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8c806863-f48b-446c-b1b0-6444d87f975b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e537337f-a39c-4660-9cb9-4c00e1e392da {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
max-width: 300px;
background-color: rgba(148, 206, 190, 1);
text-align: center;
text-decoration: none;
letter-spacing: 1px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-e537337f-a39c-4660-9cb9-4c00e1e392da:hover {background-color: rgba(166, 222, 206, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-e537337f-a39c-4660-9cb9-4c00e1e392da:active {background-color: rgba(94, 166, 151, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}

  #s-e537337f-a39c-4660-9cb9-4c00e1e392da-root {
    text-align: center;
  }


#s-e537337f-a39c-4660-9cb9-4c00e1e392da.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-e537337f-a39c-4660-9cb9-4c00e1e392da-root {
    text-align: center;
  }


#s-e537337f-a39c-4660-9cb9-4c00e1e392da.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e537337f-a39c-4660-9cb9-4c00e1e392da-root {
    text-align: center;
  }


#s-e537337f-a39c-4660-9cb9-4c00e1e392da.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e537337f-a39c-4660-9cb9-4c00e1e392da-root {
    text-align: center;
  }


#s-e537337f-a39c-4660-9cb9-4c00e1e392da.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-e537337f-a39c-4660-9cb9-4c00e1e392da-root {
    text-align: center;
  }


#s-e537337f-a39c-4660-9cb9-4c00e1e392da.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  block ;
}
}
  #s-e537337f-a39c-4660-9cb9-4c00e1e392da-root {
    text-align: center;
  }


#s-e537337f-a39c-4660-9cb9-4c00e1e392da.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  block ;
}

#s-98fa2e4e-3e19-40aa-b926-619e9cbd35f6 {
  min-height: 50px;
}








#s-98fa2e4e-3e19-40aa-b926-619e9cbd35f6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-98fa2e4e-3e19-40aa-b926-619e9cbd35f6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6aaed155-9cfa-4566-9e53-9e7e74559e4d {
  max-width: 700px;
text-align: center;
}








#s-6aaed155-9cfa-4566-9e53-9e7e74559e4d .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-8989972d-f915-42db-8960-7dca4ecadb8c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8989972d-f915-42db-8960-7dca4ecadb8c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 1.0em);
}

}

@media (min-width: 992px) {
[id="s-8989972d-f915-42db-8960-7dca4ecadb8c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 1.0em);
}

}

@media (min-width: 1200px) {
[id="s-8989972d-f915-42db-8960-7dca4ecadb8c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 1.0em);
}

}

#s-f3a7fb8a-056c-413d-8f6b-0c4437973066 {
  min-height: 50px;
}








#s-f3a7fb8a-056c-413d-8f6b-0c4437973066 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f3a7fb8a-056c-413d-8f6b-0c4437973066.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-262b78ea-bdc2-4e43-a42a-e090bd3ab9c4 {
  max-width: 700px;
text-align: center;
}








#s-262b78ea-bdc2-4e43-a42a-e090bd3ab9c4 .shogun-image-content {
  
    align-items: center;
  
}

#s-ef28b2eb-413e-4ad6-89c0-53ac856e7b0a {
  margin-left: 4em;
margin-right: 4em;
min-height: 50px;
}
@media (min-width: 1200px){#s-ef28b2eb-413e-4ad6-89c0-53ac856e7b0a {
  margin-left: 5em;
margin-right: 5em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-ef28b2eb-413e-4ad6-89c0-53ac856e7b0a {
  margin-left: 2em;
margin-right: 2em;
}
}@media (max-width: 767px){#s-ef28b2eb-413e-4ad6-89c0-53ac856e7b0a {
  margin-left: 1em;
margin-right: 1em;
}
}







#s-ef28b2eb-413e-4ad6-89c0-53ac856e7b0a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ef28b2eb-413e-4ad6-89c0-53ac856e7b0a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2c28eeab-fa7f-4898-b93a-fa48c6aa7bab {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
max-width: 300px;
background-color: rgba(148, 206, 190, 1);
text-align: center;
text-decoration: none;
letter-spacing: 1px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-2c28eeab-fa7f-4898-b93a-fa48c6aa7bab:hover {background-color: rgba(166, 222, 206, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-2c28eeab-fa7f-4898-b93a-fa48c6aa7bab:active {background-color: rgba(94, 166, 151, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}

  #s-2c28eeab-fa7f-4898-b93a-fa48c6aa7bab-root {
    text-align: center;
  }


#s-2c28eeab-fa7f-4898-b93a-fa48c6aa7bab.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-2c28eeab-fa7f-4898-b93a-fa48c6aa7bab-root {
    text-align: center;
  }


#s-2c28eeab-fa7f-4898-b93a-fa48c6aa7bab.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-2c28eeab-fa7f-4898-b93a-fa48c6aa7bab-root {
    text-align: center;
  }


#s-2c28eeab-fa7f-4898-b93a-fa48c6aa7bab.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-2c28eeab-fa7f-4898-b93a-fa48c6aa7bab-root {
    text-align: center;
  }


#s-2c28eeab-fa7f-4898-b93a-fa48c6aa7bab.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-2c28eeab-fa7f-4898-b93a-fa48c6aa7bab-root {
    text-align: center;
  }


#s-2c28eeab-fa7f-4898-b93a-fa48c6aa7bab.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  block ;
}
}
  #s-2c28eeab-fa7f-4898-b93a-fa48c6aa7bab-root {
    text-align: center;
  }


#s-2c28eeab-fa7f-4898-b93a-fa48c6aa7bab.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  block ;
}

#s-6a4102e6-681a-4428-a2da-b64c3c3aba00 {
  min-height: 50px;
}








#s-6a4102e6-681a-4428-a2da-b64c3c3aba00 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6a4102e6-681a-4428-a2da-b64c3c3aba00.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f7ae5c14-903b-4994-afc4-fd9348091b5a {
  margin-top: 1em;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
max-width: 320px;
background-color: rgba(146, 206, 190, 1);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-f7ae5c14-903b-4994-afc4-fd9348091b5a:hover {background-color: rgba(171, 233, 216, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-f7ae5c14-903b-4994-afc4-fd9348091b5a:active {background-color: rgba(146, 206, 190, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-f7ae5c14-903b-4994-afc4-fd9348091b5a-root {
    text-align: center;
  }


#s-f7ae5c14-903b-4994-afc4-fd9348091b5a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-f7ae5c14-903b-4994-afc4-fd9348091b5a-root {
    text-align: center;
  }


#s-f7ae5c14-903b-4994-afc4-fd9348091b5a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f7ae5c14-903b-4994-afc4-fd9348091b5a-root {
    text-align: center;
  }


#s-f7ae5c14-903b-4994-afc4-fd9348091b5a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f7ae5c14-903b-4994-afc4-fd9348091b5a-root {
    text-align: center;
  }


#s-f7ae5c14-903b-4994-afc4-fd9348091b5a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-f7ae5c14-903b-4994-afc4-fd9348091b5a-root {
    text-align: center;
  }


#s-f7ae5c14-903b-4994-afc4-fd9348091b5a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
}
  #s-f7ae5c14-903b-4994-afc4-fd9348091b5a-root {
    text-align: center;
  }


#s-f7ae5c14-903b-4994-afc4-fd9348091b5a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}

#s-8ecd8e9b-0229-42bc-a429-72e0b5e5cd38 {
  margin-top: 3em;
margin-left: auto;
margin-bottom: 3em;
margin-right: auto;
padding-left: 2em;
padding-right: 2em;
min-height: 50px;
max-width: 1300px;
}








#s-8ecd8e9b-0229-42bc-a429-72e0b5e5cd38 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8ecd8e9b-0229-42bc-a429-72e0b5e5cd38.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-df81b1d0-d745-4a1e-a908-21e03f83b7c5 {
  margin-top: 2em;
margin-bottom: 2em;
}

@media (min-width: 0px) {
[id="s-df81b1d0-d745-4a1e-a908-21e03f83b7c5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-df81b1d0-d745-4a1e-a908-21e03f83b7c5"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.6666666666666666em);
}

}

@media (min-width: 992px) {
[id="s-df81b1d0-d745-4a1e-a908-21e03f83b7c5"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.6666666666666666em);
}

}

@media (min-width: 1200px) {
[id="s-df81b1d0-d745-4a1e-a908-21e03f83b7c5"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.6666666666666666em);
}

}

#s-ceb5d11f-5467-4435-832f-601138027fb9 {
  display: none;
}
#s-90dad45e-8135-490d-ba1d-ef6363452ea8 {
  text-align: left;
}



.shg-c#s-90dad45e-8135-490d-ba1d-ef6363452ea8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-90dad45e-8135-490d-ba1d-ef6363452ea8 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-90dad45e-8135-490d-ba1d-ef6363452ea8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-90dad45e-8135-490d-ba1d-ef6363452ea8 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-90dad45e-8135-490d-ba1d-ef6363452ea8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-90dad45e-8135-490d-ba1d-ef6363452ea8 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-90dad45e-8135-490d-ba1d-ef6363452ea8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-90dad45e-8135-490d-ba1d-ef6363452ea8 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-90dad45e-8135-490d-ba1d-ef6363452ea8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-90dad45e-8135-490d-ba1d-ef6363452ea8 img.shogun-image {
  width: 100%;
}



}

.shg-c#s-90dad45e-8135-490d-ba1d-ef6363452ea8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-90dad45e-8135-490d-ba1d-ef6363452ea8 img.shogun-image {
  width: 100%;
}




#s-f07b605f-ac95-4cbb-807f-26dafc130645 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f07b605f-ac95-4cbb-807f-26dafc130645 .shg-product-title-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-0ba4f23e-88ad-428f-87c5-0b555a01ea30 {
  display: none;
}
#s-884031e3-4271-404e-a1bf-123cfdff2329 {
  text-align: left;
}



.shg-c#s-884031e3-4271-404e-a1bf-123cfdff2329 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-884031e3-4271-404e-a1bf-123cfdff2329 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-884031e3-4271-404e-a1bf-123cfdff2329 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-884031e3-4271-404e-a1bf-123cfdff2329 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-884031e3-4271-404e-a1bf-123cfdff2329 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-884031e3-4271-404e-a1bf-123cfdff2329 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-884031e3-4271-404e-a1bf-123cfdff2329 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-884031e3-4271-404e-a1bf-123cfdff2329 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-884031e3-4271-404e-a1bf-123cfdff2329 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-884031e3-4271-404e-a1bf-123cfdff2329 img.shogun-image {
  width: 100%;
}



}

.shg-c#s-884031e3-4271-404e-a1bf-123cfdff2329 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-884031e3-4271-404e-a1bf-123cfdff2329 img.shogun-image {
  width: 100%;
}




#s-2f304681-f724-4c17-bbc0-b981fdb730fd {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2f304681-f724-4c17-bbc0-b981fdb730fd .shg-product-title-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-18293f5b-d53d-4052-91e8-cab1d171d26a {
  display: none;
}
#s-3af294b3-7027-4b48-baa9-b2830d6dcb90 {
  text-align: left;
}



.shg-c#s-3af294b3-7027-4b48-baa9-b2830d6dcb90 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3af294b3-7027-4b48-baa9-b2830d6dcb90 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-3af294b3-7027-4b48-baa9-b2830d6dcb90 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3af294b3-7027-4b48-baa9-b2830d6dcb90 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-3af294b3-7027-4b48-baa9-b2830d6dcb90 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3af294b3-7027-4b48-baa9-b2830d6dcb90 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-3af294b3-7027-4b48-baa9-b2830d6dcb90 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3af294b3-7027-4b48-baa9-b2830d6dcb90 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-3af294b3-7027-4b48-baa9-b2830d6dcb90 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3af294b3-7027-4b48-baa9-b2830d6dcb90 img.shogun-image {
  width: 100%;
}



}

.shg-c#s-3af294b3-7027-4b48-baa9-b2830d6dcb90 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3af294b3-7027-4b48-baa9-b2830d6dcb90 img.shogun-image {
  width: 100%;
}




#s-ff44d340-503a-4b30-83e4-0eb5cb280ba0 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ff44d340-503a-4b30-83e4-0eb5cb280ba0 .shg-product-title-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-b4c16b37-2dbf-47cb-9d2f-30244126182b {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
max-width: 320px;
background-color: rgba(146, 206, 190, 1);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-b4c16b37-2dbf-47cb-9d2f-30244126182b:hover {background-color: rgba(171, 233, 216, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-b4c16b37-2dbf-47cb-9d2f-30244126182b:active {background-color: rgba(146, 206, 190, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-b4c16b37-2dbf-47cb-9d2f-30244126182b-root {
    text-align: center;
  }


#s-b4c16b37-2dbf-47cb-9d2f-30244126182b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-b4c16b37-2dbf-47cb-9d2f-30244126182b-root {
    text-align: center;
  }


#s-b4c16b37-2dbf-47cb-9d2f-30244126182b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b4c16b37-2dbf-47cb-9d2f-30244126182b-root {
    text-align: center;
  }


#s-b4c16b37-2dbf-47cb-9d2f-30244126182b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b4c16b37-2dbf-47cb-9d2f-30244126182b-root {
    text-align: center;
  }


#s-b4c16b37-2dbf-47cb-9d2f-30244126182b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-b4c16b37-2dbf-47cb-9d2f-30244126182b-root {
    text-align: center;
  }


#s-b4c16b37-2dbf-47cb-9d2f-30244126182b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
}
  #s-b4c16b37-2dbf-47cb-9d2f-30244126182b-root {
    text-align: center;
  }


#s-b4c16b37-2dbf-47cb-9d2f-30244126182b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}

#s-893dee41-8caa-41cf-8142-c5c9a99ebda2 {
  margin-left: auto;
margin-right: auto;
padding-left: 1em;
padding-right: 1em;
max-width: 1300px;
}

@media (min-width: 0px) {
[id="s-893dee41-8caa-41cf-8142-c5c9a99ebda2"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.5em);
}

}

@media (min-width: 768px) {
[id="s-893dee41-8caa-41cf-8142-c5c9a99ebda2"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.75em);
}

}

@media (min-width: 992px) {
[id="s-893dee41-8caa-41cf-8142-c5c9a99ebda2"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.75em);
}

}

@media (min-width: 1200px) {
[id="s-893dee41-8caa-41cf-8142-c5c9a99ebda2"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.75em);
}

}

#s-3ce4d802-71cb-4ef7-89c0-0df603038433 {
  min-height: 50px;
}








#s-3ce4d802-71cb-4ef7-89c0-0df603038433 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3ce4d802-71cb-4ef7-89c0-0df603038433.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-e2156df6-8df5-467d-b5d6-7a649dfb6d61 {
  margin-left: auto;
margin-right: auto;
max-width: 175px;
text-align: center;
}








#s-e2156df6-8df5-467d-b5d6-7a649dfb6d61 .shogun-image-content {
  
    align-items: center;
  
}

#s-ce8a1674-9a9e-415b-ad54-d68a1a7b0bbd {
  min-height: 50px;
}








#s-ce8a1674-9a9e-415b-ad54-d68a1a7b0bbd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ce8a1674-9a9e-415b-ad54-d68a1a7b0bbd.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-46dec11d-3355-42c8-a782-942340010252 {
  margin-left: auto;
margin-right: auto;
max-width: 175px;
text-align: center;
}








#s-46dec11d-3355-42c8-a782-942340010252 .shogun-image-content {
  
    align-items: center;
  
}

#s-d7d2551f-b7d7-4f5e-b77a-4fa931a57c8b {
  min-height: 50px;
}








#s-d7d2551f-b7d7-4f5e-b77a-4fa931a57c8b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d7d2551f-b7d7-4f5e-b77a-4fa931a57c8b.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-4860d62b-f399-40c6-825e-6670d6826095 {
  margin-left: auto;
margin-right: auto;
max-width: 175px;
text-align: center;
}








#s-4860d62b-f399-40c6-825e-6670d6826095 .shogun-image-content {
  
    align-items: center;
  
}

#s-ffca7af5-8fd0-4585-9c60-56caaabd3df6 {
  min-height: 50px;
}








#s-ffca7af5-8fd0-4585-9c60-56caaabd3df6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ffca7af5-8fd0-4585-9c60-56caaabd3df6.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-9f8be733-ccab-4ed4-90bc-2c25a71c0385 {
  margin-left: auto;
margin-right: auto;
max-width: 175px;
text-align: center;
}








#s-9f8be733-ccab-4ed4-90bc-2c25a71c0385 .shogun-image-content {
  
    align-items: center;
  
}

#s-7a05fa06-b12c-4076-bc2f-64c602894e95 {
  min-height: 600px;
}








#s-7a05fa06-b12c-4076-bc2f-64c602894e95 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7a05fa06-b12c-4076-bc2f-64c602894e95.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-af9af99d-97ad-49f3-a803-007373d54f5f {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 0em;
padding-bottom: 0em;
}

#s-af9af99d-97ad-49f3-a803-007373d54f5f .shg-sld-dot {
  background-color: rgba(146, 206, 190, 1);
}

#s-af9af99d-97ad-49f3-a803-007373d54f5f .shg-sld-nav-button.shg-sld-left,
#s-af9af99d-97ad-49f3-a803-007373d54f5f .shg-sld-nav-button.shg-sld-right {
  fill: rgba(146, 206, 190, 1);
}

#s-12b93132-16c5-4e96-8476-f4413960bb3d {
  background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 2em;
padding-left: 2em;
padding-bottom: 2em;
padding-right: 2em;
min-height: 600px;
background-position: center center;
}








#s-12b93132-16c5-4e96-8476-f4413960bb3d > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0.6;
}#s-12b93132-16c5-4e96-8476-f4413960bb3d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e979101a-3a47-4d25-b7fd-ba4d151bd0e8 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
max-width: 250px;
}

#s-e979101a-3a47-4d25-b7fd-ba4d151bd0e8 .shogun-table-wrapper {
  overflow: auto;
  border: 1px solid rgba(213, 214, 215, 0);
  border-radius: 0px;
}

#s-e979101a-3a47-4d25-b7fd-ba4d151bd0e8 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-e979101a-3a47-4d25-b7fd-ba4d151bd0e8 td.shogun-table-column {
  background-color: rgba(255, 255, 255, 0);
  padding: 5px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-e979101a-3a47-4d25-b7fd-ba4d151bd0e8 td.shogun-table-row {
  background-color: rgba(255, 255, 255, 0);
  padding: 10px;
}

#s-e979101a-3a47-4d25-b7fd-ba4d151bd0e8 td.shogun-table-column, #s-e979101a-3a47-4d25-b7fd-ba4d151bd0e8 td.shogun-table-row {
  border: 1px solid rgba(213, 214, 215, 0);
}

#s-b1a2f397-4c7b-4a1c-a365-f2a673104b87 .shogun-icon-wrapper {
  text-align: center;
}


#s-b1a2f397-4c7b-4a1c-a365-f2a673104b87 .shogun-icon-wrapper > .shogun-icon {

  font-size: 24px !important;
  color: rgba(146, 206, 190, 1);
}

#s-00959bc9-e42a-4f13-ba65-715909ad3bad .shogun-icon-wrapper {
  text-align: center;
}


#s-00959bc9-e42a-4f13-ba65-715909ad3bad .shogun-icon-wrapper > .shogun-icon {

  font-size: 24px !important;
  color: rgba(146, 206, 190, 1);
}

#s-33e25ce4-809d-4740-b461-769d300a21da .shogun-icon-wrapper {
  text-align: center;
}


#s-33e25ce4-809d-4740-b461-769d300a21da .shogun-icon-wrapper > .shogun-icon {

  font-size: 24px !important;
  color: rgba(146, 206, 190, 1);
}

#s-6e15c70b-3862-42c1-b74c-dac7cc0f325a .shogun-icon-wrapper {
  text-align: center;
}


#s-6e15c70b-3862-42c1-b74c-dac7cc0f325a .shogun-icon-wrapper > .shogun-icon {

  font-size: 24px !important;
  color: rgba(146, 206, 190, 1);
}

#s-e0fb3c1d-67d8-4456-a2b4-cb96606aa483 .shogun-icon-wrapper {
  text-align: center;
}


#s-e0fb3c1d-67d8-4456-a2b4-cb96606aa483 .shogun-icon-wrapper > .shogun-icon {

  font-size: 24px !important;
  color: rgba(146, 206, 190, 1);
}

#s-ad8c23c8-2669-4ab9-b410-b3ac2be7a720 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-3d1aca08-f9e3-449f-b66c-8d1f593b665b {
  background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 2em;
padding-left: 2em;
padding-bottom: 2em;
padding-right: 2em;
min-height: 600px;
background-position: center center;
}








#s-3d1aca08-f9e3-449f-b66c-8d1f593b665b > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0.1;
}#s-3d1aca08-f9e3-449f-b66c-8d1f593b665b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4d93db05-3fdb-4c05-b7f0-90af5f4b97b6 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
max-width: 250px;
}

#s-4d93db05-3fdb-4c05-b7f0-90af5f4b97b6 .shogun-table-wrapper {
  overflow: auto;
  border: 1px solid rgba(213, 214, 215, 0);
  border-radius: 0px;
}

#s-4d93db05-3fdb-4c05-b7f0-90af5f4b97b6 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-4d93db05-3fdb-4c05-b7f0-90af5f4b97b6 td.shogun-table-column {
  background-color: rgba(255, 255, 255, 0);
  padding: 5px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-4d93db05-3fdb-4c05-b7f0-90af5f4b97b6 td.shogun-table-row {
  background-color: rgba(255, 255, 255, 0);
  padding: 10px;
}

#s-4d93db05-3fdb-4c05-b7f0-90af5f4b97b6 td.shogun-table-column, #s-4d93db05-3fdb-4c05-b7f0-90af5f4b97b6 td.shogun-table-row {
  border: 1px solid rgba(213, 214, 215, 0);
}

#s-a7700357-fd08-4bf7-bfbe-064f794f457a .shogun-icon-wrapper {
  text-align: center;
}


#s-a7700357-fd08-4bf7-bfbe-064f794f457a .shogun-icon-wrapper > .shogun-icon {

  font-size: 24px !important;
  color: rgba(146, 206, 190, 1);
}

#s-39be9c69-5870-49e4-9b00-ec5955e8f900 .shogun-icon-wrapper {
  text-align: center;
}


#s-39be9c69-5870-49e4-9b00-ec5955e8f900 .shogun-icon-wrapper > .shogun-icon {

  font-size: 24px !important;
  color: rgba(146, 206, 190, 1);
}

#s-736c7f2e-d764-447d-9396-b3e2b3484658 .shogun-icon-wrapper {
  text-align: center;
}


#s-736c7f2e-d764-447d-9396-b3e2b3484658 .shogun-icon-wrapper > .shogun-icon {

  font-size: 24px !important;
  color: rgba(146, 206, 190, 1);
}

#s-4ac00b3b-8a67-4f95-846b-f67fdf1c3d9c .shogun-icon-wrapper {
  text-align: center;
}


#s-4ac00b3b-8a67-4f95-846b-f67fdf1c3d9c .shogun-icon-wrapper > .shogun-icon {

  font-size: 24px !important;
  color: rgba(146, 206, 190, 1);
}

#s-449bc149-ad55-431e-b286-ff691d720e0a .shogun-icon-wrapper {
  text-align: center;
}


#s-449bc149-ad55-431e-b286-ff691d720e0a .shogun-icon-wrapper > .shogun-icon {

  font-size: 24px !important;
  color: rgba(146, 206, 190, 1);
}

#s-95c33f94-1c42-48cd-975e-f2841eb7e335 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-29448685-ff6d-407f-9422-20553579fc26 {
  background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 2em;
padding-left: 2em;
padding-bottom: 2em;
padding-right: 2em;
min-height: 600px;
background-position: center center;
}








#s-29448685-ff6d-407f-9422-20553579fc26 > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0.1;
}#s-29448685-ff6d-407f-9422-20553579fc26.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d36d7f88-3a18-4875-9538-0fc217f8d9c5 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
max-width: 250px;
}

#s-d36d7f88-3a18-4875-9538-0fc217f8d9c5 .shogun-table-wrapper {
  overflow: auto;
  border: 1px solid rgba(213, 214, 215, 0);
  border-radius: 0px;
}

#s-d36d7f88-3a18-4875-9538-0fc217f8d9c5 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-d36d7f88-3a18-4875-9538-0fc217f8d9c5 td.shogun-table-column {
  background-color: rgba(255, 255, 255, 0);
  padding: 5px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-d36d7f88-3a18-4875-9538-0fc217f8d9c5 td.shogun-table-row {
  background-color: rgba(255, 255, 255, 0);
  padding: 10px;
}

#s-d36d7f88-3a18-4875-9538-0fc217f8d9c5 td.shogun-table-column, #s-d36d7f88-3a18-4875-9538-0fc217f8d9c5 td.shogun-table-row {
  border: 1px solid rgba(213, 214, 215, 0);
}

#s-d5fc764b-1dba-45ea-81ce-3b03d52bb783 .shogun-icon-wrapper {
  text-align: center;
}


#s-d5fc764b-1dba-45ea-81ce-3b03d52bb783 .shogun-icon-wrapper > .shogun-icon {

  font-size: 24px !important;
  color: rgba(146, 206, 190, 1);
}

#s-0f944c9f-eca1-405e-998f-18bf795b3a88 .shogun-icon-wrapper {
  text-align: center;
}


#s-0f944c9f-eca1-405e-998f-18bf795b3a88 .shogun-icon-wrapper > .shogun-icon {

  font-size: 24px !important;
  color: rgba(146, 206, 190, 1);
}

#s-4c7e964b-b1be-4030-bdf4-efe10d994129 .shogun-icon-wrapper {
  text-align: center;
}


#s-4c7e964b-b1be-4030-bdf4-efe10d994129 .shogun-icon-wrapper > .shogun-icon {

  font-size: 24px !important;
  color: rgba(146, 206, 190, 1);
}

#s-d00e260d-da21-4a6f-89c9-e3abd922acb4 .shogun-icon-wrapper {
  text-align: center;
}


#s-d00e260d-da21-4a6f-89c9-e3abd922acb4 .shogun-icon-wrapper > .shogun-icon {

  font-size: 24px !important;
  color: rgba(146, 206, 190, 1);
}

#s-bbb46110-fc4e-4255-8383-d75848536bd3 .shogun-icon-wrapper {
  text-align: center;
}


#s-bbb46110-fc4e-4255-8383-d75848536bd3 .shogun-icon-wrapper > .shogun-icon {

  font-size: 24px !important;
  color: rgba(146, 206, 190, 1);
}

#s-8d1ef9a2-f8f2-4fbd-83c9-2486ab28f56b {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

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

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

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

.shogun-root iframe {
  display: initial;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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