.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-e8a8bc44-f0a2-4ebf-824c-1560083cc2f9 {
  margin-top: 2%;
margin-bottom: 2%;
min-height: 50px;
}








#s-e8a8bc44-f0a2-4ebf-824c-1560083cc2f9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e8a8bc44-f0a2-4ebf-824c-1560083cc2f9.shg-box.shg-c {
  justify-content: flex-start;
}

.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-0ae21e1b-0b14-43a3-84f8-d354723c2c60 {
  margin-left: 2%;
margin-right: 2%;
}

#s-0ae21e1b-0b14-43a3-84f8-d354723c2c60 .shogun-tabs {
  justify-content: flex-start;
}


  #s-0ae21e1b-0b14-43a3-84f8-d354723c2c60 .shogun-tabs > li > .shogun-tab-box {
    background: #fff;
    border: 1px solid #DDDDDD;
  }
  #s-0ae21e1b-0b14-43a3-84f8-d354723c2c60 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(141, 198, 63, 1);
    border: 1px solid #ddd;
  }
#s-0ae21e1b-0b14-43a3-84f8-d354723c2c60 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(112, 112, 112, 1);
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-0ae21e1b-0b14-43a3-84f8-d354723c2c60 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(255, 255, 255, 1);
}

#s-0ae21e1b-0b14-43a3-84f8-d354723c2c60 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(141, 198, 63, 1);
}

#s-0ae21e1b-0b14-43a3-84f8-d354723c2c60 .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid #ddd;
}

#s-8f70b480-a4bf-411a-9454-1da1632297b6 {
  min-height: 50px;
}








#s-8f70b480-a4bf-411a-9454-1da1632297b6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8f70b480-a4bf-411a-9454-1da1632297b6.shg-box.shg-c {
  justify-content: flex-start;
}

#s-9a22dc6e-c6e5-43bc-9491-25b7b3d1982c {
  min-height: 50px;
}








#s-9a22dc6e-c6e5-43bc-9491-25b7b3d1982c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9a22dc6e-c6e5-43bc-9491-25b7b3d1982c.shg-box.shg-c {
  justify-content: flex-start;
}

#s-8f8fb95b-08c5-40b5-b0c8-2330cd506e33 {
  min-height: 50px;
}








#s-8f8fb95b-08c5-40b5-b0c8-2330cd506e33 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8f8fb95b-08c5-40b5-b0c8-2330cd506e33.shg-box.shg-c {
  justify-content: center;
}

#s-87bd3a0b-c362-44a1-ae74-21c89882d8d5 {
  min-height: 500px;
}








#s-87bd3a0b-c362-44a1-ae74-21c89882d8d5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-87bd3a0b-c362-44a1-ae74-21c89882d8d5.shg-box.shg-c {
  justify-content: flex-start;
}

.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-49053771-6eb8-46fe-94f3-ccce628c922d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-49053771-6eb8-46fe-94f3-ccce628c922d .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 30px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-14f491c1-68ea-409a-a6c4-491e2dba03bb {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-14f491c1-68ea-409a-a6c4-491e2dba03bb .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-d73146bb-e4d7-4d5f-8297-fa8a8de8b856 {
  margin-left: auto;
margin-right: auto;
max-width: 800px;
}

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

@media (min-width: 0px) {
[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-a0b8f058-f8ba-441e-8fdf-c2efec0d9fe9"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-a7aacad6-9391-467e-87c2-b7dc8d8efc9e {
  background-repeat: no-repeat;
background-size: contain;
min-height: 500px;
background-position: center bottom;
}








#s-a7aacad6-9391-467e-87c2-b7dc8d8efc9e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a7aacad6-9391-467e-87c2-b7dc8d8efc9e.shg-box.shg-c {
  justify-content: center;
}

#s-58a022b4-611a-49b1-b50c-217158f8c2f8 {
  padding-top: 5%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
min-height: 450px;
}








#s-58a022b4-611a-49b1-b50c-217158f8c2f8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-58a022b4-611a-49b1-b50c-217158f8c2f8.shg-box.shg-c {
  justify-content: center;
}

#s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4 {
  margin-top: 1%;
margin-left: 5%;
margin-bottom: 1%;
margin-right: 5%;
}

@media (min-width: 0px) {
[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-8aa6cd21-b0d7-4d8f-9dcf-80576112f5c4"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-cover {
  -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-993798de-4eb0-46d1-abdb-d38d2c8cfadf {
  max-width: 80px;
text-align: center;
}




  #s-993798de-4eb0-46d1-abdb-d38d2c8cfadf img.shogun-image {
    
    width: px;
  }


#s-993798de-4eb0-46d1-abdb-d38d2c8cfadf .shogun-image-content {
  
    align-items: center;
  
}

#s-61cde587-6ed4-4151-9997-04b84c7fb1ac {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-61cde587-6ed4-4151-9997-04b84c7fb1ac .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-d8ac865f-531e-4336-ad0b-ba2a903714e7 {
  margin-top: 1%;
margin-left: 5%;
margin-bottom: 1%;
margin-right: 5%;
}

@media (min-width: 0px) {
[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-d8ac865f-531e-4336-ad0b-ba2a903714e7"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-4803f3e9-8f59-4a34-a4ff-2ea6b1e4f92d {
  max-width: 80px;
text-align: center;
}




  #s-4803f3e9-8f59-4a34-a4ff-2ea6b1e4f92d img.shogun-image {
    
    width: px;
  }


#s-4803f3e9-8f59-4a34-a4ff-2ea6b1e4f92d .shogun-image-content {
  
    align-items: center;
  
}

#s-43c002c8-36ce-4106-8396-09187c4210d6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-43c002c8-36ce-4106-8396-09187c4210d6 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-418dfc16-fec0-4677-9f9f-ee5ac0f1c96d {
  padding-top: 5%;
padding-bottom: 5%;
min-height: 50px;
background-color: rgba(205, 205, 205, 1);
}








#s-418dfc16-fec0-4677-9f9f-ee5ac0f1c96d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-418dfc16-fec0-4677-9f9f-ee5ac0f1c96d.shg-box.shg-c {
  justify-content: center;
}

#s-30a1d9c3-61f7-46ab-aea1-8f4d01f8925c {
  margin-top: 2%;
margin-bottom: 2%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-30a1d9c3-61f7-46ab-aea1-8f4d01f8925c .shogun-heading-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11 {
  margin-top: 2%;
margin-left: 2%;
margin-bottom: 2%;
margin-right: 2%;
}

@media (min-width: 0px) {
[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-ebcd4abc-8e19-4720-a1d8-0f7c2ef4bd11"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-7d7fb368-ae4d-4c45-80ef-fbe18dee27f0 {
  margin-top: 2%;
margin-bottom: 2%;
min-height: 50px;
}








#s-7d7fb368-ae4d-4c45-80ef-fbe18dee27f0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7d7fb368-ae4d-4c45-80ef-fbe18dee27f0.shg-box.shg-c {
  justify-content: center;
}

#s-06430bde-19fe-4456-845d-1df6163b0fc1 {
  text-align: center;
}




  #s-06430bde-19fe-4456-845d-1df6163b0fc1 img.shogun-image {
    
    width: px;
  }


#s-06430bde-19fe-4456-845d-1df6163b0fc1 .shogun-image-content {
  
    align-items: center;
  
}

