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

.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-415e4255-1e8a-4823-8621-482a89c175fd {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
min-height: 50px;
max-width: 1200px;
background-color: rgba(11, 25, 64, 1);
}
@media (max-width: 767px){#s-415e4255-1e8a-4823-8621-482a89c175fd {
  margin-top: 0px;
margin-bottom: 0px;
}
}







#s-415e4255-1e8a-4823-8621-482a89c175fd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-415e4255-1e8a-4823-8621-482a89c175fd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

#s-30238816-700d-4c87-be2a-50552a9671ba {
  margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
}
@media (max-width: 767px){#s-30238816-700d-4c87-be2a-50552a9671ba {
  margin-left: 5px;
margin-right: 5px;
}
}
#s-30238816-700d-4c87-be2a-50552a9671ba .shg-sld-dot {
  background-color: rgba(255, 254, 254, 1);
}

#s-30238816-700d-4c87-be2a-50552a9671ba .shg-sld-nav-button.shg-sld-left,
#s-30238816-700d-4c87-be2a-50552a9671ba .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 254, 254, 1);
}

#s-8b1cfd35-ec72-464a-bb89-74703832defe {
  min-height: 50px;
}








#s-8b1cfd35-ec72-464a-bb89-74703832defe > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8b1cfd35-ec72-464a-bb89-74703832defe.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;
}

/* 
  Shopify base css adds display none to empty divs
  This causes items in the second column position to shift when
  the first column is empty. In order to overwrite that style,
  we have to manually set empty divs in the column to display block 
  so the whole element holds its positioning on published pages.
*/

.shg-row > div:empty {
  display: block;
}

#s-3c48cf1a-9837-4a3e-97bf-e804006f77d1 {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-3c48cf1a-9837-4a3e-97bf-e804006f77d1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3c48cf1a-9837-4a3e-97bf-e804006f77d1"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-3c48cf1a-9837-4a3e-97bf-e804006f77d1"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-3c48cf1a-9837-4a3e-97bf-e804006f77d1"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-4df6f31e-95a4-443b-ba1c-8b5da04dd046 {
  margin-left: 20px;
margin-right: 20px;
min-height: 50px;
}








#s-4df6f31e-95a4-443b-ba1c-8b5da04dd046 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4df6f31e-95a4-443b-ba1c-8b5da04dd046.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-5bbb3759-e663-4447-ae83-0cd000a891f2 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-5bbb3759-e663-4447-ae83-0cd000a891f2 {
  display: none;
}
#s-5bbb3759-e663-4447-ae83-0cd000a891f2, #wrap-s-5bbb3759-e663-4447-ae83-0cd000a891f2, #wrap-content-s-5bbb3759-e663-4447-ae83-0cd000a891f2 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5bbb3759-e663-4447-ae83-0cd000a891f2 {
  display: none;
}
#s-5bbb3759-e663-4447-ae83-0cd000a891f2, #wrap-s-5bbb3759-e663-4447-ae83-0cd000a891f2, #wrap-content-s-5bbb3759-e663-4447-ae83-0cd000a891f2 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-5bbb3759-e663-4447-ae83-0cd000a891f2 {
  display: none;
}
#s-5bbb3759-e663-4447-ae83-0cd000a891f2, #wrap-s-5bbb3759-e663-4447-ae83-0cd000a891f2, #wrap-content-s-5bbb3759-e663-4447-ae83-0cd000a891f2 { display: none !important; }}







#s-5bbb3759-e663-4447-ae83-0cd000a891f2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5bbb3759-e663-4447-ae83-0cd000a891f2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-content {
  display: flex;
  flex-direction: column;
  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-42dd2e37-5cca-4f9d-9753-d117e2652fa2 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
max-width: 487px;
text-align: center;
}

#s-42dd2e37-5cca-4f9d-9753-d117e2652fa2 {
  overflow: hidden;
  
  
      max-width: 487px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-42dd2e37-5cca-4f9d-9753-d117e2652fa2 .shogun-image-content {
  
    justify-content: center;
  
}

#s-5191f434-dcda-4ad8-b51d-9f8e548d90a5 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-28ae66c8-8d5d-4a1e-a312-363565797318 {
  margin-right: 20px;
min-height: 50px;
}
@media (max-width: 767px){#s-28ae66c8-8d5d-4a1e-a312-363565797318 {
  display: none;
}
#s-28ae66c8-8d5d-4a1e-a312-363565797318, #wrap-s-28ae66c8-8d5d-4a1e-a312-363565797318, #wrap-content-s-28ae66c8-8d5d-4a1e-a312-363565797318 { display: none !important; }}







#s-28ae66c8-8d5d-4a1e-a312-363565797318 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-28ae66c8-8d5d-4a1e-a312-363565797318.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a56944c2-2d0d-4127-a781-ed3644078ded {
  margin-top: 20px;
margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
max-width: 487px;
text-align: center;
}

#s-a56944c2-2d0d-4127-a781-ed3644078ded {
  overflow: hidden;
  
  
      max-width: 487px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-a56944c2-2d0d-4127-a781-ed3644078ded .shogun-image-content {
  
    justify-content: center;
  
}

#s-024b6786-7b0f-4dd4-8c49-877ac30104e3 {
  min-height: 50px;
}








