.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-a87a82f8-a6ec-4a32-8f7a-98c63f9ead4b {
  min-height: 50px;
}
@media (min-width: 1200px){#s-a87a82f8-a6ec-4a32-8f7a-98c63f9ead4b {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a87a82f8-a6ec-4a32-8f7a-98c63f9ead4b {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-a87a82f8-a6ec-4a32-8f7a-98c63f9ead4b {
  
}
}@media (max-width: 767px){#s-a87a82f8-a6ec-4a32-8f7a-98c63f9ead4b {
  
}
}







#s-a87a82f8-a6ec-4a32-8f7a-98c63f9ead4b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a87a82f8-a6ec-4a32-8f7a-98c63f9ead4b.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

#s-a82b6aec-d7b0-4bf2-a6e3-1c34dadab46e {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-a82b6aec-d7b0-4bf2-a6e3-1c34dadab46e .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-a82b6aec-d7b0-4bf2-a6e3-1c34dadab46e .shg-sld-nav-button.shg-sld-left,
#s-a82b6aec-d7b0-4bf2-a6e3-1c34dadab46e .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-8017cb6c-6e16-4086-b36b-3bc2b3f05617 {
  background-repeat: no-repeat;
background-size: cover;
padding-top: 50px;
padding-left: 8%;
padding-bottom: 50px;
padding-right: 8%;
min-height: 535px;
background-position: center center;
}

#s-8017cb6c-6e16-4086-b36b-3bc2b3f05617 {
  background-image: url(https://i.shgcdn.com/22ddbd58-426d-4782-8342-002ead8329b1/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-8017cb6c-6e16-4086-b36b-3bc2b3f05617 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8017cb6c-6e16-4086-b36b-3bc2b3f05617.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-2383c34f-d725-42ec-9318-60cc1b14237c {
  background-repeat: no-repeat;
background-size: cover;
padding-top: 50px;
padding-left: 8%;
padding-bottom: 50px;
padding-right: 8%;
min-height: 535px;
background-position: center center;
}

#s-2383c34f-d725-42ec-9318-60cc1b14237c {
  background-image: url(https://i.shgcdn.com/23ca347c-e493-4f3a-ba83-36b304fe2b67/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-2383c34f-d725-42ec-9318-60cc1b14237c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2383c34f-d725-42ec-9318-60cc1b14237c.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-1195986a-be75-4600-bd3a-244aade554f0 {
  background-repeat: no-repeat;
background-size: cover;
padding-top: 50px;
padding-left: 10%;
padding-bottom: 50px;
padding-right: 10%;
min-height: 535px;
background-position: center center;
}

#s-1195986a-be75-4600-bd3a-244aade554f0 {
  background-image: url(https://i.shgcdn.com/fad9212f-5a51-40a3-97d3-2937c9e21922/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-1195986a-be75-4600-bd3a-244aade554f0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1195986a-be75-4600-bd3a-244aade554f0.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.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;
  
  
  text-transform: none;
  
  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-26dd46b3-b59d-434e-bc07-3af91f3659d1 {
  margin-top: 100px;
margin-bottom: 100px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
background-color: rgba(0, 132, 122, 0.77);
}

#s-26dd46b3-b59d-434e-bc07-3af91f3659d1 .shogun-heading-component h1 {
  color: #fff;
  font-weight:  500 ;
  font-family: "Caveat";
  font-style:  normal ;
  font-size: 42px;
  
  
  
}



#s-d6b72daa-b43b-40ea-a292-06c3abcbc38d {
  padding-top: 40px;
padding-left: 40px;
padding-bottom: 40px;
padding-right: 40px;
min-height: 50px;
background-color: #fff;
}








#s-d6b72daa-b43b-40ea-a292-06c3abcbc38d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d6b72daa-b43b-40ea-a292-06c3abcbc38d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f503706f-1c20-4d40-bcab-e1a63bc5199b {
  margin-bottom: 19px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-f503706f-1c20-4d40-bcab-e1a63bc5199b .shogun-heading-component h2 {
  color: rgba(31, 42, 68, 1);
  font-weight:  normal ;
  font-family: "Caveat";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}



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

.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;
  
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0.6em;
  
  
}

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

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

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

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

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

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

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

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

.shg-default-text-content ul,
.shg-default-text-content ol {
  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 {
  
  
  
}

.shg-theme-text-content p {
  
  
  
}

#s-6b392ea1-e487-4cff-beae-8f490b4ae61d {
  margin-bottom: 15px;
padding-left: 2%;
padding-right: 2%;
}

.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-2f10d98f-fcce-4769-b2e6-05265f22e574 {
  margin-top: 5px;
}

@media (min-width: 0px) {
[id="s-2f10d98f-fcce-4769-b2e6-05265f22e574"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2f10d98f-fcce-4769-b2e6-05265f22e574"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-2f10d98f-fcce-4769-b2e6-05265f22e574"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-2f10d98f-fcce-4769-b2e6-05265f22e574"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-content {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  min-width: 100%;
  min-height: 100%;
  /* Ensures that the content children fills the container */
  align-items: stretch;
}

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

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

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

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

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

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

.shg-image-content-wrapper .shogun-image.hover~* {
  z-index: 1;
}

.shogun-image-content > * {
  flex-shrink: 0; /* Prevents children from shrinking maintaining natural size*/
  width: 100%;
}
#s-2213f7ed-3adf-4a2c-941e-3da9b84d004e {
  max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-2213f7ed-3adf-4a2c-941e-3da9b84d004e {
  margin: 0 !important;
  overflow: visible;
}

#s-2213f7ed-3adf-4a2c-941e-3da9b84d004e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2213f7ed-3adf-4a2c-941e-3da9b84d004e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2213f7ed-3adf-4a2c-941e-3da9b84d004e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2213f7ed-3adf-4a2c-941e-3da9b84d004e img.shogun-image {
  /* Add background color handling */
  
}

#s-2213f7ed-3adf-4a2c-941e-3da9b84d004e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2213f7ed-3adf-4a2c-941e-3da9b84d004e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-2213f7ed-3adf-4a2c-941e-3da9b84d004e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2213f7ed-3adf-4a2c-941e-3da9b84d004e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2213f7ed-3adf-4a2c-941e-3da9b84d004e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-2213f7ed-3adf-4a2c-941e-3da9b84d004e .shogun-image-content {
  
    justify-content: center;
  
}

.s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shogun-image {
  box-sizing: border-box;
}



.s-2213f7ed-3adf-4a2c-941e-3da9b84d004e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2213f7ed-3adf-4a2c-941e-3da9b84d004e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shogun-image-container {
      position: relative;
    }

    .s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2213f7ed-3adf-4a2c-941e-3da9b84d004e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-2213f7ed-3adf-4a2c-941e-3da9b84d004e {
  margin: 0 !important;
  overflow: visible;
}

#s-2213f7ed-3adf-4a2c-941e-3da9b84d004e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2213f7ed-3adf-4a2c-941e-3da9b84d004e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2213f7ed-3adf-4a2c-941e-3da9b84d004e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2213f7ed-3adf-4a2c-941e-3da9b84d004e img.shogun-image {
  /* Add background color handling */
  
}

#s-2213f7ed-3adf-4a2c-941e-3da9b84d004e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2213f7ed-3adf-4a2c-941e-3da9b84d004e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-2213f7ed-3adf-4a2c-941e-3da9b84d004e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2213f7ed-3adf-4a2c-941e-3da9b84d004e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2213f7ed-3adf-4a2c-941e-3da9b84d004e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-2213f7ed-3adf-4a2c-941e-3da9b84d004e .shogun-image-content {
  
    justify-content: center;
  
}

.s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shogun-image {
  box-sizing: border-box;
}



.s-2213f7ed-3adf-4a2c-941e-3da9b84d004e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2213f7ed-3adf-4a2c-941e-3da9b84d004e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shogun-image-container {
      position: relative;
    }

    .s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2213f7ed-3adf-4a2c-941e-3da9b84d004e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-2213f7ed-3adf-4a2c-941e-3da9b84d004e {
  margin: 0 !important;
  overflow: visible;
}

#s-2213f7ed-3adf-4a2c-941e-3da9b84d004e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2213f7ed-3adf-4a2c-941e-3da9b84d004e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2213f7ed-3adf-4a2c-941e-3da9b84d004e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2213f7ed-3adf-4a2c-941e-3da9b84d004e img.shogun-image {
  /* Add background color handling */
  
}

#s-2213f7ed-3adf-4a2c-941e-3da9b84d004e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2213f7ed-3adf-4a2c-941e-3da9b84d004e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-2213f7ed-3adf-4a2c-941e-3da9b84d004e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2213f7ed-3adf-4a2c-941e-3da9b84d004e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2213f7ed-3adf-4a2c-941e-3da9b84d004e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-2213f7ed-3adf-4a2c-941e-3da9b84d004e .shogun-image-content {
  
    justify-content: center;
  
}

.s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shogun-image {
  box-sizing: border-box;
}



.s-2213f7ed-3adf-4a2c-941e-3da9b84d004e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2213f7ed-3adf-4a2c-941e-3da9b84d004e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shogun-image-container {
      position: relative;
    }

    .s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2213f7ed-3adf-4a2c-941e-3da9b84d004e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-2213f7ed-3adf-4a2c-941e-3da9b84d004e {
  margin: 0 !important;
  overflow: visible;
}

#s-2213f7ed-3adf-4a2c-941e-3da9b84d004e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2213f7ed-3adf-4a2c-941e-3da9b84d004e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2213f7ed-3adf-4a2c-941e-3da9b84d004e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2213f7ed-3adf-4a2c-941e-3da9b84d004e img.shogun-image {
  /* Add background color handling */
  
}

#s-2213f7ed-3adf-4a2c-941e-3da9b84d004e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2213f7ed-3adf-4a2c-941e-3da9b84d004e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-2213f7ed-3adf-4a2c-941e-3da9b84d004e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2213f7ed-3adf-4a2c-941e-3da9b84d004e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2213f7ed-3adf-4a2c-941e-3da9b84d004e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-2213f7ed-3adf-4a2c-941e-3da9b84d004e .shogun-image-content {
  
    justify-content: center;
  
}

.s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shogun-image {
  box-sizing: border-box;
}



.s-2213f7ed-3adf-4a2c-941e-3da9b84d004e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2213f7ed-3adf-4a2c-941e-3da9b84d004e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shogun-image-container {
      position: relative;
    }

    .s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2213f7ed-3adf-4a2c-941e-3da9b84d004e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-2213f7ed-3adf-4a2c-941e-3da9b84d004e {
  margin: 0 !important;
  overflow: visible;
}

#s-2213f7ed-3adf-4a2c-941e-3da9b84d004e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2213f7ed-3adf-4a2c-941e-3da9b84d004e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2213f7ed-3adf-4a2c-941e-3da9b84d004e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2213f7ed-3adf-4a2c-941e-3da9b84d004e img.shogun-image {
  /* Add background color handling */
  
}

#s-2213f7ed-3adf-4a2c-941e-3da9b84d004e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2213f7ed-3adf-4a2c-941e-3da9b84d004e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-2213f7ed-3adf-4a2c-941e-3da9b84d004e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2213f7ed-3adf-4a2c-941e-3da9b84d004e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2213f7ed-3adf-4a2c-941e-3da9b84d004e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-2213f7ed-3adf-4a2c-941e-3da9b84d004e .shogun-image-content {
  
    justify-content: center;
  
}

.s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shogun-image {
  box-sizing: border-box;
}



.s-2213f7ed-3adf-4a2c-941e-3da9b84d004e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2213f7ed-3adf-4a2c-941e-3da9b84d004e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shogun-image-container {
      position: relative;
    }

    .s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2213f7ed-3adf-4a2c-941e-3da9b84d004e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2213f7ed-3adf-4a2c-941e-3da9b84d004e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-ef0066ae-0189-43e1-974f-9604374e87ab {
  margin-top: 16px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ef0066ae-0189-43e1-974f-9604374e87ab .shogun-heading-component h1 {
  color: rgba(31, 42, 68, 1);
  font-weight:  700 ;
  font-family: "Raleway";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: left;
}



#s-8cee1773-2ce7-498c-a92f-3f8d04d07e55 {
  margin-left: auto;
margin-right: auto;
}

#s-c556b391-df6c-4849-b165-6aff0d53dc47 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-c556b391-df6c-4849-b165-6aff0d53dc47 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  
  
  font-style:  normal ;
}

#s-c556b391-df6c-4849-b165-6aff0d53dc47 .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
}

#s-c556b391-df6c-4849-b165-6aff0d53dc47 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  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-btn {
  cursor: pointer;
  box-sizing: border-box;
}

.shg-btn-text {
  
  
}

