.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 a {
  background-color: inherit;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-style: inherit;
  text-decoration: underline;
  text-transform: inherit;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-default-text-content ul,
.shg-default-text-content ol {
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
  margin-bottom: 0;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
  -webkit-margin-start: 0;
          margin-inline-start: 0;
  margin-top: 0;
  -webkit-padding-start: 40px;
          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-box {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  /**
   * While `flex: 1` is enough here, we need to supply the rest
   * of the parameters (`1 auto`) to keep compatibility with IE11.
   * Otherwise, IE11 flex would break.
   */
  flex: 1 1 auto;
}

.shg-box > .shg-box-content {
  z-index: 4;
  position: relative;
  /**
   * 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: flex;
  width: 100%;
}

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

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

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

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

.shg-box-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: -1;
}

#s-6403d6da-3af2-4ea2-8504-6fd3b214aa7c {
  min-height: 50px;
}








#s-6403d6da-3af2-4ea2-8504-6fd3b214aa7c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6403d6da-3af2-4ea2-8504-6fd3b214aa7c.shg-box.shg-c {
  justify-content: center;
}

#s-a5a8d973-4499-45cb-bf81-c50a28e2674b {
  min-height: 50px;
}








#s-a5a8d973-4499-45cb-bf81-c50a28e2674b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a5a8d973-4499-45cb-bf81-c50a28e2674b.shg-box.shg-c {
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

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

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

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

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

#s-d534deb0-e56c-4da9-90b5-c78835d5ebc3 {
  
}

#s-d534deb0-e56c-4da9-90b5-c78835d5ebc3 .shogun-tabs {
  justify-content: center;
}

#s-d534deb0-e56c-4da9-90b5-c78835d5ebc3 .shogun-tabs > li > .shogun-tab-box {
    background: none;
    border: none;
  }
  #s-d534deb0-e56c-4da9-90b5-c78835d5ebc3 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: none;
    border: none;
  }
  #s-d534deb0-e56c-4da9-90b5-c78835d5ebc3 .shogun-tabs > li > .shogun-tab-box::after {
    background: rgba(188, 188, 188, 1);
    border: 1px solid #DDDDDD;
  }
  #s-d534deb0-e56c-4da9-90b5-c78835d5ebc3 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box::after  {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(221, 221, 221, 1);
  }
#s-d534deb0-e56c-4da9-90b5-c78835d5ebc3 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(255, 255, 255, 1);
  font-family: Lato;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-d534deb0-e56c-4da9-90b5-c78835d5ebc3 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(0, 0, 0, 1);
}

#s-d534deb0-e56c-4da9-90b5-c78835d5ebc3 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(255, 255, 255, 1);
}

#s-d534deb0-e56c-4da9-90b5-c78835d5ebc3 .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid rgba(221, 221, 221, 1);
}

#s-67ce6bf8-5c29-48cb-95df-58bf2b8f37fc {
  margin-top: 20px;
margin-bottom: 20px;
min-height: 50px;
}








#s-67ce6bf8-5c29-48cb-95df-58bf2b8f37fc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-67ce6bf8-5c29-48cb-95df-58bf2b8f37fc.shg-box.shg-c {
  justify-content: center;
}

.shg-row {
  display: flex;
  flex-wrap: wrap;
  min-height: inherit;
  max-height: inherit;
justify-content: space-between;
}

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

.shg-c-xs-1,
.shg-c-xs-2,
.shg-c-xs-3,
.shg-c-xs-4,
.shg-c-xs-5,
.shg-c-xs-6,
.shg-c-xs-7,
.shg-c-xs-8,
.shg-c-xs-9,
.shg-c-xs-10,
.shg-c-xs-11,
.shg-c-xs-12,
.shg-c-sm-1,
.shg-c-sm-2,
.shg-c-sm-3,
.shg-c-sm-4,
.shg-c-sm-5,
.shg-c-sm-6,
.shg-c-sm-7,
.shg-c-sm-8,
.shg-c-sm-9,
.shg-c-sm-10,
.shg-c-sm-11,
.shg-c-sm-12,
.shg-c-md-1,
.shg-c-md-2,
.shg-c-md-3,
.shg-c-md-4,
.shg-c-md-5,
.shg-c-md-6,
.shg-c-md-7,
.shg-c-md-8,
.shg-c-md-9,
.shg-c-md-10,
.shg-c-md-11,
.shg-c-md-12,
.shg-c-lg-1,
.shg-c-lg-2,
.shg-c-lg-3,
.shg-c-lg-4,
.shg-c-lg-5,
.shg-c-lg-6,
.shg-c-lg-7,
.shg-c-lg-8,
.shg-c-lg-9,
.shg-c-lg-10,
.shg-c-lg-11,
.shg-c-lg-12 {
  position: relative;
}

#s-de56553b-ed15-409e-b87f-2b17ed91d3b8 {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-bottom: 20px;
max-width: 1200px;
}

@media (min-width: 0px) {
[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 22.5px);
}

[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 22.5px);
}

[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 22.5px);
}

[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 22.5px);
}

[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 22.5px);
}

[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 22.5px);
}

[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 22.5px);
}

[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 22.5px);
}

[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 22.5px);
}

[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 22.5px);
}

[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 22.5px);
}

[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 22.5px);
}

[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 22.5px);
}

[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 22.5px);
}

[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 22.5px);
}

[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 22.5px);
}

[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 22.5px);
}

[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 22.5px);
}

[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 22.5px);
}

[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 22.5px);
}

[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 22.5px);
}

[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 22.5px);
}

[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 22.5px);
}

[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 22.5px);
}

[id="s-de56553b-ed15-409e-b87f-2b17ed91d3b8"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 22.5px);
}

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-content-bottom {
  align-items: flex-end;
}
#s-ae2b4235-e0b9-4804-acd1-7526516fa52a {
  text-align: center;
}




  #s-ae2b4235-e0b9-4804-acd1-7526516fa52a img.shogun-image {
    
    width: px;
  }


#s-ae2b4235-e0b9-4804-acd1-7526516fa52a .shogun-image-content {
  
    align-items: center;
  
}

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

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

#s-6d21871d-7e81-4c73-b5f6-df890803de88 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-6d21871d-7e81-4c73-b5f6-df890803de88 .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: Lato;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-c22af5d7-030c-42e2-a0da-db0b9c7a8508 {
  padding-bottom: 20px;
}

.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.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-30b97e21-1bde-41ce-9a44-99293e30cca4 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: left;
background-color: #252525;
text-decoration: none;
}
#s-30b97e21-1bde-41ce-9a44-99293e30cca4:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-30b97e21-1bde-41ce-9a44-99293e30cca4:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-30b97e21-1bde-41ce-9a44-99293e30cca4.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-fb48e3fe-d5ce-4192-ac9e-678e32b597b7 {
  text-align: center;
}




  #s-fb48e3fe-d5ce-4192-ac9e-678e32b597b7 img.shogun-image {
    
    width: px;
  }


#s-fb48e3fe-d5ce-4192-ac9e-678e32b597b7 .shogun-image-content {
  
    align-items: center;
  
}

#s-bbb5fab6-2de2-4cbe-bcc1-7b4715197da0 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-bbb5fab6-2de2-4cbe-bcc1-7b4715197da0 .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: Lato;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-2736ce81-c51b-43ae-ad09-cb2c4b6c8d77 {
  padding-bottom: 20px;
}

#s-9cfb9f7e-b498-4f65-a17b-8b4e6223db61 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: left;
background-color: #252525;
text-decoration: none;
}
#s-9cfb9f7e-b498-4f65-a17b-8b4e6223db61:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-9cfb9f7e-b498-4f65-a17b-8b4e6223db61:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-9cfb9f7e-b498-4f65-a17b-8b4e6223db61.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-4258ac7f-40fc-4463-b377-dddc874af281 {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-bottom: 20px;
max-width: 1200px;
}

@media (min-width: 0px) {
[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 22.5px);
}

[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 22.5px);
}

[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 22.5px);
}

[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 22.5px);
}

[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 22.5px);
}

[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 22.5px);
}

[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 22.5px);
}

[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 22.5px);
}

[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 22.5px);
}

[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 22.5px);
}

[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 22.5px);
}

[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 22.5px);
}

[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 22.5px);
}

[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 22.5px);
}

[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 22.5px);
}

[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 22.5px);
}

[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 22.5px);
}

[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 22.5px);
}

[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 22.5px);
}

[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 22.5px);
}

[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 22.5px);
}

[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 22.5px);
}

[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 22.5px);
}

[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 22.5px);
}

[id="s-4258ac7f-40fc-4463-b377-dddc874af281"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 22.5px);
}

}

#s-21a2ffde-9fce-450b-8f97-bbe26e64eece {
  text-align: center;
}




  #s-21a2ffde-9fce-450b-8f97-bbe26e64eece img.shogun-image {
    
    width: px;
  }


#s-21a2ffde-9fce-450b-8f97-bbe26e64eece .shogun-image-content {
  
    align-items: center;
  
}

#s-35656678-2418-4e9f-8629-63abd0ca0814 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-35656678-2418-4e9f-8629-63abd0ca0814 .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: Lato;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-71db03d5-c54c-4b0f-867f-a2353b702d48 {
  padding-bottom: 20px;
}

#s-02eea818-eb56-4096-adbb-e73a2ecb4556 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: left;
background-color: #252525;
text-decoration: none;
}
#s-02eea818-eb56-4096-adbb-e73a2ecb4556:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-02eea818-eb56-4096-adbb-e73a2ecb4556:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-02eea818-eb56-4096-adbb-e73a2ecb4556.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-2e365bdd-bef5-4a06-a477-ca5ec32bd807 {
  text-align: center;
}




  #s-2e365bdd-bef5-4a06-a477-ca5ec32bd807 img.shogun-image {
    
    width: px;
  }


#s-2e365bdd-bef5-4a06-a477-ca5ec32bd807 .shogun-image-content {
  
    align-items: center;
  
}

#s-946a5458-91f4-4dbb-8879-2457b20e94d6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-946a5458-91f4-4dbb-8879-2457b20e94d6 .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: Lato;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-568b4887-9192-4e14-bb7a-f6600253f077 {
  padding-bottom: 20px;
}

#s-cde94bf3-47d1-43eb-b746-7c761c0cad10 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: left;
background-color: rgba(85, 123, 151, 1);
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-cde94bf3-47d1-43eb-b746-7c761c0cad10:hover {background-color: rgba(67, 96, 118, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-cde94bf3-47d1-43eb-b746-7c761c0cad10:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-cde94bf3-47d1-43eb-b746-7c761c0cad10.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-ea702011-50ef-4b41-9c73-34df65ec7471 {
  border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
padding-bottom: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(221, 221, 221, 1);
min-height: 50px;
}








#s-ea702011-50ef-4b41-9c73-34df65ec7471 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ea702011-50ef-4b41-9c73-34df65ec7471.shg-box.shg-c {
  justify-content: center;
}

#s-0e37fd9f-db70-4ca9-bd86-350dacc76932 {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-bottom: 20px;
max-width: 1200px;
}

@media (min-width: 0px) {
[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 22.5px);
}

[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 22.5px);
}

[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 22.5px);
}

[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 22.5px);
}

[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 22.5px);
}

[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 22.5px);
}

[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 22.5px);
}

[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 22.5px);
}

[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 22.5px);
}

[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 22.5px);
}

[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 22.5px);
}

[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 22.5px);
}

[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 22.5px);
}

[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 22.5px);
}

[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 22.5px);
}

[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 22.5px);
}

[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 22.5px);
}

[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 22.5px);
}

[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 22.5px);
}

[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 22.5px);
}

[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 22.5px);
}

[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 22.5px);
}

[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 22.5px);
}

[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 22.5px);
}

[id="s-0e37fd9f-db70-4ca9-bd86-350dacc76932"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 22.5px);
}

}

#s-91338422-0ba6-4b7f-9d34-b52bd2037e5a {
  text-align: center;
}




  #s-91338422-0ba6-4b7f-9d34-b52bd2037e5a img.shogun-image {
    
    width: px;
  }


#s-91338422-0ba6-4b7f-9d34-b52bd2037e5a .shogun-image-content {
  
    align-items: center;
  
}

#s-cb677ece-ec43-479c-93a6-cbe1148870da {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-cb677ece-ec43-479c-93a6-cbe1148870da .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: Lato;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-6de83030-fa97-4e55-956a-7be22b501609 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: #252525;
text-decoration: none;
}
#s-6de83030-fa97-4e55-956a-7be22b501609:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-6de83030-fa97-4e55-956a-7be22b501609:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-6de83030-fa97-4e55-956a-7be22b501609.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-5b2ec7a4-4045-44eb-98d4-61971f0c6b29 {
  text-align: center;
}




  #s-5b2ec7a4-4045-44eb-98d4-61971f0c6b29 img.shogun-image {
    
    width: px;
  }


#s-5b2ec7a4-4045-44eb-98d4-61971f0c6b29 .shogun-image-content {
  
    align-items: center;
  
}

#s-b4a79ca0-b59c-4941-974f-2d5fdc9029d1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b4a79ca0-b59c-4941-974f-2d5fdc9029d1 .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: Lato;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-d740feba-65f7-45ac-95f3-1b9ef8d15562 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: #252525;
text-decoration: none;
}
#s-d740feba-65f7-45ac-95f3-1b9ef8d15562:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-d740feba-65f7-45ac-95f3-1b9ef8d15562:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-d740feba-65f7-45ac-95f3-1b9ef8d15562.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-9a6ac8fe-5f57-46e4-bd34-beaf445f476b {
  text-align: center;
}




  #s-9a6ac8fe-5f57-46e4-bd34-beaf445f476b img.shogun-image {
    
    width: px;
  }


#s-9a6ac8fe-5f57-46e4-bd34-beaf445f476b .shogun-image-content {
  
    align-items: center;
  
}

#s-dac76e56-6803-49f2-aaeb-c8f30e4d874a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-dac76e56-6803-49f2-aaeb-c8f30e4d874a .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: Lato;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-7751d4c2-7bc9-4b08-9228-10b1b0b17329 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: #252525;
text-decoration: none;
}
#s-7751d4c2-7bc9-4b08-9228-10b1b0b17329:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-7751d4c2-7bc9-4b08-9228-10b1b0b17329:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-7751d4c2-7bc9-4b08-9228-10b1b0b17329.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-774ee4ab-677a-4fa0-9b1b-2c2d6ecacca0 {
  text-align: center;
}




  #s-774ee4ab-677a-4fa0-9b1b-2c2d6ecacca0 img.shogun-image {
    
    width: px;
  }


#s-774ee4ab-677a-4fa0-9b1b-2c2d6ecacca0 .shogun-image-content {
  
    align-items: center;
  
}

#s-d5fa285b-3212-4ee8-b132-80823fa9c7fb {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d5fa285b-3212-4ee8-b132-80823fa9c7fb .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: Lato;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-14a65c4a-a5ca-40f1-b7cf-b1926e502554 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: #252525;
text-decoration: none;
}
#s-14a65c4a-a5ca-40f1-b7cf-b1926e502554:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-14a65c4a-a5ca-40f1-b7cf-b1926e502554:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-14a65c4a-a5ca-40f1-b7cf-b1926e502554.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-bebd9e6f-2d72-4670-bec8-77bb1fa29bdb {
  margin-top: 20px;
margin-bottom: 20px;
min-height: 50px;
}








#s-bebd9e6f-2d72-4670-bec8-77bb1fa29bdb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bebd9e6f-2d72-4670-bec8-77bb1fa29bdb.shg-box.shg-c {
  justify-content: center;
}

#s-54d85cc6-eec5-4853-a399-7693335ab925 {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-bottom: 20px;
max-width: 1200px;
}

@media (min-width: 0px) {
[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 22.5px);
}

[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 22.5px);
}

[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 22.5px);
}

[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 22.5px);
}

[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 22.5px);
}

[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 22.5px);
}

[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 22.5px);
}

[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 22.5px);
}

[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 22.5px);
}

[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 22.5px);
}

[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 22.5px);
}

[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 22.5px);
}

[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 22.5px);
}

[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 22.5px);
}

[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 22.5px);
}

[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 22.5px);
}

[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 22.5px);
}

[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 22.5px);
}

[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 22.5px);
}

[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 22.5px);
}

[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 22.5px);
}

[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 22.5px);
}

[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 22.5px);
}

[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 22.5px);
}

[id="s-54d85cc6-eec5-4853-a399-7693335ab925"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 22.5px);
}

}

#s-8f43f7fe-29da-47ce-a270-a71557293463 {
  text-align: center;
}




  #s-8f43f7fe-29da-47ce-a270-a71557293463 img.shogun-image {
    
    width: px;
  }


#s-8f43f7fe-29da-47ce-a270-a71557293463 .shogun-image-content {
  
    align-items: center;
  
}

#s-9dd12618-7e17-49f0-8b72-b929a99305a6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9dd12618-7e17-49f0-8b72-b929a99305a6 .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: Lato;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-624bc940-038f-4200-a833-387efaf652a1 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: #252525;
text-decoration: none;
}
#s-624bc940-038f-4200-a833-387efaf652a1:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-624bc940-038f-4200-a833-387efaf652a1:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-624bc940-038f-4200-a833-387efaf652a1.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-1a9d92c2-d94d-48b1-b5a7-f0e7d585fee6 {
  text-align: center;
}




  #s-1a9d92c2-d94d-48b1-b5a7-f0e7d585fee6 img.shogun-image {
    
    width: px;
  }


#s-1a9d92c2-d94d-48b1-b5a7-f0e7d585fee6 .shogun-image-content {
  
    align-items: center;
  
}

#s-90b0de89-53e0-49ed-9f72-c7a8a7ecb10e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-90b0de89-53e0-49ed-9f72-c7a8a7ecb10e .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: Lato;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-d40f6405-4928-44a9-8030-a3978c1e1e43 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: #252525;
text-decoration: none;
}
#s-d40f6405-4928-44a9-8030-a3978c1e1e43:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-d40f6405-4928-44a9-8030-a3978c1e1e43:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-d40f6405-4928-44a9-8030-a3978c1e1e43.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-377ebe29-5477-4808-9ad4-4a3037cec4ce {
  text-align: center;
}




  #s-377ebe29-5477-4808-9ad4-4a3037cec4ce img.shogun-image {
    
    width: px;
  }


#s-377ebe29-5477-4808-9ad4-4a3037cec4ce .shogun-image-content {
  
    align-items: center;
  
}

#s-8f7f545c-c954-4d1c-8963-d7a38c157049 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8f7f545c-c954-4d1c-8963-d7a38c157049 .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: Lato;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-1b2c2e77-8e7f-40aa-aaf9-d33cda66ff1d {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: #252525;
text-decoration: none;
}
#s-1b2c2e77-8e7f-40aa-aaf9-d33cda66ff1d:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-1b2c2e77-8e7f-40aa-aaf9-d33cda66ff1d:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-1b2c2e77-8e7f-40aa-aaf9-d33cda66ff1d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-3cc3c2e6-40b6-42c7-8054-aa9f86abfa7e {
  text-align: center;
}




  #s-3cc3c2e6-40b6-42c7-8054-aa9f86abfa7e img.shogun-image {
    
    width: px;
  }


#s-3cc3c2e6-40b6-42c7-8054-aa9f86abfa7e .shogun-image-content {
  
    align-items: center;
  
}

#s-2f2251ae-a377-4f97-8820-d9ca3d2da87f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2f2251ae-a377-4f97-8820-d9ca3d2da87f .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: Lato;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-e5e113a5-bbc1-4aab-b14d-67b098fc5d82 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: #252525;
text-decoration: none;
}
#s-e5e113a5-bbc1-4aab-b14d-67b098fc5d82:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e5e113a5-bbc1-4aab-b14d-67b098fc5d82:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-e5e113a5-bbc1-4aab-b14d-67b098fc5d82.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-53a2e99b-3f78-4987-8dcf-11daa65b373e {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
min-height: 50px;
max-width: 1200px;
}








#s-53a2e99b-3f78-4987-8dcf-11daa65b373e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-53a2e99b-3f78-4987-8dcf-11daa65b373e.shg-box.shg-c {
  justify-content: center;
}

#s-93f5387b-f321-42a7-9ce4-c51fdebd09af {
  padding-top: 20px;
padding-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 22.5px);
}

[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 22.5px);
}

[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 22.5px);
}

[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 22.5px);
}

[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 22.5px);
}

[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 22.5px);
}

[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 22.5px);
}

[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 22.5px);
}

[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 22.5px);
}

[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 22.5px);
}

[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 22.5px);
}

[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 22.5px);
}

[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 22.5px);
}

[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 22.5px);
}

[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 22.5px);
}

[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 22.5px);
}

[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 22.5px);
}

[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 22.5px);
}

[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 22.5px);
}

[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 22.5px);
}

[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 22.5px);
}

[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 22.5px);
}

[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 22.5px);
}

[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 22.5px);
}

[id="s-93f5387b-f321-42a7-9ce4-c51fdebd09af"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 22.5px);
}

}

#s-cc6705bc-9f67-49ac-8af6-511e31f59414 {
  text-align: center;
}




  #s-cc6705bc-9f67-49ac-8af6-511e31f59414 img.shogun-image {
    
    width: px;
  }


#s-cc6705bc-9f67-49ac-8af6-511e31f59414 .shogun-image-content {
  
    align-items: center;
  
}

#s-ac61802e-a7c4-49a8-a3bb-8a0a9c5ac782 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ac61802e-a7c4-49a8-a3bb-8a0a9c5ac782 .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: Lato;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-3a5d9422-717b-45b8-8dc6-75279d0288ff {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: #252525;
text-decoration: none;
}
#s-3a5d9422-717b-45b8-8dc6-75279d0288ff:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-3a5d9422-717b-45b8-8dc6-75279d0288ff:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-3a5d9422-717b-45b8-8dc6-75279d0288ff.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-5868b140-a525-487a-af35-95904ab49228 {
  text-align: center;
}




  #s-5868b140-a525-487a-af35-95904ab49228 img.shogun-image {
    
    width: px;
  }


#s-5868b140-a525-487a-af35-95904ab49228 .shogun-image-content {
  
    align-items: center;
  
}

#s-1af259d9-29a0-42b6-9397-b9cac7256e64 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1af259d9-29a0-42b6-9397-b9cac7256e64 .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: Lato;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-9d782393-b7d0-4328-87da-f022198848ce {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: #252525;
text-decoration: none;
}
#s-9d782393-b7d0-4328-87da-f022198848ce:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-9d782393-b7d0-4328-87da-f022198848ce:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-9d782393-b7d0-4328-87da-f022198848ce.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-367884cb-3b69-4cbe-bcf1-17336a2c3895 {
  text-align: center;
}




  #s-367884cb-3b69-4cbe-bcf1-17336a2c3895 img.shogun-image {
    
    width: px;
  }


#s-367884cb-3b69-4cbe-bcf1-17336a2c3895 .shogun-image-content {
  
    align-items: center;
  
}

#s-17efe085-a382-4475-9e47-393132a158e7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-17efe085-a382-4475-9e47-393132a158e7 .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: Lato;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-e86f7f8f-1db1-4676-9413-ebcbd097ef52 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: #252525;
text-decoration: none;
}
#s-e86f7f8f-1db1-4676-9413-ebcbd097ef52:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e86f7f8f-1db1-4676-9413-ebcbd097ef52:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-e86f7f8f-1db1-4676-9413-ebcbd097ef52.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-8859c7ae-3f31-418f-be3b-2fee1aaa3f58 {
  text-align: center;
}




  #s-8859c7ae-3f31-418f-be3b-2fee1aaa3f58 img.shogun-image {
    
    width: px;
  }


#s-8859c7ae-3f31-418f-be3b-2fee1aaa3f58 .shogun-image-content {
  
    align-items: center;
  
}

#s-2c6adda5-cc54-4483-b141-c86b91f4e19f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2c6adda5-cc54-4483-b141-c86b91f4e19f .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: Lato;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-a81163ce-dbeb-4c11-84f3-24dccae699ac {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: #252525;
text-decoration: none;
}
#s-a81163ce-dbeb-4c11-84f3-24dccae699ac:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-a81163ce-dbeb-4c11-84f3-24dccae699ac:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-a81163ce-dbeb-4c11-84f3-24dccae699ac.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-459eb48b-6a29-4033-8413-12977bf5f586 {
  padding-top: 20px;
padding-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 22.5px);
}

[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 22.5px);
}

[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 22.5px);
}

[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 22.5px);
}

[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 22.5px);
}

[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 22.5px);
}

[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 22.5px);
}

[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 22.5px);
}

[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 22.5px);
}

[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 22.5px);
}

[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 22.5px);
}

[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 22.5px);
}

[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 22.5px);
}

[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 22.5px);
}

[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 22.5px);
}

[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 22.5px);
}

[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 22.5px);
}

[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 22.5px);
}

[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 22.5px);
}

[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 22.5px);
}

[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 22.5px);
}

[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 22.5px);
}

[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 22.5px);
}

[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 22.5px);
}

[id="s-459eb48b-6a29-4033-8413-12977bf5f586"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 22.5px);
}

}

#s-4e7d93fb-c951-43e7-8f39-b11b2a91b8de {
  text-align: center;
}




  #s-4e7d93fb-c951-43e7-8f39-b11b2a91b8de img.shogun-image {
    
    width: px;
  }


#s-4e7d93fb-c951-43e7-8f39-b11b2a91b8de .shogun-image-content {
  
    align-items: center;
  
}

#s-eb7347d0-9c06-4d9a-bee5-8077b99ee570 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-eb7347d0-9c06-4d9a-bee5-8077b99ee570 .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: Lato;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-9c8f658e-9ed6-4407-8a9a-6f139f667481 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: #252525;
text-decoration: none;
}
#s-9c8f658e-9ed6-4407-8a9a-6f139f667481:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-9c8f658e-9ed6-4407-8a9a-6f139f667481:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-9c8f658e-9ed6-4407-8a9a-6f139f667481.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-b2933e86-d2ea-4bc7-a9de-6d760b0456f5 {
  text-align: center;
}




  #s-b2933e86-d2ea-4bc7-a9de-6d760b0456f5 img.shogun-image {
    
    width: px;
  }


#s-b2933e86-d2ea-4bc7-a9de-6d760b0456f5 .shogun-image-content {
  
    align-items: center;
  
}

#s-a8e4873c-dc7a-4102-86b8-896af21bcd71 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a8e4873c-dc7a-4102-86b8-896af21bcd71 .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: Lato;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-197a0c93-714b-4cb1-8330-5cba809fad2e {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: #252525;
text-decoration: none;
}
#s-197a0c93-714b-4cb1-8330-5cba809fad2e:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-197a0c93-714b-4cb1-8330-5cba809fad2e:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-197a0c93-714b-4cb1-8330-5cba809fad2e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-d7ae9bf9-b095-43cc-8f34-fbf8dd194ad3 {
  text-align: center;
}




  #s-d7ae9bf9-b095-43cc-8f34-fbf8dd194ad3 img.shogun-image {
    
    width: px;
  }


#s-d7ae9bf9-b095-43cc-8f34-fbf8dd194ad3 .shogun-image-content {
  
    align-items: center;
  
}

#s-8d0bf722-6795-4682-b3b5-44ed238255d4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8d0bf722-6795-4682-b3b5-44ed238255d4 .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: Lato;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-b76270cd-2606-46a4-a3ec-5fbaa1006160 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: #252525;
text-decoration: none;
}
#s-b76270cd-2606-46a4-a3ec-5fbaa1006160:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-b76270cd-2606-46a4-a3ec-5fbaa1006160:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-b76270cd-2606-46a4-a3ec-5fbaa1006160.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-decdbc0b-2a8c-43f4-97f8-63b8219f2b5f {
  text-align: center;
}




  #s-decdbc0b-2a8c-43f4-97f8-63b8219f2b5f img.shogun-image {
    
    width: px;
  }


#s-decdbc0b-2a8c-43f4-97f8-63b8219f2b5f .shogun-image-content {
  
    align-items: center;
  
}

#s-e7d4e209-9aa3-41a3-9c60-158c079dea53 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e7d4e209-9aa3-41a3-9c60-158c079dea53 .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: Lato;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-10258c49-1d52-448c-a389-c926d914d520 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: #252525;
text-decoration: none;
}
#s-10258c49-1d52-448c-a389-c926d914d520:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-10258c49-1d52-448c-a389-c926d914d520:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-10258c49-1d52-448c-a389-c926d914d520.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-63e72515-f4ea-44cc-aeb7-ad65a837564c {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-bottom: 20px;
max-width: 1200px;
}

@media (min-width: 0px) {
[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-63e72515-f4ea-44cc-aeb7-ad65a837564c"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-111b2d19-a1c0-404a-8298-138e238caa60 {
  margin-left: 50px;
margin-right: 50px;
text-align: center;
}




  #s-111b2d19-a1c0-404a-8298-138e238caa60 img.shogun-image {
    
    width: px;
  }


#s-111b2d19-a1c0-404a-8298-138e238caa60 .shogun-image-content {
  
    align-items: center;
  
}

#s-00faca6d-320f-4a39-85ed-13930b533f32 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-00faca6d-320f-4a39-85ed-13930b533f32 .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: Lato;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-418538ff-43cb-4f9c-b442-cf13e674e436 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: #252525;
text-decoration: none;
}
#s-418538ff-43cb-4f9c-b442-cf13e674e436:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-418538ff-43cb-4f9c-b442-cf13e674e436:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-418538ff-43cb-4f9c-b442-cf13e674e436.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-88eecd94-ca57-4832-b4a2-0ae2f0d49488 {
  margin-left: 50px;
margin-right: 50px;
text-align: center;
}




  #s-88eecd94-ca57-4832-b4a2-0ae2f0d49488 img.shogun-image {
    
    width: px;
  }


#s-88eecd94-ca57-4832-b4a2-0ae2f0d49488 .shogun-image-content {
  
    align-items: center;
  
}

#s-bdffbf3f-3374-4bcc-a6ef-1253b7d27a82 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-bdffbf3f-3374-4bcc-a6ef-1253b7d27a82 .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: Lato;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-f5bbfaee-f469-4135-9dd2-5bf934cce6cd {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: #252525;
text-decoration: none;
}
#s-f5bbfaee-f469-4135-9dd2-5bf934cce6cd:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-f5bbfaee-f469-4135-9dd2-5bf934cce6cd:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-f5bbfaee-f469-4135-9dd2-5bf934cce6cd.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-07d4046c-ad98-4532-80e1-6da0b2199320 {
  margin-left: 50px;
margin-right: 50px;
text-align: center;
}




  #s-07d4046c-ad98-4532-80e1-6da0b2199320 img.shogun-image {
    
    width: px;
  }


#s-07d4046c-ad98-4532-80e1-6da0b2199320 .shogun-image-content {
  
    align-items: center;
  
}

#s-c47cd528-81e4-4041-80f8-57fe188ac874 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c47cd528-81e4-4041-80f8-57fe188ac874 .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: Lato;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-0c4a3e03-efe4-40f9-becb-1b46badfa7e6 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: #252525;
text-decoration: none;
}
#s-0c4a3e03-efe4-40f9-becb-1b46badfa7e6:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-0c4a3e03-efe4-40f9-becb-1b46badfa7e6:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-0c4a3e03-efe4-40f9-becb-1b46badfa7e6.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-f44b5d0a-9a27-4147-b081-278c793fb4dd {
  background-repeat: no-repeat;
background-size: cover;
margin-bottom: -55px;
background-position: center center;
}








#s-f44b5d0a-9a27-4147-b081-278c793fb4dd > .shg-box-overlay {
  background-color: rgba(66, 78, 86, 1);
  opacity: 0.5;
}#s-f44b5d0a-9a27-4147-b081-278c793fb4dd.shg-box.shg-c {
  justify-content: center;
}

#s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38 {
  margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
max-width: 1200px;
}

@media (min-width: 0px) {
[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 50.0px);
}

[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 50.0px);
}

[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 50.0px);
}

[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 50.0px);
}

[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 50.0px);
}

[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 50.0px);
}

[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 50.0px);
}

[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 50.0px);
}

[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 50.0px);
}

[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 50.0px);
}

[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 50.0px);
}

[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 50.0px);
}

}

@media (min-width: 992px) {
[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 50.0px);
}

[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 50.0px);
}

[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 50.0px);
}

[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 50.0px);
}

[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 50.0px);
}

[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 50.0px);
}

[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 50.0px);
}

[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 50.0px);
}

[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 50.0px);
}

[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 50.0px);
}

[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 50.0px);
}

[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 50.0px);
}

}

@media (min-width: 1200px) {
[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 50.0px);
}

[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 50.0px);
}

[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 50.0px);
}

[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 50.0px);
}

[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 50.0px);
}

[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 50.0px);
}

[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 50.0px);
}

[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 50.0px);
}

[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 50.0px);
}

[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 50.0px);
}

[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 50.0px);
}

[id="s-4ed8f7d2-23ee-473e-bea6-9ac14c01fd38"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 50.0px);
}

}

#s-0be4a31a-45af-42fa-af12-ba2438e3a693 {
  padding-top: 40px;
padding-bottom: 20px;
text-align: center;
}

#s-0be4a31a-45af-42fa-af12-ba2438e3a693 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: Lato;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-aa03ca19-c611-4759-8b2b-b3a491d49406 {
  padding-top: 10px;
padding-bottom: 20px;
}

#s-3982dcd7-d762-4890-904b-c784dcaa0e03 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: #252525;
text-decoration: none;
}
#s-3982dcd7-d762-4890-904b-c784dcaa0e03:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-3982dcd7-d762-4890-904b-c784dcaa0e03:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-3982dcd7-d762-4890-904b-c784dcaa0e03.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

/*
  $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;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  z-index: 1;
}

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

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

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

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

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

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

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

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

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