#s-024b6786-7b0f-4dd4-8c49-877ac30104e3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-024b6786-7b0f-4dd4-8c49-877ac30104e3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-eda5e9c1-e705-4ec9-a7e6-38cc6faabb7d {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-eda5e9c1-e705-4ec9-a7e6-38cc6faabb7d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-eda5e9c1-e705-4ec9-a7e6-38cc6faabb7d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-eda5e9c1-e705-4ec9-a7e6-38cc6faabb7d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-eda5e9c1-e705-4ec9-a7e6-38cc6faabb7d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-0dec8f26-1ad1-47a7-b0e8-bc1f7947b567 {
  margin-left: 20px;
margin-right: 20px;
min-height: 50px;
}








#s-0dec8f26-1ad1-47a7-b0e8-bc1f7947b567 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0dec8f26-1ad1-47a7-b0e8-bc1f7947b567.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c88b396a-c2a0-491b-b039-b06d7724b36d {
  min-height: 50px;
}
@media (min-width: 1200px){#s-c88b396a-c2a0-491b-b039-b06d7724b36d {
  display: none;
}
#s-c88b396a-c2a0-491b-b039-b06d7724b36d, #wrap-s-c88b396a-c2a0-491b-b039-b06d7724b36d, #wrap-content-s-c88b396a-c2a0-491b-b039-b06d7724b36d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c88b396a-c2a0-491b-b039-b06d7724b36d {
  display: none;
}
#s-c88b396a-c2a0-491b-b039-b06d7724b36d, #wrap-s-c88b396a-c2a0-491b-b039-b06d7724b36d, #wrap-content-s-c88b396a-c2a0-491b-b039-b06d7724b36d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c88b396a-c2a0-491b-b039-b06d7724b36d {
  display: none;
}
#s-c88b396a-c2a0-491b-b039-b06d7724b36d, #wrap-s-c88b396a-c2a0-491b-b039-b06d7724b36d, #wrap-content-s-c88b396a-c2a0-491b-b039-b06d7724b36d { display: none !important; }}







#s-c88b396a-c2a0-491b-b039-b06d7724b36d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c88b396a-c2a0-491b-b039-b06d7724b36d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e722e416-21df-410f-851f-006003046eb7 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
max-width: 487px;
text-align: center;
}

#s-e722e416-21df-410f-851f-006003046eb7 {
  overflow: hidden;
  
  
      max-width: 487px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-e722e416-21df-410f-851f-006003046eb7 .shogun-image-content {
  
    justify-content: center;
  
}

#s-43bd402d-5d41-48ce-8ab0-1ddccf76cdec {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-9d07e80a-72d8-41d0-a8f0-0e80b676890f {
  margin-right: 20px;
min-height: 50px;
}
@media (max-width: 767px){#s-9d07e80a-72d8-41d0-a8f0-0e80b676890f {
  display: none;
}
#s-9d07e80a-72d8-41d0-a8f0-0e80b676890f, #wrap-s-9d07e80a-72d8-41d0-a8f0-0e80b676890f, #wrap-content-s-9d07e80a-72d8-41d0-a8f0-0e80b676890f { display: none !important; }}







#s-9d07e80a-72d8-41d0-a8f0-0e80b676890f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9d07e80a-72d8-41d0-a8f0-0e80b676890f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3de8d78f-1f63-41ce-a29a-2e9a7a7dcaaf {
  margin-top: 20px;
margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
max-width: 487px;
text-align: center;
}

#s-3de8d78f-1f63-41ce-a29a-2e9a7a7dcaaf {
  overflow: hidden;
  
  
      max-width: 487px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-3de8d78f-1f63-41ce-a29a-2e9a7a7dcaaf .shogun-image-content {
  
    justify-content: center;
  
}

#s-8dd0c8d7-c1e5-4a2f-8ab3-3e3176e6764f {
  min-height: 50px;
}








#s-8dd0c8d7-c1e5-4a2f-8ab3-3e3176e6764f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8dd0c8d7-c1e5-4a2f-8ab3-3e3176e6764f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-00935ee3-f59a-4a6a-9326-d43905275d5d {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-00935ee3-f59a-4a6a-9326-d43905275d5d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-00935ee3-f59a-4a6a-9326-d43905275d5d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-00935ee3-f59a-4a6a-9326-d43905275d5d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-00935ee3-f59a-4a6a-9326-d43905275d5d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-c57c1264-c6c8-41b3-9e28-45d00f1a91b0 {
  margin-left: 20px;
margin-right: 20px;
min-height: 50px;
}