.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-9c93d763-2210-47bc-9304-f7ac84b4bf95 {
  margin-top: 2px;
margin-bottom: 10px;
padding-top: 8px;
padding-left: 20px;
padding-bottom: 8px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 132, 122, 1);
border-style: solid;
border-radius: 31px;
background-color: rgba(0, 132, 122, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-9c93d763-2210-47bc-9304-f7ac84b4bf95:hover {border-style: solid !important;
border-color: rgba(0, 132, 122, 1) !important;
background-color: rgba(236, 93, 115, 0.69) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-9c93d763-2210-47bc-9304-f7ac84b4bf95:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-9c93d763-2210-47bc-9304-f7ac84b4bf95-root {
    text-align: center;
  }


#s-9c93d763-2210-47bc-9304-f7ac84b4bf95.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  
  font-family: Lato;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-9c93d763-2210-47bc-9304-f7ac84b4bf95-root {
    text-align: center;
  }


#s-9c93d763-2210-47bc-9304-f7ac84b4bf95.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  
  font-family: Lato;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9c93d763-2210-47bc-9304-f7ac84b4bf95-root {
    text-align: center;
  }


#s-9c93d763-2210-47bc-9304-f7ac84b4bf95.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  
  font-family: Lato;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9c93d763-2210-47bc-9304-f7ac84b4bf95-root {
    text-align: center;
  }


#s-9c93d763-2210-47bc-9304-f7ac84b4bf95.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  
  font-family: Lato;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-9c93d763-2210-47bc-9304-f7ac84b4bf95-root {
    text-align: center;
  }


#s-9c93d763-2210-47bc-9304-f7ac84b4bf95.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  
  font-family: Lato;
  display:  inline-block ;
}
}
#s-bab04f85-7646-4aeb-af64-004e506b3a34 {
  margin-bottom: 20px;
}

.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-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 {
  text-align: left;
}


.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 {
  max-width:  100%;
}

.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 .shg-image-zoom,
.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 img.shogun-image {
  max-width: 692px !important;
  
}

.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 img.shogun-image,
.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 .shg-image-zoom,
.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 img.shogun-image {
  aspect-ratio: 1:1;
  
  
  
  
  
  
  
}



  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){
.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 {
  max-width:  100%;
}

.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 .shg-image-zoom,
.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 img.shogun-image {
  max-width: 692px !important;
  
}

.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 img.shogun-image,
.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 .shg-image-zoom,
.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 img.shogun-image {
  aspect-ratio: 1:1;
  
  
  
  
  
  
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 {
  max-width:  100%;
}

.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 .shg-image-zoom,
.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 img.shogun-image {
  max-width: 692px !important;
  
}

.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 img.shogun-image,
.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 .shg-image-zoom,
.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 img.shogun-image {
  aspect-ratio: 1:1;
  
  
  
  
  
  
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 {
  max-width:  100%;
}

.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 .shg-image-zoom,
.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 img.shogun-image {
  max-width: 692px !important;
  
}

.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 img.shogun-image,
.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 .shg-image-zoom,
.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 img.shogun-image {
  aspect-ratio: 1:1;
  
  
  
  
  
  
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){
.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 {
  max-width:  100%;
}

.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 .shg-image-zoom,
.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 img.shogun-image {
  max-width: 692px !important;
  
}

.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 img.shogun-image,
.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 .shg-image-zoom,
.shg-c#s-7a311fc9-34d5-4c64-a34b-70e460d8b7a3 img.shogun-image {
  aspect-ratio: 1:1;
  
  
  
  
  
  
  
}



  .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;
  
  
  text-transform: none;
  
  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-fb6c4ef2-6794-4c8a-ac21-baf1d7378845 {
  margin-top: 15px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
text-align: left;
}

#s-fb6c4ef2-6794-4c8a-ac21-baf1d7378845 .shg-product-title-component h3 span {
  color: rgba(31, 42, 68, 1);
  font-weight:  700 ;
  font-family: Raleway;
  
  font-size: 16px;
  line-height: 1em;
  
  text-align: left;
}

#s-55862f16-b0bd-429c-b9b6-0cddacde7a74 {
  margin-left: auto;
margin-right: auto;
}

#s-19cc094f-f185-40bb-bfd0-2c58d3828b69 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-19cc094f-f185-40bb-bfd0-2c58d3828b69 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  
  
  font-style:  normal ;
}

#s-19cc094f-f185-40bb-bfd0-2c58d3828b69 .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
}

#s-19cc094f-f185-40bb-bfd0-2c58d3828b69 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-b9073020-82f3-4338-a6de-f9a593be522f {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 132, 122, 1);
border-style: solid;
border-radius: 31px;
background-color: rgba(0, 132, 122, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-b9073020-82f3-4338-a6de-f9a593be522f:hover {border-style: solid !important;
border-color: rgba(0, 132, 122, 1) !important;
background-color: rgba(236, 93, 115, 0.69) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-b9073020-82f3-4338-a6de-f9a593be522f:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-b9073020-82f3-4338-a6de-f9a593be522f-root {
    text-align: center;
  }


#s-b9073020-82f3-4338-a6de-f9a593be522f.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  
  font-family: Lato;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-b9073020-82f3-4338-a6de-f9a593be522f-root {
    text-align: center;
  }


#s-b9073020-82f3-4338-a6de-f9a593be522f.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  
  font-family: Lato;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b9073020-82f3-4338-a6de-f9a593be522f-root {
    text-align: center;
  }


#s-b9073020-82f3-4338-a6de-f9a593be522f.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  
  font-family: Lato;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b9073020-82f3-4338-a6de-f9a593be522f-root {
    text-align: center;
  }


#s-b9073020-82f3-4338-a6de-f9a593be522f.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  
  font-family: Lato;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-b9073020-82f3-4338-a6de-f9a593be522f-root {
    text-align: center;
  }


#s-b9073020-82f3-4338-a6de-f9a593be522f.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  
  font-family: Lato;
  display:  inline-block ;
}
}
#s-1f87e660-2222-40ce-b59d-e38ce9689458 {
  margin-bottom: 20px;
}

#s-5993b877-3009-4589-86cb-53e0826782f7 {
  text-align: left;
}


.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 {
  max-width:  100%;
}

.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 .shg-image-zoom,
.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 img.shogun-image {
  max-width: 692px !important;
  
}

.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 img.shogun-image,
.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 .shg-image-zoom,
.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 img.shogun-image {
  aspect-ratio: 1:1;
  
  
  
  
  
  
  
}



  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){
.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 {
  max-width:  100%;
}

.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 .shg-image-zoom,
.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 img.shogun-image {
  max-width: 692px !important;
  
}

.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 img.shogun-image,
.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 .shg-image-zoom,
.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 img.shogun-image {
  aspect-ratio: 1:1;
  
  
  
  
  
  
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 {
  max-width:  100%;
}

.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 .shg-image-zoom,
.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 img.shogun-image {
  max-width: 692px !important;
  
}

.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 img.shogun-image,
.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 .shg-image-zoom,
.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 img.shogun-image {
  aspect-ratio: 1:1;
  
  
  
  
  
  
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 {
  max-width:  100%;
}

.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 .shg-image-zoom,
.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 img.shogun-image {
  max-width: 692px !important;
  
}

.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 img.shogun-image,
.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 .shg-image-zoom,
.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 img.shogun-image {
  aspect-ratio: 1:1;
  
  
  
  
  
  
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){
.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 {
  max-width:  100%;
}

.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 .shg-image-zoom,
.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 img.shogun-image {
  max-width: 692px !important;
  
}

.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 img.shogun-image,
.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 .shg-image-zoom,
.shg-c#s-5993b877-3009-4589-86cb-53e0826782f7 img.shogun-image {
  aspect-ratio: 1:1;
  
  
  
  
  
  
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}
#s-d42a3de5-c931-4223-b1e1-f9d8857ce6eb {
  margin-top: 15px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
text-align: left;
}

#s-d42a3de5-c931-4223-b1e1-f9d8857ce6eb .shg-product-title-component h3 span {
  color: rgba(31, 42, 68, 1);
  font-weight:  700 ;
  font-family: Raleway;
  
  font-size: 16px;
  line-height: 1em;
  
  text-align: left;
}

#s-9b8739d1-2d69-431c-96a3-d49463845527 {
  margin-left: auto;
margin-right: auto;
}

#s-d4cc6323-86c1-4464-bc0e-2a9d807e5a8c {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-d4cc6323-86c1-4464-bc0e-2a9d807e5a8c .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  
  
  font-style:  normal ;
}

#s-d4cc6323-86c1-4464-bc0e-2a9d807e5a8c .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
}

#s-d4cc6323-86c1-4464-bc0e-2a9d807e5a8c .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-b1cfd9cf-cf46-4a8b-91da-781c58dcb5ec {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 132, 122, 1);
border-style: solid;
border-radius: 31px;
background-color: rgba(0, 132, 122, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-b1cfd9cf-cf46-4a8b-91da-781c58dcb5ec:hover {border-style: solid !important;
border-color: rgba(0, 132, 122, 1) !important;
background-color: rgba(236, 93, 115, 0.69) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-b1cfd9cf-cf46-4a8b-91da-781c58dcb5ec:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-b1cfd9cf-cf46-4a8b-91da-781c58dcb5ec-root {
    text-align: center;
  }


#s-b1cfd9cf-cf46-4a8b-91da-781c58dcb5ec.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  
  font-family: Lato;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-b1cfd9cf-cf46-4a8b-91da-781c58dcb5ec-root {
    text-align: center;
  }


#s-b1cfd9cf-cf46-4a8b-91da-781c58dcb5ec.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  
  font-family: Lato;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b1cfd9cf-cf46-4a8b-91da-781c58dcb5ec-root {
    text-align: center;
  }


#s-b1cfd9cf-cf46-4a8b-91da-781c58dcb5ec.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  
  font-family: Lato;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b1cfd9cf-cf46-4a8b-91da-781c58dcb5ec-root {
    text-align: center;
  }


#s-b1cfd9cf-cf46-4a8b-91da-781c58dcb5ec.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  
  font-family: Lato;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-b1cfd9cf-cf46-4a8b-91da-781c58dcb5ec-root {
    text-align: center;
  }


#s-b1cfd9cf-cf46-4a8b-91da-781c58dcb5ec.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  
  font-family: Lato;
  display:  inline-block ;
}
}
#s-1c2a61c4-ba64-49fa-8b6d-55cc635655db {
  background-repeat: no-repeat;
background-size: cover;
min-height: 50px;
background-position: center center;
}

#s-1c2a61c4-ba64-49fa-8b6d-55cc635655db {
  background-image: url(https://i.shgcdn.com/dfc4388e-bc9d-4014-a06f-4b34339b0943/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}

@media (max-width: 480px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-1c2a61c4-ba64-49fa-8b6d-55cc635655db {
  background-image: url(https://i.shgcdn.com/dfc4388e-bc9d-4014-a06f-4b34339b0943/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/480x/);
}
#s-1c2a61c4-ba64-49fa-8b6d-55cc635655db.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
#s-1c2a61c4-ba64-49fa-8b6d-55cc635655db {
  background-image: url(https://i.shgcdn.com/dfc4388e-bc9d-4014-a06f-4b34339b0943/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/960x/);
}
#s-1c2a61c4-ba64-49fa-8b6d-55cc635655db.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-1c2a61c4-ba64-49fa-8b6d-55cc635655db {
  background-image: url(https://i.shgcdn.com/dfc4388e-bc9d-4014-a06f-4b34339b0943/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/768x/);
}
#s-1c2a61c4-ba64-49fa-8b6d-55cc635655db.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
#s-1c2a61c4-ba64-49fa-8b6d-55cc635655db {
  background-image: url(https://i.shgcdn.com/dfc4388e-bc9d-4014-a06f-4b34339b0943/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1536x/);
}
#s-1c2a61c4-ba64-49fa-8b6d-55cc635655db.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-1c2a61c4-ba64-49fa-8b6d-55cc635655db {
  background-image: url(https://i.shgcdn.com/dfc4388e-bc9d-4014-a06f-4b34339b0943/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1024x/);
}
#s-1c2a61c4-ba64-49fa-8b6d-55cc635655db.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
#s-1c2a61c4-ba64-49fa-8b6d-55cc635655db {
  background-image: url(https://i.shgcdn.com/dfc4388e-bc9d-4014-a06f-4b34339b0943/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}
#s-1c2a61c4-ba64-49fa-8b6d-55cc635655db.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-1c2a61c4-ba64-49fa-8b6d-55cc635655db {
  background-image: url(https://i.shgcdn.com/dfc4388e-bc9d-4014-a06f-4b34339b0943/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1200x/);
}
#s-1c2a61c4-ba64-49fa-8b6d-55cc635655db.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 2) {
#s-1c2a61c4-ba64-49fa-8b6d-55cc635655db {
  background-image: url(https://i.shgcdn.com/dfc4388e-bc9d-4014-a06f-4b34339b0943/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}
#s-1c2a61c4-ba64-49fa-8b6d-55cc635655db.shogun-lazyload-bg-image {
  background-image: none;
}

}







#s-1c2a61c4-ba64-49fa-8b6d-55cc635655db > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1c2a61c4-ba64-49fa-8b6d-55cc635655db.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f27801eb-c185-435c-8f7c-0925e69e3c58 {
  min-height: 50px;
background-color: rgba(236, 93, 115, 0.54);
}








#s-f27801eb-c185-435c-8f7c-0925e69e3c58 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f27801eb-c185-435c-8f7c-0925e69e3c58.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1a9d80c4-ac6b-4fbe-ad87-d95bd103b95c {
  margin-top: 10px;
margin-bottom: 40px;
padding-top: 10px;
padding-left: 8%;
padding-bottom: 10px;
padding-right: 8%;
text-align: center;
}

#s-1a9d80c4-ac6b-4fbe-ad87-d95bd103b95c .shogun-heading-component h1 {
  
  font-weight:  normal ;
  font-family: "Caveat";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}



