.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-83437162-c3c8-46a4-8bfb-75c10134aec8 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-83437162-c3c8-46a4-8bfb-75c10134aec8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-83437162-c3c8-46a4-8bfb-75c10134aec8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-73a0bba5-a6a4-43ad-b658-228c650a1339 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-73a0bba5-a6a4-43ad-b658-228c650a1339 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-73a0bba5-a6a4-43ad-b658-228c650a1339.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-content > * {
  flex-shrink: 0; /* Prevents children from shrinking maintaining natural size*/
  width: 100%;
}
#s-656a15ee-faed-41f9-ad46-5b45426d9a74 {
  margin-top: 10px;
margin-left: 1%;
margin-bottom: 10px;
margin-right: 1%;
max-width: 4737px;
text-align: center;
}
@media (min-width: 1200px){#s-656a15ee-faed-41f9-ad46-5b45426d9a74 {
  display: none;
}
#s-656a15ee-faed-41f9-ad46-5b45426d9a74, #wrap-s-656a15ee-faed-41f9-ad46-5b45426d9a74, #wrap-content-s-656a15ee-faed-41f9-ad46-5b45426d9a74 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-656a15ee-faed-41f9-ad46-5b45426d9a74 {
  display: none;
}
#s-656a15ee-faed-41f9-ad46-5b45426d9a74, #wrap-s-656a15ee-faed-41f9-ad46-5b45426d9a74, #wrap-content-s-656a15ee-faed-41f9-ad46-5b45426d9a74 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-656a15ee-faed-41f9-ad46-5b45426d9a74 {
  display: none;
}
#s-656a15ee-faed-41f9-ad46-5b45426d9a74, #wrap-s-656a15ee-faed-41f9-ad46-5b45426d9a74, #wrap-content-s-656a15ee-faed-41f9-ad46-5b45426d9a74 { display: none !important; }}@media (max-width: 767px){#s-656a15ee-faed-41f9-ad46-5b45426d9a74 {
  display: none;
}
#s-656a15ee-faed-41f9-ad46-5b45426d9a74, #wrap-s-656a15ee-faed-41f9-ad46-5b45426d9a74, #wrap-content-s-656a15ee-faed-41f9-ad46-5b45426d9a74 { display: none !important; }}
#s-656a15ee-faed-41f9-ad46-5b45426d9a74 {
  margin: 0 !important;
  overflow: visible;
}

#s-656a15ee-faed-41f9-ad46-5b45426d9a74-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-656a15ee-faed-41f9-ad46-5b45426d9a74 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 1%;
  margin-right: 1%;
  margin-top: 10px;
  margin-bottom: 10px;
}

.shg-image-content-margin-container-s-656a15ee-faed-41f9-ad46-5b45426d9a74 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-656a15ee-faed-41f9-ad46-5b45426d9a74 img.shogun-image {
  /* Add background color handling */
  
}

#s-656a15ee-faed-41f9-ad46-5b45426d9a74 img.shogun-image {
  /* Add padding handling */
  padding-left: 2%;
  padding-right: 2%;
  padding-top: 6px;
  padding-bottom: 6px;
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-656a15ee-faed-41f9-ad46-5b45426d9a74 .shogun-image-content {
  
    justify-content: center;
  
}

.s-656a15ee-faed-41f9-ad46-5b45426d9a74.shg-align-container {
  display: flex;
  justify-content: center
}

.s-656a15ee-faed-41f9-ad46-5b45426d9a74.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-656a15ee-faed-41f9-ad46-5b45426d9a74.shogun-image {
  box-sizing: border-box;
}



.s-656a15ee-faed-41f9-ad46-5b45426d9a74 img.shogun-image {
  
}


@media (min-width: 1200px){#s-656a15ee-faed-41f9-ad46-5b45426d9a74 {
  margin: 0 !important;
  overflow: visible;
}

#s-656a15ee-faed-41f9-ad46-5b45426d9a74-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-656a15ee-faed-41f9-ad46-5b45426d9a74 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-656a15ee-faed-41f9-ad46-5b45426d9a74 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-656a15ee-faed-41f9-ad46-5b45426d9a74 img.shogun-image {
  /* Add background color handling */
  
}

#s-656a15ee-faed-41f9-ad46-5b45426d9a74 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-656a15ee-faed-41f9-ad46-5b45426d9a74 .shogun-image-content {
  
    justify-content: center;
  
}

.s-656a15ee-faed-41f9-ad46-5b45426d9a74.shg-align-container {
  display: flex;
  justify-content: center
}

.s-656a15ee-faed-41f9-ad46-5b45426d9a74.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-656a15ee-faed-41f9-ad46-5b45426d9a74.shogun-image {
  box-sizing: border-box;
}



.s-656a15ee-faed-41f9-ad46-5b45426d9a74 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-656a15ee-faed-41f9-ad46-5b45426d9a74 {
  margin: 0 !important;
  overflow: visible;
}

#s-656a15ee-faed-41f9-ad46-5b45426d9a74-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-656a15ee-faed-41f9-ad46-5b45426d9a74 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-656a15ee-faed-41f9-ad46-5b45426d9a74 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-656a15ee-faed-41f9-ad46-5b45426d9a74 img.shogun-image {
  /* Add background color handling */
  
}

#s-656a15ee-faed-41f9-ad46-5b45426d9a74 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-656a15ee-faed-41f9-ad46-5b45426d9a74 .shogun-image-content {
  
    justify-content: center;
  
}

.s-656a15ee-faed-41f9-ad46-5b45426d9a74.shg-align-container {
  display: flex;
  justify-content: center
}

.s-656a15ee-faed-41f9-ad46-5b45426d9a74.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-656a15ee-faed-41f9-ad46-5b45426d9a74.shogun-image {
  box-sizing: border-box;
}



.s-656a15ee-faed-41f9-ad46-5b45426d9a74 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-656a15ee-faed-41f9-ad46-5b45426d9a74 {
  margin: 0 !important;
  overflow: visible;
}

#s-656a15ee-faed-41f9-ad46-5b45426d9a74-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-656a15ee-faed-41f9-ad46-5b45426d9a74 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-656a15ee-faed-41f9-ad46-5b45426d9a74 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-656a15ee-faed-41f9-ad46-5b45426d9a74 img.shogun-image {
  /* Add background color handling */
  
}

#s-656a15ee-faed-41f9-ad46-5b45426d9a74 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-656a15ee-faed-41f9-ad46-5b45426d9a74 .shogun-image-content {
  
    justify-content: center;
  
}

.s-656a15ee-faed-41f9-ad46-5b45426d9a74.shg-align-container {
  display: flex;
  justify-content: center
}

.s-656a15ee-faed-41f9-ad46-5b45426d9a74.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-656a15ee-faed-41f9-ad46-5b45426d9a74.shogun-image {
  box-sizing: border-box;
}



.s-656a15ee-faed-41f9-ad46-5b45426d9a74 img.shogun-image {
  
}


}@media (max-width: 767px){#s-656a15ee-faed-41f9-ad46-5b45426d9a74 {
  margin: 0 !important;
  overflow: visible;
}

#s-656a15ee-faed-41f9-ad46-5b45426d9a74-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-656a15ee-faed-41f9-ad46-5b45426d9a74 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-656a15ee-faed-41f9-ad46-5b45426d9a74 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-656a15ee-faed-41f9-ad46-5b45426d9a74 img.shogun-image {
  /* Add background color handling */
  
}

#s-656a15ee-faed-41f9-ad46-5b45426d9a74 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-656a15ee-faed-41f9-ad46-5b45426d9a74 .shogun-image-content {
  
    justify-content: center;
  
}

.s-656a15ee-faed-41f9-ad46-5b45426d9a74.shg-align-container {
  display: flex;
  justify-content: center
}

.s-656a15ee-faed-41f9-ad46-5b45426d9a74.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-656a15ee-faed-41f9-ad46-5b45426d9a74.shogun-image {
  box-sizing: border-box;
}



.s-656a15ee-faed-41f9-ad46-5b45426d9a74 img.shogun-image {
  
}


}
#s-5f640d28-daaf-49e9-9b94-e7d5734ba482 {
  margin-left: 5%;
margin-right: 5%;
min-height: 50px;
}








#s-5f640d28-daaf-49e9-9b94-e7d5734ba482 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5f640d28-daaf-49e9-9b94-e7d5734ba482.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shogun-heading-component h1,
.shogun-heading-component h2,
.shogun-heading-component h3,
.shogun-heading-component h4,
.shogun-heading-component h5,
.shogun-heading-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  
  
  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-776e6c57-d3e5-45f2-bfb1-b03a72072532 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(219, 223, 230, 0.71);
}

#s-776e6c57-d3e5-45f2-bfb1-b03a72072532 .shogun-heading-component h1 {
  color: rgba(50, 51, 72, 1);
  font-weight:  900 ;
  font-family: "Maven Pro";
  font-style:  normal ;
  font-size: 33px;
  
  
  
}



#s-4a6b4229-8cf1-4eab-816b-980bec41e5d1 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-4a6b4229-8cf1-4eab-816b-980bec41e5d1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4a6b4229-8cf1-4eab-816b-980bec41e5d1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

#s-a3a993e6-ec83-4bae-88a7-c49317baffdb {
  margin-left: auto;
margin-right: auto;
padding-left: 15%;
padding-right: 15%;
}

@media (min-width: 0px) {
[id="s-a3a993e6-ec83-4bae-88a7-c49317baffdb"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-a3a993e6-ec83-4bae-88a7-c49317baffdb"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-a3a993e6-ec83-4bae-88a7-c49317baffdb"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-a3a993e6-ec83-4bae-88a7-c49317baffdb"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-content-v3 > * {
  flex-shrink: 0; /* Prevents children from shrinking maintaining natural size*/
  width: 100%;
}
#s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd {
  margin-left: 9%;
margin-right: 9%;
max-width: 500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 9%;
  margin-right: 9%;
  
  
}

#s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  padding-left: 0%;
  padding-right: 0%;
  
  
}


.shg-image-content-margin-container-s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd img.shogun-image {
  width: 100%;
  
  
  max-width: 500px;

      
    max-width: 500px;

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd .shg-inner-inline-image {   
      aspect-ratio: 1/1;
    }

    #s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      
    }
  }

  .s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;

  }


.s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




  @supports not (aspect-ratio: 1/1) {
    .s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd.shogun-image-container {
      position: relative;
    }

    .s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      
      
      max-width: 500px;
    }
  }

@media (min-width: 1200px){#s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd img.shogun-image {
  width: 100%;
  
  
  max-width: 500px;

      
    max-width: 500px;

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




.s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd img.shogun-image {
  width: 100%;
  
  
  max-width: 500px;

      
    max-width: 500px;

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




.s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd img.shogun-image {
  width: 100%;
  
  
  max-width: 500px;

      
    max-width: 500px;

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




.s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd img.shogun-image {
  width: 100%;
  
  
  max-width: 500px;

      
    max-width: 500px;

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




.s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dceac5c6-5e9f-40b1-abfa-9a00217ed1fd.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-c7390ec6-73fb-4895-b520-2876c0a5c315 {
  margin-left: 9%;
margin-right: 9%;
max-width: 500px;
text-align: center;
}

#s-c7390ec6-73fb-4895-b520-2876c0a5c315 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c7390ec6-73fb-4895-b520-2876c0a5c315-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-c7390ec6-73fb-4895-b520-2876c0a5c315 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 9%;
  margin-right: 9%;
  
  
}

#s-c7390ec6-73fb-4895-b520-2876c0a5c315 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-c7390ec6-73fb-4895-b520-2876c0a5c315 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-c7390ec6-73fb-4895-b520-2876c0a5c315 img.shogun-image {
  width: 100%;
  
  
  max-width: 500px;

      
    max-width: 500px;

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




.s-c7390ec6-73fb-4895-b520-2876c0a5c315 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c7390ec6-73fb-4895-b520-2876c0a5c315.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c7390ec6-73fb-4895-b520-2876c0a5c315.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7390ec6-73fb-4895-b520-2876c0a5c315.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-c7390ec6-73fb-4895-b520-2876c0a5c315 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c7390ec6-73fb-4895-b520-2876c0a5c315-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-c7390ec6-73fb-4895-b520-2876c0a5c315 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-c7390ec6-73fb-4895-b520-2876c0a5c315 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-c7390ec6-73fb-4895-b520-2876c0a5c315 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-c7390ec6-73fb-4895-b520-2876c0a5c315 img.shogun-image {
  width: 100%;
  
  
  max-width: 500px;

      
    max-width: 500px;

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




.s-c7390ec6-73fb-4895-b520-2876c0a5c315 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c7390ec6-73fb-4895-b520-2876c0a5c315.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c7390ec6-73fb-4895-b520-2876c0a5c315.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7390ec6-73fb-4895-b520-2876c0a5c315.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-c7390ec6-73fb-4895-b520-2876c0a5c315 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c7390ec6-73fb-4895-b520-2876c0a5c315-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-c7390ec6-73fb-4895-b520-2876c0a5c315 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-c7390ec6-73fb-4895-b520-2876c0a5c315 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-c7390ec6-73fb-4895-b520-2876c0a5c315 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-c7390ec6-73fb-4895-b520-2876c0a5c315 img.shogun-image {
  width: 100%;
  
  
  max-width: 500px;

      
    max-width: 500px;

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




.s-c7390ec6-73fb-4895-b520-2876c0a5c315 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c7390ec6-73fb-4895-b520-2876c0a5c315.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c7390ec6-73fb-4895-b520-2876c0a5c315.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7390ec6-73fb-4895-b520-2876c0a5c315.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-c7390ec6-73fb-4895-b520-2876c0a5c315 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c7390ec6-73fb-4895-b520-2876c0a5c315-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-c7390ec6-73fb-4895-b520-2876c0a5c315 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-c7390ec6-73fb-4895-b520-2876c0a5c315 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-c7390ec6-73fb-4895-b520-2876c0a5c315 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-c7390ec6-73fb-4895-b520-2876c0a5c315 img.shogun-image {
  width: 100%;
  
  
  max-width: 500px;

      
    max-width: 500px;

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




.s-c7390ec6-73fb-4895-b520-2876c0a5c315 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c7390ec6-73fb-4895-b520-2876c0a5c315.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c7390ec6-73fb-4895-b520-2876c0a5c315.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7390ec6-73fb-4895-b520-2876c0a5c315.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-c7390ec6-73fb-4895-b520-2876c0a5c315 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c7390ec6-73fb-4895-b520-2876c0a5c315-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-c7390ec6-73fb-4895-b520-2876c0a5c315 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-c7390ec6-73fb-4895-b520-2876c0a5c315 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-c7390ec6-73fb-4895-b520-2876c0a5c315 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-c7390ec6-73fb-4895-b520-2876c0a5c315 img.shogun-image {
  width: 100%;
  
  
  max-width: 500px;

      
    max-width: 500px;

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




.s-c7390ec6-73fb-4895-b520-2876c0a5c315 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c7390ec6-73fb-4895-b520-2876c0a5c315.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c7390ec6-73fb-4895-b520-2876c0a5c315.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7390ec6-73fb-4895-b520-2876c0a5c315.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-09952d88-d7cf-4efd-b21d-0e22ec87dff1 {
  margin-left: 9%;
margin-right: 9%;
max-width: 500px;
text-align: center;
}

#s-09952d88-d7cf-4efd-b21d-0e22ec87dff1 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-09952d88-d7cf-4efd-b21d-0e22ec87dff1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-09952d88-d7cf-4efd-b21d-0e22ec87dff1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 9%;
  margin-right: 9%;
  
  
}

#s-09952d88-d7cf-4efd-b21d-0e22ec87dff1 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-09952d88-d7cf-4efd-b21d-0e22ec87dff1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-09952d88-d7cf-4efd-b21d-0e22ec87dff1 img.shogun-image {
  width: 100%;
  
  
  max-width: 500px;

      
    max-width: 500px;

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




.s-09952d88-d7cf-4efd-b21d-0e22ec87dff1 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-09952d88-d7cf-4efd-b21d-0e22ec87dff1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-09952d88-d7cf-4efd-b21d-0e22ec87dff1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-09952d88-d7cf-4efd-b21d-0e22ec87dff1.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-09952d88-d7cf-4efd-b21d-0e22ec87dff1 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-09952d88-d7cf-4efd-b21d-0e22ec87dff1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-09952d88-d7cf-4efd-b21d-0e22ec87dff1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-09952d88-d7cf-4efd-b21d-0e22ec87dff1 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-09952d88-d7cf-4efd-b21d-0e22ec87dff1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-09952d88-d7cf-4efd-b21d-0e22ec87dff1 img.shogun-image {
  width: 100%;
  
  
  max-width: 500px;

      
    max-width: 500px;

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




.s-09952d88-d7cf-4efd-b21d-0e22ec87dff1 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-09952d88-d7cf-4efd-b21d-0e22ec87dff1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-09952d88-d7cf-4efd-b21d-0e22ec87dff1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-09952d88-d7cf-4efd-b21d-0e22ec87dff1.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-09952d88-d7cf-4efd-b21d-0e22ec87dff1 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-09952d88-d7cf-4efd-b21d-0e22ec87dff1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-09952d88-d7cf-4efd-b21d-0e22ec87dff1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-09952d88-d7cf-4efd-b21d-0e22ec87dff1 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-09952d88-d7cf-4efd-b21d-0e22ec87dff1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-09952d88-d7cf-4efd-b21d-0e22ec87dff1 img.shogun-image {
  width: 100%;
  
  
  max-width: 500px;

      
    max-width: 500px;

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




.s-09952d88-d7cf-4efd-b21d-0e22ec87dff1 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-09952d88-d7cf-4efd-b21d-0e22ec87dff1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-09952d88-d7cf-4efd-b21d-0e22ec87dff1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-09952d88-d7cf-4efd-b21d-0e22ec87dff1.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-09952d88-d7cf-4efd-b21d-0e22ec87dff1 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-09952d88-d7cf-4efd-b21d-0e22ec87dff1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-09952d88-d7cf-4efd-b21d-0e22ec87dff1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-09952d88-d7cf-4efd-b21d-0e22ec87dff1 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-09952d88-d7cf-4efd-b21d-0e22ec87dff1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-09952d88-d7cf-4efd-b21d-0e22ec87dff1 img.shogun-image {
  width: 100%;
  
  
  max-width: 500px;

      
    max-width: 500px;

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




.s-09952d88-d7cf-4efd-b21d-0e22ec87dff1 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-09952d88-d7cf-4efd-b21d-0e22ec87dff1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-09952d88-d7cf-4efd-b21d-0e22ec87dff1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-09952d88-d7cf-4efd-b21d-0e22ec87dff1.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-09952d88-d7cf-4efd-b21d-0e22ec87dff1 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-09952d88-d7cf-4efd-b21d-0e22ec87dff1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-09952d88-d7cf-4efd-b21d-0e22ec87dff1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-09952d88-d7cf-4efd-b21d-0e22ec87dff1 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-09952d88-d7cf-4efd-b21d-0e22ec87dff1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-09952d88-d7cf-4efd-b21d-0e22ec87dff1 img.shogun-image {
  width: 100%;
  
  
  max-width: 500px;

      
    max-width: 500px;

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




.s-09952d88-d7cf-4efd-b21d-0e22ec87dff1 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-09952d88-d7cf-4efd-b21d-0e22ec87dff1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-09952d88-d7cf-4efd-b21d-0e22ec87dff1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-09952d88-d7cf-4efd-b21d-0e22ec87dff1.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba {
  margin-left: 9%;
margin-right: 9%;
max-width: 500px;
text-align: center;
}

#s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 9%;
  margin-right: 9%;
  
  
}

#s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba img.shogun-image {
  width: 100%;
  
  
  max-width: 500px;

      
    max-width: 500px;

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




.s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba img.shogun-image {
  width: 100%;
  
  
  max-width: 500px;

      
    max-width: 500px;

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




.s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba img.shogun-image {
  width: 100%;
  
  
  max-width: 500px;

      
    max-width: 500px;

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




.s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba img.shogun-image {
  width: 100%;
  
  
  max-width: 500px;

      
    max-width: 500px;

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




.s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba img.shogun-image {
  width: 100%;
  
  
  max-width: 500px;

      
    max-width: 500px;

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




.s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d2ee806-1a6b-48a8-a70f-811e4338b3ba.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-366758d0-5fe5-45e6-9c27-3a306392f879 {
  margin-left: 9%;
margin-right: 9%;
max-width: 500px;
text-align: center;
}

#s-366758d0-5fe5-45e6-9c27-3a306392f879 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-366758d0-5fe5-45e6-9c27-3a306392f879-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-366758d0-5fe5-45e6-9c27-3a306392f879 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 9%;
  margin-right: 9%;
  
  
}

#s-366758d0-5fe5-45e6-9c27-3a306392f879 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-366758d0-5fe5-45e6-9c27-3a306392f879 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-366758d0-5fe5-45e6-9c27-3a306392f879 img.shogun-image {
  width: 100%;
  
  
  max-width: 500px;

      
    max-width: 500px;

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




.s-366758d0-5fe5-45e6-9c27-3a306392f879 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-366758d0-5fe5-45e6-9c27-3a306392f879.shg-align-container {
  display: flex;
  justify-content: center
}

.s-366758d0-5fe5-45e6-9c27-3a306392f879.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-366758d0-5fe5-45e6-9c27-3a306392f879.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-366758d0-5fe5-45e6-9c27-3a306392f879 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-366758d0-5fe5-45e6-9c27-3a306392f879-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-366758d0-5fe5-45e6-9c27-3a306392f879 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-366758d0-5fe5-45e6-9c27-3a306392f879 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-366758d0-5fe5-45e6-9c27-3a306392f879 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-366758d0-5fe5-45e6-9c27-3a306392f879 img.shogun-image {
  width: 100%;
  
  
  max-width: 500px;

      
    max-width: 500px;

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




.s-366758d0-5fe5-45e6-9c27-3a306392f879 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-366758d0-5fe5-45e6-9c27-3a306392f879.shg-align-container {
  display: flex;
  justify-content: center
}

.s-366758d0-5fe5-45e6-9c27-3a306392f879.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-366758d0-5fe5-45e6-9c27-3a306392f879.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-366758d0-5fe5-45e6-9c27-3a306392f879 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-366758d0-5fe5-45e6-9c27-3a306392f879-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-366758d0-5fe5-45e6-9c27-3a306392f879 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-366758d0-5fe5-45e6-9c27-3a306392f879 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-366758d0-5fe5-45e6-9c27-3a306392f879 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-366758d0-5fe5-45e6-9c27-3a306392f879 img.shogun-image {
  width: 100%;
  
  
  max-width: 500px;

      
    max-width: 500px;

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




.s-366758d0-5fe5-45e6-9c27-3a306392f879 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-366758d0-5fe5-45e6-9c27-3a306392f879.shg-align-container {
  display: flex;
  justify-content: center
}

.s-366758d0-5fe5-45e6-9c27-3a306392f879.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-366758d0-5fe5-45e6-9c27-3a306392f879.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-366758d0-5fe5-45e6-9c27-3a306392f879 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-366758d0-5fe5-45e6-9c27-3a306392f879-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-366758d0-5fe5-45e6-9c27-3a306392f879 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-366758d0-5fe5-45e6-9c27-3a306392f879 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-366758d0-5fe5-45e6-9c27-3a306392f879 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-366758d0-5fe5-45e6-9c27-3a306392f879 img.shogun-image {
  width: 100%;
  
  
  max-width: 500px;

      
    max-width: 500px;

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




.s-366758d0-5fe5-45e6-9c27-3a306392f879 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-366758d0-5fe5-45e6-9c27-3a306392f879.shg-align-container {
  display: flex;
  justify-content: center
}

.s-366758d0-5fe5-45e6-9c27-3a306392f879.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-366758d0-5fe5-45e6-9c27-3a306392f879.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-366758d0-5fe5-45e6-9c27-3a306392f879 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-366758d0-5fe5-45e6-9c27-3a306392f879-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-366758d0-5fe5-45e6-9c27-3a306392f879 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-366758d0-5fe5-45e6-9c27-3a306392f879 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-366758d0-5fe5-45e6-9c27-3a306392f879 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-366758d0-5fe5-45e6-9c27-3a306392f879 img.shogun-image {
  width: 100%;
  
  
  max-width: 500px;

      
    max-width: 500px;

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




.s-366758d0-5fe5-45e6-9c27-3a306392f879 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-366758d0-5fe5-45e6-9c27-3a306392f879.shg-align-container {
  display: flex;
  justify-content: center
}

.s-366758d0-5fe5-45e6-9c27-3a306392f879.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-366758d0-5fe5-45e6-9c27-3a306392f879.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2 {
  margin-left: 9%;
margin-right: 9%;
max-width: 500px;
text-align: center;
}

#s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 9%;
  margin-right: 9%;
  
  
}

#s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2 img.shogun-image {
  width: 100%;
  
  
  max-width: 500px;

      
    max-width: 500px;

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




.s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2 img.shogun-image {
  width: 100%;
  
  
  max-width: 500px;

      
    max-width: 500px;

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




.s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2 img.shogun-image {
  width: 100%;
  
  
  max-width: 500px;

      
    max-width: 500px;

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




.s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2 img.shogun-image {
  width: 100%;
  
  
  max-width: 500px;

      
    max-width: 500px;

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




.s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2 img.shogun-image {
  width: 100%;
  
  
  max-width: 500px;

      
    max-width: 500px;

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




.s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-38c293bb-f455-4c4b-8900-3ca4e38b2ed2.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-3b0f0ca3-5b7b-4be1-8c3c-f6690ed21d5c {
  margin-top: 5px;
margin-left: auto;
margin-right: auto;
padding-left: 4%;
padding-right: 4%;
}








#s-3b0f0ca3-5b7b-4be1-8c3c-f6690ed21d5c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3b0f0ca3-5b7b-4be1-8c3c-f6690ed21d5c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7bb2e524-ef4c-48bb-8bbc-11ec848613da {
  margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-left: 1%;
padding-right: 1%;
}
@media (min-width: 1200px){#s-7bb2e524-ef4c-48bb-8bbc-11ec848613da {
  display: none;
}
#s-7bb2e524-ef4c-48bb-8bbc-11ec848613da, #wrap-s-7bb2e524-ef4c-48bb-8bbc-11ec848613da, #wrap-content-s-7bb2e524-ef4c-48bb-8bbc-11ec848613da { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7bb2e524-ef4c-48bb-8bbc-11ec848613da {
  display: none;
}
#s-7bb2e524-ef4c-48bb-8bbc-11ec848613da, #wrap-s-7bb2e524-ef4c-48bb-8bbc-11ec848613da, #wrap-content-s-7bb2e524-ef4c-48bb-8bbc-11ec848613da { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7bb2e524-ef4c-48bb-8bbc-11ec848613da {
  display: none;
}
#s-7bb2e524-ef4c-48bb-8bbc-11ec848613da, #wrap-s-7bb2e524-ef4c-48bb-8bbc-11ec848613da, #wrap-content-s-7bb2e524-ef4c-48bb-8bbc-11ec848613da { display: none !important; }}@media (max-width: 767px){#s-7bb2e524-ef4c-48bb-8bbc-11ec848613da {
  display: none;
}
#s-7bb2e524-ef4c-48bb-8bbc-11ec848613da, #wrap-s-7bb2e524-ef4c-48bb-8bbc-11ec848613da, #wrap-content-s-7bb2e524-ef4c-48bb-8bbc-11ec848613da { display: none !important; }}
@media (min-width: 0px) {
[id="s-7bb2e524-ef4c-48bb-8bbc-11ec848613da"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7bb2e524-ef4c-48bb-8bbc-11ec848613da"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-7bb2e524-ef4c-48bb-8bbc-11ec848613da"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-7bb2e524-ef4c-48bb-8bbc-11ec848613da"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 {
  margin-top: 0px;
margin-left: 5%;
margin-bottom: 0px;
margin-right: 5%;
max-width: 2497px;
aspect-ratio: 2497/2080;
text-align: center;
}

#s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 {
  margin: 0 !important;
  overflow: visible;
}

#s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3-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-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 0px;
  margin-bottom: 0px;
}

.shg-image-content-margin-container-s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 img.shogun-image {
  /* Add background color handling */
  
}

#s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 img.shogun-image {
  /* Add padding handling */
  padding-left: 2%;
  padding-right: 2%;
  padding-top: 2px;
  padding-bottom: 2px;
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 .shg-image-content-wrapper {
      aspect-ratio: 2497/2080;
      min-width: 100%;
      height: auto;
    }

    #s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 .shogun-image-link {
      aspect-ratio: 2497/2080;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2497px;
  }



  img.s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shogun-image {
    
    
    
    max-height: 2497px;
  }


.s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shogun-image {
  box-sizing: border-box;
}



.s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 {
      --shg-aspect-ratio: calc(2497/2080); 
    }

    .s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shogun-image-container {
      position: relative;
    }

    .s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2497px;
    }
  }

@media (min-width: 1200px){#s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 {
  margin: 0 !important;
  overflow: visible;
}

#s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3-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-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 img.shogun-image {
  /* Add background color handling */
  
}

#s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 .shg-image-content-wrapper {
      aspect-ratio: 2497/2080;
      min-width: 100%;
      height: auto;
    }

    #s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 .shogun-image-link {
      aspect-ratio: 2497/2080;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2497px;
  }



  img.s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shogun-image {
    
    
    
    max-height: 2497px;
  }


.s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shogun-image {
  box-sizing: border-box;
}



.s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 {
      --shg-aspect-ratio: calc(2497/2080); 
    }

    .s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shogun-image-container {
      position: relative;
    }

    .s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2497px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 {
  margin: 0 !important;
  overflow: visible;
}

#s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3-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-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 img.shogun-image {
  /* Add background color handling */
  
}

#s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 .shg-image-content-wrapper {
      aspect-ratio: 2497/2080;
      min-width: 100%;
      height: auto;
    }

    #s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 .shogun-image-link {
      aspect-ratio: 2497/2080;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2497px;
  }



  img.s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shogun-image {
    
    
    
    max-height: 2497px;
  }


.s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shogun-image {
  box-sizing: border-box;
}



.s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 {
      --shg-aspect-ratio: calc(2497/2080); 
    }

    .s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shogun-image-container {
      position: relative;
    }

    .s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2497px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 {
  margin: 0 !important;
  overflow: visible;
}

#s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3-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-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 img.shogun-image {
  /* Add background color handling */
  
}

#s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 .shg-image-content-wrapper {
      aspect-ratio: 2497/2080;
      min-width: 100%;
      height: auto;
    }

    #s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 .shogun-image-link {
      aspect-ratio: 2497/2080;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2497px;
  }



  img.s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shogun-image {
    
    
    
    max-height: 2497px;
  }


.s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shogun-image {
  box-sizing: border-box;
}



.s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 {
      --shg-aspect-ratio: calc(2497/2080); 
    }

    .s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shogun-image-container {
      position: relative;
    }

    .s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2497px;
    }
  }

}@media (max-width: 767px){#s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 {
  margin: 0 !important;
  overflow: visible;
}