#s-c57c1264-c6c8-41b3-9e28-45d00f1a91b0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c57c1264-c6c8-41b3-9e28-45d00f1a91b0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f2412d60-b056-44b8-b51c-074c4ed9d5f0 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-f2412d60-b056-44b8-b51c-074c4ed9d5f0 {
  display: none;
}
#s-f2412d60-b056-44b8-b51c-074c4ed9d5f0, #wrap-s-f2412d60-b056-44b8-b51c-074c4ed9d5f0, #wrap-content-s-f2412d60-b056-44b8-b51c-074c4ed9d5f0 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f2412d60-b056-44b8-b51c-074c4ed9d5f0 {
  display: none;
}
#s-f2412d60-b056-44b8-b51c-074c4ed9d5f0, #wrap-s-f2412d60-b056-44b8-b51c-074c4ed9d5f0, #wrap-content-s-f2412d60-b056-44b8-b51c-074c4ed9d5f0 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f2412d60-b056-44b8-b51c-074c4ed9d5f0 {
  display: none;
}
#s-f2412d60-b056-44b8-b51c-074c4ed9d5f0, #wrap-s-f2412d60-b056-44b8-b51c-074c4ed9d5f0, #wrap-content-s-f2412d60-b056-44b8-b51c-074c4ed9d5f0 { display: none !important; }}







#s-f2412d60-b056-44b8-b51c-074c4ed9d5f0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f2412d60-b056-44b8-b51c-074c4ed9d5f0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-36de4977-f3d4-4f93-a30b-51cdda124c33 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
max-width: 487px;
text-align: center;
}

#s-36de4977-f3d4-4f93-a30b-51cdda124c33 {
  overflow: hidden;
  
  
      max-width: 487px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-36de4977-f3d4-4f93-a30b-51cdda124c33 .shogun-image-content {
  
    justify-content: center;
  
}

#s-dfcf364b-ae0f-4738-b438-3608b7f3a01b {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-6dd06827-b35a-446c-8339-ccc07397bd77 {
  margin-right: 20px;
min-height: 50px;
}
@media (max-width: 767px){#s-6dd06827-b35a-446c-8339-ccc07397bd77 {
  display: none;
}
#s-6dd06827-b35a-446c-8339-ccc07397bd77, #wrap-s-6dd06827-b35a-446c-8339-ccc07397bd77, #wrap-content-s-6dd06827-b35a-446c-8339-ccc07397bd77 { display: none !important; }}







#s-6dd06827-b35a-446c-8339-ccc07397bd77 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6dd06827-b35a-446c-8339-ccc07397bd77.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2b9fe666-36f6-4b1c-a27f-efb6dc5b13f7 {
  margin-top: 20px;
margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
max-width: 487px;
text-align: center;
}

#s-2b9fe666-36f6-4b1c-a27f-efb6dc5b13f7 {
  overflow: hidden;
  
  
      max-width: 487px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-2b9fe666-36f6-4b1c-a27f-efb6dc5b13f7 .shogun-image-content {
  
    justify-content: center;
  
}

#s-b1bd344e-bfa7-4e93-bb13-635739a6abf0 {
  min-height: 50px;
}








#s-b1bd344e-bfa7-4e93-bb13-635739a6abf0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b1bd344e-bfa7-4e93-bb13-635739a6abf0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-55439672-9427-4511-bbbb-a77b959bc2c8 {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-55439672-9427-4511-bbbb-a77b959bc2c8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-55439672-9427-4511-bbbb-a77b959bc2c8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-55439672-9427-4511-bbbb-a77b959bc2c8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-55439672-9427-4511-bbbb-a77b959bc2c8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-b0a8aca5-b09b-416b-ac5c-fbe04f947cd6 {
  margin-left: 20px;
margin-right: 20px;
min-height: 50px;
}
@media (max-width: 767px){#s-b0a8aca5-b09b-416b-ac5c-fbe04f947cd6 {
  margin-left: 0px;
margin-right: 0px;
}
}







#s-b0a8aca5-b09b-416b-ac5c-fbe04f947cd6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b0a8aca5-b09b-416b-ac5c-fbe04f947cd6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7b854098-4688-4472-9bc9-73bdc5fe63d0 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-7b854098-4688-4472-9bc9-73bdc5fe63d0 {
  display: none;
}
#s-7b854098-4688-4472-9bc9-73bdc5fe63d0, #wrap-s-7b854098-4688-4472-9bc9-73bdc5fe63d0, #wrap-content-s-7b854098-4688-4472-9bc9-73bdc5fe63d0 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7b854098-4688-4472-9bc9-73bdc5fe63d0 {
  display: none;
}
#s-7b854098-4688-4472-9bc9-73bdc5fe63d0, #wrap-s-7b854098-4688-4472-9bc9-73bdc5fe63d0, #wrap-content-s-7b854098-4688-4472-9bc9-73bdc5fe63d0 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7b854098-4688-4472-9bc9-73bdc5fe63d0 {
  display: none;
}
#s-7b854098-4688-4472-9bc9-73bdc5fe63d0, #wrap-s-7b854098-4688-4472-9bc9-73bdc5fe63d0, #wrap-content-s-7b854098-4688-4472-9bc9-73bdc5fe63d0 { display: none !important; }}







#s-7b854098-4688-4472-9bc9-73bdc5fe63d0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7b854098-4688-4472-9bc9-73bdc5fe63d0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0087c462-7381-4f2e-b9bf-ee761b8a2ad8 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
max-width: 487px;
text-align: center;
}

#s-0087c462-7381-4f2e-b9bf-ee761b8a2ad8 {
  overflow: hidden;
  
  
      max-width: 487px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-0087c462-7381-4f2e-b9bf-ee761b8a2ad8 .shogun-image-content {
  
    justify-content: center;
  
}

