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

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

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

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

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

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

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

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

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

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

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

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

#s-22db6351-3550-4786-9039-6d7937fd5da8 {
  margin-bottom: 2em;
min-height: 50px;
}








#s-22db6351-3550-4786-9039-6d7937fd5da8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-22db6351-3550-4786-9039-6d7937fd5da8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1fb65080-b9d2-4925-af43-889d5de118bf {
  min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}








#s-1fb65080-b9d2-4925-af43-889d5de118bf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1fb65080-b9d2-4925-af43-889d5de118bf.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

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

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

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

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

#s-08f4801d-e384-4163-80b5-44b626a7a2d5 {
  min-height: 450px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-08f4801d-e384-4163-80b5-44b626a7a2d5 {
  margin-left: auto;
margin-right: auto;
}
}

  #s-08f4801d-e384-4163-80b5-44b626a7a2d5 .shogun-tabs > li > .shogun-tab-box {
    background: rgba(0, 0, 0, 1);
    border: 2px solid rgba(33, 33, 33, 1);
  }
  #s-08f4801d-e384-4163-80b5-44b626a7a2d5 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(39, 39, 39, 1);
    border: 2px solid rgba(39, 39, 39, 1);
  }
#s-08f4801d-e384-4163-80b5-44b626a7a2d5 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(146, 146, 146, 1);
  font-family: TradeGothicLTStd-Bd2;
  font-weight: ;
  font-style: ;
  font-size: 12px;
}

#s-08f4801d-e384-4163-80b5-44b626a7a2d5 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(255, 255, 255, 1);
}

#s-08f4801d-e384-4163-80b5-44b626a7a2d5 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 2px);
  left: 2px;
  bottom: -2px;
  height: 2px;
  background: rgba(39, 39, 39, 1);
}

#s-08f4801d-e384-4163-80b5-44b626a7a2d5 .shogun-tabs-body {
  margin-top: -2px;
  border-top: 2px solid rgba(39, 39, 39, 1);
}

#s-ff151e6a-94d4-4042-88b8-4dcbac4197df {
  margin-top: -10px;
padding-top: 10px;
min-height: 50px;
background-color: rgba(21, 21, 21, 1);
}








#s-ff151e6a-94d4-4042-88b8-4dcbac4197df > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ff151e6a-94d4-4042-88b8-4dcbac4197df.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dfe4583a-8e46-4056-ac92-81ab52f70a56 {
  margin-top: auto;
margin-bottom: auto;
min-height: 400px;
background-color: rgba(0, 0, 0, 0);
}








#s-dfe4583a-8e46-4056-ac92-81ab52f70a56 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dfe4583a-8e46-4056-ac92-81ab52f70a56.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-e619cd58-702c-49b4-b41a-7456b9a4e9c3 {
  margin-top: 14px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
padding-bottom: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(64, 64, 64, 1);
border-style: solid;
background-color: rgba(33, 33, 33, 0);
}
@media (min-width: 768px) and (max-width: 991px){#s-e619cd58-702c-49b4-b41a-7456b9a4e9c3 {
  margin-top: 0px;
}
}@media (max-width: 767px){#s-e619cd58-702c-49b4-b41a-7456b9a4e9c3 {
  margin-left: 20px;
margin-right: 20px;
}
}
#s-1a176c85-2cf2-434a-8537-459ae2caf18d {
  padding-top: 10px;
padding-left: 30px;
padding-right: 30px;
max-width: 700px;
}
@media (max-width: 767px){#s-1a176c85-2cf2-434a-8537-459ae2caf18d {
  padding-left: 20px;
padding-right: 20px;
}
}
#s-4fcff70c-8c19-454b-9280-d9c3ad39d5d7 {
  padding-top: 10px;
padding-left: 30px;
padding-right: 30px;
max-width: 700px;
}
@media (max-width: 767px){#s-4fcff70c-8c19-454b-9280-d9c3ad39d5d7 {
  padding-left: 20px;
padding-right: 20px;
}
}
#s-c4fc9995-e829-4bcd-9015-2f646f365333 {
  padding-top: 10px;
padding-left: 30px;
padding-right: 30px;
max-width: 700px;
}
@media (max-width: 767px){#s-c4fc9995-e829-4bcd-9015-2f646f365333 {
  padding-left: 20px;
padding-right: 20px;
}
}
#s-826e3024-2eed-45c5-9f5c-5057fc1ddceb {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(33, 33, 33, 1);
border-style: solid;
min-height: 50px;
max-width: 550px;
}
@media (min-width: 1200px){#s-826e3024-2eed-45c5-9f5c-5057fc1ddceb {
  padding-bottom: 25px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-826e3024-2eed-45c5-9f5c-5057fc1ddceb {
  padding-bottom: 25px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-826e3024-2eed-45c5-9f5c-5057fc1ddceb {
  padding-bottom: 25px;
}
}@media (max-width: 767px){#s-826e3024-2eed-45c5-9f5c-5057fc1ddceb {
  padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
}
}







#s-826e3024-2eed-45c5-9f5c-5057fc1ddceb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-826e3024-2eed-45c5-9f5c-5057fc1ddceb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e717ad6c-ab0d-47b4-a0fb-41b585dde82e {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 550px;
}








#s-e717ad6c-ab0d-47b4-a0fb-41b585dde82e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e717ad6c-ab0d-47b4-a0fb-41b585dde82e {
  cursor: pointer;
}#s-e717ad6c-ab0d-47b4-a0fb-41b585dde82e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

#s-4f5e44d9-e0ce-4a98-96f7-feafec85912a {
  margin-top: 0px;
margin-bottom: 0em;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(102, 102, 102, 1);
border-style: solid;
background-color: rgba(0, 0, 0, 1);
}

@media (min-width: 0px) {
[id="s-4f5e44d9-e0ce-4a98-96f7-feafec85912a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-4f5e44d9-e0ce-4a98-96f7-feafec85912a"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-4f5e44d9-e0ce-4a98-96f7-feafec85912a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-4f5e44d9-e0ce-4a98-96f7-feafec85912a"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-4f5e44d9-e0ce-4a98-96f7-feafec85912a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-4f5e44d9-e0ce-4a98-96f7-feafec85912a"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-4f5e44d9-e0ce-4a98-96f7-feafec85912a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-f100f688-ee88-411d-a490-30ebc6299f16 {
  padding-top: 5px;
padding-left: 30px;
padding-bottom: 5px;
padding-right: 0px;
min-height: 130px;
background-color: rgba(0, 0, 0, 1);
}
@media (max-width: 767px){#s-f100f688-ee88-411d-a490-30ebc6299f16 {
  padding-left: 20px;
min-height: 158px;
}
}







#s-f100f688-ee88-411d-a490-30ebc6299f16 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f100f688-ee88-411d-a490-30ebc6299f16.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-da6b2097-dc68-48c4-8642-6f28f5b3d15d {
  margin-left: 0px;
margin-bottom: 4px;
margin-right: 0px;
padding-top: 5px;
padding-bottom: 0px;
}

#s-3862f8fc-bbc8-4ad6-a0a4-6e3f4e16a749 {
  margin-top: auto;
margin-left: 0px;
margin-bottom: 8px;
margin-right: 0px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-535e5a41-9078-43a3-a271-ab7b7821d317 {
  margin-top: auto;
margin-left: 0px;
margin-bottom: auto;
margin-right: 0px;
}

#s-87e682f6-b028-42f0-a707-28af57fd23a5 {
  min-height: 110px;
}
@media (max-width: 767px){#s-87e682f6-b028-42f0-a707-28af57fd23a5 {
  min-height: 140px;
}
}







#s-87e682f6-b028-42f0-a707-28af57fd23a5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-87e682f6-b028-42f0-a707-28af57fd23a5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-product-image-wrapper img.shogun-image,
.shogun-component img.shogun-image {
  display: inline-block;
  vertical-align: middle;
}

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

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

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

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

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

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

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

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

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

#s-f66ecd4b-ddf2-43ec-bbf9-e19ff07ac935 {
  text-align: left;
}



.shg-c#s-f66ecd4b-ddf2-43ec-bbf9-e19ff07ac935 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f66ecd4b-ddf2-43ec-bbf9-e19ff07ac935 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-f66ecd4b-ddf2-43ec-bbf9-e19ff07ac935 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f66ecd4b-ddf2-43ec-bbf9-e19ff07ac935 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f66ecd4b-ddf2-43ec-bbf9-e19ff07ac935 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f66ecd4b-ddf2-43ec-bbf9-e19ff07ac935 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f66ecd4b-ddf2-43ec-bbf9-e19ff07ac935 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f66ecd4b-ddf2-43ec-bbf9-e19ff07ac935 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f66ecd4b-ddf2-43ec-bbf9-e19ff07ac935 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f66ecd4b-ddf2-43ec-bbf9-e19ff07ac935 img.shogun-image {
  width: 100%;
}



}
#s-394f6241-7748-4902-9ada-f32398a3df01 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(33, 33, 33, 1);
border-style: solid;
min-height: 50px;
max-width: 550px;
}
@media (min-width: 1200px){#s-394f6241-7748-4902-9ada-f32398a3df01 {
  padding-bottom: 25px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-394f6241-7748-4902-9ada-f32398a3df01 {
  padding-bottom: 25px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-394f6241-7748-4902-9ada-f32398a3df01 {
  padding-bottom: 25px;
}
}@media (max-width: 767px){#s-394f6241-7748-4902-9ada-f32398a3df01 {
  padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
}
}







#s-394f6241-7748-4902-9ada-f32398a3df01 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-394f6241-7748-4902-9ada-f32398a3df01.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f26d95cb-874e-4437-af15-bd61dc49278f {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 550px;
}








#s-f26d95cb-874e-4437-af15-bd61dc49278f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f26d95cb-874e-4437-af15-bd61dc49278f {
  cursor: pointer;
}#s-f26d95cb-874e-4437-af15-bd61dc49278f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7e6bbe44-107d-42f9-a94a-2ab042eef538 {
  margin-top: 0px;
