.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-6f8e28ec-e1a6-4c5c-a7c2-6de25792d1a5 {
  margin-top: 50px;
min-height: 50px;
}
@media (max-width: 767px){#s-6f8e28ec-e1a6-4c5c-a7c2-6de25792d1a5 {
  margin-top: 20px;
}
}







#s-6f8e28ec-e1a6-4c5c-a7c2-6de25792d1a5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6f8e28ec-e1a6-4c5c-a7c2-6de25792d1a5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-810b926a-f4ce-4458-9656-bd1893b0ee1e {
  margin-top: 0px;
margin-left: 10%;
margin-bottom: 10px;
margin-right: 10%;
padding-top: 30px;
padding-left: 3%;
padding-bottom: 30px;
padding-right: 3%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(242, 242, 242, 1);
}
@media (min-width: 1200px){#s-810b926a-f4ce-4458-9656-bd1893b0ee1e {
  margin-bottom: 0px;
border-radius: 5px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-810b926a-f4ce-4458-9656-bd1893b0ee1e {
  margin-bottom: 0px;
padding-left: 2%;
padding-right: 2%;
border-radius: 5px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-810b926a-f4ce-4458-9656-bd1893b0ee1e {
  margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-left: 2%;
padding-right: 2%;
border-radius: 5px;
}
}@media (max-width: 767px){#s-810b926a-f4ce-4458-9656-bd1893b0ee1e {
  margin-top: 0px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 20px;
padding-left: 3%;
padding-bottom: 20px;
padding-right: 3%;
border-radius: 5px;
}
}







#s-810b926a-f4ce-4458-9656-bd1893b0ee1e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-810b926a-f4ce-4458-9656-bd1893b0ee1e.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-fc4e7756-dcd6-4a5d-b622-57bc946df8fa {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-fc4e7756-dcd6-4a5d-b622-57bc946df8fa"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fc4e7756-dcd6-4a5d-b622-57bc946df8fa"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-fc4e7756-dcd6-4a5d-b622-57bc946df8fa"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-fc4e7756-dcd6-4a5d-b622-57bc946df8fa"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-4d8623c6-817f-4bf2-af4b-9c533882691f {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: 3%;
min-height: 50px;
}








#s-4d8623c6-817f-4bf2-af4b-9c533882691f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4d8623c6-817f-4bf2-af4b-9c533882691f.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-18765614-0070-43a5-b368-c102a60809a5 {
  margin-left: auto;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (max-width: 767px){#s-18765614-0070-43a5-b368-c102a60809a5 {
  padding-bottom: 0px;
}
}
#s-18765614-0070-43a5-b368-c102a60809a5 .shogun-heading-component h2 {
  color: ;
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 48px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-18765614-0070-43a5-b368-c102a60809a5 .shogun-heading-component h2 {
  color: ;
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}


}@media (max-width: 767px){#s-18765614-0070-43a5-b368-c102a60809a5 .shogun-heading-component h2 {
  color: ;
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


}
.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-76771446-f976-4c33-9f6e-577576663760 {
  margin-top: 8px;
}
@media (max-width: 767px){#s-76771446-f976-4c33-9f6e-577576663760 {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-0a8c5230-a11e-4dc2-b53d-b1b39edc10fb {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-0a8c5230-a11e-4dc2-b53d-b1b39edc10fb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0a8c5230-a11e-4dc2-b53d-b1b39edc10fb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-043141ea-7d13-4027-b9d7-866bda649032 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}
@media (max-width: 767px){#s-043141ea-7d13-4027-b9d7-866bda649032 {
  margin-top: 16px;
}
}
#s-df4bd9d4-4327-45ab-a0ce-7a74c601b54d {
  margin-top: 24px;
margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-df4bd9d4-4327-45ab-a0ce-7a74c601b54d {
  margin-top: 4px;
}
}
@media (min-width: 0px) {
[id="s-df4bd9d4-4327-45ab-a0ce-7a74c601b54d"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-df4bd9d4-4327-45ab-a0ce-7a74c601b54d"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-df4bd9d4-4327-45ab-a0ce-7a74c601b54d"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-df4bd9d4-4327-45ab-a0ce-7a74c601b54d"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 7.5px);
}

}

#s-312db635-659e-4d5b-80a8-f994360a0fe5 {
  margin-left: auto;