#s-813d31d6-5fff-4b1f-b628-e0db60280856 {
  margin-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-813d31d6-5fff-4b1f-b628-e0db60280856"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-813d31d6-5fff-4b1f-b628-e0db60280856"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-813d31d6-5fff-4b1f-b628-e0db60280856"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-813d31d6-5fff-4b1f-b628-e0db60280856"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-0760b1ef-3441-4240-b8f3-545c6351cc11 {
  max-width: 1200px;
aspect-ratio: 2/3;
text-align: center;
}

#s-0760b1ef-3441-4240-b8f3-545c6351cc11 {
  margin: 0 !important;
  overflow: visible;
}

#s-0760b1ef-3441-4240-b8f3-545c6351cc11-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0760b1ef-3441-4240-b8f3-545c6351cc11 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0760b1ef-3441-4240-b8f3-545c6351cc11 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0760b1ef-3441-4240-b8f3-545c6351cc11 img.shogun-image {
  /* Add background color handling */
  
}

#s-0760b1ef-3441-4240-b8f3-545c6351cc11 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0760b1ef-3441-4240-b8f3-545c6351cc11 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-0760b1ef-3441-4240-b8f3-545c6351cc11 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0760b1ef-3441-4240-b8f3-545c6351cc11 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0760b1ef-3441-4240-b8f3-545c6351cc11.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0760b1ef-3441-4240-b8f3-545c6351cc11 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-0760b1ef-3441-4240-b8f3-545c6351cc11.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-0760b1ef-3441-4240-b8f3-545c6351cc11 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0760b1ef-3441-4240-b8f3-545c6351cc11.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0760b1ef-3441-4240-b8f3-545c6351cc11.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0760b1ef-3441-4240-b8f3-545c6351cc11.shogun-image {
  box-sizing: border-box;
}



.s-0760b1ef-3441-4240-b8f3-545c6351cc11 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0760b1ef-3441-4240-b8f3-545c6351cc11 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-0760b1ef-3441-4240-b8f3-545c6351cc11.shogun-image-container {
      position: relative;
    }

    .s-0760b1ef-3441-4240-b8f3-545c6351cc11.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0760b1ef-3441-4240-b8f3-545c6351cc11.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0760b1ef-3441-4240-b8f3-545c6351cc11 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

@media (min-width: 1200px){#s-0760b1ef-3441-4240-b8f3-545c6351cc11 {
  margin: 0 !important;
  overflow: visible;
}

#s-0760b1ef-3441-4240-b8f3-545c6351cc11-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0760b1ef-3441-4240-b8f3-545c6351cc11 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0760b1ef-3441-4240-b8f3-545c6351cc11 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0760b1ef-3441-4240-b8f3-545c6351cc11 img.shogun-image {
  /* Add background color handling */
  
}

#s-0760b1ef-3441-4240-b8f3-545c6351cc11 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0760b1ef-3441-4240-b8f3-545c6351cc11 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-0760b1ef-3441-4240-b8f3-545c6351cc11 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0760b1ef-3441-4240-b8f3-545c6351cc11 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0760b1ef-3441-4240-b8f3-545c6351cc11.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0760b1ef-3441-4240-b8f3-545c6351cc11 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-0760b1ef-3441-4240-b8f3-545c6351cc11.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-0760b1ef-3441-4240-b8f3-545c6351cc11 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0760b1ef-3441-4240-b8f3-545c6351cc11.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0760b1ef-3441-4240-b8f3-545c6351cc11.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0760b1ef-3441-4240-b8f3-545c6351cc11.shogun-image {
  box-sizing: border-box;
}



.s-0760b1ef-3441-4240-b8f3-545c6351cc11 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0760b1ef-3441-4240-b8f3-545c6351cc11 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-0760b1ef-3441-4240-b8f3-545c6351cc11.shogun-image-container {
      position: relative;
    }

    .s-0760b1ef-3441-4240-b8f3-545c6351cc11.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0760b1ef-3441-4240-b8f3-545c6351cc11.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0760b1ef-3441-4240-b8f3-545c6351cc11 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-0760b1ef-3441-4240-b8f3-545c6351cc11 {
  margin: 0 !important;
  overflow: visible;
}

#s-0760b1ef-3441-4240-b8f3-545c6351cc11-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0760b1ef-3441-4240-b8f3-545c6351cc11 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0760b1ef-3441-4240-b8f3-545c6351cc11 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0760b1ef-3441-4240-b8f3-545c6351cc11 img.shogun-image {
  /* Add background color handling */
  
}

#s-0760b1ef-3441-4240-b8f3-545c6351cc11 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0760b1ef-3441-4240-b8f3-545c6351cc11 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-0760b1ef-3441-4240-b8f3-545c6351cc11 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0760b1ef-3441-4240-b8f3-545c6351cc11 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0760b1ef-3441-4240-b8f3-545c6351cc11.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0760b1ef-3441-4240-b8f3-545c6351cc11 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-0760b1ef-3441-4240-b8f3-545c6351cc11.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-0760b1ef-3441-4240-b8f3-545c6351cc11 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0760b1ef-3441-4240-b8f3-545c6351cc11.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0760b1ef-3441-4240-b8f3-545c6351cc11.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0760b1ef-3441-4240-b8f3-545c6351cc11.shogun-image {
  box-sizing: border-box;
}



.s-0760b1ef-3441-4240-b8f3-545c6351cc11 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0760b1ef-3441-4240-b8f3-545c6351cc11 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-0760b1ef-3441-4240-b8f3-545c6351cc11.shogun-image-container {
      position: relative;
    }

    .s-0760b1ef-3441-4240-b8f3-545c6351cc11.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0760b1ef-3441-4240-b8f3-545c6351cc11.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0760b1ef-3441-4240-b8f3-545c6351cc11 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-0760b1ef-3441-4240-b8f3-545c6351cc11 {
  margin: 0 !important;
  overflow: visible;
}

#s-0760b1ef-3441-4240-b8f3-545c6351cc11-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0760b1ef-3441-4240-b8f3-545c6351cc11 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0760b1ef-3441-4240-b8f3-545c6351cc11 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0760b1ef-3441-4240-b8f3-545c6351cc11 img.shogun-image {
  /* Add background color handling */
  
}

#s-0760b1ef-3441-4240-b8f3-545c6351cc11 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0760b1ef-3441-4240-b8f3-545c6351cc11 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-0760b1ef-3441-4240-b8f3-545c6351cc11 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0760b1ef-3441-4240-b8f3-545c6351cc11 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0760b1ef-3441-4240-b8f3-545c6351cc11.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0760b1ef-3441-4240-b8f3-545c6351cc11 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-0760b1ef-3441-4240-b8f3-545c6351cc11.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-0760b1ef-3441-4240-b8f3-545c6351cc11 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0760b1ef-3441-4240-b8f3-545c6351cc11.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0760b1ef-3441-4240-b8f3-545c6351cc11.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0760b1ef-3441-4240-b8f3-545c6351cc11.shogun-image {
  box-sizing: border-box;
}



.s-0760b1ef-3441-4240-b8f3-545c6351cc11 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0760b1ef-3441-4240-b8f3-545c6351cc11 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-0760b1ef-3441-4240-b8f3-545c6351cc11.shogun-image-container {
      position: relative;
    }

    .s-0760b1ef-3441-4240-b8f3-545c6351cc11.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0760b1ef-3441-4240-b8f3-545c6351cc11.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0760b1ef-3441-4240-b8f3-545c6351cc11 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

}@media (max-width: 767px){#s-0760b1ef-3441-4240-b8f3-545c6351cc11 {
  margin: 0 !important;
  overflow: visible;
}

#s-0760b1ef-3441-4240-b8f3-545c6351cc11-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0760b1ef-3441-4240-b8f3-545c6351cc11 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0760b1ef-3441-4240-b8f3-545c6351cc11 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0760b1ef-3441-4240-b8f3-545c6351cc11 img.shogun-image {
  /* Add background color handling */
  
}

#s-0760b1ef-3441-4240-b8f3-545c6351cc11 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0760b1ef-3441-4240-b8f3-545c6351cc11 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-0760b1ef-3441-4240-b8f3-545c6351cc11 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0760b1ef-3441-4240-b8f3-545c6351cc11 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0760b1ef-3441-4240-b8f3-545c6351cc11.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0760b1ef-3441-4240-b8f3-545c6351cc11 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-0760b1ef-3441-4240-b8f3-545c6351cc11.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-0760b1ef-3441-4240-b8f3-545c6351cc11 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0760b1ef-3441-4240-b8f3-545c6351cc11.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0760b1ef-3441-4240-b8f3-545c6351cc11.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0760b1ef-3441-4240-b8f3-545c6351cc11.shogun-image {
  box-sizing: border-box;
}



.s-0760b1ef-3441-4240-b8f3-545c6351cc11 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0760b1ef-3441-4240-b8f3-545c6351cc11 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-0760b1ef-3441-4240-b8f3-545c6351cc11.shogun-image-container {
      position: relative;
    }

    .s-0760b1ef-3441-4240-b8f3-545c6351cc11.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0760b1ef-3441-4240-b8f3-545c6351cc11.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0760b1ef-3441-4240-b8f3-545c6351cc11 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

}
#s-208a84e8-3c6d-4956-b895-5db041b842ee {
  max-width: 1200px;
aspect-ratio: 2/3;
text-align: center;
}

#s-208a84e8-3c6d-4956-b895-5db041b842ee {
  margin: 0 !important;
  overflow: visible;
}

#s-208a84e8-3c6d-4956-b895-5db041b842ee-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-208a84e8-3c6d-4956-b895-5db041b842ee {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-208a84e8-3c6d-4956-b895-5db041b842ee {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-208a84e8-3c6d-4956-b895-5db041b842ee img.shogun-image {
  /* Add background color handling */
  
}

#s-208a84e8-3c6d-4956-b895-5db041b842ee img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-208a84e8-3c6d-4956-b895-5db041b842ee .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-208a84e8-3c6d-4956-b895-5db041b842ee .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-208a84e8-3c6d-4956-b895-5db041b842ee .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-208a84e8-3c6d-4956-b895-5db041b842ee.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-208a84e8-3c6d-4956-b895-5db041b842ee img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-208a84e8-3c6d-4956-b895-5db041b842ee.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-208a84e8-3c6d-4956-b895-5db041b842ee .shogun-image-content {
  
    justify-content: center;
  
}

.s-208a84e8-3c6d-4956-b895-5db041b842ee.shg-align-container {
  display: flex;
  justify-content: center
}

.s-208a84e8-3c6d-4956-b895-5db041b842ee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-208a84e8-3c6d-4956-b895-5db041b842ee.shogun-image {
  box-sizing: border-box;
}



.s-208a84e8-3c6d-4956-b895-5db041b842ee img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-208a84e8-3c6d-4956-b895-5db041b842ee {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-208a84e8-3c6d-4956-b895-5db041b842ee.shogun-image-container {
      position: relative;
    }

    .s-208a84e8-3c6d-4956-b895-5db041b842ee.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-208a84e8-3c6d-4956-b895-5db041b842ee.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-208a84e8-3c6d-4956-b895-5db041b842ee img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

@media (min-width: 1200px){#s-208a84e8-3c6d-4956-b895-5db041b842ee {
  margin: 0 !important;
  overflow: visible;
}

#s-208a84e8-3c6d-4956-b895-5db041b842ee-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-208a84e8-3c6d-4956-b895-5db041b842ee {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-208a84e8-3c6d-4956-b895-5db041b842ee {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-208a84e8-3c6d-4956-b895-5db041b842ee img.shogun-image {
  /* Add background color handling */
  
}

#s-208a84e8-3c6d-4956-b895-5db041b842ee img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-208a84e8-3c6d-4956-b895-5db041b842ee .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-208a84e8-3c6d-4956-b895-5db041b842ee .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-208a84e8-3c6d-4956-b895-5db041b842ee .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-208a84e8-3c6d-4956-b895-5db041b842ee.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-208a84e8-3c6d-4956-b895-5db041b842ee img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-208a84e8-3c6d-4956-b895-5db041b842ee.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-208a84e8-3c6d-4956-b895-5db041b842ee .shogun-image-content {
  
    justify-content: center;
  
}

.s-208a84e8-3c6d-4956-b895-5db041b842ee.shg-align-container {
  display: flex;
  justify-content: center
}

.s-208a84e8-3c6d-4956-b895-5db041b842ee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-208a84e8-3c6d-4956-b895-5db041b842ee.shogun-image {
  box-sizing: border-box;
}