margin-bottom: 0em;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(102, 102, 102, 1);
border-style: solid;
background-color: rgba(0, 0, 0, 1);
}

@media (min-width: 0px) {
[id="s-7e6bbe44-107d-42f9-a94a-2ab042eef538"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-7e6bbe44-107d-42f9-a94a-2ab042eef538"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-7e6bbe44-107d-42f9-a94a-2ab042eef538"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-7e6bbe44-107d-42f9-a94a-2ab042eef538"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-7e6bbe44-107d-42f9-a94a-2ab042eef538"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-7e6bbe44-107d-42f9-a94a-2ab042eef538"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-7e6bbe44-107d-42f9-a94a-2ab042eef538"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-e26b38e8-e27e-49cb-8820-f62d888ffdb0 {
  padding-top: 5px;
padding-left: 30px;
padding-bottom: 5px;
padding-right: 0px;
min-height: 130px;
background-color: rgba(0, 0, 0, 1);
}
@media (max-width: 767px){#s-e26b38e8-e27e-49cb-8820-f62d888ffdb0 {
  padding-left: 20px;
min-height: 158px;
}
}







#s-e26b38e8-e27e-49cb-8820-f62d888ffdb0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e26b38e8-e27e-49cb-8820-f62d888ffdb0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-797ac6c9-67c9-4795-8450-3e7e45aba144 {
  margin-left: 0px;
margin-bottom: 4px;
margin-right: 0px;
padding-top: 5px;
padding-bottom: 0px;
}

#s-61f330d7-9c57-49ae-8e0d-ecc81f0aff06 {
  margin-top: auto;
margin-left: 0px;
margin-bottom: 8px;
margin-right: 0px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-a1126917-e5be-4f95-9bcf-f1a1e955ac54 {
  margin-top: auto;
margin-left: 0px;
margin-bottom: auto;
margin-right: 0px;
}

#s-08100d5c-a2f0-47f3-aba1-932dc220f7e8 {
  min-height: 110px;
}
@media (max-width: 767px){#s-08100d5c-a2f0-47f3-aba1-932dc220f7e8 {
  min-height: 140px;
}
}







#s-08100d5c-a2f0-47f3-aba1-932dc220f7e8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-08100d5c-a2f0-47f3-aba1-932dc220f7e8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d9e8796f-4982-49e7-96b7-3ca40363d455 {
  text-align: left;
}



.shg-c#s-d9e8796f-4982-49e7-96b7-3ca40363d455 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d9e8796f-4982-49e7-96b7-3ca40363d455 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-d9e8796f-4982-49e7-96b7-3ca40363d455 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d9e8796f-4982-49e7-96b7-3ca40363d455 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d9e8796f-4982-49e7-96b7-3ca40363d455 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d9e8796f-4982-49e7-96b7-3ca40363d455 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d9e8796f-4982-49e7-96b7-3ca40363d455 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d9e8796f-4982-49e7-96b7-3ca40363d455 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d9e8796f-4982-49e7-96b7-3ca40363d455 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d9e8796f-4982-49e7-96b7-3ca40363d455 img.shogun-image {
  width: 100%;
}



}
#s-a5068157-3ce6-4304-9ffe-0deb2beb5450 {
  margin-top: -10px;
padding-top: 10px;
min-height: 50px;
background-color: rgba(21, 21, 21, 1);
}








#s-a5068157-3ce6-4304-9ffe-0deb2beb5450 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a5068157-3ce6-4304-9ffe-0deb2beb5450.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-696e9f00-b5c3-440b-a440-9a7fd640b42c {
  margin-top: auto;
margin-bottom: auto;
min-height: 400px;
background-color: rgba(0, 0, 0, 0);
}








#s-696e9f00-b5c3-440b-a440-9a7fd640b42c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-696e9f00-b5c3-440b-a440-9a7fd640b42c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9bf2c9b5-e310-4ab0-b5c4-229892d91dd3 {
  margin-bottom: 0px;
padding-top: 20px;
padding-left: 30px;
padding-right: 30px;
max-width: 700px;
}
@media (max-width: 767px){#s-9bf2c9b5-e310-4ab0-b5c4-229892d91dd3 {
  padding-left: 20px;
padding-right: 20px;
}
}
#s-4673158f-a432-402d-b7ce-34d5f4238d5b {
  margin-bottom: 0px;
padding-top: 10px;
padding-left: 30px;
padding-right: 30px;
max-width: 700px;
}
@media (max-width: 767px){#s-4673158f-a432-402d-b7ce-34d5f4238d5b {
  padding-left: 20px;
padding-right: 20px;
}
}
#s-fcc534e9-ff43-42f4-8e99-83f4c920488e {
  margin-top: -10px;
padding-top: 10px;
min-height: 50px;
background-color: rgba(21, 21, 21, 1);
}








#s-fcc534e9-ff43-42f4-8e99-83f4c920488e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fcc534e9-ff43-42f4-8e99-83f4c920488e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cc541847-a0af-4ce3-8994-322fbdc85064 {
  min-height: 50px;
max-width: 700px;
}

#s-cc541847-a0af-4ce3-8994-322fbdc85064 {
  background-image: url();
}








#s-cc541847-a0af-4ce3-8994-322fbdc85064 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cc541847-a0af-4ce3-8994-322fbdc85064.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e3c6f0ea-f7a2-41a5-9c4d-4f0c9074e24b {
  padding-top: 20px;
}
@media (min-width: 1200px){#s-e3c6f0ea-f7a2-41a5-9c4d-4f0c9074e24b {
  display: none;
}
#s-e3c6f0ea-f7a2-41a5-9c4d-4f0c9074e24b, #wrap-s-e3c6f0ea-f7a2-41a5-9c4d-4f0c9074e24b { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e3c6f0ea-f7a2-41a5-9c4d-4f0c9074e24b {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-e3c6f0ea-f7a2-41a5-9c4d-4f0c9074e24b {
  display: none;
}
#s-e3c6f0ea-f7a2-41a5-9c4d-4f0c9074e24b, #wrap-s-e3c6f0ea-f7a2-41a5-9c4d-4f0c9074e24b { display:none !important; }}@media (max-width: 767px){#s-e3c6f0ea-f7a2-41a5-9c4d-4f0c9074e24b {
  display: none;
}
#s-e3c6f0ea-f7a2-41a5-9c4d-4f0c9074e24b, #wrap-s-e3c6f0ea-f7a2-41a5-9c4d-4f0c9074e24b { display:none !important; }}
@media (min-width: 0px) {
[id="s-e3c6f0ea-f7a2-41a5-9c4d-4f0c9074e24b"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-e3c6f0ea-f7a2-41a5-9c4d-4f0c9074e24b"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-e3c6f0ea-f7a2-41a5-9c4d-4f0c9074e24b"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e3c6f0ea-f7a2-41a5-9c4d-4f0c9074e24b"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-e3c6f0ea-f7a2-41a5-9c4d-4f0c9074e24b"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e3c6f0ea-f7a2-41a5-9c4d-4f0c9074e24b"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-e3c6f0ea-f7a2-41a5-9c4d-4f0c9074e24b"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

#s-d5e5f058-22eb-4df2-8450-bec16b8157d3 {
  margin-left: auto;
min-height: 50px;
}








#s-d5e5f058-22eb-4df2-8450-bec16b8157d3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d5e5f058-22eb-4df2-8450-bec16b8157d3.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-f3964412-3cec-451d-9411-badbc772d115 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(33, 33, 33, 1);
border-style: solid;
min-height: 50px;
max-width: 550px;
}
@media (min-width: 1200px){#s-f3964412-3cec-451d-9411-badbc772d115 {
  padding-bottom: 25px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f3964412-3cec-451d-9411-badbc772d115 {
  padding-bottom: 25px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-f3964412-3cec-451d-9411-badbc772d115 {
  padding-bottom: 25px;
}
}@media (max-width: 767px){#s-f3964412-3cec-451d-9411-badbc772d115 {
  padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
}
}







#s-f3964412-3cec-451d-9411-badbc772d115 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f3964412-3cec-451d-9411-badbc772d115.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-eb0f98a5-13c0-41b3-9b8a-cbb73420db94 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 550px;
}








#s-eb0f98a5-13c0-41b3-9b8a-cbb73420db94 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-eb0f98a5-13c0-41b3-9b8a-cbb73420db94 {
  cursor: pointer;
}#s-eb0f98a5-13c0-41b3-9b8a-cbb73420db94.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0072d85e-15bc-49fd-a581-3128f2234827 {
  margin-top: 0px;
margin-bottom: 0em;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(155, 131, 46, 1);
border-style: solid;
background-color: rgba(0, 0, 0, 1);
}

@media (min-width: 0px) {
[id="s-0072d85e-15bc-49fd-a581-3128f2234827"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-0072d85e-15bc-49fd-a581-3128f2234827"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-0072d85e-15bc-49fd-a581-3128f2234827"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-0072d85e-15bc-49fd-a581-3128f2234827"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-0072d85e-15bc-49fd-a581-3128f2234827"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-0072d85e-15bc-49fd-a581-3128f2234827"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-0072d85e-15bc-49fd-a581-3128f2234827"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-a3e9ff15-92ab-48cf-b9b5-030a192b0f26 {
  padding-top: 5px;
padding-left: 30px;
padding-bottom: 5px;
padding-right: 0px;
min-height: 130px;
background-color: rgba(0, 0, 0, 1);
}
@media (max-width: 767px){#s-a3e9ff15-92ab-48cf-b9b5-030a192b0f26 {
  padding-left: 20px;
min-height: 158px;
}
}







#s-a3e9ff15-92ab-48cf-b9b5-030a192b0f26 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a3e9ff15-92ab-48cf-b9b5-030a192b0f26.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4ff331bd-c5bd-4f5f-bee2-1c7a88918487 {
  margin-top: auto;
margin-left: 0px;
margin-bottom: 4px;
margin-right: 0px;
padding-top: 5px;
padding-bottom: 0px;
}