#s-25ffefd7-8377-4515-b702-c1dcfd6ff3c5 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-25ffefd7-8377-4515-b702-c1dcfd6ff3c5 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-09ac07f9-46d2-4025-9be4-3cc0385b44ce {
  margin-top: 2%;
margin-bottom: 2%;
min-height: 50px;
}








#s-09ac07f9-46d2-4025-9be4-3cc0385b44ce > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-09ac07f9-46d2-4025-9be4-3cc0385b44ce.shg-box.shg-c {
  justify-content: center;
}

#s-179a3549-565a-4070-a280-580e29b72741 {
  text-align: center;
}




  #s-179a3549-565a-4070-a280-580e29b72741 img.shogun-image {
    
    width: px;
  }


#s-179a3549-565a-4070-a280-580e29b72741 .shogun-image-content {
  
    align-items: center;
  
}

#s-d228687a-067b-4911-bace-e9d664925649 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d228687a-067b-4911-bace-e9d664925649 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-0677e51c-f277-4bfb-a9b7-8dd8820060b4 {
  margin-top: 2%;
margin-bottom: 2%;
min-height: 50px;
}








#s-0677e51c-f277-4bfb-a9b7-8dd8820060b4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0677e51c-f277-4bfb-a9b7-8dd8820060b4.shg-box.shg-c {
  justify-content: center;
}

#s-55d511cf-ce8f-4295-820e-5ef403cfe59b {
  text-align: center;
}




  #s-55d511cf-ce8f-4295-820e-5ef403cfe59b img.shogun-image {
    
    width: px;
  }


#s-55d511cf-ce8f-4295-820e-5ef403cfe59b .shogun-image-content {
  
    align-items: center;
  
}

#s-fbcc08cf-083c-4a3f-b18e-72a6f7f034cd {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-fbcc08cf-083c-4a3f-b18e-72a6f7f034cd .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



@media (min-width: 0px) {
[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-be5a1f11-560b-435a-b75e-23274b8fc1ff"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-9557d5e4-d908-42e5-bd63-38786f6afd57 {
  padding-top: 5%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
min-height: 500px;
}








#s-9557d5e4-d908-42e5-bd63-38786f6afd57 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9557d5e4-d908-42e5-bd63-38786f6afd57.shg-box.shg-c {
  justify-content: center;
}

#s-319efca0-1fab-45f6-baa1-31866248af0b {
  margin-top: 2%;
margin-bottom: 2%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-319efca0-1fab-45f6-baa1-31866248af0b .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



@media (min-width: 0px) {
[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-4ed3b795-a6cb-461d-9eb1-da1ea3ee1d44"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-46f2dc7b-bad4-437f-b484-1d7170c556c1 {
  margin-left: auto;
margin-right: auto;
max-width: 80px;
text-align: center;
}




  #s-46f2dc7b-bad4-437f-b484-1d7170c556c1 img.shogun-image {
    
    width: px;
  }


#s-46f2dc7b-bad4-437f-b484-1d7170c556c1 .shogun-image-content {
  
    align-items: center;
  
}

#s-5b2cad76-c68d-4718-9a14-dc0e0a4afa8f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-5b2cad76-c68d-4718-9a14-dc0e0a4afa8f .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-a79baa93-292b-45b3-ae1d-95559fe90aa8 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-2fb520d4-a7ea-4670-9e7f-b67736102aca"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-620aee2a-6353-41a5-8f14-8475c53239f9 {
  margin-left: auto;
margin-right: auto;
max-width: 80px;
text-align: center;
}




  #s-620aee2a-6353-41a5-8f14-8475c53239f9 img.shogun-image {
    
    width: px;
  }


#s-620aee2a-6353-41a5-8f14-8475c53239f9 .shogun-image-content {
  
    align-items: center;
  
}

#s-8451d97a-3c5b-482f-908d-89c480ba1e8e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-8451d97a-3c5b-482f-908d-89c480ba1e8e .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-dedd329f-1568-4803-8427-b9db15737a93 {
  margin-left: auto;
margin-right: auto;
}

#s-2265b79a-0e1a-4819-ab9d-354d64b75d72 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 50px;
background-position: center center;
}








#s-2265b79a-0e1a-4819-ab9d-354d64b75d72 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2265b79a-0e1a-4819-ab9d-354d64b75d72.shg-box.shg-c {
  justify-content: center;
}

#s-d4432cff-9f38-4463-a676-d8d43815f97c {
  padding-top: 6%;
padding-left: 2%;
padding-bottom: 6%;
padding-right: 2%;
min-height: 50px;
background-color: rgba(207, 207, 207, 1);
}








#s-d4432cff-9f38-4463-a676-d8d43815f97c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d4432cff-9f38-4463-a676-d8d43815f97c.shg-box.shg-c {
  justify-content: center;
}

#s-7c914b49-004c-4b1c-9102-ff2a31af92f5 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7c914b49-004c-4b1c-9102-ff2a31af92f5 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 31px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-229a1d1f-e2b4-4e82-bc36-784442e3cd81 {
  margin-top: 1%;
margin-bottom: 1%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-229a1d1f-e2b4-4e82-bc36-784442e3cd81 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-cefe8c2a-8de7-482f-b8ce-31edbdfd4846 {
  min-height: 50px;
}








#s-cefe8c2a-8de7-482f-b8ce-31edbdfd4846 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cefe8c2a-8de7-482f-b8ce-31edbdfd4846.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-ae57dfb1-3c1d-4b4b-81fa-fdce54422c15"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-338aa815-5c22-4a75-9062-412e691e115b {
  text-align: center;
}




  #s-338aa815-5c22-4a75-9062-412e691e115b img.shogun-image {
    
    width: px;
  }


#s-338aa815-5c22-4a75-9062-412e691e115b .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-1f11f983-ece6-4961-abb1-b60e3e22e084"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-ab7c626d-1e47-4425-ac38-abd5defd12a6 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 50px;
background-position: center center;
}








#s-ab7c626d-1e47-4425-ac38-abd5defd12a6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ab7c626d-1e47-4425-ac38-abd5defd12a6.shg-box.shg-c {
  justify-content: center;
}

#s-ad7ec391-f856-4c77-a974-63514962e1d7 {
  padding-top: 5%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
min-height: 500px;
}








#s-ad7ec391-f856-4c77-a974-63514962e1d7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ad7ec391-f856-4c77-a974-63514962e1d7.shg-box.shg-c {
  justify-content: center;
}

#s-874f20f3-61a9-45de-9e74-5ac4455d690e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-874f20f3-61a9-45de-9e74-5ac4455d690e .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



@media (min-width: 0px) {
[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-d6e9e2d5-a036-4edb-ae77-fb5abb430705"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-5d318788-8845-4dff-8e57-d29aca9ad9d1 {
  margin-left: auto;
margin-right: auto;
max-width: 80px;
text-align: center;
}




  #s-5d318788-8845-4dff-8e57-d29aca9ad9d1 img.shogun-image {
    
    width: px;
  }


#s-5d318788-8845-4dff-8e57-d29aca9ad9d1 .shogun-image-content {
  
    align-items: center;
  
}