.s-208a84e8-3c6d-4956-b895-5db041b842ee img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-208a84e8-3c6d-4956-b895-5db041b842ee {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-208a84e8-3c6d-4956-b895-5db041b842ee.shogun-image-container {
      position: relative;
    }

    .s-208a84e8-3c6d-4956-b895-5db041b842ee.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-208a84e8-3c6d-4956-b895-5db041b842ee.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-208a84e8-3c6d-4956-b895-5db041b842ee img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-208a84e8-3c6d-4956-b895-5db041b842ee {
  margin: 0 !important;
  overflow: visible;
}

#s-208a84e8-3c6d-4956-b895-5db041b842ee-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-208a84e8-3c6d-4956-b895-5db041b842ee {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-208a84e8-3c6d-4956-b895-5db041b842ee {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-208a84e8-3c6d-4956-b895-5db041b842ee img.shogun-image {
  /* Add background color handling */
  
}

#s-208a84e8-3c6d-4956-b895-5db041b842ee img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-208a84e8-3c6d-4956-b895-5db041b842ee .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-208a84e8-3c6d-4956-b895-5db041b842ee .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-208a84e8-3c6d-4956-b895-5db041b842ee .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-208a84e8-3c6d-4956-b895-5db041b842ee.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-208a84e8-3c6d-4956-b895-5db041b842ee img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-208a84e8-3c6d-4956-b895-5db041b842ee.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-208a84e8-3c6d-4956-b895-5db041b842ee .shogun-image-content {
  
    justify-content: center;
  
}

.s-208a84e8-3c6d-4956-b895-5db041b842ee.shg-align-container {
  display: flex;
  justify-content: center
}

.s-208a84e8-3c6d-4956-b895-5db041b842ee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-208a84e8-3c6d-4956-b895-5db041b842ee.shogun-image {
  box-sizing: border-box;
}



.s-208a84e8-3c6d-4956-b895-5db041b842ee img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-208a84e8-3c6d-4956-b895-5db041b842ee {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-208a84e8-3c6d-4956-b895-5db041b842ee.shogun-image-container {
      position: relative;
    }

    .s-208a84e8-3c6d-4956-b895-5db041b842ee.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-208a84e8-3c6d-4956-b895-5db041b842ee.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-208a84e8-3c6d-4956-b895-5db041b842ee img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-208a84e8-3c6d-4956-b895-5db041b842ee {
  margin: 0 !important;
  overflow: visible;
}

#s-208a84e8-3c6d-4956-b895-5db041b842ee-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-208a84e8-3c6d-4956-b895-5db041b842ee {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-208a84e8-3c6d-4956-b895-5db041b842ee {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-208a84e8-3c6d-4956-b895-5db041b842ee img.shogun-image {
  /* Add background color handling */
  
}

#s-208a84e8-3c6d-4956-b895-5db041b842ee img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-208a84e8-3c6d-4956-b895-5db041b842ee .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-208a84e8-3c6d-4956-b895-5db041b842ee .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-208a84e8-3c6d-4956-b895-5db041b842ee .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-208a84e8-3c6d-4956-b895-5db041b842ee.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-208a84e8-3c6d-4956-b895-5db041b842ee img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-208a84e8-3c6d-4956-b895-5db041b842ee.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-208a84e8-3c6d-4956-b895-5db041b842ee .shogun-image-content {
  
    justify-content: center;
  
}

.s-208a84e8-3c6d-4956-b895-5db041b842ee.shg-align-container {
  display: flex;
  justify-content: center
}

.s-208a84e8-3c6d-4956-b895-5db041b842ee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-208a84e8-3c6d-4956-b895-5db041b842ee.shogun-image {
  box-sizing: border-box;
}



.s-208a84e8-3c6d-4956-b895-5db041b842ee img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-208a84e8-3c6d-4956-b895-5db041b842ee {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-208a84e8-3c6d-4956-b895-5db041b842ee.shogun-image-container {
      position: relative;
    }

    .s-208a84e8-3c6d-4956-b895-5db041b842ee.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-208a84e8-3c6d-4956-b895-5db041b842ee.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-208a84e8-3c6d-4956-b895-5db041b842ee img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

}@media (max-width: 767px){#s-208a84e8-3c6d-4956-b895-5db041b842ee {
  margin: 0 !important;
  overflow: visible;
}

#s-208a84e8-3c6d-4956-b895-5db041b842ee-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-208a84e8-3c6d-4956-b895-5db041b842ee {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-208a84e8-3c6d-4956-b895-5db041b842ee {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-208a84e8-3c6d-4956-b895-5db041b842ee img.shogun-image {
  /* Add background color handling */
  
}

#s-208a84e8-3c6d-4956-b895-5db041b842ee img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-208a84e8-3c6d-4956-b895-5db041b842ee .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-208a84e8-3c6d-4956-b895-5db041b842ee .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-208a84e8-3c6d-4956-b895-5db041b842ee .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-208a84e8-3c6d-4956-b895-5db041b842ee.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-208a84e8-3c6d-4956-b895-5db041b842ee img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-208a84e8-3c6d-4956-b895-5db041b842ee.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-208a84e8-3c6d-4956-b895-5db041b842ee .shogun-image-content {
  
    justify-content: center;
  
}

.s-208a84e8-3c6d-4956-b895-5db041b842ee.shg-align-container {
  display: flex;
  justify-content: center
}

.s-208a84e8-3c6d-4956-b895-5db041b842ee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-208a84e8-3c6d-4956-b895-5db041b842ee.shogun-image {
  box-sizing: border-box;
}



.s-208a84e8-3c6d-4956-b895-5db041b842ee img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-208a84e8-3c6d-4956-b895-5db041b842ee {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-208a84e8-3c6d-4956-b895-5db041b842ee.shogun-image-container {
      position: relative;
    }

    .s-208a84e8-3c6d-4956-b895-5db041b842ee.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-208a84e8-3c6d-4956-b895-5db041b842ee.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-208a84e8-3c6d-4956-b895-5db041b842ee img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

}
#s-9681a07a-b18d-461a-8921-92884d627499 {
  max-width: 500px;
aspect-ratio: 2/3;
text-align: center;
}

#s-9681a07a-b18d-461a-8921-92884d627499 {
  margin: 0 !important;
  overflow: visible;
}

#s-9681a07a-b18d-461a-8921-92884d627499-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9681a07a-b18d-461a-8921-92884d627499 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9681a07a-b18d-461a-8921-92884d627499 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9681a07a-b18d-461a-8921-92884d627499 img.shogun-image {
  /* Add background color handling */
  
}

#s-9681a07a-b18d-461a-8921-92884d627499 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9681a07a-b18d-461a-8921-92884d627499 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-9681a07a-b18d-461a-8921-92884d627499 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9681a07a-b18d-461a-8921-92884d627499 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9681a07a-b18d-461a-8921-92884d627499.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9681a07a-b18d-461a-8921-92884d627499 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 500px;
  }



  img.s-9681a07a-b18d-461a-8921-92884d627499.shogun-image {
    
    
    
    max-height: 500px;
  }


.s-9681a07a-b18d-461a-8921-92884d627499 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9681a07a-b18d-461a-8921-92884d627499.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9681a07a-b18d-461a-8921-92884d627499.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9681a07a-b18d-461a-8921-92884d627499.shogun-image {
  box-sizing: border-box;
}



.s-9681a07a-b18d-461a-8921-92884d627499 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9681a07a-b18d-461a-8921-92884d627499 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-9681a07a-b18d-461a-8921-92884d627499.shogun-image-container {
      position: relative;
    }

    .s-9681a07a-b18d-461a-8921-92884d627499.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9681a07a-b18d-461a-8921-92884d627499.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9681a07a-b18d-461a-8921-92884d627499 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 500px;
    }
  }

@media (min-width: 1200px){#s-9681a07a-b18d-461a-8921-92884d627499 {
  margin: 0 !important;
  overflow: visible;
}

#s-9681a07a-b18d-461a-8921-92884d627499-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9681a07a-b18d-461a-8921-92884d627499 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9681a07a-b18d-461a-8921-92884d627499 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9681a07a-b18d-461a-8921-92884d627499 img.shogun-image {
  /* Add background color handling */
  
}

#s-9681a07a-b18d-461a-8921-92884d627499 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9681a07a-b18d-461a-8921-92884d627499 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-9681a07a-b18d-461a-8921-92884d627499 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9681a07a-b18d-461a-8921-92884d627499 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9681a07a-b18d-461a-8921-92884d627499.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9681a07a-b18d-461a-8921-92884d627499 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 500px;
  }



  img.s-9681a07a-b18d-461a-8921-92884d627499.shogun-image {
    
    
    
    max-height: 500px;
  }


.s-9681a07a-b18d-461a-8921-92884d627499 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9681a07a-b18d-461a-8921-92884d627499.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9681a07a-b18d-461a-8921-92884d627499.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9681a07a-b18d-461a-8921-92884d627499.shogun-image {
  box-sizing: border-box;
}



.s-9681a07a-b18d-461a-8921-92884d627499 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9681a07a-b18d-461a-8921-92884d627499 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-9681a07a-b18d-461a-8921-92884d627499.shogun-image-container {
      position: relative;
    }

    .s-9681a07a-b18d-461a-8921-92884d627499.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9681a07a-b18d-461a-8921-92884d627499.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9681a07a-b18d-461a-8921-92884d627499 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-9681a07a-b18d-461a-8921-92884d627499 {
  margin: 0 !important;
  overflow: visible;
}

#s-9681a07a-b18d-461a-8921-92884d627499-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9681a07a-b18d-461a-8921-92884d627499 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9681a07a-b18d-461a-8921-92884d627499 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9681a07a-b18d-461a-8921-92884d627499 img.shogun-image {
  /* Add background color handling */
  
}

#s-9681a07a-b18d-461a-8921-92884d627499 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9681a07a-b18d-461a-8921-92884d627499 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-9681a07a-b18d-461a-8921-92884d627499 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9681a07a-b18d-461a-8921-92884d627499 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9681a07a-b18d-461a-8921-92884d627499.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9681a07a-b18d-461a-8921-92884d627499 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 500px;
  }



  img.s-9681a07a-b18d-461a-8921-92884d627499.shogun-image {
    
    
    
    max-height: 500px;
  }


.s-9681a07a-b18d-461a-8921-92884d627499 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9681a07a-b18d-461a-8921-92884d627499.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9681a07a-b18d-461a-8921-92884d627499.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9681a07a-b18d-461a-8921-92884d627499.shogun-image {
  box-sizing: border-box;
}



.s-9681a07a-b18d-461a-8921-92884d627499 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9681a07a-b18d-461a-8921-92884d627499 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-9681a07a-b18d-461a-8921-92884d627499.shogun-image-container {
      position: relative;
    }

    .s-9681a07a-b18d-461a-8921-92884d627499.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9681a07a-b18d-461a-8921-92884d627499.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9681a07a-b18d-461a-8921-92884d627499 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-9681a07a-b18d-461a-8921-92884d627499 {
  margin: 0 !important;
  overflow: visible;
}

#s-9681a07a-b18d-461a-8921-92884d627499-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9681a07a-b18d-461a-8921-92884d627499 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9681a07a-b18d-461a-8921-92884d627499 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9681a07a-b18d-461a-8921-92884d627499 img.shogun-image {
  /* Add background color handling */
  
}

#s-9681a07a-b18d-461a-8921-92884d627499 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9681a07a-b18d-461a-8921-92884d627499 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-9681a07a-b18d-461a-8921-92884d627499 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9681a07a-b18d-461a-8921-92884d627499 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9681a07a-b18d-461a-8921-92884d627499.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9681a07a-b18d-461a-8921-92884d627499 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 500px;
  }



  img.s-9681a07a-b18d-461a-8921-92884d627499.shogun-image {
    
    
    
    max-height: 500px;
  }


.s-9681a07a-b18d-461a-8921-92884d627499 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9681a07a-b18d-461a-8921-92884d627499.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9681a07a-b18d-461a-8921-92884d627499.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9681a07a-b18d-461a-8921-92884d627499.shogun-image {
  box-sizing: border-box;
}



.s-9681a07a-b18d-461a-8921-92884d627499 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9681a07a-b18d-461a-8921-92884d627499 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-9681a07a-b18d-461a-8921-92884d627499.shogun-image-container {
      position: relative;
    }

    .s-9681a07a-b18d-461a-8921-92884d627499.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9681a07a-b18d-461a-8921-92884d627499.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9681a07a-b18d-461a-8921-92884d627499 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 500px;
    }
  }

}@media (max-width: 767px){#s-9681a07a-b18d-461a-8921-92884d627499 {
  margin: 0 !important;
  overflow: visible;
}

#s-9681a07a-b18d-461a-8921-92884d627499-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9681a07a-b18d-461a-8921-92884d627499 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9681a07a-b18d-461a-8921-92884d627499 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9681a07a-b18d-461a-8921-92884d627499 img.shogun-image {
  /* Add background color handling */
  
}

#s-9681a07a-b18d-461a-8921-92884d627499 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9681a07a-b18d-461a-8921-92884d627499 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-9681a07a-b18d-461a-8921-92884d627499 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9681a07a-b18d-461a-8921-92884d627499 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9681a07a-b18d-461a-8921-92884d627499.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9681a07a-b18d-461a-8921-92884d627499 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 500px;
  }



  img.s-9681a07a-b18d-461a-8921-92884d627499.shogun-image {
    
    
    
    max-height: 500px;
  }


.s-9681a07a-b18d-461a-8921-92884d627499 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9681a07a-b18d-461a-8921-92884d627499.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9681a07a-b18d-461a-8921-92884d627499.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9681a07a-b18d-461a-8921-92884d627499.shogun-image {
  box-sizing: border-box;
}