#s-c1158788-1f97-448c-9a18-5b7d705ba9a6 {
  margin-top: auto;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-d8258d68-b298-4202-9a5b-375520f90e93 {
  margin-top: auto;
margin-left: 0px;
margin-bottom: 8px;
margin-right: 0px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-d6047342-48c5-474b-b0c5-151f683d96b2 {
  margin-top: auto;
margin-left: 0px;
margin-bottom: auto;
margin-right: 0px;
}

#s-28c8125d-b74a-49ec-927f-a64547fdaf6e {
  min-height: 110px;
}
@media (max-width: 767px){#s-28c8125d-b74a-49ec-927f-a64547fdaf6e {
  min-height: 140px;
}
}







#s-28c8125d-b74a-49ec-927f-a64547fdaf6e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-28c8125d-b74a-49ec-927f-a64547fdaf6e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fdbcb2dd-104b-4fec-809f-b52cdc7ee2ca {
  text-align: left;
}



.shg-c#s-fdbcb2dd-104b-4fec-809f-b52cdc7ee2ca .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fdbcb2dd-104b-4fec-809f-b52cdc7ee2ca img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-fdbcb2dd-104b-4fec-809f-b52cdc7ee2ca .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fdbcb2dd-104b-4fec-809f-b52cdc7ee2ca img.shogun-image {
  width: 100%;
}



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

.shg-c#s-fdbcb2dd-104b-4fec-809f-b52cdc7ee2ca .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fdbcb2dd-104b-4fec-809f-b52cdc7ee2ca img.shogun-image {
  width: 100%;
}



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

.shg-c#s-fdbcb2dd-104b-4fec-809f-b52cdc7ee2ca .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fdbcb2dd-104b-4fec-809f-b52cdc7ee2ca img.shogun-image {
  width: 100%;
}



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

.shg-c#s-fdbcb2dd-104b-4fec-809f-b52cdc7ee2ca .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fdbcb2dd-104b-4fec-809f-b52cdc7ee2ca img.shogun-image {
  width: 100%;
}



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-9372390f-d150-47fc-b3dd-cf20d99af271 {
  margin-top: -10px;
margin-left: auto;
margin-right: -20px;
max-width: 130px;
text-align: right;
}
@media (min-width: 992px) and (max-width: 1199px){#s-9372390f-d150-47fc-b3dd-cf20d99af271 {
  margin-top: -20px;
}
}






  #s-9372390f-d150-47fc-b3dd-cf20d99af271 img.shogun-image {
    

    
    
    
  }


#s-9372390f-d150-47fc-b3dd-cf20d99af271 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-6a495a0d-e745-4f23-bddb-6a9224cb0451 {
  padding-right: 30px;
}
@media (max-width: 767px){#s-6a495a0d-e745-4f23-bddb-6a9224cb0451 {
  padding-right: 20px;
}
}
#s-63519fd5-dd8a-4340-b4ce-f688eb64b1c5 {
  padding-top: 20px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-63519fd5-dd8a-4340-b4ce-f688eb64b1c5 {
  display: none;
}
#s-63519fd5-dd8a-4340-b4ce-f688eb64b1c5, #wrap-s-63519fd5-dd8a-4340-b4ce-f688eb64b1c5 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-63519fd5-dd8a-4340-b4ce-f688eb64b1c5 {
  display: none;
}
#s-63519fd5-dd8a-4340-b4ce-f688eb64b1c5, #wrap-s-63519fd5-dd8a-4340-b4ce-f688eb64b1c5 { display:none !important; }}@media (max-width: 767px){#s-63519fd5-dd8a-4340-b4ce-f688eb64b1c5 {
  display: none;
}
#s-63519fd5-dd8a-4340-b4ce-f688eb64b1c5, #wrap-s-63519fd5-dd8a-4340-b4ce-f688eb64b1c5 { display:none !important; }}
@media (min-width: 0px) {
[id="s-63519fd5-dd8a-4340-b4ce-f688eb64b1c5"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-63519fd5-dd8a-4340-b4ce-f688eb64b1c5"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-63519fd5-dd8a-4340-b4ce-f688eb64b1c5"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-63519fd5-dd8a-4340-b4ce-f688eb64b1c5"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-63519fd5-dd8a-4340-b4ce-f688eb64b1c5"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-63519fd5-dd8a-4340-b4ce-f688eb64b1c5"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-63519fd5-dd8a-4340-b4ce-f688eb64b1c5"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

}

#s-805e566d-b001-441e-ba59-452d173ca6ab {
  padding-left: 10px;
min-height: 50px;
}








#s-805e566d-b001-441e-ba59-452d173ca6ab > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-805e566d-b001-441e-ba59-452d173ca6ab.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-8f016e4d-f9d3-4e92-a9aa-351bca4ead30 {
  margin-top: -10px;
margin-left: auto;
margin-right: -20px;
max-width: 130px;
text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-8f016e4d-f9d3-4e92-a9aa-351bca4ead30 {
  margin-top: -20px;
}
}






  #s-8f016e4d-f9d3-4e92-a9aa-351bca4ead30 img.shogun-image {
    

    
    
    
  }


#s-8f016e4d-f9d3-4e92-a9aa-351bca4ead30 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-63af2667-6708-4739-aab7-ecbcd6a9105f {
  padding-right: 30px;
max-width: 700px;
}
@media (max-width: 767px){#s-63af2667-6708-4739-aab7-ecbcd6a9105f {
  padding-right: 20px;
}
}
#s-23b7a8e6-2c3b-482a-960c-a05f93f74872 {
  padding-top: 20px;
padding-left: 30px;
padding-right: 30px;
}
@media (min-width: 1200px){#s-23b7a8e6-2c3b-482a-960c-a05f93f74872 {
  display: none;
}
#s-23b7a8e6-2c3b-482a-960c-a05f93f74872, #wrap-s-23b7a8e6-2c3b-482a-960c-a05f93f74872 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-23b7a8e6-2c3b-482a-960c-a05f93f74872 {
  display: none;
}
#s-23b7a8e6-2c3b-482a-960c-a05f93f74872, #wrap-s-23b7a8e6-2c3b-482a-960c-a05f93f74872 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-23b7a8e6-2c3b-482a-960c-a05f93f74872 {
  
}
}@media (max-width: 767px){#s-23b7a8e6-2c3b-482a-960c-a05f93f74872 {
  padding-left: 20px;
padding-right: 20px;
}
}
#s-71347fe1-431f-4c29-8ab8-ac767c2a712d {
  padding-top: 10px;
padding-left: 30px;
padding-right: 30px;
}
@media (max-width: 767px){#s-71347fe1-431f-4c29-8ab8-ac767c2a712d {
  padding-left: 20px;
padding-right: 20px;
}
}
#s-83786f3e-9d99-4634-9719-618ac36d63f7 {
  padding-top: 20px;
}
@media (min-width: 1200px){#s-83786f3e-9d99-4634-9719-618ac36d63f7 {
  display: none;
}
#s-83786f3e-9d99-4634-9719-618ac36d63f7, #wrap-s-83786f3e-9d99-4634-9719-618ac36d63f7 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-83786f3e-9d99-4634-9719-618ac36d63f7 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-83786f3e-9d99-4634-9719-618ac36d63f7 {
  display: none;
}
#s-83786f3e-9d99-4634-9719-618ac36d63f7, #wrap-s-83786f3e-9d99-4634-9719-618ac36d63f7 { display:none !important; }}@media (max-width: 767px){#s-83786f3e-9d99-4634-9719-618ac36d63f7 {
  display: none;
}
#s-83786f3e-9d99-4634-9719-618ac36d63f7, #wrap-s-83786f3e-9d99-4634-9719-618ac36d63f7 { display:none !important; }}
@media (min-width: 0px) {
[id="s-83786f3e-9d99-4634-9719-618ac36d63f7"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-83786f3e-9d99-4634-9719-618ac36d63f7"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-83786f3e-9d99-4634-9719-618ac36d63f7"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-83786f3e-9d99-4634-9719-618ac36d63f7"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-83786f3e-9d99-4634-9719-618ac36d63f7"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-83786f3e-9d99-4634-9719-618ac36d63f7"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-83786f3e-9d99-4634-9719-618ac36d63f7"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

#s-717f4961-3220-440f-bbe2-a76ab83140d8 {
  margin-left: auto;
min-height: 50px;
}








#s-717f4961-3220-440f-bbe2-a76ab83140d8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-717f4961-3220-440f-bbe2-a76ab83140d8.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-3305a69b-c493-4efe-888a-8f7202417f0a {
  margin-top: -10px;
margin-left: auto;
margin-right: -20px;
max-width: 130px;
text-align: right;
}
@media (min-width: 992px) and (max-width: 1199px){#s-3305a69b-c493-4efe-888a-8f7202417f0a {
  margin-top: -20px;
}
}






  #s-3305a69b-c493-4efe-888a-8f7202417f0a img.shogun-image {
    

    
    
    
  }


#s-3305a69b-c493-4efe-888a-8f7202417f0a .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-001f509b-6bed-48e0-a9d1-ab5d57de2773 {
  padding-right: 30px;
}
@media (max-width: 767px){#s-001f509b-6bed-48e0-a9d1-ab5d57de2773 {
  padding-right: 20px;
}
}
#s-a784c7c4-4eb1-4ede-a43b-88faa79b276e {
  padding-top: 20px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-a784c7c4-4eb1-4ede-a43b-88faa79b276e {
  display: none;
}
#s-a784c7c4-4eb1-4ede-a43b-88faa79b276e, #wrap-s-a784c7c4-4eb1-4ede-a43b-88faa79b276e { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a784c7c4-4eb1-4ede-a43b-88faa79b276e {
  display: none;
}
#s-a784c7c4-4eb1-4ede-a43b-88faa79b276e, #wrap-s-a784c7c4-4eb1-4ede-a43b-88faa79b276e { display:none !important; }}@media (max-width: 767px){#s-a784c7c4-4eb1-4ede-a43b-88faa79b276e {
  display: none;
}
#s-a784c7c4-4eb1-4ede-a43b-88faa79b276e, #wrap-s-a784c7c4-4eb1-4ede-a43b-88faa79b276e { display:none !important; }}
@media (min-width: 0px) {
[id="s-a784c7c4-4eb1-4ede-a43b-88faa79b276e"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-a784c7c4-4eb1-4ede-a43b-88faa79b276e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-a784c7c4-4eb1-4ede-a43b-88faa79b276e"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a784c7c4-4eb1-4ede-a43b-88faa79b276e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-a784c7c4-4eb1-4ede-a43b-88faa79b276e"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a784c7c4-4eb1-4ede-a43b-88faa79b276e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-a784c7c4-4eb1-4ede-a43b-88faa79b276e"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

}

#s-396e7efb-743a-4de7-9b0c-4505e98db77e {
  padding-left: 12px;
min-height: 50px;
}