#s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3-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-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 img.shogun-image {
  /* Add background color handling */
  
}

#s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 .shg-image-content-wrapper {
      aspect-ratio: 2497/2080;
      min-width: 100%;
      height: auto;
    }

    #s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 .shogun-image-link {
      aspect-ratio: 2497/2080;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2497px;
  }



  img.s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shogun-image {
    
    
    
    max-height: 2497px;
  }


.s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shogun-image {
  box-sizing: border-box;
}



.s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 {
      --shg-aspect-ratio: calc(2497/2080); 
    }

    .s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shogun-image-container {
      position: relative;
    }

    .s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b7d55140-aae1-4494-bf87-5e7a1c04c9d3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2497px;
    }
  }

}
#s-b77a4839-7f51-4512-9246-ec09d3974966 {
  margin-top: 0px;
margin-left: 5%;
margin-bottom: 0px;
margin-right: 5%;
max-width: 2497px;
aspect-ratio: 2497/2076;
text-align: center;
}

#s-b77a4839-7f51-4512-9246-ec09d3974966 {
  margin: 0 !important;
  overflow: visible;
}

#s-b77a4839-7f51-4512-9246-ec09d3974966-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-b77a4839-7f51-4512-9246-ec09d3974966 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 0px;
  margin-bottom: 0px;
}

.shg-image-content-margin-container-s-b77a4839-7f51-4512-9246-ec09d3974966 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b77a4839-7f51-4512-9246-ec09d3974966 img.shogun-image {
  /* Add background color handling */
  
}

#s-b77a4839-7f51-4512-9246-ec09d3974966 img.shogun-image {
  /* Add padding handling */
  padding-left: 2%;
  padding-right: 2%;
  padding-top: 2px;
  padding-bottom: 2px;
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b77a4839-7f51-4512-9246-ec09d3974966 .shg-image-content-wrapper {
      aspect-ratio: 2497/2076;
      min-width: 100%;
      height: auto;
    }

    #s-b77a4839-7f51-4512-9246-ec09d3974966 .shogun-image-link {
      aspect-ratio: 2497/2076;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b77a4839-7f51-4512-9246-ec09d3974966 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b77a4839-7f51-4512-9246-ec09d3974966.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b77a4839-7f51-4512-9246-ec09d3974966 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2497px;
  }



  img.s-b77a4839-7f51-4512-9246-ec09d3974966.shogun-image {
    
    
    
    max-height: 2497px;
  }


.s-b77a4839-7f51-4512-9246-ec09d3974966 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b77a4839-7f51-4512-9246-ec09d3974966.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b77a4839-7f51-4512-9246-ec09d3974966.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b77a4839-7f51-4512-9246-ec09d3974966.shogun-image {
  box-sizing: border-box;
}



.s-b77a4839-7f51-4512-9246-ec09d3974966 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b77a4839-7f51-4512-9246-ec09d3974966 {
      --shg-aspect-ratio: calc(2497/2076); 
    }

    .s-b77a4839-7f51-4512-9246-ec09d3974966.shogun-image-container {
      position: relative;
    }

    .s-b77a4839-7f51-4512-9246-ec09d3974966.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b77a4839-7f51-4512-9246-ec09d3974966.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b77a4839-7f51-4512-9246-ec09d3974966 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2497px;
    }
  }

@media (min-width: 1200px){#s-b77a4839-7f51-4512-9246-ec09d3974966 {
  margin: 0 !important;
  overflow: visible;
}

#s-b77a4839-7f51-4512-9246-ec09d3974966-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-b77a4839-7f51-4512-9246-ec09d3974966 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b77a4839-7f51-4512-9246-ec09d3974966 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b77a4839-7f51-4512-9246-ec09d3974966 img.shogun-image {
  /* Add background color handling */
  
}

#s-b77a4839-7f51-4512-9246-ec09d3974966 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b77a4839-7f51-4512-9246-ec09d3974966 .shg-image-content-wrapper {
      aspect-ratio: 2497/2076;
      min-width: 100%;
      height: auto;
    }

    #s-b77a4839-7f51-4512-9246-ec09d3974966 .shogun-image-link {
      aspect-ratio: 2497/2076;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b77a4839-7f51-4512-9246-ec09d3974966 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b77a4839-7f51-4512-9246-ec09d3974966.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b77a4839-7f51-4512-9246-ec09d3974966 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2497px;
  }



  img.s-b77a4839-7f51-4512-9246-ec09d3974966.shogun-image {
    
    
    
    max-height: 2497px;
  }


.s-b77a4839-7f51-4512-9246-ec09d3974966 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b77a4839-7f51-4512-9246-ec09d3974966.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b77a4839-7f51-4512-9246-ec09d3974966.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b77a4839-7f51-4512-9246-ec09d3974966.shogun-image {
  box-sizing: border-box;
}



.s-b77a4839-7f51-4512-9246-ec09d3974966 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b77a4839-7f51-4512-9246-ec09d3974966 {
      --shg-aspect-ratio: calc(2497/2076); 
    }

    .s-b77a4839-7f51-4512-9246-ec09d3974966.shogun-image-container {
      position: relative;
    }

    .s-b77a4839-7f51-4512-9246-ec09d3974966.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b77a4839-7f51-4512-9246-ec09d3974966.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b77a4839-7f51-4512-9246-ec09d3974966 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2497px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-b77a4839-7f51-4512-9246-ec09d3974966 {
  margin: 0 !important;
  overflow: visible;
}

#s-b77a4839-7f51-4512-9246-ec09d3974966-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-b77a4839-7f51-4512-9246-ec09d3974966 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b77a4839-7f51-4512-9246-ec09d3974966 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b77a4839-7f51-4512-9246-ec09d3974966 img.shogun-image {
  /* Add background color handling */
  
}

#s-b77a4839-7f51-4512-9246-ec09d3974966 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b77a4839-7f51-4512-9246-ec09d3974966 .shg-image-content-wrapper {
      aspect-ratio: 2497/2076;
      min-width: 100%;
      height: auto;
    }

    #s-b77a4839-7f51-4512-9246-ec09d3974966 .shogun-image-link {
      aspect-ratio: 2497/2076;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b77a4839-7f51-4512-9246-ec09d3974966 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b77a4839-7f51-4512-9246-ec09d3974966.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b77a4839-7f51-4512-9246-ec09d3974966 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2497px;
  }



  img.s-b77a4839-7f51-4512-9246-ec09d3974966.shogun-image {
    
    
    
    max-height: 2497px;
  }


.s-b77a4839-7f51-4512-9246-ec09d3974966 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b77a4839-7f51-4512-9246-ec09d3974966.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b77a4839-7f51-4512-9246-ec09d3974966.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b77a4839-7f51-4512-9246-ec09d3974966.shogun-image {
  box-sizing: border-box;
}



.s-b77a4839-7f51-4512-9246-ec09d3974966 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b77a4839-7f51-4512-9246-ec09d3974966 {
      --shg-aspect-ratio: calc(2497/2076); 
    }

    .s-b77a4839-7f51-4512-9246-ec09d3974966.shogun-image-container {
      position: relative;
    }

    .s-b77a4839-7f51-4512-9246-ec09d3974966.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b77a4839-7f51-4512-9246-ec09d3974966.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b77a4839-7f51-4512-9246-ec09d3974966 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2497px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-b77a4839-7f51-4512-9246-ec09d3974966 {
  margin: 0 !important;
  overflow: visible;
}

#s-b77a4839-7f51-4512-9246-ec09d3974966-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-b77a4839-7f51-4512-9246-ec09d3974966 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b77a4839-7f51-4512-9246-ec09d3974966 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b77a4839-7f51-4512-9246-ec09d3974966 img.shogun-image {
  /* Add background color handling */
  
}

#s-b77a4839-7f51-4512-9246-ec09d3974966 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b77a4839-7f51-4512-9246-ec09d3974966 .shg-image-content-wrapper {
      aspect-ratio: 2497/2076;
      min-width: 100%;
      height: auto;
    }

    #s-b77a4839-7f51-4512-9246-ec09d3974966 .shogun-image-link {
      aspect-ratio: 2497/2076;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b77a4839-7f51-4512-9246-ec09d3974966 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b77a4839-7f51-4512-9246-ec09d3974966.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b77a4839-7f51-4512-9246-ec09d3974966 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2497px;
  }



  img.s-b77a4839-7f51-4512-9246-ec09d3974966.shogun-image {
    
    
    
    max-height: 2497px;
  }


.s-b77a4839-7f51-4512-9246-ec09d3974966 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b77a4839-7f51-4512-9246-ec09d3974966.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b77a4839-7f51-4512-9246-ec09d3974966.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b77a4839-7f51-4512-9246-ec09d3974966.shogun-image {
  box-sizing: border-box;
}



.s-b77a4839-7f51-4512-9246-ec09d3974966 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b77a4839-7f51-4512-9246-ec09d3974966 {
      --shg-aspect-ratio: calc(2497/2076); 
    }

    .s-b77a4839-7f51-4512-9246-ec09d3974966.shogun-image-container {
      position: relative;
    }

    .s-b77a4839-7f51-4512-9246-ec09d3974966.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b77a4839-7f51-4512-9246-ec09d3974966.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b77a4839-7f51-4512-9246-ec09d3974966 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2497px;
    }
  }

}@media (max-width: 767px){#s-b77a4839-7f51-4512-9246-ec09d3974966 {
  margin: 0 !important;
  overflow: visible;
}

#s-b77a4839-7f51-4512-9246-ec09d3974966-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-b77a4839-7f51-4512-9246-ec09d3974966 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b77a4839-7f51-4512-9246-ec09d3974966 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b77a4839-7f51-4512-9246-ec09d3974966 img.shogun-image {
  /* Add background color handling */
  
}

#s-b77a4839-7f51-4512-9246-ec09d3974966 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b77a4839-7f51-4512-9246-ec09d3974966 .shg-image-content-wrapper {
      aspect-ratio: 2497/2076;
      min-width: 100%;
      height: auto;
    }

    #s-b77a4839-7f51-4512-9246-ec09d3974966 .shogun-image-link {
      aspect-ratio: 2497/2076;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b77a4839-7f51-4512-9246-ec09d3974966 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b77a4839-7f51-4512-9246-ec09d3974966.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b77a4839-7f51-4512-9246-ec09d3974966 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2497px;
  }



  img.s-b77a4839-7f51-4512-9246-ec09d3974966.shogun-image {
    
    
    
    max-height: 2497px;
  }


.s-b77a4839-7f51-4512-9246-ec09d3974966 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b77a4839-7f51-4512-9246-ec09d3974966.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b77a4839-7f51-4512-9246-ec09d3974966.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b77a4839-7f51-4512-9246-ec09d3974966.shogun-image {
  box-sizing: border-box;
}



.s-b77a4839-7f51-4512-9246-ec09d3974966 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b77a4839-7f51-4512-9246-ec09d3974966 {
      --shg-aspect-ratio: calc(2497/2076); 
    }

    .s-b77a4839-7f51-4512-9246-ec09d3974966.shogun-image-container {
      position: relative;
    }

    .s-b77a4839-7f51-4512-9246-ec09d3974966.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b77a4839-7f51-4512-9246-ec09d3974966.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b77a4839-7f51-4512-9246-ec09d3974966 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2497px;
    }
  }

}
#s-9fa99387-b3f4-4689-8339-513abfac7cda {
  margin-top: 0px;
margin-left: 5%;
margin-bottom: 0px;
margin-right: 5%;
max-width: 2497px;
aspect-ratio: 2497/2075;
text-align: center;
}

#s-9fa99387-b3f4-4689-8339-513abfac7cda {
  margin: 0 !important;
  overflow: visible;
}

#s-9fa99387-b3f4-4689-8339-513abfac7cda-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-9fa99387-b3f4-4689-8339-513abfac7cda {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 0px;
  margin-bottom: 0px;
}

.shg-image-content-margin-container-s-9fa99387-b3f4-4689-8339-513abfac7cda {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9fa99387-b3f4-4689-8339-513abfac7cda img.shogun-image {
  /* Add background color handling */
  
}

#s-9fa99387-b3f4-4689-8339-513abfac7cda img.shogun-image {
  /* Add padding handling */
  padding-left: 2%;
  padding-right: 2%;
  padding-top: 2px;
  padding-bottom: 2px;
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9fa99387-b3f4-4689-8339-513abfac7cda .shg-image-content-wrapper {
      aspect-ratio: 2497/2075;
      min-width: 100%;
      height: auto;
    }

    #s-9fa99387-b3f4-4689-8339-513abfac7cda .shogun-image-link {
      aspect-ratio: 2497/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9fa99387-b3f4-4689-8339-513abfac7cda .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9fa99387-b3f4-4689-8339-513abfac7cda.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9fa99387-b3f4-4689-8339-513abfac7cda img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2497px;
  }



  img.s-9fa99387-b3f4-4689-8339-513abfac7cda.shogun-image {
    
    
    
    max-height: 2497px;
  }


.s-9fa99387-b3f4-4689-8339-513abfac7cda .shogun-image-content {
  
    justify-content: center;
  
}

.s-9fa99387-b3f4-4689-8339-513abfac7cda.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9fa99387-b3f4-4689-8339-513abfac7cda.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9fa99387-b3f4-4689-8339-513abfac7cda.shogun-image {
  box-sizing: border-box;
}



.s-9fa99387-b3f4-4689-8339-513abfac7cda img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9fa99387-b3f4-4689-8339-513abfac7cda {
      --shg-aspect-ratio: calc(2497/2075); 
    }

    .s-9fa99387-b3f4-4689-8339-513abfac7cda.shogun-image-container {
      position: relative;
    }

    .s-9fa99387-b3f4-4689-8339-513abfac7cda.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9fa99387-b3f4-4689-8339-513abfac7cda.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9fa99387-b3f4-4689-8339-513abfac7cda img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2497px;
    }
  }

@media (min-width: 1200px){#s-9fa99387-b3f4-4689-8339-513abfac7cda {
  margin: 0 !important;
  overflow: visible;
}

#s-9fa99387-b3f4-4689-8339-513abfac7cda-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-9fa99387-b3f4-4689-8339-513abfac7cda {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9fa99387-b3f4-4689-8339-513abfac7cda {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9fa99387-b3f4-4689-8339-513abfac7cda img.shogun-image {
  /* Add background color handling */
  
}

#s-9fa99387-b3f4-4689-8339-513abfac7cda img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9fa99387-b3f4-4689-8339-513abfac7cda .shg-image-content-wrapper {
      aspect-ratio: 2497/2075;
      min-width: 100%;
      height: auto;
    }

    #s-9fa99387-b3f4-4689-8339-513abfac7cda .shogun-image-link {
      aspect-ratio: 2497/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9fa99387-b3f4-4689-8339-513abfac7cda .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9fa99387-b3f4-4689-8339-513abfac7cda.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9fa99387-b3f4-4689-8339-513abfac7cda img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2497px;
  }



  img.s-9fa99387-b3f4-4689-8339-513abfac7cda.shogun-image {
    
    
    
    max-height: 2497px;
  }


.s-9fa99387-b3f4-4689-8339-513abfac7cda .shogun-image-content {
  
    justify-content: center;
  
}

.s-9fa99387-b3f4-4689-8339-513abfac7cda.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9fa99387-b3f4-4689-8339-513abfac7cda.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9fa99387-b3f4-4689-8339-513abfac7cda.shogun-image {
  box-sizing: border-box;
}



.s-9fa99387-b3f4-4689-8339-513abfac7cda img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9fa99387-b3f4-4689-8339-513abfac7cda {
      --shg-aspect-ratio: calc(2497/2075); 
    }

    .s-9fa99387-b3f4-4689-8339-513abfac7cda.shogun-image-container {
      position: relative;
    }

    .s-9fa99387-b3f4-4689-8339-513abfac7cda.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9fa99387-b3f4-4689-8339-513abfac7cda.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9fa99387-b3f4-4689-8339-513abfac7cda img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2497px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-9fa99387-b3f4-4689-8339-513abfac7cda {
  margin: 0 !important;
  overflow: visible;
}

#s-9fa99387-b3f4-4689-8339-513abfac7cda-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-9fa99387-b3f4-4689-8339-513abfac7cda {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9fa99387-b3f4-4689-8339-513abfac7cda {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9fa99387-b3f4-4689-8339-513abfac7cda img.shogun-image {
  /* Add background color handling */
  
}

#s-9fa99387-b3f4-4689-8339-513abfac7cda img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9fa99387-b3f4-4689-8339-513abfac7cda .shg-image-content-wrapper {
      aspect-ratio: 2497/2075;
      min-width: 100%;
      height: auto;
    }

    #s-9fa99387-b3f4-4689-8339-513abfac7cda .shogun-image-link {
      aspect-ratio: 2497/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9fa99387-b3f4-4689-8339-513abfac7cda .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9fa99387-b3f4-4689-8339-513abfac7cda.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9fa99387-b3f4-4689-8339-513abfac7cda img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2497px;
  }



  img.s-9fa99387-b3f4-4689-8339-513abfac7cda.shogun-image {
    
    
    
    max-height: 2497px;
  }


.s-9fa99387-b3f4-4689-8339-513abfac7cda .shogun-image-content {
  
    justify-content: center;
  
}

.s-9fa99387-b3f4-4689-8339-513abfac7cda.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9fa99387-b3f4-4689-8339-513abfac7cda.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9fa99387-b3f4-4689-8339-513abfac7cda.shogun-image {
  box-sizing: border-box;
}



.s-9fa99387-b3f4-4689-8339-513abfac7cda img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9fa99387-b3f4-4689-8339-513abfac7cda {
      --shg-aspect-ratio: calc(2497/2075); 
    }

    .s-9fa99387-b3f4-4689-8339-513abfac7cda.shogun-image-container {
      position: relative;
    }

    .s-9fa99387-b3f4-4689-8339-513abfac7cda.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9fa99387-b3f4-4689-8339-513abfac7cda.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9fa99387-b3f4-4689-8339-513abfac7cda img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2497px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-9fa99387-b3f4-4689-8339-513abfac7cda {
  margin: 0 !important;
  overflow: visible;
}

#s-9fa99387-b3f4-4689-8339-513abfac7cda-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-9fa99387-b3f4-4689-8339-513abfac7cda {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9fa99387-b3f4-4689-8339-513abfac7cda {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9fa99387-b3f4-4689-8339-513abfac7cda img.shogun-image {
  /* Add background color handling */
  
}

#s-9fa99387-b3f4-4689-8339-513abfac7cda img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9fa99387-b3f4-4689-8339-513abfac7cda .shg-image-content-wrapper {
      aspect-ratio: 2497/2075;
      min-width: 100%;
      height: auto;
    }

    #s-9fa99387-b3f4-4689-8339-513abfac7cda .shogun-image-link {
      aspect-ratio: 2497/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9fa99387-b3f4-4689-8339-513abfac7cda .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9fa99387-b3f4-4689-8339-513abfac7cda.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9fa99387-b3f4-4689-8339-513abfac7cda img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2497px;
  }



  img.s-9fa99387-b3f4-4689-8339-513abfac7cda.shogun-image {
    
    
    
    max-height: 2497px;
  }


.s-9fa99387-b3f4-4689-8339-513abfac7cda .shogun-image-content {
  
    justify-content: center;
  
}

.s-9fa99387-b3f4-4689-8339-513abfac7cda.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9fa99387-b3f4-4689-8339-513abfac7cda.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9fa99387-b3f4-4689-8339-513abfac7cda.shogun-image {
  box-sizing: border-box;
}



.s-9fa99387-b3f4-4689-8339-513abfac7cda img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9fa99387-b3f4-4689-8339-513abfac7cda {
      --shg-aspect-ratio: calc(2497/2075); 
    }

    .s-9fa99387-b3f4-4689-8339-513abfac7cda.shogun-image-container {
      position: relative;
    }

    .s-9fa99387-b3f4-4689-8339-513abfac7cda.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9fa99387-b3f4-4689-8339-513abfac7cda.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9fa99387-b3f4-4689-8339-513abfac7cda img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2497px;
    }
  }

}@media (max-width: 767px){#s-9fa99387-b3f4-4689-8339-513abfac7cda {
  margin: 0 !important;
  overflow: visible;
}

#s-9fa99387-b3f4-4689-8339-513abfac7cda-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-9fa99387-b3f4-4689-8339-513abfac7cda {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9fa99387-b3f4-4689-8339-513abfac7cda {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9fa99387-b3f4-4689-8339-513abfac7cda img.shogun-image {
  /* Add background color handling */
  
}

#s-9fa99387-b3f4-4689-8339-513abfac7cda img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9fa99387-b3f4-4689-8339-513abfac7cda .shg-image-content-wrapper {
      aspect-ratio: 2497/2075;
      min-width: 100%;
      height: auto;
    }

    #s-9fa99387-b3f4-4689-8339-513abfac7cda .shogun-image-link {
      aspect-ratio: 2497/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9fa99387-b3f4-4689-8339-513abfac7cda .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9fa99387-b3f4-4689-8339-513abfac7cda.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9fa99387-b3f4-4689-8339-513abfac7cda img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2497px;
  }



  img.s-9fa99387-b3f4-4689-8339-513abfac7cda.shogun-image {
    
    
    
    max-height: 2497px;
  }


.s-9fa99387-b3f4-4689-8339-513abfac7cda .shogun-image-content {
  
    justify-content: center;
  
}

.s-9fa99387-b3f4-4689-8339-513abfac7cda.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9fa99387-b3f4-4689-8339-513abfac7cda.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9fa99387-b3f4-4689-8339-513abfac7cda.shogun-image {
  box-sizing: border-box;
}



.s-9fa99387-b3f4-4689-8339-513abfac7cda img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9fa99387-b3f4-4689-8339-513abfac7cda {
      --shg-aspect-ratio: calc(2497/2075); 
    }

    .s-9fa99387-b3f4-4689-8339-513abfac7cda.shogun-image-container {
      position: relative;
    }

    .s-9fa99387-b3f4-4689-8339-513abfac7cda.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9fa99387-b3f4-4689-8339-513abfac7cda.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9fa99387-b3f4-4689-8339-513abfac7cda img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2497px;
    }
  }

}
.shg-hr-wrapper {
  padding: 30px 0;
}

.shg-hr-wrapper hr {
  margin: 0;
  border: 0;
  width: 100%;
}

#s-34e28a61-8d60-4c4d-a1f1-524fca5002ea {
  margin-left: auto;
margin-right: auto;
padding-left: 3%;
padding-right: 3%;
}
@media (min-width: 1200px){#s-34e28a61-8d60-4c4d-a1f1-524fca5002ea {
  display: none;
}
#s-34e28a61-8d60-4c4d-a1f1-524fca5002ea, #wrap-s-34e28a61-8d60-4c4d-a1f1-524fca5002ea, #wrap-content-s-34e28a61-8d60-4c4d-a1f1-524fca5002ea { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-34e28a61-8d60-4c4d-a1f1-524fca5002ea {
  display: none;
}
#s-34e28a61-8d60-4c4d-a1f1-524fca5002ea, #wrap-s-34e28a61-8d60-4c4d-a1f1-524fca5002ea, #wrap-content-s-34e28a61-8d60-4c4d-a1f1-524fca5002ea { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-34e28a61-8d60-4c4d-a1f1-524fca5002ea {
  display: none;
}
#s-34e28a61-8d60-4c4d-a1f1-524fca5002ea, #wrap-s-34e28a61-8d60-4c4d-a1f1-524fca5002ea, #wrap-content-s-34e28a61-8d60-4c4d-a1f1-524fca5002ea { display: none !important; }}@media (max-width: 767px){#s-34e28a61-8d60-4c4d-a1f1-524fca5002ea {
  display: none;
}
#s-34e28a61-8d60-4c4d-a1f1-524fca5002ea, #wrap-s-34e28a61-8d60-4c4d-a1f1-524fca5002ea, #wrap-content-s-34e28a61-8d60-4c4d-a1f1-524fca5002ea { display: none !important; }}
#s-34e28a61-8d60-4c4d-a1f1-524fca5002ea hr {
  border-top: 2px solid #ddd;
}

#s-edf9b67d-1d21-4489-a8aa-f7d6ad2da6f6 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(209, 251, 84, 0);
}
@media (min-width: 1200px){#s-edf9b67d-1d21-4489-a8aa-f7d6ad2da6f6 {
  text-align: center;
}
}
#s-edf9b67d-1d21-4489-a8aa-f7d6ad2da6f6 .shogun-heading-component h1 {
  
  font-weight:  600 ;
  font-family: "Maven Pro";
  font-style:  normal ;
  font-size: 17px;
  
  
  
}


@media (min-width: 1200px){#s-edf9b67d-1d21-4489-a8aa-f7d6ad2da6f6 .shogun-heading-component h1 {
  color: rgba(33, 33, 33, 1);
  font-weight:  600 ;
  font-family: "Maven Pro";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


}
#s-b3003f0c-af78-4afc-afee-a67b7f063744 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-b3003f0c-af78-4afc-afee-a67b7f063744 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b3003f0c-af78-4afc-afee-a67b7f063744.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-325be82d-3974-4cb7-b4ef-5052e468a9b9 {
  margin-left: auto;
margin-right: auto;
max-width: 3807px;
text-align: center;
}

#s-325be82d-3974-4cb7-b4ef-5052e468a9b9 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-325be82d-3974-4cb7-b4ef-5052e468a9b9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-325be82d-3974-4cb7-b4ef-5052e468a9b9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-325be82d-3974-4cb7-b4ef-5052e468a9b9 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-325be82d-3974-4cb7-b4ef-5052e468a9b9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-325be82d-3974-4cb7-b4ef-5052e468a9b9 img.shogun-image {
  width: 100%;
  
  
  max-width: 3807px;

      
    max-width: 3807px;

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




