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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

#s-657b4082-9068-4960-92c2-461d3da5e40d {
  margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
min-height: 426px;
}
@media (min-width: 768px) and (max-width: 991px){#s-657b4082-9068-4960-92c2-461d3da5e40d {
  border-color: rgba(205, 214, 220, 1);
border-style: none;
}
}@media (max-width: 767px){#s-657b4082-9068-4960-92c2-461d3da5e40d {
  display: none;
}
#s-657b4082-9068-4960-92c2-461d3da5e40d, #wrap-s-657b4082-9068-4960-92c2-461d3da5e40d, #wrap-content-s-657b4082-9068-4960-92c2-461d3da5e40d { display: none !important; }}
#s-657b4082-9068-4960-92c2-461d3da5e40d .shg-sld-dot {
  background-color: rgba(94, 113, 131, 1);
}

#s-657b4082-9068-4960-92c2-461d3da5e40d .shg-sld-nav-button.shg-sld-left,
#s-657b4082-9068-4960-92c2-461d3da5e40d .shg-sld-nav-button.shg-sld-right {
  fill: rgba(94, 113, 131, 1);
}
@media (min-width: 992px) and (max-width: 1199px){#s-657b4082-9068-4960-92c2-461d3da5e40d .shg-sld-dot {
  background-color: rgba(94, 113, 131, 1);
}

#s-657b4082-9068-4960-92c2-461d3da5e40d .shg-sld-nav-button.shg-sld-left,
#s-657b4082-9068-4960-92c2-461d3da5e40d .shg-sld-nav-button.shg-sld-right {
  fill: rgba(94, 113, 131, 1);
}
}
.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-ca8773c0-2402-4651-ac53-38d8da835c04 {
  padding-left: 0px;
padding-right: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(205, 214, 220, 1);
border-style: solid;
min-height: 426px;
}
@media (min-width: 1200px){#s-ca8773c0-2402-4651-ac53-38d8da835c04 {
  display: none;
}
#s-ca8773c0-2402-4651-ac53-38d8da835c04, #wrap-s-ca8773c0-2402-4651-ac53-38d8da835c04, #wrap-content-s-ca8773c0-2402-4651-ac53-38d8da835c04 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ca8773c0-2402-4651-ac53-38d8da835c04 {
  display: none;
}
#s-ca8773c0-2402-4651-ac53-38d8da835c04, #wrap-s-ca8773c0-2402-4651-ac53-38d8da835c04, #wrap-content-s-ca8773c0-2402-4651-ac53-38d8da835c04 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ca8773c0-2402-4651-ac53-38d8da835c04 {
  display: none;
}
#s-ca8773c0-2402-4651-ac53-38d8da835c04, #wrap-s-ca8773c0-2402-4651-ac53-38d8da835c04, #wrap-content-s-ca8773c0-2402-4651-ac53-38d8da835c04 { display: none !important; }}







#s-ca8773c0-2402-4651-ac53-38d8da835c04 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ca8773c0-2402-4651-ac53-38d8da835c04.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-7333bd98-3b27-4b8f-bc4e-40e5e3c66079 {
  margin-top: 16px;
margin-bottom: 0px;
padding-left: 16px;
padding-right: 16px;
min-height: 50px;
}








#s-7333bd98-3b27-4b8f-bc4e-40e5e3c66079 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7333bd98-3b27-4b8f-bc4e-40e5e3c66079.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-rich-text {
  overflow-wrap: break-word;
}

.shg-rich-text img {
  margin: 0 20px;
}

@media (max-width: 768px) {
  .shg-rich-text img {
    display: block;
    float: none !important;
    margin: 0 auto;
  }
}

.shg-default-text-content *:first-child {
  margin-top: 0;
}

.shg-default-text-content {
  text-align: left;
}

.shg-default-text-content p,
.shg-default-text-content h1,
.shg-default-text-content h2,
.shg-default-text-content h3,
.shg-default-text-content h4,
.shg-default-text-content h5,
.shg-default-text-content h6,
.shg-default-text-content address,
.shg-default-text-content pre,
.shg-default-text-content div,
.shg-default-text-content ol,
.shg-default-text-content ul {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  color: #000000;
  font-family: inherit;
  font-style: normal;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-transform: none;
}

.shg-default-text-content h1,
.shg-default-text-content h2,
.shg-default-text-content h3,
.shg-default-text-content h4,
.shg-default-text-content h5,
.shg-default-text-content h6 {
  color: rgba(0, 0, 0, 1);
  font-family: "areaNormal800";
  font-weight: 400;
}

.shg-default-text-content a {
  background-color: inherit;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-style: inherit;
  text-decoration: underline;
  text-transform: inherit;
}

.shg-default-text-content strong,
.shg-default-text-content em {
  background-color: inherit;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: inherit;
  text-transform: inherit;
}

.shg-default-text-content em {
  font-weight: inherit;
}

.shg-default-text-content strong {
  font-style: inherit;
  font-weight: 700;
}

/* https://stackoverflow.com/a/16094931/3696652 */
.shg-default-text-content ::selection,
.shg-default-text-content *::selection {
  background: #accef7;
}

.shg-default-text-content p {
  font-size: 1em;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0.6em;
  color: rgba(0, 0, 0, 1);
  font-family: "area-normal";
}

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

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

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

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

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

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

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

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

.shg-default-text-content ul,
.shg-default-text-content ol {
  margin-block-end: 1em;
  margin-block-start: 1em;
  margin-bottom: 0;
  margin-inline-end: 0;
  margin-inline-start: 0;
  margin-top: 0;
  padding-inline-start: 40px;
}

.shg-default-text-content li {
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1;
  list-style: inherit;
  margin-top: 0.67em;
}

.shg-default-text-content pre {
  font-family: monospace;
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 1em;
  white-space: pre-wrap;
  word-break: normal;
}

.shg-default-text-content address {
  font-size: 1em;
  font-style: italic;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0;
}

.shg-default-text-content div {
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-bottom: 0;
  margin-top: 0.67em;
}

.shg-theme-text-content h1,
.shg-theme-text-content h2,
.shg-theme-text-content h3,
.shg-theme-text-content h4,
.shg-theme-text-content h5,
.shg-theme-text-content h6 {
  color: rgba(0, 0, 0, 1);
  font-family: "areaNormal800";
  font-weight: 400;
}

.shg-theme-text-content p {
  color: rgba(0, 0, 0, 1);
  font-family: "area-normal";
  font-weight: 400;
}

#s-49e67129-bfda-42d4-81f2-47def1259f7b {
  margin-left: 4px;
margin-bottom: 4px;
}

.shogun-heading-component h1,
.shogun-heading-component h2,
.shogun-heading-component h3,
.shogun-heading-component h4,
.shogun-heading-component h5,
.shogun-heading-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: rgba(0, 0, 0, 1);
  font-family: "areaNormal800";
  text-transform: none;
  font-weight: 400;
  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-ddf591bc-c71d-4c03-abce-d7d0878da899 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-ddf591bc-c71d-4c03-abce-d7d0878da899 .shogun-heading-component h1 {
  color: rgba(168, 0, 30, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 60px;
  line-height: 1em;
  
  text-align: center;
}



#s-a994cfd5-f6cc-4f51-b35a-7f511cc9fb0c {
  margin-top: 0px;
}

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

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

.shg-btn-text {
  font-weight: 400;
  font-family: "area-normal";
}

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

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

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

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

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

#s-d42ed0f7-6ca4-424c-83b9-fb1838fa5fdc {
  margin-top: 16px;
margin-left: 16px;
margin-right: 16px;
padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
border-radius: 4px;
background-color: rgba(168, 0, 30, 1);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
background-image: none;
hover-type: color;
}
#s-d42ed0f7-6ca4-424c-83b9-fb1838fa5fdc:hover {background-color: rgba(82, 1, 14, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-d42ed0f7-6ca4-424c-83b9-fb1838fa5fdc:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-d42ed0f7-6ca4-424c-83b9-fb1838fa5fdc-root {
    text-align: center;
  }


#s-d42ed0f7-6ca4-424c-83b9-fb1838fa5fdc.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-d42ed0f7-6ca4-424c-83b9-fb1838fa5fdc-root {
    text-align: center;
  }


#s-d42ed0f7-6ca4-424c-83b9-fb1838fa5fdc.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d42ed0f7-6ca4-424c-83b9-fb1838fa5fdc-root {
    text-align: center;
  }


#s-d42ed0f7-6ca4-424c-83b9-fb1838fa5fdc.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d42ed0f7-6ca4-424c-83b9-fb1838fa5fdc-root {
    text-align: center;
  }


#s-d42ed0f7-6ca4-424c-83b9-fb1838fa5fdc.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-d42ed0f7-6ca4-424c-83b9-fb1838fa5fdc-root {
    text-align: center;
  }


#s-d42ed0f7-6ca4-424c-83b9-fb1838fa5fdc.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
}
#s-b5ddd463-2684-4aa4-b07a-7bd7b84544c0 {
  margin-top: 24px;
min-height: 50px;
background-color: rgba(183, 238, 255, 1);
}








#s-b5ddd463-2684-4aa4-b07a-7bd7b84544c0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b5ddd463-2684-4aa4-b07a-7bd7b84544c0.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-4509c176-9149-4ea5-be2d-4498b64797cb {
  max-width: 200px;
aspect-ratio: 410/434;
text-align: center;
}

#s-4509c176-9149-4ea5-be2d-4498b64797cb {
  margin: 0 !important;
  overflow: visible;
}

#s-4509c176-9149-4ea5-be2d-4498b64797cb-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-4509c176-9149-4ea5-be2d-4498b64797cb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4509c176-9149-4ea5-be2d-4498b64797cb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4509c176-9149-4ea5-be2d-4498b64797cb img.shogun-image {
  /* Add background color handling */
  
}

#s-4509c176-9149-4ea5-be2d-4498b64797cb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4509c176-9149-4ea5-be2d-4498b64797cb .shg-image-content-wrapper {
      aspect-ratio: 410/434;
      min-width: 100%;
      height: auto;
    }

    #s-4509c176-9149-4ea5-be2d-4498b64797cb .shogun-image-link {
      aspect-ratio: 410/434;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4509c176-9149-4ea5-be2d-4498b64797cb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4509c176-9149-4ea5-be2d-4498b64797cb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4509c176-9149-4ea5-be2d-4498b64797cb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-4509c176-9149-4ea5-be2d-4498b64797cb.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-4509c176-9149-4ea5-be2d-4498b64797cb .shogun-image-content {
  
    justify-content: center;
  
}

.s-4509c176-9149-4ea5-be2d-4498b64797cb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4509c176-9149-4ea5-be2d-4498b64797cb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4509c176-9149-4ea5-be2d-4498b64797cb.shogun-image {
  box-sizing: border-box;
}



.s-4509c176-9149-4ea5-be2d-4498b64797cb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4509c176-9149-4ea5-be2d-4498b64797cb {
      --shg-aspect-ratio: calc(410/434); 
    }

    .s-4509c176-9149-4ea5-be2d-4498b64797cb.shogun-image-container {
      position: relative;
    }

    .s-4509c176-9149-4ea5-be2d-4498b64797cb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4509c176-9149-4ea5-be2d-4498b64797cb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4509c176-9149-4ea5-be2d-4498b64797cb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

@media (min-width: 1200px){#s-4509c176-9149-4ea5-be2d-4498b64797cb {
  margin: 0 !important;
  overflow: visible;
}

#s-4509c176-9149-4ea5-be2d-4498b64797cb-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-4509c176-9149-4ea5-be2d-4498b64797cb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4509c176-9149-4ea5-be2d-4498b64797cb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4509c176-9149-4ea5-be2d-4498b64797cb img.shogun-image {
  /* Add background color handling */
  
}