#s-396e7efb-743a-4de7-9b0c-4505e98db77e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-396e7efb-743a-4de7-9b0c-4505e98db77e.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-34974702-c437-4f01-ab84-8c6e834af29d {
  margin-top: -10px;
margin-left: auto;
margin-right: -20px;
max-width: 130px;
text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-34974702-c437-4f01-ab84-8c6e834af29d {
  margin-top: -20px;
}
}






  #s-34974702-c437-4f01-ab84-8c6e834af29d img.shogun-image {
    

    
    
    
  }


#s-34974702-c437-4f01-ab84-8c6e834af29d .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-3cb8e867-5d07-409d-88fb-ce57ea00c10a {
  padding-right: 30px;
max-width: 700px;
}
@media (max-width: 767px){#s-3cb8e867-5d07-409d-88fb-ce57ea00c10a {
  padding-right: 20px;
}
}
#s-4165b9c2-1823-4cce-ba11-6c762ae1481c {
  padding-top: 10px;
padding-left: 30px;
padding-right: 30px;
}
@media (min-width: 1200px){#s-4165b9c2-1823-4cce-ba11-6c762ae1481c {
  display: none;
}
#s-4165b9c2-1823-4cce-ba11-6c762ae1481c, #wrap-s-4165b9c2-1823-4cce-ba11-6c762ae1481c { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4165b9c2-1823-4cce-ba11-6c762ae1481c {
  display: none;
}
#s-4165b9c2-1823-4cce-ba11-6c762ae1481c, #wrap-s-4165b9c2-1823-4cce-ba11-6c762ae1481c { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-4165b9c2-1823-4cce-ba11-6c762ae1481c {
  
}
}@media (max-width: 767px){#s-4165b9c2-1823-4cce-ba11-6c762ae1481c {
  padding-left: 20px;
padding-right: 20px;
}
}
#s-bff05316-ba0a-4407-ae86-99ee2513581a {
  padding-top: 10px;
padding-left: 30px;
padding-right: 30px;
}
@media (max-width: 767px){#s-bff05316-ba0a-4407-ae86-99ee2513581a {
  padding-left: 20px;
padding-right: 20px;
}
}
#s-2ee1fab3-dfc3-428d-a5ad-9ceb272ca363 {
  min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 1200px){#s-2ee1fab3-dfc3-428d-a5ad-9ceb272ca363 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2ee1fab3-dfc3-428d-a5ad-9ceb272ca363 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-2ee1fab3-dfc3-428d-a5ad-9ceb272ca363 {
  
}
}@media (max-width: 767px){#s-2ee1fab3-dfc3-428d-a5ad-9ceb272ca363 {
  
}
}







#s-2ee1fab3-dfc3-428d-a5ad-9ceb272ca363 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2ee1fab3-dfc3-428d-a5ad-9ceb272ca363.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-0ed852d7-be62-453d-8f50-df326fd59d25 {
  min-height: 50px;
}








#s-0ed852d7-be62-453d-8f50-df326fd59d25 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0ed852d7-be62-453d-8f50-df326fd59d25.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-68d371b3-db18-4493-afcf-e79a7374d960 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-68d371b3-db18-4493-afcf-e79a7374d960 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-68d371b3-db18-4493-afcf-e79a7374d960 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-68d371b3-db18-4493-afcf-e79a7374d960 {
  
}
}@media (max-width: 767px){#s-68d371b3-db18-4493-afcf-e79a7374d960 {
  display: none;
}
#s-68d371b3-db18-4493-afcf-e79a7374d960, #wrap-s-68d371b3-db18-4493-afcf-e79a7374d960 { display:none !important; }}







#s-68d371b3-db18-4493-afcf-e79a7374d960 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-68d371b3-db18-4493-afcf-e79a7374d960.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fa59b5eb-5ff5-479a-953b-2427bf4a8ea4 {
  background-color: rgba(21, 21, 21, 1);
}

@media (min-width: 0px) {
[id="s-fa59b5eb-5ff5-479a-953b-2427bf4a8ea4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fa59b5eb-5ff5-479a-953b-2427bf4a8ea4"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-fa59b5eb-5ff5-479a-953b-2427bf4a8ea4"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-fa59b5eb-5ff5-479a-953b-2427bf4a8ea4"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

.shg-align-container {
  box-sizing: border-box;
}

.shg-image-content-wrapper {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-imageV2-content {
  text-align: initial;
}

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

.shg-image-content-wrapper .shogun-image.hover~* {
  z-index: 1;
}
#s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8 {
  max-width: 2000px;
aspect-ratio: 2000/1000;
text-align: center;
}





  #s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8 img.shogun-image,
  #s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8 {
    width: 100%;
    height: auto;
  }

  #s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8.shogun-image {
    
    
  }


.s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8 .shogun-image-content {
  
    align-items: center;
  
}

.s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8 img.shogun-image,
  #s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8 {
    width: 100%;
    height: auto;
  }

  #s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8.shogun-image {
    
    
  }


.s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8 .shogun-image-content {
  
    align-items: center;
  
}

.s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8.shogun-image {
  box-sizing: border-box;
}

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



  #s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8 img.shogun-image,
  #s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8 {
    width: 100%;
    height: auto;
  }

  #s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8.shogun-image {
    
    
  }


.s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8 .shogun-image-content {
  
    align-items: center;
  
}

.s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8.shogun-image {
  box-sizing: border-box;
}

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



  #s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8 img.shogun-image,
  #s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8 {
    width: 100%;
    height: auto;
  }

  #s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8.shogun-image {
    
    
  }


.s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8 .shogun-image-content {
  
    align-items: center;
  
}

.s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8.shogun-image {
  box-sizing: border-box;
}

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



  #s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8 img.shogun-image,
  #s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8 {
    width: 100%;
    height: auto;
  }

  #s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8.shogun-image {
    
    
  }


.s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8 .shogun-image-content {
  
    align-items: center;
  
}

.s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d6dedfe9-7d04-4ee2-b5ff-7e00d85a9ce8.shogun-image {
  box-sizing: border-box;
}

}
#s-6e4c83d1-0904-4b60-8070-9f0bf3517910 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-left: 30px;
padding-right: 30px;
}

#s-6e4c83d1-0904-4b60-8070-9f0bf3517910 {
  background-image: url();
}

@media (max-width: 480px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-6e4c83d1-0904-4b60-8070-9f0bf3517910 {
  background-image: url(-/resize/480x/);
}

}
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
#s-6e4c83d1-0904-4b60-8070-9f0bf3517910 {
  background-image: url(-/resize/960x/);
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-6e4c83d1-0904-4b60-8070-9f0bf3517910 {
  background-image: url(-/resize/768x/);
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
#s-6e4c83d1-0904-4b60-8070-9f0bf3517910 {
  background-image: url(-/resize/1536x/);
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-6e4c83d1-0904-4b60-8070-9f0bf3517910 {
  background-image: url(-/resize/1024x/);
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
#s-6e4c83d1-0904-4b60-8070-9f0bf3517910 {
  background-image: url(-/resize/2048x/);
}

}
@media (min-width: 1025px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-6e4c83d1-0904-4b60-8070-9f0bf3517910 {
  background-image: url(-/resize/1200x/);
}

}
@media (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 2) {
#s-6e4c83d1-0904-4b60-8070-9f0bf3517910 {
  background-image: url(-/resize/2048x/);
}

}







#s-6e4c83d1-0904-4b60-8070-9f0bf3517910 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6e4c83d1-0904-4b60-8070-9f0bf3517910.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  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: ;
  font-family: ;
  text-transform: none;
  font-weight: ;
  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-2dca344b-0214-46bb-8e21-806efe9fb0db {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 500px;
text-align: center;
}

#s-2dca344b-0214-46bb-8e21-806efe9fb0db .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-173f8923-dbef-459d-9634-739ab14a38e4 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
max-width: 500px;
}

@media (min-width: 0px) {
[id="s-fdfcfe05-f8e8-4f59-8d98-fc6f9465aae5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fdfcfe05-f8e8-4f59-8d98-fc6f9465aae5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-fdfcfe05-f8e8-4f59-8d98-fc6f9465aae5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-fdfcfe05-f8e8-4f59-8d98-fc6f9465aae5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-fdfcfe05-f8e8-4f59-8d98-fc6f9465aae5"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-f88f51fe-5667-4293-90db-d33c37e807fa {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-left: 30px;
padding-right: 30px;
min-height: 660px;
}
@media (min-width: 768px) and (max-width: 991px){#s-f88f51fe-5667-4293-90db-d33c37e807fa {
  min-height: 500px;
}
}







#s-f88f51fe-5667-4293-90db-d33c37e807fa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f88f51fe-5667-4293-90db-d33c37e807fa.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7b2426b9-362a-4c09-8e8f-541d79fef65a {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 500px;
text-align: center;
}

#s-7b2426b9-362a-4c09-8e8f-541d79fef65a .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-14c03383-82ae-4d3b-90bc-22b629791b75 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
max-width: 500px;
}

#s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f {
  min-height: 660px;
max-width: 2000px;
aspect-ratio: 2000/1335;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f {
  min-height: 500px;
}
}




  #s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f img.shogun-image,
  #s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f {
    width: 100%;
    height: auto;
  }

  #s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f .shogun-image-content {
  
    align-items: center;
  
}

.s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f img.shogun-image,
  #s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f {
    width: 100%;
    height: auto;
  }

  #s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f .shogun-image-content {
  
    align-items: center;
  
}