.s-9681a07a-b18d-461a-8921-92884d627499 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9681a07a-b18d-461a-8921-92884d627499 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-9681a07a-b18d-461a-8921-92884d627499.shogun-image-container {
      position: relative;
    }

    .s-9681a07a-b18d-461a-8921-92884d627499.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9681a07a-b18d-461a-8921-92884d627499.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9681a07a-b18d-461a-8921-92884d627499 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 500px;
    }
  }

}
#s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 {
  max-width: 1200px;
aspect-ratio: 2/3;
text-align: center;
}

#s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 {
  margin: 0 !important;
  overflow: visible;
}

#s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 img.shogun-image {
  /* Add background color handling */
  
}

#s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shogun-image {
  box-sizing: border-box;
}



.s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shogun-image-container {
      position: relative;
    }

    .s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

@media (min-width: 1200px){#s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 {
  margin: 0 !important;
  overflow: visible;
}

#s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 img.shogun-image {
  /* Add background color handling */
  
}

#s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shogun-image {
  box-sizing: border-box;
}



.s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shogun-image-container {
      position: relative;
    }

    .s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 {
  margin: 0 !important;
  overflow: visible;
}

#s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 img.shogun-image {
  /* Add background color handling */
  
}

#s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shogun-image {
  box-sizing: border-box;
}



.s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shogun-image-container {
      position: relative;
    }

    .s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 {
  margin: 0 !important;
  overflow: visible;
}

#s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 img.shogun-image {
  /* Add background color handling */
  
}

#s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shogun-image {
  box-sizing: border-box;
}



.s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shogun-image-container {
      position: relative;
    }

    .s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

}@media (max-width: 767px){#s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 {
  margin: 0 !important;
  overflow: visible;
}

#s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 img.shogun-image {
  /* Add background color handling */
  
}

#s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shogun-image {
  box-sizing: border-box;
}



.s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shogun-image-container {
      position: relative;
    }

    .s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c00b0bfb-55cb-450c-9fa0-80bff54f4f42 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

}
#s-8e26bc6f-8a64-47a2-9d17-2a2e2358cb2c {
  background-repeat: no-repeat;
background-size: cover;
min-height: 50px;
background-position: center center;
}

#s-8e26bc6f-8a64-47a2-9d17-2a2e2358cb2c {
  background-image: url(https://i.shgcdn.com/dfc4388e-bc9d-4014-a06f-4b34339b0943/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}

@media (max-width: 480px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-8e26bc6f-8a64-47a2-9d17-2a2e2358cb2c {
  background-image: url(https://i.shgcdn.com/dfc4388e-bc9d-4014-a06f-4b34339b0943/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/480x/);
}
#s-8e26bc6f-8a64-47a2-9d17-2a2e2358cb2c.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
#s-8e26bc6f-8a64-47a2-9d17-2a2e2358cb2c {
  background-image: url(https://i.shgcdn.com/dfc4388e-bc9d-4014-a06f-4b34339b0943/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/960x/);
}
#s-8e26bc6f-8a64-47a2-9d17-2a2e2358cb2c.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-8e26bc6f-8a64-47a2-9d17-2a2e2358cb2c {
  background-image: url(https://i.shgcdn.com/dfc4388e-bc9d-4014-a06f-4b34339b0943/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/768x/);
}
#s-8e26bc6f-8a64-47a2-9d17-2a2e2358cb2c.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
#s-8e26bc6f-8a64-47a2-9d17-2a2e2358cb2c {
  background-image: url(https://i.shgcdn.com/dfc4388e-bc9d-4014-a06f-4b34339b0943/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1536x/);
}
#s-8e26bc6f-8a64-47a2-9d17-2a2e2358cb2c.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-8e26bc6f-8a64-47a2-9d17-2a2e2358cb2c {
  background-image: url(https://i.shgcdn.com/dfc4388e-bc9d-4014-a06f-4b34339b0943/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1024x/);
}
#s-8e26bc6f-8a64-47a2-9d17-2a2e2358cb2c.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
#s-8e26bc6f-8a64-47a2-9d17-2a2e2358cb2c {
  background-image: url(https://i.shgcdn.com/dfc4388e-bc9d-4014-a06f-4b34339b0943/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}
#s-8e26bc6f-8a64-47a2-9d17-2a2e2358cb2c.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-8e26bc6f-8a64-47a2-9d17-2a2e2358cb2c {
  background-image: url(https://i.shgcdn.com/dfc4388e-bc9d-4014-a06f-4b34339b0943/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1200x/);
}
#s-8e26bc6f-8a64-47a2-9d17-2a2e2358cb2c.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 2) {
#s-8e26bc6f-8a64-47a2-9d17-2a2e2358cb2c {
  background-image: url(https://i.shgcdn.com/dfc4388e-bc9d-4014-a06f-4b34339b0943/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}
#s-8e26bc6f-8a64-47a2-9d17-2a2e2358cb2c.shogun-lazyload-bg-image {
  background-image: none;
}

}







#s-8e26bc6f-8a64-47a2-9d17-2a2e2358cb2c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8e26bc6f-8a64-47a2-9d17-2a2e2358cb2c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-07cb03d1-8568-4cb6-9e41-4c07cf25b489 {
  margin-top: 17px;
margin-bottom: 17px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-07cb03d1-8568-4cb6-9e41-4c07cf25b489 .shogun-heading-component h2 {
  color: rgba(31, 42, 68, 1);
  font-weight:  normal ;
  font-family: "Caveat";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}



@media (min-width: 0px) {
[id="s-847be245-844d-43e6-9de9-1236660e552a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-847be245-844d-43e6-9de9-1236660e552a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-847be245-844d-43e6-9de9-1236660e552a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-847be245-844d-43e6-9de9-1236660e552a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-651eb1f9-f272-4bee-a08c-dc457b1b9fad {
  margin-top: 40px;
margin-left: 5%;
margin-bottom: 40px;
margin-right: 5%;
}
@media (min-width: 1200px){#s-651eb1f9-f272-4bee-a08c-dc457b1b9fad {
  margin-top: 73px;
margin-bottom: 73px;
}
}
#s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 {
  max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 {
  margin: 0 !important;
  overflow: visible;
}

#s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 img.shogun-image {
  /* Add background color handling */
  
}

#s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shogun-image {
  box-sizing: border-box;
}



.s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shogun-image-container {
      position: relative;
    }

    .s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 {
  margin: 0 !important;
  overflow: visible;
}

#s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 img.shogun-image {
  /* Add background color handling */
  
}

#s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shogun-image {
  box-sizing: border-box;
}



.s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shogun-image-container {
      position: relative;
    }

    .s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 {
  margin: 0 !important;
  overflow: visible;
}

#s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 img.shogun-image {
  /* Add background color handling */
  
}

#s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shogun-image {
  box-sizing: border-box;
}



.s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shogun-image-container {
      position: relative;
    }

    .s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 {
  margin: 0 !important;
  overflow: visible;
}

#s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 img.shogun-image {
  /* Add background color handling */
  
}

#s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shogun-image {
  box-sizing: border-box;
}



.s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shogun-image-container {
      position: relative;
    }

    .s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 {
  margin: 0 !important;
  overflow: visible;
}

#s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 img.shogun-image {
  /* Add background color handling */
  
}

#s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shogun-image {
  box-sizing: border-box;
}



.s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shogun-image-container {
      position: relative;
    }

    .s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-18b68a2c-b0e2-4406-a36f-f7d207c6a4e6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-c98bbbf0-dff7-4fd2-b44a-47be009d1936 {
  margin-top: 19px;
margin-bottom: 19px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-c98bbbf0-dff7-4fd2-b44a-47be009d1936 .shogun-heading-component h2 {
  color: rgba(31, 42, 68, 1);
  font-weight:  normal ;
  font-family: "Caveat";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}



@media (min-width: 0px) {
[id="s-d0631558-33f9-4203-b918-8b32c9e5dc16"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d0631558-33f9-4203-b918-8b32c9e5dc16"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-d0631558-33f9-4203-b918-8b32c9e5dc16"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-d0631558-33f9-4203-b918-8b32c9e5dc16"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-73f1390e-9dda-4646-a8ce-0c867033c93c {
  margin-left: 3%;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-73f1390e-9dda-4646-a8ce-0c867033c93c {
  margin: 0 !important;
  overflow: visible;
}

#s-73f1390e-9dda-4646-a8ce-0c867033c93c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-73f1390e-9dda-4646-a8ce-0c867033c93c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 3%;
  
  
  
}

.shg-image-content-margin-container-s-73f1390e-9dda-4646-a8ce-0c867033c93c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-73f1390e-9dda-4646-a8ce-0c867033c93c img.shogun-image {
  /* Add background color handling */
  
}

#s-73f1390e-9dda-4646-a8ce-0c867033c93c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-73f1390e-9dda-4646-a8ce-0c867033c93c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-73f1390e-9dda-4646-a8ce-0c867033c93c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-73f1390e-9dda-4646-a8ce-0c867033c93c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-73f1390e-9dda-4646-a8ce-0c867033c93c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-73f1390e-9dda-4646-a8ce-0c867033c93c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-73f1390e-9dda-4646-a8ce-0c867033c93c.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-73f1390e-9dda-4646-a8ce-0c867033c93c .shogun-image-content {
  
    justify-content: center;
  
}

.s-73f1390e-9dda-4646-a8ce-0c867033c93c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73f1390e-9dda-4646-a8ce-0c867033c93c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73f1390e-9dda-4646-a8ce-0c867033c93c.shogun-image {
  box-sizing: border-box;
}



.s-73f1390e-9dda-4646-a8ce-0c867033c93c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-73f1390e-9dda-4646-a8ce-0c867033c93c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-73f1390e-9dda-4646-a8ce-0c867033c93c.shogun-image-container {
      position: relative;
    }

    .s-73f1390e-9dda-4646-a8ce-0c867033c93c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-73f1390e-9dda-4646-a8ce-0c867033c93c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-73f1390e-9dda-4646-a8ce-0c867033c93c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-73f1390e-9dda-4646-a8ce-0c867033c93c {
  margin: 0 !important;
  overflow: visible;
}

#s-73f1390e-9dda-4646-a8ce-0c867033c93c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-73f1390e-9dda-4646-a8ce-0c867033c93c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-73f1390e-9dda-4646-a8ce-0c867033c93c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-73f1390e-9dda-4646-a8ce-0c867033c93c img.shogun-image {
  /* Add background color handling */
  
}

#s-73f1390e-9dda-4646-a8ce-0c867033c93c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-73f1390e-9dda-4646-a8ce-0c867033c93c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-73f1390e-9dda-4646-a8ce-0c867033c93c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-73f1390e-9dda-4646-a8ce-0c867033c93c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-73f1390e-9dda-4646-a8ce-0c867033c93c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-73f1390e-9dda-4646-a8ce-0c867033c93c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-73f1390e-9dda-4646-a8ce-0c867033c93c.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-73f1390e-9dda-4646-a8ce-0c867033c93c .shogun-image-content {
  
    justify-content: center;
  
}

.s-73f1390e-9dda-4646-a8ce-0c867033c93c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73f1390e-9dda-4646-a8ce-0c867033c93c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73f1390e-9dda-4646-a8ce-0c867033c93c.shogun-image {
  box-sizing: border-box;
}



.s-73f1390e-9dda-4646-a8ce-0c867033c93c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-73f1390e-9dda-4646-a8ce-0c867033c93c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-73f1390e-9dda-4646-a8ce-0c867033c93c.shogun-image-container {
      position: relative;
    }

    .s-73f1390e-9dda-4646-a8ce-0c867033c93c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-73f1390e-9dda-4646-a8ce-0c867033c93c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-73f1390e-9dda-4646-a8ce-0c867033c93c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-73f1390e-9dda-4646-a8ce-0c867033c93c {
  margin: 0 !important;
  overflow: visible;
}

#s-73f1390e-9dda-4646-a8ce-0c867033c93c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-73f1390e-9dda-4646-a8ce-0c867033c93c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-73f1390e-9dda-4646-a8ce-0c867033c93c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-73f1390e-9dda-4646-a8ce-0c867033c93c img.shogun-image {
  /* Add background color handling */
  
}

#s-73f1390e-9dda-4646-a8ce-0c867033c93c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-73f1390e-9dda-4646-a8ce-0c867033c93c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-73f1390e-9dda-4646-a8ce-0c867033c93c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-73f1390e-9dda-4646-a8ce-0c867033c93c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-73f1390e-9dda-4646-a8ce-0c867033c93c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-73f1390e-9dda-4646-a8ce-0c867033c93c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-73f1390e-9dda-4646-a8ce-0c867033c93c.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-73f1390e-9dda-4646-a8ce-0c867033c93c .shogun-image-content {
  
    justify-content: center;
  
}

.s-73f1390e-9dda-4646-a8ce-0c867033c93c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73f1390e-9dda-4646-a8ce-0c867033c93c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73f1390e-9dda-4646-a8ce-0c867033c93c.shogun-image {
  box-sizing: border-box;
}



