.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-e8dfedba-55a8-42ef-9b76-80f65d55f152 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
min-height: 50px;
max-width: 1200px;
background-color: rgba(255, 255, 255, 1);
}








#s-e8dfedba-55a8-42ef-9b76-80f65d55f152 > .shg-box-overlay {
  background-color: rgba(222, 222, 222, 1);
  opacity: 0;
}#s-e8dfedba-55a8-42ef-9b76-80f65d55f152.shg-box.shg-c {
  justify-content: center;
}

.shogun-heading-component h1,
.shogun-heading-component h2,
.shogun-heading-component h3,
.shogun-heading-component h4,
.shogun-heading-component h5,
.shogun-heading-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: #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-82470934-9bed-4813-8802-b491f72b54e8 {
  margin-top: 30px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(245, 245, 245, 1);
}

#s-82470934-9bed-4813-8802-b491f72b54e8 .shogun-heading-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



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

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

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

#s-d2dab352-22a4-4ac6-9adf-c9e7c931636a {
  background-image: url(https://i.shgcdn.com/bc90021e-e8d6-425f-982a-969060bb0866/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
background-position: center center;
}

@media (min-width: 0px) {
[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-d2dab352-22a4-4ac6-9adf-c9e7c931636a"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-af756dd6-ae58-4bd7-a6b5-544d3a3fc8ef {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
min-height: 400px;
}








#s-af756dd6-ae58-4bd7-a6b5-544d3a3fc8ef > .shg-box-overlay {
  background-color: rgba(122, 121, 121, 1);
  opacity: 0;
}#s-af756dd6-ae58-4bd7-a6b5-544d3a3fc8ef.shg-box.shg-c {
  justify-content: center;
}

#s-76fbc800-db7a-46bf-8bd9-aa9db685568c {
  margin-top: 0px;
margin-left: 10px;
margin-bottom: 0px;
margin-right: 10px;
min-height: 50px;
}








#s-76fbc800-db7a-46bf-8bd9-aa9db685568c > .shg-box-overlay {
  background-color: rgba(56, 56, 56, 1);
  opacity: 0.5;
}#s-76fbc800-db7a-46bf-8bd9-aa9db685568c.shg-box.shg-c {
  justify-content: flex-start;
}

#s-8d331d9d-551f-44cb-a792-2c89122d353f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8d331d9d-551f-44cb-a792-2c89122d353f .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-952352b4-561f-42a6-ab12-3ddde0b55cad {
  margin-top: 20px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-952352b4-561f-42a6-ab12-3ddde0b55cad {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-952352b4-561f-42a6-ab12-3ddde0b55cad {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-952352b4-561f-42a6-ab12-3ddde0b55cad {
  
}
}@media (max-width: 767px){#s-952352b4-561f-42a6-ab12-3ddde0b55cad {
  
}
}
#s-17660610-1232-4ee0-bc7e-8903f2b87931 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-left: 0px;
padding-right: 0px;
min-height: 200px;
max-width: 1200px;
background-color: rgba(255, 255, 255, 1);
}








#s-17660610-1232-4ee0-bc7e-8903f2b87931 > .shg-box-overlay {
  background-color: rgba(222, 222, 222, 1);
  opacity: 0;
}#s-17660610-1232-4ee0-bc7e-8903f2b87931.shg-box.shg-c {
  justify-content: center;
}

#s-74801cf3-f4a3-4720-8895-5fac57e2b919 {
  min-height: 50px;
background-color: rgba(221, 248, 247, 1);
}








#s-74801cf3-f4a3-4720-8895-5fac57e2b919 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-74801cf3-f4a3-4720-8895-5fac57e2b919.shg-box.shg-c {
  justify-content: center;
}

#s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-255a30d7-5d25-4a1f-80ff-20d16cb3ec4e"] > .shg-row {
    flex-flow: column-reverse;
  }
}

.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-9993c158-f725-4cef-87f9-50602ecbe799 {
  text-align: center;
}




  #s-9993c158-f725-4cef-87f9-50602ecbe799 img.shogun-image {
    
    width: px;
  }


#s-9993c158-f725-4cef-87f9-50602ecbe799 .shogun-image-content {
  
    align-items: center;
  
}

#s-37610ecf-c185-491a-ab33-23fc84d2f0e0 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 800px;
}








#s-37610ecf-c185-491a-ab33-23fc84d2f0e0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-37610ecf-c185-491a-ab33-23fc84d2f0e0.shg-box.shg-c {
  justify-content: center;
}

#s-f63fc94b-c55e-45cf-96cc-f6891c301ad0 {
  margin-top: 20%;
margin-left: auto;
margin-bottom: 20%;
margin-right: auto;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}
@media (min-width: 1200px){#s-f63fc94b-c55e-45cf-96cc-f6891c301ad0 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f63fc94b-c55e-45cf-96cc-f6891c301ad0 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-f63fc94b-c55e-45cf-96cc-f6891c301ad0 {
  
}
}@media (max-width: 767px){#s-f63fc94b-c55e-45cf-96cc-f6891c301ad0 {
  
}
}







#s-f63fc94b-c55e-45cf-96cc-f6891c301ad0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f63fc94b-c55e-45cf-96cc-f6891c301ad0.shg-box.shg-c {
  justify-content: center;
}

#s-91481527-c40a-46e9-8c25-1becc6c8c9de {
  border-style: solid;
