.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-196219a3-cd98-4ee0-9456-b67c441d93c9 {
  margin-top: 50px;
margin-left: 10%;
margin-right: 10%;
padding-top: 5%;
padding-left: 3%;
padding-bottom: 5%;
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: 768px) and (max-width: 991px){#s-196219a3-cd98-4ee0-9456-b67c441d93c9 {
  margin-left: 2%;
margin-right: 2%;
}
}@media (max-width: 767px){#s-196219a3-cd98-4ee0-9456-b67c441d93c9 {
  margin-top: 20px;
margin-left: 2%;
margin-right: 2%;
padding-top: 7%;
padding-bottom: 7%;
}
}







#s-196219a3-cd98-4ee0-9456-b67c441d93c9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-196219a3-cd98-4ee0-9456-b67c441d93c9.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-32539d53-f0fd-46d2-afc3-fc743d5408bf {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-32539d53-f0fd-46d2-afc3-fc743d5408bf"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-32539d53-f0fd-46d2-afc3-fc743d5408bf"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-32539d53-f0fd-46d2-afc3-fc743d5408bf"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-32539d53-f0fd-46d2-afc3-fc743d5408bf"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-b73435fa-cac1-4b54-bb1d-e3872d296e60 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-b73435fa-cac1-4b54-bb1d-e3872d296e60 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b73435fa-cac1-4b54-bb1d-e3872d296e60.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-17836df7-4299-4624-a9ac-9ce07e7c084a {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-17836df7-4299-4624-a9ac-9ce07e7c084a .shogun-heading-component h3 {
  color: rgba(165, 0, 0, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-17836df7-4299-4624-a9ac-9ce07e7c084a .shogun-heading-component h3 {
  color: rgba(165, 0, 0, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 12px;
  
  
  
}


}@media (max-width: 767px){#s-17836df7-4299-4624-a9ac-9ce07e7c084a .shogun-heading-component h3 {
  color: rgba(165, 0, 0, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 12px;
  
  
  
}


}
#s-5988a9ca-e5ac-4d97-ab2f-939707d8c55a {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-5988a9ca-e5ac-4d97-ab2f-939707d8c55a .shogun-heading-component h1 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}


@media (min-width: 1200px){#s-5988a9ca-e5ac-4d97-ab2f-939707d8c55a .shogun-heading-component h1 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 64px;
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-5988a9ca-e5ac-4d97-ab2f-939707d8c55a .shogun-heading-component h1 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-5988a9ca-e5ac-4d97-ab2f-939707d8c55a .shogun-heading-component h1 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}


}@media (max-width: 767px){#s-5988a9ca-e5ac-4d97-ab2f-939707d8c55a .shogun-heading-component h1 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}


}
.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-6ae5a415-3b83-4707-bda4-c9810176dbbb {
  margin-top: 12px;
margin-left: auto;
margin-right: auto;
}

#s-6d931e5c-62da-4a8a-8fc1-3cdd3e4d3740 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-6d931e5c-62da-4a8a-8fc1-3cdd3e4d3740 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6d931e5c-62da-4a8a-8fc1-3cdd3e4d3740.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-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-e636f40e-f2dd-48f6-a2f1-01ff52d16e86 {
  margin-left: auto;