.s-325be82d-3974-4cb7-b4ef-5052e468a9b9 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-325be82d-3974-4cb7-b4ef-5052e468a9b9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-325be82d-3974-4cb7-b4ef-5052e468a9b9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-325be82d-3974-4cb7-b4ef-5052e468a9b9.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-325be82d-3974-4cb7-b4ef-5052e468a9b9 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-325be82d-3974-4cb7-b4ef-5052e468a9b9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-325be82d-3974-4cb7-b4ef-5052e468a9b9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-325be82d-3974-4cb7-b4ef-5052e468a9b9 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-325be82d-3974-4cb7-b4ef-5052e468a9b9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-325be82d-3974-4cb7-b4ef-5052e468a9b9 img.shogun-image {
  width: 100%;
  
  
  max-width: 3807px;

      
    max-width: 3807px;

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




.s-325be82d-3974-4cb7-b4ef-5052e468a9b9 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-325be82d-3974-4cb7-b4ef-5052e468a9b9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-325be82d-3974-4cb7-b4ef-5052e468a9b9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-325be82d-3974-4cb7-b4ef-5052e468a9b9.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-325be82d-3974-4cb7-b4ef-5052e468a9b9 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-325be82d-3974-4cb7-b4ef-5052e468a9b9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-325be82d-3974-4cb7-b4ef-5052e468a9b9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-325be82d-3974-4cb7-b4ef-5052e468a9b9 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-325be82d-3974-4cb7-b4ef-5052e468a9b9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-325be82d-3974-4cb7-b4ef-5052e468a9b9 img.shogun-image {
  width: 100%;
  
  
  max-width: 3807px;

      
    max-width: 3807px;

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




.s-325be82d-3974-4cb7-b4ef-5052e468a9b9 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-325be82d-3974-4cb7-b4ef-5052e468a9b9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-325be82d-3974-4cb7-b4ef-5052e468a9b9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-325be82d-3974-4cb7-b4ef-5052e468a9b9.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-325be82d-3974-4cb7-b4ef-5052e468a9b9 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-325be82d-3974-4cb7-b4ef-5052e468a9b9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-325be82d-3974-4cb7-b4ef-5052e468a9b9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-325be82d-3974-4cb7-b4ef-5052e468a9b9 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-325be82d-3974-4cb7-b4ef-5052e468a9b9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-325be82d-3974-4cb7-b4ef-5052e468a9b9 img.shogun-image {
  width: 100%;
  
  
  max-width: 3807px;

      
    max-width: 3807px;

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




.s-325be82d-3974-4cb7-b4ef-5052e468a9b9 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-325be82d-3974-4cb7-b4ef-5052e468a9b9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-325be82d-3974-4cb7-b4ef-5052e468a9b9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-325be82d-3974-4cb7-b4ef-5052e468a9b9.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-325be82d-3974-4cb7-b4ef-5052e468a9b9 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-325be82d-3974-4cb7-b4ef-5052e468a9b9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-325be82d-3974-4cb7-b4ef-5052e468a9b9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-325be82d-3974-4cb7-b4ef-5052e468a9b9 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-325be82d-3974-4cb7-b4ef-5052e468a9b9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-325be82d-3974-4cb7-b4ef-5052e468a9b9 img.shogun-image {
  width: 100%;
  
  
  max-width: 3807px;

      
    max-width: 3807px;

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




.s-325be82d-3974-4cb7-b4ef-5052e468a9b9 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-325be82d-3974-4cb7-b4ef-5052e468a9b9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-325be82d-3974-4cb7-b4ef-5052e468a9b9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-325be82d-3974-4cb7-b4ef-5052e468a9b9.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-0aab2177-0d43-498e-86de-21636b86db3a {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-0aab2177-0d43-498e-86de-21636b86db3a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0aab2177-0d43-498e-86de-21636b86db3a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c79bf25b-dbd1-4b23-a8bc-d40446c23a9c {
  margin-left: auto;
margin-right: auto;
padding-left: 1%;
padding-right: 1%;
}
@media (min-width: 1200px){#s-c79bf25b-dbd1-4b23-a8bc-d40446c23a9c {
  display: none;
}
#s-c79bf25b-dbd1-4b23-a8bc-d40446c23a9c, #wrap-s-c79bf25b-dbd1-4b23-a8bc-d40446c23a9c, #wrap-content-s-c79bf25b-dbd1-4b23-a8bc-d40446c23a9c { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c79bf25b-dbd1-4b23-a8bc-d40446c23a9c {
  display: none;
}
#s-c79bf25b-dbd1-4b23-a8bc-d40446c23a9c, #wrap-s-c79bf25b-dbd1-4b23-a8bc-d40446c23a9c, #wrap-content-s-c79bf25b-dbd1-4b23-a8bc-d40446c23a9c { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c79bf25b-dbd1-4b23-a8bc-d40446c23a9c {
  display: none;
}
#s-c79bf25b-dbd1-4b23-a8bc-d40446c23a9c, #wrap-s-c79bf25b-dbd1-4b23-a8bc-d40446c23a9c, #wrap-content-s-c79bf25b-dbd1-4b23-a8bc-d40446c23a9c { display: none !important; }}@media (max-width: 767px){#s-c79bf25b-dbd1-4b23-a8bc-d40446c23a9c {
  display: none;
}
#s-c79bf25b-dbd1-4b23-a8bc-d40446c23a9c, #wrap-s-c79bf25b-dbd1-4b23-a8bc-d40446c23a9c, #wrap-content-s-c79bf25b-dbd1-4b23-a8bc-d40446c23a9c { display: none !important; }}
@media (min-width: 0px) {
[id="s-c79bf25b-dbd1-4b23-a8bc-d40446c23a9c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c79bf25b-dbd1-4b23-a8bc-d40446c23a9c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-c79bf25b-dbd1-4b23-a8bc-d40446c23a9c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-c79bf25b-dbd1-4b23-a8bc-d40446c23a9c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-9cb3952b-5e15-478c-a706-b651ae3c70ff {
  margin-top: 4px;
margin-left: 5%;
margin-bottom: 4px;
margin-right: 5%;
max-width: 2496px;
aspect-ratio: 2496/2061;
text-align: center;
}

#s-9cb3952b-5e15-478c-a706-b651ae3c70ff {
  margin: 0 !important;
  overflow: visible;
}

#s-9cb3952b-5e15-478c-a706-b651ae3c70ff-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-9cb3952b-5e15-478c-a706-b651ae3c70ff {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 4px;
  margin-bottom: 4px;
}

.shg-image-content-margin-container-s-9cb3952b-5e15-478c-a706-b651ae3c70ff {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9cb3952b-5e15-478c-a706-b651ae3c70ff img.shogun-image {
  /* Add background color handling */
  
}

#s-9cb3952b-5e15-478c-a706-b651ae3c70ff img.shogun-image {
  /* Add padding handling */
  padding-left: 2%;
  padding-right: 2%;
  padding-top: 2px;
  padding-bottom: 2px;
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9cb3952b-5e15-478c-a706-b651ae3c70ff .shg-image-content-wrapper {
      aspect-ratio: 2496/2061;
      min-width: 100%;
      height: auto;
    }

    #s-9cb3952b-5e15-478c-a706-b651ae3c70ff .shogun-image-link {
      aspect-ratio: 2496/2061;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9cb3952b-5e15-478c-a706-b651ae3c70ff .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9cb3952b-5e15-478c-a706-b651ae3c70ff img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2496px;
  }



  img.s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shogun-image {
    
    
    
    max-height: 2496px;
  }


.s-9cb3952b-5e15-478c-a706-b651ae3c70ff .shogun-image-content {
  
    justify-content: center;
  
}

.s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shogun-image {
  box-sizing: border-box;
}



.s-9cb3952b-5e15-478c-a706-b651ae3c70ff img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9cb3952b-5e15-478c-a706-b651ae3c70ff {
      --shg-aspect-ratio: calc(2496/2061); 
    }

    .s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shogun-image-container {
      position: relative;
    }

    .s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9cb3952b-5e15-478c-a706-b651ae3c70ff img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2496px;
    }
  }

@media (min-width: 1200px){#s-9cb3952b-5e15-478c-a706-b651ae3c70ff {
  margin: 0 !important;
  overflow: visible;
}

#s-9cb3952b-5e15-478c-a706-b651ae3c70ff-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-9cb3952b-5e15-478c-a706-b651ae3c70ff {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9cb3952b-5e15-478c-a706-b651ae3c70ff {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9cb3952b-5e15-478c-a706-b651ae3c70ff img.shogun-image {
  /* Add background color handling */
  
}

#s-9cb3952b-5e15-478c-a706-b651ae3c70ff img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9cb3952b-5e15-478c-a706-b651ae3c70ff .shg-image-content-wrapper {
      aspect-ratio: 2496/2061;
      min-width: 100%;
      height: auto;
    }

    #s-9cb3952b-5e15-478c-a706-b651ae3c70ff .shogun-image-link {
      aspect-ratio: 2496/2061;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9cb3952b-5e15-478c-a706-b651ae3c70ff .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9cb3952b-5e15-478c-a706-b651ae3c70ff img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2496px;
  }



  img.s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shogun-image {
    
    
    
    max-height: 2496px;
  }


.s-9cb3952b-5e15-478c-a706-b651ae3c70ff .shogun-image-content {
  
    justify-content: center;
  
}

.s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shogun-image {
  box-sizing: border-box;
}



.s-9cb3952b-5e15-478c-a706-b651ae3c70ff img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9cb3952b-5e15-478c-a706-b651ae3c70ff {
      --shg-aspect-ratio: calc(2496/2061); 
    }

    .s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shogun-image-container {
      position: relative;
    }

    .s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9cb3952b-5e15-478c-a706-b651ae3c70ff img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2496px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-9cb3952b-5e15-478c-a706-b651ae3c70ff {
  margin: 0 !important;
  overflow: visible;
}

#s-9cb3952b-5e15-478c-a706-b651ae3c70ff-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-9cb3952b-5e15-478c-a706-b651ae3c70ff {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9cb3952b-5e15-478c-a706-b651ae3c70ff {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9cb3952b-5e15-478c-a706-b651ae3c70ff img.shogun-image {
  /* Add background color handling */
  
}

#s-9cb3952b-5e15-478c-a706-b651ae3c70ff img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9cb3952b-5e15-478c-a706-b651ae3c70ff .shg-image-content-wrapper {
      aspect-ratio: 2496/2061;
      min-width: 100%;
      height: auto;
    }

    #s-9cb3952b-5e15-478c-a706-b651ae3c70ff .shogun-image-link {
      aspect-ratio: 2496/2061;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9cb3952b-5e15-478c-a706-b651ae3c70ff .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9cb3952b-5e15-478c-a706-b651ae3c70ff img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2496px;
  }



  img.s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shogun-image {
    
    
    
    max-height: 2496px;
  }


.s-9cb3952b-5e15-478c-a706-b651ae3c70ff .shogun-image-content {
  
    justify-content: center;
  
}

.s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shogun-image {
  box-sizing: border-box;
}



.s-9cb3952b-5e15-478c-a706-b651ae3c70ff img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9cb3952b-5e15-478c-a706-b651ae3c70ff {
      --shg-aspect-ratio: calc(2496/2061); 
    }

    .s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shogun-image-container {
      position: relative;
    }

    .s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9cb3952b-5e15-478c-a706-b651ae3c70ff img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2496px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-9cb3952b-5e15-478c-a706-b651ae3c70ff {
  margin: 0 !important;
  overflow: visible;
}

#s-9cb3952b-5e15-478c-a706-b651ae3c70ff-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-9cb3952b-5e15-478c-a706-b651ae3c70ff {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9cb3952b-5e15-478c-a706-b651ae3c70ff {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9cb3952b-5e15-478c-a706-b651ae3c70ff img.shogun-image {
  /* Add background color handling */
  
}

#s-9cb3952b-5e15-478c-a706-b651ae3c70ff img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9cb3952b-5e15-478c-a706-b651ae3c70ff .shg-image-content-wrapper {
      aspect-ratio: 2496/2061;
      min-width: 100%;
      height: auto;
    }

    #s-9cb3952b-5e15-478c-a706-b651ae3c70ff .shogun-image-link {
      aspect-ratio: 2496/2061;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9cb3952b-5e15-478c-a706-b651ae3c70ff .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9cb3952b-5e15-478c-a706-b651ae3c70ff img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2496px;
  }



  img.s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shogun-image {
    
    
    
    max-height: 2496px;
  }


.s-9cb3952b-5e15-478c-a706-b651ae3c70ff .shogun-image-content {
  
    justify-content: center;
  
}

.s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shogun-image {
  box-sizing: border-box;
}



.s-9cb3952b-5e15-478c-a706-b651ae3c70ff img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9cb3952b-5e15-478c-a706-b651ae3c70ff {
      --shg-aspect-ratio: calc(2496/2061); 
    }

    .s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shogun-image-container {
      position: relative;
    }

    .s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9cb3952b-5e15-478c-a706-b651ae3c70ff img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2496px;
    }
  }

}@media (max-width: 767px){#s-9cb3952b-5e15-478c-a706-b651ae3c70ff {
  margin: 0 !important;
  overflow: visible;
}

#s-9cb3952b-5e15-478c-a706-b651ae3c70ff-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-9cb3952b-5e15-478c-a706-b651ae3c70ff {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9cb3952b-5e15-478c-a706-b651ae3c70ff {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9cb3952b-5e15-478c-a706-b651ae3c70ff img.shogun-image {
  /* Add background color handling */
  
}

#s-9cb3952b-5e15-478c-a706-b651ae3c70ff img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9cb3952b-5e15-478c-a706-b651ae3c70ff .shg-image-content-wrapper {
      aspect-ratio: 2496/2061;
      min-width: 100%;
      height: auto;
    }

    #s-9cb3952b-5e15-478c-a706-b651ae3c70ff .shogun-image-link {
      aspect-ratio: 2496/2061;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9cb3952b-5e15-478c-a706-b651ae3c70ff .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9cb3952b-5e15-478c-a706-b651ae3c70ff img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2496px;
  }



  img.s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shogun-image {
    
    
    
    max-height: 2496px;
  }


.s-9cb3952b-5e15-478c-a706-b651ae3c70ff .shogun-image-content {
  
    justify-content: center;
  
}

.s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shogun-image {
  box-sizing: border-box;
}



.s-9cb3952b-5e15-478c-a706-b651ae3c70ff img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9cb3952b-5e15-478c-a706-b651ae3c70ff {
      --shg-aspect-ratio: calc(2496/2061); 
    }

    .s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shogun-image-container {
      position: relative;
    }

    .s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9cb3952b-5e15-478c-a706-b651ae3c70ff.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9cb3952b-5e15-478c-a706-b651ae3c70ff img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2496px;
    }
  }

}
#s-094f5d19-94ee-442a-9902-64f5d9df3574 {
  margin-top: 4px;
margin-left: 5%;
margin-bottom: 4px;
margin-right: 5%;
max-width: 2497px;
aspect-ratio: 2497/2081;
text-align: center;
}

#s-094f5d19-94ee-442a-9902-64f5d9df3574 {
  margin: 0 !important;
  overflow: visible;
}

#s-094f5d19-94ee-442a-9902-64f5d9df3574-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-094f5d19-94ee-442a-9902-64f5d9df3574 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 4px;
  margin-bottom: 4px;
}

.shg-image-content-margin-container-s-094f5d19-94ee-442a-9902-64f5d9df3574 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-094f5d19-94ee-442a-9902-64f5d9df3574 img.shogun-image {
  /* Add background color handling */
  
}

#s-094f5d19-94ee-442a-9902-64f5d9df3574 img.shogun-image {
  /* Add padding handling */
  padding-left: 2%;
  padding-right: 2%;
  padding-top: 2px;
  padding-bottom: 2px;
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-094f5d19-94ee-442a-9902-64f5d9df3574 .shg-image-content-wrapper {
      aspect-ratio: 2497/2081;
      min-width: 100%;
      height: auto;
    }

    #s-094f5d19-94ee-442a-9902-64f5d9df3574 .shogun-image-link {
      aspect-ratio: 2497/2081;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-094f5d19-94ee-442a-9902-64f5d9df3574 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-094f5d19-94ee-442a-9902-64f5d9df3574.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-094f5d19-94ee-442a-9902-64f5d9df3574 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2497px;
  }



  img.s-094f5d19-94ee-442a-9902-64f5d9df3574.shogun-image {
    
    
    
    max-height: 2497px;
  }


.s-094f5d19-94ee-442a-9902-64f5d9df3574 .shogun-image-content {
  
    justify-content: center;
  
}

.s-094f5d19-94ee-442a-9902-64f5d9df3574.shg-align-container {
  display: flex;
  justify-content: center
}

.s-094f5d19-94ee-442a-9902-64f5d9df3574.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-094f5d19-94ee-442a-9902-64f5d9df3574.shogun-image {
  box-sizing: border-box;
}



.s-094f5d19-94ee-442a-9902-64f5d9df3574 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-094f5d19-94ee-442a-9902-64f5d9df3574 {
      --shg-aspect-ratio: calc(2497/2081); 
    }

    .s-094f5d19-94ee-442a-9902-64f5d9df3574.shogun-image-container {
      position: relative;
    }

    .s-094f5d19-94ee-442a-9902-64f5d9df3574.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-094f5d19-94ee-442a-9902-64f5d9df3574.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-094f5d19-94ee-442a-9902-64f5d9df3574 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2497px;
    }
  }

@media (min-width: 1200px){#s-094f5d19-94ee-442a-9902-64f5d9df3574 {
  margin: 0 !important;
  overflow: visible;
}

#s-094f5d19-94ee-442a-9902-64f5d9df3574-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-094f5d19-94ee-442a-9902-64f5d9df3574 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-094f5d19-94ee-442a-9902-64f5d9df3574 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-094f5d19-94ee-442a-9902-64f5d9df3574 img.shogun-image {
  /* Add background color handling */
  
}

#s-094f5d19-94ee-442a-9902-64f5d9df3574 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-094f5d19-94ee-442a-9902-64f5d9df3574 .shg-image-content-wrapper {
      aspect-ratio: 2497/2081;
      min-width: 100%;
      height: auto;
    }

    #s-094f5d19-94ee-442a-9902-64f5d9df3574 .shogun-image-link {
      aspect-ratio: 2497/2081;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-094f5d19-94ee-442a-9902-64f5d9df3574 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-094f5d19-94ee-442a-9902-64f5d9df3574.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-094f5d19-94ee-442a-9902-64f5d9df3574 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2497px;
  }



  img.s-094f5d19-94ee-442a-9902-64f5d9df3574.shogun-image {
    
    
    
    max-height: 2497px;
  }


.s-094f5d19-94ee-442a-9902-64f5d9df3574 .shogun-image-content {
  
    justify-content: center;
  
}

.s-094f5d19-94ee-442a-9902-64f5d9df3574.shg-align-container {
  display: flex;
  justify-content: center
}

.s-094f5d19-94ee-442a-9902-64f5d9df3574.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-094f5d19-94ee-442a-9902-64f5d9df3574.shogun-image {
  box-sizing: border-box;
}



.s-094f5d19-94ee-442a-9902-64f5d9df3574 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-094f5d19-94ee-442a-9902-64f5d9df3574 {
      --shg-aspect-ratio: calc(2497/2081); 
    }

    .s-094f5d19-94ee-442a-9902-64f5d9df3574.shogun-image-container {
      position: relative;
    }

    .s-094f5d19-94ee-442a-9902-64f5d9df3574.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-094f5d19-94ee-442a-9902-64f5d9df3574.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-094f5d19-94ee-442a-9902-64f5d9df3574 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2497px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-094f5d19-94ee-442a-9902-64f5d9df3574 {
  margin: 0 !important;
  overflow: visible;
}

#s-094f5d19-94ee-442a-9902-64f5d9df3574-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-094f5d19-94ee-442a-9902-64f5d9df3574 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-094f5d19-94ee-442a-9902-64f5d9df3574 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-094f5d19-94ee-442a-9902-64f5d9df3574 img.shogun-image {
  /* Add background color handling */
  
}

#s-094f5d19-94ee-442a-9902-64f5d9df3574 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-094f5d19-94ee-442a-9902-64f5d9df3574 .shg-image-content-wrapper {
      aspect-ratio: 2497/2081;
      min-width: 100%;
      height: auto;
    }

    #s-094f5d19-94ee-442a-9902-64f5d9df3574 .shogun-image-link {
      aspect-ratio: 2497/2081;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-094f5d19-94ee-442a-9902-64f5d9df3574 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-094f5d19-94ee-442a-9902-64f5d9df3574.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-094f5d19-94ee-442a-9902-64f5d9df3574 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2497px;
  }



  img.s-094f5d19-94ee-442a-9902-64f5d9df3574.shogun-image {
    
    
    
    max-height: 2497px;
  }


.s-094f5d19-94ee-442a-9902-64f5d9df3574 .shogun-image-content {
  
    justify-content: center;
  
}

.s-094f5d19-94ee-442a-9902-64f5d9df3574.shg-align-container {
  display: flex;
  justify-content: center
}

.s-094f5d19-94ee-442a-9902-64f5d9df3574.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-094f5d19-94ee-442a-9902-64f5d9df3574.shogun-image {
  box-sizing: border-box;
}



.s-094f5d19-94ee-442a-9902-64f5d9df3574 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-094f5d19-94ee-442a-9902-64f5d9df3574 {
      --shg-aspect-ratio: calc(2497/2081); 
    }

    .s-094f5d19-94ee-442a-9902-64f5d9df3574.shogun-image-container {
      position: relative;
    }

    .s-094f5d19-94ee-442a-9902-64f5d9df3574.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-094f5d19-94ee-442a-9902-64f5d9df3574.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-094f5d19-94ee-442a-9902-64f5d9df3574 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2497px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-094f5d19-94ee-442a-9902-64f5d9df3574 {
  margin: 0 !important;
  overflow: visible;
}

#s-094f5d19-94ee-442a-9902-64f5d9df3574-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-094f5d19-94ee-442a-9902-64f5d9df3574 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-094f5d19-94ee-442a-9902-64f5d9df3574 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-094f5d19-94ee-442a-9902-64f5d9df3574 img.shogun-image {
  /* Add background color handling */
  
}

#s-094f5d19-94ee-442a-9902-64f5d9df3574 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-094f5d19-94ee-442a-9902-64f5d9df3574 .shg-image-content-wrapper {
      aspect-ratio: 2497/2081;
      min-width: 100%;
      height: auto;
    }

    #s-094f5d19-94ee-442a-9902-64f5d9df3574 .shogun-image-link {
      aspect-ratio: 2497/2081;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-094f5d19-94ee-442a-9902-64f5d9df3574 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-094f5d19-94ee-442a-9902-64f5d9df3574.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-094f5d19-94ee-442a-9902-64f5d9df3574 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2497px;
  }



  img.s-094f5d19-94ee-442a-9902-64f5d9df3574.shogun-image {
    
    
    
    max-height: 2497px;
  }


.s-094f5d19-94ee-442a-9902-64f5d9df3574 .shogun-image-content {
  
    justify-content: center;
  
}

.s-094f5d19-94ee-442a-9902-64f5d9df3574.shg-align-container {
  display: flex;
  justify-content: center
}

.s-094f5d19-94ee-442a-9902-64f5d9df3574.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-094f5d19-94ee-442a-9902-64f5d9df3574.shogun-image {
  box-sizing: border-box;
}



.s-094f5d19-94ee-442a-9902-64f5d9df3574 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-094f5d19-94ee-442a-9902-64f5d9df3574 {
      --shg-aspect-ratio: calc(2497/2081); 
    }

    .s-094f5d19-94ee-442a-9902-64f5d9df3574.shogun-image-container {
      position: relative;
    }

    .s-094f5d19-94ee-442a-9902-64f5d9df3574.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-094f5d19-94ee-442a-9902-64f5d9df3574.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-094f5d19-94ee-442a-9902-64f5d9df3574 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2497px;
    }
  }

}@media (max-width: 767px){#s-094f5d19-94ee-442a-9902-64f5d9df3574 {
  margin: 0 !important;
  overflow: visible;
}

#s-094f5d19-94ee-442a-9902-64f5d9df3574-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-094f5d19-94ee-442a-9902-64f5d9df3574 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-094f5d19-94ee-442a-9902-64f5d9df3574 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-094f5d19-94ee-442a-9902-64f5d9df3574 img.shogun-image {
  /* Add background color handling */
  
}

#s-094f5d19-94ee-442a-9902-64f5d9df3574 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-094f5d19-94ee-442a-9902-64f5d9df3574 .shg-image-content-wrapper {
      aspect-ratio: 2497/2081;
      min-width: 100%;
      height: auto;
    }

    #s-094f5d19-94ee-442a-9902-64f5d9df3574 .shogun-image-link {
      aspect-ratio: 2497/2081;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-094f5d19-94ee-442a-9902-64f5d9df3574 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-094f5d19-94ee-442a-9902-64f5d9df3574.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-094f5d19-94ee-442a-9902-64f5d9df3574 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2497px;
  }



  img.s-094f5d19-94ee-442a-9902-64f5d9df3574.shogun-image {
    
    
    
    max-height: 2497px;
  }


.s-094f5d19-94ee-442a-9902-64f5d9df3574 .shogun-image-content {
  
    justify-content: center;
  
}

.s-094f5d19-94ee-442a-9902-64f5d9df3574.shg-align-container {
  display: flex;
  justify-content: center
}

.s-094f5d19-94ee-442a-9902-64f5d9df3574.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-094f5d19-94ee-442a-9902-64f5d9df3574.shogun-image {
  box-sizing: border-box;
}



.s-094f5d19-94ee-442a-9902-64f5d9df3574 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-094f5d19-94ee-442a-9902-64f5d9df3574 {
      --shg-aspect-ratio: calc(2497/2081); 
    }

    .s-094f5d19-94ee-442a-9902-64f5d9df3574.shogun-image-container {
      position: relative;
    }

    .s-094f5d19-94ee-442a-9902-64f5d9df3574.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-094f5d19-94ee-442a-9902-64f5d9df3574.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-094f5d19-94ee-442a-9902-64f5d9df3574 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2497px;
    }
  }

}
#s-f3a58340-14f9-498b-ab3c-d69476579176 {
  margin-top: 4px;
margin-left: 5%;
margin-bottom: 4px;
margin-right: 5%;
max-width: 2496px;
aspect-ratio: 5001/4060;
text-align: center;
}

#s-f3a58340-14f9-498b-ab3c-d69476579176 {
  margin: 0 !important;
  overflow: visible;
}

#s-f3a58340-14f9-498b-ab3c-d69476579176-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-f3a58340-14f9-498b-ab3c-d69476579176 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 4px;
  margin-bottom: 4px;
}

.shg-image-content-margin-container-s-f3a58340-14f9-498b-ab3c-d69476579176 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f3a58340-14f9-498b-ab3c-d69476579176 img.shogun-image {
  /* Add background color handling */
  
}

#s-f3a58340-14f9-498b-ab3c-d69476579176 img.shogun-image {
  /* Add padding handling */
  padding-left: 3%;
  padding-right: 3%;
  padding-top: 2px;
  padding-bottom: 2px;
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f3a58340-14f9-498b-ab3c-d69476579176 .shg-image-content-wrapper {
      aspect-ratio: 5001/4060;
      min-width: 100%;
      height: auto;
    }

    #s-f3a58340-14f9-498b-ab3c-d69476579176 .shogun-image-link {
      aspect-ratio: 5001/4060;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f3a58340-14f9-498b-ab3c-d69476579176 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f3a58340-14f9-498b-ab3c-d69476579176.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f3a58340-14f9-498b-ab3c-d69476579176 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2496px;
  }



  img.s-f3a58340-14f9-498b-ab3c-d69476579176.shogun-image {
    
    
    
    max-height: 2496px;
  }


.s-f3a58340-14f9-498b-ab3c-d69476579176 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f3a58340-14f9-498b-ab3c-d69476579176.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f3a58340-14f9-498b-ab3c-d69476579176.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f3a58340-14f9-498b-ab3c-d69476579176.shogun-image {
  box-sizing: border-box;
}



.s-f3a58340-14f9-498b-ab3c-d69476579176 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f3a58340-14f9-498b-ab3c-d69476579176 {
      --shg-aspect-ratio: calc(5001/4060); 
    }

    .s-f3a58340-14f9-498b-ab3c-d69476579176.shogun-image-container {
      position: relative;
    }

    .s-f3a58340-14f9-498b-ab3c-d69476579176.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f3a58340-14f9-498b-ab3c-d69476579176.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f3a58340-14f9-498b-ab3c-d69476579176 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2496px;
    }
  }

@media (min-width: 1200px){#s-f3a58340-14f9-498b-ab3c-d69476579176 {
  margin: 0 !important;
  overflow: visible;
}

#s-f3a58340-14f9-498b-ab3c-d69476579176-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-f3a58340-14f9-498b-ab3c-d69476579176 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f3a58340-14f9-498b-ab3c-d69476579176 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f3a58340-14f9-498b-ab3c-d69476579176 img.shogun-image {
  /* Add background color handling */
  
}

#s-f3a58340-14f9-498b-ab3c-d69476579176 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f3a58340-14f9-498b-ab3c-d69476579176 .shg-image-content-wrapper {
      aspect-ratio: 5001/4060;
      min-width: 100%;
      height: auto;
    }

    #s-f3a58340-14f9-498b-ab3c-d69476579176 .shogun-image-link {
      aspect-ratio: 5001/4060;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f3a58340-14f9-498b-ab3c-d69476579176 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f3a58340-14f9-498b-ab3c-d69476579176.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f3a58340-14f9-498b-ab3c-d69476579176 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2496px;
  }



  img.s-f3a58340-14f9-498b-ab3c-d69476579176.shogun-image {
    
    
    
    max-height: 2496px;
  }


.s-f3a58340-14f9-498b-ab3c-d69476579176 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f3a58340-14f9-498b-ab3c-d69476579176.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f3a58340-14f9-498b-ab3c-d69476579176.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f3a58340-14f9-498b-ab3c-d69476579176.shogun-image {
  box-sizing: border-box;
}