margin-top: 10%;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 02px;
border-right-width: 0px;
border-color: rgba(164, 164, 164, 1);
max-width: 400px;
}

#s-ae451db4-f782-4c59-a74a-49314fb80840 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
max-width: 400px;
}

#s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-54be0fb3-f401-4dd7-9e38-0c1844cb60fe"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-ece5089a-2f34-48d2-97ce-57133c225bf2 {
  margin-top: 20%;
margin-left: auto;
margin-bottom: 20%;
margin-right: auto;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}
@media (min-width: 1200px){#s-ece5089a-2f34-48d2-97ce-57133c225bf2 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ece5089a-2f34-48d2-97ce-57133c225bf2 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-ece5089a-2f34-48d2-97ce-57133c225bf2 {
  
}
}@media (max-width: 767px){#s-ece5089a-2f34-48d2-97ce-57133c225bf2 {
  
}
}







#s-ece5089a-2f34-48d2-97ce-57133c225bf2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ece5089a-2f34-48d2-97ce-57133c225bf2.shg-box.shg-c {
  justify-content: center;
}

#s-8b748877-87a6-44e2-b05b-6bdfbdf3dd63 {
  border-style: solid;
margin-top: 10%;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 02px;
border-right-width: 0px;
border-color: rgba(164, 164, 164, 1);
max-width: 400px;
}

#s-31dfdb00-5628-4a2f-9ec9-1ffa8ef140ef {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
max-width: 400px;
}

#s-77b70f19-280a-46c1-a2c4-5655c79472e1 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 800px;
}








#s-77b70f19-280a-46c1-a2c4-5655c79472e1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-77b70f19-280a-46c1-a2c4-5655c79472e1.shg-box.shg-c {
  justify-content: center;
}

#s-68afe4ba-2350-437a-87b6-78b5b8a84f32 {
  text-align: center;
}




  #s-68afe4ba-2350-437a-87b6-78b5b8a84f32 img.shogun-image {
    
    width: px;
  }


#s-68afe4ba-2350-437a-87b6-78b5b8a84f32 .shogun-image-content {
  
    align-items: center;
  
}

#s-e6ea524c-5a3d-4c59-b786-530214f10586 {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-e6ea524c-5a3d-4c59-b786-530214f10586"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-29cddf82-2df6-49f2-b65a-01ddf5dc9a1f {
  text-align: center;
}




  #s-29cddf82-2df6-49f2-b65a-01ddf5dc9a1f img.shogun-image {
    
    width: px;
  }


#s-29cddf82-2df6-49f2-b65a-01ddf5dc9a1f .shogun-image-content {
  
    align-items: center;
  
}

#s-915f0d75-8e8f-437e-9493-960f82d544d4 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 800px;
}








#s-915f0d75-8e8f-437e-9493-960f82d544d4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-915f0d75-8e8f-437e-9493-960f82d544d4.shg-box.shg-c {
  justify-content: center;
}

#s-37fa3942-3bb0-43b0-891f-d5da91f18a2d {
  margin-top: 20%;
margin-left: auto;
margin-bottom: 20%;
margin-right: auto;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}
@media (min-width: 1200px){#s-37fa3942-3bb0-43b0-891f-d5da91f18a2d {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-37fa3942-3bb0-43b0-891f-d5da91f18a2d {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-37fa3942-3bb0-43b0-891f-d5da91f18a2d {
  
}
}@media (max-width: 767px){#s-37fa3942-3bb0-43b0-891f-d5da91f18a2d {
  
}
}







#s-37fa3942-3bb0-43b0-891f-d5da91f18a2d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-37fa3942-3bb0-43b0-891f-d5da91f18a2d.shg-box.shg-c {
  justify-content: center;
}

#s-60c2f9b9-77be-462c-afa0-3f71f73ff083 {
  border-style: solid;
margin-top: 10%;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 02px;
border-right-width: 0px;
border-color: rgba(164, 164, 164, 1);
max-width: 400px;
}

#s-f8f24ddc-8ac3-4c2b-bbb7-a87408005f9c {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
max-width: 400px;
}

#s-31bc04be-d354-464f-b7bf-281ca27c6f78 {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-31bc04be-d354-464f-b7bf-281ca27c6f78"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-6b73cf45-446c-4454-a78b-3f76c9128976 {
  margin-top: 20%;
margin-left: auto;
margin-bottom: 20%;
margin-right: auto;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}
@media (min-width: 1200px){#s-6b73cf45-446c-4454-a78b-3f76c9128976 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-6b73cf45-446c-4454-a78b-3f76c9128976 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-6b73cf45-446c-4454-a78b-3f76c9128976 {
  
}
}@media (max-width: 767px){#s-6b73cf45-446c-4454-a78b-3f76c9128976 {
  
}
}







#s-6b73cf45-446c-4454-a78b-3f76c9128976 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6b73cf45-446c-4454-a78b-3f76c9128976.shg-box.shg-c {
  justify-content: center;
}

#s-f630f167-9a86-4ec7-9de7-8c0898e45efb {
  border-style: solid;
margin-top: 10%;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 02px;
border-right-width: 0px;
border-color: rgba(164, 164, 164, 1);
max-width: 400px;
}

#s-bfb05b97-734f-4fd6-8bb9-e6b0466b0464 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
max-width: 400px;
}

#s-b8d82cc8-0eff-496f-a1eb-b1ab2882570b {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 800px;
}