margin-right: auto;
max-width: 1280px;
text-align: center;
}
@media (max-width: 767px){#s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86 {
  margin-top: 15px;
}
}
#s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86-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-e636f40e-f2dd-48f6-a2f1-01ff52d16e86 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86 .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: 5px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86 img.shogun-image {
  width: 100%;
  
  
  max-width: 1280px;

      
    max-width: 1280px;

  /* 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-e636f40e-f2dd-48f6-a2f1-01ff52d16e86 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86-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-e636f40e-f2dd-48f6-a2f1-01ff52d16e86 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86 .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-e636f40e-f2dd-48f6-a2f1-01ff52d16e86 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86 img.shogun-image {
  width: 100%;
  
  
  max-width: 1280px;

      
    max-width: 1280px;

  /* 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-e636f40e-f2dd-48f6-a2f1-01ff52d16e86 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86-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-e636f40e-f2dd-48f6-a2f1-01ff52d16e86 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86 .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-e636f40e-f2dd-48f6-a2f1-01ff52d16e86 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86 img.shogun-image {
  width: 100%;
  
  
  max-width: 1280px;

      
    max-width: 1280px;

  /* 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-e636f40e-f2dd-48f6-a2f1-01ff52d16e86 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86-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-e636f40e-f2dd-48f6-a2f1-01ff52d16e86 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86 .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-e636f40e-f2dd-48f6-a2f1-01ff52d16e86 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86 img.shogun-image {
  width: 100%;
  
  
  max-width: 1280px;

      
    max-width: 1280px;

  /* 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-e636f40e-f2dd-48f6-a2f1-01ff52d16e86 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86-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-e636f40e-f2dd-48f6-a2f1-01ff52d16e86 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 15px;
  
}

#s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86 .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-e636f40e-f2dd-48f6-a2f1-01ff52d16e86 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86 img.shogun-image {
  width: 100%;
  
  
  max-width: 1280px;

      
    max-width: 1280px;

  /* 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-e636f40e-f2dd-48f6-a2f1-01ff52d16e86 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e636f40e-f2dd-48f6-a2f1-01ff52d16e86.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
.shg-btn.shg-cse, .shg-btn.shg-cse:hover, .shg-btn.shg-cse:focus {
  color: #FFF;
}

.shg-btn {
  cursor: pointer;
  box-sizing: border-box;
}

.shg-btn-text {
  font-weight: ;
  font-family: ;
}

.shg-btn.shg-btn-stretch {
  display: block;
}

.shg-btn:not(.shg-btn-stretch) {
  display: inline-block;
}

.shg-btn-wrapper.shg-align-left {
  text-align: left;
}

.shg-btn-wrapper.shg-align-center {
  text-align: center;
}

.shg-btn-wrapper.shg-align-right {
  text-align: right;
}

#s-b97f3e95-7d8c-4037-85f8-44f1c75ab39c {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(165, 0, 0, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-b97f3e95-7d8c-4037-85f8-44f1c75ab39c:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-b97f3e95-7d8c-4037-85f8-44f1c75ab39c:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-b97f3e95-7d8c-4037-85f8-44f1c75ab39c-root {
    text-align: center;
  }


#s-b97f3e95-7d8c-4037-85f8-44f1c75ab39c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}
@media (min-width: 1200px){
  #s-b97f3e95-7d8c-4037-85f8-44f1c75ab39c-root {
    text-align: center;
  }


#s-b97f3e95-7d8c-4037-85f8-44f1c75ab39c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b97f3e95-7d8c-4037-85f8-44f1c75ab39c-root {
    text-align: center;
  }


#s-b97f3e95-7d8c-4037-85f8-44f1c75ab39c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b97f3e95-7d8c-4037-85f8-44f1c75ab39c-root {
    text-align: center;
  }


#s-b97f3e95-7d8c-4037-85f8-44f1c75ab39c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}
}@media (max-width: 767px){
  #s-b97f3e95-7d8c-4037-85f8-44f1c75ab39c-root {
    text-align: center;
  }


#s-b97f3e95-7d8c-4037-85f8-44f1c75ab39c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}
}
#s-9abb0653-cc58-487b-84fc-26ebb721982f {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(40, 40, 40, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-9abb0653-cc58-487b-84fc-26ebb721982f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-9abb0653-cc58-487b-84fc-26ebb721982f:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-9abb0653-cc58-487b-84fc-26ebb721982f-root {
    text-align: center;
  }


#s-9abb0653-cc58-487b-84fc-26ebb721982f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}
@media (min-width: 1200px){
  #s-9abb0653-cc58-487b-84fc-26ebb721982f-root {
    text-align: center;
  }


#s-9abb0653-cc58-487b-84fc-26ebb721982f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9abb0653-cc58-487b-84fc-26ebb721982f-root {
    text-align: center;
  }


#s-9abb0653-cc58-487b-84fc-26ebb721982f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9abb0653-cc58-487b-84fc-26ebb721982f-root {
    text-align: center;
  }


#s-9abb0653-cc58-487b-84fc-26ebb721982f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}
}@media (max-width: 767px){
  #s-9abb0653-cc58-487b-84fc-26ebb721982f-root {
    text-align: center;
  }


#s-9abb0653-cc58-487b-84fc-26ebb721982f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}
}
#s-e767eed3-0648-4c80-b143-f4b7e1270e23 {
  margin-top: 50px;
margin-left: auto;
margin-right: auto;
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(255, 255, 255, 1);
}








#s-e767eed3-0648-4c80-b143-f4b7e1270e23 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e767eed3-0648-4c80-b143-f4b7e1270e23.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-46baa4a8-d2da-48b3-8e4a-1ff50a0b93b6 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-46baa4a8-d2da-48b3-8e4a-1ff50a0b93b6 {
  text-align: center;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-46baa4a8-d2da-48b3-8e4a-1ff50a0b93b6 {
  text-align: center;
}
}@media (min-width: 768px) and (max-width: 991px){#s-46baa4a8-d2da-48b3-8e4a-1ff50a0b93b6 {
  text-align: center;
}
}@media (max-width: 767px){#s-46baa4a8-d2da-48b3-8e4a-1ff50a0b93b6 {
  text-align: center;
}
}
#s-46baa4a8-d2da-48b3-8e4a-1ff50a0b93b6 .shogun-heading-component h2 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


@media (min-width: 1200px){#s-46baa4a8-d2da-48b3-8e4a-1ff50a0b93b6 .shogun-heading-component h2 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 48px;
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-46baa4a8-d2da-48b3-8e4a-1ff50a0b93b6 .shogun-heading-component h2 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-46baa4a8-d2da-48b3-8e4a-1ff50a0b93b6 .shogun-heading-component h2 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


}@media (max-width: 767px){#s-46baa4a8-d2da-48b3-8e4a-1ff50a0b93b6 .shogun-heading-component h2 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


}
.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-f988a7e6-e55b-4862-8825-8a1f3608526e {
  margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-f988a7e6-e55b-4862-8825-8a1f3608526e {
  margin-top: 5px;
}
}
#s-f988a7e6-e55b-4862-8825-8a1f3608526e .shg-proportional-font-size,
#s-f988a7e6-e55b-4862-8825-8a1f3608526e .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-85b151a0-2111-42e6-8223-af86f4933f40 {
  margin-top: 15px;
margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-85b151a0-2111-42e6-8223-af86f4933f40 {
  margin-top: 20px;
}
}
@media (min-width: 0px) {
[id="s-85b151a0-2111-42e6-8223-af86f4933f40"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-85b151a0-2111-42e6-8223-af86f4933f40"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-85b151a0-2111-42e6-8223-af86f4933f40"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-85b151a0-2111-42e6-8223-af86f4933f40"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

#s-2fe446c6-de41-431e-841c-86302fbd352e {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-2fe446c6-de41-431e-841c-86302fbd352e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2fe446c6-de41-431e-841c-86302fbd352e.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-b8af2623-55bf-4cda-8156-d5fc96086899 {
  margin-left: auto;
margin-right: auto;
max-width: 720px;
text-align: center;
}

#s-b8af2623-55bf-4cda-8156-d5fc96086899 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-b8af2623-55bf-4cda-8156-d5fc96086899-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-b8af2623-55bf-4cda-8156-d5fc96086899 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-b8af2623-55bf-4cda-8156-d5fc96086899 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  border-radius: 5px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-b8af2623-55bf-4cda-8156-d5fc96086899 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-b8af2623-55bf-4cda-8156-d5fc96086899 img.shogun-image {
  width: 100%;
  
  
  max-width: 720px;

      
    max-width: 720px;

  /* 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-b8af2623-55bf-4cda-8156-d5fc96086899 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-b8af2623-55bf-4cda-8156-d5fc96086899.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b8af2623-55bf-4cda-8156-d5fc96086899.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b8af2623-55bf-4cda-8156-d5fc96086899.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-b8af2623-55bf-4cda-8156-d5fc96086899 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-b8af2623-55bf-4cda-8156-d5fc96086899-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-b8af2623-55bf-4cda-8156-d5fc96086899 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-b8af2623-55bf-4cda-8156-d5fc96086899 .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-b8af2623-55bf-4cda-8156-d5fc96086899 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-b8af2623-55bf-4cda-8156-d5fc96086899 img.shogun-image {
  width: 100%;
  
  
  max-width: 720px;

      
    max-width: 720px;

  /* 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-b8af2623-55bf-4cda-8156-d5fc96086899 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-b8af2623-55bf-4cda-8156-d5fc96086899.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b8af2623-55bf-4cda-8156-d5fc96086899.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b8af2623-55bf-4cda-8156-d5fc96086899.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-b8af2623-55bf-4cda-8156-d5fc96086899 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-b8af2623-55bf-4cda-8156-d5fc96086899-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-b8af2623-55bf-4cda-8156-d5fc96086899 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-b8af2623-55bf-4cda-8156-d5fc96086899 .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-b8af2623-55bf-4cda-8156-d5fc96086899 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-b8af2623-55bf-4cda-8156-d5fc96086899 img.shogun-image {
  width: 100%;
  
  
  max-width: 720px;

      
    max-width: 720px;

  /* 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-b8af2623-55bf-4cda-8156-d5fc96086899 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-b8af2623-55bf-4cda-8156-d5fc96086899.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b8af2623-55bf-4cda-8156-d5fc96086899.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b8af2623-55bf-4cda-8156-d5fc96086899.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-b8af2623-55bf-4cda-8156-d5fc96086899 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-b8af2623-55bf-4cda-8156-d5fc96086899-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-b8af2623-55bf-4cda-8156-d5fc96086899 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-b8af2623-55bf-4cda-8156-d5fc96086899 .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-b8af2623-55bf-4cda-8156-d5fc96086899 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-b8af2623-55bf-4cda-8156-d5fc96086899 img.shogun-image {
  width: 100%;
  
  
  max-width: 720px;

      
    max-width: 720px;

  /* 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-b8af2623-55bf-4cda-8156-d5fc96086899 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-b8af2623-55bf-4cda-8156-d5fc96086899.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b8af2623-55bf-4cda-8156-d5fc96086899.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b8af2623-55bf-4cda-8156-d5fc96086899.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-b8af2623-55bf-4cda-8156-d5fc96086899 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-b8af2623-55bf-4cda-8156-d5fc96086899-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-b8af2623-55bf-4cda-8156-d5fc96086899 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-b8af2623-55bf-4cda-8156-d5fc96086899 .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-b8af2623-55bf-4cda-8156-d5fc96086899 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-b8af2623-55bf-4cda-8156-d5fc96086899 img.shogun-image {
  width: 100%;
  
  
  max-width: 720px;

      
    max-width: 720px;

  /* 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-b8af2623-55bf-4cda-8156-d5fc96086899 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-b8af2623-55bf-4cda-8156-d5fc96086899.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b8af2623-55bf-4cda-8156-d5fc96086899.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b8af2623-55bf-4cda-8156-d5fc96086899.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-354e6083-573b-42b8-a984-20b63bba8a0c {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-354e6083-573b-42b8-a984-20b63bba8a0c .shogun-heading-component h4 {
  color: ;
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-354e6083-573b-42b8-a984-20b63bba8a0c .shogun-heading-component h4 {
  color: ;
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}


}
#s-3593eafd-dbcc-41e6-b893-b6c499840b74 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (max-width: 767px){#s-3593eafd-dbcc-41e6-b893-b6c499840b74 {
  margin-top: 30px;
}
}







#s-3593eafd-dbcc-41e6-b893-b6c499840b74 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3593eafd-dbcc-41e6-b893-b6c499840b74.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
@media (min-width: 1200px){






#s-3593eafd-dbcc-41e6-b893-b6c499840b74 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3593eafd-dbcc-41e6-b893-b6c499840b74.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
}@media (min-width: 992px) and (max-width: 1199px){






#s-3593eafd-dbcc-41e6-b893-b6c499840b74 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3593eafd-dbcc-41e6-b893-b6c499840b74.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
}
#s-c4547757-a149-4953-b26c-9421f25e4a7e {
  margin-left: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: none;
border-radius: 3px;
text-align: left;
}

#s-4389b9b2-141e-46ae-8e37-cea7c1f97a18 {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-4389b9b2-141e-46ae-8e37-cea7c1f97a18 .shogun-heading-component h4 {
  color: ;
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-4389b9b2-141e-46ae-8e37-cea7c1f97a18 .shogun-heading-component h4 {
  color: ;
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}


}
#s-294a02c9-31b7-4e94-964a-fc1a686da9f1 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (max-width: 767px){#s-294a02c9-31b7-4e94-964a-fc1a686da9f1 {
  margin-top: 30px;
}
}







#s-294a02c9-31b7-4e94-964a-fc1a686da9f1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-294a02c9-31b7-4e94-964a-fc1a686da9f1.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-938cfe56-95d8-45de-aae5-c58a30b21eac {
  margin-left: auto;
margin-right: auto;
max-width: 2048px;
text-align: center;
}

#s-938cfe56-95d8-45de-aae5-c58a30b21eac {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-938cfe56-95d8-45de-aae5-c58a30b21eac-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-938cfe56-95d8-45de-aae5-c58a30b21eac {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-938cfe56-95d8-45de-aae5-c58a30b21eac .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  border-radius: 5px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-938cfe56-95d8-45de-aae5-c58a30b21eac {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-938cfe56-95d8-45de-aae5-c58a30b21eac img.shogun-image {
  width: 100%;
  
  
  max-width: 2048px;

      
    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-938cfe56-95d8-45de-aae5-c58a30b21eac .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-938cfe56-95d8-45de-aae5-c58a30b21eac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-938cfe56-95d8-45de-aae5-c58a30b21eac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-938cfe56-95d8-45de-aae5-c58a30b21eac.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-938cfe56-95d8-45de-aae5-c58a30b21eac {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-938cfe56-95d8-45de-aae5-c58a30b21eac-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-938cfe56-95d8-45de-aae5-c58a30b21eac {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-938cfe56-95d8-45de-aae5-c58a30b21eac .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-938cfe56-95d8-45de-aae5-c58a30b21eac {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-938cfe56-95d8-45de-aae5-c58a30b21eac img.shogun-image {
  width: 100%;
  
  
  max-width: 2048px;

      
    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-938cfe56-95d8-45de-aae5-c58a30b21eac .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-938cfe56-95d8-45de-aae5-c58a30b21eac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-938cfe56-95d8-45de-aae5-c58a30b21eac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-938cfe56-95d8-45de-aae5-c58a30b21eac.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-938cfe56-95d8-45de-aae5-c58a30b21eac {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-938cfe56-95d8-45de-aae5-c58a30b21eac-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-938cfe56-95d8-45de-aae5-c58a30b21eac {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-938cfe56-95d8-45de-aae5-c58a30b21eac .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-938cfe56-95d8-45de-aae5-c58a30b21eac {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-938cfe56-95d8-45de-aae5-c58a30b21eac img.shogun-image {
  width: 100%;
  
  
  max-width: 2048px;

      
    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-938cfe56-95d8-45de-aae5-c58a30b21eac .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-938cfe56-95d8-45de-aae5-c58a30b21eac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-938cfe56-95d8-45de-aae5-c58a30b21eac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-938cfe56-95d8-45de-aae5-c58a30b21eac.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-938cfe56-95d8-45de-aae5-c58a30b21eac {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-938cfe56-95d8-45de-aae5-c58a30b21eac-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-938cfe56-95d8-45de-aae5-c58a30b21eac {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-938cfe56-95d8-45de-aae5-c58a30b21eac .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-938cfe56-95d8-45de-aae5-c58a30b21eac {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-938cfe56-95d8-45de-aae5-c58a30b21eac img.shogun-image {
  width: 100%;
  
  
  max-width: 2048px;

      
    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-938cfe56-95d8-45de-aae5-c58a30b21eac .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-938cfe56-95d8-45de-aae5-c58a30b21eac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-938cfe56-95d8-45de-aae5-c58a30b21eac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-938cfe56-95d8-45de-aae5-c58a30b21eac.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-938cfe56-95d8-45de-aae5-c58a30b21eac {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-938cfe56-95d8-45de-aae5-c58a30b21eac-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-938cfe56-95d8-45de-aae5-c58a30b21eac {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-938cfe56-95d8-45de-aae5-c58a30b21eac .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-938cfe56-95d8-45de-aae5-c58a30b21eac {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-938cfe56-95d8-45de-aae5-c58a30b21eac img.shogun-image {
  width: 100%;
  
  
  max-width: 2048px;

      
    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-938cfe56-95d8-45de-aae5-c58a30b21eac .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-938cfe56-95d8-45de-aae5-c58a30b21eac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-938cfe56-95d8-45de-aae5-c58a30b21eac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-938cfe56-95d8-45de-aae5-c58a30b21eac.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-3a18ab11-a3bf-4b5f-89e8-0fffdaa6cb7f {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-3a18ab11-a3bf-4b5f-89e8-0fffdaa6cb7f .shogun-heading-component h4 {
  color: ;
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-3a18ab11-a3bf-4b5f-89e8-0fffdaa6cb7f .shogun-heading-component h4 {
  color: ;
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}


}
#s-6fae1886-c3b9-4f33-b698-fb1c6d4cc8dc {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(227, 227, 227, 1);
}
@media (min-width: 1200px){#s-6fae1886-c3b9-4f33-b698-fb1c6d4cc8dc {
  margin-top: 30px;
padding-top: 3%;
padding-left: 3%;
padding-bottom: 3%;
padding-right: 3%;
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;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-6fae1886-c3b9-4f33-b698-fb1c6d4cc8dc {
  margin-top: 30px;
padding-top: 3%;
padding-left: 3%;
padding-bottom: 2%;
padding-right: 3%;
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;
}
}@media (min-width: 768px) and (max-width: 991px){#s-6fae1886-c3b9-4f33-b698-fb1c6d4cc8dc {
  margin-top: 30px;
padding-top: 3%;
padding-left: 3%;
padding-bottom: 2%;
padding-right: 3%;
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;
}
}@media (max-width: 767px){#s-6fae1886-c3b9-4f33-b698-fb1c6d4cc8dc {
  margin-top: 30px;
padding-top: 5%;
padding-left: 5%;
padding-bottom: 3%;
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;
}
}







#s-6fae1886-c3b9-4f33-b698-fb1c6d4cc8dc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6fae1886-c3b9-4f33-b698-fb1c6d4cc8dc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4db71be1-1f28-4902-898a-839a36163459 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-4db71be1-1f28-4902-898a-839a36163459 {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-4db71be1-1f28-4902-898a-839a36163459 .shg-proportional-font-size,
#s-4db71be1-1f28-4902-898a-839a36163459 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-08cc448e-89a6-48e3-81b4-053c129e50c2 {
  margin-top: 20px;
margin-left: 10%;
margin-bottom: 0px;
margin-right: 10%;
padding-top: 20px;
padding-left: 3%;
padding-bottom: 20px;
padding-right: 3%;
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);
background-attachment: scroll;
}
@media (min-width: 1200px){#s-08cc448e-89a6-48e3-81b4-053c129e50c2 {
  margin-left: 10%;
margin-right: 10%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-08cc448e-89a6-48e3-81b4-053c129e50c2 {
  margin-left: 2%;
margin-right: 2%;
}
}@media (max-width: 767px){#s-08cc448e-89a6-48e3-81b4-053c129e50c2 {
  margin-left: 2%;
margin-right: 2%;
padding-top: 7%;
padding-left: 3%;
padding-bottom: 7%;
padding-right: 3%;
}
}







#s-08cc448e-89a6-48e3-81b4-053c129e50c2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-08cc448e-89a6-48e3-81b4-053c129e50c2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-211a0bb5-83d8-49ec-b764-ff07871afbb1 {
  margin-top: 20px;
margin-bottom: 20px;
}
@media (max-width: 767px){#s-211a0bb5-83d8-49ec-b764-ff07871afbb1 {
  margin-top: 0px;
margin-bottom: 0px;
}
}
@media (min-width: 0px) {
[id="s-211a0bb5-83d8-49ec-b764-ff07871afbb1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-211a0bb5-83d8-49ec-b764-ff07871afbb1"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-211a0bb5-83d8-49ec-b764-ff07871afbb1"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-211a0bb5-83d8-49ec-b764-ff07871afbb1"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 25.0px);
}

}

#s-b1e4b53b-66b0-4735-8f1c-44e2b61ecc00 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-b1e4b53b-66b0-4735-8f1c-44e2b61ecc00 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b1e4b53b-66b0-4735-8f1c-44e2b61ecc00.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-60b3d098-99cb-46d7-9197-1dee90f30cf6 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 10px;
text-align: left;
}

#s-60b3d098-99cb-46d7-9197-1dee90f30cf6 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-60b3d098-99cb-46d7-9197-1dee90f30cf6 .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-60b3d098-99cb-46d7-9197-1dee90f30cf6 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


}@media (max-width: 767px){#s-60b3d098-99cb-46d7-9197-1dee90f30cf6 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


}
#s-014a65a8-520e-4bdc-874b-9f7a615c8e87 {
  margin-left: auto;
margin-right: auto;
}

#s-014a65a8-520e-4bdc-874b-9f7a615c8e87 .shg-proportional-font-size,
#s-014a65a8-520e-4bdc-874b-9f7a615c8e87 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-385201b9-edc8-47c7-b4bb-d88ec701a276 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-385201b9-edc8-47c7-b4bb-d88ec701a276 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-385201b9-edc8-47c7-b4bb-d88ec701a276.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.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-89c7c12b-f08a-4c59-b8f9-8823750a7a4e {
  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: 3px;
}
@media (max-width: 767px){#s-89c7c12b-f08a-4c59-b8f9-8823750a7a4e {
  margin-top: 20px;
}
}
#s-8d293ae3-6776-4d33-a77a-53d60e87e322 {
  margin-top: 20px;
margin-left: 10%;
margin-right: 10%;
padding-top: 5%;
padding-left: 3%;
padding-bottom: 5%;
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-8d293ae3-6776-4d33-a77a-53d60e87e322 {
  padding-top: 3%;
padding-bottom: 3%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-8d293ae3-6776-4d33-a77a-53d60e87e322 {
  margin-left: 2%;
margin-right: 2%;
}
}@media (max-width: 767px){#s-8d293ae3-6776-4d33-a77a-53d60e87e322 {
  margin-top: 20px;
margin-left: 2%;
margin-right: 2%;
padding-top: 7%;
padding-bottom: 7%;
}
}







#s-8d293ae3-6776-4d33-a77a-53d60e87e322 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8d293ae3-6776-4d33-a77a-53d60e87e322.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fb49d728-8f83-44ff-bbe2-b7de953e39f4 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-fb49d728-8f83-44ff-bbe2-b7de953e39f4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fb49d728-8f83-44ff-bbe2-b7de953e39f4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d64ad27e-2435-479a-960b-5b8a21ad2222 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-d64ad27e-2435-479a-960b-5b8a21ad2222 {
  text-align: center;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-d64ad27e-2435-479a-960b-5b8a21ad2222 {
  text-align: center;
}
}@media (min-width: 768px) and (max-width: 991px){#s-d64ad27e-2435-479a-960b-5b8a21ad2222 {
  text-align: center;
}
}@media (max-width: 767px){#s-d64ad27e-2435-479a-960b-5b8a21ad2222 {
  text-align: center;
}
}
#s-d64ad27e-2435-479a-960b-5b8a21ad2222 .shogun-heading-component h2 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


@media (min-width: 1200px){#s-d64ad27e-2435-479a-960b-5b8a21ad2222 .shogun-heading-component h2 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 48px;
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-d64ad27e-2435-479a-960b-5b8a21ad2222 .shogun-heading-component h2 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-d64ad27e-2435-479a-960b-5b8a21ad2222 .shogun-heading-component h2 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


}@media (max-width: 767px){#s-d64ad27e-2435-479a-960b-5b8a21ad2222 .shogun-heading-component h2 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


}
#s-f9520737-9ce9-4193-b155-b60894c1031f {
  margin-top: 12px;
margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-f9520737-9ce9-4193-b155-b60894c1031f {
  margin-top: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f9520737-9ce9-4193-b155-b60894c1031f {
  margin-top: 4px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-f9520737-9ce9-4193-b155-b60894c1031f {
  margin-top: 4px;
}
}
#s-409514fb-63b0-4052-a252-4fbaf2475f70 {
  margin-left: auto;
margin-right: auto;
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;
}
@media (min-width: 1200px){#s-409514fb-63b0-4052-a252-4fbaf2475f70 {
  margin-top: 30px;
padding-top: 2%;
padding-left: 2%;
padding-bottom: 2%;
padding-right: 2%;
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;
background-color: rgba(255, 255, 255, 1);
}
}@media (min-width: 992px) and (max-width: 1199px){#s-409514fb-63b0-4052-a252-4fbaf2475f70 {
  margin-top: 20px;
padding-top: 3%;
padding-left: 3%;
padding-bottom: 3%;
padding-right: 3%;
border-radius: 5px;
background-color: rgba(255, 255, 255, 1);
}
}@media (min-width: 768px) and (max-width: 991px){#s-409514fb-63b0-4052-a252-4fbaf2475f70 {
  margin-top: 20px;
padding-top: 3%;
padding-left: 3%;
padding-bottom: 3%;
padding-right: 3%;
border-radius: 5px;
background-color: rgba(255, 255, 255, 1);
}
}@media (max-width: 767px){#s-409514fb-63b0-4052-a252-4fbaf2475f70 {
  margin-top: 20px;
padding-top: 3%;
padding-left: 3%;
padding-bottom: 3%;
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;
background-color: rgba(255, 255, 255, 1);
}
}
@media (min-width: 0px) {
[id="s-409514fb-63b0-4052-a252-4fbaf2475f70"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-409514fb-63b0-4052-a252-4fbaf2475f70"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-409514fb-63b0-4052-a252-4fbaf2475f70"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-409514fb-63b0-4052-a252-4fbaf2475f70"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

#s-d5eb7572-3a06-4af6-ae8b-208aafc0e8f1 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-d5eb7572-3a06-4af6-ae8b-208aafc0e8f1 {
  padding-top: 0%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 0%;
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;
}
}







#s-d5eb7572-3a06-4af6-ae8b-208aafc0e8f1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d5eb7572-3a06-4af6-ae8b-208aafc0e8f1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-db4985d5-17fd-4e35-b124-e62622f513a1 {
  margin-left: auto;
margin-right: auto;
max-width: 1200px;
text-align: center;
}

#s-db4985d5-17fd-4e35-b124-e62622f513a1 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-db4985d5-17fd-4e35-b124-e62622f513a1-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-db4985d5-17fd-4e35-b124-e62622f513a1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-db4985d5-17fd-4e35-b124-e62622f513a1 .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-db4985d5-17fd-4e35-b124-e62622f513a1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-db4985d5-17fd-4e35-b124-e62622f513a1 img.shogun-image {
  width: 100%;
  
  
  max-width: 1200px;

      
    max-width: 1200px;

  /* 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-db4985d5-17fd-4e35-b124-e62622f513a1 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-db4985d5-17fd-4e35-b124-e62622f513a1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-db4985d5-17fd-4e35-b124-e62622f513a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-db4985d5-17fd-4e35-b124-e62622f513a1.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-db4985d5-17fd-4e35-b124-e62622f513a1 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-db4985d5-17fd-4e35-b124-e62622f513a1-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-db4985d5-17fd-4e35-b124-e62622f513a1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-db4985d5-17fd-4e35-b124-e62622f513a1 .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: 5px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-db4985d5-17fd-4e35-b124-e62622f513a1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-db4985d5-17fd-4e35-b124-e62622f513a1 img.shogun-image {
  width: 100%;
  
  
  max-width: 1200px;

      
    max-width: 1200px;

  /* 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-db4985d5-17fd-4e35-b124-e62622f513a1 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-db4985d5-17fd-4e35-b124-e62622f513a1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-db4985d5-17fd-4e35-b124-e62622f513a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-db4985d5-17fd-4e35-b124-e62622f513a1.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-db4985d5-17fd-4e35-b124-e62622f513a1 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-db4985d5-17fd-4e35-b124-e62622f513a1-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-db4985d5-17fd-4e35-b124-e62622f513a1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-db4985d5-17fd-4e35-b124-e62622f513a1 .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: 5px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-db4985d5-17fd-4e35-b124-e62622f513a1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-db4985d5-17fd-4e35-b124-e62622f513a1 img.shogun-image {
  width: 100%;
  
  
  max-width: 1200px;

      
    max-width: 1200px;

  /* 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-db4985d5-17fd-4e35-b124-e62622f513a1 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-db4985d5-17fd-4e35-b124-e62622f513a1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-db4985d5-17fd-4e35-b124-e62622f513a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-db4985d5-17fd-4e35-b124-e62622f513a1.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-db4985d5-17fd-4e35-b124-e62622f513a1 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-db4985d5-17fd-4e35-b124-e62622f513a1-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-db4985d5-17fd-4e35-b124-e62622f513a1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-db4985d5-17fd-4e35-b124-e62622f513a1 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  border-radius: 5px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-db4985d5-17fd-4e35-b124-e62622f513a1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-db4985d5-17fd-4e35-b124-e62622f513a1 img.shogun-image {
  width: 100%;
  
  
  max-width: 1200px;

      
    max-width: 1200px;

  /* 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-db4985d5-17fd-4e35-b124-e62622f513a1 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-db4985d5-17fd-4e35-b124-e62622f513a1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-db4985d5-17fd-4e35-b124-e62622f513a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-db4985d5-17fd-4e35-b124-e62622f513a1.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-db4985d5-17fd-4e35-b124-e62622f513a1 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-db4985d5-17fd-4e35-b124-e62622f513a1-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-db4985d5-17fd-4e35-b124-e62622f513a1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-db4985d5-17fd-4e35-b124-e62622f513a1 .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: 5px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-db4985d5-17fd-4e35-b124-e62622f513a1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-db4985d5-17fd-4e35-b124-e62622f513a1 img.shogun-image {
  width: 100%;
  
  
  max-width: 1200px;

      
    max-width: 1200px;

  /* 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-db4985d5-17fd-4e35-b124-e62622f513a1 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-db4985d5-17fd-4e35-b124-e62622f513a1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-db4985d5-17fd-4e35-b124-e62622f513a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-db4985d5-17fd-4e35-b124-e62622f513a1.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-0f715e73-b965-4a76-ab1f-27b7184de420 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-0f715e73-b965-4a76-ab1f-27b7184de420 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-0f715e73-b965-4a76-ab1f-27b7184de420 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}


}
#s-b328dc59-308f-4979-9d8f-64ccd15c228a {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-b328dc59-308f-4979-9d8f-64ccd15c228a {
  margin-top: 0px;
padding-top: 0%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 0%;
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;
}
}







#s-b328dc59-308f-4979-9d8f-64ccd15c228a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b328dc59-308f-4979-9d8f-64ccd15c228a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-22937b5a-c8a9-480b-9f0c-f67a63f02265 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-22937b5a-c8a9-480b-9f0c-f67a63f02265 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-22937b5a-c8a9-480b-9f0c-f67a63f02265-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-22937b5a-c8a9-480b-9f0c-f67a63f02265 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-22937b5a-c8a9-480b-9f0c-f67a63f02265 .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-22937b5a-c8a9-480b-9f0c-f67a63f02265 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-22937b5a-c8a9-480b-9f0c-f67a63f02265 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* 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-22937b5a-c8a9-480b-9f0c-f67a63f02265 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-22937b5a-c8a9-480b-9f0c-f67a63f02265.shg-align-container {
  display: flex;
  justify-content: center
}

.s-22937b5a-c8a9-480b-9f0c-f67a63f02265.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-22937b5a-c8a9-480b-9f0c-f67a63f02265.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-22937b5a-c8a9-480b-9f0c-f67a63f02265 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-22937b5a-c8a9-480b-9f0c-f67a63f02265-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-22937b5a-c8a9-480b-9f0c-f67a63f02265 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-22937b5a-c8a9-480b-9f0c-f67a63f02265 .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: 5px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-22937b5a-c8a9-480b-9f0c-f67a63f02265 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-22937b5a-c8a9-480b-9f0c-f67a63f02265 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* 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-22937b5a-c8a9-480b-9f0c-f67a63f02265 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-22937b5a-c8a9-480b-9f0c-f67a63f02265.shg-align-container {
  display: flex;
  justify-content: center
}

.s-22937b5a-c8a9-480b-9f0c-f67a63f02265.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-22937b5a-c8a9-480b-9f0c-f67a63f02265.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-22937b5a-c8a9-480b-9f0c-f67a63f02265 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-22937b5a-c8a9-480b-9f0c-f67a63f02265-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-22937b5a-c8a9-480b-9f0c-f67a63f02265 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-22937b5a-c8a9-480b-9f0c-f67a63f02265 .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: 5px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-22937b5a-c8a9-480b-9f0c-f67a63f02265 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-22937b5a-c8a9-480b-9f0c-f67a63f02265 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* 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-22937b5a-c8a9-480b-9f0c-f67a63f02265 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-22937b5a-c8a9-480b-9f0c-f67a63f02265.shg-align-container {
  display: flex;
  justify-content: center
}

.s-22937b5a-c8a9-480b-9f0c-f67a63f02265.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-22937b5a-c8a9-480b-9f0c-f67a63f02265.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-22937b5a-c8a9-480b-9f0c-f67a63f02265 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-22937b5a-c8a9-480b-9f0c-f67a63f02265-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-22937b5a-c8a9-480b-9f0c-f67a63f02265 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-22937b5a-c8a9-480b-9f0c-f67a63f02265 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  border-radius: 5px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-22937b5a-c8a9-480b-9f0c-f67a63f02265 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-22937b5a-c8a9-480b-9f0c-f67a63f02265 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* 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-22937b5a-c8a9-480b-9f0c-f67a63f02265 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-22937b5a-c8a9-480b-9f0c-f67a63f02265.shg-align-container {
  display: flex;
  justify-content: center
}

.s-22937b5a-c8a9-480b-9f0c-f67a63f02265.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-22937b5a-c8a9-480b-9f0c-f67a63f02265.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-22937b5a-c8a9-480b-9f0c-f67a63f02265 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-22937b5a-c8a9-480b-9f0c-f67a63f02265-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-22937b5a-c8a9-480b-9f0c-f67a63f02265 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-22937b5a-c8a9-480b-9f0c-f67a63f02265 .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: 5px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-22937b5a-c8a9-480b-9f0c-f67a63f02265 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-22937b5a-c8a9-480b-9f0c-f67a63f02265 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* 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-22937b5a-c8a9-480b-9f0c-f67a63f02265 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-22937b5a-c8a9-480b-9f0c-f67a63f02265.shg-align-container {
  display: flex;
  justify-content: center
}

.s-22937b5a-c8a9-480b-9f0c-f67a63f02265.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-22937b5a-c8a9-480b-9f0c-f67a63f02265.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-df00e26f-565a-4e9e-9359-79bb00589a89 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-df00e26f-565a-4e9e-9359-79bb00589a89 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-df00e26f-565a-4e9e-9359-79bb00589a89 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}


}
#s-e0d7438d-2cf3-4033-9753-cfd98a7dac82 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-e0d7438d-2cf3-4033-9753-cfd98a7dac82 {
  margin-top: 0px;
padding-top: 0%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 0%;
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;
}
}







#s-e0d7438d-2cf3-4033-9753-cfd98a7dac82 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e0d7438d-2cf3-4033-9753-cfd98a7dac82.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-274ded74-6c8b-454f-b5d6-a0982da81b4d {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-274ded74-6c8b-454f-b5d6-a0982da81b4d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-274ded74-6c8b-454f-b5d6-a0982da81b4d-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-274ded74-6c8b-454f-b5d6-a0982da81b4d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-274ded74-6c8b-454f-b5d6-a0982da81b4d .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-274ded74-6c8b-454f-b5d6-a0982da81b4d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-274ded74-6c8b-454f-b5d6-a0982da81b4d img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* 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-274ded74-6c8b-454f-b5d6-a0982da81b4d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-274ded74-6c8b-454f-b5d6-a0982da81b4d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-274ded74-6c8b-454f-b5d6-a0982da81b4d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-274ded74-6c8b-454f-b5d6-a0982da81b4d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-274ded74-6c8b-454f-b5d6-a0982da81b4d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-274ded74-6c8b-454f-b5d6-a0982da81b4d-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-274ded74-6c8b-454f-b5d6-a0982da81b4d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-274ded74-6c8b-454f-b5d6-a0982da81b4d .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: 5px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-274ded74-6c8b-454f-b5d6-a0982da81b4d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-274ded74-6c8b-454f-b5d6-a0982da81b4d img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* 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-274ded74-6c8b-454f-b5d6-a0982da81b4d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-274ded74-6c8b-454f-b5d6-a0982da81b4d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-274ded74-6c8b-454f-b5d6-a0982da81b4d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-274ded74-6c8b-454f-b5d6-a0982da81b4d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-274ded74-6c8b-454f-b5d6-a0982da81b4d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-274ded74-6c8b-454f-b5d6-a0982da81b4d-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-274ded74-6c8b-454f-b5d6-a0982da81b4d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-274ded74-6c8b-454f-b5d6-a0982da81b4d .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: 5px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-274ded74-6c8b-454f-b5d6-a0982da81b4d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-274ded74-6c8b-454f-b5d6-a0982da81b4d img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* 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-274ded74-6c8b-454f-b5d6-a0982da81b4d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-274ded74-6c8b-454f-b5d6-a0982da81b4d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-274ded74-6c8b-454f-b5d6-a0982da81b4d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-274ded74-6c8b-454f-b5d6-a0982da81b4d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-274ded74-6c8b-454f-b5d6-a0982da81b4d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-274ded74-6c8b-454f-b5d6-a0982da81b4d-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-274ded74-6c8b-454f-b5d6-a0982da81b4d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-274ded74-6c8b-454f-b5d6-a0982da81b4d .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  border-radius: 5px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-274ded74-6c8b-454f-b5d6-a0982da81b4d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-274ded74-6c8b-454f-b5d6-a0982da81b4d img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* 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-274ded74-6c8b-454f-b5d6-a0982da81b4d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-274ded74-6c8b-454f-b5d6-a0982da81b4d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-274ded74-6c8b-454f-b5d6-a0982da81b4d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-274ded74-6c8b-454f-b5d6-a0982da81b4d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-274ded74-6c8b-454f-b5d6-a0982da81b4d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-274ded74-6c8b-454f-b5d6-a0982da81b4d-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-274ded74-6c8b-454f-b5d6-a0982da81b4d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-274ded74-6c8b-454f-b5d6-a0982da81b4d .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: 5px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-274ded74-6c8b-454f-b5d6-a0982da81b4d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-274ded74-6c8b-454f-b5d6-a0982da81b4d img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* 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-274ded74-6c8b-454f-b5d6-a0982da81b4d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-274ded74-6c8b-454f-b5d6-a0982da81b4d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-274ded74-6c8b-454f-b5d6-a0982da81b4d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-274ded74-6c8b-454f-b5d6-a0982da81b4d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-b28863d5-ce70-4a95-b850-3a73c82ff5b8 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-b28863d5-ce70-4a95-b850-3a73c82ff5b8 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-b28863d5-ce70-4a95-b850-3a73c82ff5b8 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}


}
#s-29b0302f-9367-4525-8a5f-a6f5adcbc988 {
  margin-left: auto;
margin-right: auto;
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;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-29b0302f-9367-4525-8a5f-a6f5adcbc988 {
  margin-top: 20px;
padding-top: 2%;
padding-left: 2%;
padding-bottom: 2%;
padding-right: 2%;
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;
background-color: rgba(255, 255, 255, 1);
}
}@media (min-width: 992px) and (max-width: 1199px){#s-29b0302f-9367-4525-8a5f-a6f5adcbc988 {
  margin-top: 20px;
padding-top: 3%;
padding-left: 3%;
padding-bottom: 3%;
padding-right: 3%;
border-radius: 5px;
background-color: rgba(255, 255, 255, 1);
}
}@media (min-width: 768px) and (max-width: 991px){#s-29b0302f-9367-4525-8a5f-a6f5adcbc988 {
  margin-top: 10px;
padding-top: 3%;
padding-left: 3%;
padding-bottom: 3%;
padding-right: 3%;
border-radius: 5px;
}
}@media (max-width: 767px){#s-29b0302f-9367-4525-8a5f-a6f5adcbc988 {
  margin-top: 20px;
padding-top: 5%;
padding-left: 3%;
padding-bottom: 5%;
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;
background-color: rgba(255, 255, 255, 1);
}
}
@media (min-width: 0px) {
[id="s-29b0302f-9367-4525-8a5f-a6f5adcbc988"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-29b0302f-9367-4525-8a5f-a6f5adcbc988"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-29b0302f-9367-4525-8a5f-a6f5adcbc988"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-29b0302f-9367-4525-8a5f-a6f5adcbc988"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-41d5a1a9-b25c-4128-bed3-a40086b18bcd {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 1200px){#s-41d5a1a9-b25c-4128-bed3-a40086b18bcd {
  padding-top: 0%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 0%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 0px;
}
}
#s-41d5a1a9-b25c-4128-bed3-a40086b18bcd {
  background-image: url();
}








#s-41d5a1a9-b25c-4128-bed3-a40086b18bcd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-41d5a1a9-b25c-4128-bed3-a40086b18bcd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 1200px){






#s-41d5a1a9-b25c-4128-bed3-a40086b18bcd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-41d5a1a9-b25c-4128-bed3-a40086b18bcd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
}
#s-9f2e33a1-d9ae-4178-a3c6-ee72d17db75f {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-9f2e33a1-d9ae-4178-a3c6-ee72d17db75f {
  text-align: left;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-9f2e33a1-d9ae-4178-a3c6-ee72d17db75f {
  text-align: left;
}
}@media (min-width: 768px) and (max-width: 991px){#s-9f2e33a1-d9ae-4178-a3c6-ee72d17db75f {
  text-align: left;
}
}@media (max-width: 767px){#s-9f2e33a1-d9ae-4178-a3c6-ee72d17db75f {
  text-align: left;
}
}
#s-9f2e33a1-d9ae-4178-a3c6-ee72d17db75f .shogun-heading-component h4 {
  color: ;
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 1200px){#s-9f2e33a1-d9ae-4178-a3c6-ee72d17db75f .shogun-heading-component h4 {
  color: rgba(165, 0, 0, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 12px;
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-9f2e33a1-d9ae-4178-a3c6-ee72d17db75f .shogun-heading-component h4 {
  color: rgba(165, 0, 0, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 12px;
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-9f2e33a1-d9ae-4178-a3c6-ee72d17db75f .shogun-heading-component h4 {
  color: rgba(165, 0, 0, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 12px;
  
  
  
}


}@media (max-width: 767px){#s-9f2e33a1-d9ae-4178-a3c6-ee72d17db75f .shogun-heading-component h4 {
  color: rgba(165, 0, 0, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 12px;
  
  
  
}


}
#s-ae5326a6-d0ca-4a3c-8017-834380eae733 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-ae5326a6-d0ca-4a3c-8017-834380eae733 {
  margin-top: 4px;
text-align: left;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ae5326a6-d0ca-4a3c-8017-834380eae733 {
  margin-top: 4px;
text-align: left;
}
}@media (min-width: 768px) and (max-width: 991px){#s-ae5326a6-d0ca-4a3c-8017-834380eae733 {
  margin-top: 4px;
text-align: left;
}
}@media (max-width: 767px){#s-ae5326a6-d0ca-4a3c-8017-834380eae733 {
  margin-top: 0px;
text-align: left;
}
}
#s-ae5326a6-d0ca-4a3c-8017-834380eae733 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


@media (min-width: 1200px){#s-ae5326a6-d0ca-4a3c-8017-834380eae733 .shogun-heading-component h3 {
  color: ;
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-ae5326a6-d0ca-4a3c-8017-834380eae733 .shogun-heading-component h3 {
  color: ;
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-ae5326a6-d0ca-4a3c-8017-834380eae733 .shogun-heading-component h3 {
  color: ;
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


}
#s-20561d5e-eae5-48f3-af35-8a929a2e88be {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-20561d5e-eae5-48f3-af35-8a929a2e88be {
  margin-top: 10px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-20561d5e-eae5-48f3-af35-8a929a2e88be {
  margin-top: 10px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-20561d5e-eae5-48f3-af35-8a929a2e88be {
  margin-top: 10px;
}
}@media (max-width: 767px){#s-20561d5e-eae5-48f3-af35-8a929a2e88be {
  margin-top: 10px;
}
}
#s-20561d5e-eae5-48f3-af35-8a929a2e88be .shg-proportional-font-size,
#s-20561d5e-eae5-48f3-af35-8a929a2e88be .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-2b730686-e498-4851-99f7-99478b11b998 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-2b730686-e498-4851-99f7-99478b11b998 {
  margin-top: 15px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2b730686-e498-4851-99f7-99478b11b998 {
  margin-top: 10px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-2b730686-e498-4851-99f7-99478b11b998 {
  margin-top: 10px;
}
}@media (max-width: 767px){#s-2b730686-e498-4851-99f7-99478b11b998 {
  margin-top: 10px;
}
}
#s-2b730686-e498-4851-99f7-99478b11b998 .shg-proportional-font-size,
#s-2b730686-e498-4851-99f7-99478b11b998 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-2d79918d-281a-4cc0-bf87-1b0e7e0b78ff {
  margin-left: auto;
margin-right: auto;
}

#s-3aec698c-c91d-4446-a8c9-8cbd97a9d510 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(242, 242, 242, 1);
}
@media (min-width: 1200px){#s-3aec698c-c91d-4446-a8c9-8cbd97a9d510 {
  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;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-3aec698c-c91d-4446-a8c9-8cbd97a9d510 {
  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;
}
}@media (min-width: 768px) and (max-width: 991px){#s-3aec698c-c91d-4446-a8c9-8cbd97a9d510 {
  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: none;
border-radius: 5px;
}
}@media (max-width: 767px){#s-3aec698c-c91d-4446-a8c9-8cbd97a9d510 {
  margin-top: 15px;
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;
}
}







#s-3aec698c-c91d-4446-a8c9-8cbd97a9d510 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3aec698c-c91d-4446-a8c9-8cbd97a9d510.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.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-73d02959-0e46-44b2-a77a-7caf07ce384a {
  margin-left: auto;
margin-right: auto;
text-align: left;
}
@media (max-width: 767px){#s-73d02959-0e46-44b2-a77a-7caf07ce384a {
  margin-top: 0px;
}
}


.shg-c#s-73d02959-0e46-44b2-a77a-7caf07ce384a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-73d02959-0e46-44b2-a77a-7caf07ce384a img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-73d02959-0e46-44b2-a77a-7caf07ce384a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-73d02959-0e46-44b2-a77a-7caf07ce384a img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-73d02959-0e46-44b2-a77a-7caf07ce384a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-73d02959-0e46-44b2-a77a-7caf07ce384a img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-73d02959-0e46-44b2-a77a-7caf07ce384a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-73d02959-0e46-44b2-a77a-7caf07ce384a img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-73d02959-0e46-44b2-a77a-7caf07ce384a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-73d02959-0e46-44b2-a77a-7caf07ce384a img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-c6108276-8b02-48c2-9dca-7543d3253e33 {
  margin-left: auto;
margin-right: auto;
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;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-c6108276-8b02-48c2-9dca-7543d3253e33 {
  margin-top: 20px;
padding-top: 2%;
padding-left: 2%;
padding-bottom: 2%;
padding-right: 2%;
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;
background-color: rgba(255, 255, 255, 1);
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c6108276-8b02-48c2-9dca-7543d3253e33 {
  margin-top: 20px;
padding-top: 3%;
padding-left: 3%;
padding-bottom: 3%;
padding-right: 3%;
border-radius: 5px;
background-color: rgba(255, 255, 255, 1);
}
}@media (min-width: 768px) and (max-width: 991px){#s-c6108276-8b02-48c2-9dca-7543d3253e33 {
  margin-top: 10px;
padding-top: 3%;
padding-left: 3%;
padding-bottom: 3%;
padding-right: 3%;
border-radius: 5px;
}
}@media (max-width: 767px){#s-c6108276-8b02-48c2-9dca-7543d3253e33 {
  margin-top: 20px;
padding-top: 5%;
padding-left: 3%;
padding-bottom: 5%;
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;
background-color: rgba(255, 255, 255, 1);
}
}
@media (min-width: 0px) {
[id="s-c6108276-8b02-48c2-9dca-7543d3253e33"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c6108276-8b02-48c2-9dca-7543d3253e33"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c6108276-8b02-48c2-9dca-7543d3253e33"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c6108276-8b02-48c2-9dca-7543d3253e33"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-c6a1bb65-d638-47cb-ac7e-5570e1b5ec7d {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 1200px){#s-c6a1bb65-d638-47cb-ac7e-5570e1b5ec7d {
  padding-top: 0%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 0%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 0px;
}
}
#s-c6a1bb65-d638-47cb-ac7e-5570e1b5ec7d {
  background-image: url();
}








#s-c6a1bb65-d638-47cb-ac7e-5570e1b5ec7d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c6a1bb65-d638-47cb-ac7e-5570e1b5ec7d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 1200px){






#s-c6a1bb65-d638-47cb-ac7e-5570e1b5ec7d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c6a1bb65-d638-47cb-ac7e-5570e1b5ec7d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
}
#s-72fbe3da-0fcd-4cd1-a200-abfa3b6afa94 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-72fbe3da-0fcd-4cd1-a200-abfa3b6afa94 {
  text-align: left;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-72fbe3da-0fcd-4cd1-a200-abfa3b6afa94 {
  text-align: left;
}
}@media (min-width: 768px) and (max-width: 991px){#s-72fbe3da-0fcd-4cd1-a200-abfa3b6afa94 {
  text-align: left;
}
}@media (max-width: 767px){#s-72fbe3da-0fcd-4cd1-a200-abfa3b6afa94 {
  text-align: left;
}
}
#s-72fbe3da-0fcd-4cd1-a200-abfa3b6afa94 .shogun-heading-component h4 {
  color: ;
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 1200px){#s-72fbe3da-0fcd-4cd1-a200-abfa3b6afa94 .shogun-heading-component h4 {
  color: rgba(165, 0, 0, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 12px;
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-72fbe3da-0fcd-4cd1-a200-abfa3b6afa94 .shogun-heading-component h4 {
  color: rgba(165, 0, 0, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 12px;
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-72fbe3da-0fcd-4cd1-a200-abfa3b6afa94 .shogun-heading-component h4 {
  color: rgba(165, 0, 0, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 12px;
  
  
  
}


}@media (max-width: 767px){#s-72fbe3da-0fcd-4cd1-a200-abfa3b6afa94 .shogun-heading-component h4 {
  color: rgba(165, 0, 0, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 12px;
  
  
  
}


}
#s-51f6730f-42df-48eb-b690-e0ea5a5c0e08 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-51f6730f-42df-48eb-b690-e0ea5a5c0e08 {
  margin-top: 4px;
text-align: left;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-51f6730f-42df-48eb-b690-e0ea5a5c0e08 {
  margin-top: 4px;
text-align: left;
}
}@media (min-width: 768px) and (max-width: 991px){#s-51f6730f-42df-48eb-b690-e0ea5a5c0e08 {
  margin-top: 4px;
text-align: left;
}
}@media (max-width: 767px){#s-51f6730f-42df-48eb-b690-e0ea5a5c0e08 {
  margin-top: 0px;
text-align: left;
}
}
#s-51f6730f-42df-48eb-b690-e0ea5a5c0e08 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


@media (min-width: 1200px){#s-51f6730f-42df-48eb-b690-e0ea5a5c0e08 .shogun-heading-component h3 {
  color: ;
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-51f6730f-42df-48eb-b690-e0ea5a5c0e08 .shogun-heading-component h3 {
  color: ;
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-51f6730f-42df-48eb-b690-e0ea5a5c0e08 .shogun-heading-component h3 {
  color: ;
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


}
#s-267f6208-ced6-444f-92e6-d5b381d15634 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-267f6208-ced6-444f-92e6-d5b381d15634 {
  margin-top: 10px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-267f6208-ced6-444f-92e6-d5b381d15634 {
  margin-top: 10px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-267f6208-ced6-444f-92e6-d5b381d15634 {
  margin-top: 10px;
}
}@media (max-width: 767px){#s-267f6208-ced6-444f-92e6-d5b381d15634 {
  margin-top: 10px;
}
}
#s-267f6208-ced6-444f-92e6-d5b381d15634 .shg-proportional-font-size,
#s-267f6208-ced6-444f-92e6-d5b381d15634 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-f244eca4-0951-43b6-af36-080b081833b6 {
  margin-left: auto;
margin-right: auto;
}

#s-346f22bd-388c-4b5c-854b-ae528144dd59 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(242, 242, 242, 1);
}
@media (min-width: 1200px){#s-346f22bd-388c-4b5c-854b-ae528144dd59 {
  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;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-346f22bd-388c-4b5c-854b-ae528144dd59 {
  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;
}
}@media (min-width: 768px) and (max-width: 991px){#s-346f22bd-388c-4b5c-854b-ae528144dd59 {
  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;
}
}@media (max-width: 767px){#s-346f22bd-388c-4b5c-854b-ae528144dd59 {
  margin-top: 15px;
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;
}
}







#s-346f22bd-388c-4b5c-854b-ae528144dd59 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-346f22bd-388c-4b5c-854b-ae528144dd59.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c7740c28-e97b-483f-9ea3-69d2f90801f6 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}
@media (max-width: 767px){#s-c7740c28-e97b-483f-9ea3-69d2f90801f6 {
  margin-top: 0px;
}
}


.shg-c#s-c7740c28-e97b-483f-9ea3-69d2f90801f6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c7740c28-e97b-483f-9ea3-69d2f90801f6 img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-c7740c28-e97b-483f-9ea3-69d2f90801f6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c7740c28-e97b-483f-9ea3-69d2f90801f6 img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-c7740c28-e97b-483f-9ea3-69d2f90801f6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c7740c28-e97b-483f-9ea3-69d2f90801f6 img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-c7740c28-e97b-483f-9ea3-69d2f90801f6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c7740c28-e97b-483f-9ea3-69d2f90801f6 img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-c7740c28-e97b-483f-9ea3-69d2f90801f6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c7740c28-e97b-483f-9ea3-69d2f90801f6 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-6cbcb5e7-6977-4738-9751-4dc52c64171e {
  margin-top: 0px;
margin-left: 10%;
margin-bottom: 0px;
margin-right: 10%;
padding-top: 0px;
padding-left: 3%;
padding-bottom: 0px;
padding-right: 3%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}
@media (min-width: 1200px){#s-6cbcb5e7-6977-4738-9751-4dc52c64171e {
  margin-top: 50px;
margin-left: 7%;
margin-bottom: 0px;
margin-right: 7%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-6cbcb5e7-6977-4738-9751-4dc52c64171e {
  margin-top: 50px;
margin-left: 7%;
margin-bottom: 0px;
margin-right: 7%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-6cbcb5e7-6977-4738-9751-4dc52c64171e {
  margin-top: 60px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-left: 2%;
padding-right: 2%;
}
}@media (max-width: 767px){#s-6cbcb5e7-6977-4738-9751-4dc52c64171e {
  margin-top: 60px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
max-width: 600px;
}
}
#s-6cbcb5e7-6977-4738-9751-4dc52c64171e {
  background-image: url();
}








#s-6cbcb5e7-6977-4738-9751-4dc52c64171e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6cbcb5e7-6977-4738-9751-4dc52c64171e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-80756776-d349-49d9-b93a-b5f8084ec56b {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (max-width: 767px){#s-80756776-d349-49d9-b93a-b5f8084ec56b {
  padding-left: 5%;
padding-right: 5%;
}
}







#s-80756776-d349-49d9-b93a-b5f8084ec56b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-80756776-d349-49d9-b93a-b5f8084ec56b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-88d1ae81-def2-499d-849d-f21470f69bcd {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-88d1ae81-def2-499d-849d-f21470f69bcd {
  text-align: center;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-88d1ae81-def2-499d-849d-f21470f69bcd {
  text-align: center;
}
}@media (max-width: 767px){#s-88d1ae81-def2-499d-849d-f21470f69bcd {
  padding-left: 0%;
padding-right: 0%;
text-align: center;
}
}
#s-88d1ae81-def2-499d-849d-f21470f69bcd .shogun-heading-component h2 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}


#s-88d1ae81-def2-499d-849d-f21470f69bcd .shogun-heading-component h2 a {
  color: rgba(40, 40, 40, 1);
}

@media (min-width: 1200px){#s-88d1ae81-def2-499d-849d-f21470f69bcd .shogun-heading-component h2 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 48px;
  
  
  
}


#s-88d1ae81-def2-499d-849d-f21470f69bcd .shogun-heading-component h2 a {
  color: rgba(40, 40, 40, 1);
}

}@media (min-width: 992px) and (max-width: 1199px){#s-88d1ae81-def2-499d-849d-f21470f69bcd .shogun-heading-component h2 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


#s-88d1ae81-def2-499d-849d-f21470f69bcd .shogun-heading-component h2 a {
  color: rgba(40, 40, 40, 1);
}

}@media (min-width: 768px) and (max-width: 991px){#s-88d1ae81-def2-499d-849d-f21470f69bcd .shogun-heading-component h2 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


#s-88d1ae81-def2-499d-849d-f21470f69bcd .shogun-heading-component h2 a {
  color: rgba(40, 40, 40, 1);
}

}@media (max-width: 767px){#s-88d1ae81-def2-499d-849d-f21470f69bcd .shogun-heading-component h2 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


#s-88d1ae81-def2-499d-849d-f21470f69bcd .shogun-heading-component h2 a {
  color: rgba(40, 40, 40, 1);
}

}
#s-cc413c33-51b0-40ec-9894-aca0e1401008 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 768px) and (max-width: 991px){#s-cc413c33-51b0-40ec-9894-aca0e1401008 {
  display: none;
}
#s-cc413c33-51b0-40ec-9894-aca0e1401008, #wrap-s-cc413c33-51b0-40ec-9894-aca0e1401008, #wrap-content-s-cc413c33-51b0-40ec-9894-aca0e1401008 { display: none !important; }}@media (max-width: 767px){#s-cc413c33-51b0-40ec-9894-aca0e1401008 {
  margin-top: 5px;
}
}
#s-cc413c33-51b0-40ec-9894-aca0e1401008 .shg-proportional-font-size,
#s-cc413c33-51b0-40ec-9894-aca0e1401008 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-174ef676-23c5-41c6-8c4d-a47adc382115 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-174ef676-23c5-41c6-8c4d-a47adc382115 {
  display: none;
}
#s-174ef676-23c5-41c6-8c4d-a47adc382115, #wrap-s-174ef676-23c5-41c6-8c4d-a47adc382115, #wrap-content-s-174ef676-23c5-41c6-8c4d-a47adc382115 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-174ef676-23c5-41c6-8c4d-a47adc382115 {
  display: none;
}
#s-174ef676-23c5-41c6-8c4d-a47adc382115, #wrap-s-174ef676-23c5-41c6-8c4d-a47adc382115, #wrap-content-s-174ef676-23c5-41c6-8c4d-a47adc382115 { display: none !important; }}@media (max-width: 767px){#s-174ef676-23c5-41c6-8c4d-a47adc382115 {
  margin-top: 5px;
display: none;
}
#s-174ef676-23c5-41c6-8c4d-a47adc382115, #wrap-s-174ef676-23c5-41c6-8c4d-a47adc382115, #wrap-content-s-174ef676-23c5-41c6-8c4d-a47adc382115 { display: none !important; }}
#s-174ef676-23c5-41c6-8c4d-a47adc382115 .shg-proportional-font-size,
#s-174ef676-23c5-41c6-8c4d-a47adc382115 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-5e5a7410-0019-449d-b3c2-d03f599fbbc7 {
  margin-top: 20px;
margin-left: auto;
margin-right: auto;
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: 0px;
background-color: rgba(40, 40, 40, 1);
}
@media (min-width: 1200px){#s-5e5a7410-0019-449d-b3c2-d03f599fbbc7 {
  border-radius: 5px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-5e5a7410-0019-449d-b3c2-d03f599fbbc7 {
  border-radius: 5px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-5e5a7410-0019-449d-b3c2-d03f599fbbc7 {
  border-radius: 5px;
}
}@media (max-width: 767px){#s-5e5a7410-0019-449d-b3c2-d03f599fbbc7 {
  border-style: solid;
margin-top: 15px;
margin-left: 0%;
margin-right: 0%;
border-left-width: 0px;
border-right-width: 0px;
border-color: rgba(227, 227, 227, 1);
border-radius: 0px;
}
}
@media (min-width: 0px) {
[id="s-5e5a7410-0019-449d-b3c2-d03f599fbbc7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5e5a7410-0019-449d-b3c2-d03f599fbbc7"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-5e5a7410-0019-449d-b3c2-d03f599fbbc7"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-5e5a7410-0019-449d-b3c2-d03f599fbbc7"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-7648521d-73b1-49fc-85d9-22af3643673d {
  margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 5%;
padding-bottom: 20px;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 0.05);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}
@media (min-width: 1200px){#s-7648521d-73b1-49fc-85d9-22af3643673d {
  padding-top: 5%;
padding-bottom: 5%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-7648521d-73b1-49fc-85d9-22af3643673d {
  padding-top: 5%;
}
}@media (max-width: 767px){#s-7648521d-73b1-49fc-85d9-22af3643673d {
  padding-top: 5%;
padding-bottom: 5%;
border-style: solid;
}
}
#s-7648521d-73b1-49fc-85d9-22af3643673d {
  background-image: url();
}








#s-7648521d-73b1-49fc-85d9-22af3643673d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7648521d-73b1-49fc-85d9-22af3643673d.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-6c7d6074-967a-4176-914c-faaff04333ac {
  margin-left: auto;
margin-right: auto;
}

#s-e12dfaac-1a06-463a-80b2-814e88859a9b {
  margin-left: auto;
margin-right: auto;
text-align: center;
}



.shg-c#s-e12dfaac-1a06-463a-80b2-814e88859a9b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e12dfaac-1a06-463a-80b2-814e88859a9b img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-e12dfaac-1a06-463a-80b2-814e88859a9b img.shogun-image,
.shg-c#s-e12dfaac-1a06-463a-80b2-814e88859a9b .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-e12dfaac-1a06-463a-80b2-814e88859a9b .shg-image-zoom,
.shg-c#s-e12dfaac-1a06-463a-80b2-814e88859a9b img.shogun-image {
  aspect-ratio: 1/1;
  border-style: none;
  border-color: #000;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 5px;
    overflow: hidden; /* To clip the inner img */
  
}



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