.s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f.shogun-image {
  box-sizing: border-box;
}

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



  #s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f img.shogun-image,
  #s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f {
    width: 100%;
    height: auto;
  }

  #s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f .shogun-image-content {
  
    align-items: center;
  
}

.s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f.shogun-image {
  box-sizing: border-box;
}

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



  #s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f img.shogun-image,
  #s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f {
    width: 100%;
    height: auto;
  }

  #s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f .shogun-image-content {
  
    align-items: center;
  
}

.s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f.shogun-image {
  box-sizing: border-box;
}

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



  #s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f img.shogun-image,
  #s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f {
    width: 100%;
    height: auto;
  }

  #s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f .shogun-image-content {
  
    align-items: center;
  
}

.s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-07a16cd8-163b-4b0b-9ba1-3d0c75773e0f.shogun-image {
  box-sizing: border-box;
}

}
@media (min-width: 0px) {
[id="s-1a9fe237-fc53-4c97-a812-f000e7c490a9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1a9fe237-fc53-4c97-a812-f000e7c490a9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-1a9fe237-fc53-4c97-a812-f000e7c490a9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-1a9fe237-fc53-4c97-a812-f000e7c490a9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-33d9e132-9186-4c2b-ace1-a39d564f127a {
  min-height: 600px;
max-width: 2000px;
aspect-ratio: 2000/1213;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-33d9e132-9186-4c2b-ace1-a39d564f127a {
  min-height: 500px;
}
}




  #s-33d9e132-9186-4c2b-ace1-a39d564f127a img.shogun-image,
  #s-33d9e132-9186-4c2b-ace1-a39d564f127a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-33d9e132-9186-4c2b-ace1-a39d564f127a {
    width: 100%;
    height: auto;
  }

  #s-33d9e132-9186-4c2b-ace1-a39d564f127a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-33d9e132-9186-4c2b-ace1-a39d564f127a .shogun-image-content {
  
    align-items: center;
  
}

.s-33d9e132-9186-4c2b-ace1-a39d564f127a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33d9e132-9186-4c2b-ace1-a39d564f127a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33d9e132-9186-4c2b-ace1-a39d564f127a.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-33d9e132-9186-4c2b-ace1-a39d564f127a img.shogun-image,
  #s-33d9e132-9186-4c2b-ace1-a39d564f127a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-33d9e132-9186-4c2b-ace1-a39d564f127a {
    width: 100%;
    height: auto;
  }

  #s-33d9e132-9186-4c2b-ace1-a39d564f127a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-33d9e132-9186-4c2b-ace1-a39d564f127a .shogun-image-content {
  
    align-items: center;
  
}

.s-33d9e132-9186-4c2b-ace1-a39d564f127a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33d9e132-9186-4c2b-ace1-a39d564f127a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33d9e132-9186-4c2b-ace1-a39d564f127a.shogun-image {
  box-sizing: border-box;
}

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



  #s-33d9e132-9186-4c2b-ace1-a39d564f127a img.shogun-image,
  #s-33d9e132-9186-4c2b-ace1-a39d564f127a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-33d9e132-9186-4c2b-ace1-a39d564f127a {
    width: 100%;
    height: auto;
  }

  #s-33d9e132-9186-4c2b-ace1-a39d564f127a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-33d9e132-9186-4c2b-ace1-a39d564f127a .shogun-image-content {
  
    align-items: center;
  
}

.s-33d9e132-9186-4c2b-ace1-a39d564f127a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33d9e132-9186-4c2b-ace1-a39d564f127a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33d9e132-9186-4c2b-ace1-a39d564f127a.shogun-image {
  box-sizing: border-box;
}

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



  #s-33d9e132-9186-4c2b-ace1-a39d564f127a img.shogun-image,
  #s-33d9e132-9186-4c2b-ace1-a39d564f127a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-33d9e132-9186-4c2b-ace1-a39d564f127a {
    width: 100%;
    height: auto;
  }

  #s-33d9e132-9186-4c2b-ace1-a39d564f127a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-33d9e132-9186-4c2b-ace1-a39d564f127a .shogun-image-content {
  
    align-items: center;
  
}

.s-33d9e132-9186-4c2b-ace1-a39d564f127a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33d9e132-9186-4c2b-ace1-a39d564f127a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33d9e132-9186-4c2b-ace1-a39d564f127a.shogun-image {
  box-sizing: border-box;
}

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



  #s-33d9e132-9186-4c2b-ace1-a39d564f127a img.shogun-image,
  #s-33d9e132-9186-4c2b-ace1-a39d564f127a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-33d9e132-9186-4c2b-ace1-a39d564f127a {
    width: 100%;
    height: auto;
  }

  #s-33d9e132-9186-4c2b-ace1-a39d564f127a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-33d9e132-9186-4c2b-ace1-a39d564f127a .shogun-image-content {
  
    align-items: center;
  
}

.s-33d9e132-9186-4c2b-ace1-a39d564f127a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33d9e132-9186-4c2b-ace1-a39d564f127a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33d9e132-9186-4c2b-ace1-a39d564f127a.shogun-image {
  box-sizing: border-box;
}

}
#s-d41ea598-9d13-48c9-a6dd-b47d8f340c86 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-left: 30px;
padding-right: 30px;
min-height: 600px;
}
@media (min-width: 768px) and (max-width: 991px){#s-d41ea598-9d13-48c9-a6dd-b47d8f340c86 {
  min-height: 500px;
}
}







#s-d41ea598-9d13-48c9-a6dd-b47d8f340c86 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d41ea598-9d13-48c9-a6dd-b47d8f340c86.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7e904360-f537-4b39-8a46-a4492c08db10 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 500px;
text-align: center;
}

#s-7e904360-f537-4b39-8a46-a4492c08db10 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-72e29dff-ece7-4609-865a-bcf80b965bd0 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
max-width: 500px;
}

@media (min-width: 0px) {
[id="s-cc2ae05f-5dfb-469f-94af-814dfee23dc2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cc2ae05f-5dfb-469f-94af-814dfee23dc2"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-cc2ae05f-5dfb-469f-94af-814dfee23dc2"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-cc2ae05f-5dfb-469f-94af-814dfee23dc2"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-cc2ae05f-5dfb-469f-94af-814dfee23dc2"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-1f346b12-6292-4e26-aab8-14291115aaab {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-left: 30px;
padding-right: 30px;
min-height: 660px;
}
@media (min-width: 768px) and (max-width: 991px){#s-1f346b12-6292-4e26-aab8-14291115aaab {
  min-height: 500px;
}
}







#s-1f346b12-6292-4e26-aab8-14291115aaab > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1f346b12-6292-4e26-aab8-14291115aaab.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c5a29092-06dc-450e-ab19-74be5c6dc693 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 500px;
text-align: center;
}

#s-c5a29092-06dc-450e-ab19-74be5c6dc693 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-78d4c8e5-951d-4b16-a3dd-d7dc1479307e {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
max-width: 500px;
}

#s-f2eb2e98-a429-4fc3-acd7-bf240b642a82 {
  min-height: 660px;
max-width: 2000px;
aspect-ratio: 2000/1335;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-f2eb2e98-a429-4fc3-acd7-bf240b642a82 {
  min-height: 500px;
}
}




  #s-f2eb2e98-a429-4fc3-acd7-bf240b642a82 img.shogun-image,
  #s-f2eb2e98-a429-4fc3-acd7-bf240b642a82 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f2eb2e98-a429-4fc3-acd7-bf240b642a82 {
    width: 100%;
    height: auto;
  }

  #s-f2eb2e98-a429-4fc3-acd7-bf240b642a82 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-f2eb2e98-a429-4fc3-acd7-bf240b642a82 .shogun-image-content {
  
    align-items: center;
  
}

.s-f2eb2e98-a429-4fc3-acd7-bf240b642a82.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f2eb2e98-a429-4fc3-acd7-bf240b642a82.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f2eb2e98-a429-4fc3-acd7-bf240b642a82.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-f2eb2e98-a429-4fc3-acd7-bf240b642a82 img.shogun-image,
  #s-f2eb2e98-a429-4fc3-acd7-bf240b642a82 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f2eb2e98-a429-4fc3-acd7-bf240b642a82 {
    width: 100%;
    height: auto;
  }

  #s-f2eb2e98-a429-4fc3-acd7-bf240b642a82 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-f2eb2e98-a429-4fc3-acd7-bf240b642a82 .shogun-image-content {
  
    align-items: center;
  
}

.s-f2eb2e98-a429-4fc3-acd7-bf240b642a82.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f2eb2e98-a429-4fc3-acd7-bf240b642a82.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f2eb2e98-a429-4fc3-acd7-bf240b642a82.shogun-image {
  box-sizing: border-box;
}

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



  #s-f2eb2e98-a429-4fc3-acd7-bf240b642a82 img.shogun-image,
  #s-f2eb2e98-a429-4fc3-acd7-bf240b642a82 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f2eb2e98-a429-4fc3-acd7-bf240b642a82 {
    width: 100%;
    height: auto;
  }

  #s-f2eb2e98-a429-4fc3-acd7-bf240b642a82 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-f2eb2e98-a429-4fc3-acd7-bf240b642a82 .shogun-image-content {
  
    align-items: center;
  
}

.s-f2eb2e98-a429-4fc3-acd7-bf240b642a82.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f2eb2e98-a429-4fc3-acd7-bf240b642a82.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f2eb2e98-a429-4fc3-acd7-bf240b642a82.shogun-image {
  box-sizing: border-box;
}

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



  #s-f2eb2e98-a429-4fc3-acd7-bf240b642a82 img.shogun-image,
  #s-f2eb2e98-a429-4fc3-acd7-bf240b642a82 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f2eb2e98-a429-4fc3-acd7-bf240b642a82 {
    width: 100%;
    height: auto;
  }

  #s-f2eb2e98-a429-4fc3-acd7-bf240b642a82 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-f2eb2e98-a429-4fc3-acd7-bf240b642a82 .shogun-image-content {
  
    align-items: center;
  
}