#s-b8d82cc8-0eff-496f-a1eb-b1ab2882570b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b8d82cc8-0eff-496f-a1eb-b1ab2882570b.shg-box.shg-c {
  justify-content: center;
}

#s-0b10b153-6b44-4f6a-b074-4cf716eb25d9 {
  text-align: center;
}




  #s-0b10b153-6b44-4f6a-b074-4cf716eb25d9 img.shogun-image {
    
    width: px;
  }


#s-0b10b153-6b44-4f6a-b074-4cf716eb25d9 .shogun-image-content {
  
    align-items: center;
  
}

#s-d24146ee-903d-4738-8440-5c06ff7b5934 {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-d24146ee-903d-4738-8440-5c06ff7b5934"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-7182c05e-33a8-4d7b-a2bc-00e085d86e53 {
  text-align: center;
}




  #s-7182c05e-33a8-4d7b-a2bc-00e085d86e53 img.shogun-image {
    
    width: px;
  }


#s-7182c05e-33a8-4d7b-a2bc-00e085d86e53 .shogun-image-content {
  
    align-items: center;
  
}

#s-0f5177a9-a613-4e1a-b455-8ffef093e756 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 800px;
}








#s-0f5177a9-a613-4e1a-b455-8ffef093e756 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0f5177a9-a613-4e1a-b455-8ffef093e756.shg-box.shg-c {
  justify-content: center;
}

#s-340273c6-1329-4af9-8aaf-c65931f20e29 {
  margin-top: 20%;
margin-left: auto;
margin-bottom: 20%;
margin-right: auto;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}
@media (min-width: 1200px){#s-340273c6-1329-4af9-8aaf-c65931f20e29 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-340273c6-1329-4af9-8aaf-c65931f20e29 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-340273c6-1329-4af9-8aaf-c65931f20e29 {
  
}
}@media (max-width: 767px){#s-340273c6-1329-4af9-8aaf-c65931f20e29 {
  
}
}







#s-340273c6-1329-4af9-8aaf-c65931f20e29 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-340273c6-1329-4af9-8aaf-c65931f20e29.shg-box.shg-c {
  justify-content: center;
}

#s-e79a77c3-170f-4bef-b4b8-46a1dd7b4b19 {
  border-style: solid;
margin-top: 10%;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 02px;
border-right-width: 0px;
border-color: rgba(164, 164, 164, 1);
max-width: 400px;
}

#s-3b05ae6b-11b2-460f-bdba-7ac9ef5cbb45 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
max-width: 400px;
}

#s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-a5a3b31f-e7b4-4e65-8c94-1edf54d08a3b"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-812ca52d-9479-4e59-be50-3d3f5e1f5038 {
  margin-top: 20%;
margin-left: auto;
margin-bottom: 20%;
margin-right: auto;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}
@media (min-width: 1200px){#s-812ca52d-9479-4e59-be50-3d3f5e1f5038 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-812ca52d-9479-4e59-be50-3d3f5e1f5038 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-812ca52d-9479-4e59-be50-3d3f5e1f5038 {
  
}
}@media (max-width: 767px){#s-812ca52d-9479-4e59-be50-3d3f5e1f5038 {
  
}
}







#s-812ca52d-9479-4e59-be50-3d3f5e1f5038 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-812ca52d-9479-4e59-be50-3d3f5e1f5038.shg-box.shg-c {
  justify-content: center;
}

#s-e6eb2155-b6f9-47de-945c-0cedb8c4f72f {
  border-style: solid;
margin-top: 10%;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 02px;
border-right-width: 0px;
border-color: rgba(164, 164, 164, 1);
max-width: 400px;
}

#s-fd098960-97e2-4bb4-8159-d6bf108a661e {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
max-width: 400px;
}

#s-d9c0fb5d-817c-4c4b-946b-55dcfa4aa37c {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 800px;
}








#s-d9c0fb5d-817c-4c4b-946b-55dcfa4aa37c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d9c0fb5d-817c-4c4b-946b-55dcfa4aa37c.shg-box.shg-c {
  justify-content: center;
}

#s-65dea2a6-03ec-4601-8f32-3e1e708e79d2 {
  text-align: center;
}




  #s-65dea2a6-03ec-4601-8f32-3e1e708e79d2 img.shogun-image {
    
    width: px;
  }


#s-65dea2a6-03ec-4601-8f32-3e1e708e79d2 .shogun-image-content {
  
    align-items: center;
  
}

#s-9d709e06-4c30-4708-b9eb-2ba634fe0365 {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-9d709e06-4c30-4708-b9eb-2ba634fe0365"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-34d669d7-8d45-427c-bc51-9ae0c71ca110 {
  text-align: center;
}




  #s-34d669d7-8d45-427c-bc51-9ae0c71ca110 img.shogun-image {
    
    width: px;
  }


#s-34d669d7-8d45-427c-bc51-9ae0c71ca110 .shogun-image-content {
  
    align-items: center;
  
}

#s-30551350-26b8-4ea7-9b82-7cb94173e1a7 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 800px;
}








#s-30551350-26b8-4ea7-9b82-7cb94173e1a7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-30551350-26b8-4ea7-9b82-7cb94173e1a7.shg-box.shg-c {
  justify-content: center;
}

#s-40e4d467-6999-4eb3-99bb-a869264eb316 {
  margin-top: 20%;