.s-f3a58340-14f9-498b-ab3c-d69476579176 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f3a58340-14f9-498b-ab3c-d69476579176 {
      --shg-aspect-ratio: calc(5001/4060); 
    }

    .s-f3a58340-14f9-498b-ab3c-d69476579176.shogun-image-container {
      position: relative;
    }

    .s-f3a58340-14f9-498b-ab3c-d69476579176.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f3a58340-14f9-498b-ab3c-d69476579176.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f3a58340-14f9-498b-ab3c-d69476579176 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2496px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-f3a58340-14f9-498b-ab3c-d69476579176 {
  margin: 0 !important;
  overflow: visible;
}

#s-f3a58340-14f9-498b-ab3c-d69476579176-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-f3a58340-14f9-498b-ab3c-d69476579176 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f3a58340-14f9-498b-ab3c-d69476579176 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f3a58340-14f9-498b-ab3c-d69476579176 img.shogun-image {
  /* Add background color handling */
  
}

#s-f3a58340-14f9-498b-ab3c-d69476579176 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f3a58340-14f9-498b-ab3c-d69476579176 .shg-image-content-wrapper {
      aspect-ratio: 5001/4060;
      min-width: 100%;
      height: auto;
    }

    #s-f3a58340-14f9-498b-ab3c-d69476579176 .shogun-image-link {
      aspect-ratio: 5001/4060;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f3a58340-14f9-498b-ab3c-d69476579176 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f3a58340-14f9-498b-ab3c-d69476579176.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f3a58340-14f9-498b-ab3c-d69476579176 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2496px;
  }



  img.s-f3a58340-14f9-498b-ab3c-d69476579176.shogun-image {
    
    
    
    max-height: 2496px;
  }


.s-f3a58340-14f9-498b-ab3c-d69476579176 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f3a58340-14f9-498b-ab3c-d69476579176.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f3a58340-14f9-498b-ab3c-d69476579176.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f3a58340-14f9-498b-ab3c-d69476579176.shogun-image {
  box-sizing: border-box;
}



.s-f3a58340-14f9-498b-ab3c-d69476579176 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f3a58340-14f9-498b-ab3c-d69476579176 {
      --shg-aspect-ratio: calc(5001/4060); 
    }

    .s-f3a58340-14f9-498b-ab3c-d69476579176.shogun-image-container {
      position: relative;
    }

    .s-f3a58340-14f9-498b-ab3c-d69476579176.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f3a58340-14f9-498b-ab3c-d69476579176.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f3a58340-14f9-498b-ab3c-d69476579176 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2496px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-f3a58340-14f9-498b-ab3c-d69476579176 {
  margin: 0 !important;
  overflow: visible;
}

#s-f3a58340-14f9-498b-ab3c-d69476579176-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-f3a58340-14f9-498b-ab3c-d69476579176 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f3a58340-14f9-498b-ab3c-d69476579176 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f3a58340-14f9-498b-ab3c-d69476579176 img.shogun-image {
  /* Add background color handling */
  
}

#s-f3a58340-14f9-498b-ab3c-d69476579176 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f3a58340-14f9-498b-ab3c-d69476579176 .shg-image-content-wrapper {
      aspect-ratio: 5001/4060;
      min-width: 100%;
      height: auto;
    }

    #s-f3a58340-14f9-498b-ab3c-d69476579176 .shogun-image-link {
      aspect-ratio: 5001/4060;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f3a58340-14f9-498b-ab3c-d69476579176 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f3a58340-14f9-498b-ab3c-d69476579176.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f3a58340-14f9-498b-ab3c-d69476579176 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2496px;
  }



  img.s-f3a58340-14f9-498b-ab3c-d69476579176.shogun-image {
    
    
    
    max-height: 2496px;
  }


.s-f3a58340-14f9-498b-ab3c-d69476579176 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f3a58340-14f9-498b-ab3c-d69476579176.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f3a58340-14f9-498b-ab3c-d69476579176.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f3a58340-14f9-498b-ab3c-d69476579176.shogun-image {
  box-sizing: border-box;
}



.s-f3a58340-14f9-498b-ab3c-d69476579176 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f3a58340-14f9-498b-ab3c-d69476579176 {
      --shg-aspect-ratio: calc(5001/4060); 
    }

    .s-f3a58340-14f9-498b-ab3c-d69476579176.shogun-image-container {
      position: relative;
    }

    .s-f3a58340-14f9-498b-ab3c-d69476579176.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f3a58340-14f9-498b-ab3c-d69476579176.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f3a58340-14f9-498b-ab3c-d69476579176 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2496px;
    }
  }

}@media (max-width: 767px){#s-f3a58340-14f9-498b-ab3c-d69476579176 {
  margin: 0 !important;
  overflow: visible;
}

#s-f3a58340-14f9-498b-ab3c-d69476579176-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-f3a58340-14f9-498b-ab3c-d69476579176 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f3a58340-14f9-498b-ab3c-d69476579176 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f3a58340-14f9-498b-ab3c-d69476579176 img.shogun-image {
  /* Add background color handling */
  
}

#s-f3a58340-14f9-498b-ab3c-d69476579176 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f3a58340-14f9-498b-ab3c-d69476579176 .shg-image-content-wrapper {
      aspect-ratio: 5001/4060;
      min-width: 100%;
      height: auto;
    }

    #s-f3a58340-14f9-498b-ab3c-d69476579176 .shogun-image-link {
      aspect-ratio: 5001/4060;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f3a58340-14f9-498b-ab3c-d69476579176 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f3a58340-14f9-498b-ab3c-d69476579176.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f3a58340-14f9-498b-ab3c-d69476579176 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2496px;
  }



  img.s-f3a58340-14f9-498b-ab3c-d69476579176.shogun-image {
    
    
    
    max-height: 2496px;
  }


.s-f3a58340-14f9-498b-ab3c-d69476579176 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f3a58340-14f9-498b-ab3c-d69476579176.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f3a58340-14f9-498b-ab3c-d69476579176.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f3a58340-14f9-498b-ab3c-d69476579176.shogun-image {
  box-sizing: border-box;
}



.s-f3a58340-14f9-498b-ab3c-d69476579176 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f3a58340-14f9-498b-ab3c-d69476579176 {
      --shg-aspect-ratio: calc(5001/4060); 
    }

    .s-f3a58340-14f9-498b-ab3c-d69476579176.shogun-image-container {
      position: relative;
    }

    .s-f3a58340-14f9-498b-ab3c-d69476579176.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f3a58340-14f9-498b-ab3c-d69476579176.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f3a58340-14f9-498b-ab3c-d69476579176 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2496px;
    }
  }

}
#s-f8271f62-3360-476d-aa38-8be1b63f4e8f {
  margin-top: 10px;
margin-left: 1%;
margin-bottom: 10px;
margin-right: 1%;
text-align: center;
}
@media (min-width: 1200px){#s-f8271f62-3360-476d-aa38-8be1b63f4e8f {
  display: none;
}
#s-f8271f62-3360-476d-aa38-8be1b63f4e8f, #wrap-s-f8271f62-3360-476d-aa38-8be1b63f4e8f, #wrap-content-s-f8271f62-3360-476d-aa38-8be1b63f4e8f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f8271f62-3360-476d-aa38-8be1b63f4e8f {
  display: none;
}
#s-f8271f62-3360-476d-aa38-8be1b63f4e8f, #wrap-s-f8271f62-3360-476d-aa38-8be1b63f4e8f, #wrap-content-s-f8271f62-3360-476d-aa38-8be1b63f4e8f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f8271f62-3360-476d-aa38-8be1b63f4e8f {
  display: none;
}
#s-f8271f62-3360-476d-aa38-8be1b63f4e8f, #wrap-s-f8271f62-3360-476d-aa38-8be1b63f4e8f, #wrap-content-s-f8271f62-3360-476d-aa38-8be1b63f4e8f { display: none !important; }}@media (max-width: 767px){#s-f8271f62-3360-476d-aa38-8be1b63f4e8f {
  display: none;
}
#s-f8271f62-3360-476d-aa38-8be1b63f4e8f, #wrap-s-f8271f62-3360-476d-aa38-8be1b63f4e8f, #wrap-content-s-f8271f62-3360-476d-aa38-8be1b63f4e8f { display: none !important; }}
#s-f8271f62-3360-476d-aa38-8be1b63f4e8f {
  margin: 0 !important;
  overflow: visible;
}

#s-f8271f62-3360-476d-aa38-8be1b63f4e8f-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-f8271f62-3360-476d-aa38-8be1b63f4e8f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 1%;
  margin-right: 1%;
  margin-top: 10px;
  margin-bottom: 10px;
}

.shg-image-content-margin-container-s-f8271f62-3360-476d-aa38-8be1b63f4e8f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f8271f62-3360-476d-aa38-8be1b63f4e8f img.shogun-image {
  /* Add background color handling */
  
}

#s-f8271f62-3360-476d-aa38-8be1b63f4e8f img.shogun-image {
  /* Add padding handling */
  padding-left: 2%;
  padding-right: 2%;
  padding-top: 10px;
  padding-bottom: 10px;
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-f8271f62-3360-476d-aa38-8be1b63f4e8f .shogun-image-content {
  
    justify-content: center;
  
}

.s-f8271f62-3360-476d-aa38-8be1b63f4e8f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f8271f62-3360-476d-aa38-8be1b63f4e8f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f8271f62-3360-476d-aa38-8be1b63f4e8f.shogun-image {
  box-sizing: border-box;
}



.s-f8271f62-3360-476d-aa38-8be1b63f4e8f img.shogun-image {
  
}


@media (min-width: 1200px){#s-f8271f62-3360-476d-aa38-8be1b63f4e8f {
  margin: 0 !important;
  overflow: visible;
}

#s-f8271f62-3360-476d-aa38-8be1b63f4e8f-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-f8271f62-3360-476d-aa38-8be1b63f4e8f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f8271f62-3360-476d-aa38-8be1b63f4e8f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f8271f62-3360-476d-aa38-8be1b63f4e8f img.shogun-image {
  /* Add background color handling */
  
}

#s-f8271f62-3360-476d-aa38-8be1b63f4e8f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-f8271f62-3360-476d-aa38-8be1b63f4e8f .shogun-image-content {
  
    justify-content: center;
  
}

.s-f8271f62-3360-476d-aa38-8be1b63f4e8f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f8271f62-3360-476d-aa38-8be1b63f4e8f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f8271f62-3360-476d-aa38-8be1b63f4e8f.shogun-image {
  box-sizing: border-box;
}



.s-f8271f62-3360-476d-aa38-8be1b63f4e8f img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-f8271f62-3360-476d-aa38-8be1b63f4e8f {
  margin: 0 !important;
  overflow: visible;
}

#s-f8271f62-3360-476d-aa38-8be1b63f4e8f-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-f8271f62-3360-476d-aa38-8be1b63f4e8f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f8271f62-3360-476d-aa38-8be1b63f4e8f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f8271f62-3360-476d-aa38-8be1b63f4e8f img.shogun-image {
  /* Add background color handling */
  
}

#s-f8271f62-3360-476d-aa38-8be1b63f4e8f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-f8271f62-3360-476d-aa38-8be1b63f4e8f .shogun-image-content {
  
    justify-content: center;
  
}

.s-f8271f62-3360-476d-aa38-8be1b63f4e8f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f8271f62-3360-476d-aa38-8be1b63f4e8f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f8271f62-3360-476d-aa38-8be1b63f4e8f.shogun-image {
  box-sizing: border-box;
}



.s-f8271f62-3360-476d-aa38-8be1b63f4e8f img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-f8271f62-3360-476d-aa38-8be1b63f4e8f {
  margin: 0 !important;
  overflow: visible;
}

#s-f8271f62-3360-476d-aa38-8be1b63f4e8f-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-f8271f62-3360-476d-aa38-8be1b63f4e8f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f8271f62-3360-476d-aa38-8be1b63f4e8f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f8271f62-3360-476d-aa38-8be1b63f4e8f img.shogun-image {
  /* Add background color handling */
  
}

#s-f8271f62-3360-476d-aa38-8be1b63f4e8f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-f8271f62-3360-476d-aa38-8be1b63f4e8f .shogun-image-content {
  
    justify-content: center;
  
}

.s-f8271f62-3360-476d-aa38-8be1b63f4e8f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f8271f62-3360-476d-aa38-8be1b63f4e8f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f8271f62-3360-476d-aa38-8be1b63f4e8f.shogun-image {
  box-sizing: border-box;
}



.s-f8271f62-3360-476d-aa38-8be1b63f4e8f img.shogun-image {
  
}


}@media (max-width: 767px){#s-f8271f62-3360-476d-aa38-8be1b63f4e8f {
  margin: 0 !important;
  overflow: visible;
}

#s-f8271f62-3360-476d-aa38-8be1b63f4e8f-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-f8271f62-3360-476d-aa38-8be1b63f4e8f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f8271f62-3360-476d-aa38-8be1b63f4e8f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f8271f62-3360-476d-aa38-8be1b63f4e8f img.shogun-image {
  /* Add background color handling */
  
}

#s-f8271f62-3360-476d-aa38-8be1b63f4e8f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-f8271f62-3360-476d-aa38-8be1b63f4e8f .shogun-image-content {
  
    justify-content: center;
  
}

.s-f8271f62-3360-476d-aa38-8be1b63f4e8f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f8271f62-3360-476d-aa38-8be1b63f4e8f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f8271f62-3360-476d-aa38-8be1b63f4e8f.shogun-image {
  box-sizing: border-box;
}



.s-f8271f62-3360-476d-aa38-8be1b63f4e8f img.shogun-image {
  
}


}
#s-8df81a82-4af1-42ef-8b01-47323509d9d9 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 1200px){#s-8df81a82-4af1-42ef-8b01-47323509d9d9 {
  display: none;
}
#s-8df81a82-4af1-42ef-8b01-47323509d9d9, #wrap-s-8df81a82-4af1-42ef-8b01-47323509d9d9, #wrap-content-s-8df81a82-4af1-42ef-8b01-47323509d9d9 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8df81a82-4af1-42ef-8b01-47323509d9d9 {
  display: none;
}
#s-8df81a82-4af1-42ef-8b01-47323509d9d9, #wrap-s-8df81a82-4af1-42ef-8b01-47323509d9d9, #wrap-content-s-8df81a82-4af1-42ef-8b01-47323509d9d9 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-8df81a82-4af1-42ef-8b01-47323509d9d9 {
  display: none;
}
#s-8df81a82-4af1-42ef-8b01-47323509d9d9, #wrap-s-8df81a82-4af1-42ef-8b01-47323509d9d9, #wrap-content-s-8df81a82-4af1-42ef-8b01-47323509d9d9 { display: none !important; }}@media (max-width: 767px){#s-8df81a82-4af1-42ef-8b01-47323509d9d9 {
  display: none;
}
#s-8df81a82-4af1-42ef-8b01-47323509d9d9, #wrap-s-8df81a82-4af1-42ef-8b01-47323509d9d9, #wrap-content-s-8df81a82-4af1-42ef-8b01-47323509d9d9 { display: none !important; }}







#s-8df81a82-4af1-42ef-8b01-47323509d9d9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8df81a82-4af1-42ef-8b01-47323509d9d9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-528b75b2-b981-4342-b60a-86e47094c610 {
  margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-left: 1%;
padding-right: 1%;
}
@media (min-width: 1200px){#s-528b75b2-b981-4342-b60a-86e47094c610 {
  display: none;
}
#s-528b75b2-b981-4342-b60a-86e47094c610, #wrap-s-528b75b2-b981-4342-b60a-86e47094c610, #wrap-content-s-528b75b2-b981-4342-b60a-86e47094c610 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-528b75b2-b981-4342-b60a-86e47094c610 {
  display: none;
}
#s-528b75b2-b981-4342-b60a-86e47094c610, #wrap-s-528b75b2-b981-4342-b60a-86e47094c610, #wrap-content-s-528b75b2-b981-4342-b60a-86e47094c610 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-528b75b2-b981-4342-b60a-86e47094c610 {
  display: none;
}
#s-528b75b2-b981-4342-b60a-86e47094c610, #wrap-s-528b75b2-b981-4342-b60a-86e47094c610, #wrap-content-s-528b75b2-b981-4342-b60a-86e47094c610 { display: none !important; }}@media (max-width: 767px){#s-528b75b2-b981-4342-b60a-86e47094c610 {
  display: none;
}
#s-528b75b2-b981-4342-b60a-86e47094c610, #wrap-s-528b75b2-b981-4342-b60a-86e47094c610, #wrap-content-s-528b75b2-b981-4342-b60a-86e47094c610 { display: none !important; }}
@media (min-width: 0px) {
[id="s-528b75b2-b981-4342-b60a-86e47094c610"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-528b75b2-b981-4342-b60a-86e47094c610"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-528b75b2-b981-4342-b60a-86e47094c610"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-528b75b2-b981-4342-b60a-86e47094c610"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-bf44751b-5d13-480e-9f64-8eec82b5001a {
  margin-left: 3%;
max-width: 5000px;
text-align: center;
}

#s-bf44751b-5d13-480e-9f64-8eec82b5001a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bf44751b-5d13-480e-9f64-8eec82b5001a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-bf44751b-5d13-480e-9f64-8eec82b5001a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 3%;
  
  
  
}

#s-bf44751b-5d13-480e-9f64-8eec82b5001a .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  padding-left: 2%;
  padding-right: 2%;
  
  
}