.shg-c#s-e12dfaac-1a06-463a-80b2-814e88859a9b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e12dfaac-1a06-463a-80b2-814e88859a9b img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-e12dfaac-1a06-463a-80b2-814e88859a9b img.shogun-image,
.shg-c#s-e12dfaac-1a06-463a-80b2-814e88859a9b .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-e12dfaac-1a06-463a-80b2-814e88859a9b .shg-image-zoom,
.shg-c#s-e12dfaac-1a06-463a-80b2-814e88859a9b img.shogun-image {
  aspect-ratio: 1/1;
  border-style: none;
  border-color: #000;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 5px;
    overflow: hidden; /* To clip the inner img */
  
}



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

.shg-c#s-e12dfaac-1a06-463a-80b2-814e88859a9b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e12dfaac-1a06-463a-80b2-814e88859a9b img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-e12dfaac-1a06-463a-80b2-814e88859a9b img.shogun-image,
.shg-c#s-e12dfaac-1a06-463a-80b2-814e88859a9b .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-e12dfaac-1a06-463a-80b2-814e88859a9b .shg-image-zoom,
.shg-c#s-e12dfaac-1a06-463a-80b2-814e88859a9b img.shogun-image {
  aspect-ratio: 1/1;
  border-style: none;
  border-color: #000;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 5px;
    overflow: hidden; /* To clip the inner img */
  
}



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