#s-29887629-9306-457a-bb35-c864d2ca4b3b {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-c8211f53-482f-4cd4-bf5f-dd87953612e2 {
  margin-right: 20px;
min-height: 50px;
}
@media (max-width: 767px){#s-c8211f53-482f-4cd4-bf5f-dd87953612e2 {
  display: none;
}
#s-c8211f53-482f-4cd4-bf5f-dd87953612e2, #wrap-s-c8211f53-482f-4cd4-bf5f-dd87953612e2, #wrap-content-s-c8211f53-482f-4cd4-bf5f-dd87953612e2 { display: none !important; }}







#s-c8211f53-482f-4cd4-bf5f-dd87953612e2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c8211f53-482f-4cd4-bf5f-dd87953612e2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6fbf9375-4e9c-4a82-858e-b603d100fce8 {
  margin-top: 20px;
margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
max-width: 487px;
text-align: center;
}
@media (max-width: 767px){#s-6fbf9375-4e9c-4a82-858e-b603d100fce8 {
  margin-left: 0px;
margin-right: 0px;
}
}
#s-6fbf9375-4e9c-4a82-858e-b603d100fce8 {
  overflow: hidden;
  
  
      max-width: 487px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-6fbf9375-4e9c-4a82-858e-b603d100fce8 .shogun-image-content {
  
    justify-content: center;
  
}

#s-fdb21c2c-85c5-4afd-9f45-39e8896096b6 {
  min-height: 50px;
}








#s-fdb21c2c-85c5-4afd-9f45-39e8896096b6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fdb21c2c-85c5-4afd-9f45-39e8896096b6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-725cc41a-b3cc-47a9-80a7-447f4cd0acca {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-725cc41a-b3cc-47a9-80a7-447f4cd0acca"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-725cc41a-b3cc-47a9-80a7-447f4cd0acca"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-725cc41a-b3cc-47a9-80a7-447f4cd0acca"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-725cc41a-b3cc-47a9-80a7-447f4cd0acca"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-00800226-e3b5-479b-9225-81dc5b2cfff1 {
  margin-left: 20px;
margin-right: 20px;
min-height: 50px;
}








#s-00800226-e3b5-479b-9225-81dc5b2cfff1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-00800226-e3b5-479b-9225-81dc5b2cfff1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e0e056bb-e8c8-4674-ad34-cd708f729d5c {
  min-height: 50px;
}
@media (min-width: 1200px){#s-e0e056bb-e8c8-4674-ad34-cd708f729d5c {
  display: none;
}
#s-e0e056bb-e8c8-4674-ad34-cd708f729d5c, #wrap-s-e0e056bb-e8c8-4674-ad34-cd708f729d5c, #wrap-content-s-e0e056bb-e8c8-4674-ad34-cd708f729d5c { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e0e056bb-e8c8-4674-ad34-cd708f729d5c {
  display: none;
}
#s-e0e056bb-e8c8-4674-ad34-cd708f729d5c, #wrap-s-e0e056bb-e8c8-4674-ad34-cd708f729d5c, #wrap-content-s-e0e056bb-e8c8-4674-ad34-cd708f729d5c { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e0e056bb-e8c8-4674-ad34-cd708f729d5c {
  display: none;
}
#s-e0e056bb-e8c8-4674-ad34-cd708f729d5c, #wrap-s-e0e056bb-e8c8-4674-ad34-cd708f729d5c, #wrap-content-s-e0e056bb-e8c8-4674-ad34-cd708f729d5c { display: none !important; }}







#s-e0e056bb-e8c8-4674-ad34-cd708f729d5c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e0e056bb-e8c8-4674-ad34-cd708f729d5c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-70fbb1cc-154d-4362-b95d-17d65397b724 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
max-width: 487px;
text-align: center;
}
@media (min-width: 1200px){#s-70fbb1cc-154d-4362-b95d-17d65397b724 {
  display: none;
}
#s-70fbb1cc-154d-4362-b95d-17d65397b724, #wrap-s-70fbb1cc-154d-4362-b95d-17d65397b724, #wrap-content-s-70fbb1cc-154d-4362-b95d-17d65397b724 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-70fbb1cc-154d-4362-b95d-17d65397b724 {
  display: none;
}
#s-70fbb1cc-154d-4362-b95d-17d65397b724, #wrap-s-70fbb1cc-154d-4362-b95d-17d65397b724, #wrap-content-s-70fbb1cc-154d-4362-b95d-17d65397b724 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-70fbb1cc-154d-4362-b95d-17d65397b724 {
  display: none;
}
#s-70fbb1cc-154d-4362-b95d-17d65397b724, #wrap-s-70fbb1cc-154d-4362-b95d-17d65397b724, #wrap-content-s-70fbb1cc-154d-4362-b95d-17d65397b724 { display: none !important; }}
#s-70fbb1cc-154d-4362-b95d-17d65397b724 {
  overflow: hidden;
  
  
      max-width: 487px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-70fbb1cc-154d-4362-b95d-17d65397b724 .shogun-image-content {
  
    justify-content: center;
  
}

#s-582f8ef5-03cd-4371-82ce-8360453bc5b2 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-70468274-63e8-41fc-89a0-e53d209b4703 {
  margin-right: 20px;