margin-right: auto;
padding-top: 3%;
padding-left: 3%;
padding-bottom: 6%;
padding-right: 3%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-312db635-659e-4d5b-80a8-f994360a0fe5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-312db635-659e-4d5b-80a8-f994360a0fe5.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-8c8342bd-57ae-49c7-bebd-5e06ed483aec {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-3eb1c137-ee73-4d8d-a9d8-8545b5f58274 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-3eb1c137-ee73-4d8d-a9d8-8545b5f58274 .shogun-heading-component h6 {
  color: ;
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-d3c19bb2-c00c-4bf5-b2cb-c65d8e928ec0 {
  margin-left: auto;
margin-right: auto;
padding-top: 3%;
padding-left: 3%;
padding-bottom: 6%;
padding-right: 3%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-d3c19bb2-c00c-4bf5-b2cb-c65d8e928ec0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d3c19bb2-c00c-4bf5-b2cb-c65d8e928ec0.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-972d7759-2cb8-4345-a3cf-ad435e585c9c {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-b765f797-5b9e-417e-8b96-3bbedabd0fa8 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-b765f797-5b9e-417e-8b96-3bbedabd0fa8 .shogun-heading-component h6 {
  color: ;
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-4bf0e200-fe95-4345-ae79-97ae68d9e3d9 {
  margin-left: auto;
margin-right: auto;
padding-top: 3%;
padding-left: 3%;
padding-bottom: 6%;
padding-right: 3%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-4bf0e200-fe95-4345-ae79-97ae68d9e3d9 {
  margin-top: 10px;
}
}







#s-4bf0e200-fe95-4345-ae79-97ae68d9e3d9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4bf0e200-fe95-4345-ae79-97ae68d9e3d9.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

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

.shg-inner-inline-image {
  position: relative;
  display: block;
  overflow: hidden;
}

.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-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-imageV3-content {
  text-align: initial;
}

.shogun-image-content-v3 {
  display: flex;
  flex-direction: column;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  /* Ensures that the content children fills the container */
  align-items: stretch;
}

.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-top {
  align-items: flex-start;
}

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

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

.shg-inner-inline-image .shogun-image.hover~* {
  z-index: 1;
}

.shogun-image-content-v3 > * {
  flex-shrink: 0; /* Prevents children from shrinking maintaining natural size*/
  width: 100%;
}
#s-a16871b1-df7d-4044-bd94-c44800870c2e {
  margin-left: auto;
margin-bottom: 8px;
margin-right: auto;
max-width: 3000px;
text-align: center;
}

#s-a16871b1-df7d-4044-bd94-c44800870c2e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a16871b1-df7d-4044-bd94-c44800870c2e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a16871b1-df7d-4044-bd94-c44800870c2e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  margin-bottom: 8px;
}

#s-a16871b1-df7d-4044-bd94-c44800870c2e .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 3px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-a16871b1-df7d-4044-bd94-c44800870c2e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-a16871b1-df7d-4044-bd94-c44800870c2e img.shogun-image {
  width: 100%;
  
  
  max-width: 3000px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-a16871b1-df7d-4044-bd94-c44800870c2e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a16871b1-df7d-4044-bd94-c44800870c2e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a16871b1-df7d-4044-bd94-c44800870c2e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a16871b1-df7d-4044-bd94-c44800870c2e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-a16871b1-df7d-4044-bd94-c44800870c2e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a16871b1-df7d-4044-bd94-c44800870c2e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a16871b1-df7d-4044-bd94-c44800870c2e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a16871b1-df7d-4044-bd94-c44800870c2e .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-a16871b1-df7d-4044-bd94-c44800870c2e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-a16871b1-df7d-4044-bd94-c44800870c2e img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-a16871b1-df7d-4044-bd94-c44800870c2e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a16871b1-df7d-4044-bd94-c44800870c2e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a16871b1-df7d-4044-bd94-c44800870c2e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a16871b1-df7d-4044-bd94-c44800870c2e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-a16871b1-df7d-4044-bd94-c44800870c2e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a16871b1-df7d-4044-bd94-c44800870c2e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a16871b1-df7d-4044-bd94-c44800870c2e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a16871b1-df7d-4044-bd94-c44800870c2e .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-a16871b1-df7d-4044-bd94-c44800870c2e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-a16871b1-df7d-4044-bd94-c44800870c2e img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-a16871b1-df7d-4044-bd94-c44800870c2e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a16871b1-df7d-4044-bd94-c44800870c2e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a16871b1-df7d-4044-bd94-c44800870c2e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a16871b1-df7d-4044-bd94-c44800870c2e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-a16871b1-df7d-4044-bd94-c44800870c2e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a16871b1-df7d-4044-bd94-c44800870c2e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a16871b1-df7d-4044-bd94-c44800870c2e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a16871b1-df7d-4044-bd94-c44800870c2e .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-a16871b1-df7d-4044-bd94-c44800870c2e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-a16871b1-df7d-4044-bd94-c44800870c2e img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-a16871b1-df7d-4044-bd94-c44800870c2e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a16871b1-df7d-4044-bd94-c44800870c2e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a16871b1-df7d-4044-bd94-c44800870c2e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a16871b1-df7d-4044-bd94-c44800870c2e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-a16871b1-df7d-4044-bd94-c44800870c2e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a16871b1-df7d-4044-bd94-c44800870c2e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a16871b1-df7d-4044-bd94-c44800870c2e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a16871b1-df7d-4044-bd94-c44800870c2e .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-a16871b1-df7d-4044-bd94-c44800870c2e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-a16871b1-df7d-4044-bd94-c44800870c2e img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-a16871b1-df7d-4044-bd94-c44800870c2e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a16871b1-df7d-4044-bd94-c44800870c2e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a16871b1-df7d-4044-bd94-c44800870c2e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a16871b1-df7d-4044-bd94-c44800870c2e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-67d989ed-a644-437f-bd8e-8e857ea94e10 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-67d989ed-a644-437f-bd8e-8e857ea94e10 .shogun-heading-component h6 {
  color: ;
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-a510ac22-56b6-46f2-b15e-85ebac04438b {
  margin-left: auto;
margin-right: auto;
padding-top: 3%;
padding-left: 3%;
padding-bottom: 6%;
padding-right: 3%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-a510ac22-56b6-46f2-b15e-85ebac04438b {
  margin-top: 10px;
}
}







#s-a510ac22-56b6-46f2-b15e-85ebac04438b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a510ac22-56b6-46f2-b15e-85ebac04438b.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-622fcc2c-5618-4161-bbd1-bac3b944fc4a {
  margin-left: auto;
margin-bottom: 8px;
margin-right: auto;
max-width: 2048px;
text-align: center;
}

#s-622fcc2c-5618-4161-bbd1-bac3b944fc4a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-622fcc2c-5618-4161-bbd1-bac3b944fc4a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-622fcc2c-5618-4161-bbd1-bac3b944fc4a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  margin-bottom: 8px;
}

#s-622fcc2c-5618-4161-bbd1-bac3b944fc4a .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 3px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-622fcc2c-5618-4161-bbd1-bac3b944fc4a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-622fcc2c-5618-4161-bbd1-bac3b944fc4a img.shogun-image {
  width: 100%;
  
  
  max-width: 2048px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-622fcc2c-5618-4161-bbd1-bac3b944fc4a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-622fcc2c-5618-4161-bbd1-bac3b944fc4a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-622fcc2c-5618-4161-bbd1-bac3b944fc4a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-622fcc2c-5618-4161-bbd1-bac3b944fc4a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-622fcc2c-5618-4161-bbd1-bac3b944fc4a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-622fcc2c-5618-4161-bbd1-bac3b944fc4a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-622fcc2c-5618-4161-bbd1-bac3b944fc4a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-622fcc2c-5618-4161-bbd1-bac3b944fc4a .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-622fcc2c-5618-4161-bbd1-bac3b944fc4a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-622fcc2c-5618-4161-bbd1-bac3b944fc4a img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-622fcc2c-5618-4161-bbd1-bac3b944fc4a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-622fcc2c-5618-4161-bbd1-bac3b944fc4a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-622fcc2c-5618-4161-bbd1-bac3b944fc4a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-622fcc2c-5618-4161-bbd1-bac3b944fc4a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-622fcc2c-5618-4161-bbd1-bac3b944fc4a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-622fcc2c-5618-4161-bbd1-bac3b944fc4a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-622fcc2c-5618-4161-bbd1-bac3b944fc4a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-622fcc2c-5618-4161-bbd1-bac3b944fc4a .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-622fcc2c-5618-4161-bbd1-bac3b944fc4a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-622fcc2c-5618-4161-bbd1-bac3b944fc4a img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-622fcc2c-5618-4161-bbd1-bac3b944fc4a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-622fcc2c-5618-4161-bbd1-bac3b944fc4a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-622fcc2c-5618-4161-bbd1-bac3b944fc4a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-622fcc2c-5618-4161-bbd1-bac3b944fc4a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-622fcc2c-5618-4161-bbd1-bac3b944fc4a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-622fcc2c-5618-4161-bbd1-bac3b944fc4a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-622fcc2c-5618-4161-bbd1-bac3b944fc4a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-622fcc2c-5618-4161-bbd1-bac3b944fc4a .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-622fcc2c-5618-4161-bbd1-bac3b944fc4a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-622fcc2c-5618-4161-bbd1-bac3b944fc4a img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-622fcc2c-5618-4161-bbd1-bac3b944fc4a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-622fcc2c-5618-4161-bbd1-bac3b944fc4a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-622fcc2c-5618-4161-bbd1-bac3b944fc4a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-622fcc2c-5618-4161-bbd1-bac3b944fc4a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-622fcc2c-5618-4161-bbd1-bac3b944fc4a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-622fcc2c-5618-4161-bbd1-bac3b944fc4a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-622fcc2c-5618-4161-bbd1-bac3b944fc4a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-622fcc2c-5618-4161-bbd1-bac3b944fc4a .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-622fcc2c-5618-4161-bbd1-bac3b944fc4a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-622fcc2c-5618-4161-bbd1-bac3b944fc4a img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-622fcc2c-5618-4161-bbd1-bac3b944fc4a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-622fcc2c-5618-4161-bbd1-bac3b944fc4a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-622fcc2c-5618-4161-bbd1-bac3b944fc4a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-622fcc2c-5618-4161-bbd1-bac3b944fc4a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-004cabce-847c-4fae-a63b-7e3926d965a1 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-004cabce-847c-4fae-a63b-7e3926d965a1 .shogun-heading-component h6 {
  color: ;
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-8f1c64e4-0b02-46ff-b7a6-73be963eda3b {
  margin-top: 0px;
margin-left: 10%;
margin-bottom: 0px;
margin-right: 10%;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: none;
border-radius: 3px;
min-height: 50px;
}
@media (min-width: 1200px){#s-8f1c64e4-0b02-46ff-b7a6-73be963eda3b {
  margin-top: 48px;
margin-bottom: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-8f1c64e4-0b02-46ff-b7a6-73be963eda3b {
  margin-top: 48px;
margin-bottom: 0px;
padding-left: 0%;
padding-right: 0%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-8f1c64e4-0b02-46ff-b7a6-73be963eda3b {
  margin-top: 48px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-left: 0%;
padding-right: 0%;
}
}@media (max-width: 767px){#s-8f1c64e4-0b02-46ff-b7a6-73be963eda3b {
  margin-top: 32px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
}
}
#s-8f1c64e4-0b02-46ff-b7a6-73be963eda3b {
  background-image: url();
}








#s-8f1c64e4-0b02-46ff-b7a6-73be963eda3b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8f1c64e4-0b02-46ff-b7a6-73be963eda3b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-140c3c4c-85d7-4ec1-843f-35351547acdb {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-140c3c4c-85d7-4ec1-843f-35351547acdb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-140c3c4c-85d7-4ec1-843f-35351547acdb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d9987a6e-afce-49ec-b0b9-43673d812253 {
  margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-d9987a6e-afce-49ec-b0b9-43673d812253 {
  margin-top: 0px;
margin-bottom: 0px;
}
}
@media (min-width: 0px) {
[id="s-d9987a6e-afce-49ec-b0b9-43673d812253"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d9987a6e-afce-49ec-b0b9-43673d812253"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-d9987a6e-afce-49ec-b0b9-43673d812253"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-d9987a6e-afce-49ec-b0b9-43673d812253"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-b5abf2d2-4f60-4f0a-8bfa-37438f0fdba0 {
  margin-left: auto;
margin-right: auto;
padding-top: 5%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(242, 242, 242, 1);
}
@media (max-width: 767px){#s-b5abf2d2-4f60-4f0a-8bfa-37438f0fdba0 {
  margin-top: 0px;
margin-bottom: 0px;
}
}







#s-b5abf2d2-4f60-4f0a-8bfa-37438f0fdba0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b5abf2d2-4f60-4f0a-8bfa-37438f0fdba0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

.shg-image-content-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}