.shg-c#s-e12dfaac-1a06-463a-80b2-814e88859a9b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e12dfaac-1a06-463a-80b2-814e88859a9b img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-e12dfaac-1a06-463a-80b2-814e88859a9b img.shogun-image,
.shg-c#s-e12dfaac-1a06-463a-80b2-814e88859a9b .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-e12dfaac-1a06-463a-80b2-814e88859a9b .shg-image-zoom,
.shg-c#s-e12dfaac-1a06-463a-80b2-814e88859a9b img.shogun-image {
  aspect-ratio: 1/1;
  border-style: none;
  border-color: #000;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 5px;
    overflow: hidden; /* To clip the inner img */
  
}



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

.shg-c#s-e12dfaac-1a06-463a-80b2-814e88859a9b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e12dfaac-1a06-463a-80b2-814e88859a9b img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-e12dfaac-1a06-463a-80b2-814e88859a9b img.shogun-image,
.shg-c#s-e12dfaac-1a06-463a-80b2-814e88859a9b .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-e12dfaac-1a06-463a-80b2-814e88859a9b .shg-image-zoom,
.shg-c#s-e12dfaac-1a06-463a-80b2-814e88859a9b img.shogun-image {
  aspect-ratio: 1/1;
  border-style: none;
  border-color: #000;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 5px;
    overflow: hidden; /* To clip the inner img */
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}
.shg-product-title-component h1 span,
.shg-product-title-component h2 span,
.shg-product-title-component h3 span,
.shg-product-title-component h4 span,
.shg-product-title-component h5 span,
.shg-product-title-component h6 span {
  margin: 0;
  padding: 0;
  display: block;
  color: ;
  font-family: ;
  text-transform: none;
  font-weight: ;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
}