#s-3bfeebb2-800b-4050-8f33-95c819446716 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-3bfeebb2-800b-4050-8f33-95c819446716 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-2e07dd6b-ad16-4ce5-b8cf-b5eed7b43f6b {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-27fcafd7-9def-4831-8bd6-eedf885aa126"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-8afbf339-7c7a-4529-9e8a-61f4dcdac9b8 {
  margin-left: auto;
margin-right: auto;
max-width: 80px;
text-align: center;
}




  #s-8afbf339-7c7a-4529-9e8a-61f4dcdac9b8 img.shogun-image {
    
    width: px;
  }


#s-8afbf339-7c7a-4529-9e8a-61f4dcdac9b8 .shogun-image-content {
  
    align-items: center;
  
}

#s-10f0473c-15fa-4c78-9fd0-02b673cdb50b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-10f0473c-15fa-4c78-9fd0-02b673cdb50b .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-139f64d0-865e-4ac5-b267-285a53e1c865 {
  margin-left: auto;
margin-right: auto;
}

#s-7a7500b4-a58f-4a0d-bb63-e2268403a0e1 {
  background-repeat: no-repeat;
background-size: cover;
padding-top: 2%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 0%;
min-height: 50px;
background-position: center center;
}








#s-7a7500b4-a58f-4a0d-bb63-e2268403a0e1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7a7500b4-a58f-4a0d-bb63-e2268403a0e1.shg-box.shg-c {
  justify-content: center;
}

#s-c6c2764b-3aec-46fa-98c4-c689072db758 {
  min-height: 50px;
}








#s-c6c2764b-3aec-46fa-98c4-c689072db758 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c6c2764b-3aec-46fa-98c4-c689072db758.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-7f05346c-930c-474b-8fba-c2d8b53e9c6d"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-4047aa40-5052-4267-9b13-eb8d70aa2065 {
  text-align: center;
}




  #s-4047aa40-5052-4267-9b13-eb8d70aa2065 img.shogun-image {
    
    width: px;
  }


#s-4047aa40-5052-4267-9b13-eb8d70aa2065 .shogun-image-content {
  
    align-items: center;
  
}

#s-7195dc7b-6faa-431c-bd43-25d9e3387408 {
  margin-top: 2%;
margin-left: 4%;
margin-bottom: 2%;
margin-right: 4%;
padding-top: 5%;
padding-left: 2%;
padding-bottom: 5%;
padding-right: 2%;
min-height: 50px;
background-color: rgba(141, 198, 63, 1);
}








#s-7195dc7b-6faa-431c-bd43-25d9e3387408 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7195dc7b-6faa-431c-bd43-25d9e3387408.shg-box.shg-c {
  justify-content: center;
}

#s-32e55b48-5dc6-4d28-966b-c4f204d5ebe8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-32e55b48-5dc6-4d28-966b-c4f204d5ebe8 .shogun-heading-component h2 {
  color: rgba(253, 253, 253, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 38px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-d160b3a0-239a-4e26-b9a6-b1b115de0fd0 {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
}

#s-a5dd38e9-405f-4759-8b37-0dc463af4457 {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
}

#s-b459c747-4358-472b-af3e-737a61990b86 {
  min-height: 50px;
background-color: rgba(242, 242, 242, 1);
}








#s-b459c747-4358-472b-af3e-737a61990b86 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b459c747-4358-472b-af3e-737a61990b86.shg-box.shg-c {
  justify-content: center;
}

#s-778993bb-2ee4-4745-b98e-212a31298dc2 {
  margin-top: 2%;
margin-bottom: 2%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-778993bb-2ee4-4745-b98e-212a31298dc2 .shogun-heading-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-4cc02e85-e3a2-4b40-85ca-14bd7e8666c8 {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
}

#s-ba061584-5168-44e9-86e0-394a96984228 {
  text-align: center;
}




  #s-ba061584-5168-44e9-86e0-394a96984228 img.shogun-image {
    
    width: px;
  }


#s-ba061584-5168-44e9-86e0-394a96984228 .shogun-image-content {
  
    align-items: center;
  
}

#s-38585bf1-ab7c-4177-87ad-125852650c98 {
  margin-top: 2%;
margin-left: 2%;
margin-bottom: 2%;
margin-right: 2%;
}

@media (min-width: 0px) {
[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-38585bf1-ab7c-4177-87ad-125852650c98"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-7198ebd6-2925-4b2a-a6e4-5c5f34478d90 {
  margin-top: 2%;
margin-bottom: 2%;
min-height: 50px;
}








#s-7198ebd6-2925-4b2a-a6e4-5c5f34478d90 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7198ebd6-2925-4b2a-a6e4-5c5f34478d90.shg-box.shg-c {
  justify-content: center;
}

#s-cf7be171-12b1-45ab-afc6-bc606aeb0242 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-cf7be171-12b1-45ab-afc6-bc606aeb0242 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-7cd8c453-b6e8-4cf0-a9d0-f46cc33f7031 {
  margin-top: 2%;
margin-bottom: 2%;
min-height: 50px;
}








#s-7cd8c453-b6e8-4cf0-a9d0-f46cc33f7031 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7cd8c453-b6e8-4cf0-a9d0-f46cc33f7031.shg-box.shg-c {
  justify-content: center;
}

#s-5f03963f-41ba-42b9-b1bc-7c9974c94d29 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5f03963f-41ba-42b9-b1bc-7c9974c94d29 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-31da2264-9f27-4622-923e-db64a63d62f3 {
  margin-top: 2%;
margin-bottom: 2%;
min-height: 50px;
}








#s-31da2264-9f27-4622-923e-db64a63d62f3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-31da2264-9f27-4622-923e-db64a63d62f3.shg-box.shg-c {
  justify-content: center;
}

#s-da9271ab-2a97-49c6-9570-86af3e155548 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-da9271ab-2a97-49c6-9570-86af3e155548 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



@media (min-width: 0px) {
[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-808b5103-75da-4962-81af-a3649da39be4"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-789f2bbd-b35a-44be-a28b-109eee0ab429 {
  padding-top: 5%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
min-height: 500px;
}








#s-789f2bbd-b35a-44be-a28b-109eee0ab429 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-789f2bbd-b35a-44be-a28b-109eee0ab429.shg-box.shg-c {
  justify-content: center;
}

#s-991bc6d9-5bdf-42bd-b2f0-f1bae2953862 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-991bc6d9-5bdf-42bd-b2f0-f1bae2953862 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-5ce712b3-4d91-4ed9-ad65-7cd47b3f639d {
  min-height: 50px;
}








#s-5ce712b3-4d91-4ed9-ad65-7cd47b3f639d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5ce712b3-4d91-4ed9-ad65-7cd47b3f639d.shg-box.shg-c {
  justify-content: center;
}

#s-7b4b95cf-3bcc-4e56-b839-4ad0f17f5a63 {
  margin-top: 3%;
margin-left: auto;
margin-bottom: 3%;
margin-right: auto;
max-width: 80px;
text-align: center;
}




  #s-7b4b95cf-3bcc-4e56-b839-4ad0f17f5a63 img.shogun-image {
    
    width: px;
  }


#s-7b4b95cf-3bcc-4e56-b839-4ad0f17f5a63 .shogun-image-content {
  
    align-items: center;
  
}

#s-29877944-9dc5-4d94-834c-fb8163673658 {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
}

#s-cd86b092-66b9-41f2-b4eb-3b3cb1c5a698 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 50px;
background-position: center center;
}