.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;
  flex-direction: column;
  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;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  min-width: 100%;
  min-height: 100%;
  /* Ensures that the content children fills the container */
  align-items: stretch;
}

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

.shogun-image-content > * {
  flex-shrink: 0; /* Prevents children from shrinking maintaining natural size*/
  width: 100%;
}
#s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd {
  max-width: 2160px;
text-align: center;
}

#s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd {
  margin: 0 !important;
  overflow: visible;
}

#s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd img.shogun-image {
  /* Add background color handling */
  
}

#s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  border-left-width: 0px;
  border-right-width: 0px;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-color: #000;
  border-style: solid;
  border-radius: 3px;

}






.s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd .shogun-image-content {
  
    justify-content: center;
  
}

.s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd.shogun-image {
  box-sizing: border-box;
}



.s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd img.shogun-image {
  
}


@media (min-width: 1200px){#s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd {
  margin: 0 !important;
  overflow: visible;
}

#s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd img.shogun-image {
  /* Add background color handling */
  
}

#s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd .shogun-image-content {
  
    justify-content: center;
  
}

.s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd.shogun-image {
  box-sizing: border-box;
}



.s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd {
  margin: 0 !important;
  overflow: visible;
}

#s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd img.shogun-image {
  /* Add background color handling */
  
}

#s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd .shogun-image-content {
  
    justify-content: center;
  
}

.s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd.shogun-image {
  box-sizing: border-box;
}



.s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd {
  margin: 0 !important;
  overflow: visible;
}

#s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd img.shogun-image {
  /* Add background color handling */
  
}

#s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd .shogun-image-content {
  
    justify-content: center;
  
}

.s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd.shogun-image {
  box-sizing: border-box;
}



.s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd img.shogun-image {
  
}


}@media (max-width: 767px){#s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd {
  margin: 0 !important;
  overflow: visible;
}

#s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd img.shogun-image {
  /* Add background color handling */
  
}

#s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd .shogun-image-content {
  
    justify-content: center;
  
}

.s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd.shogun-image {
  box-sizing: border-box;
}



.s-9b27cc22-3c6f-4759-bee2-2f4babeaacfd img.shogun-image {
  
}


}
#s-b2ad83b7-20e4-4610-8efe-10af304781ff {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (max-width: 767px){#s-b2ad83b7-20e4-4610-8efe-10af304781ff {
  margin-top: 10px;
}
}







#s-b2ad83b7-20e4-4610-8efe-10af304781ff > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b2ad83b7-20e4-4610-8efe-10af304781ff.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a94038d3-4f72-4489-be46-a821871775fe {
  margin-left: auto;
margin-right: auto;
padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(40, 40, 40, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(40, 40, 40, 1);
}








#s-a94038d3-4f72-4489-be46-a821871775fe > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a94038d3-4f72-4489-be46-a821871775fe.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-68f44c23-14e8-41be-b1e5-caf99494b4d4 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-68f44c23-14e8-41be-b1e5-caf99494b4d4 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 27px;
  
  
  text-align: center;
}


@media (max-width: 767px){#s-68f44c23-14e8-41be-b1e5-caf99494b4d4 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 27px;
  
  
  text-align: center;
}


}
#s-a4ee91a0-36b7-48f6-8824-c4bc1fb4bfd0 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-a4ee91a0-36b7-48f6-8824-c4bc1fb4bfd0"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-a4ee91a0-36b7-48f6-8824-c4bc1fb4bfd0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-a4ee91a0-36b7-48f6-8824-c4bc1fb4bfd0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-a4ee91a0-36b7-48f6-8824-c4bc1fb4bfd0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-cb1ccb17-fcc4-442e-b754-44d08b266b6e {
  margin-left: auto;
margin-right: auto;
padding-top: 7%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(242, 242, 242, 1);
}








#s-cb1ccb17-fcc4-442e-b754-44d08b266b6e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-cb1ccb17-fcc4-442e-b754-44d08b266b6e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c8ab9b4c-34cc-4913-baa7-f4c08c24370c {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-c8ab9b4c-34cc-4913-baa7-f4c08c24370c .shogun-heading-component h6 {
  color: ;
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-2ac877ac-46f1-430e-ae5e-4c0b6641389e {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 30px;
min-height: 50px;
background-color: rgba(165, 0, 0, 1);
}








#s-2ac877ac-46f1-430e-ae5e-4c0b6641389e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2ac877ac-46f1-430e-ae5e-4c0b6641389e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8d8b60c4-be27-4c4a-84cd-ae03bb885a18 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-8d8b60c4-be27-4c4a-84cd-ae03bb885a18 .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-8d8b60c4-be27-4c4a-84cd-ae03bb885a18 .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}@media (max-width: 767px){#s-8d8b60c4-be27-4c4a-84cd-ae03bb885a18 .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}
#s-632be10a-3842-466a-b887-11e571ea6396 {
  margin-left: auto;