margin-left: auto;
margin-bottom: 20%;
margin-right: auto;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}
@media (min-width: 1200px){#s-40e4d467-6999-4eb3-99bb-a869264eb316 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-40e4d467-6999-4eb3-99bb-a869264eb316 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-40e4d467-6999-4eb3-99bb-a869264eb316 {
  
}
}@media (max-width: 767px){#s-40e4d467-6999-4eb3-99bb-a869264eb316 {
  
}
}







#s-40e4d467-6999-4eb3-99bb-a869264eb316 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-40e4d467-6999-4eb3-99bb-a869264eb316.shg-box.shg-c {
  justify-content: center;
}

#s-4572fddc-5b6a-4acd-beed-a14f9dba0b6a {
  border-style: solid;
margin-top: 10%;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 02px;
border-right-width: 0px;
border-color: rgba(164, 164, 164, 1);
max-width: 400px;
}

#s-28976bb6-40b7-4dbd-aabe-bf1fcc56a805 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
max-width: 400px;
}

#s-9ab2ef8c-df1e-46e2-94a2-aed57c198567 {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-9ab2ef8c-df1e-46e2-94a2-aed57c198567"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-d7151c26-297a-4d77-9519-69eb3ba6b93d {
  margin-top: 20%;
margin-left: auto;
margin-bottom: 20%;
margin-right: auto;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}
@media (min-width: 1200px){#s-d7151c26-297a-4d77-9519-69eb3ba6b93d {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-d7151c26-297a-4d77-9519-69eb3ba6b93d {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-d7151c26-297a-4d77-9519-69eb3ba6b93d {
  
}
}@media (max-width: 767px){#s-d7151c26-297a-4d77-9519-69eb3ba6b93d {
  
}
}







#s-d7151c26-297a-4d77-9519-69eb3ba6b93d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d7151c26-297a-4d77-9519-69eb3ba6b93d.shg-box.shg-c {
  justify-content: center;
}

#s-532ea019-340a-4297-9f7c-703545d455e2 {
  border-style: solid;
margin-top: 10%;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 02px;
border-right-width: 0px;
border-color: rgba(164, 164, 164, 1);
max-width: 400px;
}

#s-78b2eabb-d268-42b1-9311-f1887eab64f2 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
max-width: 400px;
}

#s-b28be401-c071-40e8-b638-bb27b98d1141 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 800px;
}








#s-b28be401-c071-40e8-b638-bb27b98d1141 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b28be401-c071-40e8-b638-bb27b98d1141.shg-box.shg-c {
  justify-content: center;
}

#s-8cbdc4c5-5847-470b-9210-b25e0ee09b6b {
  text-align: center;
}




  #s-8cbdc4c5-5847-470b-9210-b25e0ee09b6b img.shogun-image {
    
    width: px;
  }


#s-8cbdc4c5-5847-470b-9210-b25e0ee09b6b .shogun-image-content {
  
    align-items: center;
  
}

#s-a508350f-cf5b-466e-a146-24b5455de62f {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-a508350f-cf5b-466e-a146-24b5455de62f"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-8b6b3666-76e5-46a1-859e-69cf4714f183 {
  text-align: center;
}




  #s-8b6b3666-76e5-46a1-859e-69cf4714f183 img.shogun-image {
    
    width: px;
  }


#s-8b6b3666-76e5-46a1-859e-69cf4714f183 .shogun-image-content {
  
    align-items: center;
  
}

#s-c91becf4-2221-4b3b-90da-2d05c64bdb73 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 800px;
}








#s-c91becf4-2221-4b3b-90da-2d05c64bdb73 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c91becf4-2221-4b3b-90da-2d05c64bdb73.shg-box.shg-c {
  justify-content: center;
}

#s-e402e83d-f55a-48ec-8c82-94ee8d813136 {
  margin-top: 20%;
margin-left: auto;
margin-bottom: 20%;
margin-right: auto;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}
@media (min-width: 1200px){#s-e402e83d-f55a-48ec-8c82-94ee8d813136 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-e402e83d-f55a-48ec-8c82-94ee8d813136 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-e402e83d-f55a-48ec-8c82-94ee8d813136 {
  
}
}@media (max-width: 767px){#s-e402e83d-f55a-48ec-8c82-94ee8d813136 {
  
}
}







#s-e402e83d-f55a-48ec-8c82-94ee8d813136 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e402e83d-f55a-48ec-8c82-94ee8d813136.shg-box.shg-c {
  justify-content: center;
}

#s-5d725baa-daba-410e-ad9f-c7914d286204 {
  border-style: solid;
margin-top: 10%;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 02px;
border-right-width: 0px;
border-color: rgba(164, 164, 164, 1);
max-width: 400px;
}

#s-78a7e9f3-c126-4a72-90ed-7302637d6241 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
max-width: 400px;
}

#s-3d775d6f-0532-4c59-a575-9ff0ad0ac971 {
  background-image: url(https://i.shgcdn.com/f075859a-5755-4747-891f-28979ca7e498/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
margin-top: 10px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
background-position: center center;
}

@media (min-width: 0px) {
[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-3d775d6f-0532-4c59-a575-9ff0ad0ac971"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-df1f70e9-cab6-4537-a3e9-02ec6ce9a0aa {
  margin-top: auto;
margin-bottom: auto;
min-height: 800px;
}








#s-df1f70e9-cab6-4537-a3e9-02ec6ce9a0aa > .shg-box-overlay {
  background-color: rgba(122, 121, 121, 1);
  opacity: 0;
}#s-df1f70e9-cab6-4537-a3e9-02ec6ce9a0aa {
  cursor: pointer;
}#s-df1f70e9-cab6-4537-a3e9-02ec6ce9a0aa.shg-box.shg-c {
  justify-content: center;
}