.shg-product-title-component a {
  text-decoration: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

#s-43cdf61d-98cb-43bc-990f-0ecd7df774a7 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 2px;
text-align: left;
}
@media (min-width: 1200px){#s-43cdf61d-98cb-43bc-990f-0ecd7df774a7 {
  margin-top: 10px;
}
}
#s-43cdf61d-98cb-43bc-990f-0ecd7df774a7 .shg-product-title-component h4 span {
  color: rgba(255, 255, 255, 1);
  font-weight:  900 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
  
}

#s-04e335c7-eff1-4f7e-b18c-f0a55db39fe8 {
  text-align: left;
}

#s-04e335c7-eff1-4f7e-b18c-f0a55db39fe8 .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  font-weight:  normal ;
  font-family: Montserrat;
  font-style:  normal ;
}

#s-04e335c7-eff1-4f7e-b18c-f0a55db39fe8 .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: Montserrat;
  font-style:  normal ;
  font-size: 20px;
}

#s-04e335c7-eff1-4f7e-b18c-f0a55db39fe8 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
@media (min-width: 1200px){#s-04e335c7-eff1-4f7e-b18c-f0a55db39fe8 .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  font-weight:  normal ;
  font-family: Montserrat;
  font-style:  normal ;
}

#s-04e335c7-eff1-4f7e-b18c-f0a55db39fe8 .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: Montserrat;
  font-style:  normal ;
  font-size: 20px;
}

#s-04e335c7-eff1-4f7e-b18c-f0a55db39fe8 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
}
.shg-btn.shg-cse, .shg-btn.shg-cse:hover, .shg-btn.shg-cse:focus {
  color: #FFF;
}

.shg-product-atc-wrapper {
  position: relative;
}

.shg-product-atc-btn {
  position: relative;
  z-index: 2;
  display: block;
  border: none;
  align-items: normal;
  box-sizing: border-box;
  cursor: pointer;
  transition: opacity 200ms linear;
  opacity: 1;
}

.shg-product-atc-btn-opaque {
  opacity: 0;
}

.shg-product-atc-info-box {
  position: absolute;
  z-index: 1;
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  text-align: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.shg-product-atc-btn-wrapper.shg-align-left {
  text-align: left;
}

.shg-product-atc-btn-wrapper.shg-align-center {
  text-align: center;
}

.shg-product-atc-btn-wrapper.shg-align-right {
  text-align: right;
}

#s-37b452a5-5c5e-41c3-a0e9-2161ae68f69c {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(165, 0, 0, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-37b452a5-5c5e-41c3-a0e9-2161ae68f69c:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-37b452a5-5c5e-41c3-a0e9-2161ae68f69c:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-37b452a5-5c5e-41c3-a0e9-2161ae68f69c-atc-btn-wrapper {
    text-align: center;
  }


#s-37b452a5-5c5e-41c3-a0e9-2161ae68f69c {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-37b452a5-5c5e-41c3-a0e9-2161ae68f69c.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-37b452a5-5c5e-41c3-a0e9-2161ae68f69c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}