margin-right: auto;
padding-top: 7%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(242, 242, 242, 1);
}








#s-632be10a-3842-466a-b887-11e571ea6396 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-632be10a-3842-466a-b887-11e571ea6396.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-84eee7e6-4ceb-4827-a8da-26fdf67e3dfd {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-84eee7e6-4ceb-4827-a8da-26fdf67e3dfd .shogun-heading-component h6 {
  color: ;
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-29adc74c-831a-4473-9e3e-376e6e21328f {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 30px;
min-height: 50px;
background-color: rgba(40, 40, 40, 1);
}








#s-29adc74c-831a-4473-9e3e-376e6e21328f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-29adc74c-831a-4473-9e3e-376e6e21328f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d093f112-5847-46a5-ad33-e524e7f3b532 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-d093f112-5847-46a5-ad33-e524e7f3b532 .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-d093f112-5847-46a5-ad33-e524e7f3b532 .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}@media (max-width: 767px){#s-d093f112-5847-46a5-ad33-e524e7f3b532 .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}
#s-1bc48d93-6d75-42eb-9d2e-eb24d6782d6e {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-1bc48d93-6d75-42eb-9d2e-eb24d6782d6e"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-1bc48d93-6d75-42eb-9d2e-eb24d6782d6e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-1bc48d93-6d75-42eb-9d2e-eb24d6782d6e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-1bc48d93-6d75-42eb-9d2e-eb24d6782d6e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-ec856a3f-555b-4673-adc0-b807d058ee46 {
  margin-left: auto;
margin-right: auto;
padding-top: 7%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(242, 242, 242, 1);
}








#s-ec856a3f-555b-4673-adc0-b807d058ee46 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ec856a3f-555b-4673-adc0-b807d058ee46.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-290eac39-0ee3-4100-b9ae-daf390a98b23 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-290eac39-0ee3-4100-b9ae-daf390a98b23 .shogun-heading-component h6 {
  color: ;
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-baddc75d-5978-49a8-ad53-e87a7b74e43b {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 30px;
min-height: 50px;
background-color: rgba(40, 40, 40, 1);
}








#s-baddc75d-5978-49a8-ad53-e87a7b74e43b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-baddc75d-5978-49a8-ad53-e87a7b74e43b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-43ea610b-a951-4239-acd1-160bf81909e2 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-43ea610b-a951-4239-acd1-160bf81909e2 .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-43ea610b-a951-4239-acd1-160bf81909e2 .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}@media (max-width: 767px){#s-43ea610b-a951-4239-acd1-160bf81909e2 .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}
#s-cc043cc3-3a3d-40aa-8f59-82e1614b0a01 {
  margin-left: auto;
margin-right: auto;
padding-top: 7%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(242, 242, 242, 1);
}








#s-cc043cc3-3a3d-40aa-8f59-82e1614b0a01 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-cc043cc3-3a3d-40aa-8f59-82e1614b0a01.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-46081581-2650-4e1d-8037-d2f9b3ada8b4 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-46081581-2650-4e1d-8037-d2f9b3ada8b4 .shogun-heading-component h6 {
  color: ;
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-1cb6a811-0dfd-4100-a38e-ac890a97db33 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 30px;
min-height: 50px;
background-color: rgba(40, 40, 40, 1);
}








#s-1cb6a811-0dfd-4100-a38e-ac890a97db33 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1cb6a811-0dfd-4100-a38e-ac890a97db33.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ff9520e4-8dc8-4ae4-a7c4-79e6f78d9643 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-ff9520e4-8dc8-4ae4-a7c4-79e6f78d9643 .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-ff9520e4-8dc8-4ae4-a7c4-79e6f78d9643 .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}@media (max-width: 767px){#s-ff9520e4-8dc8-4ae4-a7c4-79e6f78d9643 .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}
#s-44bf3b81-4769-4a16-821f-b0fe40dfb708 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-44bf3b81-4769-4a16-821f-b0fe40dfb708"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-44bf3b81-4769-4a16-821f-b0fe40dfb708"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-44bf3b81-4769-4a16-821f-b0fe40dfb708"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-44bf3b81-4769-4a16-821f-b0fe40dfb708"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-7ef2ad92-0d68-47fb-9384-712048f2c6f3 {
  margin-left: auto;
margin-right: auto;
padding-top: 7%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(242, 242, 242, 1);
}








#s-7ef2ad92-0d68-47fb-9384-712048f2c6f3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7ef2ad92-0d68-47fb-9384-712048f2c6f3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fc7f1e85-3ac9-401f-8711-d1f2f2348dd3 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-fc7f1e85-3ac9-401f-8711-d1f2f2348dd3 .shogun-heading-component h6 {
  color: ;
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-55d04e21-5843-465a-9feb-7c578bf29794 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 30px;
min-height: 50px;
background-color: rgba(40, 40, 40, 1);
}








#s-55d04e21-5843-465a-9feb-7c578bf29794 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-55d04e21-5843-465a-9feb-7c578bf29794.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-eb52bcb7-032d-4e6b-b02c-660c4ce2729a {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-eb52bcb7-032d-4e6b-b02c-660c4ce2729a .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-eb52bcb7-032d-4e6b-b02c-660c4ce2729a .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}@media (max-width: 767px){#s-eb52bcb7-032d-4e6b-b02c-660c4ce2729a .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}
#s-aa2c5da3-a194-4f87-ae9a-38445886c0ec {
  margin-left: auto;
margin-right: auto;
padding-top: 7%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(242, 242, 242, 1);
}








#s-aa2c5da3-a194-4f87-ae9a-38445886c0ec > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-aa2c5da3-a194-4f87-ae9a-38445886c0ec.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bee3c22e-0496-4624-8946-d32d8df4d26a {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-bee3c22e-0496-4624-8946-d32d8df4d26a .shogun-heading-component h6 {
  color: ;
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-9f78048f-9f2d-48ad-b940-00c3e40aac01 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 30px;
min-height: 50px;
background-color: rgba(40, 40, 40, 1);
}








#s-9f78048f-9f2d-48ad-b940-00c3e40aac01 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9f78048f-9f2d-48ad-b940-00c3e40aac01.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c90c3fa3-4248-4dfa-94f6-b198eaa3c4f4 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-c90c3fa3-4248-4dfa-94f6-b198eaa3c4f4 .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-c90c3fa3-4248-4dfa-94f6-b198eaa3c4f4 .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}@media (max-width: 767px){#s-c90c3fa3-4248-4dfa-94f6-b198eaa3c4f4 .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}
#s-dc0f1bee-4176-41f4-9fe5-a7fccd2516a9 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-dc0f1bee-4176-41f4-9fe5-a7fccd2516a9"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-dc0f1bee-4176-41f4-9fe5-a7fccd2516a9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-dc0f1bee-4176-41f4-9fe5-a7fccd2516a9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-dc0f1bee-4176-41f4-9fe5-a7fccd2516a9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-57059ac5-e99c-4e20-aa5a-6c42fe5be976 {
  margin-left: auto;
margin-right: auto;
padding-top: 7%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(242, 242, 242, 1);
}








#s-57059ac5-e99c-4e20-aa5a-6c42fe5be976 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-57059ac5-e99c-4e20-aa5a-6c42fe5be976.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-887ece6f-1326-425d-99fc-03221a04cc6d {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-887ece6f-1326-425d-99fc-03221a04cc6d .shogun-heading-component h6 {
  color: ;
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-13c8082a-becc-4c77-9023-7646300eb4f5 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 30px;
min-height: 50px;
background-color: rgba(40, 40, 40, 1);
}