#s-4509c176-9149-4ea5-be2d-4498b64797cb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4509c176-9149-4ea5-be2d-4498b64797cb .shg-image-content-wrapper {
      aspect-ratio: 410/434;
      min-width: 100%;
      height: auto;
    }

    #s-4509c176-9149-4ea5-be2d-4498b64797cb .shogun-image-link {
      aspect-ratio: 410/434;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4509c176-9149-4ea5-be2d-4498b64797cb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4509c176-9149-4ea5-be2d-4498b64797cb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4509c176-9149-4ea5-be2d-4498b64797cb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-4509c176-9149-4ea5-be2d-4498b64797cb.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-4509c176-9149-4ea5-be2d-4498b64797cb .shogun-image-content {
  
    justify-content: center;
  
}

.s-4509c176-9149-4ea5-be2d-4498b64797cb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4509c176-9149-4ea5-be2d-4498b64797cb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4509c176-9149-4ea5-be2d-4498b64797cb.shogun-image {
  box-sizing: border-box;
}



.s-4509c176-9149-4ea5-be2d-4498b64797cb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4509c176-9149-4ea5-be2d-4498b64797cb {
      --shg-aspect-ratio: calc(410/434); 
    }

    .s-4509c176-9149-4ea5-be2d-4498b64797cb.shogun-image-container {
      position: relative;
    }

    .s-4509c176-9149-4ea5-be2d-4498b64797cb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4509c176-9149-4ea5-be2d-4498b64797cb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4509c176-9149-4ea5-be2d-4498b64797cb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-4509c176-9149-4ea5-be2d-4498b64797cb {
  margin: 0 !important;
  overflow: visible;
}

#s-4509c176-9149-4ea5-be2d-4498b64797cb-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-4509c176-9149-4ea5-be2d-4498b64797cb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4509c176-9149-4ea5-be2d-4498b64797cb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4509c176-9149-4ea5-be2d-4498b64797cb img.shogun-image {
  /* Add background color handling */
  
}

#s-4509c176-9149-4ea5-be2d-4498b64797cb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4509c176-9149-4ea5-be2d-4498b64797cb .shg-image-content-wrapper {
      aspect-ratio: 410/434;
      min-width: 100%;
      height: auto;
    }

    #s-4509c176-9149-4ea5-be2d-4498b64797cb .shogun-image-link {
      aspect-ratio: 410/434;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4509c176-9149-4ea5-be2d-4498b64797cb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4509c176-9149-4ea5-be2d-4498b64797cb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4509c176-9149-4ea5-be2d-4498b64797cb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-4509c176-9149-4ea5-be2d-4498b64797cb.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-4509c176-9149-4ea5-be2d-4498b64797cb .shogun-image-content {
  
    justify-content: center;
  
}

.s-4509c176-9149-4ea5-be2d-4498b64797cb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4509c176-9149-4ea5-be2d-4498b64797cb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4509c176-9149-4ea5-be2d-4498b64797cb.shogun-image {
  box-sizing: border-box;
}



.s-4509c176-9149-4ea5-be2d-4498b64797cb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4509c176-9149-4ea5-be2d-4498b64797cb {
      --shg-aspect-ratio: calc(410/434); 
    }

    .s-4509c176-9149-4ea5-be2d-4498b64797cb.shogun-image-container {
      position: relative;
    }

    .s-4509c176-9149-4ea5-be2d-4498b64797cb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4509c176-9149-4ea5-be2d-4498b64797cb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4509c176-9149-4ea5-be2d-4498b64797cb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-4509c176-9149-4ea5-be2d-4498b64797cb {
  margin: 0 !important;
  overflow: visible;
}

#s-4509c176-9149-4ea5-be2d-4498b64797cb-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-4509c176-9149-4ea5-be2d-4498b64797cb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4509c176-9149-4ea5-be2d-4498b64797cb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4509c176-9149-4ea5-be2d-4498b64797cb img.shogun-image {
  /* Add background color handling */
  
}

#s-4509c176-9149-4ea5-be2d-4498b64797cb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4509c176-9149-4ea5-be2d-4498b64797cb .shg-image-content-wrapper {
      aspect-ratio: 410/434;
      min-width: 100%;
      height: auto;
    }

    #s-4509c176-9149-4ea5-be2d-4498b64797cb .shogun-image-link {
      aspect-ratio: 410/434;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4509c176-9149-4ea5-be2d-4498b64797cb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4509c176-9149-4ea5-be2d-4498b64797cb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4509c176-9149-4ea5-be2d-4498b64797cb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-4509c176-9149-4ea5-be2d-4498b64797cb.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-4509c176-9149-4ea5-be2d-4498b64797cb .shogun-image-content {
  
    justify-content: center;
  
}

.s-4509c176-9149-4ea5-be2d-4498b64797cb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4509c176-9149-4ea5-be2d-4498b64797cb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4509c176-9149-4ea5-be2d-4498b64797cb.shogun-image {
  box-sizing: border-box;
}



.s-4509c176-9149-4ea5-be2d-4498b64797cb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4509c176-9149-4ea5-be2d-4498b64797cb {
      --shg-aspect-ratio: calc(410/434); 
    }

    .s-4509c176-9149-4ea5-be2d-4498b64797cb.shogun-image-container {
      position: relative;
    }

    .s-4509c176-9149-4ea5-be2d-4498b64797cb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4509c176-9149-4ea5-be2d-4498b64797cb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4509c176-9149-4ea5-be2d-4498b64797cb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (max-width: 767px){#s-4509c176-9149-4ea5-be2d-4498b64797cb {
  margin: 0 !important;
  overflow: visible;
}

#s-4509c176-9149-4ea5-be2d-4498b64797cb-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-4509c176-9149-4ea5-be2d-4498b64797cb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4509c176-9149-4ea5-be2d-4498b64797cb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4509c176-9149-4ea5-be2d-4498b64797cb img.shogun-image {
  /* Add background color handling */
  
}

#s-4509c176-9149-4ea5-be2d-4498b64797cb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4509c176-9149-4ea5-be2d-4498b64797cb .shg-image-content-wrapper {
      aspect-ratio: 410/434;
      min-width: 100%;
      height: auto;
    }

    #s-4509c176-9149-4ea5-be2d-4498b64797cb .shogun-image-link {
      aspect-ratio: 410/434;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4509c176-9149-4ea5-be2d-4498b64797cb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4509c176-9149-4ea5-be2d-4498b64797cb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4509c176-9149-4ea5-be2d-4498b64797cb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-4509c176-9149-4ea5-be2d-4498b64797cb.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-4509c176-9149-4ea5-be2d-4498b64797cb .shogun-image-content {
  
    justify-content: center;
  
}

.s-4509c176-9149-4ea5-be2d-4498b64797cb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4509c176-9149-4ea5-be2d-4498b64797cb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4509c176-9149-4ea5-be2d-4498b64797cb.shogun-image {
  box-sizing: border-box;
}



.s-4509c176-9149-4ea5-be2d-4498b64797cb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4509c176-9149-4ea5-be2d-4498b64797cb {
      --shg-aspect-ratio: calc(410/434); 
    }

    .s-4509c176-9149-4ea5-be2d-4498b64797cb.shogun-image-container {
      position: relative;
    }

    .s-4509c176-9149-4ea5-be2d-4498b64797cb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4509c176-9149-4ea5-be2d-4498b64797cb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4509c176-9149-4ea5-be2d-4498b64797cb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}
#s-c4a620bc-743e-49a2-833f-a2cbc65e2bb7 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 426px;
background-position: center center;
}

#s-c4a620bc-743e-49a2-833f-a2cbc65e2bb7 {
  background-image: url(https://i.shgcdn.com/8906602a-b3fb-4504-9a8c-b843f969c1b1/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-c4a620bc-743e-49a2-833f-a2cbc65e2bb7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c4a620bc-743e-49a2-833f-a2cbc65e2bb7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media only screen and (max-width: 766px) {
  .page-width.page-width--full-width-mobile {
    padding-left: 0;
    padding-right: 0;
  }
}

@media only screen and (max-width: 1024px) {
  .page-width.page-width--full-width-medium {
    padding-left: 0;
    padding-right: 0;
  }
}
#s-045ac104-0d59-4be2-ba76-4781aa540597 {
  min-height: 0px;
}

.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-5d312b38-e8b3-48e1-a95d-6ac2a662845b {
  margin-left: auto;
margin-right: auto;
min-height: 0px;
}

@media (min-width: 0px) {
[id="s-5d312b38-e8b3-48e1-a95d-6ac2a662845b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5d312b38-e8b3-48e1-a95d-6ac2a662845b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-5d312b38-e8b3-48e1-a95d-6ac2a662845b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-5d312b38-e8b3-48e1-a95d-6ac2a662845b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-4233b7bc-4898-46a8-99c9-18eb654b4bb2 {
  padding-top: 47px;
padding-left: 39px;
padding-bottom: 47px;
padding-right: 54px;
min-height: 376px;
}
@media (min-width: 768px) and (max-width: 991px){#s-4233b7bc-4898-46a8-99c9-18eb654b4bb2 {
  padding-top: 47px;
}
}@media (max-width: 767px){#s-4233b7bc-4898-46a8-99c9-18eb654b4bb2 {
  padding-top: 21px;
padding-left: 15px;
padding-bottom: 39px;
padding-right: 15px;
}
}







#s-4233b7bc-4898-46a8-99c9-18eb654b4bb2 > .shg-box-overlay {
  background-color: rgba(29, 38, 46, 1);
  opacity: 0.8;
  display: block;
}#s-4233b7bc-4898-46a8-99c9-18eb654b4bb2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 767px){






#s-4233b7bc-4898-46a8-99c9-18eb654b4bb2 > .shg-box-overlay {
  background-color: rgba(29, 38, 46, 1);
  opacity: 0.8;
  display: block;
}#s-4233b7bc-4898-46a8-99c9-18eb654b4bb2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
}
#s-76a799c6-2c4d-4ab1-bfec-5e947608d796 {
  margin-top: -16px;
margin-bottom: 0px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-76a799c6-2c4d-4ab1-bfec-5e947608d796 {
  margin-top: -32px;
}
}@media (max-width: 767px){#s-76a799c6-2c4d-4ab1-bfec-5e947608d796 {
  margin-top: 40px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 4%;
}
}
#s-76a799c6-2c4d-4ab1-bfec-5e947608d796 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  line-height: 1.3em;
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-76a799c6-2c4d-4ab1-bfec-5e947608d796 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  line-height: 1.3em;
  
  
}


}@media (max-width: 767px){#s-76a799c6-2c4d-4ab1-bfec-5e947608d796 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  line-height: 1.3em;
  
  
}


}
#s-9fe2c6f2-129c-4996-9d8b-62af5ca437f1 {
  margin-top: 8px;
}
@media (max-width: 767px){#s-9fe2c6f2-129c-4996-9d8b-62af5ca437f1 {
  margin-left: 0%;
margin-right: 4%;
}
}
#s-04d742fd-fece-4978-9f9e-6b7186ddee53 {
  margin-top: 32px;
}
@media (min-width: 768px) and (max-width: 991px){#s-04d742fd-fece-4978-9f9e-6b7186ddee53 {
  margin-top: 16px;
margin-bottom: -8px;
}
}
#s-0f391633-cc11-4d9b-8926-bb45cc5c8dd4 {
  min-height: 30px;
}
@media (min-width: 1200px){#s-0f391633-cc11-4d9b-8926-bb45cc5c8dd4 {
  min-height: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0f391633-cc11-4d9b-8926-bb45cc5c8dd4 {
  min-height: 50px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-0f391633-cc11-4d9b-8926-bb45cc5c8dd4 {
  min-height: 50px;
}
}







#s-0f391633-cc11-4d9b-8926-bb45cc5c8dd4 > .shg-box-overlay {
  background-color: rgba(29, 38, 46, 1);
  opacity: 0.8;
  display: block;
}#s-0f391633-cc11-4d9b-8926-bb45cc5c8dd4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-84895a17-2b2a-477c-940d-a83cbe66cbfe {
  margin-top: -40px;