min-height: 50px;
}
@media (max-width: 767px){#s-70468274-63e8-41fc-89a0-e53d209b4703 {
  display: none;
}
#s-70468274-63e8-41fc-89a0-e53d209b4703, #wrap-s-70468274-63e8-41fc-89a0-e53d209b4703, #wrap-content-s-70468274-63e8-41fc-89a0-e53d209b4703 { display: none !important; }}







#s-70468274-63e8-41fc-89a0-e53d209b4703 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-70468274-63e8-41fc-89a0-e53d209b4703.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4ff40cb4-db8c-4c13-8433-b288b196d82e {
  margin-top: 20px;
margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
max-width: 487px;
text-align: center;
}

#s-4ff40cb4-db8c-4c13-8433-b288b196d82e {
  overflow: hidden;
  
  
      max-width: 487px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-4ff40cb4-db8c-4c13-8433-b288b196d82e .shogun-image-content {
  
    justify-content: center;
  
}

#s-a65ed81f-7a93-429d-b6ee-8d8f1ae657db {
  min-height: 50px;
}








#s-a65ed81f-7a93-429d-b6ee-8d8f1ae657db > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a65ed81f-7a93-429d-b6ee-8d8f1ae657db.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9660a6a0-7e45-4e3a-bc69-08983fea34bb {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-9660a6a0-7e45-4e3a-bc69-08983fea34bb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9660a6a0-7e45-4e3a-bc69-08983fea34bb"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-9660a6a0-7e45-4e3a-bc69-08983fea34bb"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-9660a6a0-7e45-4e3a-bc69-08983fea34bb"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-06ad7cae-b10c-43e4-82e1-0fd54deeef8e {
  margin-left: 20px;
margin-right: 20px;
min-height: 50px;
}








#s-06ad7cae-b10c-43e4-82e1-0fd54deeef8e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-06ad7cae-b10c-43e4-82e1-0fd54deeef8e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0148fa2a-a0b6-4e35-a3d0-5a3a0f9dc10a {
  min-height: 50px;
}
@media (min-width: 1200px){#s-0148fa2a-a0b6-4e35-a3d0-5a3a0f9dc10a {
  display: none;
}
#s-0148fa2a-a0b6-4e35-a3d0-5a3a0f9dc10a, #wrap-s-0148fa2a-a0b6-4e35-a3d0-5a3a0f9dc10a, #wrap-content-s-0148fa2a-a0b6-4e35-a3d0-5a3a0f9dc10a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-0148fa2a-a0b6-4e35-a3d0-5a3a0f9dc10a {
  display: none;
}
#s-0148fa2a-a0b6-4e35-a3d0-5a3a0f9dc10a, #wrap-s-0148fa2a-a0b6-4e35-a3d0-5a3a0f9dc10a, #wrap-content-s-0148fa2a-a0b6-4e35-a3d0-5a3a0f9dc10a { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-0148fa2a-a0b6-4e35-a3d0-5a3a0f9dc10a {
  display: none;
}
#s-0148fa2a-a0b6-4e35-a3d0-5a3a0f9dc10a, #wrap-s-0148fa2a-a0b6-4e35-a3d0-5a3a0f9dc10a, #wrap-content-s-0148fa2a-a0b6-4e35-a3d0-5a3a0f9dc10a { display: none !important; }}







#s-0148fa2a-a0b6-4e35-a3d0-5a3a0f9dc10a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0148fa2a-a0b6-4e35-a3d0-5a3a0f9dc10a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2675b0a7-c2ed-4eca-8d43-2c9b8d0a4dc3 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
max-width: 487px;
text-align: center;
}

#s-2675b0a7-c2ed-4eca-8d43-2c9b8d0a4dc3 {
  overflow: hidden;
  
  
      max-width: 487px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-2675b0a7-c2ed-4eca-8d43-2c9b8d0a4dc3 .shogun-image-content {
  
    justify-content: center;
  
}

#s-f1dad95c-f39d-4911-96a9-1d276a3bed1c {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
background-color: rgba(246, 246, 246, 0);
}

#s-9f031218-9af1-451a-98b7-79e713576bf4 {
  margin-right: 20px;
min-height: 50px;
}
@media (max-width: 767px){#s-9f031218-9af1-451a-98b7-79e713576bf4 {
  display: none;
}
#s-9f031218-9af1-451a-98b7-79e713576bf4, #wrap-s-9f031218-9af1-451a-98b7-79e713576bf4, #wrap-content-s-9f031218-9af1-451a-98b7-79e713576bf4 { display: none !important; }}







#s-9f031218-9af1-451a-98b7-79e713576bf4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9f031218-9af1-451a-98b7-79e713576bf4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8b823ecd-a22e-48f3-8e6e-4e4ee3aef43d {
  margin-top: 20px;
margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
max-width: 487px;
text-align: center;
}

#s-8b823ecd-a22e-48f3-8e6e-4e4ee3aef43d {
  overflow: hidden;
  
  
      max-width: 487px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-8b823ecd-a22e-48f3-8e6e-4e4ee3aef43d .shogun-image-content {
  
    justify-content: center;
  
}

#s-7d41b85e-f027-4633-8338-05616b53bcdd {
  min-height: 50px;
}