#s-37b452a5-5c5e-41c3-a0e9-2161ae68f69c.shg-btn.shg-product-atc-error {
  font-weight: 800;
  font-family: Montserrat;
  
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
}


@media (min-width: 1200px){
  #s-37b452a5-5c5e-41c3-a0e9-2161ae68f69c-atc-btn-wrapper {
    text-align: center;
  }


#s-37b452a5-5c5e-41c3-a0e9-2161ae68f69c {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-37b452a5-5c5e-41c3-a0e9-2161ae68f69c.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-37b452a5-5c5e-41c3-a0e9-2161ae68f69c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}

#s-37b452a5-5c5e-41c3-a0e9-2161ae68f69c.shg-btn.shg-product-atc-error {
  font-weight: 800;
  font-family: Montserrat;
  
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-37b452a5-5c5e-41c3-a0e9-2161ae68f69c-atc-btn-wrapper {
    text-align: center;
  }


#s-37b452a5-5c5e-41c3-a0e9-2161ae68f69c {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-37b452a5-5c5e-41c3-a0e9-2161ae68f69c.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-37b452a5-5c5e-41c3-a0e9-2161ae68f69c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}

#s-37b452a5-5c5e-41c3-a0e9-2161ae68f69c.shg-btn.shg-product-atc-error {
  font-weight: 800;
  font-family: Montserrat;
  
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-37b452a5-5c5e-41c3-a0e9-2161ae68f69c-atc-btn-wrapper {
    text-align: center;
  }


#s-37b452a5-5c5e-41c3-a0e9-2161ae68f69c {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-37b452a5-5c5e-41c3-a0e9-2161ae68f69c.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-37b452a5-5c5e-41c3-a0e9-2161ae68f69c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}

#s-37b452a5-5c5e-41c3-a0e9-2161ae68f69c.shg-btn.shg-product-atc-error {
  font-weight: 800;
  font-family: Montserrat;
  
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
}


}@media (max-width: 767px){
  #s-37b452a5-5c5e-41c3-a0e9-2161ae68f69c-atc-btn-wrapper {
    text-align: center;
  }


#s-37b452a5-5c5e-41c3-a0e9-2161ae68f69c {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-37b452a5-5c5e-41c3-a0e9-2161ae68f69c.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-37b452a5-5c5e-41c3-a0e9-2161ae68f69c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}

#s-37b452a5-5c5e-41c3-a0e9-2161ae68f69c.shg-btn.shg-product-atc-error {
  font-weight: 800;
  font-family: Montserrat;
  
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
}


}
#s-da51e45e-8aac-4f3a-8663-c12c697267cf {
  margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 5%;
padding-bottom: 20px;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 0.05);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}
@media (min-width: 1200px){#s-da51e45e-8aac-4f3a-8663-c12c697267cf {
  padding-top: 5%;
padding-bottom: 5%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-da51e45e-8aac-4f3a-8663-c12c697267cf {
  padding-top: 5%;
}
}@media (max-width: 767px){#s-da51e45e-8aac-4f3a-8663-c12c697267cf {
  border-color: #000;
padding-top: 5%;
padding-bottom: 5%;
border-right-width: 0px;
border-style: none;
}
}
#s-da51e45e-8aac-4f3a-8663-c12c697267cf {
  background-image: url();
}








#s-da51e45e-8aac-4f3a-8663-c12c697267cf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-da51e45e-8aac-4f3a-8663-c12c697267cf.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-a54262a6-c457-4085-bd77-59d15e5a41d0 {
  margin-left: auto;
margin-right: auto;
}

#s-601fbcd0-63ae-4bd0-b540-4147f1dbd301 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}



.shg-c#s-601fbcd0-63ae-4bd0-b540-4147f1dbd301 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-601fbcd0-63ae-4bd0-b540-4147f1dbd301 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-601fbcd0-63ae-4bd0-b540-4147f1dbd301 img.shogun-image,
.shg-c#s-601fbcd0-63ae-4bd0-b540-4147f1dbd301 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-601fbcd0-63ae-4bd0-b540-4147f1dbd301 .shg-image-zoom,
.shg-c#s-601fbcd0-63ae-4bd0-b540-4147f1dbd301 img.shogun-image {
  aspect-ratio: 1/1;
  border-style: none;
  border-color: #000;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 5px;
    overflow: hidden; /* To clip the inner img */
  
}



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

.shg-c#s-601fbcd0-63ae-4bd0-b540-4147f1dbd301 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-601fbcd0-63ae-4bd0-b540-4147f1dbd301 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-601fbcd0-63ae-4bd0-b540-4147f1dbd301 img.shogun-image,
.shg-c#s-601fbcd0-63ae-4bd0-b540-4147f1dbd301 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-601fbcd0-63ae-4bd0-b540-4147f1dbd301 .shg-image-zoom,
.shg-c#s-601fbcd0-63ae-4bd0-b540-4147f1dbd301 img.shogun-image {
  aspect-ratio: 1/1;
  border-style: none;
  border-color: #000;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 5px;
    overflow: hidden; /* To clip the inner img */
  
}



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

.shg-c#s-601fbcd0-63ae-4bd0-b540-4147f1dbd301 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-601fbcd0-63ae-4bd0-b540-4147f1dbd301 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-601fbcd0-63ae-4bd0-b540-4147f1dbd301 img.shogun-image,
.shg-c#s-601fbcd0-63ae-4bd0-b540-4147f1dbd301 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-601fbcd0-63ae-4bd0-b540-4147f1dbd301 .shg-image-zoom,
.shg-c#s-601fbcd0-63ae-4bd0-b540-4147f1dbd301 img.shogun-image {
  aspect-ratio: 1/1;
  border-style: none;
  border-color: #000;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 5px;
    overflow: hidden; /* To clip the inner img */
  
}



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

.shg-c#s-601fbcd0-63ae-4bd0-b540-4147f1dbd301 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-601fbcd0-63ae-4bd0-b540-4147f1dbd301 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-601fbcd0-63ae-4bd0-b540-4147f1dbd301 img.shogun-image,
.shg-c#s-601fbcd0-63ae-4bd0-b540-4147f1dbd301 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-601fbcd0-63ae-4bd0-b540-4147f1dbd301 .shg-image-zoom,
.shg-c#s-601fbcd0-63ae-4bd0-b540-4147f1dbd301 img.shogun-image {
  aspect-ratio: 1/1;
  border-style: none;
  border-color: #000;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 5px;
    overflow: hidden; /* To clip the inner img */
  
}



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

.shg-c#s-601fbcd0-63ae-4bd0-b540-4147f1dbd301 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-601fbcd0-63ae-4bd0-b540-4147f1dbd301 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-601fbcd0-63ae-4bd0-b540-4147f1dbd301 img.shogun-image,
.shg-c#s-601fbcd0-63ae-4bd0-b540-4147f1dbd301 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-601fbcd0-63ae-4bd0-b540-4147f1dbd301 .shg-image-zoom,
.shg-c#s-601fbcd0-63ae-4bd0-b540-4147f1dbd301 img.shogun-image {
  aspect-ratio: 1/1;
  border-style: none;
  border-color: #000;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 5px;
    overflow: hidden; /* To clip the inner img */
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}
#s-7db67ae2-ebc6-4b45-9648-421302a4a835 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 2px;
text-align: left;
}
@media (min-width: 1200px){#s-7db67ae2-ebc6-4b45-9648-421302a4a835 {
  margin-top: 10px;
}
}
#s-7db67ae2-ebc6-4b45-9648-421302a4a835 .shg-product-title-component h4 span {
  color: rgba(255, 255, 255, 1);
  font-weight:  900 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
  
}

#s-41925026-92bf-4ed5-9606-416c58295a37 {
  text-align: left;
}

#s-41925026-92bf-4ed5-9606-416c58295a37 .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  font-weight:  normal ;
  font-family: Montserrat;
  font-style:  normal ;
}

#s-41925026-92bf-4ed5-9606-416c58295a37 .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: Montserrat;
  font-style:  normal ;
  font-size: 20px;
}

#s-41925026-92bf-4ed5-9606-416c58295a37 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
@media (min-width: 1200px){#s-41925026-92bf-4ed5-9606-416c58295a37 .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  font-weight:  normal ;
  font-family: Montserrat;
  font-style:  normal ;
}

#s-41925026-92bf-4ed5-9606-416c58295a37 .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: Montserrat;
  font-style:  normal ;
  font-size: 20px;
}

#s-41925026-92bf-4ed5-9606-416c58295a37 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
}
#s-48f03e55-dc7c-4841-bfa1-428f539d24ca {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(165, 0, 0, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-48f03e55-dc7c-4841-bfa1-428f539d24ca:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-48f03e55-dc7c-4841-bfa1-428f539d24ca:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-48f03e55-dc7c-4841-bfa1-428f539d24ca-atc-btn-wrapper {
    text-align: center;
  }


#s-48f03e55-dc7c-4841-bfa1-428f539d24ca {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-48f03e55-dc7c-4841-bfa1-428f539d24ca.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-48f03e55-dc7c-4841-bfa1-428f539d24ca.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}

#s-48f03e55-dc7c-4841-bfa1-428f539d24ca.shg-btn.shg-product-atc-error {
  font-weight: 800;
  font-family: Montserrat;
  
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
}


@media (min-width: 1200px){
  #s-48f03e55-dc7c-4841-bfa1-428f539d24ca-atc-btn-wrapper {
    text-align: center;
  }


#s-48f03e55-dc7c-4841-bfa1-428f539d24ca {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-48f03e55-dc7c-4841-bfa1-428f539d24ca.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-48f03e55-dc7c-4841-bfa1-428f539d24ca.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}

#s-48f03e55-dc7c-4841-bfa1-428f539d24ca.shg-btn.shg-product-atc-error {
  font-weight: 800;
  font-family: Montserrat;
  
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-48f03e55-dc7c-4841-bfa1-428f539d24ca-atc-btn-wrapper {
    text-align: center;
  }


#s-48f03e55-dc7c-4841-bfa1-428f539d24ca {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-48f03e55-dc7c-4841-bfa1-428f539d24ca.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-48f03e55-dc7c-4841-bfa1-428f539d24ca.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}

#s-48f03e55-dc7c-4841-bfa1-428f539d24ca.shg-btn.shg-product-atc-error {
  font-weight: 800;
  font-family: Montserrat;
  
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-48f03e55-dc7c-4841-bfa1-428f539d24ca-atc-btn-wrapper {
    text-align: center;
  }


#s-48f03e55-dc7c-4841-bfa1-428f539d24ca {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-48f03e55-dc7c-4841-bfa1-428f539d24ca.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-48f03e55-dc7c-4841-bfa1-428f539d24ca.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}

#s-48f03e55-dc7c-4841-bfa1-428f539d24ca.shg-btn.shg-product-atc-error {
  font-weight: 800;
  font-family: Montserrat;
  
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
}


}@media (max-width: 767px){
  #s-48f03e55-dc7c-4841-bfa1-428f539d24ca-atc-btn-wrapper {
    text-align: center;
  }


#s-48f03e55-dc7c-4841-bfa1-428f539d24ca {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-48f03e55-dc7c-4841-bfa1-428f539d24ca.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-48f03e55-dc7c-4841-bfa1-428f539d24ca.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}

#s-48f03e55-dc7c-4841-bfa1-428f539d24ca.shg-btn.shg-product-atc-error {
  font-weight: 800;
  font-family: Montserrat;
  
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
}


}
#s-14412cc0-5693-43c0-81d6-46a00c6772cb {
  margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 5%;
padding-bottom: 20px;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 0.05);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}
@media (min-width: 1200px){#s-14412cc0-5693-43c0-81d6-46a00c6772cb {
  padding-top: 5%;
padding-bottom: 5%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-14412cc0-5693-43c0-81d6-46a00c6772cb {
  padding-top: 5%;
}
}@media (max-width: 767px){#s-14412cc0-5693-43c0-81d6-46a00c6772cb {
  border-color: #000;
padding-top: 5%;
padding-bottom: 5%;
border-right-width: 0px;
border-style: none;
}
}
#s-14412cc0-5693-43c0-81d6-46a00c6772cb {
  background-image: url();
}








#s-14412cc0-5693-43c0-81d6-46a00c6772cb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-14412cc0-5693-43c0-81d6-46a00c6772cb.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-25192fd6-7472-4086-bf2b-0f26fb8024d6 {
  margin-left: auto;
margin-right: auto;
}

#s-e82c081b-9952-463d-8887-647fed105d35 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}



.shg-c#s-e82c081b-9952-463d-8887-647fed105d35 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e82c081b-9952-463d-8887-647fed105d35 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-e82c081b-9952-463d-8887-647fed105d35 img.shogun-image,
.shg-c#s-e82c081b-9952-463d-8887-647fed105d35 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-e82c081b-9952-463d-8887-647fed105d35 .shg-image-zoom,
.shg-c#s-e82c081b-9952-463d-8887-647fed105d35 img.shogun-image {
  aspect-ratio: 1/1;
  border-style: none;
  border-color: #000;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 5px;
    overflow: hidden; /* To clip the inner img */
  
}



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

.shg-c#s-e82c081b-9952-463d-8887-647fed105d35 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e82c081b-9952-463d-8887-647fed105d35 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-e82c081b-9952-463d-8887-647fed105d35 img.shogun-image,
.shg-c#s-e82c081b-9952-463d-8887-647fed105d35 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-e82c081b-9952-463d-8887-647fed105d35 .shg-image-zoom,
.shg-c#s-e82c081b-9952-463d-8887-647fed105d35 img.shogun-image {
  aspect-ratio: 1/1;
  border-style: none;
  border-color: #000;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 5px;
    overflow: hidden; /* To clip the inner img */
  
}



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

.shg-c#s-e82c081b-9952-463d-8887-647fed105d35 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e82c081b-9952-463d-8887-647fed105d35 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-e82c081b-9952-463d-8887-647fed105d35 img.shogun-image,
.shg-c#s-e82c081b-9952-463d-8887-647fed105d35 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-e82c081b-9952-463d-8887-647fed105d35 .shg-image-zoom,
.shg-c#s-e82c081b-9952-463d-8887-647fed105d35 img.shogun-image {
  aspect-ratio: 1/1;
  border-style: none;
  border-color: #000;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 5px;
    overflow: hidden; /* To clip the inner img */
  
}



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