.s-f2eb2e98-a429-4fc3-acd7-bf240b642a82.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f2eb2e98-a429-4fc3-acd7-bf240b642a82.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f2eb2e98-a429-4fc3-acd7-bf240b642a82.shogun-image {
  box-sizing: border-box;
}

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



  #s-f2eb2e98-a429-4fc3-acd7-bf240b642a82 img.shogun-image,
  #s-f2eb2e98-a429-4fc3-acd7-bf240b642a82 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f2eb2e98-a429-4fc3-acd7-bf240b642a82 {
    width: 100%;
    height: auto;
  }

  #s-f2eb2e98-a429-4fc3-acd7-bf240b642a82 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-f2eb2e98-a429-4fc3-acd7-bf240b642a82 .shogun-image-content {
  
    align-items: center;
  
}

.s-f2eb2e98-a429-4fc3-acd7-bf240b642a82.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f2eb2e98-a429-4fc3-acd7-bf240b642a82.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f2eb2e98-a429-4fc3-acd7-bf240b642a82.shogun-image {
  box-sizing: border-box;
}

}
@media (min-width: 0px) {
[id="s-5a66c5cf-67f1-4f0d-ae08-a5bf2a0b6ba6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5a66c5cf-67f1-4f0d-ae08-a5bf2a0b6ba6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-5a66c5cf-67f1-4f0d-ae08-a5bf2a0b6ba6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-5a66c5cf-67f1-4f0d-ae08-a5bf2a0b6ba6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4 {
  min-height: 660px;
max-width: 1839px;
aspect-ratio: 1839/1226;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4 {
  min-height: 500px;
}
}




  #s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4 img.shogun-image,
  #s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4 {
    width: 100%;
    height: auto;
  }

  #s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4 .shogun-image-content {
  
    align-items: center;
  
}

.s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4 img.shogun-image,
  #s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4 {
    width: 100%;
    height: auto;
  }

  #s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4 .shogun-image-content {
  
    align-items: center;
  
}

.s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4.shogun-image {
  box-sizing: border-box;
}

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



  #s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4 img.shogun-image,
  #s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4 {
    width: 100%;
    height: auto;
  }

  #s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4 .shogun-image-content {
  
    align-items: center;
  
}

.s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4.shogun-image {
  box-sizing: border-box;
}

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



  #s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4 img.shogun-image,
  #s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4 {
    width: 100%;
    height: auto;
  }

  #s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4 .shogun-image-content {
  
    align-items: center;
  
}

.s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4.shogun-image {
  box-sizing: border-box;
}

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



  #s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4 img.shogun-image,
  #s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4 {
    width: 100%;
    height: auto;
  }

  #s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4 .shogun-image-content {
  
    align-items: center;
  
}

.s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4dcb90fd-c716-44a1-b40f-e32b7c4b8bb4.shogun-image {
  box-sizing: border-box;
}

}
#s-07337af2-d20b-4323-b412-c74678029c3c {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-left: 30px;
padding-right: 30px;
min-height: 670px;
}
@media (min-width: 768px) and (max-width: 991px){#s-07337af2-d20b-4323-b412-c74678029c3c {
  min-height: 500px;
}
}







#s-07337af2-d20b-4323-b412-c74678029c3c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-07337af2-d20b-4323-b412-c74678029c3c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-34fe1f65-5bc7-444e-8b83-dc100fa62f9f {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 500px;
text-align: center;
}

#s-34fe1f65-5bc7-444e-8b83-dc100fa62f9f .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-8744c67c-485b-41f1-8fba-ab7d5079f6e6 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
max-width: 500px;
}

#s-9d92ad24-d728-426b-9e5e-b0c0136c05f3 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-9d92ad24-d728-426b-9e5e-b0c0136c05f3 {
  display: none;
}
#s-9d92ad24-d728-426b-9e5e-b0c0136c05f3, #wrap-s-9d92ad24-d728-426b-9e5e-b0c0136c05f3 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9d92ad24-d728-426b-9e5e-b0c0136c05f3 {
  display: none;
}
#s-9d92ad24-d728-426b-9e5e-b0c0136c05f3, #wrap-s-9d92ad24-d728-426b-9e5e-b0c0136c05f3 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-9d92ad24-d728-426b-9e5e-b0c0136c05f3 {
  display: none;
}
#s-9d92ad24-d728-426b-9e5e-b0c0136c05f3, #wrap-s-9d92ad24-d728-426b-9e5e-b0c0136c05f3 { display:none !important; }}







#s-9d92ad24-d728-426b-9e5e-b0c0136c05f3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9d92ad24-d728-426b-9e5e-b0c0136c05f3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e0d717a0-f74e-4fe5-816f-3c6d7de607c2 {
  margin-bottom: 2em;
background-color: rgba(21, 21, 21, 1);
}

@media (min-width: 0px) {
[id="s-e0d717a0-f74e-4fe5-816f-3c6d7de607c2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e0d717a0-f74e-4fe5-816f-3c6d7de607c2"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e0d717a0-f74e-4fe5-816f-3c6d7de607c2"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e0d717a0-f74e-4fe5-816f-3c6d7de607c2"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-2a997c89-461d-4cc0-b426-313654401bdd {
  max-width: 2000px;
aspect-ratio: 2000/1000;
text-align: center;
}





  #s-2a997c89-461d-4cc0-b426-313654401bdd img.shogun-image,
  #s-2a997c89-461d-4cc0-b426-313654401bdd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2a997c89-461d-4cc0-b426-313654401bdd {
    width: 100%;
    height: auto;
  }

  #s-2a997c89-461d-4cc0-b426-313654401bdd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2a997c89-461d-4cc0-b426-313654401bdd.shogun-image {
    
    
  }


.s-2a997c89-461d-4cc0-b426-313654401bdd .shogun-image-content {
  
    align-items: center;
  
}

.s-2a997c89-461d-4cc0-b426-313654401bdd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2a997c89-461d-4cc0-b426-313654401bdd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2a997c89-461d-4cc0-b426-313654401bdd.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-2a997c89-461d-4cc0-b426-313654401bdd img.shogun-image,
  #s-2a997c89-461d-4cc0-b426-313654401bdd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2a997c89-461d-4cc0-b426-313654401bdd {
    width: 100%;
    height: auto;
  }

  #s-2a997c89-461d-4cc0-b426-313654401bdd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2a997c89-461d-4cc0-b426-313654401bdd.shogun-image {
    
    
  }


.s-2a997c89-461d-4cc0-b426-313654401bdd .shogun-image-content {
  
    align-items: center;
  
}

.s-2a997c89-461d-4cc0-b426-313654401bdd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2a997c89-461d-4cc0-b426-313654401bdd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2a997c89-461d-4cc0-b426-313654401bdd.shogun-image {
  box-sizing: border-box;
}

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



  #s-2a997c89-461d-4cc0-b426-313654401bdd img.shogun-image,
  #s-2a997c89-461d-4cc0-b426-313654401bdd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2a997c89-461d-4cc0-b426-313654401bdd {
    width: 100%;
    height: auto;
  }

  #s-2a997c89-461d-4cc0-b426-313654401bdd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2a997c89-461d-4cc0-b426-313654401bdd.shogun-image {
    
    
  }


.s-2a997c89-461d-4cc0-b426-313654401bdd .shogun-image-content {
  
    align-items: center;
  
}

.s-2a997c89-461d-4cc0-b426-313654401bdd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2a997c89-461d-4cc0-b426-313654401bdd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2a997c89-461d-4cc0-b426-313654401bdd.shogun-image {
  box-sizing: border-box;
}

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



  #s-2a997c89-461d-4cc0-b426-313654401bdd img.shogun-image,
  #s-2a997c89-461d-4cc0-b426-313654401bdd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2a997c89-461d-4cc0-b426-313654401bdd {
    width: 100%;
    height: auto;
  }

  #s-2a997c89-461d-4cc0-b426-313654401bdd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2a997c89-461d-4cc0-b426-313654401bdd.shogun-image {
    
    
  }


.s-2a997c89-461d-4cc0-b426-313654401bdd .shogun-image-content {
  
    align-items: center;
  
}

.s-2a997c89-461d-4cc0-b426-313654401bdd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2a997c89-461d-4cc0-b426-313654401bdd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2a997c89-461d-4cc0-b426-313654401bdd.shogun-image {
  box-sizing: border-box;
}

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



  #s-2a997c89-461d-4cc0-b426-313654401bdd img.shogun-image,
  #s-2a997c89-461d-4cc0-b426-313654401bdd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2a997c89-461d-4cc0-b426-313654401bdd {
    width: 100%;
    height: auto;
  }

  #s-2a997c89-461d-4cc0-b426-313654401bdd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2a997c89-461d-4cc0-b426-313654401bdd.shogun-image {
    
    
  }


.s-2a997c89-461d-4cc0-b426-313654401bdd .shogun-image-content {
  
    align-items: center;
  
}

.s-2a997c89-461d-4cc0-b426-313654401bdd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2a997c89-461d-4cc0-b426-313654401bdd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2a997c89-461d-4cc0-b426-313654401bdd.shogun-image {
  box-sizing: border-box;
}

}
#s-0dfdba2e-730b-4cdc-8ce3-261fe5a6194a {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-left: 30px;
padding-right: 30px;
min-height: 500px;
}
@media (min-width: 768px) and (max-width: 991px){#s-0dfdba2e-730b-4cdc-8ce3-261fe5a6194a {
  min-height: 192px;
}
}@media (max-width: 767px){#s-0dfdba2e-730b-4cdc-8ce3-261fe5a6194a {
  min-height: 250px;
}
}
#s-0dfdba2e-730b-4cdc-8ce3-261fe5a6194a {
  background-image: url();
}