#s-7d41b85e-f027-4633-8338-05616b53bcdd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7d41b85e-f027-4633-8338-05616b53bcdd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-af0e8a23-792b-441e-a6bd-b91523fe0f44 {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-af0e8a23-792b-441e-a6bd-b91523fe0f44"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-af0e8a23-792b-441e-a6bd-b91523fe0f44"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-af0e8a23-792b-441e-a6bd-b91523fe0f44"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-af0e8a23-792b-441e-a6bd-b91523fe0f44"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-19acece3-72dd-4098-bc16-c311de1fd378 {
  margin-left: 20px;
margin-right: 20px;
min-height: 50px;
}








#s-19acece3-72dd-4098-bc16-c311de1fd378 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-19acece3-72dd-4098-bc16-c311de1fd378.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-52a19fe7-0631-4961-b2f9-aea4b3dae7de {
  min-height: 50px;
}
@media (min-width: 1200px){#s-52a19fe7-0631-4961-b2f9-aea4b3dae7de {
  display: none;
}
#s-52a19fe7-0631-4961-b2f9-aea4b3dae7de, #wrap-s-52a19fe7-0631-4961-b2f9-aea4b3dae7de, #wrap-content-s-52a19fe7-0631-4961-b2f9-aea4b3dae7de { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-52a19fe7-0631-4961-b2f9-aea4b3dae7de {
  display: none;
}
#s-52a19fe7-0631-4961-b2f9-aea4b3dae7de, #wrap-s-52a19fe7-0631-4961-b2f9-aea4b3dae7de, #wrap-content-s-52a19fe7-0631-4961-b2f9-aea4b3dae7de { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-52a19fe7-0631-4961-b2f9-aea4b3dae7de {
  display: none;
}
#s-52a19fe7-0631-4961-b2f9-aea4b3dae7de, #wrap-s-52a19fe7-0631-4961-b2f9-aea4b3dae7de, #wrap-content-s-52a19fe7-0631-4961-b2f9-aea4b3dae7de { display: none !important; }}







#s-52a19fe7-0631-4961-b2f9-aea4b3dae7de > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-52a19fe7-0631-4961-b2f9-aea4b3dae7de.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bbd11d63-5edd-4874-9ffc-09b1e5561460 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
max-width: 487px;
text-align: center;
}

#s-bbd11d63-5edd-4874-9ffc-09b1e5561460 {
  overflow: hidden;
  
  
      max-width: 487px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-bbd11d63-5edd-4874-9ffc-09b1e5561460 .shogun-image-content {
  
    justify-content: center;
  
}

#s-557d9a41-7927-47df-ae23-63d60a1f2ae3 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-022be712-a09b-409a-882a-3e71074c4386 {
  margin-right: 20px;
min-height: 50px;
}
@media (max-width: 767px){#s-022be712-a09b-409a-882a-3e71074c4386 {
  display: none;
}
#s-022be712-a09b-409a-882a-3e71074c4386, #wrap-s-022be712-a09b-409a-882a-3e71074c4386, #wrap-content-s-022be712-a09b-409a-882a-3e71074c4386 { display: none !important; }}







#s-022be712-a09b-409a-882a-3e71074c4386 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-022be712-a09b-409a-882a-3e71074c4386.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-550d7fd8-79d3-4fc6-99ef-8ce91204d3e1 {
  margin-top: 20px;
margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
max-width: 487px;
text-align: center;
}

#s-550d7fd8-79d3-4fc6-99ef-8ce91204d3e1 {
  overflow: hidden;
  
  
      max-width: 487px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-550d7fd8-79d3-4fc6-99ef-8ce91204d3e1 .shogun-image-content {
  
    justify-content: center;
  
}

#s-053b457d-2d4b-4ae7-b53e-ce877830c8b2 {
  min-height: 50px;
}








#s-053b457d-2d4b-4ae7-b53e-ce877830c8b2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-053b457d-2d4b-4ae7-b53e-ce877830c8b2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-672abf7d-e9e5-4c3e-a2c8-53df0a0ea9f3 {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-672abf7d-e9e5-4c3e-a2c8-53df0a0ea9f3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-672abf7d-e9e5-4c3e-a2c8-53df0a0ea9f3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-672abf7d-e9e5-4c3e-a2c8-53df0a0ea9f3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-672abf7d-e9e5-4c3e-a2c8-53df0a0ea9f3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-ece5523d-b43a-43aa-b0ff-2d245b6c6e5a {
  margin-left: 20px;
margin-right: 20px;
min-height: 50px;
}








#s-ece5523d-b43a-43aa-b0ff-2d245b6c6e5a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ece5523d-b43a-43aa-b0ff-2d245b6c6e5a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-81bee522-61c7-4f95-a12b-c829be505a8b {
  min-height: 50px;
}
@media (min-width: 1200px){#s-81bee522-61c7-4f95-a12b-c829be505a8b {
  display: none;
}
#s-81bee522-61c7-4f95-a12b-c829be505a8b, #wrap-s-81bee522-61c7-4f95-a12b-c829be505a8b, #wrap-content-s-81bee522-61c7-4f95-a12b-c829be505a8b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-81bee522-61c7-4f95-a12b-c829be505a8b {
  display: none;
}
#s-81bee522-61c7-4f95-a12b-c829be505a8b, #wrap-s-81bee522-61c7-4f95-a12b-c829be505a8b, #wrap-content-s-81bee522-61c7-4f95-a12b-c829be505a8b { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-81bee522-61c7-4f95-a12b-c829be505a8b {
  display: none;
}
#s-81bee522-61c7-4f95-a12b-c829be505a8b, #wrap-s-81bee522-61c7-4f95-a12b-c829be505a8b, #wrap-content-s-81bee522-61c7-4f95-a12b-c829be505a8b { display: none !important; }}