#s-13c8082a-becc-4c77-9023-7646300eb4f5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-13c8082a-becc-4c77-9023-7646300eb4f5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d4ac8e10-d67a-4299-a12a-2b82f3773269 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-d4ac8e10-d67a-4299-a12a-2b82f3773269 .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-d4ac8e10-d67a-4299-a12a-2b82f3773269 .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}@media (max-width: 767px){#s-d4ac8e10-d67a-4299-a12a-2b82f3773269 .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}
#s-952744c4-4c04-4be1-a6dc-1d62a8264a73 {
  margin-left: auto;
margin-right: auto;
padding-top: 7%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(242, 242, 242, 1);
}








#s-952744c4-4c04-4be1-a6dc-1d62a8264a73 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-952744c4-4c04-4be1-a6dc-1d62a8264a73.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0ce95d50-74be-4c05-b45d-e4ac639fd067 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-0ce95d50-74be-4c05-b45d-e4ac639fd067 .shogun-heading-component h6 {
  color: ;
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-cc3ff271-e399-4b0a-9c14-f5c7b20896e0 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 30px;
min-height: 50px;
background-color: rgba(40, 40, 40, 1);
}








#s-cc3ff271-e399-4b0a-9c14-f5c7b20896e0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-cc3ff271-e399-4b0a-9c14-f5c7b20896e0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-33adde8c-3efd-4cb7-b643-f0cc36bf77d0 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-33adde8c-3efd-4cb7-b643-f0cc36bf77d0 .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-33adde8c-3efd-4cb7-b643-f0cc36bf77d0 .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}@media (max-width: 767px){#s-33adde8c-3efd-4cb7-b643-f0cc36bf77d0 .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}
#s-b1798550-ee90-46b2-8df2-96552d966910 {
  margin-top: 32px;
margin-left: 10%;
margin-bottom: 0px;
margin-right: 10%;
padding-top: 20px;
padding-left: 3%;
padding-bottom: 25px;
padding-right: 3%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: none;
border-radius: 5px;
min-height: 50px;
background-color: rgba(40, 40, 40, 1);
background-attachment: scroll;
}
@media (min-width: 1200px){#s-b1798550-ee90-46b2-8df2-96552d966910 {
  margin-top: 48px;
margin-left: 10%;
margin-right: 10%;
padding-top: 30px;
padding-bottom: 30px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b1798550-ee90-46b2-8df2-96552d966910 {
  margin-top: 48px;
padding-top: 30px;
padding-bottom: 30px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-b1798550-ee90-46b2-8df2-96552d966910 {
  margin-top: 48px;
margin-left: 2%;
margin-right: 2%;
padding-top: 30px;
padding-bottom: 30px;
}
}@media (max-width: 767px){#s-b1798550-ee90-46b2-8df2-96552d966910 {
  margin-top: 32px;
margin-left: 2%;
margin-right: 2%;
padding-top: 20px;
padding-left: 5%;
padding-bottom: 20px;
padding-right: 5%;
}
}







#s-b1798550-ee90-46b2-8df2-96552d966910 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b1798550-ee90-46b2-8df2-96552d966910.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ade1f8c1-00ad-4957-8694-3340810d7b81 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-ade1f8c1-00ad-4957-8694-3340810d7b81 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-ade1f8c1-00ad-4957-8694-3340810d7b81 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


}@media (max-width: 767px){#s-ade1f8c1-00ad-4957-8694-3340810d7b81 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


}
#s-e8f483e2-b28e-409e-a535-2b70730548c1 {
  margin-top: 20px;
margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-e8f483e2-b28e-409e-a535-2b70730548c1 {
  margin-top: 10px;
}
}
@media (min-width: 0px) {
[id="s-e8f483e2-b28e-409e-a535-2b70730548c1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e8f483e2-b28e-409e-a535-2b70730548c1"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-e8f483e2-b28e-409e-a535-2b70730548c1"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-e8f483e2-b28e-409e-a535-2b70730548c1"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-284b7f6e-0491-407e-8aa0-6eb50554cbf3 {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 5%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
min-height: 50px;
background-color: rgba(242, 242, 242, 1);
}
@media (max-width: 767px){#s-284b7f6e-0491-407e-8aa0-6eb50554cbf3 {
  margin-top: 10px;
}
}







#s-284b7f6e-0491-407e-8aa0-6eb50554cbf3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-284b7f6e-0491-407e-8aa0-6eb50554cbf3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1a61b068-8678-4627-a86e-2475d0b753a8 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-1a61b068-8678-4627-a86e-2475d0b753a8 .shogun-heading-component h3 {
  color: rgba(40, 40, 40, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-1a61b068-8678-4627-a86e-2475d0b753a8 .shogun-heading-component h3 {
  color: rgba(40, 40, 40, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}@media (max-width: 767px){#s-1a61b068-8678-4627-a86e-2475d0b753a8 .shogun-heading-component h3 {
  color: rgba(40, 40, 40, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}
#s-0227aa4d-c389-42e3-9929-e82cc7847262 {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 5%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
min-height: 50px;
background-color: rgba(242, 242, 242, 1);
}
@media (max-width: 767px){#s-0227aa4d-c389-42e3-9929-e82cc7847262 {
  margin-top: 10px;
}
}







#s-0227aa4d-c389-42e3-9929-e82cc7847262 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0227aa4d-c389-42e3-9929-e82cc7847262.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4b0cddac-df6f-4d41-9919-0c8df6c33c5a {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-4b0cddac-df6f-4d41-9919-0c8df6c33c5a .shogun-heading-component h3 {
  color: rgba(40, 40, 40, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-4b0cddac-df6f-4d41-9919-0c8df6c33c5a .shogun-heading-component h3 {
  color: rgba(40, 40, 40, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}@media (max-width: 767px){#s-4b0cddac-df6f-4d41-9919-0c8df6c33c5a .shogun-heading-component h3 {
  color: rgba(40, 40, 40, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}
#s-53d4c634-4e33-4462-9663-0e1be0925357 {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 5%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
min-height: 50px;
background-color: rgba(242, 242, 242, 1);
}
@media (max-width: 767px){#s-53d4c634-4e33-4462-9663-0e1be0925357 {
  margin-top: 10px;
}
}







#s-53d4c634-4e33-4462-9663-0e1be0925357 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-53d4c634-4e33-4462-9663-0e1be0925357.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a79d3586-5e10-489d-9362-7ea6f3605307 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-a79d3586-5e10-489d-9362-7ea6f3605307 .shogun-heading-component h3 {
  color: rgba(40, 40, 40, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-a79d3586-5e10-489d-9362-7ea6f3605307 .shogun-heading-component h3 {
  color: rgba(40, 40, 40, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}@media (max-width: 767px){#s-a79d3586-5e10-489d-9362-7ea6f3605307 .shogun-heading-component h3 {
  color: rgba(40, 40, 40, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}
#s-25e6458c-1564-49a4-8261-33ece7ed13cc {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-25e6458c-1564-49a4-8261-33ece7ed13cc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-25e6458c-1564-49a4-8261-33ece7ed13cc"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-25e6458c-1564-49a4-8261-33ece7ed13cc"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-25e6458c-1564-49a4-8261-33ece7ed13cc"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-f154612b-1a6b-4cbc-9b60-aeb46e45204e {
  margin-left: auto;
margin-right: auto;
padding-top: 0%;
padding-left: 0%;
padding-bottom: 5%;
padding-right: 0%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(242, 242, 242, 0.1);
border-style: none;
border-radius: 5px;
min-height: 50px;
background-color: rgba(67, 67, 67, 1);
}








#s-f154612b-1a6b-4cbc-9b60-aeb46e45204e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f154612b-1a6b-4cbc-9b60-aeb46e45204e.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-e50609f3-ccd9-4cbc-934f-d0e1a0053362 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-cfa2294c-7919-49e3-967b-316191aaa073 {
  margin-left: auto;
margin-right: auto;
padding-bottom: 0px;
text-align: center;
}

#s-cfa2294c-7919-49e3-967b-316191aaa073 .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-cfa2294c-7919-49e3-967b-316191aaa073 .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}


}@media (max-width: 767px){#s-cfa2294c-7919-49e3-967b-316191aaa073 .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}
#s-14b8eec1-84b5-497e-8c24-a5466ece7830 {
  margin-left: auto;
margin-right: auto;
padding-top: 0%;
padding-left: 0%;
padding-bottom: 5%;
padding-right: 0%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(242, 242, 242, 0.1);
border-style: none;
border-radius: 5px;
min-height: 50px;
background-color: rgba(67, 67, 67, 1);
}
@media (max-width: 767px){#s-14b8eec1-84b5-497e-8c24-a5466ece7830 {
  margin-top: 10px;
}
}







#s-14b8eec1-84b5-497e-8c24-a5466ece7830 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-14b8eec1-84b5-497e-8c24-a5466ece7830.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-8e4ec344-653c-4cc0-9211-c7cef060c424 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-c3d9eb0e-fd57-4cb3-91f0-8c6a181794f6 {
  margin-left: auto;
margin-right: auto;
padding-bottom: 0px;
text-align: center;
}

#s-c3d9eb0e-fd57-4cb3-91f0-8c6a181794f6 .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-c3d9eb0e-fd57-4cb3-91f0-8c6a181794f6 .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}


}@media (max-width: 767px){#s-c3d9eb0e-fd57-4cb3-91f0-8c6a181794f6 .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}
#s-84488f0e-12c1-43e4-af65-98f6d7be68fa {
  margin-left: auto;
margin-right: auto;
padding-top: 0%;
padding-left: 0%;
padding-bottom: 5%;
padding-right: 0%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(242, 242, 242, 0.1);
border-style: none;
border-radius: 5px;
min-height: 50px;
background-color: rgba(67, 67, 67, 1);
}
@media (max-width: 767px){#s-84488f0e-12c1-43e4-af65-98f6d7be68fa {
  margin-top: 10px;
}
}