@media (max-width: 480px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-0dfdba2e-730b-4cdc-8ce3-261fe5a6194a {
  background-image: url(-/resize/480x/);
}

}
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
#s-0dfdba2e-730b-4cdc-8ce3-261fe5a6194a {
  background-image: url(-/resize/960x/);
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-0dfdba2e-730b-4cdc-8ce3-261fe5a6194a {
  background-image: url(-/resize/768x/);
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
#s-0dfdba2e-730b-4cdc-8ce3-261fe5a6194a {
  background-image: url(-/resize/1536x/);
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-0dfdba2e-730b-4cdc-8ce3-261fe5a6194a {
  background-image: url(-/resize/1024x/);
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
#s-0dfdba2e-730b-4cdc-8ce3-261fe5a6194a {
  background-image: url(-/resize/2048x/);
}

}
@media (min-width: 1025px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-0dfdba2e-730b-4cdc-8ce3-261fe5a6194a {
  background-image: url(-/resize/1200x/);
}

}
@media (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 2) {
#s-0dfdba2e-730b-4cdc-8ce3-261fe5a6194a {
  background-image: url(-/resize/2048x/);
}

}







#s-0dfdba2e-730b-4cdc-8ce3-261fe5a6194a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0dfdba2e-730b-4cdc-8ce3-261fe5a6194a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1c977a77-0d65-469c-8d48-8971a828edf3 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 500px;
text-align: center;
}

#s-1c977a77-0d65-469c-8d48-8971a828edf3 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-8086c69d-0a7b-46a4-a39d-d7405f90e493 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
max-width: 500px;
}

#s-752b3605-7c0a-45ce-bc95-2219c7fdcf00 {
  margin-bottom: 2em;
min-height: 50px;
}








#s-752b3605-7c0a-45ce-bc95-2219c7fdcf00 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-752b3605-7c0a-45ce-bc95-2219c7fdcf00.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4e6c70ad-d33e-4695-a43b-07b40b356015 {
  min-height: 600px;
max-width: 2000px;
aspect-ratio: 2000/1335;
text-align: center;
}





  #s-4e6c70ad-d33e-4695-a43b-07b40b356015 img.shogun-image,
  #s-4e6c70ad-d33e-4695-a43b-07b40b356015 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4e6c70ad-d33e-4695-a43b-07b40b356015 {
    width: 100%;
    height: auto;
  }

  #s-4e6c70ad-d33e-4695-a43b-07b40b356015 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-4e6c70ad-d33e-4695-a43b-07b40b356015 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-4e6c70ad-d33e-4695-a43b-07b40b356015.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4e6c70ad-d33e-4695-a43b-07b40b356015.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4e6c70ad-d33e-4695-a43b-07b40b356015.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-4e6c70ad-d33e-4695-a43b-07b40b356015 img.shogun-image,
  #s-4e6c70ad-d33e-4695-a43b-07b40b356015 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4e6c70ad-d33e-4695-a43b-07b40b356015 {
    width: 100%;
    height: auto;
  }

  #s-4e6c70ad-d33e-4695-a43b-07b40b356015 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-4e6c70ad-d33e-4695-a43b-07b40b356015 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-4e6c70ad-d33e-4695-a43b-07b40b356015.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4e6c70ad-d33e-4695-a43b-07b40b356015.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4e6c70ad-d33e-4695-a43b-07b40b356015.shogun-image {
  box-sizing: border-box;
}

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



  #s-4e6c70ad-d33e-4695-a43b-07b40b356015 img.shogun-image,
  #s-4e6c70ad-d33e-4695-a43b-07b40b356015 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4e6c70ad-d33e-4695-a43b-07b40b356015 {
    width: 100%;
    height: auto;
  }

  #s-4e6c70ad-d33e-4695-a43b-07b40b356015 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-4e6c70ad-d33e-4695-a43b-07b40b356015 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-4e6c70ad-d33e-4695-a43b-07b40b356015.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4e6c70ad-d33e-4695-a43b-07b40b356015.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4e6c70ad-d33e-4695-a43b-07b40b356015.shogun-image {
  box-sizing: border-box;
}

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



  #s-4e6c70ad-d33e-4695-a43b-07b40b356015 img.shogun-image,
  #s-4e6c70ad-d33e-4695-a43b-07b40b356015 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4e6c70ad-d33e-4695-a43b-07b40b356015 {
    width: 100%;
    height: auto;
  }

  #s-4e6c70ad-d33e-4695-a43b-07b40b356015 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-4e6c70ad-d33e-4695-a43b-07b40b356015 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-4e6c70ad-d33e-4695-a43b-07b40b356015.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4e6c70ad-d33e-4695-a43b-07b40b356015.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4e6c70ad-d33e-4695-a43b-07b40b356015.shogun-image {
  box-sizing: border-box;
}

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



  #s-4e6c70ad-d33e-4695-a43b-07b40b356015 img.shogun-image,
  #s-4e6c70ad-d33e-4695-a43b-07b40b356015 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4e6c70ad-d33e-4695-a43b-07b40b356015 {
    width: 100%;
    height: auto;
  }

  #s-4e6c70ad-d33e-4695-a43b-07b40b356015 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-4e6c70ad-d33e-4695-a43b-07b40b356015 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-4e6c70ad-d33e-4695-a43b-07b40b356015.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4e6c70ad-d33e-4695-a43b-07b40b356015.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4e6c70ad-d33e-4695-a43b-07b40b356015.shogun-image {
  box-sizing: border-box;
}

}
#s-4d1522e3-b240-49ed-b475-c6c87ca71504 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-left: 20px;
padding-right: 20px;
min-height: 130px;
background-color: rgba(0, 0, 0, 0.5);
}








#s-4d1522e3-b240-49ed-b475-c6c87ca71504 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4d1522e3-b240-49ed-b475-c6c87ca71504.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-49a5073d-3743-430f-8018-3d88d71d203c {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 500px;
text-align: center;
}

#s-49a5073d-3743-430f-8018-3d88d71d203c .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-6186c9f5-012d-4037-a165-c29386e1ea04 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
max-width: 500px;
}

#s-f103d3d4-cad9-4e91-9e65-e2503b2d50ae {
  margin-bottom: 2em;
min-height: 50px;
}








#s-f103d3d4-cad9-4e91-9e65-e2503b2d50ae > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f103d3d4-cad9-4e91-9e65-e2503b2d50ae.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef {
  min-height: 600px;
max-width: 2000px;
aspect-ratio: 2000/1213;
text-align: center;
}





  #s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef img.shogun-image,
  #s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef {
    width: 100%;
    height: auto;
  }

  #s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef img.shogun-image,
  #s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef {
    width: 100%;
    height: auto;
  }

  #s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef.shogun-image {
  box-sizing: border-box;
}

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



  #s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef img.shogun-image,
  #s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef {
    width: 100%;
    height: auto;
  }

  #s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef.shogun-image {
  box-sizing: border-box;
}

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



  #s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef img.shogun-image,
  #s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef {
    width: 100%;
    height: auto;
  }

  #s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef.shogun-image {
  box-sizing: border-box;
}

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



  #s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef img.shogun-image,
  #s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef {
    width: 100%;
    height: auto;
  }

  #s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1bec3f4d-5e6f-4793-aa7a-3c1abf39c4ef.shogun-image {
  box-sizing: border-box;
}

}
#s-01c0c745-8028-4f79-b253-83bba3f8e8ad {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-left: 20px;
padding-right: 20px;
min-height: 175px;
background-color: rgba(0, 0, 0, 0.5);
}








#s-01c0c745-8028-4f79-b253-83bba3f8e8ad > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-01c0c745-8028-4f79-b253-83bba3f8e8ad.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-b359eebc-9030-4984-929a-a3a78c2e6f2f {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 500px;
text-align: center;
}

#s-b359eebc-9030-4984-929a-a3a78c2e6f2f .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-5bb4599d-eef1-4c52-8cc3-c7c8cdf915d9 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
max-width: 500px;
}

#s-941c1bee-3d3c-46d7-a8af-eb01438809a8 {
  margin-bottom: 2em;
min-height: 50px;
}








#s-941c1bee-3d3c-46d7-a8af-eb01438809a8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-941c1bee-3d3c-46d7-a8af-eb01438809a8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2749c0ae-db57-4bf7-a65c-1ea097bc5588 {
  min-height: 600px;
max-width: 1773px;
aspect-ratio: 1773/1183;
text-align: center;
}





  #s-2749c0ae-db57-4bf7-a65c-1ea097bc5588 img.shogun-image,
  #s-2749c0ae-db57-4bf7-a65c-1ea097bc5588 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2749c0ae-db57-4bf7-a65c-1ea097bc5588 {
    width: 100%;
    height: auto;
  }

  #s-2749c0ae-db57-4bf7-a65c-1ea097bc5588 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-2749c0ae-db57-4bf7-a65c-1ea097bc5588 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-2749c0ae-db57-4bf7-a65c-1ea097bc5588.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2749c0ae-db57-4bf7-a65c-1ea097bc5588.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2749c0ae-db57-4bf7-a65c-1ea097bc5588.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-2749c0ae-db57-4bf7-a65c-1ea097bc5588 img.shogun-image,
  #s-2749c0ae-db57-4bf7-a65c-1ea097bc5588 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2749c0ae-db57-4bf7-a65c-1ea097bc5588 {
    width: 100%;
    height: auto;
  }

  #s-2749c0ae-db57-4bf7-a65c-1ea097bc5588 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-2749c0ae-db57-4bf7-a65c-1ea097bc5588 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-2749c0ae-db57-4bf7-a65c-1ea097bc5588.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2749c0ae-db57-4bf7-a65c-1ea097bc5588.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2749c0ae-db57-4bf7-a65c-1ea097bc5588.shogun-image {
  box-sizing: border-box;
}

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



  #s-2749c0ae-db57-4bf7-a65c-1ea097bc5588 img.shogun-image,
  #s-2749c0ae-db57-4bf7-a65c-1ea097bc5588 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2749c0ae-db57-4bf7-a65c-1ea097bc5588 {
    width: 100%;
    height: auto;
  }

  #s-2749c0ae-db57-4bf7-a65c-1ea097bc5588 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-2749c0ae-db57-4bf7-a65c-1ea097bc5588 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-2749c0ae-db57-4bf7-a65c-1ea097bc5588.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2749c0ae-db57-4bf7-a65c-1ea097bc5588.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2749c0ae-db57-4bf7-a65c-1ea097bc5588.shogun-image {
  box-sizing: border-box;
}

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



  #s-2749c0ae-db57-4bf7-a65c-1ea097bc5588 img.shogun-image,
  #s-2749c0ae-db57-4bf7-a65c-1ea097bc5588 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2749c0ae-db57-4bf7-a65c-1ea097bc5588 {
    width: 100%;
    height: auto;
  }

  #s-2749c0ae-db57-4bf7-a65c-1ea097bc5588 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-2749c0ae-db57-4bf7-a65c-1ea097bc5588 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-2749c0ae-db57-4bf7-a65c-1ea097bc5588.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2749c0ae-db57-4bf7-a65c-1ea097bc5588.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2749c0ae-db57-4bf7-a65c-1ea097bc5588.shogun-image {
  box-sizing: border-box;
}

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



  #s-2749c0ae-db57-4bf7-a65c-1ea097bc5588 img.shogun-image,
  #s-2749c0ae-db57-4bf7-a65c-1ea097bc5588 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2749c0ae-db57-4bf7-a65c-1ea097bc5588 {
    width: 100%;
    height: auto;
  }

  #s-2749c0ae-db57-4bf7-a65c-1ea097bc5588 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-2749c0ae-db57-4bf7-a65c-1ea097bc5588 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-2749c0ae-db57-4bf7-a65c-1ea097bc5588.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2749c0ae-db57-4bf7-a65c-1ea097bc5588.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2749c0ae-db57-4bf7-a65c-1ea097bc5588.shogun-image {
  box-sizing: border-box;
}

}
#s-f9cc366c-88a3-40a2-a595-5f202c20f62e {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-left: 20px;
padding-right: 20px;
min-height: 175px;
background-color: rgba(0, 0, 0, 0.5);
}