.s-73f1390e-9dda-4646-a8ce-0c867033c93c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-73f1390e-9dda-4646-a8ce-0c867033c93c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-73f1390e-9dda-4646-a8ce-0c867033c93c.shogun-image-container {
      position: relative;
    }

    .s-73f1390e-9dda-4646-a8ce-0c867033c93c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-73f1390e-9dda-4646-a8ce-0c867033c93c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-73f1390e-9dda-4646-a8ce-0c867033c93c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-73f1390e-9dda-4646-a8ce-0c867033c93c {
  margin: 0 !important;
  overflow: visible;
}

#s-73f1390e-9dda-4646-a8ce-0c867033c93c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-73f1390e-9dda-4646-a8ce-0c867033c93c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-73f1390e-9dda-4646-a8ce-0c867033c93c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-73f1390e-9dda-4646-a8ce-0c867033c93c img.shogun-image {
  /* Add background color handling */
  
}

#s-73f1390e-9dda-4646-a8ce-0c867033c93c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-73f1390e-9dda-4646-a8ce-0c867033c93c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-73f1390e-9dda-4646-a8ce-0c867033c93c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-73f1390e-9dda-4646-a8ce-0c867033c93c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-73f1390e-9dda-4646-a8ce-0c867033c93c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-73f1390e-9dda-4646-a8ce-0c867033c93c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-73f1390e-9dda-4646-a8ce-0c867033c93c.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-73f1390e-9dda-4646-a8ce-0c867033c93c .shogun-image-content {
  
    justify-content: center;
  
}

.s-73f1390e-9dda-4646-a8ce-0c867033c93c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73f1390e-9dda-4646-a8ce-0c867033c93c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73f1390e-9dda-4646-a8ce-0c867033c93c.shogun-image {
  box-sizing: border-box;
}



.s-73f1390e-9dda-4646-a8ce-0c867033c93c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-73f1390e-9dda-4646-a8ce-0c867033c93c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-73f1390e-9dda-4646-a8ce-0c867033c93c.shogun-image-container {
      position: relative;
    }

    .s-73f1390e-9dda-4646-a8ce-0c867033c93c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-73f1390e-9dda-4646-a8ce-0c867033c93c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-73f1390e-9dda-4646-a8ce-0c867033c93c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-73f1390e-9dda-4646-a8ce-0c867033c93c {
  margin: 0 !important;
  overflow: visible;
}

#s-73f1390e-9dda-4646-a8ce-0c867033c93c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-73f1390e-9dda-4646-a8ce-0c867033c93c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-73f1390e-9dda-4646-a8ce-0c867033c93c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-73f1390e-9dda-4646-a8ce-0c867033c93c img.shogun-image {
  /* Add background color handling */
  
}

#s-73f1390e-9dda-4646-a8ce-0c867033c93c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-73f1390e-9dda-4646-a8ce-0c867033c93c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-73f1390e-9dda-4646-a8ce-0c867033c93c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-73f1390e-9dda-4646-a8ce-0c867033c93c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-73f1390e-9dda-4646-a8ce-0c867033c93c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-73f1390e-9dda-4646-a8ce-0c867033c93c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-73f1390e-9dda-4646-a8ce-0c867033c93c.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-73f1390e-9dda-4646-a8ce-0c867033c93c .shogun-image-content {
  
    justify-content: center;
  
}

.s-73f1390e-9dda-4646-a8ce-0c867033c93c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73f1390e-9dda-4646-a8ce-0c867033c93c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73f1390e-9dda-4646-a8ce-0c867033c93c.shogun-image {
  box-sizing: border-box;
}



.s-73f1390e-9dda-4646-a8ce-0c867033c93c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-73f1390e-9dda-4646-a8ce-0c867033c93c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-73f1390e-9dda-4646-a8ce-0c867033c93c.shogun-image-container {
      position: relative;
    }

    .s-73f1390e-9dda-4646-a8ce-0c867033c93c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-73f1390e-9dda-4646-a8ce-0c867033c93c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-73f1390e-9dda-4646-a8ce-0c867033c93c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-f69f595e-c9ad-481c-9865-52c6fe474d6a {
  margin-top: 0px;
margin-left: 3%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-f69f595e-c9ad-481c-9865-52c6fe474d6a {
  margin-right: 5%;
}
}
#s-f69f595e-c9ad-481c-9865-52c6fe474d6a .shogun-heading-component h3 {
  color: rgba(236, 93, 115, 0.71);
  font-weight:  500 ;
  font-family: "Caveat";
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: left;
}



#s-e81b76b9-2743-49de-9923-6bbb7f653d4d {
  margin-left: 3%;
}
@media (max-width: 767px){#s-e81b76b9-2743-49de-9923-6bbb7f653d4d {
  margin-right: 5%;
}
}
#s-5dcb1567-6d1c-4d42-9993-1face999851a {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 132, 122, 1);
border-style: solid;
border-radius: 31px;
background-color: rgba(0, 132, 122, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-5dcb1567-6d1c-4d42-9993-1face999851a:hover {border-style: solid !important;
border-color: rgba(0, 132, 122, 1) !important;
background-color: rgba(236, 93, 115, 0.69) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-5dcb1567-6d1c-4d42-9993-1face999851a:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-5dcb1567-6d1c-4d42-9993-1face999851a-root {
    text-align: center;
  }


#s-5dcb1567-6d1c-4d42-9993-1face999851a.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-5dcb1567-6d1c-4d42-9993-1face999851a-root {
    text-align: center;
  }


#s-5dcb1567-6d1c-4d42-9993-1face999851a.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-5dcb1567-6d1c-4d42-9993-1face999851a-root {
    text-align: center;
  }


#s-5dcb1567-6d1c-4d42-9993-1face999851a.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-5dcb1567-6d1c-4d42-9993-1face999851a-root {
    text-align: center;
  }


#s-5dcb1567-6d1c-4d42-9993-1face999851a.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-5dcb1567-6d1c-4d42-9993-1face999851a-root {
    text-align: center;
  }


#s-5dcb1567-6d1c-4d42-9993-1face999851a.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}
#s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 {
  max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 {
  margin: 0 !important;
  overflow: visible;
}

#s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 img.shogun-image {
  /* Add background color handling */
  
}

#s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 .shogun-image-content {
  
    justify-content: center;
  
}

.s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shogun-image {
  box-sizing: border-box;
}



.s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shogun-image-container {
      position: relative;
    }

    .s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 {
  margin: 0 !important;
  overflow: visible;
}

#s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 img.shogun-image {
  /* Add background color handling */
  
}

#s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 .shogun-image-content {
  
    justify-content: center;
  
}

.s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shogun-image {
  box-sizing: border-box;
}



.s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shogun-image-container {
      position: relative;
    }

    .s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 {
  margin: 0 !important;
  overflow: visible;
}

#s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 img.shogun-image {
  /* Add background color handling */
  
}

#s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 .shogun-image-content {
  
    justify-content: center;
  
}

.s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shogun-image {
  box-sizing: border-box;
}



.s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shogun-image-container {
      position: relative;
    }

    .s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 {
  margin: 0 !important;
  overflow: visible;
}

#s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 img.shogun-image {
  /* Add background color handling */
  
}

#s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 .shogun-image-content {
  
    justify-content: center;
  
}

.s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shogun-image {
  box-sizing: border-box;
}



.s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shogun-image-container {
      position: relative;
    }

    .s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 {
  margin: 0 !important;
  overflow: visible;
}

#s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 img.shogun-image {
  /* Add background color handling */
  
}

#s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 .shogun-image-content {
  
    justify-content: center;
  
}

.s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shogun-image {
  box-sizing: border-box;
}



.s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shogun-image-container {
      position: relative;
    }

    .s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bfb96b25-0ada-4a85-a7ff-0b89bcfe9f19 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-a11f9f31-5bc1-467c-973e-eeef81132eff {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-a11f9f31-5bc1-467c-973e-eeef81132eff {
  margin-left: 5%;
margin-right: 5%;
}
}
#s-a11f9f31-5bc1-467c-973e-eeef81132eff .shogun-heading-component h3 {
  color: rgba(236, 93, 115, 0.69);
  font-weight:  normal ;
  font-family: "Caveat";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



@media (max-width: 767px){#s-355ced46-18e3-47f8-8b15-5810ba9eaef9 {
  margin-left: 5%;
margin-right: 5%;
}
}
#s-9c1b0ff4-c821-49d7-804f-18ae98cbefdb {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 132, 122, 1);
border-style: solid;
border-radius: 31px;
background-color: rgba(0, 132, 122, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-9c1b0ff4-c821-49d7-804f-18ae98cbefdb:hover {border-style: solid !important;
border-color: rgba(0, 132, 122, 1) !important;
background-color: rgba(236, 93, 115, 0.69) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-9c1b0ff4-c821-49d7-804f-18ae98cbefdb:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-9c1b0ff4-c821-49d7-804f-18ae98cbefdb-root {
    text-align: center;
  }


#s-9c1b0ff4-c821-49d7-804f-18ae98cbefdb.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-9c1b0ff4-c821-49d7-804f-18ae98cbefdb-root {
    text-align: center;
  }


#s-9c1b0ff4-c821-49d7-804f-18ae98cbefdb.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9c1b0ff4-c821-49d7-804f-18ae98cbefdb-root {
    text-align: center;
  }


#s-9c1b0ff4-c821-49d7-804f-18ae98cbefdb.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9c1b0ff4-c821-49d7-804f-18ae98cbefdb-root {
    text-align: center;
  }


#s-9c1b0ff4-c821-49d7-804f-18ae98cbefdb.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-9c1b0ff4-c821-49d7-804f-18ae98cbefdb-root {
    text-align: center;
  }


#s-9c1b0ff4-c821-49d7-804f-18ae98cbefdb.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}
#s-64969f69-693c-4a07-9618-ac5c27dd3dc9 {
  max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-64969f69-693c-4a07-9618-ac5c27dd3dc9 {
  margin: 0 !important;
  overflow: visible;
}

#s-64969f69-693c-4a07-9618-ac5c27dd3dc9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-64969f69-693c-4a07-9618-ac5c27dd3dc9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-64969f69-693c-4a07-9618-ac5c27dd3dc9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-64969f69-693c-4a07-9618-ac5c27dd3dc9 img.shogun-image {
  /* Add background color handling */
  
}

#s-64969f69-693c-4a07-9618-ac5c27dd3dc9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-64969f69-693c-4a07-9618-ac5c27dd3dc9 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-64969f69-693c-4a07-9618-ac5c27dd3dc9 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-64969f69-693c-4a07-9618-ac5c27dd3dc9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-64969f69-693c-4a07-9618-ac5c27dd3dc9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-64969f69-693c-4a07-9618-ac5c27dd3dc9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shogun-image {
  box-sizing: border-box;
}



.s-64969f69-693c-4a07-9618-ac5c27dd3dc9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-64969f69-693c-4a07-9618-ac5c27dd3dc9 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shogun-image-container {
      position: relative;
    }

    .s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-64969f69-693c-4a07-9618-ac5c27dd3dc9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-64969f69-693c-4a07-9618-ac5c27dd3dc9 {
  margin: 0 !important;
  overflow: visible;
}

#s-64969f69-693c-4a07-9618-ac5c27dd3dc9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-64969f69-693c-4a07-9618-ac5c27dd3dc9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-64969f69-693c-4a07-9618-ac5c27dd3dc9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-64969f69-693c-4a07-9618-ac5c27dd3dc9 img.shogun-image {
  /* Add background color handling */
  
}

#s-64969f69-693c-4a07-9618-ac5c27dd3dc9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-64969f69-693c-4a07-9618-ac5c27dd3dc9 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-64969f69-693c-4a07-9618-ac5c27dd3dc9 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-64969f69-693c-4a07-9618-ac5c27dd3dc9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-64969f69-693c-4a07-9618-ac5c27dd3dc9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-64969f69-693c-4a07-9618-ac5c27dd3dc9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shogun-image {
  box-sizing: border-box;
}



.s-64969f69-693c-4a07-9618-ac5c27dd3dc9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-64969f69-693c-4a07-9618-ac5c27dd3dc9 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shogun-image-container {
      position: relative;
    }

    .s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-64969f69-693c-4a07-9618-ac5c27dd3dc9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-64969f69-693c-4a07-9618-ac5c27dd3dc9 {
  margin: 0 !important;
  overflow: visible;
}

#s-64969f69-693c-4a07-9618-ac5c27dd3dc9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-64969f69-693c-4a07-9618-ac5c27dd3dc9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-64969f69-693c-4a07-9618-ac5c27dd3dc9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-64969f69-693c-4a07-9618-ac5c27dd3dc9 img.shogun-image {
  /* Add background color handling */
  
}

#s-64969f69-693c-4a07-9618-ac5c27dd3dc9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-64969f69-693c-4a07-9618-ac5c27dd3dc9 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-64969f69-693c-4a07-9618-ac5c27dd3dc9 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-64969f69-693c-4a07-9618-ac5c27dd3dc9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-64969f69-693c-4a07-9618-ac5c27dd3dc9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-64969f69-693c-4a07-9618-ac5c27dd3dc9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shogun-image {
  box-sizing: border-box;
}