.shg-image-content-margin-container-s-bf44751b-5d13-480e-9f64-8eec82b5001a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bf44751b-5d13-480e-9f64-8eec82b5001a img.shogun-image {
  width: 100%;
  
  
  max-width: 5000px;

      
    max-width: 5000px;

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




.s-bf44751b-5d13-480e-9f64-8eec82b5001a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bf44751b-5d13-480e-9f64-8eec82b5001a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bf44751b-5d13-480e-9f64-8eec82b5001a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf44751b-5d13-480e-9f64-8eec82b5001a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-bf44751b-5d13-480e-9f64-8eec82b5001a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bf44751b-5d13-480e-9f64-8eec82b5001a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-bf44751b-5d13-480e-9f64-8eec82b5001a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bf44751b-5d13-480e-9f64-8eec82b5001a .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-bf44751b-5d13-480e-9f64-8eec82b5001a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bf44751b-5d13-480e-9f64-8eec82b5001a img.shogun-image {
  width: 100%;
  
  
  max-width: 5000px;

      
    max-width: 5000px;

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




.s-bf44751b-5d13-480e-9f64-8eec82b5001a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bf44751b-5d13-480e-9f64-8eec82b5001a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bf44751b-5d13-480e-9f64-8eec82b5001a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf44751b-5d13-480e-9f64-8eec82b5001a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-bf44751b-5d13-480e-9f64-8eec82b5001a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bf44751b-5d13-480e-9f64-8eec82b5001a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-bf44751b-5d13-480e-9f64-8eec82b5001a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bf44751b-5d13-480e-9f64-8eec82b5001a .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-bf44751b-5d13-480e-9f64-8eec82b5001a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bf44751b-5d13-480e-9f64-8eec82b5001a img.shogun-image {
  width: 100%;
  
  
  max-width: 5000px;

      
    max-width: 5000px;

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




.s-bf44751b-5d13-480e-9f64-8eec82b5001a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bf44751b-5d13-480e-9f64-8eec82b5001a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bf44751b-5d13-480e-9f64-8eec82b5001a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf44751b-5d13-480e-9f64-8eec82b5001a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-bf44751b-5d13-480e-9f64-8eec82b5001a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bf44751b-5d13-480e-9f64-8eec82b5001a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-bf44751b-5d13-480e-9f64-8eec82b5001a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bf44751b-5d13-480e-9f64-8eec82b5001a .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-bf44751b-5d13-480e-9f64-8eec82b5001a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bf44751b-5d13-480e-9f64-8eec82b5001a img.shogun-image {
  width: 100%;
  
  
  max-width: 5000px;

      
    max-width: 5000px;

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




.s-bf44751b-5d13-480e-9f64-8eec82b5001a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bf44751b-5d13-480e-9f64-8eec82b5001a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bf44751b-5d13-480e-9f64-8eec82b5001a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf44751b-5d13-480e-9f64-8eec82b5001a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-bf44751b-5d13-480e-9f64-8eec82b5001a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bf44751b-5d13-480e-9f64-8eec82b5001a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-bf44751b-5d13-480e-9f64-8eec82b5001a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bf44751b-5d13-480e-9f64-8eec82b5001a .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  padding-left: 0%;
  padding-right: 0%;
  
  
}


.shg-image-content-margin-container-s-bf44751b-5d13-480e-9f64-8eec82b5001a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bf44751b-5d13-480e-9f64-8eec82b5001a img.shogun-image {
  width: 100%;
  
  
  max-width: 5000px;

      
    max-width: 5000px;

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




.s-bf44751b-5d13-480e-9f64-8eec82b5001a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bf44751b-5d13-480e-9f64-8eec82b5001a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bf44751b-5d13-480e-9f64-8eec82b5001a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf44751b-5d13-480e-9f64-8eec82b5001a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-b68423f4-96bb-4335-b404-eac2752104ad {
  margin-right: 3%;
max-width: 5000px;
text-align: center;
}

#s-b68423f4-96bb-4335-b404-eac2752104ad {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-b68423f4-96bb-4335-b404-eac2752104ad-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-b68423f4-96bb-4335-b404-eac2752104ad {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  margin-right: 3%;
  
  
}

#s-b68423f4-96bb-4335-b404-eac2752104ad .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  border-radius: 10px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  padding-left: 2%;
  padding-right: 2%;
  
  
}


.shg-image-content-margin-container-s-b68423f4-96bb-4335-b404-eac2752104ad {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-b68423f4-96bb-4335-b404-eac2752104ad img.shogun-image {
  width: 100%;
  
  
  max-width: 5000px;

      
    max-width: 5000px;

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




.s-b68423f4-96bb-4335-b404-eac2752104ad .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-b68423f4-96bb-4335-b404-eac2752104ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b68423f4-96bb-4335-b404-eac2752104ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b68423f4-96bb-4335-b404-eac2752104ad.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-b68423f4-96bb-4335-b404-eac2752104ad {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-b68423f4-96bb-4335-b404-eac2752104ad-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-b68423f4-96bb-4335-b404-eac2752104ad {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-b68423f4-96bb-4335-b404-eac2752104ad .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-b68423f4-96bb-4335-b404-eac2752104ad {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-b68423f4-96bb-4335-b404-eac2752104ad img.shogun-image {
  width: 100%;
  
  
  max-width: 5000px;

      
    max-width: 5000px;

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




.s-b68423f4-96bb-4335-b404-eac2752104ad .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-b68423f4-96bb-4335-b404-eac2752104ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b68423f4-96bb-4335-b404-eac2752104ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b68423f4-96bb-4335-b404-eac2752104ad.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-b68423f4-96bb-4335-b404-eac2752104ad {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-b68423f4-96bb-4335-b404-eac2752104ad-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-b68423f4-96bb-4335-b404-eac2752104ad {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-b68423f4-96bb-4335-b404-eac2752104ad .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-b68423f4-96bb-4335-b404-eac2752104ad {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-b68423f4-96bb-4335-b404-eac2752104ad img.shogun-image {
  width: 100%;
  
  
  max-width: 5000px;

      
    max-width: 5000px;

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




.s-b68423f4-96bb-4335-b404-eac2752104ad .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-b68423f4-96bb-4335-b404-eac2752104ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b68423f4-96bb-4335-b404-eac2752104ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b68423f4-96bb-4335-b404-eac2752104ad.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-b68423f4-96bb-4335-b404-eac2752104ad {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-b68423f4-96bb-4335-b404-eac2752104ad-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-b68423f4-96bb-4335-b404-eac2752104ad {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-b68423f4-96bb-4335-b404-eac2752104ad .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-b68423f4-96bb-4335-b404-eac2752104ad {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-b68423f4-96bb-4335-b404-eac2752104ad img.shogun-image {
  width: 100%;
  
  
  max-width: 5000px;

      
    max-width: 5000px;

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




.s-b68423f4-96bb-4335-b404-eac2752104ad .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-b68423f4-96bb-4335-b404-eac2752104ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b68423f4-96bb-4335-b404-eac2752104ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b68423f4-96bb-4335-b404-eac2752104ad.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-b68423f4-96bb-4335-b404-eac2752104ad {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-b68423f4-96bb-4335-b404-eac2752104ad-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-b68423f4-96bb-4335-b404-eac2752104ad {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-b68423f4-96bb-4335-b404-eac2752104ad .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  padding-left: 0%;
  padding-right: 0%;
  
  
}


.shg-image-content-margin-container-s-b68423f4-96bb-4335-b404-eac2752104ad {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-b68423f4-96bb-4335-b404-eac2752104ad img.shogun-image {
  width: 100%;
  
  
  max-width: 5000px;

      
    max-width: 5000px;

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




.s-b68423f4-96bb-4335-b404-eac2752104ad .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-b68423f4-96bb-4335-b404-eac2752104ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b68423f4-96bb-4335-b404-eac2752104ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b68423f4-96bb-4335-b404-eac2752104ad.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-9ed1ba19-9266-4155-8e0b-2599d942b170 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 1200px){#s-9ed1ba19-9266-4155-8e0b-2599d942b170 {
  display: none;
}
#s-9ed1ba19-9266-4155-8e0b-2599d942b170, #wrap-s-9ed1ba19-9266-4155-8e0b-2599d942b170, #wrap-content-s-9ed1ba19-9266-4155-8e0b-2599d942b170 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9ed1ba19-9266-4155-8e0b-2599d942b170 {
  display: none;
}
#s-9ed1ba19-9266-4155-8e0b-2599d942b170, #wrap-s-9ed1ba19-9266-4155-8e0b-2599d942b170, #wrap-content-s-9ed1ba19-9266-4155-8e0b-2599d942b170 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-9ed1ba19-9266-4155-8e0b-2599d942b170 {
  display: none;
}
#s-9ed1ba19-9266-4155-8e0b-2599d942b170, #wrap-s-9ed1ba19-9266-4155-8e0b-2599d942b170, #wrap-content-s-9ed1ba19-9266-4155-8e0b-2599d942b170 { display: none !important; }}@media (max-width: 767px){#s-9ed1ba19-9266-4155-8e0b-2599d942b170 {
  display: none;
}
#s-9ed1ba19-9266-4155-8e0b-2599d942b170, #wrap-s-9ed1ba19-9266-4155-8e0b-2599d942b170, #wrap-content-s-9ed1ba19-9266-4155-8e0b-2599d942b170 { display: none !important; }}







#s-9ed1ba19-9266-4155-8e0b-2599d942b170 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9ed1ba19-9266-4155-8e0b-2599d942b170.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ef25bc7e-e4c8-458b-9807-c8b831d52117 {
  margin-top: 15px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-left: 1%;
padding-right: 1%;
}
@media (max-width: 767px){#s-ef25bc7e-e4c8-458b-9807-c8b831d52117 {
  margin-top: 0px;
margin-bottom: 0px;
padding-left: 0%;
padding-right: 0%;
}
}
@media (min-width: 0px) {
[id="s-ef25bc7e-e4c8-458b-9807-c8b831d52117"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ef25bc7e-e4c8-458b-9807-c8b831d52117"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-ef25bc7e-e4c8-458b-9807-c8b831d52117"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-ef25bc7e-e4c8-458b-9807-c8b831d52117"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-684c0d69-08cc-4246-bbc3-815e17bd211a {
  margin-left: 3%;
max-width: 5000px;
text-align: center;
}

#s-684c0d69-08cc-4246-bbc3-815e17bd211a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-684c0d69-08cc-4246-bbc3-815e17bd211a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-684c0d69-08cc-4246-bbc3-815e17bd211a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 3%;
  
  
  
}

#s-684c0d69-08cc-4246-bbc3-815e17bd211a .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  padding-left: 2%;
  padding-right: 2%;
  
  
}


.shg-image-content-margin-container-s-684c0d69-08cc-4246-bbc3-815e17bd211a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-684c0d69-08cc-4246-bbc3-815e17bd211a img.shogun-image {
  width: 100%;
  
  
  max-width: 5000px;

      
    max-width: 5000px;

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




.s-684c0d69-08cc-4246-bbc3-815e17bd211a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-684c0d69-08cc-4246-bbc3-815e17bd211a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-684c0d69-08cc-4246-bbc3-815e17bd211a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-684c0d69-08cc-4246-bbc3-815e17bd211a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-684c0d69-08cc-4246-bbc3-815e17bd211a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-684c0d69-08cc-4246-bbc3-815e17bd211a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-684c0d69-08cc-4246-bbc3-815e17bd211a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-684c0d69-08cc-4246-bbc3-815e17bd211a .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-684c0d69-08cc-4246-bbc3-815e17bd211a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-684c0d69-08cc-4246-bbc3-815e17bd211a img.shogun-image {
  width: 100%;
  
  
  max-width: 5000px;

      
    max-width: 5000px;

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




.s-684c0d69-08cc-4246-bbc3-815e17bd211a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-684c0d69-08cc-4246-bbc3-815e17bd211a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-684c0d69-08cc-4246-bbc3-815e17bd211a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-684c0d69-08cc-4246-bbc3-815e17bd211a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-684c0d69-08cc-4246-bbc3-815e17bd211a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-684c0d69-08cc-4246-bbc3-815e17bd211a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-684c0d69-08cc-4246-bbc3-815e17bd211a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-684c0d69-08cc-4246-bbc3-815e17bd211a .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-684c0d69-08cc-4246-bbc3-815e17bd211a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-684c0d69-08cc-4246-bbc3-815e17bd211a img.shogun-image {
  width: 100%;
  
  
  max-width: 5000px;

      
    max-width: 5000px;

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




.s-684c0d69-08cc-4246-bbc3-815e17bd211a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-684c0d69-08cc-4246-bbc3-815e17bd211a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-684c0d69-08cc-4246-bbc3-815e17bd211a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-684c0d69-08cc-4246-bbc3-815e17bd211a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-684c0d69-08cc-4246-bbc3-815e17bd211a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-684c0d69-08cc-4246-bbc3-815e17bd211a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-684c0d69-08cc-4246-bbc3-815e17bd211a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-684c0d69-08cc-4246-bbc3-815e17bd211a .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-684c0d69-08cc-4246-bbc3-815e17bd211a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-684c0d69-08cc-4246-bbc3-815e17bd211a img.shogun-image {
  width: 100%;
  
  
  max-width: 5000px;

      
    max-width: 5000px;

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




.s-684c0d69-08cc-4246-bbc3-815e17bd211a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-684c0d69-08cc-4246-bbc3-815e17bd211a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-684c0d69-08cc-4246-bbc3-815e17bd211a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-684c0d69-08cc-4246-bbc3-815e17bd211a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-684c0d69-08cc-4246-bbc3-815e17bd211a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-684c0d69-08cc-4246-bbc3-815e17bd211a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-684c0d69-08cc-4246-bbc3-815e17bd211a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-684c0d69-08cc-4246-bbc3-815e17bd211a .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-684c0d69-08cc-4246-bbc3-815e17bd211a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-684c0d69-08cc-4246-bbc3-815e17bd211a img.shogun-image {
  width: 100%;
  
  
  max-width: 5000px;

      
    max-width: 5000px;

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




.s-684c0d69-08cc-4246-bbc3-815e17bd211a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-684c0d69-08cc-4246-bbc3-815e17bd211a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-684c0d69-08cc-4246-bbc3-815e17bd211a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-684c0d69-08cc-4246-bbc3-815e17bd211a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96 {
  margin-right: 3%;
max-width: 5000px;
text-align: center;
}

#s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  margin-right: 3%;
  
  
}

#s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  border-radius: 10px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  padding-left: 2%;
  padding-right: 2%;
  
  
}


.shg-image-content-margin-container-s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96 img.shogun-image {
  width: 100%;
  
  
  max-width: 5000px;

      
    max-width: 5000px;

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




.s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96 img.shogun-image {
  width: 100%;
  
  
  max-width: 5000px;

      
    max-width: 5000px;

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




.s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96 img.shogun-image {
  width: 100%;
  
  
  max-width: 5000px;

      
    max-width: 5000px;

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




.s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96 img.shogun-image {
  width: 100%;
  
  
  max-width: 5000px;

      
    max-width: 5000px;

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




.s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96 img.shogun-image {
  width: 100%;
  
  
  max-width: 5000px;

      
    max-width: 5000px;

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




.s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c72f38a0-2977-49fa-97fd-0ccfa44b9e96.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-a20c634e-e45a-4b69-9c69-82812def48e5 {
  margin-top: 15px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-left: 1%;
padding-right: 1%;
}
@media (min-width: 1200px){#s-a20c634e-e45a-4b69-9c69-82812def48e5 {
  display: none;
}
#s-a20c634e-e45a-4b69-9c69-82812def48e5, #wrap-s-a20c634e-e45a-4b69-9c69-82812def48e5, #wrap-content-s-a20c634e-e45a-4b69-9c69-82812def48e5 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a20c634e-e45a-4b69-9c69-82812def48e5 {
  display: none;
}
#s-a20c634e-e45a-4b69-9c69-82812def48e5, #wrap-s-a20c634e-e45a-4b69-9c69-82812def48e5, #wrap-content-s-a20c634e-e45a-4b69-9c69-82812def48e5 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a20c634e-e45a-4b69-9c69-82812def48e5 {
  display: none;
}
#s-a20c634e-e45a-4b69-9c69-82812def48e5, #wrap-s-a20c634e-e45a-4b69-9c69-82812def48e5, #wrap-content-s-a20c634e-e45a-4b69-9c69-82812def48e5 { display: none !important; }}@media (max-width: 767px){#s-a20c634e-e45a-4b69-9c69-82812def48e5 {
  margin-top: 0px;
margin-bottom: 0px;
padding-left: 0%;
padding-right: 0%;
display: none;
}
#s-a20c634e-e45a-4b69-9c69-82812def48e5, #wrap-s-a20c634e-e45a-4b69-9c69-82812def48e5, #wrap-content-s-a20c634e-e45a-4b69-9c69-82812def48e5 { display: none !important; }}
@media (min-width: 0px) {
[id="s-a20c634e-e45a-4b69-9c69-82812def48e5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a20c634e-e45a-4b69-9c69-82812def48e5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-a20c634e-e45a-4b69-9c69-82812def48e5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-a20c634e-e45a-4b69-9c69-82812def48e5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-56a507d0-9ac6-4580-b273-3a4683f2443c {
  margin-left: 3%;
max-width: 2937px;
text-align: center;
}

#s-56a507d0-9ac6-4580-b273-3a4683f2443c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-56a507d0-9ac6-4580-b273-3a4683f2443c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-56a507d0-9ac6-4580-b273-3a4683f2443c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 3%;
  
  
  
}

#s-56a507d0-9ac6-4580-b273-3a4683f2443c .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  padding-left: 2%;
  padding-right: 2%;
  
  
}


.shg-image-content-margin-container-s-56a507d0-9ac6-4580-b273-3a4683f2443c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-56a507d0-9ac6-4580-b273-3a4683f2443c img.shogun-image {
  width: 100%;
  
  
  max-width: 2937px;

      
    max-width: 2937px;

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




.s-56a507d0-9ac6-4580-b273-3a4683f2443c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-56a507d0-9ac6-4580-b273-3a4683f2443c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-56a507d0-9ac6-4580-b273-3a4683f2443c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-56a507d0-9ac6-4580-b273-3a4683f2443c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-56a507d0-9ac6-4580-b273-3a4683f2443c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-56a507d0-9ac6-4580-b273-3a4683f2443c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-56a507d0-9ac6-4580-b273-3a4683f2443c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-56a507d0-9ac6-4580-b273-3a4683f2443c .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-56a507d0-9ac6-4580-b273-3a4683f2443c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-56a507d0-9ac6-4580-b273-3a4683f2443c img.shogun-image {
  width: 100%;
  
  
  max-width: 2937px;

      
    max-width: 2937px;

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




.s-56a507d0-9ac6-4580-b273-3a4683f2443c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-56a507d0-9ac6-4580-b273-3a4683f2443c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-56a507d0-9ac6-4580-b273-3a4683f2443c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-56a507d0-9ac6-4580-b273-3a4683f2443c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-56a507d0-9ac6-4580-b273-3a4683f2443c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-56a507d0-9ac6-4580-b273-3a4683f2443c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-56a507d0-9ac6-4580-b273-3a4683f2443c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-56a507d0-9ac6-4580-b273-3a4683f2443c .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-56a507d0-9ac6-4580-b273-3a4683f2443c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-56a507d0-9ac6-4580-b273-3a4683f2443c img.shogun-image {
  width: 100%;
  
  
  max-width: 2937px;

      
    max-width: 2937px;

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




.s-56a507d0-9ac6-4580-b273-3a4683f2443c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-56a507d0-9ac6-4580-b273-3a4683f2443c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-56a507d0-9ac6-4580-b273-3a4683f2443c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-56a507d0-9ac6-4580-b273-3a4683f2443c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-56a507d0-9ac6-4580-b273-3a4683f2443c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-56a507d0-9ac6-4580-b273-3a4683f2443c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-56a507d0-9ac6-4580-b273-3a4683f2443c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-56a507d0-9ac6-4580-b273-3a4683f2443c .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-56a507d0-9ac6-4580-b273-3a4683f2443c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-56a507d0-9ac6-4580-b273-3a4683f2443c img.shogun-image {
  width: 100%;
  
  
  max-width: 2937px;

      
    max-width: 2937px;

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




.s-56a507d0-9ac6-4580-b273-3a4683f2443c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-56a507d0-9ac6-4580-b273-3a4683f2443c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-56a507d0-9ac6-4580-b273-3a4683f2443c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-56a507d0-9ac6-4580-b273-3a4683f2443c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-56a507d0-9ac6-4580-b273-3a4683f2443c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-56a507d0-9ac6-4580-b273-3a4683f2443c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-56a507d0-9ac6-4580-b273-3a4683f2443c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-56a507d0-9ac6-4580-b273-3a4683f2443c .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-56a507d0-9ac6-4580-b273-3a4683f2443c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-56a507d0-9ac6-4580-b273-3a4683f2443c img.shogun-image {
  width: 100%;
  
  
  max-width: 2937px;

      
    max-width: 2937px;

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




.s-56a507d0-9ac6-4580-b273-3a4683f2443c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-56a507d0-9ac6-4580-b273-3a4683f2443c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-56a507d0-9ac6-4580-b273-3a4683f2443c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-56a507d0-9ac6-4580-b273-3a4683f2443c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-f292ac20-da3d-4535-89df-714281ced158 {
  margin-right: 3%;
max-width: 2937px;
text-align: center;
}

#s-f292ac20-da3d-4535-89df-714281ced158 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f292ac20-da3d-4535-89df-714281ced158-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f292ac20-da3d-4535-89df-714281ced158 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  margin-right: 3%;
  
  
}

#s-f292ac20-da3d-4535-89df-714281ced158 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  border-radius: 10px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  padding-left: 2%;
  padding-right: 2%;
  
  
}


.shg-image-content-margin-container-s-f292ac20-da3d-4535-89df-714281ced158 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f292ac20-da3d-4535-89df-714281ced158 img.shogun-image {
  width: 100%;
  
  
  max-width: 2937px;

      
    max-width: 2937px;

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




.s-f292ac20-da3d-4535-89df-714281ced158 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f292ac20-da3d-4535-89df-714281ced158.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f292ac20-da3d-4535-89df-714281ced158.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f292ac20-da3d-4535-89df-714281ced158.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-f292ac20-da3d-4535-89df-714281ced158 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f292ac20-da3d-4535-89df-714281ced158-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f292ac20-da3d-4535-89df-714281ced158 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f292ac20-da3d-4535-89df-714281ced158 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-f292ac20-da3d-4535-89df-714281ced158 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f292ac20-da3d-4535-89df-714281ced158 img.shogun-image {
  width: 100%;
  
  
  max-width: 2937px;

      
    max-width: 2937px;

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




.s-f292ac20-da3d-4535-89df-714281ced158 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f292ac20-da3d-4535-89df-714281ced158.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f292ac20-da3d-4535-89df-714281ced158.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f292ac20-da3d-4535-89df-714281ced158.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-f292ac20-da3d-4535-89df-714281ced158 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f292ac20-da3d-4535-89df-714281ced158-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f292ac20-da3d-4535-89df-714281ced158 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f292ac20-da3d-4535-89df-714281ced158 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-f292ac20-da3d-4535-89df-714281ced158 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f292ac20-da3d-4535-89df-714281ced158 img.shogun-image {
  width: 100%;
  
  
  max-width: 2937px;

      
    max-width: 2937px;

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




.s-f292ac20-da3d-4535-89df-714281ced158 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f292ac20-da3d-4535-89df-714281ced158.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f292ac20-da3d-4535-89df-714281ced158.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f292ac20-da3d-4535-89df-714281ced158.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-f292ac20-da3d-4535-89df-714281ced158 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f292ac20-da3d-4535-89df-714281ced158-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f292ac20-da3d-4535-89df-714281ced158 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f292ac20-da3d-4535-89df-714281ced158 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-f292ac20-da3d-4535-89df-714281ced158 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f292ac20-da3d-4535-89df-714281ced158 img.shogun-image {
  width: 100%;
  
  
  max-width: 2937px;

      
    max-width: 2937px;

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




.s-f292ac20-da3d-4535-89df-714281ced158 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f292ac20-da3d-4535-89df-714281ced158.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f292ac20-da3d-4535-89df-714281ced158.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f292ac20-da3d-4535-89df-714281ced158.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-f292ac20-da3d-4535-89df-714281ced158 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f292ac20-da3d-4535-89df-714281ced158-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f292ac20-da3d-4535-89df-714281ced158 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f292ac20-da3d-4535-89df-714281ced158 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-f292ac20-da3d-4535-89df-714281ced158 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f292ac20-da3d-4535-89df-714281ced158 img.shogun-image {
  width: 100%;
  
  
  max-width: 2937px;

      
    max-width: 2937px;

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




.s-f292ac20-da3d-4535-89df-714281ced158 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f292ac20-da3d-4535-89df-714281ced158.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f292ac20-da3d-4535-89df-714281ced158.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f292ac20-da3d-4535-89df-714281ced158.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-68073605-26cc-4392-8a26-55803c109a1c {
  margin-top: 15px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-left: 1%;
padding-right: 1%;
}
@media (min-width: 1200px){#s-68073605-26cc-4392-8a26-55803c109a1c {
  display: none;
}
#s-68073605-26cc-4392-8a26-55803c109a1c, #wrap-s-68073605-26cc-4392-8a26-55803c109a1c, #wrap-content-s-68073605-26cc-4392-8a26-55803c109a1c { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-68073605-26cc-4392-8a26-55803c109a1c {
  display: none;
}
#s-68073605-26cc-4392-8a26-55803c109a1c, #wrap-s-68073605-26cc-4392-8a26-55803c109a1c, #wrap-content-s-68073605-26cc-4392-8a26-55803c109a1c { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-68073605-26cc-4392-8a26-55803c109a1c {
  display: none;
}
#s-68073605-26cc-4392-8a26-55803c109a1c, #wrap-s-68073605-26cc-4392-8a26-55803c109a1c, #wrap-content-s-68073605-26cc-4392-8a26-55803c109a1c { display: none !important; }}@media (max-width: 767px){#s-68073605-26cc-4392-8a26-55803c109a1c {
  margin-top: 0px;
margin-bottom: 0px;
padding-left: 0%;
padding-right: 0%;
display: none;
}
#s-68073605-26cc-4392-8a26-55803c109a1c, #wrap-s-68073605-26cc-4392-8a26-55803c109a1c, #wrap-content-s-68073605-26cc-4392-8a26-55803c109a1c { display: none !important; }}
@media (min-width: 0px) {
[id="s-68073605-26cc-4392-8a26-55803c109a1c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-68073605-26cc-4392-8a26-55803c109a1c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-68073605-26cc-4392-8a26-55803c109a1c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-68073605-26cc-4392-8a26-55803c109a1c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83 {
  margin-left: 3%;
max-width: 2937px;
text-align: center;
}

#s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 3%;
  
  
  
}

#s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  padding-left: 2%;
  padding-right: 2%;
  
  
}


.shg-image-content-margin-container-s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83 img.shogun-image {
  width: 100%;
  
  
  max-width: 2937px;

      
    max-width: 2937px;

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




.s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83.shg-align-container {
  display: flex;
  justify-content: center
}

.s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83 img.shogun-image {
  width: 100%;
  
  
  max-width: 2937px;

      
    max-width: 2937px;

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




.s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83.shg-align-container {
  display: flex;
  justify-content: center
}

.s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83 img.shogun-image {
  width: 100%;
  
  
  max-width: 2937px;

      
    max-width: 2937px;

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




.s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83.shg-align-container {
  display: flex;
  justify-content: center
}

.s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83 img.shogun-image {
  width: 100%;
  
  
  max-width: 2937px;

      
    max-width: 2937px;

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




.s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83.shg-align-container {
  display: flex;
  justify-content: center
}

.s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83 img.shogun-image {
  width: 100%;
  
  
  max-width: 2937px;

      
    max-width: 2937px;

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




.s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83.shg-align-container {
  display: flex;
  justify-content: center
}

.s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-39d0a60b-18b6-45f4-9d01-7ec4cd4d6e83.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec {
  margin-right: 3%;
max-width: 2937px;
text-align: center;
}

#s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  margin-right: 3%;
  
  
}

#s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  border-radius: 10px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  padding-left: 2%;
  padding-right: 2%;
  
  
}


.shg-image-content-margin-container-s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec img.shogun-image {
  width: 100%;
  
  
  max-width: 2937px;

      
    max-width: 2937px;

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




.s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec img.shogun-image {
  width: 100%;
  
  
  max-width: 2937px;

      
    max-width: 2937px;

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




.s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec img.shogun-image {
  width: 100%;
  
  
  max-width: 2937px;

      
    max-width: 2937px;

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




.s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec img.shogun-image {
  width: 100%;
  
  
  max-width: 2937px;

      
    max-width: 2937px;

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




.s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec img.shogun-image {
  width: 100%;
  
  
  max-width: 2937px;

      
    max-width: 2937px;

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




.s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4c963027-7b5a-4d0c-b3fb-e0530424a0ec.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-fccb65ba-163f-4463-9281-0fc096ed7361 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(209, 251, 84, 0);
}
@media (min-width: 1200px){#s-fccb65ba-163f-4463-9281-0fc096ed7361 {
  text-align: center;
}
}
#s-fccb65ba-163f-4463-9281-0fc096ed7361 .shogun-heading-component h1 {
  
  font-weight:  600 ;
  font-family: "Maven Pro";
  font-style:  normal ;
  font-size: 17px;
  
  
  
}


@media (min-width: 1200px){#s-fccb65ba-163f-4463-9281-0fc096ed7361 .shogun-heading-component h1 {
  color: rgba(33, 33, 33, 1);
  font-weight:  600 ;
  font-family: "Maven Pro";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


}
#s-8a6cfcbd-cddf-4632-8f6a-a008e5f80a28 {
  margin-left: auto;
margin-right: auto;
padding-left: 4%;
padding-right: 4%;
min-height: 50px;
}








#s-8a6cfcbd-cddf-4632-8f6a-a008e5f80a28 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8a6cfcbd-cddf-4632-8f6a-a008e5f80a28.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-349e49cf-9f5e-4e53-a3c1-2d2cc7cc4051 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-3eeb85ac-169d-4ec1-be5e-34bfdbf787d0 {
  margin-top: 15px;
margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
padding-left: 4%;
padding-right: 4%;
min-height: 50px;
}








#s-3eeb85ac-169d-4ec1-be5e-34bfdbf787d0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3eeb85ac-169d-4ec1-be5e-34bfdbf787d0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d52be9ad-5f3e-4705-a720-dce2aee0ee5a {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-4245291a-b882-44c8-b28a-d2da648db369 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-4245291a-b882-44c8-b28a-d2da648db369 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4245291a-b882-44c8-b28a-d2da648db369.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

.shg-category-root {
  display: grid;
  column-gap: 10px;
  row-gap: 20px;
}

.shg-default-column-count-2 {
  grid-template-columns: repeat(2, 1fr);
}

.shg-default-column-count-3 {
  grid-template-columns: repeat(3, 1fr);
}

.shg-default-column-count-4 {
  grid-template-columns: repeat(4, 1fr);
}

.shg-default-column-count-5 {
  grid-template-columns: repeat(5, 1fr);
}

.shg-default-column-count-6 {
  grid-template-columns: repeat(6, 1fr);
}

.shg-category-grid .shg-product-image-wrapper img.shogun-image {
  width: 100%;
}

@media (max-width: 767px) {
  .shg-category-root.stacked {
    display: block;
  }
}

/* Swiper CSS - Duplicated from SliderV3 base.css */

.shg-swiper-container {
  --arrow-button-size: 35px;
  --pagination-height: 32px;
  --swiper-pagination-bullet-size: 14px;
  --swiper-pagination-bottom: 8px;

  position: relative;
  /*
  * In case you are wondering, why it's set to grid, please see the links below:
   * https://github.com/nolimits4web/swiper/issues/3599
   * https://github.com/nolimits4web/swiper/issues/3599#issuecomment-1290283431
   */
  display: grid;
  padding: 8px var(--arrow-button-size) var(--pagination-height)
    var(--arrow-button-size);
}

.shg-swiper:not(.swiper-initialized) {
  visibility: hidden;
  display: flex;
  overflow-x: hidden;
}

.shg-swiper-container > .shg-swiper {
  margin-left: 0;
  margin-right: 0;
}

.shg-swiper:not(.swiper-initialized) ~ .swiper-pagination,
.shg-swiper:not(.swiper-initialized) ~ .swiper-button-prev,
.shg-swiper:not(.swiper-initialized) ~ .swiper-button-next {
  visibility: hidden;
}

.shg-swiper-container > .swiper-button-prev,
.shg-swiper-container > .swiper-button-next {
  top: 0;
  height: calc(100% - var(--pagination-height));
  width: var(--arrow-button-size);
  margin: 0;
}

.shg-swiper-container > .swiper-button-prev {
  left: 0;
}

.shg-swiper-container > .swiper-button-next {
  right: 0;
}

.shg-swiper-container > .swiper-button-next:after,
.shg-swiper-container > .swiper-button-prev:after {
  /* Ditch default Swiper arrow */
  display: none;
}

.shg-swiper-container > .swiper-button-next svg,
.shg-swiper-container > .swiper-button-prev svg {
  width: var(--arrow-button-size);
  height: var(--arrow-button-size);
}

#s-7b3292cd-4ffb-4285-8afd-86a049dbbfda {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-7b3292cd-4ffb-4285-8afd-86a049dbbfda {
  padding-top: 20px;
padding-left: 3%;
padding-bottom: 20px;
padding-right: 3%;
}
}
#s-7b3292cd-4ffb-4285-8afd-86a049dbbfda .shg-dynamic-column-count {
  grid-template-columns: repeat(3, 1fr);
}


#slider-v3-s-7b3292cd-4ffb-4285-8afd-86a049dbbfda {
  --swiper-pagination-color: rgba(113, 113, 113, 1) !important;
  --swiper-pagination-bullet-inactive-color: rgba(113, 113, 113, 1) !important;
  --swiper-pagination-bullet-active-color: rgba(113, 113, 113, 1) !important;
  --arrow-button-size: 35px !important;
  --swiper-pagination-bullet-size: 14px !important;
  
}

#slider-v3-s-7b3292cd-4ffb-4285-8afd-86a049dbbfda > .swiper-button-prev,
#slider-v3-s-7b3292cd-4ffb-4285-8afd-86a049dbbfda > .swiper-button-next {
  
}

#slider-v3-s-7b3292cd-4ffb-4285-8afd-86a049dbbfda > .swiper-button-prev svg,
#slider-v3-s-7b3292cd-4ffb-4285-8afd-86a049dbbfda > .swiper-button-next svg {
  fill: rgba(113, 113, 113, 1) !important;
  stroke: rgba(113, 113, 113, 1) !important;
  
}

#slider-v3-s-7b3292cd-4ffb-4285-8afd-86a049dbbfda > .swiper-button-prev {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-7b3292cd-4ffb-4285-8afd-86a049dbbfda > .swiper-button-next {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-7b3292cd-4ffb-4285-8afd-86a049dbbfda > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-7b3292cd-4ffb-4285-8afd-86a049dbbfda .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-7b3292cd-4ffb-4285-8afd-86a049dbbfda .swiper-pagination-bullet-active {
  background-color: rgba(113, 113, 113, 1) !important;
  width: calc(14px * 1) !important;
  height: 14px !important;
  border-radius:  50px  !important;
}

#slider-v3-s-7b3292cd-4ffb-4285-8afd-86a049dbbfda .swiper-pagination {
  position:  initial ;
  display: flex;
  margin-top:  8px ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}
@media (min-width: 1200px){#s-7b3292cd-4ffb-4285-8afd-86a049dbbfda .shg-dynamic-column-count {
  grid-template-columns: repeat(3, 1fr);
}


#slider-v3-s-7b3292cd-4ffb-4285-8afd-86a049dbbfda {
  --swiper-pagination-color: rgba(113, 113, 113, 1) !important;
  --swiper-pagination-bullet-inactive-color: rgba(113, 113, 113, 1) !important;
  --swiper-pagination-bullet-active-color: rgba(113, 113, 113, 1) !important;
  --arrow-button-size: 35px !important;
  --swiper-pagination-bullet-size: 14px !important;
  
}

#slider-v3-s-7b3292cd-4ffb-4285-8afd-86a049dbbfda > .swiper-button-prev,
#slider-v3-s-7b3292cd-4ffb-4285-8afd-86a049dbbfda > .swiper-button-next {
  
}

#slider-v3-s-7b3292cd-4ffb-4285-8afd-86a049dbbfda > .swiper-button-prev svg,
#slider-v3-s-7b3292cd-4ffb-4285-8afd-86a049dbbfda > .swiper-button-next svg {
  fill: rgba(113, 113, 113, 1) !important;
  stroke: rgba(113, 113, 113, 1) !important;
  
}

#slider-v3-s-7b3292cd-4ffb-4285-8afd-86a049dbbfda > .swiper-button-prev {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-7b3292cd-4ffb-4285-8afd-86a049dbbfda > .swiper-button-next {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-7b3292cd-4ffb-4285-8afd-86a049dbbfda > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-7b3292cd-4ffb-4285-8afd-86a049dbbfda .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-7b3292cd-4ffb-4285-8afd-86a049dbbfda .swiper-pagination-bullet-active {
  background-color: rgba(113, 113, 113, 1) !important;
  width: calc(14px * 1) !important;
  height: 14px !important;
  border-radius:  50px  !important;
}

#slider-v3-s-7b3292cd-4ffb-4285-8afd-86a049dbbfda .swiper-pagination {
  position:  initial ;
  display: flex;
  margin-top:  8px ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}
}
#s-4016a536-bf7e-4b7f-bbeb-164a555ee201 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-4016a536-bf7e-4b7f-bbeb-164a555ee201 {
  margin-top: 2px;
margin-bottom: 2px;
padding-left: 3%;
padding-right: 3%;
border-top-width: 0.5px;
border-left-width: 0.5px;
border-bottom-width: 0.5px;
border-right-width: 0.5px;
border-color: rgba(205, 205, 205, 1);
border-style: solid;
min-height: 350px;
}
}
.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-e70fccf9-ad67-4fe6-a406-8b4aaba84844 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}
@media (min-width: 1200px){#s-e70fccf9-ad67-4fe6-a406-8b4aaba84844 {
  padding-top: 15px;
padding-bottom: 15px;
text-align: center;
}
}


.shg-c#s-e70fccf9-ad67-4fe6-a406-8b4aaba84844 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e70fccf9-ad67-4fe6-a406-8b4aaba84844 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){
.shg-c#s-e70fccf9-ad67-4fe6-a406-8b4aaba84844 {
  max-width:  100%;
}

.shg-c#s-e70fccf9-ad67-4fe6-a406-8b4aaba84844 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-e70fccf9-ad67-4fe6-a406-8b4aaba84844 .shg-image-zoom,
.shg-c#s-e70fccf9-ad67-4fe6-a406-8b4aaba84844 img.shogun-image {
  max-width: 200px !important;
  min-height: 200px !important;
}

.shg-c#s-e70fccf9-ad67-4fe6-a406-8b4aaba84844 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-e70fccf9-ad67-4fe6-a406-8b4aaba84844 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e70fccf9-ad67-4fe6-a406-8b4aaba84844 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-e70fccf9-ad67-4fe6-a406-8b4aaba84844 img.shogun-image,
.shg-c#s-e70fccf9-ad67-4fe6-a406-8b4aaba84844 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-e70fccf9-ad67-4fe6-a406-8b4aaba84844 .shg-image-zoom,
.shg-c#s-e70fccf9-ad67-4fe6-a406-8b4aaba84844 img.shogun-image {
  aspect-ratio: 1:1;
  
  
  
  
  
  
  
}



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

.shg-c#s-e70fccf9-ad67-4fe6-a406-8b4aaba84844 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e70fccf9-ad67-4fe6-a406-8b4aaba84844 img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-e70fccf9-ad67-4fe6-a406-8b4aaba84844 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e70fccf9-ad67-4fe6-a406-8b4aaba84844 img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-e70fccf9-ad67-4fe6-a406-8b4aaba84844 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e70fccf9-ad67-4fe6-a406-8b4aaba84844 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-eb8a7e88-9849-48fc-876b-1170be0f58e0 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}
@media (min-width: 1200px){#s-eb8a7e88-9849-48fc-876b-1170be0f58e0 {
  text-align: left;
}
}
#s-eb8a7e88-9849-48fc-876b-1170be0f58e0 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-eb8a7e88-9849-48fc-876b-1170be0f58e0 .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-eb8a7e88-9849-48fc-876b-1170be0f58e0 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
@media (min-width: 1200px){#s-eb8a7e88-9849-48fc-876b-1170be0f58e0 .shg-product-sold-out {
  display: none;
  color: rgba(255, 0, 0, 1);
  font-size: 19px;
  font-weight:  600 ;
  font-family: Maven Pro;
  font-style:  normal ;
}

#s-eb8a7e88-9849-48fc-876b-1170be0f58e0 .shg-product-price {
  color: rgba(255, 0, 0, 1);
  font-weight:  600 ;
  font-family: Maven Pro;
  font-style:  normal ;
  font-size: 19px;
}