#s-cd86b092-66b9-41f2-b4eb-3b3cb1c5a698 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cd86b092-66b9-41f2-b4eb-3b3cb1c5a698.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-608cccc8-feaa-4047-87f2-df4f7c031cfc"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-cdbd035e-e1df-41ec-b4eb-10f99122a295 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 50px;
background-position: right center;
}








#s-cdbd035e-e1df-41ec-b4eb-10f99122a295 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cdbd035e-e1df-41ec-b4eb-10f99122a295.shg-box.shg-c {
  justify-content: center;
}

#s-fffc4dc6-3005-4753-81f5-ea8d5f5386d7 {
  padding-top: 5%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
min-height: 500px;
}








#s-fffc4dc6-3005-4753-81f5-ea8d5f5386d7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fffc4dc6-3005-4753-81f5-ea8d5f5386d7.shg-box.shg-c {
  justify-content: center;
}

#s-9e654470-d7f1-4b44-a8a1-c438e30966a1 {
  min-height: 50px;
}








#s-9e654470-d7f1-4b44-a8a1-c438e30966a1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9e654470-d7f1-4b44-a8a1-c438e30966a1.shg-box.shg-c {
  justify-content: center;
}

#s-e65d7517-a200-481f-a3a2-3f86b69790ea {
  margin-left: auto;
margin-right: auto;
max-width: 80px;
text-align: center;
}




  #s-e65d7517-a200-481f-a3a2-3f86b69790ea img.shogun-image {
    
    width: px;
  }


#s-e65d7517-a200-481f-a3a2-3f86b69790ea .shogun-image-content {
  
    align-items: center;
  
}

#s-5c18036e-d092-4ec3-baf5-fbc9aebe6ac2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5c18036e-d092-4ec3-baf5-fbc9aebe6ac2 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-2b86a689-52d9-4609-969a-4adf0d84ed5c {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
}

@media (min-width: 0px) {
[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-a9dde5ef-c70c-42aa-810a-02a944b9f25a"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-56c1928e-2125-4b39-868a-96198c22e360 {
  padding-top: 5%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
min-height: 500px;
}








#s-56c1928e-2125-4b39-868a-96198c22e360 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-56c1928e-2125-4b39-868a-96198c22e360.shg-box.shg-c {
  justify-content: center;
}

#s-7ee8f32e-d01c-4c1d-9116-b277a5c2e5a1 {
  min-height: 50px;
}








#s-7ee8f32e-d01c-4c1d-9116-b277a5c2e5a1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7ee8f32e-d01c-4c1d-9116-b277a5c2e5a1.shg-box.shg-c {
  justify-content: center;
}

#s-c6ff5a5e-e5c4-4c8d-9ce3-6390e128b984 {
  margin-left: auto;
margin-right: auto;
max-width: 80px;
text-align: center;
}




  #s-c6ff5a5e-e5c4-4c8d-9ce3-6390e128b984 img.shogun-image {
    
    width: px;
  }


#s-c6ff5a5e-e5c4-4c8d-9ce3-6390e128b984 .shogun-image-content {
  
    align-items: center;
  
}

#s-68ab7daf-6069-4cbe-a204-52cb40272936 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-68ab7daf-6069-4cbe-a204-52cb40272936 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-f28f1852-d6b6-4121-8e8c-552f4bd8777d {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
}

#s-6afcf13d-fd2d-47df-ad85-d7a3bb7c9438 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 50px;
background-position: center center;
}








#s-6afcf13d-fd2d-47df-ad85-d7a3bb7c9438 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6afcf13d-fd2d-47df-ad85-d7a3bb7c9438.shg-box.shg-c {
  justify-content: center;
}

#s-260d681b-5d2e-4397-a2ee-d4803218fcb3 {
  margin-top: 0%;
margin-bottom: 0%;
padding-top: 5%;
padding-bottom: 5%;
min-height: 50px;
background-color: rgba(238, 238, 238, 1);
}








#s-260d681b-5d2e-4397-a2ee-d4803218fcb3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-260d681b-5d2e-4397-a2ee-d4803218fcb3.shg-box.shg-c {
  justify-content: center;
}

#s-5c3ee9bb-1ce1-4ce6-82ba-183e9443bc8c {
  margin-top: 2%;
margin-bottom: 2%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5c3ee9bb-1ce1-4ce6-82ba-183e9443bc8c .shogun-heading-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4 {
  margin-top: 2%;
margin-left: 2%;
margin-bottom: 2%;
margin-right: 2%;
}

@media (min-width: 0px) {
[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-bbd38dde-7719-4d71-a91a-c3ee8e0660e4"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-9db68a1e-0edc-4d79-a587-7f6490de8dd0 {
  margin-top: 2%;
margin-bottom: 2%;
min-height: 50px;
}








#s-9db68a1e-0edc-4d79-a587-7f6490de8dd0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9db68a1e-0edc-4d79-a587-7f6490de8dd0.shg-box.shg-c {
  justify-content: center;
}

#s-10ef6606-4534-49fb-9af7-803776dbfb33 {
  text-align: center;
}




  #s-10ef6606-4534-49fb-9af7-803776dbfb33 img.shogun-image {
    
    width: px;
  }


#s-10ef6606-4534-49fb-9af7-803776dbfb33 .shogun-image-content {
  
    align-items: center;
  
}

#s-2d319429-fb6d-4e08-b7f2-a223f8c591ba {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2d319429-fb6d-4e08-b7f2-a223f8c591ba .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-1a6de175-40e4-445a-9191-c19a962a280e {
  margin-top: 2%;
margin-bottom: 2%;
min-height: 50px;
}








#s-1a6de175-40e4-445a-9191-c19a962a280e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1a6de175-40e4-445a-9191-c19a962a280e.shg-box.shg-c {
  justify-content: center;
}

#s-bd7ef841-3b93-4d6f-96aa-3df4092899bc {
  text-align: center;
}




  #s-bd7ef841-3b93-4d6f-96aa-3df4092899bc img.shogun-image {
    
    width: px;
  }


#s-bd7ef841-3b93-4d6f-96aa-3df4092899bc .shogun-image-content {
  
    align-items: center;
  
}

#s-5c054883-7afb-4ff9-8c11-20e4dac50288 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5c054883-7afb-4ff9-8c11-20e4dac50288 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-3e0afe48-9e17-4c00-b2ea-c532dd99a571 {
  margin-top: 2%;
margin-bottom: 2%;
min-height: 50px;
}








#s-3e0afe48-9e17-4c00-b2ea-c532dd99a571 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3e0afe48-9e17-4c00-b2ea-c532dd99a571.shg-box.shg-c {
  justify-content: center;
}

#s-0072e732-cb4b-44ed-968b-ee69be1848d2 {
  text-align: center;
}




  #s-0072e732-cb4b-44ed-968b-ee69be1848d2 img.shogun-image {
    
    width: px;
  }


#s-0072e732-cb4b-44ed-968b-ee69be1848d2 .shogun-image-content {
  
    align-items: center;
  
}