.s-64969f69-693c-4a07-9618-ac5c27dd3dc9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-64969f69-693c-4a07-9618-ac5c27dd3dc9 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shogun-image-container {
      position: relative;
    }

    .s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-64969f69-693c-4a07-9618-ac5c27dd3dc9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-64969f69-693c-4a07-9618-ac5c27dd3dc9 {
  margin: 0 !important;
  overflow: visible;
}

#s-64969f69-693c-4a07-9618-ac5c27dd3dc9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-64969f69-693c-4a07-9618-ac5c27dd3dc9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-64969f69-693c-4a07-9618-ac5c27dd3dc9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-64969f69-693c-4a07-9618-ac5c27dd3dc9 img.shogun-image {
  /* Add background color handling */
  
}

#s-64969f69-693c-4a07-9618-ac5c27dd3dc9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-64969f69-693c-4a07-9618-ac5c27dd3dc9 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-64969f69-693c-4a07-9618-ac5c27dd3dc9 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-64969f69-693c-4a07-9618-ac5c27dd3dc9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-64969f69-693c-4a07-9618-ac5c27dd3dc9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-64969f69-693c-4a07-9618-ac5c27dd3dc9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shogun-image {
  box-sizing: border-box;
}



.s-64969f69-693c-4a07-9618-ac5c27dd3dc9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-64969f69-693c-4a07-9618-ac5c27dd3dc9 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shogun-image-container {
      position: relative;
    }

    .s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-64969f69-693c-4a07-9618-ac5c27dd3dc9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-64969f69-693c-4a07-9618-ac5c27dd3dc9 {
  margin: 0 !important;
  overflow: visible;
}

#s-64969f69-693c-4a07-9618-ac5c27dd3dc9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-64969f69-693c-4a07-9618-ac5c27dd3dc9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-64969f69-693c-4a07-9618-ac5c27dd3dc9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-64969f69-693c-4a07-9618-ac5c27dd3dc9 img.shogun-image {
  /* Add background color handling */
  
}

#s-64969f69-693c-4a07-9618-ac5c27dd3dc9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-64969f69-693c-4a07-9618-ac5c27dd3dc9 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-64969f69-693c-4a07-9618-ac5c27dd3dc9 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-64969f69-693c-4a07-9618-ac5c27dd3dc9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-64969f69-693c-4a07-9618-ac5c27dd3dc9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-64969f69-693c-4a07-9618-ac5c27dd3dc9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shogun-image {
  box-sizing: border-box;
}



.s-64969f69-693c-4a07-9618-ac5c27dd3dc9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-64969f69-693c-4a07-9618-ac5c27dd3dc9 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shogun-image-container {
      position: relative;
    }

    .s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-64969f69-693c-4a07-9618-ac5c27dd3dc9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-64969f69-693c-4a07-9618-ac5c27dd3dc9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-7f0dd1b1-eddd-4b29-b417-4ec76ee821c7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-7f0dd1b1-eddd-4b29-b417-4ec76ee821c7 {
  margin-left: 5%;
margin-right: 5%;
}
}
#s-7f0dd1b1-eddd-4b29-b417-4ec76ee821c7 .shogun-heading-component h3 {
  color: rgba(236, 93, 115, 0.66);
  font-weight:  normal ;
  font-family: "Caveat";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



@media (max-width: 767px){#s-abcf33b2-eae9-4ddd-b7a2-65bf30199f56 {
  margin-left: 5%;
margin-right: 5%;
}
}
#s-373832e6-8c6f-41bf-8eff-9c2f36865201 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 132, 122, 1);
border-style: solid;
border-radius: 31px;
background-color: rgba(0, 132, 122, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-373832e6-8c6f-41bf-8eff-9c2f36865201:hover {border-style: solid !important;
border-color: rgba(0, 132, 122, 1) !important;
background-color: rgba(236, 93, 115, 0.69) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-373832e6-8c6f-41bf-8eff-9c2f36865201:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-373832e6-8c6f-41bf-8eff-9c2f36865201-root {
    text-align: center;
  }


#s-373832e6-8c6f-41bf-8eff-9c2f36865201.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-373832e6-8c6f-41bf-8eff-9c2f36865201-root {
    text-align: center;
  }


#s-373832e6-8c6f-41bf-8eff-9c2f36865201.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-373832e6-8c6f-41bf-8eff-9c2f36865201-root {
    text-align: center;
  }


#s-373832e6-8c6f-41bf-8eff-9c2f36865201.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-373832e6-8c6f-41bf-8eff-9c2f36865201-root {
    text-align: center;
  }


#s-373832e6-8c6f-41bf-8eff-9c2f36865201.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-373832e6-8c6f-41bf-8eff-9c2f36865201-root {
    text-align: center;
  }


#s-373832e6-8c6f-41bf-8eff-9c2f36865201.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}
#s-bc27d0c0-4efa-441a-b3d1-ecb78449d123 {
  margin-top: 12px;
margin-bottom: 12px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-bc27d0c0-4efa-441a-b3d1-ecb78449d123 .shogun-heading-component h1 {
  
  font-weight:  normal ;
  font-family: "Caveat";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-c0b9d52a-7d1f-4f77-a037-9590f511fed1 {
  margin-top: 10px;
margin-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-c0b9d52a-7d1f-4f77-a037-9590f511fed1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c0b9d52a-7d1f-4f77-a037-9590f511fed1"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c0b9d52a-7d1f-4f77-a037-9590f511fed1"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c0b9d52a-7d1f-4f77-a037-9590f511fed1"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-10301d71-6cd4-4bf3-8609-884b59cabc30 {
  max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-10301d71-6cd4-4bf3-8609-884b59cabc30 {
  margin: 0 !important;
  overflow: visible;
}

#s-10301d71-6cd4-4bf3-8609-884b59cabc30-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-10301d71-6cd4-4bf3-8609-884b59cabc30 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-10301d71-6cd4-4bf3-8609-884b59cabc30 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-10301d71-6cd4-4bf3-8609-884b59cabc30 img.shogun-image {
  /* Add background color handling */
  
}

#s-10301d71-6cd4-4bf3-8609-884b59cabc30 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-10301d71-6cd4-4bf3-8609-884b59cabc30 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-10301d71-6cd4-4bf3-8609-884b59cabc30 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-10301d71-6cd4-4bf3-8609-884b59cabc30 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-10301d71-6cd4-4bf3-8609-884b59cabc30.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-10301d71-6cd4-4bf3-8609-884b59cabc30 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-10301d71-6cd4-4bf3-8609-884b59cabc30.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-10301d71-6cd4-4bf3-8609-884b59cabc30 .shogun-image-content {
  
    justify-content: center;
  
}

.s-10301d71-6cd4-4bf3-8609-884b59cabc30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-10301d71-6cd4-4bf3-8609-884b59cabc30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-10301d71-6cd4-4bf3-8609-884b59cabc30.shogun-image {
  box-sizing: border-box;
}



.s-10301d71-6cd4-4bf3-8609-884b59cabc30 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-10301d71-6cd4-4bf3-8609-884b59cabc30 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-10301d71-6cd4-4bf3-8609-884b59cabc30.shogun-image-container {
      position: relative;
    }

    .s-10301d71-6cd4-4bf3-8609-884b59cabc30.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-10301d71-6cd4-4bf3-8609-884b59cabc30.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-10301d71-6cd4-4bf3-8609-884b59cabc30 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-10301d71-6cd4-4bf3-8609-884b59cabc30 {
  margin: 0 !important;
  overflow: visible;
}

#s-10301d71-6cd4-4bf3-8609-884b59cabc30-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-10301d71-6cd4-4bf3-8609-884b59cabc30 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-10301d71-6cd4-4bf3-8609-884b59cabc30 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-10301d71-6cd4-4bf3-8609-884b59cabc30 img.shogun-image {
  /* Add background color handling */
  
}

#s-10301d71-6cd4-4bf3-8609-884b59cabc30 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-10301d71-6cd4-4bf3-8609-884b59cabc30 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-10301d71-6cd4-4bf3-8609-884b59cabc30 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-10301d71-6cd4-4bf3-8609-884b59cabc30 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-10301d71-6cd4-4bf3-8609-884b59cabc30.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-10301d71-6cd4-4bf3-8609-884b59cabc30 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-10301d71-6cd4-4bf3-8609-884b59cabc30.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-10301d71-6cd4-4bf3-8609-884b59cabc30 .shogun-image-content {
  
    justify-content: center;
  
}

.s-10301d71-6cd4-4bf3-8609-884b59cabc30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-10301d71-6cd4-4bf3-8609-884b59cabc30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-10301d71-6cd4-4bf3-8609-884b59cabc30.shogun-image {
  box-sizing: border-box;
}



.s-10301d71-6cd4-4bf3-8609-884b59cabc30 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-10301d71-6cd4-4bf3-8609-884b59cabc30 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-10301d71-6cd4-4bf3-8609-884b59cabc30.shogun-image-container {
      position: relative;
    }

    .s-10301d71-6cd4-4bf3-8609-884b59cabc30.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-10301d71-6cd4-4bf3-8609-884b59cabc30.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-10301d71-6cd4-4bf3-8609-884b59cabc30 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-10301d71-6cd4-4bf3-8609-884b59cabc30 {
  margin: 0 !important;
  overflow: visible;
}

#s-10301d71-6cd4-4bf3-8609-884b59cabc30-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-10301d71-6cd4-4bf3-8609-884b59cabc30 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-10301d71-6cd4-4bf3-8609-884b59cabc30 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-10301d71-6cd4-4bf3-8609-884b59cabc30 img.shogun-image {
  /* Add background color handling */
  
}

#s-10301d71-6cd4-4bf3-8609-884b59cabc30 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-10301d71-6cd4-4bf3-8609-884b59cabc30 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-10301d71-6cd4-4bf3-8609-884b59cabc30 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-10301d71-6cd4-4bf3-8609-884b59cabc30 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-10301d71-6cd4-4bf3-8609-884b59cabc30.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-10301d71-6cd4-4bf3-8609-884b59cabc30 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-10301d71-6cd4-4bf3-8609-884b59cabc30.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-10301d71-6cd4-4bf3-8609-884b59cabc30 .shogun-image-content {
  
    justify-content: center;
  
}

.s-10301d71-6cd4-4bf3-8609-884b59cabc30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-10301d71-6cd4-4bf3-8609-884b59cabc30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-10301d71-6cd4-4bf3-8609-884b59cabc30.shogun-image {
  box-sizing: border-box;
}



.s-10301d71-6cd4-4bf3-8609-884b59cabc30 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-10301d71-6cd4-4bf3-8609-884b59cabc30 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-10301d71-6cd4-4bf3-8609-884b59cabc30.shogun-image-container {
      position: relative;
    }

    .s-10301d71-6cd4-4bf3-8609-884b59cabc30.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-10301d71-6cd4-4bf3-8609-884b59cabc30.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-10301d71-6cd4-4bf3-8609-884b59cabc30 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-10301d71-6cd4-4bf3-8609-884b59cabc30 {
  margin: 0 !important;
  overflow: visible;
}

#s-10301d71-6cd4-4bf3-8609-884b59cabc30-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-10301d71-6cd4-4bf3-8609-884b59cabc30 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-10301d71-6cd4-4bf3-8609-884b59cabc30 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-10301d71-6cd4-4bf3-8609-884b59cabc30 img.shogun-image {
  /* Add background color handling */
  
}

#s-10301d71-6cd4-4bf3-8609-884b59cabc30 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-10301d71-6cd4-4bf3-8609-884b59cabc30 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-10301d71-6cd4-4bf3-8609-884b59cabc30 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-10301d71-6cd4-4bf3-8609-884b59cabc30 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-10301d71-6cd4-4bf3-8609-884b59cabc30.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-10301d71-6cd4-4bf3-8609-884b59cabc30 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-10301d71-6cd4-4bf3-8609-884b59cabc30.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-10301d71-6cd4-4bf3-8609-884b59cabc30 .shogun-image-content {
  
    justify-content: center;
  
}

.s-10301d71-6cd4-4bf3-8609-884b59cabc30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-10301d71-6cd4-4bf3-8609-884b59cabc30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-10301d71-6cd4-4bf3-8609-884b59cabc30.shogun-image {
  box-sizing: border-box;
}



.s-10301d71-6cd4-4bf3-8609-884b59cabc30 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-10301d71-6cd4-4bf3-8609-884b59cabc30 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-10301d71-6cd4-4bf3-8609-884b59cabc30.shogun-image-container {
      position: relative;
    }

    .s-10301d71-6cd4-4bf3-8609-884b59cabc30.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-10301d71-6cd4-4bf3-8609-884b59cabc30.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-10301d71-6cd4-4bf3-8609-884b59cabc30 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-10301d71-6cd4-4bf3-8609-884b59cabc30 {
  margin: 0 !important;
  overflow: visible;
}

#s-10301d71-6cd4-4bf3-8609-884b59cabc30-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-10301d71-6cd4-4bf3-8609-884b59cabc30 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-10301d71-6cd4-4bf3-8609-884b59cabc30 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-10301d71-6cd4-4bf3-8609-884b59cabc30 img.shogun-image {
  /* Add background color handling */
  
}