#s-eb8a7e88-9849-48fc-876b-1170be0f58e0 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(17, 17, 17, 1);
  
  
  font-style:  normal ;
  font-size: 17px;
  padding-left: 10px;
}
}
.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-5f6baed5-9387-49d7-8085-de2121bc80a5 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-5f6baed5-9387-49d7-8085-de2121bc80a5 {
  text-align: left;
}
}
#s-5f6baed5-9387-49d7-8085-de2121bc80a5 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}
@media (min-width: 1200px){#s-5f6baed5-9387-49d7-8085-de2121bc80a5 .shg-product-title-component h3 span {
  
  font-weight:  500 ;
  font-family: Maven Pro;
  
  font-size: 15px;
  
  
  
}
}
#s-66caa428-e58c-4ad7-b31f-3fa6b7dce5b1 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-66caa428-e58c-4ad7-b31f-3fa6b7dce5b1 {
  margin-top: 2px;
margin-bottom: 2px;
padding-left: 3%;
padding-right: 3%;
border-top-width: 0.5px;
border-left-width: 0.5px;
border-bottom-width: 0.5px;
border-right-width: 0.5px;
border-color: rgba(205, 205, 205, 1);
border-style: solid;
min-height: 350px;
}
}
#s-0e69b6ff-0195-4a46-8066-36b04e9b142c {
  margin-left: auto;
margin-right: auto;
text-align: left;
}
@media (min-width: 1200px){#s-0e69b6ff-0195-4a46-8066-36b04e9b142c {
  padding-top: 15px;
padding-bottom: 15px;
text-align: center;
}
}


.shg-c#s-0e69b6ff-0195-4a46-8066-36b04e9b142c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0e69b6ff-0195-4a46-8066-36b04e9b142c img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){
.shg-c#s-0e69b6ff-0195-4a46-8066-36b04e9b142c {
  max-width:  100%;
}

.shg-c#s-0e69b6ff-0195-4a46-8066-36b04e9b142c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0e69b6ff-0195-4a46-8066-36b04e9b142c .shg-image-zoom,
.shg-c#s-0e69b6ff-0195-4a46-8066-36b04e9b142c img.shogun-image {
  max-width: 200px !important;
  min-height: 200px !important;
}

.shg-c#s-0e69b6ff-0195-4a46-8066-36b04e9b142c .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-0e69b6ff-0195-4a46-8066-36b04e9b142c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0e69b6ff-0195-4a46-8066-36b04e9b142c img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-0e69b6ff-0195-4a46-8066-36b04e9b142c img.shogun-image,
.shg-c#s-0e69b6ff-0195-4a46-8066-36b04e9b142c .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-0e69b6ff-0195-4a46-8066-36b04e9b142c .shg-image-zoom,
.shg-c#s-0e69b6ff-0195-4a46-8066-36b04e9b142c img.shogun-image {
  aspect-ratio: 1:1;
  
  
  
  
  
  
  
}



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

.shg-c#s-0e69b6ff-0195-4a46-8066-36b04e9b142c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0e69b6ff-0195-4a46-8066-36b04e9b142c img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-0e69b6ff-0195-4a46-8066-36b04e9b142c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0e69b6ff-0195-4a46-8066-36b04e9b142c img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-0e69b6ff-0195-4a46-8066-36b04e9b142c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0e69b6ff-0195-4a46-8066-36b04e9b142c img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-b5e0aba0-4fc8-4d90-af6e-f239d190c8b9 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}
@media (min-width: 1200px){#s-b5e0aba0-4fc8-4d90-af6e-f239d190c8b9 {
  text-align: left;
}
}
#s-b5e0aba0-4fc8-4d90-af6e-f239d190c8b9 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-b5e0aba0-4fc8-4d90-af6e-f239d190c8b9 .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-b5e0aba0-4fc8-4d90-af6e-f239d190c8b9 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
@media (min-width: 1200px){#s-b5e0aba0-4fc8-4d90-af6e-f239d190c8b9 .shg-product-sold-out {
  display: none;
  color: rgba(255, 0, 0, 1);
  font-size: 19px;
  font-weight:  600 ;
  font-family: Maven Pro;
  font-style:  normal ;
}

#s-b5e0aba0-4fc8-4d90-af6e-f239d190c8b9 .shg-product-price {
  color: rgba(255, 0, 0, 1);
  font-weight:  600 ;
  font-family: Maven Pro;
  font-style:  normal ;
  font-size: 19px;
}

#s-b5e0aba0-4fc8-4d90-af6e-f239d190c8b9 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(17, 17, 17, 1);
  
  
  font-style:  normal ;
  font-size: 17px;
  padding-left: 10px;
}
}
#s-a9efcfe8-0413-4b5e-b432-1c97284b5851 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-a9efcfe8-0413-4b5e-b432-1c97284b5851 {
  text-align: left;
}
}
#s-a9efcfe8-0413-4b5e-b432-1c97284b5851 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}
@media (min-width: 1200px){#s-a9efcfe8-0413-4b5e-b432-1c97284b5851 .shg-product-title-component h3 span {
  
  font-weight:  500 ;
  font-family: Maven Pro;
  
  font-size: 15px;
  
  
  
}
}
#s-e68b9702-434c-481e-95a9-ffe412ac01c7 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-e68b9702-434c-481e-95a9-ffe412ac01c7 {
  margin-top: 2px;
margin-bottom: 2px;
padding-left: 3%;
padding-right: 3%;
border-top-width: 0.5px;
border-left-width: 0.5px;
border-bottom-width: 0.5px;
border-right-width: 0.5px;
border-color: rgba(205, 205, 205, 1);
border-style: solid;
min-height: 350px;
}
}
#s-3a3cb2f8-2f53-47a0-b438-5c5f3e328ca2 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}
@media (min-width: 1200px){#s-3a3cb2f8-2f53-47a0-b438-5c5f3e328ca2 {
  padding-top: 15px;
padding-bottom: 15px;
text-align: center;
}
}


.shg-c#s-3a3cb2f8-2f53-47a0-b438-5c5f3e328ca2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3a3cb2f8-2f53-47a0-b438-5c5f3e328ca2 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){
.shg-c#s-3a3cb2f8-2f53-47a0-b438-5c5f3e328ca2 {
  max-width:  100%;
}

.shg-c#s-3a3cb2f8-2f53-47a0-b438-5c5f3e328ca2 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3a3cb2f8-2f53-47a0-b438-5c5f3e328ca2 .shg-image-zoom,
.shg-c#s-3a3cb2f8-2f53-47a0-b438-5c5f3e328ca2 img.shogun-image {
  max-width: 200px !important;
  min-height: 200px !important;
}

.shg-c#s-3a3cb2f8-2f53-47a0-b438-5c5f3e328ca2 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-3a3cb2f8-2f53-47a0-b438-5c5f3e328ca2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3a3cb2f8-2f53-47a0-b438-5c5f3e328ca2 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-3a3cb2f8-2f53-47a0-b438-5c5f3e328ca2 img.shogun-image,
.shg-c#s-3a3cb2f8-2f53-47a0-b438-5c5f3e328ca2 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-3a3cb2f8-2f53-47a0-b438-5c5f3e328ca2 .shg-image-zoom,
.shg-c#s-3a3cb2f8-2f53-47a0-b438-5c5f3e328ca2 img.shogun-image {
  aspect-ratio: 1:1;
  
  
  
  
  
  
  
}



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

.shg-c#s-3a3cb2f8-2f53-47a0-b438-5c5f3e328ca2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3a3cb2f8-2f53-47a0-b438-5c5f3e328ca2 img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-3a3cb2f8-2f53-47a0-b438-5c5f3e328ca2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3a3cb2f8-2f53-47a0-b438-5c5f3e328ca2 img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-3a3cb2f8-2f53-47a0-b438-5c5f3e328ca2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3a3cb2f8-2f53-47a0-b438-5c5f3e328ca2 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-1c24ab29-a91f-42bb-80f3-611da0c8049d {
  margin-left: auto;
margin-right: auto;
text-align: center;
}
@media (min-width: 1200px){#s-1c24ab29-a91f-42bb-80f3-611da0c8049d {
  text-align: left;
}
}
#s-1c24ab29-a91f-42bb-80f3-611da0c8049d .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-1c24ab29-a91f-42bb-80f3-611da0c8049d .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-1c24ab29-a91f-42bb-80f3-611da0c8049d .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
@media (min-width: 1200px){#s-1c24ab29-a91f-42bb-80f3-611da0c8049d .shg-product-sold-out {
  display: none;
  color: rgba(255, 0, 0, 1);
  font-size: 19px;
  font-weight:  600 ;
  font-family: Maven Pro;
  font-style:  normal ;
}

#s-1c24ab29-a91f-42bb-80f3-611da0c8049d .shg-product-price {
  color: rgba(255, 0, 0, 1);
  font-weight:  600 ;
  font-family: Maven Pro;
  font-style:  normal ;
  font-size: 19px;
}

#s-1c24ab29-a91f-42bb-80f3-611da0c8049d .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(17, 17, 17, 1);
  
  
  font-style:  normal ;
  font-size: 17px;
  padding-left: 10px;
}
}
#s-039bd4c9-5486-40c3-9ae1-12733c6be1f8 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-039bd4c9-5486-40c3-9ae1-12733c6be1f8 {
  text-align: left;
}
}
#s-039bd4c9-5486-40c3-9ae1-12733c6be1f8 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}
@media (min-width: 1200px){#s-039bd4c9-5486-40c3-9ae1-12733c6be1f8 .shg-product-title-component h3 span {
  
  font-weight:  500 ;
  font-family: Maven Pro;
  
  font-size: 15px;
  
  
  
}
}
#s-1d6d5c89-7c13-4f70-93bd-b1e55f491794 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-1d6d5c89-7c13-4f70-93bd-b1e55f491794 {
  margin-top: 2px;
margin-bottom: 2px;
padding-left: 3%;
padding-right: 3%;
border-top-width: 0.5px;
border-left-width: 0.5px;
border-bottom-width: 0.5px;
border-right-width: 0.5px;
border-color: rgba(205, 205, 205, 1);
border-style: solid;
min-height: 350px;
}
}
#s-c51fdb30-8b58-4004-bf46-e4471d30c8e9 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}
@media (min-width: 1200px){#s-c51fdb30-8b58-4004-bf46-e4471d30c8e9 {
  padding-top: 15px;
padding-bottom: 15px;
text-align: center;
}
}


.shg-c#s-c51fdb30-8b58-4004-bf46-e4471d30c8e9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c51fdb30-8b58-4004-bf46-e4471d30c8e9 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){
.shg-c#s-c51fdb30-8b58-4004-bf46-e4471d30c8e9 {
  max-width:  100%;
}

.shg-c#s-c51fdb30-8b58-4004-bf46-e4471d30c8e9 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c51fdb30-8b58-4004-bf46-e4471d30c8e9 .shg-image-zoom,
.shg-c#s-c51fdb30-8b58-4004-bf46-e4471d30c8e9 img.shogun-image {
  max-width: 200px !important;
  min-height: 200px !important;
}

.shg-c#s-c51fdb30-8b58-4004-bf46-e4471d30c8e9 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-c51fdb30-8b58-4004-bf46-e4471d30c8e9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c51fdb30-8b58-4004-bf46-e4471d30c8e9 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-c51fdb30-8b58-4004-bf46-e4471d30c8e9 img.shogun-image,
.shg-c#s-c51fdb30-8b58-4004-bf46-e4471d30c8e9 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-c51fdb30-8b58-4004-bf46-e4471d30c8e9 .shg-image-zoom,
.shg-c#s-c51fdb30-8b58-4004-bf46-e4471d30c8e9 img.shogun-image {
  aspect-ratio: 1:1;
  
  
  
  
  
  
  
}



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

.shg-c#s-c51fdb30-8b58-4004-bf46-e4471d30c8e9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c51fdb30-8b58-4004-bf46-e4471d30c8e9 img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-c51fdb30-8b58-4004-bf46-e4471d30c8e9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c51fdb30-8b58-4004-bf46-e4471d30c8e9 img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-c51fdb30-8b58-4004-bf46-e4471d30c8e9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c51fdb30-8b58-4004-bf46-e4471d30c8e9 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-0ec43c77-60ab-4499-93af-17cca6c956d3 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}
@media (min-width: 1200px){#s-0ec43c77-60ab-4499-93af-17cca6c956d3 {
  text-align: left;
}
}
#s-0ec43c77-60ab-4499-93af-17cca6c956d3 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-0ec43c77-60ab-4499-93af-17cca6c956d3 .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-0ec43c77-60ab-4499-93af-17cca6c956d3 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
@media (min-width: 1200px){#s-0ec43c77-60ab-4499-93af-17cca6c956d3 .shg-product-sold-out {
  display: none;
  color: rgba(255, 0, 0, 1);
  font-size: 19px;
  font-weight:  600 ;
  font-family: Maven Pro;
  font-style:  normal ;
}

#s-0ec43c77-60ab-4499-93af-17cca6c956d3 .shg-product-price {
  color: rgba(255, 0, 0, 1);
  font-weight:  600 ;
  font-family: Maven Pro;
  font-style:  normal ;
  font-size: 19px;
}

#s-0ec43c77-60ab-4499-93af-17cca6c956d3 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(17, 17, 17, 1);
  
  
  font-style:  normal ;
  font-size: 17px;
  padding-left: 10px;
}
}
#s-f34a7f16-3705-4201-a6c1-33bd97ffdebc {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-f34a7f16-3705-4201-a6c1-33bd97ffdebc {
  text-align: left;
}
}
#s-f34a7f16-3705-4201-a6c1-33bd97ffdebc .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}
@media (min-width: 1200px){#s-f34a7f16-3705-4201-a6c1-33bd97ffdebc .shg-product-title-component h3 span {
  
  font-weight:  500 ;
  font-family: Maven Pro;
  
  font-size: 15px;
  
  
  
}
}
#s-c36e14df-4449-4997-aa61-d8e3bb0242a1 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-c36e14df-4449-4997-aa61-d8e3bb0242a1 {
  margin-top: 2px;
margin-bottom: 2px;
padding-left: 3%;
padding-right: 3%;
border-top-width: 0.5px;
border-left-width: 0.5px;
border-bottom-width: 0.5px;
border-right-width: 0.5px;
border-color: rgba(205, 205, 205, 1);
border-style: solid;
min-height: 350px;
}
}
#s-a73016af-1565-48f9-8d25-4054cdd2cbd2 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}
@media (min-width: 1200px){#s-a73016af-1565-48f9-8d25-4054cdd2cbd2 {
  padding-top: 15px;
padding-bottom: 15px;
text-align: center;
}
}


.shg-c#s-a73016af-1565-48f9-8d25-4054cdd2cbd2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a73016af-1565-48f9-8d25-4054cdd2cbd2 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){
.shg-c#s-a73016af-1565-48f9-8d25-4054cdd2cbd2 {
  max-width:  100%;
}

.shg-c#s-a73016af-1565-48f9-8d25-4054cdd2cbd2 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a73016af-1565-48f9-8d25-4054cdd2cbd2 .shg-image-zoom,
.shg-c#s-a73016af-1565-48f9-8d25-4054cdd2cbd2 img.shogun-image {
  max-width: 200px !important;
  min-height: 200px !important;
}

.shg-c#s-a73016af-1565-48f9-8d25-4054cdd2cbd2 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-a73016af-1565-48f9-8d25-4054cdd2cbd2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a73016af-1565-48f9-8d25-4054cdd2cbd2 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-a73016af-1565-48f9-8d25-4054cdd2cbd2 img.shogun-image,
.shg-c#s-a73016af-1565-48f9-8d25-4054cdd2cbd2 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-a73016af-1565-48f9-8d25-4054cdd2cbd2 .shg-image-zoom,
.shg-c#s-a73016af-1565-48f9-8d25-4054cdd2cbd2 img.shogun-image {
  aspect-ratio: 1:1;
  
  
  
  
  
  
  
}



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

.shg-c#s-a73016af-1565-48f9-8d25-4054cdd2cbd2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a73016af-1565-48f9-8d25-4054cdd2cbd2 img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-a73016af-1565-48f9-8d25-4054cdd2cbd2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a73016af-1565-48f9-8d25-4054cdd2cbd2 img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-a73016af-1565-48f9-8d25-4054cdd2cbd2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a73016af-1565-48f9-8d25-4054cdd2cbd2 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-e6298d75-17ba-4794-bede-20f13722b5a3 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}
@media (min-width: 1200px){#s-e6298d75-17ba-4794-bede-20f13722b5a3 {
  text-align: left;
}
}
#s-e6298d75-17ba-4794-bede-20f13722b5a3 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-e6298d75-17ba-4794-bede-20f13722b5a3 .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-e6298d75-17ba-4794-bede-20f13722b5a3 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
@media (min-width: 1200px){#s-e6298d75-17ba-4794-bede-20f13722b5a3 .shg-product-sold-out {
  display: none;
  color: rgba(255, 0, 0, 1);
  font-size: 19px;
  font-weight:  600 ;
  font-family: Maven Pro;
  font-style:  normal ;
}

#s-e6298d75-17ba-4794-bede-20f13722b5a3 .shg-product-price {
  color: rgba(255, 0, 0, 1);
  font-weight:  600 ;
  font-family: Maven Pro;
  font-style:  normal ;
  font-size: 19px;
}

#s-e6298d75-17ba-4794-bede-20f13722b5a3 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(17, 17, 17, 1);
  
  
  font-style:  normal ;
  font-size: 17px;
  padding-left: 10px;
}
}
#s-069acecc-4066-46fa-8d0b-5a708791ad46 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-069acecc-4066-46fa-8d0b-5a708791ad46 {
  text-align: left;
}
}
#s-069acecc-4066-46fa-8d0b-5a708791ad46 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}
@media (min-width: 1200px){#s-069acecc-4066-46fa-8d0b-5a708791ad46 .shg-product-title-component h3 span {
  
  font-weight:  500 ;
  font-family: Maven Pro;
  
  font-size: 15px;
  
  
  
}
}
#s-a70210ad-7359-4db0-b499-119fc6e65f0c {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-a70210ad-7359-4db0-b499-119fc6e65f0c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a70210ad-7359-4db0-b499-119fc6e65f0c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a7005776-541e-4393-bc35-366ab7452b68 {
  padding-left: 2%;
padding-right: 2%;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-a7005776-541e-4393-bc35-366ab7452b68 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a7005776-541e-4393-bc35-366ab7452b68 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-a7005776-541e-4393-bc35-366ab7452b68 {
  
}
}@media (max-width: 767px){#s-a7005776-541e-4393-bc35-366ab7452b68 {
  
}
}







#s-a7005776-541e-4393-bc35-366ab7452b68 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a7005776-541e-4393-bc35-366ab7452b68.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-f818244c-fcef-4992-82e9-c30dc2a8d11a {
  margin-top: 0px;
margin-left: 50px;
margin-bottom: 0px;
margin-right: 50px;
}
@media (min-width: 1200px){#s-f818244c-fcef-4992-82e9-c30dc2a8d11a {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f818244c-fcef-4992-82e9-c30dc2a8d11a {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-f818244c-fcef-4992-82e9-c30dc2a8d11a {
  
}
}@media (max-width: 767px){#s-f818244c-fcef-4992-82e9-c30dc2a8d11a {
  
}
}
@media (min-width: 0px) {
[id="s-f818244c-fcef-4992-82e9-c30dc2a8d11a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 12.5px);
}

}

@media (min-width: 768px) {
[id="s-f818244c-fcef-4992-82e9-c30dc2a8d11a"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.833333333333332px);
}

}

@media (min-width: 992px) {
[id="s-f818244c-fcef-4992-82e9-c30dc2a8d11a"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.833333333333332px);
}

}

@media (min-width: 1200px) {
[id="s-f818244c-fcef-4992-82e9-c30dc2a8d11a"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.833333333333332px);
}

}

#s-1c3e007f-71d6-45b4-8e01-e7014ed46f43 {
  margin-bottom: 25px;
border-top-width: 4px;
border-left-width: 4px;
border-bottom-width: 4px;
border-right-width: 4px;
border-color: rgba(235, 235, 235, 1);
border-style: none;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-1c3e007f-71d6-45b4-8e01-e7014ed46f43 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1c3e007f-71d6-45b4-8e01-e7014ed46f43 {
  cursor: pointer;
}#s-1c3e007f-71d6-45b4-8e01-e7014ed46f43.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-45fa443f-dc15-4a9a-8bf5-7915c72103cc {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
text-align: center;
}

#s-45fa443f-dc15-4a9a-8bf5-7915c72103cc {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-45fa443f-dc15-4a9a-8bf5-7915c72103cc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-45fa443f-dc15-4a9a-8bf5-7915c72103cc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-45fa443f-dc15-4a9a-8bf5-7915c72103cc .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-45fa443f-dc15-4a9a-8bf5-7915c72103cc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-45fa443f-dc15-4a9a-8bf5-7915c72103cc img.shogun-image {
  width: 100%;
  
  
  max-width: 1000px;

      
    max-width: 1000px;

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