#s-b49b906f-6413-47f0-a86c-8804ce35e838 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b49b906f-6413-47f0-a86c-8804ce35e838 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-3ae84b6a-635e-4fb7-9c58-cfbbcc2318f6 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iMTk0MzA2ZGYtODcwYy00Mjg5LTk4ZjQtYWE3MjZjYTUyYjU1IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwLjA1NTYiIHN0eWxlPSJzdG9wLWNvbG9yOiNiZWJlYmU7c3RvcC1vcGFjaXR5OjEiLz48c3RvcCBvZmZzZXQ9IjAuNTA1IiBzdHlsZT0ic3RvcC1jb2xvcjojZmRmZGZkO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxLjAwIiBzdHlsZT0ic3RvcC1jb2xvcjojYjNiM2IzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCMxOTQzMDZkZi04NzBjLTQyODktOThmNC1hYTcyNmNhNTJiNTUpIi8+PC9zdmc+);
background-repeat: no-repeat;
padding-left: 3%;
padding-right: 3%;
min-height: 450px;
}








#s-3ae84b6a-635e-4fb7-9c58-cfbbcc2318f6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3ae84b6a-635e-4fb7-9c58-cfbbcc2318f6.shg-box.shg-c {
  justify-content: center;
}

#s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e {
  margin-top: 2%;
margin-left: auto;
margin-bottom: 2%;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-cc46b97e-d9e2-4fdb-894f-ff9ae1bacf8e"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-06ccef83-2a4b-439e-bf10-0e505986294c {
  margin-top: 2%;
margin-bottom: 2%;
min-height: 300px;
}








#s-06ccef83-2a4b-439e-bf10-0e505986294c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-06ccef83-2a4b-439e-bf10-0e505986294c.shg-box.shg-c {
  justify-content: center;
}

#s-b5c0aaab-8fd4-4ac4-ab53-d5af1568ade4 {
  margin-left: auto;
margin-right: auto;
padding-left: 2%;
padding-right: 2%;
max-width: 400px;
text-align: center;
}

#s-fa7a6eba-2edd-4440-ab6b-f3c2909bf1de {
  margin-top: 2%;
margin-bottom: 2%;
min-height: 300px;
}








#s-fa7a6eba-2edd-4440-ab6b-f3c2909bf1de > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fa7a6eba-2edd-4440-ab6b-f3c2909bf1de.shg-box.shg-c {
  justify-content: center;
}

#s-1287c3bf-6ace-4fcc-88c9-1bf981336702 {
  margin-top: 2%;
margin-bottom: 2%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-1287c3bf-6ace-4fcc-88c9-1bf981336702 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 27px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-ef4e1fb2-46b2-4e30-a8cf-71966914054c {
  min-height: 50px;
}








#s-ef4e1fb2-46b2-4e30-a8cf-71966914054c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ef4e1fb2-46b2-4e30-a8cf-71966914054c.shg-box.shg-c {
  justify-content: flex-start;
}

@media (min-width: 0px) {
[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-a667381e-f701-4ae7-8c4f-c1ccdde86485"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-a434ae46-bf46-432d-a75f-700fffba8a6f {
  margin-top: 2%;
margin-bottom: 2%;
min-height: 50px;
}








#s-a434ae46-bf46-432d-a75f-700fffba8a6f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a434ae46-bf46-432d-a75f-700fffba8a6f.shg-box.shg-c {
  justify-content: flex-start;
}

#s-5d02d584-9e95-4120-b6ed-48b44ec68281 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5d02d584-9e95-4120-b6ed-48b44ec68281 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-021bdc0a-6aa5-4c0a-bec4-d87c936e48c7 {
  margin-top: 2%;
margin-bottom: 2%;
min-height: 50px;
}








#s-021bdc0a-6aa5-4c0a-bec4-d87c936e48c7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-021bdc0a-6aa5-4c0a-bec4-d87c936e48c7.shg-box.shg-c {
  justify-content: flex-start;
}

#s-b543ad08-96b1-4bdb-99e4-a032765668d3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b543ad08-96b1-4bdb-99e4-a032765668d3 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-12979c9c-a888-4594-bc5f-d119ea9e4ef5 {
  min-height: 50px;
}








#s-12979c9c-a888-4594-bc5f-d119ea9e4ef5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-12979c9c-a888-4594-bc5f-d119ea9e4ef5.shg-box.shg-c {
  justify-content: flex-start;
}

#s-f5c44ec0-8acc-4014-b26c-9710f5d36484 {
  margin-top: 0%;
margin-bottom: 0%;
}

@media (min-width: 0px) {
[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 6.666666666666667px);
}

[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 6.666666666666667px);
}

[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 6.666666666666667px);
}

[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 6.666666666666667px);
}

[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 6.666666666666667px);
}

[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 6.666666666666667px);
}

[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 6.666666666666667px);
}

[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 6.666666666666667px);
}

[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 6.666666666666667px);
}

[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 6.666666666666667px);
}

[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 6.666666666666667px);
}

[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 6.666666666666667px);
}

[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 6.666666666666667px);
}

[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 6.666666666666667px);
}

[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 6.666666666666667px);
}

[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 6.666666666666667px);
}

[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 6.666666666666667px);
}

[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 6.666666666666667px);
}

[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 6.666666666666667px);
}

[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 6.666666666666667px);
}

[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 6.666666666666667px);
}

[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 6.666666666666667px);
}

[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 6.666666666666667px);
}

[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 6.666666666666667px);
}

[id="s-f5c44ec0-8acc-4014-b26c-9710f5d36484"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 6.666666666666667px);
}

}

#s-1ae232a2-b3f6-403c-9115-5abf02d28773 {
  border-style: solid;
margin-top: 2%;
margin-left: auto;
margin-bottom: 2%;
margin-right: auto;
padding-top: 0%;
padding-left: 2%;
padding-bottom: 0%;
padding-right: 2%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0.35);
max-width: 400px;
text-align: center;
}

#s-1ae232a2-b3f6-403c-9115-5abf02d28773 {
  display: none;
}
.shg-product-image-wrapper img.shogun-image,
.shogun-component img.shogun-image {
  display: inline-block;
  vertical-align: middle;
}

.shg-product-image-wrapper img.shogun-image {
  width: 100%;
}

.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;
  width: 100%;
  height: 100%;
  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-c89e6bae-7e98-4744-944f-337660c5d386 {
  text-align: center;
}


.shg-c#s-c89e6bae-7e98-4744-944f-337660c5d386 {
  max-width: 100%;
}

.shg-c#s-c89e6bae-7e98-4744-944f-337660c5d386 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c89e6bae-7e98-4744-944f-337660c5d386 .shg-image-zoom,
.shg-c#s-c89e6bae-7e98-4744-944f-337660c5d386 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-c89e6bae-7e98-4744-944f-337660c5d386 .shg-image-zoom {
  
    margin: 0 auto;
  
}

@media (min-width: 1200px){
.shg-c#s-c89e6bae-7e98-4744-944f-337660c5d386 {
  max-width: 100%;
}

.shg-c#s-c89e6bae-7e98-4744-944f-337660c5d386 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c89e6bae-7e98-4744-944f-337660c5d386 .shg-image-zoom,
.shg-c#s-c89e6bae-7e98-4744-944f-337660c5d386 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-c89e6bae-7e98-4744-944f-337660c5d386 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-c89e6bae-7e98-4744-944f-337660c5d386 {
  max-width: 100%;
}