#s-84488f0e-12c1-43e4-af65-98f6d7be68fa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-84488f0e-12c1-43e4-af65-98f6d7be68fa.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.shogun-video {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.shogun-video-16x9 {
  padding-bottom: 56.25%;
}

.shogun-video-4x3 {
  padding-bottom: 75%;
}

.shogun-video-embed {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#s-57d95d1e-4d71-4b67-a5df-c7f788318223 {
  margin-top: 0px;
margin-bottom: 0px;
}
@media (max-width: 767px){#s-57d95d1e-4d71-4b67-a5df-c7f788318223 {
  margin-top: 0px;
}
}
#s-596f894a-3bf4-48bb-aad9-365081e33072 {
  margin-left: auto;
margin-right: auto;
padding-top: 3%;
padding-bottom: 0px;
text-align: center;
}

#s-596f894a-3bf4-48bb-aad9-365081e33072 .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-596f894a-3bf4-48bb-aad9-365081e33072 .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}


}@media (max-width: 767px){#s-596f894a-3bf4-48bb-aad9-365081e33072 .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}
#s-6c15457e-2b92-46d4-a205-f8513146ead3 {
  margin-top: 32px;
margin-left: 10%;
margin-bottom: 0px;
margin-right: 10%;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: none;
border-radius: 3px;
min-height: 50px;
}
@media (min-width: 1200px){#s-6c15457e-2b92-46d4-a205-f8513146ead3 {
  margin-top: 48px;
margin-bottom: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-6c15457e-2b92-46d4-a205-f8513146ead3 {
  margin-top: 48px;
margin-bottom: 0px;
padding-left: 0%;
padding-right: 0%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-6c15457e-2b92-46d4-a205-f8513146ead3 {
  margin-top: 48px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-left: 0%;
padding-right: 0%;
}
}@media (max-width: 767px){#s-6c15457e-2b92-46d4-a205-f8513146ead3 {
  margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
}
}
#s-6c15457e-2b92-46d4-a205-f8513146ead3 {
  background-image: url();
}








#s-6c15457e-2b92-46d4-a205-f8513146ead3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6c15457e-2b92-46d4-a205-f8513146ead3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bfc6cedc-3fb1-43b7-9953-aca8621a8e81 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 20px;
padding-left: 3%;
padding-bottom: 30px;
padding-right: 3%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(242, 242, 242, 1);
}
@media (max-width: 767px){#s-bfc6cedc-3fb1-43b7-9953-aca8621a8e81 {
  padding-top: 0px;
border-radius: 5px;
}
}







#s-bfc6cedc-3fb1-43b7-9953-aca8621a8e81 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-bfc6cedc-3fb1-43b7-9953-aca8621a8e81.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-262e492c-f9bb-4bed-b4c8-ac1d01933a52 {
  margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-262e492c-f9bb-4bed-b4c8-ac1d01933a52 {
  margin-top: 20px;
}
}
#s-262e492c-f9bb-4bed-b4c8-ac1d01933a52 .shogun-heading-component h2 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: center;
}


@media (min-width: 768px) and (max-width: 991px){#s-262e492c-f9bb-4bed-b4c8-ac1d01933a52 .shogun-heading-component h2 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 27px;
  
  
  text-align: center;
}


}@media (max-width: 767px){#s-262e492c-f9bb-4bed-b4c8-ac1d01933a52 .shogun-heading-component h2 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 27px;
  
  
  text-align: center;
}


}
#s-7ccdd2d6-b194-4d6b-b462-a3b1329b11f1 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-7ccdd2d6-b194-4d6b-b462-a3b1329b11f1"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-7ccdd2d6-b194-4d6b-b462-a3b1329b11f1"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-7ccdd2d6-b194-4d6b-b462-a3b1329b11f1"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-7ccdd2d6-b194-4d6b-b462-a3b1329b11f1"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 7.5px);
}

}

#s-03597d45-0c71-420f-961d-4a2b1df97c5e {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 7%;
padding-bottom: 10px;
padding-right: 7%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 3px;
min-height: 50px;
background-color: rgba(242, 242, 242, 1);
}








#s-03597d45-0c71-420f-961d-4a2b1df97c5e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-03597d45-0c71-420f-961d-4a2b1df97c5e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-82e150c6-5072-44a9-9f70-4f9225a9adb7 {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-82e150c6-5072-44a9-9f70-4f9225a9adb7 .shogun-heading-component h5 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


#s-82e150c6-5072-44a9-9f70-4f9225a9adb7 .shogun-heading-component h5 a {
  color: ;
}


#s-b9427bab-3f5b-46b2-92d0-df12ec8175e7 {
  margin-left: auto;
margin-right: auto;
}