.s-45fa443f-dc15-4a9a-8bf5-7915c72103cc .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-45fa443f-dc15-4a9a-8bf5-7915c72103cc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-45fa443f-dc15-4a9a-8bf5-7915c72103cc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-45fa443f-dc15-4a9a-8bf5-7915c72103cc.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-45fa443f-dc15-4a9a-8bf5-7915c72103cc {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-45fa443f-dc15-4a9a-8bf5-7915c72103cc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-45fa443f-dc15-4a9a-8bf5-7915c72103cc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-45fa443f-dc15-4a9a-8bf5-7915c72103cc .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-45fa443f-dc15-4a9a-8bf5-7915c72103cc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-45fa443f-dc15-4a9a-8bf5-7915c72103cc img.shogun-image {
  width: 100%;
  
  
  max-width: 1000px;

      
    max-width: 1000px;

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




.s-45fa443f-dc15-4a9a-8bf5-7915c72103cc .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-45fa443f-dc15-4a9a-8bf5-7915c72103cc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-45fa443f-dc15-4a9a-8bf5-7915c72103cc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-45fa443f-dc15-4a9a-8bf5-7915c72103cc.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-45fa443f-dc15-4a9a-8bf5-7915c72103cc {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-45fa443f-dc15-4a9a-8bf5-7915c72103cc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-45fa443f-dc15-4a9a-8bf5-7915c72103cc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-45fa443f-dc15-4a9a-8bf5-7915c72103cc .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-45fa443f-dc15-4a9a-8bf5-7915c72103cc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-45fa443f-dc15-4a9a-8bf5-7915c72103cc img.shogun-image {
  width: 100%;
  
  
  max-width: 1000px;

      
    max-width: 1000px;

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




.s-45fa443f-dc15-4a9a-8bf5-7915c72103cc .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-45fa443f-dc15-4a9a-8bf5-7915c72103cc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-45fa443f-dc15-4a9a-8bf5-7915c72103cc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-45fa443f-dc15-4a9a-8bf5-7915c72103cc.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-45fa443f-dc15-4a9a-8bf5-7915c72103cc {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-45fa443f-dc15-4a9a-8bf5-7915c72103cc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-45fa443f-dc15-4a9a-8bf5-7915c72103cc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-45fa443f-dc15-4a9a-8bf5-7915c72103cc .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-45fa443f-dc15-4a9a-8bf5-7915c72103cc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-45fa443f-dc15-4a9a-8bf5-7915c72103cc img.shogun-image {
  width: 100%;
  
  
  max-width: 1000px;

      
    max-width: 1000px;

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




.s-45fa443f-dc15-4a9a-8bf5-7915c72103cc .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-45fa443f-dc15-4a9a-8bf5-7915c72103cc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-45fa443f-dc15-4a9a-8bf5-7915c72103cc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-45fa443f-dc15-4a9a-8bf5-7915c72103cc.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-45fa443f-dc15-4a9a-8bf5-7915c72103cc {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-45fa443f-dc15-4a9a-8bf5-7915c72103cc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-45fa443f-dc15-4a9a-8bf5-7915c72103cc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-45fa443f-dc15-4a9a-8bf5-7915c72103cc .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-45fa443f-dc15-4a9a-8bf5-7915c72103cc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-45fa443f-dc15-4a9a-8bf5-7915c72103cc img.shogun-image {
  width: 100%;
  
  
  max-width: 1000px;

      
    max-width: 1000px;

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




.s-45fa443f-dc15-4a9a-8bf5-7915c72103cc .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-45fa443f-dc15-4a9a-8bf5-7915c72103cc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-45fa443f-dc15-4a9a-8bf5-7915c72103cc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-45fa443f-dc15-4a9a-8bf5-7915c72103cc.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
.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-e4140a34-e6be-4448-98bd-ee767bfca69f {
  margin-top: 20px;
margin-left: 20px;
margin-bottom: 40px;
margin-right: 20px;
}

#s-e4140a34-e6be-4448-98bd-ee767bfca69f .shg-proportional-font-size,
#s-e4140a34-e6be-4448-98bd-ee767bfca69f .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-1102434f-3f16-49bd-b619-bf5c8e59a6ef {
  margin-bottom: 25px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(235, 235, 235, 1);
border-style: none;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-1102434f-3f16-49bd-b619-bf5c8e59a6ef > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1102434f-3f16-49bd-b619-bf5c8e59a6ef {
  cursor: pointer;
}#s-1102434f-3f16-49bd-b619-bf5c8e59a6ef.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-882d5b32-b8e4-420a-85af-8fc8f56d2669 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
text-align: center;
}

#s-882d5b32-b8e4-420a-85af-8fc8f56d2669 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-882d5b32-b8e4-420a-85af-8fc8f56d2669-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-882d5b32-b8e4-420a-85af-8fc8f56d2669 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-882d5b32-b8e4-420a-85af-8fc8f56d2669 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-882d5b32-b8e4-420a-85af-8fc8f56d2669 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-882d5b32-b8e4-420a-85af-8fc8f56d2669 img.shogun-image {
  width: 100%;
  
  
  max-width: 1000px;

      
    max-width: 1000px;

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




.s-882d5b32-b8e4-420a-85af-8fc8f56d2669 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-882d5b32-b8e4-420a-85af-8fc8f56d2669.shg-align-container {
  display: flex;
  justify-content: center
}

.s-882d5b32-b8e4-420a-85af-8fc8f56d2669.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-882d5b32-b8e4-420a-85af-8fc8f56d2669.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-882d5b32-b8e4-420a-85af-8fc8f56d2669 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-882d5b32-b8e4-420a-85af-8fc8f56d2669-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-882d5b32-b8e4-420a-85af-8fc8f56d2669 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-882d5b32-b8e4-420a-85af-8fc8f56d2669 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-882d5b32-b8e4-420a-85af-8fc8f56d2669 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-882d5b32-b8e4-420a-85af-8fc8f56d2669 img.shogun-image {
  width: 100%;
  
  
  max-width: 1000px;

      
    max-width: 1000px;

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




.s-882d5b32-b8e4-420a-85af-8fc8f56d2669 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-882d5b32-b8e4-420a-85af-8fc8f56d2669.shg-align-container {
  display: flex;
  justify-content: center
}

.s-882d5b32-b8e4-420a-85af-8fc8f56d2669.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-882d5b32-b8e4-420a-85af-8fc8f56d2669.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-882d5b32-b8e4-420a-85af-8fc8f56d2669 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-882d5b32-b8e4-420a-85af-8fc8f56d2669-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-882d5b32-b8e4-420a-85af-8fc8f56d2669 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-882d5b32-b8e4-420a-85af-8fc8f56d2669 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-882d5b32-b8e4-420a-85af-8fc8f56d2669 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-882d5b32-b8e4-420a-85af-8fc8f56d2669 img.shogun-image {
  width: 100%;
  
  
  max-width: 1000px;

      
    max-width: 1000px;

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




.s-882d5b32-b8e4-420a-85af-8fc8f56d2669 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-882d5b32-b8e4-420a-85af-8fc8f56d2669.shg-align-container {
  display: flex;
  justify-content: center
}

.s-882d5b32-b8e4-420a-85af-8fc8f56d2669.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-882d5b32-b8e4-420a-85af-8fc8f56d2669.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-882d5b32-b8e4-420a-85af-8fc8f56d2669 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-882d5b32-b8e4-420a-85af-8fc8f56d2669-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-882d5b32-b8e4-420a-85af-8fc8f56d2669 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-882d5b32-b8e4-420a-85af-8fc8f56d2669 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-882d5b32-b8e4-420a-85af-8fc8f56d2669 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-882d5b32-b8e4-420a-85af-8fc8f56d2669 img.shogun-image {
  width: 100%;
  
  
  max-width: 1000px;

      
    max-width: 1000px;

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




.s-882d5b32-b8e4-420a-85af-8fc8f56d2669 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-882d5b32-b8e4-420a-85af-8fc8f56d2669.shg-align-container {
  display: flex;
  justify-content: center
}

.s-882d5b32-b8e4-420a-85af-8fc8f56d2669.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-882d5b32-b8e4-420a-85af-8fc8f56d2669.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-882d5b32-b8e4-420a-85af-8fc8f56d2669 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-882d5b32-b8e4-420a-85af-8fc8f56d2669-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-882d5b32-b8e4-420a-85af-8fc8f56d2669 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-882d5b32-b8e4-420a-85af-8fc8f56d2669 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-882d5b32-b8e4-420a-85af-8fc8f56d2669 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-882d5b32-b8e4-420a-85af-8fc8f56d2669 img.shogun-image {
  width: 100%;
  
  
  max-width: 1000px;

      
    max-width: 1000px;

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




.s-882d5b32-b8e4-420a-85af-8fc8f56d2669 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-882d5b32-b8e4-420a-85af-8fc8f56d2669.shg-align-container {
  display: flex;
  justify-content: center
}

.s-882d5b32-b8e4-420a-85af-8fc8f56d2669.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-882d5b32-b8e4-420a-85af-8fc8f56d2669.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-b08940ef-1af0-4b84-bbcd-363c82b05760 {
  margin-top: 20px;
margin-left: 20px;
margin-bottom: 40px;
margin-right: 20px;
}

#s-b08940ef-1af0-4b84-bbcd-363c82b05760 .shg-proportional-font-size,
#s-b08940ef-1af0-4b84-bbcd-363c82b05760 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-7cab09c4-ddf0-4bc3-abd4-31160d75dcda {
  margin-bottom: 25px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(235, 235, 235, 1);
border-style: none;
min-height: 50px;
background-color: rgba(255, 252, 252, 1);
}








#s-7cab09c4-ddf0-4bc3-abd4-31160d75dcda > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7cab09c4-ddf0-4bc3-abd4-31160d75dcda {
  cursor: pointer;
}#s-7cab09c4-ddf0-4bc3-abd4-31160d75dcda.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-9c2f1c38-feef-4929-a03c-fc9593a6b430 {
  margin-left: auto;
margin-right: auto;
max-width: 600px;
text-align: center;
}

#s-9c2f1c38-feef-4929-a03c-fc9593a6b430 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9c2f1c38-feef-4929-a03c-fc9593a6b430-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-9c2f1c38-feef-4929-a03c-fc9593a6b430 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9c2f1c38-feef-4929-a03c-fc9593a6b430 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-9c2f1c38-feef-4929-a03c-fc9593a6b430 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-9c2f1c38-feef-4929-a03c-fc9593a6b430 img.shogun-image {
  width: 100%;
  
  
  max-width: 600px;

      
    max-width: 600px;

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




.s-9c2f1c38-feef-4929-a03c-fc9593a6b430 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-9c2f1c38-feef-4929-a03c-fc9593a6b430.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9c2f1c38-feef-4929-a03c-fc9593a6b430.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9c2f1c38-feef-4929-a03c-fc9593a6b430.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-9c2f1c38-feef-4929-a03c-fc9593a6b430 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9c2f1c38-feef-4929-a03c-fc9593a6b430-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-9c2f1c38-feef-4929-a03c-fc9593a6b430 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9c2f1c38-feef-4929-a03c-fc9593a6b430 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-9c2f1c38-feef-4929-a03c-fc9593a6b430 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-9c2f1c38-feef-4929-a03c-fc9593a6b430 img.shogun-image {
  width: 100%;
  
  
  max-width: 600px;

      
    max-width: 600px;

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




.s-9c2f1c38-feef-4929-a03c-fc9593a6b430 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-9c2f1c38-feef-4929-a03c-fc9593a6b430.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9c2f1c38-feef-4929-a03c-fc9593a6b430.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9c2f1c38-feef-4929-a03c-fc9593a6b430.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-9c2f1c38-feef-4929-a03c-fc9593a6b430 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9c2f1c38-feef-4929-a03c-fc9593a6b430-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-9c2f1c38-feef-4929-a03c-fc9593a6b430 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9c2f1c38-feef-4929-a03c-fc9593a6b430 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-9c2f1c38-feef-4929-a03c-fc9593a6b430 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-9c2f1c38-feef-4929-a03c-fc9593a6b430 img.shogun-image {
  width: 100%;
  
  
  max-width: 600px;

      
    max-width: 600px;

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




.s-9c2f1c38-feef-4929-a03c-fc9593a6b430 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-9c2f1c38-feef-4929-a03c-fc9593a6b430.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9c2f1c38-feef-4929-a03c-fc9593a6b430.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9c2f1c38-feef-4929-a03c-fc9593a6b430.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-9c2f1c38-feef-4929-a03c-fc9593a6b430 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9c2f1c38-feef-4929-a03c-fc9593a6b430-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-9c2f1c38-feef-4929-a03c-fc9593a6b430 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9c2f1c38-feef-4929-a03c-fc9593a6b430 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-9c2f1c38-feef-4929-a03c-fc9593a6b430 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-9c2f1c38-feef-4929-a03c-fc9593a6b430 img.shogun-image {
  width: 100%;
  
  
  max-width: 600px;

      
    max-width: 600px;

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




.s-9c2f1c38-feef-4929-a03c-fc9593a6b430 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-9c2f1c38-feef-4929-a03c-fc9593a6b430.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9c2f1c38-feef-4929-a03c-fc9593a6b430.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9c2f1c38-feef-4929-a03c-fc9593a6b430.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-9c2f1c38-feef-4929-a03c-fc9593a6b430 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9c2f1c38-feef-4929-a03c-fc9593a6b430-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-9c2f1c38-feef-4929-a03c-fc9593a6b430 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9c2f1c38-feef-4929-a03c-fc9593a6b430 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-9c2f1c38-feef-4929-a03c-fc9593a6b430 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-9c2f1c38-feef-4929-a03c-fc9593a6b430 img.shogun-image {
  width: 100%;
  
  
  max-width: 600px;

      
    max-width: 600px;

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




.s-9c2f1c38-feef-4929-a03c-fc9593a6b430 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-9c2f1c38-feef-4929-a03c-fc9593a6b430.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9c2f1c38-feef-4929-a03c-fc9593a6b430.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9c2f1c38-feef-4929-a03c-fc9593a6b430.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-450ba9be-ae38-4b4c-8380-34da0297b80f {
  margin-top: 20px;
margin-left: 20px;
margin-bottom: 40px;
margin-right: 20px;
}

#s-450ba9be-ae38-4b4c-8380-34da0297b80f .shg-proportional-font-size,
#s-450ba9be-ae38-4b4c-8380-34da0297b80f .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-f3c7d283-a0f0-4637-a919-53b02a8a81a1 {
  margin-bottom: 25px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(235, 235, 235, 1);
border-style: none;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-f3c7d283-a0f0-4637-a919-53b02a8a81a1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f3c7d283-a0f0-4637-a919-53b02a8a81a1 {
  cursor: pointer;
}#s-f3c7d283-a0f0-4637-a919-53b02a8a81a1.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-3465a095-c500-4936-9f36-ae02f71d7673 {
  margin-left: auto;
margin-right: auto;
max-width: 1200px;
text-align: center;
}

#s-3465a095-c500-4936-9f36-ae02f71d7673 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3465a095-c500-4936-9f36-ae02f71d7673-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-3465a095-c500-4936-9f36-ae02f71d7673 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3465a095-c500-4936-9f36-ae02f71d7673 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-3465a095-c500-4936-9f36-ae02f71d7673 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-3465a095-c500-4936-9f36-ae02f71d7673 img.shogun-image {
  width: 100%;
  
  
  max-width: 1200px;

      
    max-width: 1200px;

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




.s-3465a095-c500-4936-9f36-ae02f71d7673 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3465a095-c500-4936-9f36-ae02f71d7673.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3465a095-c500-4936-9f36-ae02f71d7673.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3465a095-c500-4936-9f36-ae02f71d7673.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-3465a095-c500-4936-9f36-ae02f71d7673 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3465a095-c500-4936-9f36-ae02f71d7673-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-3465a095-c500-4936-9f36-ae02f71d7673 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3465a095-c500-4936-9f36-ae02f71d7673 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-3465a095-c500-4936-9f36-ae02f71d7673 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-3465a095-c500-4936-9f36-ae02f71d7673 img.shogun-image {
  width: 100%;
  
  
  max-width: 1200px;

      
    max-width: 1200px;

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




.s-3465a095-c500-4936-9f36-ae02f71d7673 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3465a095-c500-4936-9f36-ae02f71d7673.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3465a095-c500-4936-9f36-ae02f71d7673.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3465a095-c500-4936-9f36-ae02f71d7673.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-3465a095-c500-4936-9f36-ae02f71d7673 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3465a095-c500-4936-9f36-ae02f71d7673-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-3465a095-c500-4936-9f36-ae02f71d7673 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3465a095-c500-4936-9f36-ae02f71d7673 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-3465a095-c500-4936-9f36-ae02f71d7673 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-3465a095-c500-4936-9f36-ae02f71d7673 img.shogun-image {
  width: 100%;
  
  
  max-width: 1200px;

      
    max-width: 1200px;

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




.s-3465a095-c500-4936-9f36-ae02f71d7673 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3465a095-c500-4936-9f36-ae02f71d7673.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3465a095-c500-4936-9f36-ae02f71d7673.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3465a095-c500-4936-9f36-ae02f71d7673.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-3465a095-c500-4936-9f36-ae02f71d7673 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3465a095-c500-4936-9f36-ae02f71d7673-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-3465a095-c500-4936-9f36-ae02f71d7673 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3465a095-c500-4936-9f36-ae02f71d7673 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-3465a095-c500-4936-9f36-ae02f71d7673 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-3465a095-c500-4936-9f36-ae02f71d7673 img.shogun-image {
  width: 100%;
  
  
  max-width: 1200px;

      
    max-width: 1200px;

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




.s-3465a095-c500-4936-9f36-ae02f71d7673 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3465a095-c500-4936-9f36-ae02f71d7673.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3465a095-c500-4936-9f36-ae02f71d7673.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3465a095-c500-4936-9f36-ae02f71d7673.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-3465a095-c500-4936-9f36-ae02f71d7673 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3465a095-c500-4936-9f36-ae02f71d7673-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-3465a095-c500-4936-9f36-ae02f71d7673 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3465a095-c500-4936-9f36-ae02f71d7673 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-3465a095-c500-4936-9f36-ae02f71d7673 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-3465a095-c500-4936-9f36-ae02f71d7673 img.shogun-image {
  width: 100%;
  
  
  max-width: 1200px;

      
    max-width: 1200px;

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




.s-3465a095-c500-4936-9f36-ae02f71d7673 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3465a095-c500-4936-9f36-ae02f71d7673.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3465a095-c500-4936-9f36-ae02f71d7673.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3465a095-c500-4936-9f36-ae02f71d7673.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-87675b1c-84a4-40f4-b976-859dfc033cbc {
  margin-top: 20px;
margin-left: 20px;
margin-bottom: 40px;
margin-right: 20px;
}

#s-87675b1c-84a4-40f4-b976-859dfc033cbc .shg-proportional-font-size,
#s-87675b1c-84a4-40f4-b976-859dfc033cbc .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-84216fda-54f6-451a-b47f-1ccc7767723e {
  margin-bottom: 25px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(235, 235, 235, 1);
border-style: none;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-84216fda-54f6-451a-b47f-1ccc7767723e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-84216fda-54f6-451a-b47f-1ccc7767723e {
  cursor: pointer;
}#s-84216fda-54f6-451a-b47f-1ccc7767723e.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-2efcf883-f709-4922-ae50-d247ebd0785f {
  margin-left: auto;
margin-right: auto;
max-width: 484px;
text-align: center;
}

#s-2efcf883-f709-4922-ae50-d247ebd0785f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2efcf883-f709-4922-ae50-d247ebd0785f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-2efcf883-f709-4922-ae50-d247ebd0785f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2efcf883-f709-4922-ae50-d247ebd0785f .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-2efcf883-f709-4922-ae50-d247ebd0785f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-2efcf883-f709-4922-ae50-d247ebd0785f img.shogun-image {
  width: 100%;
  
  
  max-width: 484px;

      
    max-width: 484px;

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




.s-2efcf883-f709-4922-ae50-d247ebd0785f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-2efcf883-f709-4922-ae50-d247ebd0785f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2efcf883-f709-4922-ae50-d247ebd0785f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2efcf883-f709-4922-ae50-d247ebd0785f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-2efcf883-f709-4922-ae50-d247ebd0785f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2efcf883-f709-4922-ae50-d247ebd0785f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-2efcf883-f709-4922-ae50-d247ebd0785f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2efcf883-f709-4922-ae50-d247ebd0785f .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-2efcf883-f709-4922-ae50-d247ebd0785f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-2efcf883-f709-4922-ae50-d247ebd0785f img.shogun-image {
  width: 100%;
  
  
  max-width: 484px;

      
    max-width: 484px;

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




.s-2efcf883-f709-4922-ae50-d247ebd0785f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-2efcf883-f709-4922-ae50-d247ebd0785f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2efcf883-f709-4922-ae50-d247ebd0785f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2efcf883-f709-4922-ae50-d247ebd0785f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-2efcf883-f709-4922-ae50-d247ebd0785f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2efcf883-f709-4922-ae50-d247ebd0785f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-2efcf883-f709-4922-ae50-d247ebd0785f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2efcf883-f709-4922-ae50-d247ebd0785f .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-2efcf883-f709-4922-ae50-d247ebd0785f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-2efcf883-f709-4922-ae50-d247ebd0785f img.shogun-image {
  width: 100%;
  
  
  max-width: 484px;

      
    max-width: 484px;

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




.s-2efcf883-f709-4922-ae50-d247ebd0785f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-2efcf883-f709-4922-ae50-d247ebd0785f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2efcf883-f709-4922-ae50-d247ebd0785f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2efcf883-f709-4922-ae50-d247ebd0785f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-2efcf883-f709-4922-ae50-d247ebd0785f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2efcf883-f709-4922-ae50-d247ebd0785f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-2efcf883-f709-4922-ae50-d247ebd0785f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2efcf883-f709-4922-ae50-d247ebd0785f .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-2efcf883-f709-4922-ae50-d247ebd0785f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-2efcf883-f709-4922-ae50-d247ebd0785f img.shogun-image {
  width: 100%;
  
  
  max-width: 484px;

      
    max-width: 484px;

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




.s-2efcf883-f709-4922-ae50-d247ebd0785f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-2efcf883-f709-4922-ae50-d247ebd0785f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2efcf883-f709-4922-ae50-d247ebd0785f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2efcf883-f709-4922-ae50-d247ebd0785f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-2efcf883-f709-4922-ae50-d247ebd0785f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2efcf883-f709-4922-ae50-d247ebd0785f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-2efcf883-f709-4922-ae50-d247ebd0785f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2efcf883-f709-4922-ae50-d247ebd0785f .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-2efcf883-f709-4922-ae50-d247ebd0785f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-2efcf883-f709-4922-ae50-d247ebd0785f img.shogun-image {
  width: 100%;
  
  
  max-width: 484px;

      
    max-width: 484px;

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




.s-2efcf883-f709-4922-ae50-d247ebd0785f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-2efcf883-f709-4922-ae50-d247ebd0785f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2efcf883-f709-4922-ae50-d247ebd0785f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2efcf883-f709-4922-ae50-d247ebd0785f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-e615e534-88ed-4468-9924-376a15cccd07 {
  margin-top: 20px;
margin-left: 20px;
margin-bottom: 40px;
margin-right: 20px;
}

#s-e615e534-88ed-4468-9924-376a15cccd07 .shg-proportional-font-size,
#s-e615e534-88ed-4468-9924-376a15cccd07 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-decd93de-69dc-47a5-8734-1241c8ea4328 {
  margin-bottom: 25px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(235, 235, 235, 1);
border-style: none;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-decd93de-69dc-47a5-8734-1241c8ea4328 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-decd93de-69dc-47a5-8734-1241c8ea4328 {
  cursor: pointer;
}#s-decd93de-69dc-47a5-8734-1241c8ea4328.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-bee5e1aa-33b3-43f2-b201-5b90975ca188 {
  margin-left: auto;
margin-right: auto;
max-width: 600px;
text-align: center;
}

#s-bee5e1aa-33b3-43f2-b201-5b90975ca188 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bee5e1aa-33b3-43f2-b201-5b90975ca188-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-bee5e1aa-33b3-43f2-b201-5b90975ca188 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bee5e1aa-33b3-43f2-b201-5b90975ca188 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-bee5e1aa-33b3-43f2-b201-5b90975ca188 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bee5e1aa-33b3-43f2-b201-5b90975ca188 img.shogun-image {
  width: 100%;
  
  
  max-width: 600px;

      
    max-width: 600px;

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




.s-bee5e1aa-33b3-43f2-b201-5b90975ca188 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bee5e1aa-33b3-43f2-b201-5b90975ca188.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bee5e1aa-33b3-43f2-b201-5b90975ca188.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bee5e1aa-33b3-43f2-b201-5b90975ca188.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-bee5e1aa-33b3-43f2-b201-5b90975ca188 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bee5e1aa-33b3-43f2-b201-5b90975ca188-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-bee5e1aa-33b3-43f2-b201-5b90975ca188 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bee5e1aa-33b3-43f2-b201-5b90975ca188 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-bee5e1aa-33b3-43f2-b201-5b90975ca188 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bee5e1aa-33b3-43f2-b201-5b90975ca188 img.shogun-image {
  width: 100%;
  
  
  max-width: 600px;

      
    max-width: 600px;

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




.s-bee5e1aa-33b3-43f2-b201-5b90975ca188 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bee5e1aa-33b3-43f2-b201-5b90975ca188.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bee5e1aa-33b3-43f2-b201-5b90975ca188.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bee5e1aa-33b3-43f2-b201-5b90975ca188.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-bee5e1aa-33b3-43f2-b201-5b90975ca188 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bee5e1aa-33b3-43f2-b201-5b90975ca188-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-bee5e1aa-33b3-43f2-b201-5b90975ca188 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bee5e1aa-33b3-43f2-b201-5b90975ca188 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-bee5e1aa-33b3-43f2-b201-5b90975ca188 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bee5e1aa-33b3-43f2-b201-5b90975ca188 img.shogun-image {
  width: 100%;
  
  
  max-width: 600px;

      
    max-width: 600px;

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




.s-bee5e1aa-33b3-43f2-b201-5b90975ca188 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bee5e1aa-33b3-43f2-b201-5b90975ca188.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bee5e1aa-33b3-43f2-b201-5b90975ca188.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bee5e1aa-33b3-43f2-b201-5b90975ca188.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-bee5e1aa-33b3-43f2-b201-5b90975ca188 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bee5e1aa-33b3-43f2-b201-5b90975ca188-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-bee5e1aa-33b3-43f2-b201-5b90975ca188 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bee5e1aa-33b3-43f2-b201-5b90975ca188 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-bee5e1aa-33b3-43f2-b201-5b90975ca188 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bee5e1aa-33b3-43f2-b201-5b90975ca188 img.shogun-image {
  width: 100%;
  
  
  max-width: 600px;

      
    max-width: 600px;

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




.s-bee5e1aa-33b3-43f2-b201-5b90975ca188 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bee5e1aa-33b3-43f2-b201-5b90975ca188.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bee5e1aa-33b3-43f2-b201-5b90975ca188.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bee5e1aa-33b3-43f2-b201-5b90975ca188.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-bee5e1aa-33b3-43f2-b201-5b90975ca188 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bee5e1aa-33b3-43f2-b201-5b90975ca188-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-bee5e1aa-33b3-43f2-b201-5b90975ca188 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bee5e1aa-33b3-43f2-b201-5b90975ca188 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-bee5e1aa-33b3-43f2-b201-5b90975ca188 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bee5e1aa-33b3-43f2-b201-5b90975ca188 img.shogun-image {
  width: 100%;
  
  
  max-width: 600px;

      
    max-width: 600px;

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




.s-bee5e1aa-33b3-43f2-b201-5b90975ca188 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bee5e1aa-33b3-43f2-b201-5b90975ca188.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bee5e1aa-33b3-43f2-b201-5b90975ca188.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bee5e1aa-33b3-43f2-b201-5b90975ca188.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-41a128a4-8ee2-4de2-93ef-c31048827dfe {
  margin-top: 20px;
margin-left: 20px;
margin-bottom: 40px;
margin-right: 20px;
}

#s-41a128a4-8ee2-4de2-93ef-c31048827dfe .shg-proportional-font-size,
#s-41a128a4-8ee2-4de2-93ef-c31048827dfe .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-86f6cf25-e2a8-46c2-af1d-f35cc802a40c {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 1200px){#s-86f6cf25-e2a8-46c2-af1d-f35cc802a40c {
  display: none;
}
#s-86f6cf25-e2a8-46c2-af1d-f35cc802a40c, #wrap-s-86f6cf25-e2a8-46c2-af1d-f35cc802a40c, #wrap-content-s-86f6cf25-e2a8-46c2-af1d-f35cc802a40c { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-86f6cf25-e2a8-46c2-af1d-f35cc802a40c {
  display: none;
}
#s-86f6cf25-e2a8-46c2-af1d-f35cc802a40c, #wrap-s-86f6cf25-e2a8-46c2-af1d-f35cc802a40c, #wrap-content-s-86f6cf25-e2a8-46c2-af1d-f35cc802a40c { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-86f6cf25-e2a8-46c2-af1d-f35cc802a40c {
  display: none;
}
#s-86f6cf25-e2a8-46c2-af1d-f35cc802a40c, #wrap-s-86f6cf25-e2a8-46c2-af1d-f35cc802a40c, #wrap-content-s-86f6cf25-e2a8-46c2-af1d-f35cc802a40c { display: none !important; }}@media (max-width: 767px){#s-86f6cf25-e2a8-46c2-af1d-f35cc802a40c {
  display: none;
}
#s-86f6cf25-e2a8-46c2-af1d-f35cc802a40c, #wrap-s-86f6cf25-e2a8-46c2-af1d-f35cc802a40c, #wrap-content-s-86f6cf25-e2a8-46c2-af1d-f35cc802a40c { display: none !important; }}







#s-86f6cf25-e2a8-46c2-af1d-f35cc802a40c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-86f6cf25-e2a8-46c2-af1d-f35cc802a40c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-66e68c5c-8ee9-4423-9422-a67b25309e84 {
  margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
}
@media (min-width: 1200px){#s-66e68c5c-8ee9-4423-9422-a67b25309e84 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-66e68c5c-8ee9-4423-9422-a67b25309e84 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-66e68c5c-8ee9-4423-9422-a67b25309e84 {
  display: none;
}
#s-66e68c5c-8ee9-4423-9422-a67b25309e84, #wrap-s-66e68c5c-8ee9-4423-9422-a67b25309e84, #wrap-content-s-66e68c5c-8ee9-4423-9422-a67b25309e84 { display: none !important; }}@media (max-width: 767px){#s-66e68c5c-8ee9-4423-9422-a67b25309e84 {
  display: none;
}
#s-66e68c5c-8ee9-4423-9422-a67b25309e84, #wrap-s-66e68c5c-8ee9-4423-9422-a67b25309e84, #wrap-content-s-66e68c5c-8ee9-4423-9422-a67b25309e84 { display: none !important; }}
@media (min-width: 0px) {
[id="s-66e68c5c-8ee9-4423-9422-a67b25309e84"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-66e68c5c-8ee9-4423-9422-a67b25309e84"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-66e68c5c-8ee9-4423-9422-a67b25309e84"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-66e68c5c-8ee9-4423-9422-a67b25309e84"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-bf0f518d-ead9-470c-aa78-b01e299bdc73 {
  margin-left: auto;
margin-right: auto;
}

#s-bf0f518d-ead9-470c-aa78-b01e299bdc73 .shg-dynamic-column-count {
  grid-template-columns: repeat(3, 1fr);
}


#slider-v3-s-bf0f518d-ead9-470c-aa78-b01e299bdc73 {
  --swiper-pagination-color: rgba(113, 113, 113, 1) !important;
  --swiper-pagination-bullet-inactive-color: rgba(113, 113, 113, 1) !important;
  --swiper-pagination-bullet-active-color: rgba(113, 113, 113, 1) !important;
  --arrow-button-size: 35px !important;
  --swiper-pagination-bullet-size: 14px !important;
  
}

#slider-v3-s-bf0f518d-ead9-470c-aa78-b01e299bdc73 > .swiper-button-prev,
#slider-v3-s-bf0f518d-ead9-470c-aa78-b01e299bdc73 > .swiper-button-next {
  
}

#slider-v3-s-bf0f518d-ead9-470c-aa78-b01e299bdc73 > .swiper-button-prev svg,
#slider-v3-s-bf0f518d-ead9-470c-aa78-b01e299bdc73 > .swiper-button-next svg {
  fill: rgba(113, 113, 113, 1) !important;
  stroke: rgba(113, 113, 113, 1) !important;
  
}

#slider-v3-s-bf0f518d-ead9-470c-aa78-b01e299bdc73 > .swiper-button-prev {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-bf0f518d-ead9-470c-aa78-b01e299bdc73 > .swiper-button-next {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-bf0f518d-ead9-470c-aa78-b01e299bdc73 > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-bf0f518d-ead9-470c-aa78-b01e299bdc73 .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-bf0f518d-ead9-470c-aa78-b01e299bdc73 .swiper-pagination-bullet-active {
  background-color: rgba(113, 113, 113, 1) !important;
  width: calc(14px * 1) !important;
  height: 14px !important;
  border-radius:  50px  !important;
}

#slider-v3-s-bf0f518d-ead9-470c-aa78-b01e299bdc73 .swiper-pagination {
  position:  initial ;
  display: flex;
  margin-top:  8px ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}

#s-e91d2476-d924-4d2a-aee6-9a7f8d32d595 {
  margin-left: auto;
margin-right: auto;
}

#s-2f34592a-090c-438b-8617-4ec1c0d9f5ab {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-2f34592a-090c-438b-8617-4ec1c0d9f5ab .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2f34592a-090c-438b-8617-4ec1c0d9f5ab img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-2f34592a-090c-438b-8617-4ec1c0d9f5ab .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2f34592a-090c-438b-8617-4ec1c0d9f5ab img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-2f34592a-090c-438b-8617-4ec1c0d9f5ab .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2f34592a-090c-438b-8617-4ec1c0d9f5ab img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-2f34592a-090c-438b-8617-4ec1c0d9f5ab .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2f34592a-090c-438b-8617-4ec1c0d9f5ab img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-2f34592a-090c-438b-8617-4ec1c0d9f5ab .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2f34592a-090c-438b-8617-4ec1c0d9f5ab img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-c932797c-93dd-4166-9e03-cccff6b1f47a {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-c932797c-93dd-4166-9e03-cccff6b1f47a .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-c932797c-93dd-4166-9e03-cccff6b1f47a .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-c932797c-93dd-4166-9e03-cccff6b1f47a .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-a918299e-23f4-4c50-bf8d-dea8bd9181d7 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a918299e-23f4-4c50-bf8d-dea8bd9181d7 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-c869c870-8c7d-4e1f-9946-cad051153918 {
  margin-left: auto;
margin-right: auto;
}

#s-e2d2a860-862e-45af-a8da-7c6dbc81f6f6 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-e2d2a860-862e-45af-a8da-7c6dbc81f6f6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e2d2a860-862e-45af-a8da-7c6dbc81f6f6 img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-e2d2a860-862e-45af-a8da-7c6dbc81f6f6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e2d2a860-862e-45af-a8da-7c6dbc81f6f6 img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-e2d2a860-862e-45af-a8da-7c6dbc81f6f6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e2d2a860-862e-45af-a8da-7c6dbc81f6f6 img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-e2d2a860-862e-45af-a8da-7c6dbc81f6f6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e2d2a860-862e-45af-a8da-7c6dbc81f6f6 img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-e2d2a860-862e-45af-a8da-7c6dbc81f6f6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e2d2a860-862e-45af-a8da-7c6dbc81f6f6 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-8d1b0c4b-9523-4e6f-8d57-9cde573f3daf {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-8d1b0c4b-9523-4e6f-8d57-9cde573f3daf .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-8d1b0c4b-9523-4e6f-8d57-9cde573f3daf .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-8d1b0c4b-9523-4e6f-8d57-9cde573f3daf .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-4899dda3-5dca-44da-9ea1-cf1a1be5e9cd {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4899dda3-5dca-44da-9ea1-cf1a1be5e9cd .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-9c1c831b-efa7-4c51-9a93-51874d600c90 {
  margin-left: auto;
margin-right: auto;
}

#s-6faee6e8-5680-4f90-b23f-ece6ef9e5300 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-6faee6e8-5680-4f90-b23f-ece6ef9e5300 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6faee6e8-5680-4f90-b23f-ece6ef9e5300 img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-6faee6e8-5680-4f90-b23f-ece6ef9e5300 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6faee6e8-5680-4f90-b23f-ece6ef9e5300 img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-6faee6e8-5680-4f90-b23f-ece6ef9e5300 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6faee6e8-5680-4f90-b23f-ece6ef9e5300 img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-6faee6e8-5680-4f90-b23f-ece6ef9e5300 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6faee6e8-5680-4f90-b23f-ece6ef9e5300 img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-6faee6e8-5680-4f90-b23f-ece6ef9e5300 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6faee6e8-5680-4f90-b23f-ece6ef9e5300 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-5b8b6cc4-8771-4373-be1b-2ddc759564c5 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-5b8b6cc4-8771-4373-be1b-2ddc759564c5 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-5b8b6cc4-8771-4373-be1b-2ddc759564c5 .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-5b8b6cc4-8771-4373-be1b-2ddc759564c5 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-5eb722b7-ae82-4a2c-97c0-37bf1cebea64 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5eb722b7-ae82-4a2c-97c0-37bf1cebea64 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-dedc1182-5e9e-4646-ac69-797ded7923e0 {
  margin-left: auto;
margin-right: auto;
}

#s-dedc1182-5e9e-4646-ac69-797ded7923e0 .shg-dynamic-column-count {
  grid-template-columns: repeat(3, 1fr);
}


#slider-v3-s-dedc1182-5e9e-4646-ac69-797ded7923e0 {
  --swiper-pagination-color: rgba(113, 113, 113, 1) !important;
  --swiper-pagination-bullet-inactive-color: rgba(113, 113, 113, 1) !important;
  --swiper-pagination-bullet-active-color: rgba(113, 113, 113, 1) !important;
  --arrow-button-size: 35px !important;
  --swiper-pagination-bullet-size: 14px !important;
  
}

#slider-v3-s-dedc1182-5e9e-4646-ac69-797ded7923e0 > .swiper-button-prev,
#slider-v3-s-dedc1182-5e9e-4646-ac69-797ded7923e0 > .swiper-button-next {
  
}

#slider-v3-s-dedc1182-5e9e-4646-ac69-797ded7923e0 > .swiper-button-prev svg,
#slider-v3-s-dedc1182-5e9e-4646-ac69-797ded7923e0 > .swiper-button-next svg {
  fill: rgba(113, 113, 113, 1) !important;
  stroke: rgba(113, 113, 113, 1) !important;
  
}

#slider-v3-s-dedc1182-5e9e-4646-ac69-797ded7923e0 > .swiper-button-prev {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-dedc1182-5e9e-4646-ac69-797ded7923e0 > .swiper-button-next {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-dedc1182-5e9e-4646-ac69-797ded7923e0 > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-dedc1182-5e9e-4646-ac69-797ded7923e0 .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-dedc1182-5e9e-4646-ac69-797ded7923e0 .swiper-pagination-bullet-active {
  background-color: rgba(113, 113, 113, 1) !important;
  width: calc(14px * 1) !important;
  height: 14px !important;
  border-radius:  50px  !important;
}

#slider-v3-s-dedc1182-5e9e-4646-ac69-797ded7923e0 .swiper-pagination {
  position:  initial ;
  display: flex;
  margin-top:  8px ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}