.shg-c#s-c89e6bae-7e98-4744-944f-337660c5d386 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c89e6bae-7e98-4744-944f-337660c5d386 .shg-image-zoom,
.shg-c#s-c89e6bae-7e98-4744-944f-337660c5d386 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-c89e6bae-7e98-4744-944f-337660c5d386 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-c89e6bae-7e98-4744-944f-337660c5d386 {
  max-width: 100%;
}

.shg-c#s-c89e6bae-7e98-4744-944f-337660c5d386 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c89e6bae-7e98-4744-944f-337660c5d386 .shg-image-zoom,
.shg-c#s-c89e6bae-7e98-4744-944f-337660c5d386 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-c89e6bae-7e98-4744-944f-337660c5d386 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (max-width: 767px){
.shg-c#s-c89e6bae-7e98-4744-944f-337660c5d386 {
  max-width: 100%;
}

.shg-c#s-c89e6bae-7e98-4744-944f-337660c5d386 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c89e6bae-7e98-4744-944f-337660c5d386 .shg-image-zoom,
.shg-c#s-c89e6bae-7e98-4744-944f-337660c5d386 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-c89e6bae-7e98-4744-944f-337660c5d386 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}
.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: #000;
  text-transform: none;
  font-weight: normal;
  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-55f3c3ad-cdc7-415e-8ee9-1e1686b27a70 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-55f3c3ad-cdc7-415e-8ee9-1e1686b27a70 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
}

#s-695c98e5-64a0-476a-a42f-0080b27be0e4 {
  text-align: center;
}

#s-695c98e5-64a0-476a-a42f-0080b27be0e4 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 16px;
}

#s-695c98e5-64a0-476a-a42f-0080b27be0e4 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
}

#s-695c98e5-64a0-476a-a42f-0080b27be0e4 .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
.shg-btn.shg-cse, .shg-btn.shg-cse:hover, .shg-btn.shg-cse:focus {
  color: #FFF;
}

.shg-product-atc-wrapper {
  position: relative;
}

.shg-product-atc-btn {
  position: relative;
  z-index: 2;
  display: block;
  border: none;
  align-items: normal;
  box-sizing: border-box;
  cursor: pointer;
  transition: opacity 200ms linear;
  opacity: 1;
}

.shg-product-atc-btn-opaque {
  opacity: 0;
}

.shg-product-atc-info-box {
  position: absolute;
  z-index: 1;
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  text-align: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

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

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

#s-fc225c5f-cf7a-4fcd-9c5f-5e0ff4ca2b9d {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: rgba(37, 37, 37, 0.44);
}
#s-fc225c5f-cf7a-4fcd-9c5f-5e0ff4ca2b9d:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-fc225c5f-cf7a-4fcd-9c5f-5e0ff4ca2b9d:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-fc225c5f-cf7a-4fcd-9c5f-5e0ff4ca2b9d {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-fc225c5f-cf7a-4fcd-9c5f-5e0ff4ca2b9d.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-fc225c5f-cf7a-4fcd-9c5f-5e0ff4ca2b9d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-fc225c5f-cf7a-4fcd-9c5f-5e0ff4ca2b9d.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-fc225c5f-cf7a-4fcd-9c5f-5e0ff4ca2b9d.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-7a6c83e3-8508-42d6-97dd-34a3652f1b34 {
  border-style: solid;
margin-top: 2%;
margin-left: auto;
margin-bottom: 2%;
margin-right: auto;
padding-top: 0%;
padding-left: 2%;
padding-bottom: 0%;
padding-right: 2%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0.35);
max-width: 400px;
text-align: center;
}

#s-7a6c83e3-8508-42d6-97dd-34a3652f1b34 {
  display: none;
}
#s-c15cd56c-935d-4a1f-86a0-d4157f735fbd {
  text-align: center;
}


.shg-c#s-c15cd56c-935d-4a1f-86a0-d4157f735fbd {
  max-width: 100%;
}

.shg-c#s-c15cd56c-935d-4a1f-86a0-d4157f735fbd img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c15cd56c-935d-4a1f-86a0-d4157f735fbd .shg-image-zoom,
.shg-c#s-c15cd56c-935d-4a1f-86a0-d4157f735fbd img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-c15cd56c-935d-4a1f-86a0-d4157f735fbd .shg-image-zoom {
  
    margin: 0 auto;
  
}

@media (min-width: 1200px){
.shg-c#s-c15cd56c-935d-4a1f-86a0-d4157f735fbd {
  max-width: 100%;
}

.shg-c#s-c15cd56c-935d-4a1f-86a0-d4157f735fbd img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c15cd56c-935d-4a1f-86a0-d4157f735fbd .shg-image-zoom,
.shg-c#s-c15cd56c-935d-4a1f-86a0-d4157f735fbd img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-c15cd56c-935d-4a1f-86a0-d4157f735fbd .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-c15cd56c-935d-4a1f-86a0-d4157f735fbd {
  max-width: 100%;
}

.shg-c#s-c15cd56c-935d-4a1f-86a0-d4157f735fbd img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c15cd56c-935d-4a1f-86a0-d4157f735fbd .shg-image-zoom,
.shg-c#s-c15cd56c-935d-4a1f-86a0-d4157f735fbd img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-c15cd56c-935d-4a1f-86a0-d4157f735fbd .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-c15cd56c-935d-4a1f-86a0-d4157f735fbd {
  max-width: 100%;
}

.shg-c#s-c15cd56c-935d-4a1f-86a0-d4157f735fbd img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c15cd56c-935d-4a1f-86a0-d4157f735fbd .shg-image-zoom,
.shg-c#s-c15cd56c-935d-4a1f-86a0-d4157f735fbd img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-c15cd56c-935d-4a1f-86a0-d4157f735fbd .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (max-width: 767px){
.shg-c#s-c15cd56c-935d-4a1f-86a0-d4157f735fbd {
  max-width: 100%;
}

.shg-c#s-c15cd56c-935d-4a1f-86a0-d4157f735fbd img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c15cd56c-935d-4a1f-86a0-d4157f735fbd .shg-image-zoom,
.shg-c#s-c15cd56c-935d-4a1f-86a0-d4157f735fbd img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-c15cd56c-935d-4a1f-86a0-d4157f735fbd .shg-image-zoom {
  
    margin: 0 auto;
  
}

}
#s-35f87316-1a10-409e-9825-422000918a3a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-35f87316-1a10-409e-9825-422000918a3a .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
}

#s-a9e8192b-3879-4aaa-8907-7b915e13a5dd {
  text-align: center;
}

#s-a9e8192b-3879-4aaa-8907-7b915e13a5dd .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 16px;
}

#s-a9e8192b-3879-4aaa-8907-7b915e13a5dd .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
}

#s-a9e8192b-3879-4aaa-8907-7b915e13a5dd .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
#s-8649e089-5ac7-4ba8-a417-1181b667b03e {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: rgba(37, 37, 37, 0.44);
}
#s-8649e089-5ac7-4ba8-a417-1181b667b03e:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-8649e089-5ac7-4ba8-a417-1181b667b03e:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-8649e089-5ac7-4ba8-a417-1181b667b03e {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-8649e089-5ac7-4ba8-a417-1181b667b03e.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-8649e089-5ac7-4ba8-a417-1181b667b03e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-8649e089-5ac7-4ba8-a417-1181b667b03e.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-8649e089-5ac7-4ba8-a417-1181b667b03e.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-6c4a7cb3-f841-43ca-9c8b-7046b5cc695c {
  border-style: solid;