#s-81bee522-61c7-4f95-a12b-c829be505a8b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-81bee522-61c7-4f95-a12b-c829be505a8b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-11558e28-41ab-462d-b545-1f9749965289 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
max-width: 487px;
text-align: center;
}

#s-11558e28-41ab-462d-b545-1f9749965289 {
  overflow: hidden;
  
  
      max-width: 487px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-11558e28-41ab-462d-b545-1f9749965289 .shogun-image-content {
  
    justify-content: center;
  
}

#s-483b50e6-6ca5-4c08-9bdd-6a98508a758c {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-981bb44d-b489-4029-84eb-f8fe90967d03 {
  margin-right: 20px;
min-height: 50px;
}
@media (max-width: 767px){#s-981bb44d-b489-4029-84eb-f8fe90967d03 {
  display: none;
}
#s-981bb44d-b489-4029-84eb-f8fe90967d03, #wrap-s-981bb44d-b489-4029-84eb-f8fe90967d03, #wrap-content-s-981bb44d-b489-4029-84eb-f8fe90967d03 { display: none !important; }}







#s-981bb44d-b489-4029-84eb-f8fe90967d03 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-981bb44d-b489-4029-84eb-f8fe90967d03.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bbab42e7-4f0e-434f-bf22-dda95508b784 {
  margin-top: 20px;
margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
max-width: 487px;
text-align: center;
}

#s-bbab42e7-4f0e-434f-bf22-dda95508b784 {
  overflow: hidden;
  
  
      max-width: 487px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-bbab42e7-4f0e-434f-bf22-dda95508b784 .shogun-image-content {
  
    justify-content: center;
  
}

#s-0766f136-5e62-41c8-8347-99b7c0e4abc6 {
  min-height: 50px;
}








#s-0766f136-5e62-41c8-8347-99b7c0e4abc6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0766f136-5e62-41c8-8347-99b7c0e4abc6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-20492477-c92c-4809-abfb-3ed1ad366334 {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-20492477-c92c-4809-abfb-3ed1ad366334"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-20492477-c92c-4809-abfb-3ed1ad366334"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-20492477-c92c-4809-abfb-3ed1ad366334"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-20492477-c92c-4809-abfb-3ed1ad366334"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-0aad3e42-e884-4bc1-a8b0-10bdf443cc57 {
  margin-left: 20px;
margin-right: 20px;
min-height: 50px;
}








#s-0aad3e42-e884-4bc1-a8b0-10bdf443cc57 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0aad3e42-e884-4bc1-a8b0-10bdf443cc57.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ff49ec3c-fd7c-48a7-ba9d-dc505a76a78f {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
min-height: 50px;
}
@media (min-width: 1200px){#s-ff49ec3c-fd7c-48a7-ba9d-dc505a76a78f {
  display: none;
}
#s-ff49ec3c-fd7c-48a7-ba9d-dc505a76a78f, #wrap-s-ff49ec3c-fd7c-48a7-ba9d-dc505a76a78f, #wrap-content-s-ff49ec3c-fd7c-48a7-ba9d-dc505a76a78f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ff49ec3c-fd7c-48a7-ba9d-dc505a76a78f {
  display: none;
}
#s-ff49ec3c-fd7c-48a7-ba9d-dc505a76a78f, #wrap-s-ff49ec3c-fd7c-48a7-ba9d-dc505a76a78f, #wrap-content-s-ff49ec3c-fd7c-48a7-ba9d-dc505a76a78f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ff49ec3c-fd7c-48a7-ba9d-dc505a76a78f {
  display: none;
}
#s-ff49ec3c-fd7c-48a7-ba9d-dc505a76a78f, #wrap-s-ff49ec3c-fd7c-48a7-ba9d-dc505a76a78f, #wrap-content-s-ff49ec3c-fd7c-48a7-ba9d-dc505a76a78f { display: none !important; }}







#s-ff49ec3c-fd7c-48a7-ba9d-dc505a76a78f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ff49ec3c-fd7c-48a7-ba9d-dc505a76a78f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-06f559a8-27c1-4f4c-8906-ab20b760509b {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
max-width: 487px;
text-align: center;
}

#s-06f559a8-27c1-4f4c-8906-ab20b760509b {
  overflow: hidden;
  
  
      max-width: 487px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-06f559a8-27c1-4f4c-8906-ab20b760509b .shogun-image-content {
  
    justify-content: center;
  
}

#s-e021580c-9fd0-44c5-9987-5745757818d8 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-a1d878f8-d203-4d0b-a0e1-0487f6efe261 {
  margin-left: 0px;