.shg-product-image-wrapper a.shogun-product-image-url {
  display: inline-block;
}

.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);
  max-width: max-content;
}

.shg-product-image-wrapper {
  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-d7b28109-5295-4b6f-aacd-df1e3305c93b {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-d7b28109-5295-4b6f-aacd-df1e3305c93b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d7b28109-5295-4b6f-aacd-df1e3305c93b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-d7b28109-5295-4b6f-aacd-df1e3305c93b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d7b28109-5295-4b6f-aacd-df1e3305c93b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-d7b28109-5295-4b6f-aacd-df1e3305c93b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d7b28109-5295-4b6f-aacd-df1e3305c93b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-d7b28109-5295-4b6f-aacd-df1e3305c93b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d7b28109-5295-4b6f-aacd-df1e3305c93b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-d7b28109-5295-4b6f-aacd-df1e3305c93b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d7b28109-5295-4b6f-aacd-df1e3305c93b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-32cd2201-2093-4511-935e-143df13b18b0 {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-32cd2201-2093-4511-935e-143df13b18b0 .shogun-heading-component h4 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



#s-30df124b-c4ce-45d4-a542-3094a184597d {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 7%;
padding-bottom: 10px;
padding-right: 7%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 3px;
min-height: 50px;
background-color: rgba(242, 242, 242, 1);
}








#s-30df124b-c4ce-45d4-a542-3094a184597d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-30df124b-c4ce-45d4-a542-3094a184597d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-46ff3e8a-f612-4f94-adf7-5489a8665a3d {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-46ff3e8a-f612-4f94-adf7-5489a8665a3d .shogun-heading-component h5 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


#s-46ff3e8a-f612-4f94-adf7-5489a8665a3d .shogun-heading-component h5 a {
  color: ;
}


#s-a3ad2d5e-2dfb-4dea-8797-576fe0111dbe {
  margin-left: auto;
margin-right: auto;
}

#s-3dfcf021-b1bd-4a0e-bf4c-8bb599bd8d30 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-3dfcf021-b1bd-4a0e-bf4c-8bb599bd8d30 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3dfcf021-b1bd-4a0e-bf4c-8bb599bd8d30 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-3dfcf021-b1bd-4a0e-bf4c-8bb599bd8d30 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3dfcf021-b1bd-4a0e-bf4c-8bb599bd8d30 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-3dfcf021-b1bd-4a0e-bf4c-8bb599bd8d30 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3dfcf021-b1bd-4a0e-bf4c-8bb599bd8d30 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-3dfcf021-b1bd-4a0e-bf4c-8bb599bd8d30 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3dfcf021-b1bd-4a0e-bf4c-8bb599bd8d30 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-3dfcf021-b1bd-4a0e-bf4c-8bb599bd8d30 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3dfcf021-b1bd-4a0e-bf4c-8bb599bd8d30 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-763cdf51-0118-4ef3-bbe0-3f5c731b2dce {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-763cdf51-0118-4ef3-bbe0-3f5c731b2dce .shogun-heading-component h4 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



#s-4bbdcceb-67f9-462d-b77e-d1f9c34a93b6 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 7%;
padding-bottom: 10px;
padding-right: 7%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 3px;
min-height: 50px;
background-color: rgba(242, 242, 242, 1);
}
@media (max-width: 767px){#s-4bbdcceb-67f9-462d-b77e-d1f9c34a93b6 {
  margin-top: 10px;
}
}







#s-4bbdcceb-67f9-462d-b77e-d1f9c34a93b6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4bbdcceb-67f9-462d-b77e-d1f9c34a93b6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-68d860a2-3465-45b1-94e5-5a7dad79f39a {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-68d860a2-3465-45b1-94e5-5a7dad79f39a .shogun-heading-component h5 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


#s-68d860a2-3465-45b1-94e5-5a7dad79f39a .shogun-heading-component h5 a {
  color: ;
}


#s-7dfd9dc7-1fd0-420a-a339-20feafd906ef {
  margin-left: auto;
margin-right: auto;
}

#s-826a8bdd-a3a2-40bd-9a1d-4b26d11431cd {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-826a8bdd-a3a2-40bd-9a1d-4b26d11431cd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-826a8bdd-a3a2-40bd-9a1d-4b26d11431cd img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-826a8bdd-a3a2-40bd-9a1d-4b26d11431cd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-826a8bdd-a3a2-40bd-9a1d-4b26d11431cd img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-826a8bdd-a3a2-40bd-9a1d-4b26d11431cd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-826a8bdd-a3a2-40bd-9a1d-4b26d11431cd img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-826a8bdd-a3a2-40bd-9a1d-4b26d11431cd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-826a8bdd-a3a2-40bd-9a1d-4b26d11431cd img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-826a8bdd-a3a2-40bd-9a1d-4b26d11431cd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-826a8bdd-a3a2-40bd-9a1d-4b26d11431cd img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-8ca7ea20-be31-44d3-9149-fb493299fb72 {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-8ca7ea20-be31-44d3-9149-fb493299fb72 .shogun-heading-component h4 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



#s-45a1ce89-c33d-4f72-82db-bec32857b015 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 7%;
padding-bottom: 10px;
padding-right: 7%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 3px;
min-height: 50px;
background-color: rgba(242, 242, 242, 1);
}
@media (max-width: 767px){#s-45a1ce89-c33d-4f72-82db-bec32857b015 {
  margin-top: 10px;
}
}







#s-45a1ce89-c33d-4f72-82db-bec32857b015 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-45a1ce89-c33d-4f72-82db-bec32857b015.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-80714ece-8985-4788-ba64-0f664cfd0716 {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-80714ece-8985-4788-ba64-0f664cfd0716 .shogun-heading-component h5 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


#s-80714ece-8985-4788-ba64-0f664cfd0716 .shogun-heading-component h5 a {
  color: ;
}


#s-10215f80-f8d7-44c4-905b-86de5372ea62 {
  margin-left: auto;
margin-right: auto;
}

#s-802ddb4c-72a7-4a51-a632-1518098b128f {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-802ddb4c-72a7-4a51-a632-1518098b128f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-802ddb4c-72a7-4a51-a632-1518098b128f img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-802ddb4c-72a7-4a51-a632-1518098b128f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-802ddb4c-72a7-4a51-a632-1518098b128f img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-802ddb4c-72a7-4a51-a632-1518098b128f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-802ddb4c-72a7-4a51-a632-1518098b128f img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-802ddb4c-72a7-4a51-a632-1518098b128f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-802ddb4c-72a7-4a51-a632-1518098b128f img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-802ddb4c-72a7-4a51-a632-1518098b128f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-802ddb4c-72a7-4a51-a632-1518098b128f img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-ba414212-bba8-49a6-b235-48498283e0e2 {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-ba414212-bba8-49a6-b235-48498283e0e2 .shogun-heading-component h4 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



#s-ab5aa663-c3bd-42d8-af6f-71d9568813d7 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-ab5aa663-c3bd-42d8-af6f-71d9568813d7"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-ab5aa663-c3bd-42d8-af6f-71d9568813d7"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-ab5aa663-c3bd-42d8-af6f-71d9568813d7"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-ab5aa663-c3bd-42d8-af6f-71d9568813d7"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 7.5px);
}

}

#s-5a26b4a3-da61-4616-8b5c-75d74f8700b4 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 7%;
padding-bottom: 10px;
padding-right: 7%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 3px;
min-height: 50px;
background-color: rgba(242, 242, 242, 1);
}
@media (max-width: 767px){#s-5a26b4a3-da61-4616-8b5c-75d74f8700b4 {
  margin-top: 0px;
}
}