margin-top: 2%;
margin-left: auto;
margin-bottom: 2%;
margin-right: auto;
padding-top: 0%;
padding-left: 2%;
padding-bottom: 0%;
padding-right: 2%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0.35);
max-width: 400px;
text-align: center;
}

#s-6c4a7cb3-f841-43ca-9c8b-7046b5cc695c {
  display: none;
}
#s-1136eba2-1e34-471d-9464-edd787597e0c {
  text-align: center;
}


.shg-c#s-1136eba2-1e34-471d-9464-edd787597e0c {
  max-width: 100%;
}

.shg-c#s-1136eba2-1e34-471d-9464-edd787597e0c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1136eba2-1e34-471d-9464-edd787597e0c .shg-image-zoom,
.shg-c#s-1136eba2-1e34-471d-9464-edd787597e0c img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-1136eba2-1e34-471d-9464-edd787597e0c .shg-image-zoom {
  
    margin: 0 auto;
  
}

@media (min-width: 1200px){
.shg-c#s-1136eba2-1e34-471d-9464-edd787597e0c {
  max-width: 100%;
}

.shg-c#s-1136eba2-1e34-471d-9464-edd787597e0c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1136eba2-1e34-471d-9464-edd787597e0c .shg-image-zoom,
.shg-c#s-1136eba2-1e34-471d-9464-edd787597e0c img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-1136eba2-1e34-471d-9464-edd787597e0c .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-1136eba2-1e34-471d-9464-edd787597e0c {
  max-width: 100%;
}

.shg-c#s-1136eba2-1e34-471d-9464-edd787597e0c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1136eba2-1e34-471d-9464-edd787597e0c .shg-image-zoom,
.shg-c#s-1136eba2-1e34-471d-9464-edd787597e0c img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-1136eba2-1e34-471d-9464-edd787597e0c .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-1136eba2-1e34-471d-9464-edd787597e0c {
  max-width: 100%;
}

.shg-c#s-1136eba2-1e34-471d-9464-edd787597e0c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1136eba2-1e34-471d-9464-edd787597e0c .shg-image-zoom,
.shg-c#s-1136eba2-1e34-471d-9464-edd787597e0c img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-1136eba2-1e34-471d-9464-edd787597e0c .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (max-width: 767px){
.shg-c#s-1136eba2-1e34-471d-9464-edd787597e0c {
  max-width: 100%;
}

.shg-c#s-1136eba2-1e34-471d-9464-edd787597e0c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1136eba2-1e34-471d-9464-edd787597e0c .shg-image-zoom,
.shg-c#s-1136eba2-1e34-471d-9464-edd787597e0c img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-1136eba2-1e34-471d-9464-edd787597e0c .shg-image-zoom {
  
    margin: 0 auto;
  
}

}
#s-91ed97d8-2328-4905-b0ce-878ae8203323 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-91ed97d8-2328-4905-b0ce-878ae8203323 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
}

#s-9e9da1ee-8f6c-49aa-87d8-0148bb56fdcf {
  text-align: center;
}

#s-9e9da1ee-8f6c-49aa-87d8-0148bb56fdcf .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 16px;
}

#s-9e9da1ee-8f6c-49aa-87d8-0148bb56fdcf .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
}

#s-9e9da1ee-8f6c-49aa-87d8-0148bb56fdcf .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
#s-5a958953-ece0-4c12-a48d-c605fe2f9b10 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: rgba(37, 37, 37, 0.44);
}
#s-5a958953-ece0-4c12-a48d-c605fe2f9b10:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-5a958953-ece0-4c12-a48d-c605fe2f9b10:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-5a958953-ece0-4c12-a48d-c605fe2f9b10 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-5a958953-ece0-4c12-a48d-c605fe2f9b10.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-5a958953-ece0-4c12-a48d-c605fe2f9b10.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-5a958953-ece0-4c12-a48d-c605fe2f9b10.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-5a958953-ece0-4c12-a48d-c605fe2f9b10.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


@media (min-width: 0px) {
[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 6.666666666666667px);
}

[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 6.666666666666667px);
}

[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 6.666666666666667px);
}

[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 6.666666666666667px);
}

[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 6.666666666666667px);
}

[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 6.666666666666667px);
}

[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 6.666666666666667px);
}

[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 6.666666666666667px);
}

[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 6.666666666666667px);
}

[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 6.666666666666667px);
}

[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 6.666666666666667px);
}

[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 6.666666666666667px);
}

[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 6.666666666666667px);
}

[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 6.666666666666667px);
}

[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 6.666666666666667px);
}

[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 6.666666666666667px);
}

[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 6.666666666666667px);
}

[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 6.666666666666667px);
}

[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 6.666666666666667px);
}

[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 6.666666666666667px);
}

[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 6.666666666666667px);
}

[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 6.666666666666667px);
}

[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 6.666666666666667px);
}

[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 6.666666666666667px);
}

[id="s-5712aa92-e618-42cc-8d83-d71af886ec1d"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 6.666666666666667px);
}

}

#s-3c3c306f-1514-4583-a657-07109cd1daca {
  border-style: solid;
margin-top: 2%;
margin-left: auto;
margin-bottom: 2%;
margin-right: auto;
padding-top: 0%;
padding-left: 2%;
padding-bottom: 0%;
padding-right: 2%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0.35);
max-width: 400px;
text-align: center;
}

#s-3c3c306f-1514-4583-a657-07109cd1daca {
  display: none;
}
#s-4fef2bb1-77d0-458e-bfd6-f1e723621e60 {
  text-align: center;
}


.shg-c#s-4fef2bb1-77d0-458e-bfd6-f1e723621e60 {
  max-width: 100%;
}

.shg-c#s-4fef2bb1-77d0-458e-bfd6-f1e723621e60 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4fef2bb1-77d0-458e-bfd6-f1e723621e60 .shg-image-zoom,
.shg-c#s-4fef2bb1-77d0-458e-bfd6-f1e723621e60 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-4fef2bb1-77d0-458e-bfd6-f1e723621e60 .shg-image-zoom {
  
    margin: 0 auto;
  
}

@media (min-width: 1200px){
.shg-c#s-4fef2bb1-77d0-458e-bfd6-f1e723621e60 {
  max-width: 100%;
}

.shg-c#s-4fef2bb1-77d0-458e-bfd6-f1e723621e60 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4fef2bb1-77d0-458e-bfd6-f1e723621e60 .shg-image-zoom,
.shg-c#s-4fef2bb1-77d0-458e-bfd6-f1e723621e60 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-4fef2bb1-77d0-458e-bfd6-f1e723621e60 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-4fef2bb1-77d0-458e-bfd6-f1e723621e60 {
  max-width: 100%;
}

.shg-c#s-4fef2bb1-77d0-458e-bfd6-f1e723621e60 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4fef2bb1-77d0-458e-bfd6-f1e723621e60 .shg-image-zoom,
.shg-c#s-4fef2bb1-77d0-458e-bfd6-f1e723621e60 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-4fef2bb1-77d0-458e-bfd6-f1e723621e60 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-4fef2bb1-77d0-458e-bfd6-f1e723621e60 {
  max-width: 100%;
}