margin-left: 40px;
margin-bottom: 0px;
margin-right: 40px;
padding-top: 0px;
padding-bottom: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-84895a17-2b2a-477c-940d-a83cbe66cbfe {
  margin-top: -70px;
}
}@media (max-width: 767px){#s-84895a17-2b2a-477c-940d-a83cbe66cbfe {
  display: none;
}
#s-84895a17-2b2a-477c-940d-a83cbe66cbfe, #wrap-s-84895a17-2b2a-477c-940d-a83cbe66cbfe, #wrap-content-s-84895a17-2b2a-477c-940d-a83cbe66cbfe { display: none !important; }}
#s-0d3c4222-0a9d-4ada-b04d-142d80a9bc46 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(205, 214, 220, 1);
border-style: solid;
min-height: 426px;
background-color: rgba(221, 247, 255, 1);
}
@media (min-width: 1200px){#s-0d3c4222-0a9d-4ada-b04d-142d80a9bc46 {
  display: none;
}
#s-0d3c4222-0a9d-4ada-b04d-142d80a9bc46, #wrap-s-0d3c4222-0a9d-4ada-b04d-142d80a9bc46, #wrap-content-s-0d3c4222-0a9d-4ada-b04d-142d80a9bc46 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-0d3c4222-0a9d-4ada-b04d-142d80a9bc46 {
  display: none;
}
#s-0d3c4222-0a9d-4ada-b04d-142d80a9bc46, #wrap-s-0d3c4222-0a9d-4ada-b04d-142d80a9bc46, #wrap-content-s-0d3c4222-0a9d-4ada-b04d-142d80a9bc46 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-0d3c4222-0a9d-4ada-b04d-142d80a9bc46 {
  border-color: #000;
border-bottom-width: 1px;
border-style: none;
}
}@media (max-width: 767px){#s-0d3c4222-0a9d-4ada-b04d-142d80a9bc46 {
  min-height: 0px;
display: none;
}
#s-0d3c4222-0a9d-4ada-b04d-142d80a9bc46, #wrap-s-0d3c4222-0a9d-4ada-b04d-142d80a9bc46, #wrap-content-s-0d3c4222-0a9d-4ada-b04d-142d80a9bc46 { display: none !important; }}







#s-0d3c4222-0a9d-4ada-b04d-142d80a9bc46 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0d3c4222-0a9d-4ada-b04d-142d80a9bc46.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4572dfd3-f027-4811-9b46-1dc45dc5629e {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-4572dfd3-f027-4811-9b46-1dc45dc5629e {
  display: none;
}
#s-4572dfd3-f027-4811-9b46-1dc45dc5629e, #wrap-s-4572dfd3-f027-4811-9b46-1dc45dc5629e, #wrap-content-s-4572dfd3-f027-4811-9b46-1dc45dc5629e { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4572dfd3-f027-4811-9b46-1dc45dc5629e {
  display: none;
}
#s-4572dfd3-f027-4811-9b46-1dc45dc5629e, #wrap-s-4572dfd3-f027-4811-9b46-1dc45dc5629e, #wrap-content-s-4572dfd3-f027-4811-9b46-1dc45dc5629e { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-4572dfd3-f027-4811-9b46-1dc45dc5629e {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(205, 214, 220, 1);
border-style: solid;
background-color: rgba(255, 255, 255, 1);
}
}@media (max-width: 767px){#s-4572dfd3-f027-4811-9b46-1dc45dc5629e {
  display: none;
}
#s-4572dfd3-f027-4811-9b46-1dc45dc5629e, #wrap-s-4572dfd3-f027-4811-9b46-1dc45dc5629e, #wrap-content-s-4572dfd3-f027-4811-9b46-1dc45dc5629e { display: none !important; }}
@media (min-width: 0px) {
[id="s-4572dfd3-f027-4811-9b46-1dc45dc5629e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4572dfd3-f027-4811-9b46-1dc45dc5629e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-4572dfd3-f027-4811-9b46-1dc45dc5629e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-4572dfd3-f027-4811-9b46-1dc45dc5629e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-0e4a406c-9f5e-456e-85f8-5b248222e5b8 {
  background-repeat: no-repeat;
background-size: cover;
margin-left: auto;
margin-right: auto;
min-height: 50px;
background-position: center top;
}
@media (min-width: 768px) and (max-width: 991px){#s-0e4a406c-9f5e-456e-85f8-5b248222e5b8 {
  min-height: 126px;
}
}
#s-0e4a406c-9f5e-456e-85f8-5b248222e5b8 {
  background-image: url(https://i.shgcdn.com/f3826363-6347-40b3-8155-a07b6c5faeeb/);
}

@media (max-width: 480px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-0e4a406c-9f5e-456e-85f8-5b248222e5b8 {
  background-image: url(https://i.shgcdn.com/f3826363-6347-40b3-8155-a07b6c5faeeb/-/resize/480x/);
}
#s-0e4a406c-9f5e-456e-85f8-5b248222e5b8.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
#s-0e4a406c-9f5e-456e-85f8-5b248222e5b8 {
  background-image: url(https://i.shgcdn.com/f3826363-6347-40b3-8155-a07b6c5faeeb/-/resize/960x/);
}
#s-0e4a406c-9f5e-456e-85f8-5b248222e5b8.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-0e4a406c-9f5e-456e-85f8-5b248222e5b8 {
  background-image: url(https://i.shgcdn.com/f3826363-6347-40b3-8155-a07b6c5faeeb/-/resize/768x/);
}
#s-0e4a406c-9f5e-456e-85f8-5b248222e5b8.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
#s-0e4a406c-9f5e-456e-85f8-5b248222e5b8 {
  background-image: url(https://i.shgcdn.com/f3826363-6347-40b3-8155-a07b6c5faeeb/-/resize/1536x/);
}
#s-0e4a406c-9f5e-456e-85f8-5b248222e5b8.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-0e4a406c-9f5e-456e-85f8-5b248222e5b8 {
  background-image: url(https://i.shgcdn.com/f3826363-6347-40b3-8155-a07b6c5faeeb/-/resize/1024x/);
}
#s-0e4a406c-9f5e-456e-85f8-5b248222e5b8.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
#s-0e4a406c-9f5e-456e-85f8-5b248222e5b8 {
  background-image: url(https://i.shgcdn.com/f3826363-6347-40b3-8155-a07b6c5faeeb/-/resize/2048x/);
}
#s-0e4a406c-9f5e-456e-85f8-5b248222e5b8.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-0e4a406c-9f5e-456e-85f8-5b248222e5b8 {
  background-image: url(https://i.shgcdn.com/f3826363-6347-40b3-8155-a07b6c5faeeb/-/resize/1200x/);
}
#s-0e4a406c-9f5e-456e-85f8-5b248222e5b8.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 2) {
#s-0e4a406c-9f5e-456e-85f8-5b248222e5b8 {
  background-image: url(https://i.shgcdn.com/f3826363-6347-40b3-8155-a07b6c5faeeb/-/resize/2048x/);
}
#s-0e4a406c-9f5e-456e-85f8-5b248222e5b8.shogun-lazyload-bg-image {
  background-image: none;
}

}







#s-0e4a406c-9f5e-456e-85f8-5b248222e5b8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0e4a406c-9f5e-456e-85f8-5b248222e5b8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a3dab219-abdf-4323-9d6c-ff6acc93a41c {
  background-size: cover;
margin-left: auto;
margin-right: auto;
min-height: 426px;
background-position: left bottom;
}
@media (min-width: 768px) and (max-width: 991px){#s-a3dab219-abdf-4323-9d6c-ff6acc93a41c {
  margin-left: 24px;
margin-right: 24px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(205, 214, 220, 1);
border-style: none;
min-height: 300px;
}
}







#s-a3dab219-abdf-4323-9d6c-ff6acc93a41c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a3dab219-abdf-4323-9d6c-ff6acc93a41c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-content-v3 > * {
  flex-shrink: 0; /* Prevents children from shrinking maintaining natural size*/
  width: 100%;
}
#s-92f4e4a9-ef61-4659-8ddb-a12156354a72 {
  margin-left: auto;