#s-3cbbdff1-d8f3-4249-b3c8-173b996791f5 {
  margin-top: 10%;
margin-left: 10px;
margin-bottom: 10%;
margin-right: 10px;
min-height: 50px;
}








#s-3cbbdff1-d8f3-4249-b3c8-173b996791f5 > .shg-box-overlay {
  background-color: rgba(56, 56, 56, 1);
  opacity: 0.46;
}#s-3cbbdff1-d8f3-4249-b3c8-173b996791f5.shg-box.shg-c {
  justify-content: center;
}

#s-78b98a18-9bac-408f-bc17-8ec4a3112abf {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-78b98a18-9bac-408f-bc17-8ec4a3112abf .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-c6997591-4d94-4a70-9d25-908bcc8bd243 {
  margin-top: 20px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-c6997591-4d94-4a70-9d25-908bcc8bd243 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c6997591-4d94-4a70-9d25-908bcc8bd243 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-c6997591-4d94-4a70-9d25-908bcc8bd243 {
  
}
}@media (max-width: 767px){#s-c6997591-4d94-4a70-9d25-908bcc8bd243 {
  
}
}
#s-18f536d6-b5ff-4ada-8612-7c5ae495fbb2 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(0, 0, 0, 0.1);
}

#s-18f536d6-b5ff-4ada-8612-7c5ae495fbb2 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-a741dd60-c5d9-424c-902b-d4cd3c196e05 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-a741dd60-c5d9-424c-902b-d4cd3c196e05 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a741dd60-c5d9-424c-902b-d4cd3c196e05 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-a741dd60-c5d9-424c-902b-d4cd3c196e05 {
  
}
}@media (max-width: 767px){#s-a741dd60-c5d9-424c-902b-d4cd3c196e05 {
  
}
}







#s-a741dd60-c5d9-424c-902b-d4cd3c196e05 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a741dd60-c5d9-424c-902b-d4cd3c196e05.shg-box.shg-c {
  justify-content: center;
}

#s-f3b64190-db8c-41f1-944e-2c5633f4175c {
  background-image: url(https://i.shgcdn.com/28e5c5c0-a1da-4188-8d08-91a9ee233b5b/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
}

@media (min-width: 0px) {
[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-f3b64190-db8c-41f1-944e-2c5633f4175c"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-45166a64-6ae7-4b0e-b77d-3553da161f52 {
  margin-top: 20px;
margin-bottom: 20px;
}

#s-9ae6ff17-82ea-48c8-b55f-5875c3c4315d {
  margin-top: 20px;
margin-bottom: 20px;
background-color: rgba(255, 255, 255, 0);
}

#s-3729344b-d643-4aed-87d1-3f4ad3928589 {
  margin-top: 15px;
margin-left: 15px;
margin-bottom: 15px;
margin-right: 15px;
}

#s-11dcb059-ac6b-4389-9d2b-632c114692cb {
  margin-top: 15px;
margin-left: 15px;
margin-bottom: 15px;
margin-right: 15px;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
min-height: 50px;
}








#s-11dcb059-ac6b-4389-9d2b-632c114692cb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-11dcb059-ac6b-4389-9d2b-632c114692cb.shg-box.shg-c {
  justify-content: flex-start;
}

#s-7d324a57-3eb8-465c-a833-932dd9e42e11 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(0, 0, 0, 0.1);
}

#s-7d324a57-3eb8-465c-a833-932dd9e42e11 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



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

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

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

.shg-sld-nav-button {
  cursor: pointer;

  position: absolute;
  z-index: 10;
  top: 0;
  width: 35px;
  height: 100%;

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

.shg-sld-nav-button.shg-sld-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEyMDMgNTQ0cTAgMTMtMTAgMjNsLTM5MyAzOTMgMzkzIDM5M3ExMCAxMCAxMCAyM3QtMTAgMjNsLTUwIDUwcS0xMCAxMC0yMyAxMHQtMjMtMTBsLTQ2Ni00NjZxLTEwLTEwLTEwLTIzdDEwLTIzbDQ2Ni00NjZxMTAtMTAgMjMtMTB0MjMgMTBsNTAgNTBxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

.shg-sld-nav-button.shg-sld-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTExNzEgOTYwcTAgMTMtMTAgMjNsLTQ2NiA0NjZxLTEwIDEwLTIzIDEwdC0yMy0xMGwtNTAtNTBxLTEwLTEwLTEwLTIzdDEwLTIzbDM5My0zOTMtMzkzLTM5M3EtMTAtMTAtMTAtMjN0MTAtMjNsNTAtNTBxMTAtMTAgMjMtMTB0MjMgMTBsNDY2IDQ2NnExMCAxMCAxMCAyM3oiLz48L3N2Zz4=);
}

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

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

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

.shg-sld-dots {
  margin-top: 10px;
  text-align: center;
}

.shg-sld-dot {
  cursor: pointer;
  display: inline-block;
  height: 14px;
  width: 14px;
  border-radius: 100%;
  margin-left: 5px;
  background-color: #bbbbbb;
}

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

.shg-sld-dot.shg-sld-active {
  background-color: #717171;
}

.shg-sld-fade {
  -webkit-animation-name: shg-sld-fade;
          animation-name: shg-sld-fade;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  image-rendering: -webkit-optimize-contrast;
}

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

  to {
    opacity: 1;
  }
}

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

  to {
    opacity: 1;
  }
}