#s-7176b301-5ee7-42ae-956c-660b3ab6b8e0 {
  margin-left: auto;
margin-right: auto;
}

#s-21aee6f0-69ec-4c74-8366-ec2a34bf6d96 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-21aee6f0-69ec-4c74-8366-ec2a34bf6d96 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-21aee6f0-69ec-4c74-8366-ec2a34bf6d96 img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-21aee6f0-69ec-4c74-8366-ec2a34bf6d96 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-21aee6f0-69ec-4c74-8366-ec2a34bf6d96 img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-21aee6f0-69ec-4c74-8366-ec2a34bf6d96 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-21aee6f0-69ec-4c74-8366-ec2a34bf6d96 img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-21aee6f0-69ec-4c74-8366-ec2a34bf6d96 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-21aee6f0-69ec-4c74-8366-ec2a34bf6d96 img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-21aee6f0-69ec-4c74-8366-ec2a34bf6d96 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-21aee6f0-69ec-4c74-8366-ec2a34bf6d96 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-16e7cf12-17d2-4794-a772-4f5c9aaa472e {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-16e7cf12-17d2-4794-a772-4f5c9aaa472e .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-18bc3fe3-7f3c-47cf-8b7a-228464489b0b {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-18bc3fe3-7f3c-47cf-8b7a-228464489b0b .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-18bc3fe3-7f3c-47cf-8b7a-228464489b0b .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-18bc3fe3-7f3c-47cf-8b7a-228464489b0b .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-product-atc-wrapper {
  position: relative;
}

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

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

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

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

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

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

#s-c146c3bf-5351-4912-b748-560cca764242 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-c146c3bf-5351-4912-b748-560cca764242:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c146c3bf-5351-4912-b748-560cca764242:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-c146c3bf-5351-4912-b748-560cca764242-atc-btn-wrapper {
    text-align: center;
  }


#s-c146c3bf-5351-4912-b748-560cca764242 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-c146c3bf-5351-4912-b748-560cca764242.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-c146c3bf-5351-4912-b748-560cca764242.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-c146c3bf-5351-4912-b748-560cca764242.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-c146c3bf-5351-4912-b748-560cca764242-atc-btn-wrapper {
    text-align: center;
  }


#s-c146c3bf-5351-4912-b748-560cca764242 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-c146c3bf-5351-4912-b748-560cca764242.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-c146c3bf-5351-4912-b748-560cca764242.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-c146c3bf-5351-4912-b748-560cca764242.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-c146c3bf-5351-4912-b748-560cca764242-atc-btn-wrapper {
    text-align: center;
  }


#s-c146c3bf-5351-4912-b748-560cca764242 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-c146c3bf-5351-4912-b748-560cca764242.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-c146c3bf-5351-4912-b748-560cca764242.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-c146c3bf-5351-4912-b748-560cca764242.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-c146c3bf-5351-4912-b748-560cca764242-atc-btn-wrapper {
    text-align: center;
  }


#s-c146c3bf-5351-4912-b748-560cca764242 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-c146c3bf-5351-4912-b748-560cca764242.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-c146c3bf-5351-4912-b748-560cca764242.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-c146c3bf-5351-4912-b748-560cca764242.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-c146c3bf-5351-4912-b748-560cca764242-atc-btn-wrapper {
    text-align: center;
  }


#s-c146c3bf-5351-4912-b748-560cca764242 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-c146c3bf-5351-4912-b748-560cca764242.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-c146c3bf-5351-4912-b748-560cca764242.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-c146c3bf-5351-4912-b748-560cca764242.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-a15f4c02-4b69-480b-b1dc-c19c354da778 {
  margin-left: auto;
margin-right: auto;
}

#s-e967f83d-13bb-4ba1-b84f-46bb90ab862a {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-e967f83d-13bb-4ba1-b84f-46bb90ab862a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e967f83d-13bb-4ba1-b84f-46bb90ab862a img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-e967f83d-13bb-4ba1-b84f-46bb90ab862a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e967f83d-13bb-4ba1-b84f-46bb90ab862a img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-e967f83d-13bb-4ba1-b84f-46bb90ab862a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e967f83d-13bb-4ba1-b84f-46bb90ab862a img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-e967f83d-13bb-4ba1-b84f-46bb90ab862a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e967f83d-13bb-4ba1-b84f-46bb90ab862a img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-e967f83d-13bb-4ba1-b84f-46bb90ab862a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e967f83d-13bb-4ba1-b84f-46bb90ab862a img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-6a0605fb-36c5-4607-a196-41f268419d43 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6a0605fb-36c5-4607-a196-41f268419d43 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-f9db5cb4-cddb-496a-a4b9-226d8f9851c0 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-f9db5cb4-cddb-496a-a4b9-226d8f9851c0 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-f9db5cb4-cddb-496a-a4b9-226d8f9851c0 .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-f9db5cb4-cddb-496a-a4b9-226d8f9851c0 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-7770ab08-9b79-4438-8798-8d44cdbe40a3 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-7770ab08-9b79-4438-8798-8d44cdbe40a3:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-7770ab08-9b79-4438-8798-8d44cdbe40a3:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-7770ab08-9b79-4438-8798-8d44cdbe40a3-atc-btn-wrapper {
    text-align: center;
  }


#s-7770ab08-9b79-4438-8798-8d44cdbe40a3 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-7770ab08-9b79-4438-8798-8d44cdbe40a3.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-7770ab08-9b79-4438-8798-8d44cdbe40a3.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-7770ab08-9b79-4438-8798-8d44cdbe40a3.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-7770ab08-9b79-4438-8798-8d44cdbe40a3-atc-btn-wrapper {
    text-align: center;
  }


#s-7770ab08-9b79-4438-8798-8d44cdbe40a3 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-7770ab08-9b79-4438-8798-8d44cdbe40a3.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-7770ab08-9b79-4438-8798-8d44cdbe40a3.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-7770ab08-9b79-4438-8798-8d44cdbe40a3.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-7770ab08-9b79-4438-8798-8d44cdbe40a3-atc-btn-wrapper {
    text-align: center;
  }


#s-7770ab08-9b79-4438-8798-8d44cdbe40a3 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-7770ab08-9b79-4438-8798-8d44cdbe40a3.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-7770ab08-9b79-4438-8798-8d44cdbe40a3.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-7770ab08-9b79-4438-8798-8d44cdbe40a3.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-7770ab08-9b79-4438-8798-8d44cdbe40a3-atc-btn-wrapper {
    text-align: center;
  }


#s-7770ab08-9b79-4438-8798-8d44cdbe40a3 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-7770ab08-9b79-4438-8798-8d44cdbe40a3.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-7770ab08-9b79-4438-8798-8d44cdbe40a3.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-7770ab08-9b79-4438-8798-8d44cdbe40a3.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-7770ab08-9b79-4438-8798-8d44cdbe40a3-atc-btn-wrapper {
    text-align: center;
  }


#s-7770ab08-9b79-4438-8798-8d44cdbe40a3 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-7770ab08-9b79-4438-8798-8d44cdbe40a3.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-7770ab08-9b79-4438-8798-8d44cdbe40a3.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-7770ab08-9b79-4438-8798-8d44cdbe40a3.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-45ebcc39-a609-45a5-a093-4833ac38a7ec {
  margin-left: auto;
margin-right: auto;
}

#s-84f58802-d6dd-4ef4-ad3f-ef3b4afaf2f8 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-84f58802-d6dd-4ef4-ad3f-ef3b4afaf2f8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-84f58802-d6dd-4ef4-ad3f-ef3b4afaf2f8 img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-84f58802-d6dd-4ef4-ad3f-ef3b4afaf2f8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-84f58802-d6dd-4ef4-ad3f-ef3b4afaf2f8 img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-84f58802-d6dd-4ef4-ad3f-ef3b4afaf2f8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-84f58802-d6dd-4ef4-ad3f-ef3b4afaf2f8 img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-84f58802-d6dd-4ef4-ad3f-ef3b4afaf2f8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-84f58802-d6dd-4ef4-ad3f-ef3b4afaf2f8 img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-c#s-84f58802-d6dd-4ef4-ad3f-ef3b4afaf2f8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-84f58802-d6dd-4ef4-ad3f-ef3b4afaf2f8 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-f255de40-3453-4296-9ce7-3f948067649e {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-f255de40-3453-4296-9ce7-3f948067649e .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-f255de40-3453-4296-9ce7-3f948067649e .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-f255de40-3453-4296-9ce7-3f948067649e .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-3a7fb6ae-5a24-4615-8c5b-89b1ee225bdb {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3a7fb6ae-5a24-4615-8c5b-89b1ee225bdb .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

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

@charset "UTF-8";/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */:root{--animate-duration:1s;--animate-delay:1s;--animate-repeat:1}.animate__animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-duration:var(--animate-duration);animation-duration:var(--animate-duration);-webkit-animation-fill-mode:both;animation-fill-mode:both}.animate__animated.animate__infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animate__animated.animate__repeat-1{-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-iteration-count:var(--animate-repeat);animation-iteration-count:var(--animate-repeat)}.animate__animated.animate__repeat-2{-webkit-animation-iteration-count:2;animation-iteration-count:2;-webkit-animation-iteration-count:calc(var(--animate-repeat)*2);animation-iteration-count:calc(var(--animate-repeat)*2)}.animate__animated.animate__repeat-3{-webkit-animation-iteration-count:3;animation-iteration-count:3;-webkit-animation-iteration-count:calc(var(--animate-repeat)*3);animation-iteration-count:calc(var(--animate-repeat)*3)}.animate__animated.animate__delay-1s{-webkit-animation-delay:1s;animation-delay:1s;-webkit-animation-delay:var(--animate-delay);animation-delay:var(--animate-delay)}.animate__animated.animate__delay-2s{-webkit-animation-delay:2s;animation-delay:2s;-webkit-animation-delay:calc(var(--animate-delay)*2);animation-delay:calc(var(--animate-delay)*2)}.animate__animated.animate__delay-3s{-webkit-animation-delay:3s;animation-delay:3s;-webkit-animation-delay:calc(var(--animate-delay)*3);animation-delay:calc(var(--animate-delay)*3)}.animate__animated.animate__delay-4s{-webkit-animation-delay:4s;animation-delay:4s;-webkit-animation-delay:calc(var(--animate-delay)*4);animation-delay:calc(var(--animate-delay)*4)}.animate__animated.animate__delay-5s{-webkit-animation-delay:5s;animation-delay:5s;-webkit-animation-delay:calc(var(--animate-delay)*5);animation-delay:calc(var(--animate-delay)*5)}.animate__animated.animate__faster{-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-duration:calc(var(--animate-duration)/2);animation-duration:calc(var(--animate-duration)/2)}.animate__animated.animate__fast{-webkit-animation-duration:.8s;animation-duration:.8s;-webkit-animation-duration:calc(var(--animate-duration)*0.8);animation-duration:calc(var(--animate-duration)*0.8)}.animate__animated.animate__slow{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-duration:calc(var(--animate-duration)*2);animation-duration:calc(var(--animate-duration)*2)}.animate__animated.animate__slower{-webkit-animation-duration:3s;animation-duration:3s;-webkit-animation-duration:calc(var(--animate-duration)*3);animation-duration:calc(var(--animate-duration)*3)}@media (prefers-reduced-motion:reduce),print{.animate__animated{-webkit-animation-duration:1ms!important;animation-duration:1ms!important;-webkit-transition-duration:1ms!important;transition-duration:1ms!important;-webkit-animation-iteration-count:1!important;animation-iteration-count:1!important}.animate__animated[class*=Out]{opacity:0}}@-webkit-keyframes bounce{0%,20%,53%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0);transform:translateZ(0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0) scaleY(1.1);transform:translate3d(0,-30px,0) scaleY(1.1)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0) scaleY(1.05);transform:translate3d(0,-15px,0) scaleY(1.05)}80%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0) scaleY(.95);transform:translateZ(0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-4px,0) scaleY(1.02);transform:translate3d(0,-4px,0) scaleY(1.02)}}@keyframes bounce{0%,20%,53%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0);transform:translateZ(0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0) scaleY(1.1);transform:translate3d(0,-30px,0) scaleY(1.1)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0) scaleY(1.05);transform:translate3d(0,-15px,0) scaleY(1.05)}80%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0) scaleY(.95);transform:translateZ(0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-4px,0) scaleY(1.02);transform:translate3d(0,-4px,0) scaleY(1.02)}}.animate__bounce{-webkit-animation-name:bounce;animation-name:bounce;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}.animate__flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes pulse{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__pulse{-webkit-animation-name:pulse;animation-name:pulse;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}@-webkit-keyframes rubberBand{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes rubberBand{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shakeX{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@keyframes shakeX{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}.animate__shakeX{-webkit-animation-name:shakeX;animation-name:shakeX}@-webkit-keyframes shakeY{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}20%,40%,60%,80%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}}@keyframes shakeY{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}20%,40%,60%,80%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}}.animate__shakeY{-webkit-animation-name:shakeY;animation-name:shakeY}@-webkit-keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}.animate__headShake{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-name:headShake;animation-name:headShake}@-webkit-keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}.animate__swing{-webkit-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate(-3deg);transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(3deg);transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(-3deg);transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate(-3deg);transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(3deg);transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(-3deg);transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate(-5deg);transform:translate3d(-25%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate(3deg);transform:translate3d(20%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate(-3deg);transform:translate3d(-15%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate(2deg);transform:translate3d(10%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes wobble{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate(-5deg);transform:translate3d(-25%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate(3deg);transform:translate3d(20%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate(-3deg);transform:translate3d(-15%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate(2deg);transform:translate3d(10%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes jello{0%,11.1%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}@keyframes jello{0%,11.1%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}.animate__jello{-webkit-animation-name:jello;animation-name:jello;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}.animate__heartBeat{-webkit-animation-name:heartBeat;animation-name:heartBeat;-webkit-animation-duration:1.3s;animation-duration:1.3s;-webkit-animation-duration:calc(var(--animate-duration)*1.3);animation-duration:calc(var(--animate-duration)*1.3);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}@-webkit-keyframes backInDown{0%{-webkit-transform:translateY(-1200px) scale(.7);transform:translateY(-1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInDown{0%{-webkit-transform:translateY(-1200px) scale(.7);transform:translateY(-1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInDown{-webkit-animation-name:backInDown;animation-name:backInDown}@-webkit-keyframes backInLeft{0%{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInLeft{0%{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInLeft{-webkit-animation-name:backInLeft;animation-name:backInLeft}@-webkit-keyframes backInRight{0%{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInRight{0%{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInRight{-webkit-animation-name:backInRight;animation-name:backInRight}@-webkit-keyframes backInUp{0%{-webkit-transform:translateY(1200px) scale(.7);transform:translateY(1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInUp{0%{-webkit-transform:translateY(1200px) scale(.7);transform:translateY(1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInUp{-webkit-animation-name:backInUp;animation-name:backInUp}@-webkit-keyframes backOutDown{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(700px) scale(.7);transform:translateY(700px) scale(.7);opacity:.7}}@keyframes backOutDown{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(700px) scale(.7);transform:translateY(700px) scale(.7);opacity:.7}}.animate__backOutDown{-webkit-animation-name:backOutDown;animation-name:backOutDown}@-webkit-keyframes backOutLeft{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}}@keyframes backOutLeft{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}}.animate__backOutLeft{-webkit-animation-name:backOutLeft;animation-name:backOutLeft}@-webkit-keyframes backOutRight{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}}@keyframes backOutRight{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}}.animate__backOutRight{-webkit-animation-name:backOutRight;animation-name:backOutRight}@-webkit-keyframes backOutUp{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(-700px) scale(.7);transform:translateY(-700px) scale(.7);opacity:.7}}@keyframes backOutUp{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(-700px) scale(.7);transform:translateY(-700px) scale(.7);opacity:.7}}.animate__backOutUp{-webkit-animation-name:backOutUp;animation-name:backOutUp}@-webkit-keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__bounceIn{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0) scaleY(3);transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0) scaleY(.9);transform:translate3d(0,25px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,-10px,0) scaleY(.95);transform:translate3d(0,-10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,5px,0) scaleY(.985);transform:translate3d(0,5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0) scaleY(3);transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0) scaleY(.9);transform:translate3d(0,25px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,-10px,0) scaleY(.95);transform:translate3d(0,-10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,5px,0) scaleY(.985);transform:translate3d(0,5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0) scaleX(3);transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0) scaleX(1);transform:translate3d(25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(-10px,0,0) scaleX(.98);transform:translate3d(-10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(5px,0,0) scaleX(.995);transform:translate3d(5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0) scaleX(3);transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0) scaleX(1);transform:translate3d(25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(-10px,0,0) scaleX(.98);transform:translate3d(-10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(5px,0,0) scaleX(.995);transform:translate3d(5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(3000px,0,0) scaleX(3);transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0) scaleX(1);transform:translate3d(-25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(10px,0,0) scaleX(.98);transform:translate3d(10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(-5px,0,0) scaleX(.995);transform:translate3d(-5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(3000px,0,0) scaleX(3);transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0) scaleX(1);transform:translate3d(-25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(10px,0,0) scaleX(.98);transform:translate3d(10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(-5px,0,0) scaleX(.995);transform:translate3d(-5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0) scaleY(5);transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,10px,0) scaleY(.95);transform:translate3d(0,10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-5px,0) scaleY(.985);transform:translate3d(0,-5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0) scaleY(5);transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,10px,0) scaleY(.95);transform:translate3d(0,10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-5px,0) scaleY(.985);transform:translate3d(0,-5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}.animate__bounceOut{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0) scaleY(.985);transform:translate3d(0,10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0) scaleY(3);transform:translate3d(0,2000px,0) scaleY(3)}}@keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0) scaleY(.985);transform:translate3d(0,10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0) scaleY(3);transform:translate3d(0,2000px,0) scaleY(3)}}.animate__bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0) scaleX(.9);transform:translate3d(20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0) scaleX(2);transform:translate3d(-2000px,0,0) scaleX(2)}}@keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0) scaleX(.9);transform:translate3d(20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0) scaleX(2);transform:translate3d(-2000px,0,0) scaleX(2)}}.animate__bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0) scaleX(.9);transform:translate3d(-20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0) scaleX(2);transform:translate3d(2000px,0,0) scaleX(2)}}@keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0) scaleX(.9);transform:translate3d(-20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0) scaleX(2);transform:translate3d(2000px,0,0) scaleX(2)}}.animate__bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0) scaleY(.985);transform:translate3d(0,-10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0) scaleY(.9);transform:translate3d(0,20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0) scaleY(3);transform:translate3d(0,-2000px,0) scaleY(3)}}@keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0) scaleY(.985);transform:translate3d(0,-10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0) scaleY(.9);transform:translate3d(0,20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0) scaleY(3);transform:translate3d(0,-2000px,0) scaleY(3)}}.animate__bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.animate__fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeInTopLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInTopLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInTopLeft{-webkit-animation-name:fadeInTopLeft;animation-name:fadeInTopLeft}@-webkit-keyframes fadeInTopRight{0%{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInTopRight{0%{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInTopRight{-webkit-animation-name:fadeInTopRight;animation-name:fadeInTopRight}@-webkit-keyframes fadeInBottomLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInBottomLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInBottomLeft{-webkit-animation-name:fadeInBottomLeft;animation-name:fadeInBottomLeft}@-webkit-keyframes fadeInBottomRight{0%{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInBottomRight{0%{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInBottomRight{-webkit-animation-name:fadeInBottomRight;animation-name:fadeInBottomRight}@-webkit-keyframes fadeOut{0%{opacity:1}to{opacity:0}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.animate__fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes fadeOutDown{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.animate__fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.animate__fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.animate__fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.animate__fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes fadeOutRight{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.animate__fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.animate__fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes fadeOutUp{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.animate__fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.animate__fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes fadeOutTopLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}}@keyframes fadeOutTopLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}}.animate__fadeOutTopLeft{-webkit-animation-name:fadeOutTopLeft;animation-name:fadeOutTopLeft}@-webkit-keyframes fadeOutTopRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}}@keyframes fadeOutTopRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}}.animate__fadeOutTopRight{-webkit-animation-name:fadeOutTopRight;animation-name:fadeOutTopRight}@-webkit-keyframes fadeOutBottomRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}}@keyframes fadeOutBottomRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}}.animate__fadeOutBottomRight{-webkit-animation-name:fadeOutBottomRight;animation-name:fadeOutBottomRight}@-webkit-keyframes fadeOutBottomLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}}@keyframes fadeOutBottomLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}}.animate__fadeOutBottomLeft{-webkit-animation-name:fadeOutBottomLeft;animation-name:fadeOutBottomLeft}@-webkit-keyframes flip{0%{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{0%{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.animate__animated.animate__flip{-webkit-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.animate__flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}@-webkit-keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-20deg);transform:perspective(400px) rotateY(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-20deg);transform:perspective(400px) rotateY(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.animate__flipInY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}@keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}.animate__flipOutX{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:flipOutX;animation-name:flipOutX;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}@-webkit-keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateY(-15deg);transform:perspective(400px) rotateY(-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}@keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateY(-15deg);transform:perspective(400px) rotateY(-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}.animate__flipOutY{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedInRight{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes lightSpeedInRight{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__lightSpeedInRight{-webkit-animation-name:lightSpeedInRight;animation-name:lightSpeedInRight;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedInLeft{0%{-webkit-transform:translate3d(-100%,0,0) skewX(30deg);transform:translate3d(-100%,0,0) skewX(30deg);opacity:0}60%{-webkit-transform:skewX(-20deg);transform:skewX(-20deg);opacity:1}80%{-webkit-transform:skewX(5deg);transform:skewX(5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes lightSpeedInLeft{0%{-webkit-transform:translate3d(-100%,0,0) skewX(30deg);transform:translate3d(-100%,0,0) skewX(30deg);opacity:0}60%{-webkit-transform:skewX(-20deg);transform:skewX(-20deg);opacity:1}80%{-webkit-transform:skewX(5deg);transform:skewX(5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__lightSpeedInLeft{-webkit-animation-name:lightSpeedInLeft;animation-name:lightSpeedInLeft;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOutRight{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}@keyframes lightSpeedOutRight{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.animate__lightSpeedOutRight{-webkit-animation-name:lightSpeedOutRight;animation-name:lightSpeedOutRight;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes lightSpeedOutLeft{0%{opacity:1}to{-webkit-transform:translate3d(-100%,0,0) skewX(-30deg);transform:translate3d(-100%,0,0) skewX(-30deg);opacity:0}}@keyframes lightSpeedOutLeft{0%{opacity:1}to{-webkit-transform:translate3d(-100%,0,0) skewX(-30deg);transform:translate3d(-100%,0,0) skewX(-30deg);opacity:0}}.animate__lightSpeedOutLeft{-webkit-animation-name:lightSpeedOutLeft;animation-name:lightSpeedOutLeft;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{0%{-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateIn{0%{-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes rotateInDownLeft{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInDownLeft{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateInDownRight{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInDownRight{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateInUpLeft{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInUpLeft{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateInUpRight{0%{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInUpRight{0%{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateOut{0%{opacity:1}to{-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}@keyframes rotateOut{0%{opacity:1}to{-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}.animate__rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes rotateOutDownLeft{0%{opacity:1}to{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}}@keyframes rotateOutDownLeft{0%{opacity:1}to{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}}.animate__rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateOutDownRight{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}@keyframes rotateOutDownRight{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}.animate__rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateOutUpLeft{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}@keyframes rotateOutUpLeft{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}.animate__rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateOutUpRight{0%{opacity:1}to{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes rotateOutUpRight{0%{opacity:1}to{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}.animate__rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes hinge{0%{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}@keyframes hinge{0%{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}.animate__hinge{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-duration:calc(var(--animate-duration)*2);animation-duration:calc(var(--animate-duration)*2);-webkit-animation-name:hinge;animation-name:hinge;-webkit-transform-origin:top left;transform-origin:top left}@-webkit-keyframes jackInTheBox{0%{opacity:0;-webkit-transform:scale(.1) rotate(30deg);transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes jackInTheBox{0%{opacity:0;-webkit-transform:scale(.1) rotate(30deg);transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.animate__jackInTheBox{-webkit-animation-name:jackInTheBox;animation-name:jackInTheBox}@-webkit-keyframes rollIn{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate(-120deg);transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes rollIn{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate(-120deg);transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate(120deg);transform:translate3d(100%,0,0) rotate(120deg)}}@keyframes rollOut{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate(120deg);transform:translate3d(100%,0,0) rotate(120deg)}}.animate__rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}@-webkit-keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}.animate__zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-webkit-keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-webkit-keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-webkit-keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}@-webkit-keyframes zoomOut{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes zoomOut{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}.animate__zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-webkit-keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0)}}@keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0)}}.animate__zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft;-webkit-transform-origin:left center;transform-origin:left center}@-webkit-keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0)}}@keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0)}}.animate__zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight;-webkit-transform-origin:right center;transform-origin:right center}@-webkit-keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes slideOutDown{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.animate__slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes slideOutLeft{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes slideOutLeft{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.animate__slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes slideOutRight{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.animate__slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes slideOutUp{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.animate__slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}