#s-10301d71-6cd4-4bf3-8609-884b59cabc30 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-10301d71-6cd4-4bf3-8609-884b59cabc30 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-10301d71-6cd4-4bf3-8609-884b59cabc30 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-10301d71-6cd4-4bf3-8609-884b59cabc30 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-10301d71-6cd4-4bf3-8609-884b59cabc30.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-10301d71-6cd4-4bf3-8609-884b59cabc30 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-10301d71-6cd4-4bf3-8609-884b59cabc30.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-10301d71-6cd4-4bf3-8609-884b59cabc30 .shogun-image-content {
  
    justify-content: center;
  
}

.s-10301d71-6cd4-4bf3-8609-884b59cabc30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-10301d71-6cd4-4bf3-8609-884b59cabc30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-10301d71-6cd4-4bf3-8609-884b59cabc30.shogun-image {
  box-sizing: border-box;
}



.s-10301d71-6cd4-4bf3-8609-884b59cabc30 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-10301d71-6cd4-4bf3-8609-884b59cabc30 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-10301d71-6cd4-4bf3-8609-884b59cabc30.shogun-image-container {
      position: relative;
    }

    .s-10301d71-6cd4-4bf3-8609-884b59cabc30.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-10301d71-6cd4-4bf3-8609-884b59cabc30.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-10301d71-6cd4-4bf3-8609-884b59cabc30 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-201c5d0f-f783-489a-9434-3678a6a8039b {
  margin-top: 25px;
margin-bottom: 15px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(31, 42, 68, 1);
border-style: solid;
border-radius: 30px;
background-color: rgba(31, 42, 68, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-201c5d0f-f783-489a-9434-3678a6a8039b:hover {background-color: rgba(236, 93, 115, 0.54) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-201c5d0f-f783-489a-9434-3678a6a8039b:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-201c5d0f-f783-489a-9434-3678a6a8039b-root {
    text-align: center;
  }


#s-201c5d0f-f783-489a-9434-3678a6a8039b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-201c5d0f-f783-489a-9434-3678a6a8039b-root {
    text-align: center;
  }


#s-201c5d0f-f783-489a-9434-3678a6a8039b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-201c5d0f-f783-489a-9434-3678a6a8039b-root {
    text-align: center;
  }


#s-201c5d0f-f783-489a-9434-3678a6a8039b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-201c5d0f-f783-489a-9434-3678a6a8039b-root {
    text-align: center;
  }


#s-201c5d0f-f783-489a-9434-3678a6a8039b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-201c5d0f-f783-489a-9434-3678a6a8039b-root {
    text-align: center;
  }


#s-201c5d0f-f783-489a-9434-3678a6a8039b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-03f7f459-18ac-47b7-9c5b-4613774c3197 {
  max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-03f7f459-18ac-47b7-9c5b-4613774c3197 {
  margin: 0 !important;
  overflow: visible;
}

#s-03f7f459-18ac-47b7-9c5b-4613774c3197-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-03f7f459-18ac-47b7-9c5b-4613774c3197 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-03f7f459-18ac-47b7-9c5b-4613774c3197 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-03f7f459-18ac-47b7-9c5b-4613774c3197 img.shogun-image {
  /* Add background color handling */
  
}

#s-03f7f459-18ac-47b7-9c5b-4613774c3197 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-03f7f459-18ac-47b7-9c5b-4613774c3197 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-03f7f459-18ac-47b7-9c5b-4613774c3197 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-03f7f459-18ac-47b7-9c5b-4613774c3197 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-03f7f459-18ac-47b7-9c5b-4613774c3197.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-03f7f459-18ac-47b7-9c5b-4613774c3197 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-03f7f459-18ac-47b7-9c5b-4613774c3197.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-03f7f459-18ac-47b7-9c5b-4613774c3197 .shogun-image-content {
  
    justify-content: center;
  
}

.s-03f7f459-18ac-47b7-9c5b-4613774c3197.shg-align-container {
  display: flex;
  justify-content: center
}

.s-03f7f459-18ac-47b7-9c5b-4613774c3197.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03f7f459-18ac-47b7-9c5b-4613774c3197.shogun-image {
  box-sizing: border-box;
}



.s-03f7f459-18ac-47b7-9c5b-4613774c3197 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-03f7f459-18ac-47b7-9c5b-4613774c3197 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-03f7f459-18ac-47b7-9c5b-4613774c3197.shogun-image-container {
      position: relative;
    }

    .s-03f7f459-18ac-47b7-9c5b-4613774c3197.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-03f7f459-18ac-47b7-9c5b-4613774c3197.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-03f7f459-18ac-47b7-9c5b-4613774c3197 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-03f7f459-18ac-47b7-9c5b-4613774c3197 {
  margin: 0 !important;
  overflow: visible;
}

#s-03f7f459-18ac-47b7-9c5b-4613774c3197-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-03f7f459-18ac-47b7-9c5b-4613774c3197 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-03f7f459-18ac-47b7-9c5b-4613774c3197 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-03f7f459-18ac-47b7-9c5b-4613774c3197 img.shogun-image {
  /* Add background color handling */
  
}

#s-03f7f459-18ac-47b7-9c5b-4613774c3197 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-03f7f459-18ac-47b7-9c5b-4613774c3197 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-03f7f459-18ac-47b7-9c5b-4613774c3197 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-03f7f459-18ac-47b7-9c5b-4613774c3197 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-03f7f459-18ac-47b7-9c5b-4613774c3197.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-03f7f459-18ac-47b7-9c5b-4613774c3197 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-03f7f459-18ac-47b7-9c5b-4613774c3197.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-03f7f459-18ac-47b7-9c5b-4613774c3197 .shogun-image-content {
  
    justify-content: center;
  
}

.s-03f7f459-18ac-47b7-9c5b-4613774c3197.shg-align-container {
  display: flex;
  justify-content: center
}

.s-03f7f459-18ac-47b7-9c5b-4613774c3197.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03f7f459-18ac-47b7-9c5b-4613774c3197.shogun-image {
  box-sizing: border-box;
}



.s-03f7f459-18ac-47b7-9c5b-4613774c3197 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-03f7f459-18ac-47b7-9c5b-4613774c3197 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-03f7f459-18ac-47b7-9c5b-4613774c3197.shogun-image-container {
      position: relative;
    }

    .s-03f7f459-18ac-47b7-9c5b-4613774c3197.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-03f7f459-18ac-47b7-9c5b-4613774c3197.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-03f7f459-18ac-47b7-9c5b-4613774c3197 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-03f7f459-18ac-47b7-9c5b-4613774c3197 {
  margin: 0 !important;
  overflow: visible;
}

#s-03f7f459-18ac-47b7-9c5b-4613774c3197-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-03f7f459-18ac-47b7-9c5b-4613774c3197 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-03f7f459-18ac-47b7-9c5b-4613774c3197 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-03f7f459-18ac-47b7-9c5b-4613774c3197 img.shogun-image {
  /* Add background color handling */
  
}

#s-03f7f459-18ac-47b7-9c5b-4613774c3197 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-03f7f459-18ac-47b7-9c5b-4613774c3197 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-03f7f459-18ac-47b7-9c5b-4613774c3197 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-03f7f459-18ac-47b7-9c5b-4613774c3197 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-03f7f459-18ac-47b7-9c5b-4613774c3197.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-03f7f459-18ac-47b7-9c5b-4613774c3197 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-03f7f459-18ac-47b7-9c5b-4613774c3197.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-03f7f459-18ac-47b7-9c5b-4613774c3197 .shogun-image-content {
  
    justify-content: center;
  
}

.s-03f7f459-18ac-47b7-9c5b-4613774c3197.shg-align-container {
  display: flex;
  justify-content: center
}

.s-03f7f459-18ac-47b7-9c5b-4613774c3197.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03f7f459-18ac-47b7-9c5b-4613774c3197.shogun-image {
  box-sizing: border-box;
}



.s-03f7f459-18ac-47b7-9c5b-4613774c3197 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-03f7f459-18ac-47b7-9c5b-4613774c3197 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-03f7f459-18ac-47b7-9c5b-4613774c3197.shogun-image-container {
      position: relative;
    }

    .s-03f7f459-18ac-47b7-9c5b-4613774c3197.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-03f7f459-18ac-47b7-9c5b-4613774c3197.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-03f7f459-18ac-47b7-9c5b-4613774c3197 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-03f7f459-18ac-47b7-9c5b-4613774c3197 {
  margin: 0 !important;
  overflow: visible;
}

#s-03f7f459-18ac-47b7-9c5b-4613774c3197-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-03f7f459-18ac-47b7-9c5b-4613774c3197 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-03f7f459-18ac-47b7-9c5b-4613774c3197 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-03f7f459-18ac-47b7-9c5b-4613774c3197 img.shogun-image {
  /* Add background color handling */
  
}

#s-03f7f459-18ac-47b7-9c5b-4613774c3197 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-03f7f459-18ac-47b7-9c5b-4613774c3197 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-03f7f459-18ac-47b7-9c5b-4613774c3197 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-03f7f459-18ac-47b7-9c5b-4613774c3197 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-03f7f459-18ac-47b7-9c5b-4613774c3197.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-03f7f459-18ac-47b7-9c5b-4613774c3197 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-03f7f459-18ac-47b7-9c5b-4613774c3197.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-03f7f459-18ac-47b7-9c5b-4613774c3197 .shogun-image-content {
  
    justify-content: center;
  
}

.s-03f7f459-18ac-47b7-9c5b-4613774c3197.shg-align-container {
  display: flex;
  justify-content: center
}

.s-03f7f459-18ac-47b7-9c5b-4613774c3197.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03f7f459-18ac-47b7-9c5b-4613774c3197.shogun-image {
  box-sizing: border-box;
}



.s-03f7f459-18ac-47b7-9c5b-4613774c3197 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-03f7f459-18ac-47b7-9c5b-4613774c3197 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-03f7f459-18ac-47b7-9c5b-4613774c3197.shogun-image-container {
      position: relative;
    }

    .s-03f7f459-18ac-47b7-9c5b-4613774c3197.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-03f7f459-18ac-47b7-9c5b-4613774c3197.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-03f7f459-18ac-47b7-9c5b-4613774c3197 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-03f7f459-18ac-47b7-9c5b-4613774c3197 {
  margin: 0 !important;
  overflow: visible;
}

#s-03f7f459-18ac-47b7-9c5b-4613774c3197-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-03f7f459-18ac-47b7-9c5b-4613774c3197 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-03f7f459-18ac-47b7-9c5b-4613774c3197 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-03f7f459-18ac-47b7-9c5b-4613774c3197 img.shogun-image {
  /* Add background color handling */
  
}

#s-03f7f459-18ac-47b7-9c5b-4613774c3197 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-03f7f459-18ac-47b7-9c5b-4613774c3197 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-03f7f459-18ac-47b7-9c5b-4613774c3197 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-03f7f459-18ac-47b7-9c5b-4613774c3197 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-03f7f459-18ac-47b7-9c5b-4613774c3197.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-03f7f459-18ac-47b7-9c5b-4613774c3197 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-03f7f459-18ac-47b7-9c5b-4613774c3197.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-03f7f459-18ac-47b7-9c5b-4613774c3197 .shogun-image-content {
  
    justify-content: center;
  
}

.s-03f7f459-18ac-47b7-9c5b-4613774c3197.shg-align-container {
  display: flex;
  justify-content: center
}

.s-03f7f459-18ac-47b7-9c5b-4613774c3197.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03f7f459-18ac-47b7-9c5b-4613774c3197.shogun-image {
  box-sizing: border-box;
}



.s-03f7f459-18ac-47b7-9c5b-4613774c3197 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-03f7f459-18ac-47b7-9c5b-4613774c3197 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-03f7f459-18ac-47b7-9c5b-4613774c3197.shogun-image-container {
      position: relative;
    }

    .s-03f7f459-18ac-47b7-9c5b-4613774c3197.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-03f7f459-18ac-47b7-9c5b-4613774c3197.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-03f7f459-18ac-47b7-9c5b-4613774c3197 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-96b8d6d9-def4-43b2-825d-670eba859f6f {
  margin-top: 25px;
margin-bottom: 15px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(31, 42, 68, 1);
border-style: solid;
border-radius: 30px;
background-color: rgba(31, 42, 68, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-96b8d6d9-def4-43b2-825d-670eba859f6f:hover {background-color: rgba(236, 93, 115, 0.54) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-96b8d6d9-def4-43b2-825d-670eba859f6f:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-96b8d6d9-def4-43b2-825d-670eba859f6f-root {
    text-align: center;
  }


#s-96b8d6d9-def4-43b2-825d-670eba859f6f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-96b8d6d9-def4-43b2-825d-670eba859f6f-root {
    text-align: center;
  }


#s-96b8d6d9-def4-43b2-825d-670eba859f6f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-96b8d6d9-def4-43b2-825d-670eba859f6f-root {
    text-align: center;
  }


#s-96b8d6d9-def4-43b2-825d-670eba859f6f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-96b8d6d9-def4-43b2-825d-670eba859f6f-root {
    text-align: center;
  }


#s-96b8d6d9-def4-43b2-825d-670eba859f6f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-96b8d6d9-def4-43b2-825d-670eba859f6f-root {
    text-align: center;
  }


#s-96b8d6d9-def4-43b2-825d-670eba859f6f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
/*
  $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;
}