#s-a6c317e3-e856-4ff9-b29b-56caa0bc1097 {
  padding-top: 10px;
padding-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-2ce8fb65-1ee0-4b5a-bf97-7ef19e1c9af8"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-649cb42a-d77d-4de5-89ca-a98851cd361b {
  text-align: center;
}




  #s-649cb42a-d77d-4de5-89ca-a98851cd361b img.shogun-image {
    
    width: px;
  }


#s-649cb42a-d77d-4de5-89ca-a98851cd361b .shogun-image-content {
  
    align-items: center;
  
}

#s-41eeec55-749a-486d-9091-57912cad9af5 {
  text-align: center;
}




  #s-41eeec55-749a-486d-9091-57912cad9af5 img.shogun-image {
    
    width: px;
  }


#s-41eeec55-749a-486d-9091-57912cad9af5 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-cc73c1c2-6b09-46cf-9d77-646e7438e125"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-dd9f247a-c3cd-4563-a267-e5e242fd0b79 {
  text-align: center;
}




  #s-dd9f247a-c3cd-4563-a267-e5e242fd0b79 img.shogun-image {
    
    width: px;
  }


#s-dd9f247a-c3cd-4563-a267-e5e242fd0b79 .shogun-image-content {
  
    align-items: center;
  
}

#s-fc238a77-a9d1-458e-8ac1-6994d93af2a0 {
  text-align: center;
}




  #s-fc238a77-a9d1-458e-8ac1-6994d93af2a0 img.shogun-image {
    
    width: px;
  }


#s-fc238a77-a9d1-458e-8ac1-6994d93af2a0 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-29556d2b-20b6-4c0a-9e66-c565e7b24149"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-7eb3acb1-4683-45f5-92de-a1241e2cd864 {
  text-align: center;
}




  #s-7eb3acb1-4683-45f5-92de-a1241e2cd864 img.shogun-image {
    
    width: px;
  }


#s-7eb3acb1-4683-45f5-92de-a1241e2cd864 .shogun-image-content {
  
    align-items: center;
  
}

#s-4f3d2242-66e7-4b06-ad0f-1c7229a79b0d {
  text-align: center;
}




  #s-4f3d2242-66e7-4b06-ad0f-1c7229a79b0d img.shogun-image {
    
    width: px;
  }


#s-4f3d2242-66e7-4b06-ad0f-1c7229a79b0d .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-7ce5d065-960a-4919-8172-6c11bb66fd47"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-d86b6633-05de-4421-a9e0-487c60d825e7 {
  text-align: center;
}




  #s-d86b6633-05de-4421-a9e0-487c60d825e7 img.shogun-image {
    
    width: px;
  }


#s-d86b6633-05de-4421-a9e0-487c60d825e7 .shogun-image-content {
  
    align-items: center;
  
}

#s-56b1a43c-12b0-4cfd-ba92-a26b1c3ca9c9 {
  text-align: center;
}




  #s-56b1a43c-12b0-4cfd-ba92-a26b1c3ca9c9 img.shogun-image {
    
    width: px;
  }


#s-56b1a43c-12b0-4cfd-ba92-a26b1c3ca9c9 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-4ed67ad9-45cb-4084-b21c-7aab8d55d551"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-df63243d-ac6e-484f-b933-dca5a70a37e0 {
  text-align: center;
}




  #s-df63243d-ac6e-484f-b933-dca5a70a37e0 img.shogun-image {
    
    width: px;
  }


#s-df63243d-ac6e-484f-b933-dca5a70a37e0 .shogun-image-content {
  
    align-items: center;
  
}

#s-c7c4ebdb-a375-44f4-8ee5-adfd1a137c01 {
  text-align: center;
}




  #s-c7c4ebdb-a375-44f4-8ee5-adfd1a137c01 img.shogun-image {
    
    width: px;
  }


#s-c7c4ebdb-a375-44f4-8ee5-adfd1a137c01 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-c749ddc6-e815-43da-9a05-fd8f559d13ef"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-3badd072-b5f0-40d6-87ab-167f236def1a {
  text-align: center;
}




  #s-3badd072-b5f0-40d6-87ab-167f236def1a img.shogun-image {
    
    width: px;
  }


#s-3badd072-b5f0-40d6-87ab-167f236def1a .shogun-image-content {
  
    align-items: center;
  
}

#s-e535596d-1f04-4b93-84ab-2892b269b16c {
  text-align: center;
}




  #s-e535596d-1f04-4b93-84ab-2892b269b16c img.shogun-image {
    
    width: px;
  }


#s-e535596d-1f04-4b93-84ab-2892b269b16c .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-b507bf76-4d0c-428d-9065-13d4691a6d5d"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-bc39b081-bd7d-4278-8da1-dd1bad85ee89 {
  text-align: center;
}




  #s-bc39b081-bd7d-4278-8da1-dd1bad85ee89 img.shogun-image {
    
    width: px;
  }


#s-bc39b081-bd7d-4278-8da1-dd1bad85ee89 .shogun-image-content {
  
    align-items: center;
  
}

#s-59c644db-636c-4dc9-af77-dbe626e34551 {
  text-align: center;
}




  #s-59c644db-636c-4dc9-af77-dbe626e34551 img.shogun-image {
    
    width: px;
  }