#s-f9cc366c-88a3-40a2-a595-5f202c20f62e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f9cc366c-88a3-40a2-a595-5f202c20f62e.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-9152fb50-69d2-47e9-8513-c5a76815e9aa {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 500px;
text-align: center;
}

#s-9152fb50-69d2-47e9-8513-c5a76815e9aa .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-be5dd495-ae15-4039-a848-2ba9f86bb871 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
max-width: 500px;
}

#s-42a4a97e-3438-4d56-afe5-3a0f922637cb {
  margin-bottom: 2em;
min-height: 50px;
}








#s-42a4a97e-3438-4d56-afe5-3a0f922637cb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-42a4a97e-3438-4d56-afe5-3a0f922637cb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-46c51bd0-4270-4d12-9954-eac9c1f9ad38 {
  min-height: 500px;
max-width: 1645px;
aspect-ratio: 1645/1096;
text-align: center;
}





  #s-46c51bd0-4270-4d12-9954-eac9c1f9ad38 img.shogun-image,
  #s-46c51bd0-4270-4d12-9954-eac9c1f9ad38 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-46c51bd0-4270-4d12-9954-eac9c1f9ad38 {
    width: 100%;
    height: auto;
  }

  #s-46c51bd0-4270-4d12-9954-eac9c1f9ad38 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-46c51bd0-4270-4d12-9954-eac9c1f9ad38 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-46c51bd0-4270-4d12-9954-eac9c1f9ad38.shg-align-container {
  display: flex;
  justify-content: center
}

.s-46c51bd0-4270-4d12-9954-eac9c1f9ad38.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-46c51bd0-4270-4d12-9954-eac9c1f9ad38.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-46c51bd0-4270-4d12-9954-eac9c1f9ad38 img.shogun-image,
  #s-46c51bd0-4270-4d12-9954-eac9c1f9ad38 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-46c51bd0-4270-4d12-9954-eac9c1f9ad38 {
    width: 100%;
    height: auto;
  }

  #s-46c51bd0-4270-4d12-9954-eac9c1f9ad38 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-46c51bd0-4270-4d12-9954-eac9c1f9ad38 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-46c51bd0-4270-4d12-9954-eac9c1f9ad38.shg-align-container {
  display: flex;
  justify-content: center
}

.s-46c51bd0-4270-4d12-9954-eac9c1f9ad38.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-46c51bd0-4270-4d12-9954-eac9c1f9ad38.shogun-image {
  box-sizing: border-box;
}

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



  #s-46c51bd0-4270-4d12-9954-eac9c1f9ad38 img.shogun-image,
  #s-46c51bd0-4270-4d12-9954-eac9c1f9ad38 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-46c51bd0-4270-4d12-9954-eac9c1f9ad38 {
    width: 100%;
    height: auto;
  }

  #s-46c51bd0-4270-4d12-9954-eac9c1f9ad38 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-46c51bd0-4270-4d12-9954-eac9c1f9ad38 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-46c51bd0-4270-4d12-9954-eac9c1f9ad38.shg-align-container {
  display: flex;
  justify-content: center
}

.s-46c51bd0-4270-4d12-9954-eac9c1f9ad38.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-46c51bd0-4270-4d12-9954-eac9c1f9ad38.shogun-image {
  box-sizing: border-box;
}

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



  #s-46c51bd0-4270-4d12-9954-eac9c1f9ad38 img.shogun-image,
  #s-46c51bd0-4270-4d12-9954-eac9c1f9ad38 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-46c51bd0-4270-4d12-9954-eac9c1f9ad38 {
    width: 100%;
    height: auto;
  }

  #s-46c51bd0-4270-4d12-9954-eac9c1f9ad38 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-46c51bd0-4270-4d12-9954-eac9c1f9ad38 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-46c51bd0-4270-4d12-9954-eac9c1f9ad38.shg-align-container {
  display: flex;
  justify-content: center
}

.s-46c51bd0-4270-4d12-9954-eac9c1f9ad38.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-46c51bd0-4270-4d12-9954-eac9c1f9ad38.shogun-image {
  box-sizing: border-box;
}

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



  #s-46c51bd0-4270-4d12-9954-eac9c1f9ad38 img.shogun-image,
  #s-46c51bd0-4270-4d12-9954-eac9c1f9ad38 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-46c51bd0-4270-4d12-9954-eac9c1f9ad38 {
    width: 100%;
    height: auto;
  }

  #s-46c51bd0-4270-4d12-9954-eac9c1f9ad38 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-46c51bd0-4270-4d12-9954-eac9c1f9ad38 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-46c51bd0-4270-4d12-9954-eac9c1f9ad38.shg-align-container {
  display: flex;
  justify-content: center
}

.s-46c51bd0-4270-4d12-9954-eac9c1f9ad38.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-46c51bd0-4270-4d12-9954-eac9c1f9ad38.shogun-image {
  box-sizing: border-box;
}

}
#s-43a7f8d4-3187-4e49-9096-f4d8f0c3377c {
  margin-left: auto;
margin-right: auto;
padding-left: 20px;
padding-right: 20px;
min-height: 130px;
background-color: rgba(0, 0, 0, 0.5);
}








#s-43a7f8d4-3187-4e49-9096-f4d8f0c3377c > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0;
}#s-43a7f8d4-3187-4e49-9096-f4d8f0c3377c.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-7d3d0c85-e7fc-43dd-855d-2d261ac463da {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 500px;
text-align: center;
}

#s-7d3d0c85-e7fc-43dd-855d-2d261ac463da .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-528c07e0-5f8a-4d98-9532-d0b12673863a {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
max-width: 500px;
}

/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

@media (max-width: 1024px) {
  .shg-c,
  .shg-box {
    background-attachment: scroll !important;
  }
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape) {
  .shg-box {
    background-attachment: scroll !important;
  }
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

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

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}

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

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

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

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

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

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

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

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

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

.shogun-lazyload-bg-image {
  display: none;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}
/* <-- User Content Animations */

.shogun-form-error-msg, .shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}

.shg-c:before,.shg-c:after{content:" ";display:table}.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:#000;background-color:rgba(0,0,0,0.85)}.shg-lightbox.hidden{display:none !important}.shg-lightbox .shg-lightbox-content{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:100%;text-align:center}.shg-lightbox .shg-lightbox-close{position:absolute;right:0;padding:5px 0;color:#fff;font-size:45px;margin-right:10px;line-height:30px;user-select:none;cursor:pointer;z-index:1}.shg-lightbox .shg-lightbox-image-container{padding:25px}.shg-lightbox .shg-lightbox-image{margin:auto;max-height:90vh;max-width:100%}.shg-lightbox .shg-lightbox-close:hover,.shg-lightbox .shg-lightbox-close:focus{color:#a2a2a2;text-decoration:none;cursor:pointer}.shg-lightbox .shg-lightbox-nav{cursor:pointer;position:absolute;top:50%;width:35px;height:100px;background-size:contain;background-repeat:no-repeat;background-position:center;transform:translate(0%, -50%);z-index:1}.shg-lightbox .shg-lightbox-nav.hidden{display:none !important}.shg-lightbox .shg-lightbox-nav.shg-nav-left{left:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==)}.shg-lightbox .shg-lightbox-nav.shg-nav-right{right:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+)}@media screen and (min-width: 769px){.shg-lightbox .shg-lightbox-image-container{padding:50px}}.shogun-lazyload:not([src]),.shogun-lazyloading:not([src]){opacity:0}.shogun-lazyloaded{opacity:1;transition:opacity 300ms}.shogun-lazyload-bg-image{display:none}.shogun-root a:empty,.shogun-root article:empty,.shogun-root dl:empty,.shogun-root h1:empty,.shogun-root h2:empty,.shogun-root h3:empty,.shogun-root h4:empty,.shogun-root h5:empty,.shogun-root h6:empty,.shogun-root p:empty,.shogun-root section:empty,.shogun-root ul:empty{display:unset}.shogun-root div:empty{display:inline-block}[data-animations*="enterviewport"][data-animations*="fadeIn"],[data-animations*="enterviewport"][data-animations*="zoomIn"]{opacity:0}.shogun-form-error-msg,.shogun-form-field-error-msg{display:flex;align-items:center;color:#dc143c}.shogun-badge{margin-bottom:50px}.shogun-badge-container{position:fixed;right:0;bottom:0;margin-bottom:-10px}