.shg-c#s-4fef2bb1-77d0-458e-bfd6-f1e723621e60 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4fef2bb1-77d0-458e-bfd6-f1e723621e60 .shg-image-zoom,
.shg-c#s-4fef2bb1-77d0-458e-bfd6-f1e723621e60 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-4fef2bb1-77d0-458e-bfd6-f1e723621e60 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (max-width: 767px){
.shg-c#s-4fef2bb1-77d0-458e-bfd6-f1e723621e60 {
  max-width: 100%;
}

.shg-c#s-4fef2bb1-77d0-458e-bfd6-f1e723621e60 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4fef2bb1-77d0-458e-bfd6-f1e723621e60 .shg-image-zoom,
.shg-c#s-4fef2bb1-77d0-458e-bfd6-f1e723621e60 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-4fef2bb1-77d0-458e-bfd6-f1e723621e60 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}
#s-6db519f1-0598-435a-a554-48485a9a2620 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6db519f1-0598-435a-a554-48485a9a2620 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
}

#s-fab6897a-37b9-45f0-b2f1-509142ad9cf0 {
  text-align: center;
}

#s-fab6897a-37b9-45f0-b2f1-509142ad9cf0 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 16px;
}

#s-fab6897a-37b9-45f0-b2f1-509142ad9cf0 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
}

#s-fab6897a-37b9-45f0-b2f1-509142ad9cf0 .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
#s-ff644061-e6c9-48b8-b992-9f579aa1f885 {
  margin-top: 1%;
margin-bottom: 1%;
text-align: center;
}

#s-ff644061-e6c9-48b8-b992-9f579aa1f885 .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-ff644061-e6c9-48b8-b992-9f579aa1f885 .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-ff644061-e6c9-48b8-b992-9f579aa1f885 .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-ff644061-e6c9-48b8-b992-9f579aa1f885 .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}


  #s-ff644061-e6c9-48b8-b992-9f579aa1f885 .shg-product-selector-wrapper label {
    color: ;
    font-weight:   ;
    font-family: ;
    font-style:  normal ;
    font-size: 16px;
  }

       
    #s-ff644061-e6c9-48b8-b992-9f579aa1f885 .shg-product-selector-wrapper label:after {
      display: block;
      content: ' ';
      margin-bottom: ;
    }
  

#s-6ede4ab0-fbb7-4671-ac29-6f388468b888 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: rgba(37, 37, 37, 0.44);
}
#s-6ede4ab0-fbb7-4671-ac29-6f388468b888:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-6ede4ab0-fbb7-4671-ac29-6f388468b888:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-6ede4ab0-fbb7-4671-ac29-6f388468b888 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-6ede4ab0-fbb7-4671-ac29-6f388468b888.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-6ede4ab0-fbb7-4671-ac29-6f388468b888.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-6ede4ab0-fbb7-4671-ac29-6f388468b888.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-6ede4ab0-fbb7-4671-ac29-6f388468b888.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-a16c0f10-ee4d-44f1-89c3-b08293413317 {
  border-style: solid;
margin-top: 2%;
margin-left: auto;
margin-bottom: 2%;
margin-right: auto;
padding-top: 0%;
padding-left: 2%;
padding-bottom: 0%;
padding-right: 2%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0.35);
max-width: 400px;
text-align: center;
}

#s-a16c0f10-ee4d-44f1-89c3-b08293413317 {
  display: none;
}
#s-5102c48d-a3de-48ad-9702-a04dd7e7a930 {
  text-align: center;
}


.shg-c#s-5102c48d-a3de-48ad-9702-a04dd7e7a930 {
  max-width: 100%;
}

.shg-c#s-5102c48d-a3de-48ad-9702-a04dd7e7a930 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5102c48d-a3de-48ad-9702-a04dd7e7a930 .shg-image-zoom,
.shg-c#s-5102c48d-a3de-48ad-9702-a04dd7e7a930 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-5102c48d-a3de-48ad-9702-a04dd7e7a930 .shg-image-zoom {
  
    margin: 0 auto;
  
}

@media (min-width: 1200px){
.shg-c#s-5102c48d-a3de-48ad-9702-a04dd7e7a930 {
  max-width: 100%;
}

.shg-c#s-5102c48d-a3de-48ad-9702-a04dd7e7a930 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5102c48d-a3de-48ad-9702-a04dd7e7a930 .shg-image-zoom,
.shg-c#s-5102c48d-a3de-48ad-9702-a04dd7e7a930 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-5102c48d-a3de-48ad-9702-a04dd7e7a930 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-5102c48d-a3de-48ad-9702-a04dd7e7a930 {
  max-width: 100%;
}

.shg-c#s-5102c48d-a3de-48ad-9702-a04dd7e7a930 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5102c48d-a3de-48ad-9702-a04dd7e7a930 .shg-image-zoom,
.shg-c#s-5102c48d-a3de-48ad-9702-a04dd7e7a930 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-5102c48d-a3de-48ad-9702-a04dd7e7a930 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-5102c48d-a3de-48ad-9702-a04dd7e7a930 {
  max-width: 100%;
}

.shg-c#s-5102c48d-a3de-48ad-9702-a04dd7e7a930 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5102c48d-a3de-48ad-9702-a04dd7e7a930 .shg-image-zoom,
.shg-c#s-5102c48d-a3de-48ad-9702-a04dd7e7a930 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-5102c48d-a3de-48ad-9702-a04dd7e7a930 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (max-width: 767px){
.shg-c#s-5102c48d-a3de-48ad-9702-a04dd7e7a930 {
  max-width: 100%;
}

.shg-c#s-5102c48d-a3de-48ad-9702-a04dd7e7a930 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5102c48d-a3de-48ad-9702-a04dd7e7a930 .shg-image-zoom,
.shg-c#s-5102c48d-a3de-48ad-9702-a04dd7e7a930 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-5102c48d-a3de-48ad-9702-a04dd7e7a930 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}
#s-94d7da37-d3c0-43ad-8c50-fd98f164d4c5 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-94d7da37-d3c0-43ad-8c50-fd98f164d4c5 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
}

#s-3f51dab3-b475-4bcf-a39f-bc4079b31288 {
  text-align: center;
}

#s-3f51dab3-b475-4bcf-a39f-bc4079b31288 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 16px;
}

#s-3f51dab3-b475-4bcf-a39f-bc4079b31288 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
}

#s-3f51dab3-b475-4bcf-a39f-bc4079b31288 .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
#s-f3663cff-cccf-4d95-8cec-584525c34492 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: rgba(37, 37, 37, 0.44);
}
#s-f3663cff-cccf-4d95-8cec-584525c34492:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-f3663cff-cccf-4d95-8cec-584525c34492:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-f3663cff-cccf-4d95-8cec-584525c34492 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-f3663cff-cccf-4d95-8cec-584525c34492.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-f3663cff-cccf-4d95-8cec-584525c34492.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-f3663cff-cccf-4d95-8cec-584525c34492.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-f3663cff-cccf-4d95-8cec-584525c34492.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-c728e5d3-21ac-4861-aa2e-cf03f5b3d0c1 {
  min-height: 50px;
}








#s-c728e5d3-21ac-4861-aa2e-cf03f5b3d0c1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c728e5d3-21ac-4861-aa2e-cf03f5b3d0c1.shg-box.shg-c {
  justify-content: flex-start;
}

/*
  $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;
  }
}

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