#s-59c644db-636c-4dc9-af77-dbe626e34551 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-5330eb90-9b89-4a52-b85b-d6d9a2cab052"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-2d409f35-ee9a-4b0e-b12f-686567c09833 {
  text-align: center;
}




  #s-2d409f35-ee9a-4b0e-b12f-686567c09833 img.shogun-image {
    
    width: px;
  }


#s-2d409f35-ee9a-4b0e-b12f-686567c09833 .shogun-image-content {
  
    align-items: center;
  
}

#s-fb3135ed-4fd1-452a-b9ac-65aaf9f3d38b {
  text-align: center;
}




  #s-fb3135ed-4fd1-452a-b9ac-65aaf9f3d38b img.shogun-image {
    
    width: px;
  }


#s-fb3135ed-4fd1-452a-b9ac-65aaf9f3d38b .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-9fe53fae-a285-47ca-8b9d-835361943689"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-2382d6b0-251c-4711-b0f3-abfa19d9fd41 {
  text-align: center;
}




  #s-2382d6b0-251c-4711-b0f3-abfa19d9fd41 img.shogun-image {
    
    width: px;
  }


#s-2382d6b0-251c-4711-b0f3-abfa19d9fd41 .shogun-image-content {
  
    align-items: center;
  
}

#s-243dc3b5-e980-44b9-bc55-a005da999420 {
  text-align: center;
}




  #s-243dc3b5-e980-44b9-bc55-a005da999420 img.shogun-image {
    
    width: px;
  }


#s-243dc3b5-e980-44b9-bc55-a005da999420 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-e04f9615-27e9-42df-88e3-715aa5338263"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-46e75e49-b56c-468d-a231-bc83de607984 {
  text-align: center;
}




  #s-46e75e49-b56c-468d-a231-bc83de607984 img.shogun-image {
    
    width: px;
  }


#s-46e75e49-b56c-468d-a231-bc83de607984 .shogun-image-content {
  
    align-items: center;
  
}

#s-2a8f9221-f26b-4963-baa3-acb9e6c1f909 {
  text-align: center;
}




  #s-2a8f9221-f26b-4963-baa3-acb9e6c1f909 img.shogun-image {
    
    width: px;
  }


#s-2a8f9221-f26b-4963-baa3-acb9e6c1f909 .shogun-image-content {
  
    align-items: center;
  
}

#s-c10c350c-1e37-4ed6-ab7e-55613f15ae34 {
  margin-top: 10px;
margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
text-align: center;
background-color: rgba(0, 0, 0, 0.1);
}

#s-c10c350c-1e37-4ed6-ab7e-55613f15ae34 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-74a645fb-bb1a-4f4b-b82d-eb5dcf29d08e {
  margin-top: 15px;
margin-left: 15px;
margin-bottom: 15px;
margin-right: 15px;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

@media (min-width: 0px) {
[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-bd7b6fae-4c32-4b85-a2c9-2356d73e9da2"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-975dc1c4-b9e3-4394-819b-37bcfebbc402 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-975dc1c4-b9e3-4394-819b-37bcfebbc402 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-975dc1c4-b9e3-4394-819b-37bcfebbc402 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(106, 108, 109, 1);
}

#s-975dc1c4-b9e3-4394-819b-37bcfebbc402 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-975dc1c4-b9e3-4394-819b-37bcfebbc402 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(106, 108, 109, 1);
  text-align: left;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-975dc1c4-b9e3-4394-819b-37bcfebbc402 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
#s-78e7a3eb-01a9-491d-acde-72fb6a922aa9 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
text-align: center;
}




  #s-78e7a3eb-01a9-491d-acde-72fb6a922aa9 img.shogun-image {
    
    width: px;
  }


#s-78e7a3eb-01a9-491d-acde-72fb6a922aa9 .shogun-image-content {
  
    align-items:  flex-start;
  
}

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

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

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

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

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

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

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

#s-faa1678e-031a-4032-8be8-4f9f99468621 {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
padding-top: 5px;
padding-left: 5px;
padding-bottom: 5px;
padding-right: 5px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(98, 96, 96, 1);
border-radius: 4px;
text-align: center;
background-color: rgba(255, 255, 255, 1);
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-faa1678e-031a-4032-8be8-4f9f99468621:hover {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(141, 216, 234, 1) !important;
border-radius: 4px !important;
background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-faa1678e-031a-4032-8be8-4f9f99468621:active {background-color: rgba(242, 242, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}


#s-faa1678e-031a-4032-8be8-4f9f99468621.shg-btn {
  color: rgba(98, 96, 96, 1);
  font-size: 20px;
  font-weight: 500;
  
  font-family: Oswald;
  display:  inline-block ;
}

#s-1b55fb68-9bd6-413c-b1c8-9c59b4426f56 {
  min-height: 50px;
}








#s-1b55fb68-9bd6-413c-b1c8-9c59b4426f56 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1b55fb68-9bd6-413c-b1c8-9c59b4426f56.shg-box.shg-c {
  justify-content: flex-start;
}

#s-142cbad2-a4c3-441a-b14b-604a2715fd6d {
  margin-top: 10px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(0, 0, 0, 0.1);
}

#s-142cbad2-a4c3-441a-b14b-604a2715fd6d .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-07a99bf0-b56f-4ae7-92db-835d0fd88762 {
  margin-top: 0px;
margin-left: 25px;
margin-bottom: 0px;
margin-right: 25px;
min-height: 50px;
}