#s-5a26b4a3-da61-4616-8b5c-75d74f8700b4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5a26b4a3-da61-4616-8b5c-75d74f8700b4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f668e7c3-f5ae-4aff-bbf7-874ffc2c21ba {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f668e7c3-f5ae-4aff-bbf7-874ffc2c21ba .shogun-heading-component h5 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


#s-f668e7c3-f5ae-4aff-bbf7-874ffc2c21ba .shogun-heading-component h5 a {
  color: ;
}


#s-69bda00f-8c5f-4e58-a287-e8a809f24e57 {
  margin-left: auto;
margin-right: auto;
}

#s-49ea713a-32d9-40c6-b118-6a81d7870316 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-49ea713a-32d9-40c6-b118-6a81d7870316 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-49ea713a-32d9-40c6-b118-6a81d7870316 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-49ea713a-32d9-40c6-b118-6a81d7870316 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-49ea713a-32d9-40c6-b118-6a81d7870316 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-49ea713a-32d9-40c6-b118-6a81d7870316 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-49ea713a-32d9-40c6-b118-6a81d7870316 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-49ea713a-32d9-40c6-b118-6a81d7870316 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-49ea713a-32d9-40c6-b118-6a81d7870316 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-49ea713a-32d9-40c6-b118-6a81d7870316 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-49ea713a-32d9-40c6-b118-6a81d7870316 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-5518a9d9-3dfe-452b-9d96-618ecca4b38b {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-5518a9d9-3dfe-452b-9d96-618ecca4b38b .shogun-heading-component h4 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



#s-266e5887-1a80-4f5b-b5e2-649427bc207e {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 7%;
padding-bottom: 10px;
padding-right: 7%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 3px;
min-height: 50px;
background-color: rgba(242, 242, 242, 1);
}








#s-266e5887-1a80-4f5b-b5e2-649427bc207e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-266e5887-1a80-4f5b-b5e2-649427bc207e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-052a4a73-ea88-457a-953b-59c961edaa57 {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-052a4a73-ea88-457a-953b-59c961edaa57 .shogun-heading-component h5 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


#s-052a4a73-ea88-457a-953b-59c961edaa57 .shogun-heading-component h5 a {
  color: ;
}


#s-017cba85-29f2-40ba-be12-8d5253d783a4 {
  margin-left: auto;
margin-right: auto;
}

#s-987b37ae-7f51-4175-a153-7cb7f697a014 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-987b37ae-7f51-4175-a153-7cb7f697a014 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-987b37ae-7f51-4175-a153-7cb7f697a014 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-987b37ae-7f51-4175-a153-7cb7f697a014 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-987b37ae-7f51-4175-a153-7cb7f697a014 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-987b37ae-7f51-4175-a153-7cb7f697a014 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-987b37ae-7f51-4175-a153-7cb7f697a014 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-987b37ae-7f51-4175-a153-7cb7f697a014 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-987b37ae-7f51-4175-a153-7cb7f697a014 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-987b37ae-7f51-4175-a153-7cb7f697a014 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-987b37ae-7f51-4175-a153-7cb7f697a014 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-df0371fe-0dc6-427e-a3b6-8df6cd938fe8 {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-df0371fe-0dc6-427e-a3b6-8df6cd938fe8 .shogun-heading-component h4 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



#s-fa32adb4-431d-4159-ab71-c0d865b68857 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 7%;
padding-bottom: 10px;
padding-right: 7%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 3px;
min-height: 50px;
background-color: rgba(242, 242, 242, 1);
}
@media (max-width: 767px){#s-fa32adb4-431d-4159-ab71-c0d865b68857 {
  margin-top: 10px;
}
}







#s-fa32adb4-431d-4159-ab71-c0d865b68857 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fa32adb4-431d-4159-ab71-c0d865b68857.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-096eb9cd-0207-4bfe-969e-7f112c0a8395 {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-096eb9cd-0207-4bfe-969e-7f112c0a8395 .shogun-heading-component h5 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


#s-096eb9cd-0207-4bfe-969e-7f112c0a8395 .shogun-heading-component h5 a {
  color: ;
}


#s-da785eb3-36a6-47d1-8fa1-8fb04458c636 {
  margin-left: auto;
margin-right: auto;
}

#s-1a51fed3-812b-449e-9503-99a43b7fca15 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-1a51fed3-812b-449e-9503-99a43b7fca15 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1a51fed3-812b-449e-9503-99a43b7fca15 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-1a51fed3-812b-449e-9503-99a43b7fca15 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1a51fed3-812b-449e-9503-99a43b7fca15 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-1a51fed3-812b-449e-9503-99a43b7fca15 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1a51fed3-812b-449e-9503-99a43b7fca15 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-1a51fed3-812b-449e-9503-99a43b7fca15 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1a51fed3-812b-449e-9503-99a43b7fca15 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-1a51fed3-812b-449e-9503-99a43b7fca15 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1a51fed3-812b-449e-9503-99a43b7fca15 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-c6593c26-a812-4640-8ab7-b6de970c7714 {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-c6593c26-a812-4640-8ab7-b6de970c7714 .shogun-heading-component h4 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



#s-cb71ee76-b1cd-4114-b7fa-283edeff8f70 {
  margin-top: 32px;
margin-left: 10%;
margin-bottom: 32px;
margin-right: 10%;
padding-top: 20px;
padding-left: 3%;
padding-bottom: 25px;
padding-right: 3%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: none;
border-radius: 5px;
min-height: 50px;
background-color: rgba(40, 40, 40, 1);
background-attachment: scroll;
}
@media (min-width: 1200px){#s-cb71ee76-b1cd-4114-b7fa-283edeff8f70 {
  margin-top: 48px;
margin-left: 10%;
margin-bottom: 48px;
margin-right: 10%;
padding-top: 30px;
padding-bottom: 30px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-cb71ee76-b1cd-4114-b7fa-283edeff8f70 {
  margin-top: 48px;
margin-bottom: 48px;
padding-top: 30px;
padding-bottom: 30px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-cb71ee76-b1cd-4114-b7fa-283edeff8f70 {
  margin-top: 48px;
margin-left: 2%;
margin-bottom: 48px;
margin-right: 2%;
padding-top: 30px;
padding-bottom: 30px;
}
}@media (max-width: 767px){#s-cb71ee76-b1cd-4114-b7fa-283edeff8f70 {
  margin-top: 32px;
margin-left: 2%;
margin-right: 2%;
padding-top: 20px;
padding-left: 5%;
padding-bottom: 20px;
padding-right: 5%;
}
}







#s-cb71ee76-b1cd-4114-b7fa-283edeff8f70 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-cb71ee76-b1cd-4114-b7fa-283edeff8f70.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6eb4ad1f-aa20-4bd5-8ba0-cc61064d3381 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-6eb4ad1f-aa20-4bd5-8ba0-cc61064d3381 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-6eb4ad1f-aa20-4bd5-8ba0-cc61064d3381 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


}@media (max-width: 767px){#s-6eb4ad1f-aa20-4bd5-8ba0-cc61064d3381 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


}
#s-2c98b320-9003-428a-8c4d-0120ed200969 {
  margin-top: 16px;
margin-left: auto;
margin-right: auto;
}

/*
  $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;
}