margin-right: 20px;
min-height: 50px;
}
@media (max-width: 767px){#s-a1d878f8-d203-4d0b-a0e1-0487f6efe261 {
  display: none;
}
#s-a1d878f8-d203-4d0b-a0e1-0487f6efe261, #wrap-s-a1d878f8-d203-4d0b-a0e1-0487f6efe261, #wrap-content-s-a1d878f8-d203-4d0b-a0e1-0487f6efe261 { display: none !important; }}







#s-a1d878f8-d203-4d0b-a0e1-0487f6efe261 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a1d878f8-d203-4d0b-a0e1-0487f6efe261.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-121ea0e7-5d27-4c79-9025-8e7497168cb0 {
  margin-top: 20px;
margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
max-width: 487px;
text-align: center;
}

#s-121ea0e7-5d27-4c79-9025-8e7497168cb0 {
  overflow: hidden;
  
  
      max-width: 487px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-121ea0e7-5d27-4c79-9025-8e7497168cb0 .shogun-image-content {
  
    justify-content: center;
  
}

#s-25929ed9-e7fa-48de-8c54-6c4ad0957301 {
  min-height: 50px;
}








#s-25929ed9-e7fa-48de-8c54-6c4ad0957301 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-25929ed9-e7fa-48de-8c54-6c4ad0957301.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-607865c9-97e9-41e9-abe4-444a672d9d70 {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-607865c9-97e9-41e9-abe4-444a672d9d70"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-607865c9-97e9-41e9-abe4-444a672d9d70"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-607865c9-97e9-41e9-abe4-444a672d9d70"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-607865c9-97e9-41e9-abe4-444a672d9d70"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-38bb23fb-3d1e-44ef-a36a-9dc30084ec35 {
  margin-left: 20px;
margin-right: 20px;
min-height: 50px;
}








#s-38bb23fb-3d1e-44ef-a36a-9dc30084ec35 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-38bb23fb-3d1e-44ef-a36a-9dc30084ec35.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a36c2380-1068-4ccf-8c1d-6f7884fbce9f {
  min-height: 50px;
}
@media (min-width: 1200px){#s-a36c2380-1068-4ccf-8c1d-6f7884fbce9f {
  display: none;
}
#s-a36c2380-1068-4ccf-8c1d-6f7884fbce9f, #wrap-s-a36c2380-1068-4ccf-8c1d-6f7884fbce9f, #wrap-content-s-a36c2380-1068-4ccf-8c1d-6f7884fbce9f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a36c2380-1068-4ccf-8c1d-6f7884fbce9f {
  display: none;
}
#s-a36c2380-1068-4ccf-8c1d-6f7884fbce9f, #wrap-s-a36c2380-1068-4ccf-8c1d-6f7884fbce9f, #wrap-content-s-a36c2380-1068-4ccf-8c1d-6f7884fbce9f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a36c2380-1068-4ccf-8c1d-6f7884fbce9f {
  display: none;
}
#s-a36c2380-1068-4ccf-8c1d-6f7884fbce9f, #wrap-s-a36c2380-1068-4ccf-8c1d-6f7884fbce9f, #wrap-content-s-a36c2380-1068-4ccf-8c1d-6f7884fbce9f { display: none !important; }}







#s-a36c2380-1068-4ccf-8c1d-6f7884fbce9f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a36c2380-1068-4ccf-8c1d-6f7884fbce9f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8c94bd4f-a87a-4d97-bf48-8b69d9e5ca42 {
  max-width: 487px;
text-align: center;
}

#s-8c94bd4f-a87a-4d97-bf48-8b69d9e5ca42 {
  overflow: hidden;
  
  
      max-width: 487px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-8c94bd4f-a87a-4d97-bf48-8b69d9e5ca42 .shogun-image-content {
  
    justify-content: center;
  
}

#s-fed98260-797b-4b06-b209-64e81f8403c5 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-11350cab-93b3-48dc-b008-9e2e1c0ef563 {
  margin-right: 20px;
min-height: 50px;
}
@media (max-width: 767px){#s-11350cab-93b3-48dc-b008-9e2e1c0ef563 {
  display: none;
}
#s-11350cab-93b3-48dc-b008-9e2e1c0ef563, #wrap-s-11350cab-93b3-48dc-b008-9e2e1c0ef563, #wrap-content-s-11350cab-93b3-48dc-b008-9e2e1c0ef563 { display: none !important; }}







#s-11350cab-93b3-48dc-b008-9e2e1c0ef563 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-11350cab-93b3-48dc-b008-9e2e1c0ef563.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ea0e20a7-2bb1-49fa-ad1b-720bc7def20c {
  margin-top: 20px;
margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
max-width: 487px;
text-align: center;
}
@media (max-width: 767px){#s-ea0e20a7-2bb1-49fa-ad1b-720bc7def20c {
  margin-left: 0px;
margin-right: 0px;
}
}
#s-ea0e20a7-2bb1-49fa-ad1b-720bc7def20c {
  overflow: hidden;
  
  
      max-width: 487px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-ea0e20a7-2bb1-49fa-ad1b-720bc7def20c .shogun-image-content {
  
    justify-content: center;
  
}

/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

#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-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:not(.shopify-section *):not([id^="wistia"]) {
  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;
}