#s-07a99bf0-b56f-4ae7-92db-835d0fd88762 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-07a99bf0-b56f-4ae7-92db-835d0fd88762.shg-box.shg-c {
  justify-content: flex-start;
}

@media (min-width: 0px) {
[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-6fe195a0-ac06-42a3-9121-f651185dca9e"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-f8636490-63bf-4365-bff4-f171d0bb95ec {
  margin-top: 5px;
margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-f8636490-63bf-4365-bff4-f171d0bb95ec .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-f8bbba37-2625-42c5-a0d5-615212e6c90f {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-f8bbba37-2625-42c5-a0d5-615212e6c90f > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-f8bbba37-2625-42c5-a0d5-615212e6c90f > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-f8bbba37-2625-42c5-a0d5-615212e6c90f > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(106, 108, 109, 1);
}

#s-f8bbba37-2625-42c5-a0d5-615212e6c90f > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-f8bbba37-2625-42c5-a0d5-615212e6c90f > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(106, 108, 109, 1);
  text-align: left;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-f8bbba37-2625-42c5-a0d5-615212e6c90f > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
#s-3639d292-c6e6-4321-8855-614a42faa18f {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

#s-7c084f06-4de9-43b1-9540-664a9c1a7cd3 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

#s-d49a2a82-860d-4cad-bf44-20d3cb5aea3a {
  min-height: 50px;
}








#s-d49a2a82-860d-4cad-bf44-20d3cb5aea3a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d49a2a82-860d-4cad-bf44-20d3cb5aea3a.shg-box.shg-c {
  justify-content: flex-start;
}

@media (min-width: 0px) {
[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-febea94d-079e-43c8-8b0a-114d30d5b065"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-971734d8-9556-45e5-92b9-8542705de838 {
  margin-top: 5px;
margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-971734d8-9556-45e5-92b9-8542705de838 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-5ec0156f-d339-409a-a9bf-8d85f959f6c0 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-5ec0156f-d339-409a-a9bf-8d85f959f6c0 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-5ec0156f-d339-409a-a9bf-8d85f959f6c0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-5ec0156f-d339-409a-a9bf-8d85f959f6c0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(106, 108, 109, 1);
}

#s-5ec0156f-d339-409a-a9bf-8d85f959f6c0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-5ec0156f-d339-409a-a9bf-8d85f959f6c0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(106, 108, 109, 1);
  text-align: left;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-5ec0156f-d339-409a-a9bf-8d85f959f6c0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
#s-35ae1b76-329d-4cda-93a9-9b4c664e48c9 {
  min-height: 50px;
}








#s-35ae1b76-329d-4cda-93a9-9b4c664e48c9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-35ae1b76-329d-4cda-93a9-9b4c664e48c9.shg-box.shg-c {
  justify-content: center;
}

#s-b6b7f370-0bfe-423f-81d7-4914c0f778e3 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 10px;
margin-left: 15px;
margin-bottom: 10px;
margin-right: 15px;
min-height: 50px;
background-position: center center;
}








#s-b6b7f370-0bfe-423f-81d7-4914c0f778e3 > .shg-box-overlay {
  background-color: rgba(252, 252, 252, 1);
  opacity: 0.4;
}#s-b6b7f370-0bfe-423f-81d7-4914c0f778e3.shg-box.shg-c {
  justify-content: flex-start;
}

#s-f15fd64d-ab59-494f-b887-88c49f9736e5 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f15fd64d-ab59-494f-b887-88c49f9736e5 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-1471cfd0-f601-4bdc-bad3-4be219162885 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
padding-top: 15px;
padding-left: 15%;
padding-bottom: 15px;
padding-right: 15%;
}

#s-667c4d2c-228f-49e5-b270-e006f1132093 {
  border-style: solid;
margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(98, 96, 96, 1);
border-radius: 4px;
text-align: center;
background-color: rgba(253, 253, 253, 1);
text-decoration: none;
}
#s-667c4d2c-228f-49e5-b270-e006f1132093:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-667c4d2c-228f-49e5-b270-e006f1132093:active {background-color: rgba(242, 242, 242, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}


#s-667c4d2c-228f-49e5-b270-e006f1132093.shg-btn {
  color: rgba(98, 96, 96, 1);
  font-size: 20px;
  
  
  font-family: Oswald;
  display:  inline-block ;
}

#s-48b83a2f-6f22-49a1-8df9-6179dc5ef434 {
  min-height: 50px;
}








#s-48b83a2f-6f22-49a1-8df9-6179dc5ef434 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-48b83a2f-6f22-49a1-8df9-6179dc5ef434.shg-box.shg-c {
  justify-content: flex-start;
}

#s-aec9a488-90d2-47bd-bc3c-ea9abd2b81c9 {
  text-align: center;
}




  #s-aec9a488-90d2-47bd-bc3c-ea9abd2b81c9 img.shogun-image {
    
    width: px;
  }


#s-aec9a488-90d2-47bd-bc3c-ea9abd2b81c9 .shogun-image-content {
  
    align-items: center;
  
}

/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

@media (max-width: 1024px) {
  .shg-c,
  .shg-box {
    background-attachment: scroll !important;
  }
}

@media only screen
  and (min-width: 1024px) and (max-height: 1366px)
  and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none)
  and (orientation: landscape) {
  .shg-box {
    background-attachment: scroll !important;
  }
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

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

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  z-index: 1;
}

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

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

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

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

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

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

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

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

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