.shg-c#s-e82c081b-9952-463d-8887-647fed105d35 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e82c081b-9952-463d-8887-647fed105d35 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-e82c081b-9952-463d-8887-647fed105d35 img.shogun-image,
.shg-c#s-e82c081b-9952-463d-8887-647fed105d35 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-e82c081b-9952-463d-8887-647fed105d35 .shg-image-zoom,
.shg-c#s-e82c081b-9952-463d-8887-647fed105d35 img.shogun-image {
  aspect-ratio: 1/1;
  border-style: none;
  border-color: #000;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 5px;
    overflow: hidden; /* To clip the inner img */
  
}



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

.shg-c#s-e82c081b-9952-463d-8887-647fed105d35 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e82c081b-9952-463d-8887-647fed105d35 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-e82c081b-9952-463d-8887-647fed105d35 img.shogun-image,
.shg-c#s-e82c081b-9952-463d-8887-647fed105d35 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-e82c081b-9952-463d-8887-647fed105d35 .shg-image-zoom,
.shg-c#s-e82c081b-9952-463d-8887-647fed105d35 img.shogun-image {
  aspect-ratio: 1/1;
  border-style: none;
  border-color: #000;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 5px;
    overflow: hidden; /* To clip the inner img */
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}
#s-711882b4-1ae0-4f6f-b7f4-096993daede9 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 2px;
text-align: left;
}
@media (min-width: 1200px){#s-711882b4-1ae0-4f6f-b7f4-096993daede9 {
  margin-top: 10px;
}
}
#s-711882b4-1ae0-4f6f-b7f4-096993daede9 .shg-product-title-component h4 span {
  color: rgba(255, 255, 255, 1);
  font-weight:  900 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
  
}

#s-36d75ecb-0860-401f-98a2-a1ac3f0a839d {
  text-align: left;
}

#s-36d75ecb-0860-401f-98a2-a1ac3f0a839d .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  font-weight:  normal ;
  font-family: Montserrat;
  font-style:  normal ;
}

#s-36d75ecb-0860-401f-98a2-a1ac3f0a839d .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: Montserrat;
  font-style:  normal ;
  font-size: 20px;
}

#s-36d75ecb-0860-401f-98a2-a1ac3f0a839d .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
@media (min-width: 1200px){#s-36d75ecb-0860-401f-98a2-a1ac3f0a839d .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  font-weight:  normal ;
  font-family: Montserrat;
  font-style:  normal ;
}

#s-36d75ecb-0860-401f-98a2-a1ac3f0a839d .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: Montserrat;
  font-style:  normal ;
  font-size: 20px;
}

#s-36d75ecb-0860-401f-98a2-a1ac3f0a839d .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
}
#s-ea07ba0a-8445-42a2-9aff-96a63d8a9e27 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(165, 0, 0, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-ea07ba0a-8445-42a2-9aff-96a63d8a9e27:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ea07ba0a-8445-42a2-9aff-96a63d8a9e27:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-ea07ba0a-8445-42a2-9aff-96a63d8a9e27-atc-btn-wrapper {
    text-align: center;
  }


#s-ea07ba0a-8445-42a2-9aff-96a63d8a9e27 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-ea07ba0a-8445-42a2-9aff-96a63d8a9e27.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-ea07ba0a-8445-42a2-9aff-96a63d8a9e27.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}

#s-ea07ba0a-8445-42a2-9aff-96a63d8a9e27.shg-btn.shg-product-atc-error {
  font-weight: 800;
  font-family: Montserrat;
  
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
}


@media (min-width: 1200px){
  #s-ea07ba0a-8445-42a2-9aff-96a63d8a9e27-atc-btn-wrapper {
    text-align: center;
  }


#s-ea07ba0a-8445-42a2-9aff-96a63d8a9e27 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-ea07ba0a-8445-42a2-9aff-96a63d8a9e27.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-ea07ba0a-8445-42a2-9aff-96a63d8a9e27.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}

#s-ea07ba0a-8445-42a2-9aff-96a63d8a9e27.shg-btn.shg-product-atc-error {
  font-weight: 800;
  font-family: Montserrat;
  
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-ea07ba0a-8445-42a2-9aff-96a63d8a9e27-atc-btn-wrapper {
    text-align: center;
  }


#s-ea07ba0a-8445-42a2-9aff-96a63d8a9e27 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-ea07ba0a-8445-42a2-9aff-96a63d8a9e27.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-ea07ba0a-8445-42a2-9aff-96a63d8a9e27.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}

#s-ea07ba0a-8445-42a2-9aff-96a63d8a9e27.shg-btn.shg-product-atc-error {
  font-weight: 800;
  font-family: Montserrat;
  
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-ea07ba0a-8445-42a2-9aff-96a63d8a9e27-atc-btn-wrapper {
    text-align: center;
  }


#s-ea07ba0a-8445-42a2-9aff-96a63d8a9e27 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-ea07ba0a-8445-42a2-9aff-96a63d8a9e27.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-ea07ba0a-8445-42a2-9aff-96a63d8a9e27.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}

#s-ea07ba0a-8445-42a2-9aff-96a63d8a9e27.shg-btn.shg-product-atc-error {
  font-weight: 800;
  font-family: Montserrat;
  
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
}


}@media (max-width: 767px){
  #s-ea07ba0a-8445-42a2-9aff-96a63d8a9e27-atc-btn-wrapper {
    text-align: center;
  }


#s-ea07ba0a-8445-42a2-9aff-96a63d8a9e27 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-ea07ba0a-8445-42a2-9aff-96a63d8a9e27.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-ea07ba0a-8445-42a2-9aff-96a63d8a9e27.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}

#s-ea07ba0a-8445-42a2-9aff-96a63d8a9e27.shg-btn.shg-product-atc-error {
  font-weight: 800;
  font-family: Montserrat;
  
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
}


}
#s-edc09d7b-80e5-4db4-b851-419cf5bb761b {
  margin-top: 0px;
margin-left: 10%;
margin-bottom: 0px;
margin-right: 10%;
padding-top: 0px;
padding-left: 3%;
padding-bottom: 0px;
padding-right: 3%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}
@media (min-width: 1200px){#s-edc09d7b-80e5-4db4-b851-419cf5bb761b {
  margin-top: 70px;
margin-left: 7%;
margin-bottom: 50px;
margin-right: 7%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-edc09d7b-80e5-4db4-b851-419cf5bb761b {
  margin-top: 50px;
margin-left: 7%;
margin-bottom: 0px;
margin-right: 7%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-edc09d7b-80e5-4db4-b851-419cf5bb761b {
  margin-top: 60px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-left: 2%;
padding-right: 2%;
}
}@media (max-width: 767px){#s-edc09d7b-80e5-4db4-b851-419cf5bb761b {
  margin-top: 60px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
max-width: 600px;
}
}
#s-edc09d7b-80e5-4db4-b851-419cf5bb761b {
  background-image: url();
}








#s-edc09d7b-80e5-4db4-b851-419cf5bb761b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-edc09d7b-80e5-4db4-b851-419cf5bb761b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-36b65e4b-aa12-497c-aee3-5ccc4e70acc8 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (max-width: 767px){#s-36b65e4b-aa12-497c-aee3-5ccc4e70acc8 {
  padding-left: 5%;
padding-right: 5%;
}
}







#s-36b65e4b-aa12-497c-aee3-5ccc4e70acc8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-36b65e4b-aa12-497c-aee3-5ccc4e70acc8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-778e2482-bf20-4f9d-a1e5-8f9ecd5e507b {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-778e2482-bf20-4f9d-a1e5-8f9ecd5e507b {
  text-align: center;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-778e2482-bf20-4f9d-a1e5-8f9ecd5e507b {
  text-align: center;
}
}@media (min-width: 768px) and (max-width: 991px){#s-778e2482-bf20-4f9d-a1e5-8f9ecd5e507b {
  text-align: center;
}
}@media (max-width: 767px){#s-778e2482-bf20-4f9d-a1e5-8f9ecd5e507b {
  padding-left: 0%;
padding-right: 0%;
text-align: center;
}
}
#s-778e2482-bf20-4f9d-a1e5-8f9ecd5e507b .shogun-heading-component h2 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}


#s-778e2482-bf20-4f9d-a1e5-8f9ecd5e507b .shogun-heading-component h2 a {
  color: rgba(40, 40, 40, 1);
}

@media (min-width: 1200px){#s-778e2482-bf20-4f9d-a1e5-8f9ecd5e507b .shogun-heading-component h2 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 48px;
  
  
  
}


#s-778e2482-bf20-4f9d-a1e5-8f9ecd5e507b .shogun-heading-component h2 a {
  color: rgba(40, 40, 40, 1);
}

}@media (min-width: 992px) and (max-width: 1199px){#s-778e2482-bf20-4f9d-a1e5-8f9ecd5e507b .shogun-heading-component h2 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


#s-778e2482-bf20-4f9d-a1e5-8f9ecd5e507b .shogun-heading-component h2 a {
  color: rgba(40, 40, 40, 1);
}

}@media (min-width: 768px) and (max-width: 991px){#s-778e2482-bf20-4f9d-a1e5-8f9ecd5e507b .shogun-heading-component h2 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


#s-778e2482-bf20-4f9d-a1e5-8f9ecd5e507b .shogun-heading-component h2 a {
  color: rgba(40, 40, 40, 1);
}

}@media (max-width: 767px){#s-778e2482-bf20-4f9d-a1e5-8f9ecd5e507b .shogun-heading-component h2 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


#s-778e2482-bf20-4f9d-a1e5-8f9ecd5e507b .shogun-heading-component h2 a {
  color: rgba(40, 40, 40, 1);
}

}
#s-49e6539d-e7cb-4b5c-95e4-ceda61c91b4d {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-49e6539d-e7cb-4b5c-95e4-ceda61c91b4d {
  margin-top: 30px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-49e6539d-e7cb-4b5c-95e4-ceda61c91b4d {
  margin-top: 20px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-49e6539d-e7cb-4b5c-95e4-ceda61c91b4d {
  margin-top: 20px;
margin-left: 0%;
margin-right: 0%;
}
}@media (max-width: 767px){#s-49e6539d-e7cb-4b5c-95e4-ceda61c91b4d {
  margin-top: 20px;
}
}
@media (min-width: 0px) {
[id="s-49e6539d-e7cb-4b5c-95e4-ceda61c91b4d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-49e6539d-e7cb-4b5c-95e4-ceda61c91b4d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-49e6539d-e7cb-4b5c-95e4-ceda61c91b4d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-49e6539d-e7cb-4b5c-95e4-ceda61c91b4d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 7.5px);
}

}

#s-8fd8d525-1b6f-426e-9bd1-fa4c7bb4c594 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-8fd8d525-1b6f-426e-9bd1-fa4c7bb4c594 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8fd8d525-1b6f-426e-9bd1-fa4c7bb4c594.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e82e1366-b5df-4653-8ea4-3bf555ff0346 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
text-align: center;
}