margin-right: auto;
max-width: 396px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-92f4e4a9-ef61-4659-8ddb-a12156354a72 {
  margin-top: 0px;
margin-bottom: 8px;
max-width: 160px;
}
}
#s-92f4e4a9-ef61-4659-8ddb-a12156354a72 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-92f4e4a9-ef61-4659-8ddb-a12156354a72-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-92f4e4a9-ef61-4659-8ddb-a12156354a72 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-92f4e4a9-ef61-4659-8ddb-a12156354a72 .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-92f4e4a9-ef61-4659-8ddb-a12156354a72 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-92f4e4a9-ef61-4659-8ddb-a12156354a72 img.shogun-image {
  width: 100%;
  
  
  max-width: 396px;

      
    max-width: 396px;

  /* 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-92f4e4a9-ef61-4659-8ddb-a12156354a72 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-92f4e4a9-ef61-4659-8ddb-a12156354a72.shg-align-container {
  display: flex;
  justify-content: center
}

.s-92f4e4a9-ef61-4659-8ddb-a12156354a72.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-92f4e4a9-ef61-4659-8ddb-a12156354a72.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-92f4e4a9-ef61-4659-8ddb-a12156354a72 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-92f4e4a9-ef61-4659-8ddb-a12156354a72-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-92f4e4a9-ef61-4659-8ddb-a12156354a72 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-92f4e4a9-ef61-4659-8ddb-a12156354a72 .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-92f4e4a9-ef61-4659-8ddb-a12156354a72 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-92f4e4a9-ef61-4659-8ddb-a12156354a72 img.shogun-image {
  width: 100%;
  
  
  max-width: 396px;

      
    max-width: 396px;

  /* 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-92f4e4a9-ef61-4659-8ddb-a12156354a72 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-92f4e4a9-ef61-4659-8ddb-a12156354a72.shg-align-container {
  display: flex;
  justify-content: center
}

.s-92f4e4a9-ef61-4659-8ddb-a12156354a72.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-92f4e4a9-ef61-4659-8ddb-a12156354a72.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-92f4e4a9-ef61-4659-8ddb-a12156354a72 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-92f4e4a9-ef61-4659-8ddb-a12156354a72-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-92f4e4a9-ef61-4659-8ddb-a12156354a72 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-92f4e4a9-ef61-4659-8ddb-a12156354a72 .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-92f4e4a9-ef61-4659-8ddb-a12156354a72 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-92f4e4a9-ef61-4659-8ddb-a12156354a72 img.shogun-image {
  width: 100%;
  
  
  max-width: 396px;

      
    max-width: 396px;

  /* 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-92f4e4a9-ef61-4659-8ddb-a12156354a72 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-92f4e4a9-ef61-4659-8ddb-a12156354a72.shg-align-container {
  display: flex;
  justify-content: center
}

.s-92f4e4a9-ef61-4659-8ddb-a12156354a72.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-92f4e4a9-ef61-4659-8ddb-a12156354a72.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-92f4e4a9-ef61-4659-8ddb-a12156354a72 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-92f4e4a9-ef61-4659-8ddb-a12156354a72-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-92f4e4a9-ef61-4659-8ddb-a12156354a72 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-92f4e4a9-ef61-4659-8ddb-a12156354a72 .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-92f4e4a9-ef61-4659-8ddb-a12156354a72 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-92f4e4a9-ef61-4659-8ddb-a12156354a72 img.shogun-image {
  width: 100%;
  
  
  max-width: 396px;

      
    max-width: 396px;

  /* 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-92f4e4a9-ef61-4659-8ddb-a12156354a72 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-92f4e4a9-ef61-4659-8ddb-a12156354a72.shg-align-container {
  display: flex;
  justify-content: center
}

.s-92f4e4a9-ef61-4659-8ddb-a12156354a72.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-92f4e4a9-ef61-4659-8ddb-a12156354a72.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-92f4e4a9-ef61-4659-8ddb-a12156354a72 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-92f4e4a9-ef61-4659-8ddb-a12156354a72-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-92f4e4a9-ef61-4659-8ddb-a12156354a72 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-92f4e4a9-ef61-4659-8ddb-a12156354a72 .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-92f4e4a9-ef61-4659-8ddb-a12156354a72 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-92f4e4a9-ef61-4659-8ddb-a12156354a72 img.shogun-image {
  width: 100%;
  
  
  max-width: 396px;

      
    max-width: 396px;

  /* 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-92f4e4a9-ef61-4659-8ddb-a12156354a72 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-92f4e4a9-ef61-4659-8ddb-a12156354a72.shg-align-container {
  display: flex;
  justify-content: center
}

.s-92f4e4a9-ef61-4659-8ddb-a12156354a72.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-92f4e4a9-ef61-4659-8ddb-a12156354a72.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-f9672e9f-85c6-4703-a77e-206b6e485e12 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-f9672e9f-85c6-4703-a77e-206b6e485e12 {
  text-align: center;
}
}
#s-f9672e9f-85c6-4703-a77e-206b6e485e12 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-f9672e9f-85c6-4703-a77e-206b6e485e12 .shogun-heading-component h1 {
  color: rgba(29, 38, 46, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 70px;
  
  
  
}


}
#s-fd866faf-ee99-4229-8cf2-8b51ec12571f {
  margin-left: 0%;
margin-bottom: 8px;
margin-right: 0%;
max-width: 450px;
}

#s-d316f2f3-14ca-46eb-bffa-fa981589400b {
  margin-top: 12px;
margin-bottom: 12px;
}
@media (min-width: 768px) and (max-width: 991px){#s-d316f2f3-14ca-46eb-bffa-fa981589400b {
  margin-top: 16px;
margin-left: auto;
margin-right: auto;
padding-left: 0px;
padding-right: 0px;
text-align: center;
}
}
#s-ec880a45-7059-49cf-b986-1c9254828f15 {
  margin-top: 8px;
margin-left: auto;
margin-right: auto;
}
@media (min-width: 768px) and (max-width: 991px){#s-ec880a45-7059-49cf-b986-1c9254828f15 {
  margin-top: 0px;
}
}
#s-926a2cb8-dc27-4236-9f72-00f1f387110d {
  background-repeat: no-repeat;
background-size: cover;
margin-left: auto;
margin-right: auto;
min-height: 426px;
background-position: center center;
}
@media (min-width: 768px) and (max-width: 991px){#s-926a2cb8-dc27-4236-9f72-00f1f387110d {
  margin-left: 0%;
border-top-width: 0px;
border-left-width: 8px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 175, 230, 1);
border-style: solid;
border-radius: 0px;
}
}
#s-926a2cb8-dc27-4236-9f72-00f1f387110d {
  background-image: url(https://i.shgcdn.com/5b00cd89-ecf7-4c1f-9bb3-d5f8ae0f97da/);
}








#s-926a2cb8-dc27-4236-9f72-00f1f387110d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-926a2cb8-dc27-4236-9f72-00f1f387110d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ab0558b5-021d-4602-a4b0-5b3497e6ffd5 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(205, 214, 220, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(29, 38, 46, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-ab0558b5-021d-4602-a4b0-5b3497e6ffd5 {
  display: none;
}
#s-ab0558b5-021d-4602-a4b0-5b3497e6ffd5, #wrap-s-ab0558b5-021d-4602-a4b0-5b3497e6ffd5, #wrap-content-s-ab0558b5-021d-4602-a4b0-5b3497e6ffd5 { display: none !important; }}@media (max-width: 767px){#s-ab0558b5-021d-4602-a4b0-5b3497e6ffd5 {
  display: none;
}
#s-ab0558b5-021d-4602-a4b0-5b3497e6ffd5, #wrap-s-ab0558b5-021d-4602-a4b0-5b3497e6ffd5, #wrap-content-s-ab0558b5-021d-4602-a4b0-5b3497e6ffd5 { display: none !important; }}







#s-ab0558b5-021d-4602-a4b0-5b3497e6ffd5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ab0558b5-021d-4602-a4b0-5b3497e6ffd5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cd50dec6-a493-4fdb-bf2b-53b2e3a808c2 {
  margin-left: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(205, 214, 220, 1);
border-style: solid;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-cd50dec6-a493-4fdb-bf2b-53b2e3a808c2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cd50dec6-a493-4fdb-bf2b-53b2e3a808c2"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-cd50dec6-a493-4fdb-bf2b-53b2e3a808c2"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-cd50dec6-a493-4fdb-bf2b-53b2e3a808c2"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-cd50dec6-a493-4fdb-bf2b-53b2e3a808c2"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-cd50dec6-a493-4fdb-bf2b-53b2e3a808c2"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-cd50dec6-a493-4fdb-bf2b-53b2e3a808c2"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-ee146a2c-e9fa-46eb-bc72-20fb07f666b9 {
  background-repeat: no-repeat;
background-size: cover;
margin-right: 0%;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 8px;
border-color: rgba(248, 107, 22, 1);
border-style: solid;
min-height: 426px;
background-position: right center;
}
@media (min-width: 1200px){#s-ee146a2c-e9fa-46eb-bc72-20fb07f666b9 {
  padding-left: 25%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ee146a2c-e9fa-46eb-bc72-20fb07f666b9 {
  margin-left: -6%;
}
}
#s-ee146a2c-e9fa-46eb-bc72-20fb07f666b9 {
  background-image: url(https://i.shgcdn.com/f3826363-6347-40b3-8155-a07b6c5faeeb/);
}

@media (max-width: 480px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-ee146a2c-e9fa-46eb-bc72-20fb07f666b9 {
  background-image: url(https://i.shgcdn.com/f3826363-6347-40b3-8155-a07b6c5faeeb/-/resize/480x/);
}
#s-ee146a2c-e9fa-46eb-bc72-20fb07f666b9.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
#s-ee146a2c-e9fa-46eb-bc72-20fb07f666b9 {
  background-image: url(https://i.shgcdn.com/f3826363-6347-40b3-8155-a07b6c5faeeb/-/resize/960x/);
}
#s-ee146a2c-e9fa-46eb-bc72-20fb07f666b9.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-ee146a2c-e9fa-46eb-bc72-20fb07f666b9 {
  background-image: url(https://i.shgcdn.com/f3826363-6347-40b3-8155-a07b6c5faeeb/-/resize/768x/);
}
#s-ee146a2c-e9fa-46eb-bc72-20fb07f666b9.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
#s-ee146a2c-e9fa-46eb-bc72-20fb07f666b9 {
  background-image: url(https://i.shgcdn.com/f3826363-6347-40b3-8155-a07b6c5faeeb/-/resize/1536x/);
}
#s-ee146a2c-e9fa-46eb-bc72-20fb07f666b9.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-ee146a2c-e9fa-46eb-bc72-20fb07f666b9 {
  background-image: url(https://i.shgcdn.com/f3826363-6347-40b3-8155-a07b6c5faeeb/-/resize/1024x/);
}
#s-ee146a2c-e9fa-46eb-bc72-20fb07f666b9.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
#s-ee146a2c-e9fa-46eb-bc72-20fb07f666b9 {
  background-image: url(https://i.shgcdn.com/f3826363-6347-40b3-8155-a07b6c5faeeb/-/resize/2048x/);
}
#s-ee146a2c-e9fa-46eb-bc72-20fb07f666b9.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-ee146a2c-e9fa-46eb-bc72-20fb07f666b9 {
  background-image: url(https://i.shgcdn.com/f3826363-6347-40b3-8155-a07b6c5faeeb/-/resize/1200x/);
}
#s-ee146a2c-e9fa-46eb-bc72-20fb07f666b9.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 2) {
#s-ee146a2c-e9fa-46eb-bc72-20fb07f666b9 {
  background-image: url(https://i.shgcdn.com/f3826363-6347-40b3-8155-a07b6c5faeeb/-/resize/2048x/);
}
#s-ee146a2c-e9fa-46eb-bc72-20fb07f666b9.shogun-lazyload-bg-image {
  background-image: none;
}

}







#s-ee146a2c-e9fa-46eb-bc72-20fb07f666b9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ee146a2c-e9fa-46eb-bc72-20fb07f666b9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1727b633-bad9-44fb-8c30-cc8bdbefbdff {
  margin-left: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(205, 214, 220, 1);
border-style: solid;
min-height: 426px;
}








#s-1727b633-bad9-44fb-8c30-cc8bdbefbdff > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1727b633-bad9-44fb-8c30-cc8bdbefbdff.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e9881d6a-732c-45a7-9b56-3db4c3eac51a {
  margin-left: auto;
margin-right: auto;
max-width: 200px;
text-align: center;
}

#s-e9881d6a-732c-45a7-9b56-3db4c3eac51a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e9881d6a-732c-45a7-9b56-3db4c3eac51a-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-e9881d6a-732c-45a7-9b56-3db4c3eac51a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e9881d6a-732c-45a7-9b56-3db4c3eac51a .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-e9881d6a-732c-45a7-9b56-3db4c3eac51a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e9881d6a-732c-45a7-9b56-3db4c3eac51a img.shogun-image {
  width: 100%;
  
  
  max-width: 200px;

      
    max-width: 200px;

  /* 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-e9881d6a-732c-45a7-9b56-3db4c3eac51a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e9881d6a-732c-45a7-9b56-3db4c3eac51a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e9881d6a-732c-45a7-9b56-3db4c3eac51a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e9881d6a-732c-45a7-9b56-3db4c3eac51a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-e9881d6a-732c-45a7-9b56-3db4c3eac51a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e9881d6a-732c-45a7-9b56-3db4c3eac51a-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-e9881d6a-732c-45a7-9b56-3db4c3eac51a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e9881d6a-732c-45a7-9b56-3db4c3eac51a .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-e9881d6a-732c-45a7-9b56-3db4c3eac51a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e9881d6a-732c-45a7-9b56-3db4c3eac51a img.shogun-image {
  width: 100%;
  
  
  max-width: 200px;

      
    max-width: 200px;

  /* 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-e9881d6a-732c-45a7-9b56-3db4c3eac51a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e9881d6a-732c-45a7-9b56-3db4c3eac51a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e9881d6a-732c-45a7-9b56-3db4c3eac51a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e9881d6a-732c-45a7-9b56-3db4c3eac51a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-e9881d6a-732c-45a7-9b56-3db4c3eac51a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e9881d6a-732c-45a7-9b56-3db4c3eac51a-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-e9881d6a-732c-45a7-9b56-3db4c3eac51a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e9881d6a-732c-45a7-9b56-3db4c3eac51a .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-e9881d6a-732c-45a7-9b56-3db4c3eac51a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e9881d6a-732c-45a7-9b56-3db4c3eac51a img.shogun-image {
  width: 100%;
  
  
  max-width: 200px;

      
    max-width: 200px;

  /* 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-e9881d6a-732c-45a7-9b56-3db4c3eac51a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e9881d6a-732c-45a7-9b56-3db4c3eac51a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e9881d6a-732c-45a7-9b56-3db4c3eac51a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e9881d6a-732c-45a7-9b56-3db4c3eac51a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-e9881d6a-732c-45a7-9b56-3db4c3eac51a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e9881d6a-732c-45a7-9b56-3db4c3eac51a-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-e9881d6a-732c-45a7-9b56-3db4c3eac51a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e9881d6a-732c-45a7-9b56-3db4c3eac51a .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-e9881d6a-732c-45a7-9b56-3db4c3eac51a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e9881d6a-732c-45a7-9b56-3db4c3eac51a img.shogun-image {
  width: 100%;
  
  
  max-width: 200px;

      
    max-width: 200px;

  /* 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-e9881d6a-732c-45a7-9b56-3db4c3eac51a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e9881d6a-732c-45a7-9b56-3db4c3eac51a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e9881d6a-732c-45a7-9b56-3db4c3eac51a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e9881d6a-732c-45a7-9b56-3db4c3eac51a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-e9881d6a-732c-45a7-9b56-3db4c3eac51a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e9881d6a-732c-45a7-9b56-3db4c3eac51a-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-e9881d6a-732c-45a7-9b56-3db4c3eac51a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e9881d6a-732c-45a7-9b56-3db4c3eac51a .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-e9881d6a-732c-45a7-9b56-3db4c3eac51a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e9881d6a-732c-45a7-9b56-3db4c3eac51a img.shogun-image {
  width: 100%;
  
  
  max-width: 200px;

      
    max-width: 200px;

  /* 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-e9881d6a-732c-45a7-9b56-3db4c3eac51a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e9881d6a-732c-45a7-9b56-3db4c3eac51a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e9881d6a-732c-45a7-9b56-3db4c3eac51a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e9881d6a-732c-45a7-9b56-3db4c3eac51a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-72fa64c5-72f4-4ba0-ada9-02e59c165560 {
  margin-top: 8px;
margin-left: 0%;
margin-bottom: 8px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-72fa64c5-72f4-4ba0-ada9-02e59c165560 .shogun-heading-component h1 {
  color: rgba(29, 38, 46, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 90px;
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-72fa64c5-72f4-4ba0-ada9-02e59c165560 .shogun-heading-component h1 {
  color: rgba(29, 38, 46, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 70px;
  
  
  
}


}
#s-50e5372b-e8a9-4a95-9d5b-d7edffae226a {
  margin-left: auto;
margin-right: auto;
}

#s-49a2c99b-e920-4a7d-86ee-1dd0c604c4f3 {
  margin-top: 14px;
margin-bottom: 14px;
text-align: center;
}

#s-a04cfbe4-e5ef-48c0-9864-d79867e03bcc {
  margin-top: 16px;
margin-left: auto;
margin-bottom: 16px;
margin-right: auto;
}

#s-d6e99393-4843-41eb-a549-8334b5404d8a {
  background-repeat: no-repeat;
background-size: cover;
margin-left: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 8px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(0, 175, 230, 1);
border-style: solid;
border-radius: 0px;
min-height: 426px;
background-position: left center;
}

#s-d6e99393-4843-41eb-a549-8334b5404d8a {
  background-image: url(https://i.shgcdn.com/5b00cd89-ecf7-4c1f-9bb3-d5f8ae0f97da/);
}

@media (max-width: 480px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-d6e99393-4843-41eb-a549-8334b5404d8a {
  background-image: url(https://i.shgcdn.com/5b00cd89-ecf7-4c1f-9bb3-d5f8ae0f97da/-/resize/480x/);
}
#s-d6e99393-4843-41eb-a549-8334b5404d8a.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
#s-d6e99393-4843-41eb-a549-8334b5404d8a {
  background-image: url(https://i.shgcdn.com/5b00cd89-ecf7-4c1f-9bb3-d5f8ae0f97da/-/resize/960x/);
}
#s-d6e99393-4843-41eb-a549-8334b5404d8a.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-d6e99393-4843-41eb-a549-8334b5404d8a {
  background-image: url(https://i.shgcdn.com/5b00cd89-ecf7-4c1f-9bb3-d5f8ae0f97da/-/resize/768x/);
}
#s-d6e99393-4843-41eb-a549-8334b5404d8a.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
#s-d6e99393-4843-41eb-a549-8334b5404d8a {
  background-image: url(https://i.shgcdn.com/5b00cd89-ecf7-4c1f-9bb3-d5f8ae0f97da/-/resize/1536x/);
}
#s-d6e99393-4843-41eb-a549-8334b5404d8a.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-d6e99393-4843-41eb-a549-8334b5404d8a {
  background-image: url(https://i.shgcdn.com/5b00cd89-ecf7-4c1f-9bb3-d5f8ae0f97da/-/resize/1024x/);
}
#s-d6e99393-4843-41eb-a549-8334b5404d8a.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
#s-d6e99393-4843-41eb-a549-8334b5404d8a {
  background-image: url(https://i.shgcdn.com/5b00cd89-ecf7-4c1f-9bb3-d5f8ae0f97da/-/resize/2048x/);
}
#s-d6e99393-4843-41eb-a549-8334b5404d8a.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-d6e99393-4843-41eb-a549-8334b5404d8a {
  background-image: url(https://i.shgcdn.com/5b00cd89-ecf7-4c1f-9bb3-d5f8ae0f97da/-/resize/1200x/);
}
#s-d6e99393-4843-41eb-a549-8334b5404d8a.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 2) {
#s-d6e99393-4843-41eb-a549-8334b5404d8a {
  background-image: url(https://i.shgcdn.com/5b00cd89-ecf7-4c1f-9bb3-d5f8ae0f97da/-/resize/2048x/);
}
#s-d6e99393-4843-41eb-a549-8334b5404d8a.shogun-lazyload-bg-image {
  background-image: none;
}

}







#s-d6e99393-4843-41eb-a549-8334b5404d8a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d6e99393-4843-41eb-a549-8334b5404d8a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b4ca474d-8bb4-4f89-aafd-8de713562aac {
  padding-top: 0px;
padding-bottom: 0px;
}
@media (min-width: 1200px){#s-b4ca474d-8bb4-4f89-aafd-8de713562aac {
  display: none;
}
#s-b4ca474d-8bb4-4f89-aafd-8de713562aac, #wrap-s-b4ca474d-8bb4-4f89-aafd-8de713562aac, #wrap-content-s-b4ca474d-8bb4-4f89-aafd-8de713562aac { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b4ca474d-8bb4-4f89-aafd-8de713562aac {
  display: none;
}
#s-b4ca474d-8bb4-4f89-aafd-8de713562aac, #wrap-s-b4ca474d-8bb4-4f89-aafd-8de713562aac, #wrap-content-s-b4ca474d-8bb4-4f89-aafd-8de713562aac { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b4ca474d-8bb4-4f89-aafd-8de713562aac {
  display: none;
}
#s-b4ca474d-8bb4-4f89-aafd-8de713562aac, #wrap-s-b4ca474d-8bb4-4f89-aafd-8de713562aac, #wrap-content-s-b4ca474d-8bb4-4f89-aafd-8de713562aac { display: none !important; }}
#s-b4ca474d-8bb4-4f89-aafd-8de713562aac .shg-sld-dot {
  background-color: rgba(94, 113, 131, 1);
}

#s-b4ca474d-8bb4-4f89-aafd-8de713562aac .shg-sld-nav-button.shg-sld-left,
#s-b4ca474d-8bb4-4f89-aafd-8de713562aac .shg-sld-nav-button.shg-sld-right {
  fill: rgba(94, 113, 131, 1);
}
@media (max-width: 767px){#s-b4ca474d-8bb4-4f89-aafd-8de713562aac .shg-sld-dot {
  background-color: rgba(94, 113, 131, 1);
}

#s-b4ca474d-8bb4-4f89-aafd-8de713562aac .shg-sld-nav-button.shg-sld-left,
#s-b4ca474d-8bb4-4f89-aafd-8de713562aac .shg-sld-nav-button.shg-sld-right {
  fill: rgba(94, 113, 131, 1);
}
}
#s-b804091f-86bd-4427-9559-c6c7e56bf6b9 {
  background-repeat: no-repeat;
background-size: cover;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(205, 214, 220, 1);
border-style: solid;
min-height: 426px;
background-position: center top;
}
@media (min-width: 768px) and (max-width: 991px){#s-b804091f-86bd-4427-9559-c6c7e56bf6b9 {
  display: none;
}
#s-b804091f-86bd-4427-9559-c6c7e56bf6b9, #wrap-s-b804091f-86bd-4427-9559-c6c7e56bf6b9, #wrap-content-s-b804091f-86bd-4427-9559-c6c7e56bf6b9 { display: none !important; }}@media (max-width: 767px){#s-b804091f-86bd-4427-9559-c6c7e56bf6b9 {
  min-height: 0px;
display: none;
}
#s-b804091f-86bd-4427-9559-c6c7e56bf6b9, #wrap-s-b804091f-86bd-4427-9559-c6c7e56bf6b9, #wrap-content-s-b804091f-86bd-4427-9559-c6c7e56bf6b9 { display: none !important; }}
#s-b804091f-86bd-4427-9559-c6c7e56bf6b9 {
  background-image: url(https://i.shgcdn.com/4c36f459-033a-4407-9e23-d4354995c659/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-b804091f-86bd-4427-9559-c6c7e56bf6b9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b804091f-86bd-4427-9559-c6c7e56bf6b9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8c14083f-39d1-4c53-a048-25bb9f1e616b {
  margin-left: 0%;
padding-left: 0%;
padding-right: 0%;
min-height: 424px;
max-width: 400px;
}
@media (min-width: 1200px){#s-8c14083f-39d1-4c53-a048-25bb9f1e616b {
  margin-left: 60px;
margin-right: 0px;
}
}







#s-8c14083f-39d1-4c53-a048-25bb9f1e616b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8c14083f-39d1-4c53-a048-25bb9f1e616b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c5d0b34d-423b-4a62-b118-1800122021a8 {
  margin-left: 4px;
margin-bottom: 8px;
margin-right: 0px;
}

#s-4e73986a-ecc3-481f-97ee-1b93948850bc {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-4e73986a-ecc3-481f-97ee-1b93948850bc .shogun-heading-component h1 {
  color: rgba(168, 0, 30, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 80px;
  
  
  
}



#s-6ac1c316-d347-4444-9120-f334ce4ee354 {
  margin-top: -6px;
}

#s-5a95dc87-032c-4647-829d-700c36afd44b {
  margin-top: 32px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 4px;
background-color: rgba(168, 0, 30, 1);
text-align: left;
text-decoration: none;
letter-spacing: 2px;
background-image: none;
hover-type: color;
}
#s-5a95dc87-032c-4647-829d-700c36afd44b:hover {background-color: rgba(82, 1, 14, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-5a95dc87-032c-4647-829d-700c36afd44b:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-5a95dc87-032c-4647-829d-700c36afd44b {
  padding-left: 145px;
padding-right: 145px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-5a95dc87-032c-4647-829d-700c36afd44b {
  padding-left: 145px;
padding-right: 145px;
}
}

  #s-5a95dc87-032c-4647-829d-700c36afd44b-root {
    text-align: left;
  }


#s-5a95dc87-032c-4647-829d-700c36afd44b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-5a95dc87-032c-4647-829d-700c36afd44b-root {
    text-align: left;
  }


#s-5a95dc87-032c-4647-829d-700c36afd44b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-5a95dc87-032c-4647-829d-700c36afd44b-root {
    text-align: left;
  }


#s-5a95dc87-032c-4647-829d-700c36afd44b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-5a95dc87-032c-4647-829d-700c36afd44b-root {
    text-align: left;
  }


#s-5a95dc87-032c-4647-829d-700c36afd44b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-5a95dc87-032c-4647-829d-700c36afd44b-root {
    text-align: left;
  }


#s-5a95dc87-032c-4647-829d-700c36afd44b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
}
#s-93b91297-7ac1-4cdc-9e70-46e2f70348e7 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 426px;
background-position: center center;
}

#s-93b91297-7ac1-4cdc-9e70-46e2f70348e7 {
  background-image: url(https://i.shgcdn.com/8906602a-b3fb-4504-9a8c-b843f969c1b1/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-93b91297-7ac1-4cdc-9e70-46e2f70348e7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-93b91297-7ac1-4cdc-9e70-46e2f70348e7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-da92ebe8-9ccb-40f9-9e37-3e65630cbd8d {
  
}

#s-202ba563-7aae-4db9-9b5f-2620829d45f6 {
  margin-left: auto;
margin-right: auto;
min-height: 0px;
}

@media (min-width: 0px) {
[id="s-202ba563-7aae-4db9-9b5f-2620829d45f6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-202ba563-7aae-4db9-9b5f-2620829d45f6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-202ba563-7aae-4db9-9b5f-2620829d45f6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-202ba563-7aae-4db9-9b5f-2620829d45f6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-60a85f52-c52a-4204-a8da-75e3fcda4a4d {
  padding-top: 47px;
padding-left: 39px;
padding-bottom: 47px;
padding-right: 54px;
min-height: 376px;
}
@media (min-width: 768px) and (max-width: 991px){#s-60a85f52-c52a-4204-a8da-75e3fcda4a4d {
  padding-top: 47px;
}
}@media (max-width: 767px){#s-60a85f52-c52a-4204-a8da-75e3fcda4a4d {
  padding-top: 21px;
padding-left: 15px;
padding-bottom: 39px;
padding-right: 15px;
}
}







#s-60a85f52-c52a-4204-a8da-75e3fcda4a4d > .shg-box-overlay {
  background-color: rgba(29, 38, 46, 1);
  opacity: 0.8;
  display: block;
}#s-60a85f52-c52a-4204-a8da-75e3fcda4a4d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 767px){






#s-60a85f52-c52a-4204-a8da-75e3fcda4a4d > .shg-box-overlay {
  background-color: rgba(29, 38, 46, 1);
  opacity: 0.8;
  display: block;
}#s-60a85f52-c52a-4204-a8da-75e3fcda4a4d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
}
#s-8a541361-123a-401f-bfb9-de5320722736 {
  margin-top: -16px;
margin-bottom: 0px;
text-align: left;
}
@media (max-width: 767px){#s-8a541361-123a-401f-bfb9-de5320722736 {
  margin-top: 40px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 4%;
}
}
#s-8a541361-123a-401f-bfb9-de5320722736 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  line-height: 1.3em;
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-8a541361-123a-401f-bfb9-de5320722736 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  line-height: 1.3em;
  
  
}


}@media (max-width: 767px){#s-8a541361-123a-401f-bfb9-de5320722736 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  line-height: 1.3em;
  
  
}


}
#s-cf1334c1-a218-4a8a-aa8b-5c885b890c30 {
  margin-top: 8px;
}
@media (max-width: 767px){#s-cf1334c1-a218-4a8a-aa8b-5c885b890c30 {
  margin-left: 0%;
margin-right: 4%;
}
}
#s-bfc6638e-d24a-45ce-b049-36bb9a465e67 {
  margin-top: 32px;
}

#s-aeee1d3e-19ec-47ad-b1a9-d6aa45a92e1b {
  min-height: 30px;
}
@media (min-width: 1200px){#s-aeee1d3e-19ec-47ad-b1a9-d6aa45a92e1b {
  min-height: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-aeee1d3e-19ec-47ad-b1a9-d6aa45a92e1b {
  min-height: 50px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-aeee1d3e-19ec-47ad-b1a9-d6aa45a92e1b {
  min-height: 50px;
}
}







#s-aeee1d3e-19ec-47ad-b1a9-d6aa45a92e1b > .shg-box-overlay {
  background-color: rgba(29, 38, 46, 1);
  opacity: 0.8;
  display: block;
}#s-aeee1d3e-19ec-47ad-b1a9-d6aa45a92e1b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f222b2a6-503b-4d61-807a-6c6092716bff {
  margin-top: -40px;
margin-left: 40px;
margin-bottom: 0px;
margin-right: 40px;
padding-top: 0px;
padding-bottom: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-f222b2a6-503b-4d61-807a-6c6092716bff {
  margin-top: -40px;
}
}@media (max-width: 767px){#s-f222b2a6-503b-4d61-807a-6c6092716bff {
  display: none;
}
#s-f222b2a6-503b-4d61-807a-6c6092716bff, #wrap-s-f222b2a6-503b-4d61-807a-6c6092716bff, #wrap-content-s-f222b2a6-503b-4d61-807a-6c6092716bff { display: none !important; }}
#s-5fd25046-b4df-4f68-9b14-0db882f49f67 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 426px;
background-position: center center;
}
@media (min-width: 1200px){#s-5fd25046-b4df-4f68-9b14-0db882f49f67 {
  display: none;
}
#s-5fd25046-b4df-4f68-9b14-0db882f49f67, #wrap-s-5fd25046-b4df-4f68-9b14-0db882f49f67, #wrap-content-s-5fd25046-b4df-4f68-9b14-0db882f49f67 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5fd25046-b4df-4f68-9b14-0db882f49f67 {
  display: none;
}
#s-5fd25046-b4df-4f68-9b14-0db882f49f67, #wrap-s-5fd25046-b4df-4f68-9b14-0db882f49f67, #wrap-content-s-5fd25046-b4df-4f68-9b14-0db882f49f67 { display: none !important; }}@media (max-width: 767px){#s-5fd25046-b4df-4f68-9b14-0db882f49f67 {
  min-height: 0px;
display: none;
}
#s-5fd25046-b4df-4f68-9b14-0db882f49f67, #wrap-s-5fd25046-b4df-4f68-9b14-0db882f49f67, #wrap-content-s-5fd25046-b4df-4f68-9b14-0db882f49f67 { display: none !important; }}
#s-5fd25046-b4df-4f68-9b14-0db882f49f67 {
  background-image: url(https://i.shgcdn.com/01f06ead-3a76-40ed-ac8e-0382ec162703/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-5fd25046-b4df-4f68-9b14-0db882f49f67 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5fd25046-b4df-4f68-9b14-0db882f49f67.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0bb63288-07a2-4221-8b09-7f2d7f6f2e77 {
  padding-left: 40px;
min-height: 426px;
}
@media (min-width: 768px) and (max-width: 991px){#s-0bb63288-07a2-4221-8b09-7f2d7f6f2e77 {
  padding-left: 6%;
}
}







#s-0bb63288-07a2-4221-8b09-7f2d7f6f2e77 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0bb63288-07a2-4221-8b09-7f2d7f6f2e77.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e1e8aacb-3527-4f1e-ad20-e6c4f3978b81 {
  margin-left: 4px;
margin-bottom: 8px;
}

#s-c1783058-4264-4a72-86dc-4d752d82771b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-c1783058-4264-4a72-86dc-4d752d82771b .shogun-heading-component h1 {
  color: rgba(168, 0, 30, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 70px;
  
  
  
}



#s-380374f1-f76a-4403-8db7-4aba184b46d2 {
  margin-top: -6px;
}

#s-ba7d4e4d-b47e-4b6c-8936-f21df1196e33 {
  margin-top: 32px;
padding-top: 10px;
padding-left: 125px;
padding-bottom: 10px;
padding-right: 125px;
border-radius: 4px;
background-color: rgba(168, 0, 30, 1);
text-align: left;
text-decoration: none;
letter-spacing: 2px;
background-image: none;
hover-type: color;
}
#s-ba7d4e4d-b47e-4b6c-8936-f21df1196e33:hover {background-color: rgba(82, 1, 14, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-ba7d4e4d-b47e-4b6c-8936-f21df1196e33:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-ba7d4e4d-b47e-4b6c-8936-f21df1196e33-root {
    text-align: left;
  }


#s-ba7d4e4d-b47e-4b6c-8936-f21df1196e33.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ba7d4e4d-b47e-4b6c-8936-f21df1196e33-root {
    text-align: left;
  }


#s-ba7d4e4d-b47e-4b6c-8936-f21df1196e33.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ba7d4e4d-b47e-4b6c-8936-f21df1196e33-root {
    text-align: left;
  }


#s-ba7d4e4d-b47e-4b6c-8936-f21df1196e33.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ba7d4e4d-b47e-4b6c-8936-f21df1196e33-root {
    text-align: left;
  }


#s-ba7d4e4d-b47e-4b6c-8936-f21df1196e33.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ba7d4e4d-b47e-4b6c-8936-f21df1196e33-root {
    text-align: left;
  }


#s-ba7d4e4d-b47e-4b6c-8936-f21df1196e33.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
}
#s-c0e3439e-c648-44b5-a8c7-5ade63aebf16 {
  margin-top: 0px;
margin-bottom: 0px;
padding-left: 24px;
padding-right: 24px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(205, 214, 220, 1);
border-style: solid;
min-height: 426px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-c0e3439e-c648-44b5-a8c7-5ade63aebf16 {
  display: none;
}
#s-c0e3439e-c648-44b5-a8c7-5ade63aebf16, #wrap-s-c0e3439e-c648-44b5-a8c7-5ade63aebf16, #wrap-content-s-c0e3439e-c648-44b5-a8c7-5ade63aebf16 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c0e3439e-c648-44b5-a8c7-5ade63aebf16 {
  display: none;
}
#s-c0e3439e-c648-44b5-a8c7-5ade63aebf16, #wrap-s-c0e3439e-c648-44b5-a8c7-5ade63aebf16, #wrap-content-s-c0e3439e-c648-44b5-a8c7-5ade63aebf16 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c0e3439e-c648-44b5-a8c7-5ade63aebf16 {
  display: none;
}
#s-c0e3439e-c648-44b5-a8c7-5ade63aebf16, #wrap-s-c0e3439e-c648-44b5-a8c7-5ade63aebf16, #wrap-content-s-c0e3439e-c648-44b5-a8c7-5ade63aebf16 { display: none !important; }}@media (max-width: 767px){#s-c0e3439e-c648-44b5-a8c7-5ade63aebf16 {
  border-style: solid;
padding-left: 0px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(205, 214, 220, 1);
min-height: 426px;
background-color: rgba(233, 242, 239, 1);
}
}







#s-c0e3439e-c648-44b5-a8c7-5ade63aebf16 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c0e3439e-c648-44b5-a8c7-5ade63aebf16.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f6b66a62-5919-4a3f-b6d1-64f03f06b92a {
  background-repeat: no-repeat;
background-size: cover;
margin-left: auto;
margin-right: auto;
min-height: 50px;
background-position: center top;
}
@media (max-width: 767px){#s-f6b66a62-5919-4a3f-b6d1-64f03f06b92a {
  margin-top: 0px;
margin-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 8px;
border-right-width: 0px;
border-color: rgba(0, 175, 230, 1);
border-style: solid;
min-height: 156px;
}
}
#s-f6b66a62-5919-4a3f-b6d1-64f03f06b92a {
  background-image: url(https://i.shgcdn.com/f3826363-6347-40b3-8155-a07b6c5faeeb/);
}

@media (max-width: 480px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-f6b66a62-5919-4a3f-b6d1-64f03f06b92a {
  background-image: url(https://i.shgcdn.com/f3826363-6347-40b3-8155-a07b6c5faeeb/-/resize/480x/);
}
#s-f6b66a62-5919-4a3f-b6d1-64f03f06b92a.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
#s-f6b66a62-5919-4a3f-b6d1-64f03f06b92a {
  background-image: url(https://i.shgcdn.com/f3826363-6347-40b3-8155-a07b6c5faeeb/-/resize/960x/);
}
#s-f6b66a62-5919-4a3f-b6d1-64f03f06b92a.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-f6b66a62-5919-4a3f-b6d1-64f03f06b92a {
  background-image: url(https://i.shgcdn.com/f3826363-6347-40b3-8155-a07b6c5faeeb/-/resize/768x/);
}
#s-f6b66a62-5919-4a3f-b6d1-64f03f06b92a.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
#s-f6b66a62-5919-4a3f-b6d1-64f03f06b92a {
  background-image: url(https://i.shgcdn.com/f3826363-6347-40b3-8155-a07b6c5faeeb/-/resize/1536x/);
}
#s-f6b66a62-5919-4a3f-b6d1-64f03f06b92a.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-f6b66a62-5919-4a3f-b6d1-64f03f06b92a {
  background-image: url(https://i.shgcdn.com/f3826363-6347-40b3-8155-a07b6c5faeeb/-/resize/1024x/);
}
#s-f6b66a62-5919-4a3f-b6d1-64f03f06b92a.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
#s-f6b66a62-5919-4a3f-b6d1-64f03f06b92a {
  background-image: url(https://i.shgcdn.com/f3826363-6347-40b3-8155-a07b6c5faeeb/-/resize/2048x/);
}
#s-f6b66a62-5919-4a3f-b6d1-64f03f06b92a.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-f6b66a62-5919-4a3f-b6d1-64f03f06b92a {
  background-image: url(https://i.shgcdn.com/f3826363-6347-40b3-8155-a07b6c5faeeb/-/resize/1200x/);
}
#s-f6b66a62-5919-4a3f-b6d1-64f03f06b92a.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 2) {
#s-f6b66a62-5919-4a3f-b6d1-64f03f06b92a {
  background-image: url(https://i.shgcdn.com/f3826363-6347-40b3-8155-a07b6c5faeeb/-/resize/2048x/);
}
#s-f6b66a62-5919-4a3f-b6d1-64f03f06b92a.shogun-lazyload-bg-image {
  background-image: none;
}

}







#s-f6b66a62-5919-4a3f-b6d1-64f03f06b92a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f6b66a62-5919-4a3f-b6d1-64f03f06b92a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 767px){






#s-f6b66a62-5919-4a3f-b6d1-64f03f06b92a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f6b66a62-5919-4a3f-b6d1-64f03f06b92a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
}
#s-6493e9f8-9fe6-4ea5-b835-ad4bc7097e09 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-6493e9f8-9fe6-4ea5-b835-ad4bc7097e09 {
  padding-top: 0px;
padding-left: 16px;
padding-bottom: 0px;
padding-right: 16px;
min-height: 269px;
}
}







#s-6493e9f8-9fe6-4ea5-b835-ad4bc7097e09 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6493e9f8-9fe6-4ea5-b835-ad4bc7097e09.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c88a9e6e-a9a5-455d-8601-79029b5c688d {
  margin-left: auto;
margin-right: auto;
max-width: 396px;
text-align: center;
}
@media (max-width: 767px){#s-c88a9e6e-a9a5-455d-8601-79029b5c688d {
  max-width: 150px;
}
}
#s-c88a9e6e-a9a5-455d-8601-79029b5c688d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c88a9e6e-a9a5-455d-8601-79029b5c688d-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-c88a9e6e-a9a5-455d-8601-79029b5c688d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-c88a9e6e-a9a5-455d-8601-79029b5c688d .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-c88a9e6e-a9a5-455d-8601-79029b5c688d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-c88a9e6e-a9a5-455d-8601-79029b5c688d img.shogun-image {
  width: 100%;
  
  
  max-width: 396px;

      
    max-width: 396px;

  /* 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-c88a9e6e-a9a5-455d-8601-79029b5c688d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c88a9e6e-a9a5-455d-8601-79029b5c688d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c88a9e6e-a9a5-455d-8601-79029b5c688d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c88a9e6e-a9a5-455d-8601-79029b5c688d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-c88a9e6e-a9a5-455d-8601-79029b5c688d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c88a9e6e-a9a5-455d-8601-79029b5c688d-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-c88a9e6e-a9a5-455d-8601-79029b5c688d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-c88a9e6e-a9a5-455d-8601-79029b5c688d .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-c88a9e6e-a9a5-455d-8601-79029b5c688d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-c88a9e6e-a9a5-455d-8601-79029b5c688d img.shogun-image {
  width: 100%;
  
  
  max-width: 396px;

      
    max-width: 396px;

  /* 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-c88a9e6e-a9a5-455d-8601-79029b5c688d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c88a9e6e-a9a5-455d-8601-79029b5c688d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c88a9e6e-a9a5-455d-8601-79029b5c688d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c88a9e6e-a9a5-455d-8601-79029b5c688d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-c88a9e6e-a9a5-455d-8601-79029b5c688d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c88a9e6e-a9a5-455d-8601-79029b5c688d-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-c88a9e6e-a9a5-455d-8601-79029b5c688d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-c88a9e6e-a9a5-455d-8601-79029b5c688d .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-c88a9e6e-a9a5-455d-8601-79029b5c688d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-c88a9e6e-a9a5-455d-8601-79029b5c688d img.shogun-image {
  width: 100%;
  
  
  max-width: 396px;

      
    max-width: 396px;

  /* 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-c88a9e6e-a9a5-455d-8601-79029b5c688d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c88a9e6e-a9a5-455d-8601-79029b5c688d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c88a9e6e-a9a5-455d-8601-79029b5c688d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c88a9e6e-a9a5-455d-8601-79029b5c688d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-c88a9e6e-a9a5-455d-8601-79029b5c688d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c88a9e6e-a9a5-455d-8601-79029b5c688d-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-c88a9e6e-a9a5-455d-8601-79029b5c688d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-c88a9e6e-a9a5-455d-8601-79029b5c688d .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-c88a9e6e-a9a5-455d-8601-79029b5c688d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-c88a9e6e-a9a5-455d-8601-79029b5c688d img.shogun-image {
  width: 100%;
  
  
  max-width: 396px;

      
    max-width: 396px;

  /* 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-c88a9e6e-a9a5-455d-8601-79029b5c688d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c88a9e6e-a9a5-455d-8601-79029b5c688d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c88a9e6e-a9a5-455d-8601-79029b5c688d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c88a9e6e-a9a5-455d-8601-79029b5c688d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-c88a9e6e-a9a5-455d-8601-79029b5c688d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c88a9e6e-a9a5-455d-8601-79029b5c688d-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-c88a9e6e-a9a5-455d-8601-79029b5c688d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-c88a9e6e-a9a5-455d-8601-79029b5c688d .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-c88a9e6e-a9a5-455d-8601-79029b5c688d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-c88a9e6e-a9a5-455d-8601-79029b5c688d img.shogun-image {
  width: 100%;
  
  
  max-width: 396px;

      
    max-width: 396px;

  /* 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-c88a9e6e-a9a5-455d-8601-79029b5c688d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c88a9e6e-a9a5-455d-8601-79029b5c688d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c88a9e6e-a9a5-455d-8601-79029b5c688d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c88a9e6e-a9a5-455d-8601-79029b5c688d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-608cb5eb-10a5-4ad7-a008-628558f855f7 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-608cb5eb-10a5-4ad7-a008-628558f855f7 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (max-width: 767px){#s-608cb5eb-10a5-4ad7-a008-628558f855f7 .shogun-heading-component h1 {
  color: rgba(29, 38, 46, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 68px;
  
  
  
}


}
#s-41b4fba9-6dd2-48e7-89a9-4d28914a6852 {
  margin-left: 0%;
margin-right: 0%;
max-width: 500px;
}

#s-530639bb-dc6a-478b-b98c-fdfa22f2901e {
  margin-top: 20px;
margin-bottom: 16px;
text-align: left;
}
@media (max-width: 767px){#s-530639bb-dc6a-478b-b98c-fdfa22f2901e {
  margin-top: 16px;
margin-bottom: 8px;
}
}
#s-ff379f37-dd1f-4cff-b9c9-380adb1603b4 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
}
@media (min-width: 1200px){#s-ff379f37-dd1f-4cff-b9c9-380adb1603b4 {
  display: none;
}
#s-ff379f37-dd1f-4cff-b9c9-380adb1603b4, #wrap-s-ff379f37-dd1f-4cff-b9c9-380adb1603b4, #wrap-content-s-ff379f37-dd1f-4cff-b9c9-380adb1603b4 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ff379f37-dd1f-4cff-b9c9-380adb1603b4 {
  display: none;
}
#s-ff379f37-dd1f-4cff-b9c9-380adb1603b4, #wrap-s-ff379f37-dd1f-4cff-b9c9-380adb1603b4, #wrap-content-s-ff379f37-dd1f-4cff-b9c9-380adb1603b4 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ff379f37-dd1f-4cff-b9c9-380adb1603b4 {
  display: none;
}
#s-ff379f37-dd1f-4cff-b9c9-380adb1603b4, #wrap-s-ff379f37-dd1f-4cff-b9c9-380adb1603b4, #wrap-content-s-ff379f37-dd1f-4cff-b9c9-380adb1603b4 { display: none !important; }}
#s-ff379f37-dd1f-4cff-b9c9-380adb1603b4 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-ff379f37-dd1f-4cff-b9c9-380adb1603b4 .shg-sld-nav-button.shg-sld-left,
#s-ff379f37-dd1f-4cff-b9c9-380adb1603b4 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-b84dca3b-62bc-4de2-88c4-d0764b5d8a16 {
  background-repeat: no-repeat;
background-size: cover;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(205, 214, 220, 1);
border-style: solid;
min-height: 426px;
background-position: center top;
}
@media (min-width: 768px) and (max-width: 991px){#s-b84dca3b-62bc-4de2-88c4-d0764b5d8a16 {
  display: none;
}
#s-b84dca3b-62bc-4de2-88c4-d0764b5d8a16, #wrap-s-b84dca3b-62bc-4de2-88c4-d0764b5d8a16, #wrap-content-s-b84dca3b-62bc-4de2-88c4-d0764b5d8a16 { display: none !important; }}@media (max-width: 767px){#s-b84dca3b-62bc-4de2-88c4-d0764b5d8a16 {
  min-height: 0px;
display: none;
}
#s-b84dca3b-62bc-4de2-88c4-d0764b5d8a16, #wrap-s-b84dca3b-62bc-4de2-88c4-d0764b5d8a16, #wrap-content-s-b84dca3b-62bc-4de2-88c4-d0764b5d8a16 { display: none !important; }}
#s-b84dca3b-62bc-4de2-88c4-d0764b5d8a16 {
  background-image: url(https://i.shgcdn.com/4c36f459-033a-4407-9e23-d4354995c659/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-b84dca3b-62bc-4de2-88c4-d0764b5d8a16 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b84dca3b-62bc-4de2-88c4-d0764b5d8a16.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b7452ef4-2b88-4ff9-92c0-0cb0225fb475 {
  margin-left: 0%;
padding-left: 0%;
padding-right: 0%;
min-height: 424px;
max-width: 400px;
}
@media (min-width: 1200px){#s-b7452ef4-2b88-4ff9-92c0-0cb0225fb475 {
  margin-left: 60px;
margin-right: 0px;
}
}







#s-b7452ef4-2b88-4ff9-92c0-0cb0225fb475 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b7452ef4-2b88-4ff9-92c0-0cb0225fb475.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-394439b6-ae41-4c5c-bcb5-160ce93cc4ca {
  margin-left: 4px;
margin-bottom: 8px;
margin-right: 0px;
}

#s-6ca82473-fb22-45b6-8dea-26e34dbb0045 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-6ca82473-fb22-45b6-8dea-26e34dbb0045 .shogun-heading-component h1 {
  color: rgba(168, 0, 30, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 80px;
  
  
  
}



#s-2f1776f1-57be-4e60-a9fe-bf08dff7c56a {
  margin-top: -6px;
}

#s-f660bb35-300a-42d1-86ac-b6b2bb32331e {
  margin-top: 32px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 4px;
background-color: rgba(168, 0, 30, 1);
text-align: left;
text-decoration: none;
letter-spacing: 2px;
background-image: none;
hover-type: color;
}
#s-f660bb35-300a-42d1-86ac-b6b2bb32331e:hover {background-color: rgba(82, 1, 14, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-f660bb35-300a-42d1-86ac-b6b2bb32331e:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-f660bb35-300a-42d1-86ac-b6b2bb32331e {
  padding-left: 145px;
padding-right: 145px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f660bb35-300a-42d1-86ac-b6b2bb32331e {
  padding-left: 145px;
padding-right: 145px;
}
}

  #s-f660bb35-300a-42d1-86ac-b6b2bb32331e-root {
    text-align: left;
  }


#s-f660bb35-300a-42d1-86ac-b6b2bb32331e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-f660bb35-300a-42d1-86ac-b6b2bb32331e-root {
    text-align: left;
  }


#s-f660bb35-300a-42d1-86ac-b6b2bb32331e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f660bb35-300a-42d1-86ac-b6b2bb32331e-root {
    text-align: left;
  }


#s-f660bb35-300a-42d1-86ac-b6b2bb32331e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f660bb35-300a-42d1-86ac-b6b2bb32331e-root {
    text-align: left;
  }


#s-f660bb35-300a-42d1-86ac-b6b2bb32331e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-f660bb35-300a-42d1-86ac-b6b2bb32331e-root {
    text-align: left;
  }


#s-f660bb35-300a-42d1-86ac-b6b2bb32331e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
}
#s-935c7942-535d-42d8-b3f0-145246aaa08c {
  background-repeat: no-repeat;
background-size: cover;
min-height: 426px;
background-position: center center;
}

#s-935c7942-535d-42d8-b3f0-145246aaa08c {
  background-image: url(https://i.shgcdn.com/0ead5bd9-d55f-4e50-b95d-2cafee285f2f/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-935c7942-535d-42d8-b3f0-145246aaa08c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-935c7942-535d-42d8-b3f0-145246aaa08c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6a9d1a1d-3359-465e-89dc-ce6a61306377 {
  
}

#s-6dfbedcc-a283-4d86-8895-ae44e93cfeee {
  margin-left: auto;
margin-right: auto;
min-height: 0px;
}

@media (min-width: 0px) {
[id="s-6dfbedcc-a283-4d86-8895-ae44e93cfeee"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6dfbedcc-a283-4d86-8895-ae44e93cfeee"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-6dfbedcc-a283-4d86-8895-ae44e93cfeee"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-6dfbedcc-a283-4d86-8895-ae44e93cfeee"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-2f04f995-7f35-40a1-90b7-04f34456125a {
  padding-top: 47px;
padding-left: 39px;
padding-bottom: 47px;
padding-right: 54px;
min-height: 376px;
}
@media (min-width: 768px) and (max-width: 991px){#s-2f04f995-7f35-40a1-90b7-04f34456125a {
  padding-top: 47px;
}
}@media (max-width: 767px){#s-2f04f995-7f35-40a1-90b7-04f34456125a {
  padding-top: 21px;
padding-left: 15px;
padding-bottom: 39px;
padding-right: 15px;
}
}







#s-2f04f995-7f35-40a1-90b7-04f34456125a > .shg-box-overlay {
  background-color: rgba(29, 38, 46, 1);
  opacity: 0.8;
  display: block;
}#s-2f04f995-7f35-40a1-90b7-04f34456125a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 767px){






#s-2f04f995-7f35-40a1-90b7-04f34456125a > .shg-box-overlay {
  background-color: rgba(29, 38, 46, 1);
  opacity: 0.8;
  display: block;
}#s-2f04f995-7f35-40a1-90b7-04f34456125a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
}
#s-7f7532da-cc63-4f3a-96d7-d4d77c9cdfc7 {
  margin-top: -16px;
margin-bottom: 0px;
text-align: left;
}
@media (max-width: 767px){#s-7f7532da-cc63-4f3a-96d7-d4d77c9cdfc7 {
  margin-top: 40px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 4%;
}
}
#s-7f7532da-cc63-4f3a-96d7-d4d77c9cdfc7 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  line-height: 1.3em;
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-7f7532da-cc63-4f3a-96d7-d4d77c9cdfc7 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  line-height: 1.3em;
  
  
}


}@media (max-width: 767px){#s-7f7532da-cc63-4f3a-96d7-d4d77c9cdfc7 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  line-height: 1.3em;
  
  
}


}
#s-6646bcc8-6330-43c4-950b-e0916bab2dc7 {
  margin-top: 8px;
}
@media (max-width: 767px){#s-6646bcc8-6330-43c4-950b-e0916bab2dc7 {
  margin-left: 0%;
margin-right: 4%;
}
}
#s-0e54bc00-826c-47f3-8e96-12f9cbbd0b37 {
  margin-top: 32px;
}

#s-4ac31324-b899-49d5-a872-60824df3b855 {
  min-height: 30px;
}
@media (min-width: 1200px){#s-4ac31324-b899-49d5-a872-60824df3b855 {
  min-height: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-4ac31324-b899-49d5-a872-60824df3b855 {
  min-height: 50px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-4ac31324-b899-49d5-a872-60824df3b855 {
  min-height: 50px;
}
}







#s-4ac31324-b899-49d5-a872-60824df3b855 > .shg-box-overlay {
  background-color: rgba(29, 38, 46, 1);
  opacity: 0.8;
  display: block;
}#s-4ac31324-b899-49d5-a872-60824df3b855.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5db96583-ea8f-4bac-8fb2-2dfa50a87d25 {
  margin-top: -40px;
margin-left: 40px;
margin-bottom: 0px;
margin-right: 40px;
padding-top: 0px;
padding-bottom: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-5db96583-ea8f-4bac-8fb2-2dfa50a87d25 {
  margin-top: -40px;
}
}@media (max-width: 767px){#s-5db96583-ea8f-4bac-8fb2-2dfa50a87d25 {
  display: none;
}
#s-5db96583-ea8f-4bac-8fb2-2dfa50a87d25, #wrap-s-5db96583-ea8f-4bac-8fb2-2dfa50a87d25, #wrap-content-s-5db96583-ea8f-4bac-8fb2-2dfa50a87d25 { display: none !important; }}
#s-60d7bbea-a110-45da-a8aa-f8da967177bf {
  background-repeat: no-repeat;
background-size: cover;
min-height: 426px;
background-position: center center;
}
@media (min-width: 1200px){#s-60d7bbea-a110-45da-a8aa-f8da967177bf {
  display: none;
}
#s-60d7bbea-a110-45da-a8aa-f8da967177bf, #wrap-s-60d7bbea-a110-45da-a8aa-f8da967177bf, #wrap-content-s-60d7bbea-a110-45da-a8aa-f8da967177bf { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-60d7bbea-a110-45da-a8aa-f8da967177bf {
  display: none;
}
#s-60d7bbea-a110-45da-a8aa-f8da967177bf, #wrap-s-60d7bbea-a110-45da-a8aa-f8da967177bf, #wrap-content-s-60d7bbea-a110-45da-a8aa-f8da967177bf { display: none !important; }}@media (max-width: 767px){#s-60d7bbea-a110-45da-a8aa-f8da967177bf {
  min-height: 0px;
display: none;
}
#s-60d7bbea-a110-45da-a8aa-f8da967177bf, #wrap-s-60d7bbea-a110-45da-a8aa-f8da967177bf, #wrap-content-s-60d7bbea-a110-45da-a8aa-f8da967177bf { display: none !important; }}
#s-60d7bbea-a110-45da-a8aa-f8da967177bf {
  background-image: url(https://i.shgcdn.com/01f06ead-3a76-40ed-ac8e-0382ec162703/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-60d7bbea-a110-45da-a8aa-f8da967177bf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-60d7bbea-a110-45da-a8aa-f8da967177bf.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-51ed5236-9088-49a9-9558-8064c44650f5 {
  padding-left: 40px;
min-height: 426px;
}
@media (min-width: 768px) and (max-width: 991px){#s-51ed5236-9088-49a9-9558-8064c44650f5 {
  padding-left: 6%;
}
}







#s-51ed5236-9088-49a9-9558-8064c44650f5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-51ed5236-9088-49a9-9558-8064c44650f5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2f1d6ed4-a236-4e5d-be15-2eb0f23af5f2 {
  margin-left: 4px;
margin-bottom: 8px;
}

#s-86153ce5-5c3e-4d07-8eb4-143e8809795a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-86153ce5-5c3e-4d07-8eb4-143e8809795a .shogun-heading-component h1 {
  color: rgba(168, 0, 30, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 70px;
  
  
  
}



#s-9f273515-56e3-4fa0-9a1c-21a24f9f5645 {
  margin-top: -6px;
}

#s-647c428b-b081-4fed-8094-7c9c58092695 {
  margin-top: 32px;
padding-top: 10px;
padding-left: 125px;
padding-bottom: 10px;
padding-right: 125px;
border-radius: 4px;
background-color: rgba(168, 0, 30, 1);
text-align: left;
text-decoration: none;
letter-spacing: 2px;
background-image: none;
hover-type: color;
}
#s-647c428b-b081-4fed-8094-7c9c58092695:hover {background-color: rgba(82, 1, 14, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-647c428b-b081-4fed-8094-7c9c58092695:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-647c428b-b081-4fed-8094-7c9c58092695-root {
    text-align: left;
  }


#s-647c428b-b081-4fed-8094-7c9c58092695.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-647c428b-b081-4fed-8094-7c9c58092695-root {
    text-align: left;
  }


#s-647c428b-b081-4fed-8094-7c9c58092695.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-647c428b-b081-4fed-8094-7c9c58092695-root {
    text-align: left;
  }


#s-647c428b-b081-4fed-8094-7c9c58092695.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-647c428b-b081-4fed-8094-7c9c58092695-root {
    text-align: left;
  }


#s-647c428b-b081-4fed-8094-7c9c58092695.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-647c428b-b081-4fed-8094-7c9c58092695-root {
    text-align: left;
  }


#s-647c428b-b081-4fed-8094-7c9c58092695.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
}
/*
  $vgutter : 20px
  $hgutter : 10px;
*/

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

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

.shogun-root iframe {
  display: initial;
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}

.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty:not(.shopify-section *):not([id^="wistia"]) {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}

/* <-- User Content Animations */

.shogun-form-error-msg,
.shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}