#s-e82e1366-b5df-4653-8ea4-3bf555ff0346 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e82e1366-b5df-4653-8ea4-3bf555ff0346-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-e82e1366-b5df-4653-8ea4-3bf555ff0346 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e82e1366-b5df-4653-8ea4-3bf555ff0346 .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-e82e1366-b5df-4653-8ea4-3bf555ff0346 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e82e1366-b5df-4653-8ea4-3bf555ff0346 img.shogun-image {
  width: 100%;
  
  
  max-width: 1000px;

      
    max-width: 1000px;

  /* 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-e82e1366-b5df-4653-8ea4-3bf555ff0346 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e82e1366-b5df-4653-8ea4-3bf555ff0346.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e82e1366-b5df-4653-8ea4-3bf555ff0346.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e82e1366-b5df-4653-8ea4-3bf555ff0346.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-e82e1366-b5df-4653-8ea4-3bf555ff0346 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e82e1366-b5df-4653-8ea4-3bf555ff0346-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-e82e1366-b5df-4653-8ea4-3bf555ff0346 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e82e1366-b5df-4653-8ea4-3bf555ff0346 .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: 5px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-e82e1366-b5df-4653-8ea4-3bf555ff0346 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e82e1366-b5df-4653-8ea4-3bf555ff0346 img.shogun-image {
  width: 100%;
  
  
  max-width: 1000px;

      
    max-width: 1000px;

  /* 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-e82e1366-b5df-4653-8ea4-3bf555ff0346 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e82e1366-b5df-4653-8ea4-3bf555ff0346.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e82e1366-b5df-4653-8ea4-3bf555ff0346.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e82e1366-b5df-4653-8ea4-3bf555ff0346.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-e82e1366-b5df-4653-8ea4-3bf555ff0346 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e82e1366-b5df-4653-8ea4-3bf555ff0346-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-e82e1366-b5df-4653-8ea4-3bf555ff0346 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e82e1366-b5df-4653-8ea4-3bf555ff0346 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  border-radius: 5px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-e82e1366-b5df-4653-8ea4-3bf555ff0346 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e82e1366-b5df-4653-8ea4-3bf555ff0346 img.shogun-image {
  width: 100%;
  
  
  max-width: 1000px;

      
    max-width: 1000px;

  /* 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-e82e1366-b5df-4653-8ea4-3bf555ff0346 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e82e1366-b5df-4653-8ea4-3bf555ff0346.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e82e1366-b5df-4653-8ea4-3bf555ff0346.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e82e1366-b5df-4653-8ea4-3bf555ff0346.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-e82e1366-b5df-4653-8ea4-3bf555ff0346 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e82e1366-b5df-4653-8ea4-3bf555ff0346-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-e82e1366-b5df-4653-8ea4-3bf555ff0346 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e82e1366-b5df-4653-8ea4-3bf555ff0346 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  border-radius: 5px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-e82e1366-b5df-4653-8ea4-3bf555ff0346 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e82e1366-b5df-4653-8ea4-3bf555ff0346 img.shogun-image {
  width: 100%;
  
  
  max-width: 1000px;

      
    max-width: 1000px;

  /* 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-e82e1366-b5df-4653-8ea4-3bf555ff0346 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e82e1366-b5df-4653-8ea4-3bf555ff0346.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e82e1366-b5df-4653-8ea4-3bf555ff0346.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e82e1366-b5df-4653-8ea4-3bf555ff0346.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-e82e1366-b5df-4653-8ea4-3bf555ff0346 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e82e1366-b5df-4653-8ea4-3bf555ff0346-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-e82e1366-b5df-4653-8ea4-3bf555ff0346 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e82e1366-b5df-4653-8ea4-3bf555ff0346 .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: 5px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-e82e1366-b5df-4653-8ea4-3bf555ff0346 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e82e1366-b5df-4653-8ea4-3bf555ff0346 img.shogun-image {
  width: 100%;
  
  
  max-width: 1000px;

      
    max-width: 1000px;

  /* 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-e82e1366-b5df-4653-8ea4-3bf555ff0346 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e82e1366-b5df-4653-8ea4-3bf555ff0346.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e82e1366-b5df-4653-8ea4-3bf555ff0346.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e82e1366-b5df-4653-8ea4-3bf555ff0346.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-3c2bbab4-662c-4220-a31b-5fdebca281f2 {
  margin-left: auto;
margin-right: auto;
max-width: 2160px;
text-align: center;
}
@media (min-width: 1200px){#s-3c2bbab4-662c-4220-a31b-5fdebca281f2 {
  margin-top: 10px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-3c2bbab4-662c-4220-a31b-5fdebca281f2 {
  margin-top: 10px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-3c2bbab4-662c-4220-a31b-5fdebca281f2 {
  margin-top: 10px;
}
}@media (max-width: 767px){#s-3c2bbab4-662c-4220-a31b-5fdebca281f2 {
  margin-top: 10px;
}
}
#s-3c2bbab4-662c-4220-a31b-5fdebca281f2 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3c2bbab4-662c-4220-a31b-5fdebca281f2-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-3c2bbab4-662c-4220-a31b-5fdebca281f2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3c2bbab4-662c-4220-a31b-5fdebca281f2 .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-3c2bbab4-662c-4220-a31b-5fdebca281f2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-3c2bbab4-662c-4220-a31b-5fdebca281f2 img.shogun-image {
  width: 100%;
  
  
  max-width: 2160px;

      
    max-width: 2160px;

  /* 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-3c2bbab4-662c-4220-a31b-5fdebca281f2 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3c2bbab4-662c-4220-a31b-5fdebca281f2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3c2bbab4-662c-4220-a31b-5fdebca281f2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3c2bbab4-662c-4220-a31b-5fdebca281f2.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-3c2bbab4-662c-4220-a31b-5fdebca281f2 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3c2bbab4-662c-4220-a31b-5fdebca281f2-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-3c2bbab4-662c-4220-a31b-5fdebca281f2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 10px;
  
}

#s-3c2bbab4-662c-4220-a31b-5fdebca281f2 .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-3c2bbab4-662c-4220-a31b-5fdebca281f2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-3c2bbab4-662c-4220-a31b-5fdebca281f2 img.shogun-image {
  width: 100%;
  
  
  max-width: 2160px;

      
    max-width: 2160px;

  /* 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-3c2bbab4-662c-4220-a31b-5fdebca281f2 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3c2bbab4-662c-4220-a31b-5fdebca281f2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3c2bbab4-662c-4220-a31b-5fdebca281f2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3c2bbab4-662c-4220-a31b-5fdebca281f2.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-3c2bbab4-662c-4220-a31b-5fdebca281f2 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3c2bbab4-662c-4220-a31b-5fdebca281f2-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-3c2bbab4-662c-4220-a31b-5fdebca281f2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 10px;
  
}

#s-3c2bbab4-662c-4220-a31b-5fdebca281f2 .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-3c2bbab4-662c-4220-a31b-5fdebca281f2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-3c2bbab4-662c-4220-a31b-5fdebca281f2 img.shogun-image {
  width: 100%;
  
  
  max-width: 2160px;

      
    max-width: 2160px;

  /* 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-3c2bbab4-662c-4220-a31b-5fdebca281f2 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3c2bbab4-662c-4220-a31b-5fdebca281f2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3c2bbab4-662c-4220-a31b-5fdebca281f2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3c2bbab4-662c-4220-a31b-5fdebca281f2.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-3c2bbab4-662c-4220-a31b-5fdebca281f2 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3c2bbab4-662c-4220-a31b-5fdebca281f2-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-3c2bbab4-662c-4220-a31b-5fdebca281f2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 10px;
  
}

#s-3c2bbab4-662c-4220-a31b-5fdebca281f2 .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-3c2bbab4-662c-4220-a31b-5fdebca281f2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-3c2bbab4-662c-4220-a31b-5fdebca281f2 img.shogun-image {
  width: 100%;
  
  
  max-width: 2160px;

      
    max-width: 2160px;

  /* 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-3c2bbab4-662c-4220-a31b-5fdebca281f2 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3c2bbab4-662c-4220-a31b-5fdebca281f2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3c2bbab4-662c-4220-a31b-5fdebca281f2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3c2bbab4-662c-4220-a31b-5fdebca281f2.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-3c2bbab4-662c-4220-a31b-5fdebca281f2 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3c2bbab4-662c-4220-a31b-5fdebca281f2-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-3c2bbab4-662c-4220-a31b-5fdebca281f2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 10px;
  
}

#s-3c2bbab4-662c-4220-a31b-5fdebca281f2 .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-3c2bbab4-662c-4220-a31b-5fdebca281f2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-3c2bbab4-662c-4220-a31b-5fdebca281f2 img.shogun-image {
  width: 100%;
  
  
  max-width: 2160px;

      
    max-width: 2160px;

  /* 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-3c2bbab4-662c-4220-a31b-5fdebca281f2 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3c2bbab4-662c-4220-a31b-5fdebca281f2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3c2bbab4-662c-4220-a31b-5fdebca281f2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3c2bbab4-662c-4220-a31b-5fdebca281f2.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-fe8d08d8-cd41-4872-b22b-042cc2cc7fac {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-fe8d08d8-cd41-4872-b22b-042cc2cc7fac > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fe8d08d8-cd41-4872-b22b-042cc2cc7fac.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-edd26bbf-1fb2-45b8-b790-8372dd0c9917 {
  margin-left: auto;
margin-right: auto;
max-width: 750px;
text-align: center;
}
@media (max-width: 767px){#s-edd26bbf-1fb2-45b8-b790-8372dd0c9917 {
  margin-top: 30px;
}
}
#s-edd26bbf-1fb2-45b8-b790-8372dd0c9917 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-edd26bbf-1fb2-45b8-b790-8372dd0c9917-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-edd26bbf-1fb2-45b8-b790-8372dd0c9917 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-edd26bbf-1fb2-45b8-b790-8372dd0c9917 .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-edd26bbf-1fb2-45b8-b790-8372dd0c9917 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-edd26bbf-1fb2-45b8-b790-8372dd0c9917 img.shogun-image {
  width: 100%;
  
  
  max-width: 750px;

      
    max-width: 750px;

  /* 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-edd26bbf-1fb2-45b8-b790-8372dd0c9917 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-edd26bbf-1fb2-45b8-b790-8372dd0c9917.shg-align-container {
  display: flex;
  justify-content: center
}

.s-edd26bbf-1fb2-45b8-b790-8372dd0c9917.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-edd26bbf-1fb2-45b8-b790-8372dd0c9917.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-edd26bbf-1fb2-45b8-b790-8372dd0c9917 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-edd26bbf-1fb2-45b8-b790-8372dd0c9917-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-edd26bbf-1fb2-45b8-b790-8372dd0c9917 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-edd26bbf-1fb2-45b8-b790-8372dd0c9917 .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: 5px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-edd26bbf-1fb2-45b8-b790-8372dd0c9917 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-edd26bbf-1fb2-45b8-b790-8372dd0c9917 img.shogun-image {
  width: 100%;
  
  
  max-width: 750px;

      
    max-width: 750px;

  /* 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-edd26bbf-1fb2-45b8-b790-8372dd0c9917 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-edd26bbf-1fb2-45b8-b790-8372dd0c9917.shg-align-container {
  display: flex;
  justify-content: center
}

.s-edd26bbf-1fb2-45b8-b790-8372dd0c9917.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-edd26bbf-1fb2-45b8-b790-8372dd0c9917.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-edd26bbf-1fb2-45b8-b790-8372dd0c9917 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-edd26bbf-1fb2-45b8-b790-8372dd0c9917-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-edd26bbf-1fb2-45b8-b790-8372dd0c9917 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-edd26bbf-1fb2-45b8-b790-8372dd0c9917 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  border-radius: 5px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-edd26bbf-1fb2-45b8-b790-8372dd0c9917 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-edd26bbf-1fb2-45b8-b790-8372dd0c9917 img.shogun-image {
  width: 100%;
  
  
  max-width: 750px;

      
    max-width: 750px;

  /* 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-edd26bbf-1fb2-45b8-b790-8372dd0c9917 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-edd26bbf-1fb2-45b8-b790-8372dd0c9917.shg-align-container {
  display: flex;
  justify-content: center
}

.s-edd26bbf-1fb2-45b8-b790-8372dd0c9917.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-edd26bbf-1fb2-45b8-b790-8372dd0c9917.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-edd26bbf-1fb2-45b8-b790-8372dd0c9917 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-edd26bbf-1fb2-45b8-b790-8372dd0c9917-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-edd26bbf-1fb2-45b8-b790-8372dd0c9917 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-edd26bbf-1fb2-45b8-b790-8372dd0c9917 .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: 5px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-edd26bbf-1fb2-45b8-b790-8372dd0c9917 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-edd26bbf-1fb2-45b8-b790-8372dd0c9917 img.shogun-image {
  width: 100%;
  
  
  max-width: 750px;

      
    max-width: 750px;

  /* 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-edd26bbf-1fb2-45b8-b790-8372dd0c9917 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-edd26bbf-1fb2-45b8-b790-8372dd0c9917.shg-align-container {
  display: flex;
  justify-content: center
}

.s-edd26bbf-1fb2-45b8-b790-8372dd0c9917.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-edd26bbf-1fb2-45b8-b790-8372dd0c9917.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-edd26bbf-1fb2-45b8-b790-8372dd0c9917 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-edd26bbf-1fb2-45b8-b790-8372dd0c9917-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-edd26bbf-1fb2-45b8-b790-8372dd0c9917 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 30px;
  
}

#s-edd26bbf-1fb2-45b8-b790-8372dd0c9917 .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: 5px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-edd26bbf-1fb2-45b8-b790-8372dd0c9917 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-edd26bbf-1fb2-45b8-b790-8372dd0c9917 img.shogun-image {
  width: 100%;
  
  
  max-width: 750px;

      
    max-width: 750px;

  /* 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-edd26bbf-1fb2-45b8-b790-8372dd0c9917 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-edd26bbf-1fb2-45b8-b790-8372dd0c9917.shg-align-container {
  display: flex;
  justify-content: center
}

.s-edd26bbf-1fb2-45b8-b790-8372dd0c9917.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-edd26bbf-1fb2-45b8-b790-8372dd0c9917.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-1f88112e-e680-4eb7-b613-584bc8145423 {
  margin-left: auto;
margin-right: auto;
max-width: 2160px;
text-align: center;
}
@media (min-width: 1200px){#s-1f88112e-e680-4eb7-b613-584bc8145423 {
  margin-top: 10px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-1f88112e-e680-4eb7-b613-584bc8145423 {
  margin-top: 10px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-1f88112e-e680-4eb7-b613-584bc8145423 {
  margin-top: 10px;
}
}@media (max-width: 767px){#s-1f88112e-e680-4eb7-b613-584bc8145423 {
  margin-top: 10px;
}
}
#s-1f88112e-e680-4eb7-b613-584bc8145423 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-1f88112e-e680-4eb7-b613-584bc8145423-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-1f88112e-e680-4eb7-b613-584bc8145423 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-1f88112e-e680-4eb7-b613-584bc8145423 .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-1f88112e-e680-4eb7-b613-584bc8145423 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-1f88112e-e680-4eb7-b613-584bc8145423 img.shogun-image {
  width: 100%;
  
  
  max-width: 2160px;

      
    max-width: 2160px;

  /* 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-1f88112e-e680-4eb7-b613-584bc8145423 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-1f88112e-e680-4eb7-b613-584bc8145423.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1f88112e-e680-4eb7-b613-584bc8145423.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1f88112e-e680-4eb7-b613-584bc8145423.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-1f88112e-e680-4eb7-b613-584bc8145423 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-1f88112e-e680-4eb7-b613-584bc8145423-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-1f88112e-e680-4eb7-b613-584bc8145423 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 10px;
  
}

#s-1f88112e-e680-4eb7-b613-584bc8145423 .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-1f88112e-e680-4eb7-b613-584bc8145423 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-1f88112e-e680-4eb7-b613-584bc8145423 img.shogun-image {
  width: 100%;
  
  
  max-width: 2160px;

      
    max-width: 2160px;

  /* 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-1f88112e-e680-4eb7-b613-584bc8145423 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-1f88112e-e680-4eb7-b613-584bc8145423.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1f88112e-e680-4eb7-b613-584bc8145423.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1f88112e-e680-4eb7-b613-584bc8145423.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-1f88112e-e680-4eb7-b613-584bc8145423 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-1f88112e-e680-4eb7-b613-584bc8145423-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-1f88112e-e680-4eb7-b613-584bc8145423 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 10px;
  
}

#s-1f88112e-e680-4eb7-b613-584bc8145423 .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-1f88112e-e680-4eb7-b613-584bc8145423 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-1f88112e-e680-4eb7-b613-584bc8145423 img.shogun-image {
  width: 100%;
  
  
  max-width: 2160px;

      
    max-width: 2160px;

  /* 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-1f88112e-e680-4eb7-b613-584bc8145423 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-1f88112e-e680-4eb7-b613-584bc8145423.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1f88112e-e680-4eb7-b613-584bc8145423.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1f88112e-e680-4eb7-b613-584bc8145423.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-1f88112e-e680-4eb7-b613-584bc8145423 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-1f88112e-e680-4eb7-b613-584bc8145423-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-1f88112e-e680-4eb7-b613-584bc8145423 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 10px;
  
}

#s-1f88112e-e680-4eb7-b613-584bc8145423 .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-1f88112e-e680-4eb7-b613-584bc8145423 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-1f88112e-e680-4eb7-b613-584bc8145423 img.shogun-image {
  width: 100%;
  
  
  max-width: 2160px;

      
    max-width: 2160px;

  /* 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-1f88112e-e680-4eb7-b613-584bc8145423 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-1f88112e-e680-4eb7-b613-584bc8145423.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1f88112e-e680-4eb7-b613-584bc8145423.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1f88112e-e680-4eb7-b613-584bc8145423.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-1f88112e-e680-4eb7-b613-584bc8145423 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-1f88112e-e680-4eb7-b613-584bc8145423-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-1f88112e-e680-4eb7-b613-584bc8145423 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 10px;
  
}

#s-1f88112e-e680-4eb7-b613-584bc8145423 .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-1f88112e-e680-4eb7-b613-584bc8145423 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-1f88112e-e680-4eb7-b613-584bc8145423 img.shogun-image {
  width: 100%;
  
  
  max-width: 2160px;

      
    max-width: 2160px;

  /* 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-1f88112e-e680-4eb7-b613-584bc8145423 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-1f88112e-e680-4eb7-b613-584bc8145423.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1f88112e-e680-4eb7-b613-584bc8145423.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1f88112e-e680-4eb7-b613-584bc8145423.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




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