.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-9d6a71ac-61a6-4d78-bd37-f1b78c6bf5fe {
  margin-top: 0px;
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: 1200px){#s-9d6a71ac-61a6-4d78-bd37-f1b78c6bf5fe {
  margin-top: 0px;
}
}@media (max-width: 767px){#s-9d6a71ac-61a6-4d78-bd37-f1b78c6bf5fe {
  display: none;
}
#s-9d6a71ac-61a6-4d78-bd37-f1b78c6bf5fe, #wrap-s-9d6a71ac-61a6-4d78-bd37-f1b78c6bf5fe { display: none !important; }}
#s-9d6a71ac-61a6-4d78-bd37-f1b78c6bf5fe .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-9d6a71ac-61a6-4d78-bd37-f1b78c6bf5fe .shg-sld-nav-button.shg-sld-left,
#s-9d6a71ac-61a6-4d78-bd37-f1b78c6bf5fe .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-9d6a71ac-61a6-4d78-bd37-f1b78c6bf5fe .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-9d6a71ac-61a6-4d78-bd37-f1b78c6bf5fe .shg-sld-nav-button.shg-sld-left,
#s-9d6a71ac-61a6-4d78-bd37-f1b78c6bf5fe .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 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-f449c73b-fdd4-4a86-97fa-cce605a5b16f {
  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-f449c73b-fdd4-4a86-97fa-cce605a5b16f {
  display: none;
}
#s-f449c73b-fdd4-4a86-97fa-cce605a5b16f, #wrap-s-f449c73b-fdd4-4a86-97fa-cce605a5b16f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f449c73b-fdd4-4a86-97fa-cce605a5b16f {
  display: none;
}
#s-f449c73b-fdd4-4a86-97fa-cce605a5b16f, #wrap-s-f449c73b-fdd4-4a86-97fa-cce605a5b16f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f449c73b-fdd4-4a86-97fa-cce605a5b16f {
  display: none;
}
#s-f449c73b-fdd4-4a86-97fa-cce605a5b16f, #wrap-s-f449c73b-fdd4-4a86-97fa-cce605a5b16f { display: none !important; }}







#s-f449c73b-fdd4-4a86-97fa-cce605a5b16f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f449c73b-fdd4-4a86-97fa-cce605a5b16f.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-afadb415-00c6-45f7-aca6-c1fa434de618 {
  margin-top: 16px;
margin-bottom: 0px;
padding-left: 16px;
padding-right: 16px;
min-height: 50px;
}








#s-afadb415-00c6-45f7-aca6-c1fa434de618 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-afadb415-00c6-45f7-aca6-c1fa434de618.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: #000000;
  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: #000000;
  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: #000000;
  font-family: "areaNormal800";
  font-weight: 400;
}

.shg-theme-text-content p {
  color: #000000;
  font-family: "area-normal";
  font-weight: 400;
}

#s-0be2ff93-d7a7-48ce-b904-b01c46991917 {
  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: #000000;
  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-5e479c2a-d9da-40c8-bce1-2864da4a6dc1 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-5e479c2a-d9da-40c8-bce1-2864da4a6dc1 .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-68d23f59-9007-4dca-b5ed-1a7b7c5d0bd6 {
  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-38ef59c7-7353-4042-85ef-b02d469dd831 {
  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-38ef59c7-7353-4042-85ef-b02d469dd831:hover {background-color: rgba(82, 1, 14, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-38ef59c7-7353-4042-85ef-b02d469dd831:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-38ef59c7-7353-4042-85ef-b02d469dd831-root {
    text-align: center;
  }


#s-38ef59c7-7353-4042-85ef-b02d469dd831.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-38ef59c7-7353-4042-85ef-b02d469dd831-root {
    text-align: center;
  }


#s-38ef59c7-7353-4042-85ef-b02d469dd831.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-38ef59c7-7353-4042-85ef-b02d469dd831-root {
    text-align: center;
  }


#s-38ef59c7-7353-4042-85ef-b02d469dd831.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-38ef59c7-7353-4042-85ef-b02d469dd831-root {
    text-align: center;
  }


#s-38ef59c7-7353-4042-85ef-b02d469dd831.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-38ef59c7-7353-4042-85ef-b02d469dd831-root {
    text-align: center;
  }


#s-38ef59c7-7353-4042-85ef-b02d469dd831.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
}
#s-860653e1-10d3-40c2-a428-43689644e2ba {
  margin-top: 24px;
min-height: 50px;
background-color: rgba(183, 238, 255, 1);
}








#s-860653e1-10d3-40c2-a428-43689644e2ba > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-860653e1-10d3-40c2-a428-43689644e2ba.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;
}

.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;
  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;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.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>div {
  width: 100%;
}

.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;
}
#s-38ec72d1-6a39-4de6-8791-e80208a32b97 {
  max-width: 200px;
aspect-ratio: 410/434;
text-align: center;
}



.shg-image-margin-container-s-38ec72d1-6a39-4de6-8791-e80208a32b97 {
  
  
  
  
}

#s-38ec72d1-6a39-4de6-8791-e80208a32b97 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-38ec72d1-6a39-4de6-8791-e80208a32b97 .shg-image-content-wrapper {
      aspect-ratio: 410/434;
      min-width: 100%;
      height: auto;
    }

    #s-38ec72d1-6a39-4de6-8791-e80208a32b97 .shogun-image-link {
      aspect-ratio: 410/434;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-38ec72d1-6a39-4de6-8791-e80208a32b97 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-38ec72d1-6a39-4de6-8791-e80208a32b97.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-38ec72d1-6a39-4de6-8791-e80208a32b97 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 200px;
  }



  img.s-38ec72d1-6a39-4de6-8791-e80208a32b97.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-38ec72d1-6a39-4de6-8791-e80208a32b97 .shogun-image-content {
  
    align-items: center;
  
}

.s-38ec72d1-6a39-4de6-8791-e80208a32b97.shg-align-container {
  display: flex;
  justify-content: center
}

.s-38ec72d1-6a39-4de6-8791-e80208a32b97.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-38ec72d1-6a39-4de6-8791-e80208a32b97.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-38ec72d1-6a39-4de6-8791-e80208a32b97 {
      --shg-aspect-ratio: calc(410/434); 
    }

    .s-38ec72d1-6a39-4de6-8791-e80208a32b97.shogun-image-container {
      position: relative;
    }

    .s-38ec72d1-6a39-4de6-8791-e80208a32b97.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-38ec72d1-6a39-4de6-8791-e80208a32b97.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-38ec72d1-6a39-4de6-8791-e80208a32b97 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-38ec72d1-6a39-4de6-8791-e80208a32b97 {
  
  
  
  
}

#s-38ec72d1-6a39-4de6-8791-e80208a32b97 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-38ec72d1-6a39-4de6-8791-e80208a32b97 .shg-image-content-wrapper {
      aspect-ratio: 410/434;
      min-width: 100%;
      height: auto;
    }

    #s-38ec72d1-6a39-4de6-8791-e80208a32b97 .shogun-image-link {
      aspect-ratio: 410/434;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-38ec72d1-6a39-4de6-8791-e80208a32b97 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-38ec72d1-6a39-4de6-8791-e80208a32b97.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-38ec72d1-6a39-4de6-8791-e80208a32b97 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 200px;
  }



  img.s-38ec72d1-6a39-4de6-8791-e80208a32b97.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-38ec72d1-6a39-4de6-8791-e80208a32b97 .shogun-image-content {
  
    align-items: center;
  
}

.s-38ec72d1-6a39-4de6-8791-e80208a32b97.shg-align-container {
  display: flex;
  justify-content: center
}

.s-38ec72d1-6a39-4de6-8791-e80208a32b97.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-38ec72d1-6a39-4de6-8791-e80208a32b97.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-38ec72d1-6a39-4de6-8791-e80208a32b97 {
      --shg-aspect-ratio: calc(410/434); 
    }

    .s-38ec72d1-6a39-4de6-8791-e80208a32b97.shogun-image-container {
      position: relative;
    }

    .s-38ec72d1-6a39-4de6-8791-e80208a32b97.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-38ec72d1-6a39-4de6-8791-e80208a32b97.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-38ec72d1-6a39-4de6-8791-e80208a32b97 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-38ec72d1-6a39-4de6-8791-e80208a32b97 {
  
  
  
  
}

#s-38ec72d1-6a39-4de6-8791-e80208a32b97 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-38ec72d1-6a39-4de6-8791-e80208a32b97 .shg-image-content-wrapper {
      aspect-ratio: 410/434;
      min-width: 100%;
      height: auto;
    }

    #s-38ec72d1-6a39-4de6-8791-e80208a32b97 .shogun-image-link {
      aspect-ratio: 410/434;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-38ec72d1-6a39-4de6-8791-e80208a32b97 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-38ec72d1-6a39-4de6-8791-e80208a32b97.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-38ec72d1-6a39-4de6-8791-e80208a32b97 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 200px;
  }



  img.s-38ec72d1-6a39-4de6-8791-e80208a32b97.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-38ec72d1-6a39-4de6-8791-e80208a32b97 .shogun-image-content {
  
    align-items: center;
  
}

.s-38ec72d1-6a39-4de6-8791-e80208a32b97.shg-align-container {
  display: flex;
  justify-content: center
}

.s-38ec72d1-6a39-4de6-8791-e80208a32b97.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-38ec72d1-6a39-4de6-8791-e80208a32b97.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-38ec72d1-6a39-4de6-8791-e80208a32b97 {
      --shg-aspect-ratio: calc(410/434); 
    }

    .s-38ec72d1-6a39-4de6-8791-e80208a32b97.shogun-image-container {
      position: relative;
    }

    .s-38ec72d1-6a39-4de6-8791-e80208a32b97.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-38ec72d1-6a39-4de6-8791-e80208a32b97.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-38ec72d1-6a39-4de6-8791-e80208a32b97 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-38ec72d1-6a39-4de6-8791-e80208a32b97 {
  
  
  
  
}

#s-38ec72d1-6a39-4de6-8791-e80208a32b97 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-38ec72d1-6a39-4de6-8791-e80208a32b97 .shg-image-content-wrapper {
      aspect-ratio: 410/434;
      min-width: 100%;
      height: auto;
    }

    #s-38ec72d1-6a39-4de6-8791-e80208a32b97 .shogun-image-link {
      aspect-ratio: 410/434;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-38ec72d1-6a39-4de6-8791-e80208a32b97 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-38ec72d1-6a39-4de6-8791-e80208a32b97.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-38ec72d1-6a39-4de6-8791-e80208a32b97 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 200px;
  }



  img.s-38ec72d1-6a39-4de6-8791-e80208a32b97.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-38ec72d1-6a39-4de6-8791-e80208a32b97 .shogun-image-content {
  
    align-items: center;
  
}

.s-38ec72d1-6a39-4de6-8791-e80208a32b97.shg-align-container {
  display: flex;
  justify-content: center
}

.s-38ec72d1-6a39-4de6-8791-e80208a32b97.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-38ec72d1-6a39-4de6-8791-e80208a32b97.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-38ec72d1-6a39-4de6-8791-e80208a32b97 {
      --shg-aspect-ratio: calc(410/434); 
    }

    .s-38ec72d1-6a39-4de6-8791-e80208a32b97.shogun-image-container {
      position: relative;
    }

    .s-38ec72d1-6a39-4de6-8791-e80208a32b97.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-38ec72d1-6a39-4de6-8791-e80208a32b97.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-38ec72d1-6a39-4de6-8791-e80208a32b97 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-38ec72d1-6a39-4de6-8791-e80208a32b97 {
  
  
  
  
}

#s-38ec72d1-6a39-4de6-8791-e80208a32b97 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-38ec72d1-6a39-4de6-8791-e80208a32b97 .shg-image-content-wrapper {
      aspect-ratio: 410/434;
      min-width: 100%;
      height: auto;
    }

    #s-38ec72d1-6a39-4de6-8791-e80208a32b97 .shogun-image-link {
      aspect-ratio: 410/434;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-38ec72d1-6a39-4de6-8791-e80208a32b97 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-38ec72d1-6a39-4de6-8791-e80208a32b97.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-38ec72d1-6a39-4de6-8791-e80208a32b97 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 200px;
  }



  img.s-38ec72d1-6a39-4de6-8791-e80208a32b97.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-38ec72d1-6a39-4de6-8791-e80208a32b97 .shogun-image-content {
  
    align-items: center;
  
}

.s-38ec72d1-6a39-4de6-8791-e80208a32b97.shg-align-container {
  display: flex;
  justify-content: center
}

.s-38ec72d1-6a39-4de6-8791-e80208a32b97.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-38ec72d1-6a39-4de6-8791-e80208a32b97.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-38ec72d1-6a39-4de6-8791-e80208a32b97 {
      --shg-aspect-ratio: calc(410/434); 
    }

    .s-38ec72d1-6a39-4de6-8791-e80208a32b97.shogun-image-container {
      position: relative;
    }

    .s-38ec72d1-6a39-4de6-8791-e80208a32b97.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-38ec72d1-6a39-4de6-8791-e80208a32b97.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-38ec72d1-6a39-4de6-8791-e80208a32b97 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}
#s-5cac291f-1c19-4ff2-b3fe-22936f6ec3c3 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 426px;
background-position: center center;
}

#s-5cac291f-1c19-4ff2-b3fe-22936f6ec3c3 {
  background-image: url(https://i.shgcdn.com/8906602a-b3fb-4504-9a8c-b843f969c1b1/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-5cac291f-1c19-4ff2-b3fe-22936f6ec3c3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5cac291f-1c19-4ff2-b3fe-22936f6ec3c3.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-31d4aaa7-8591-48f9-b61b-17ba175a406f {
  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-528f4ead-7924-473e-ab8c-12ea75a00720 {
  margin-left: auto;
margin-right: auto;
min-height: 0px;
}

@media (min-width: 0px) {
[id="s-528f4ead-7924-473e-ab8c-12ea75a00720"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-528f4ead-7924-473e-ab8c-12ea75a00720"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-528f4ead-7924-473e-ab8c-12ea75a00720"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-528f4ead-7924-473e-ab8c-12ea75a00720"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-2a4b5446-0969-4ce0-821d-aa11b813d63f {
  padding-top: 47px;
padding-left: 39px;
padding-bottom: 47px;
padding-right: 54px;
min-height: 376px;
}
@media (min-width: 768px) and (max-width: 991px){#s-2a4b5446-0969-4ce0-821d-aa11b813d63f {
  padding-top: 47px;
}
}@media (max-width: 767px){#s-2a4b5446-0969-4ce0-821d-aa11b813d63f {
  padding-top: 21px;
padding-left: 15px;
padding-bottom: 39px;
padding-right: 15px;
}
}







#s-2a4b5446-0969-4ce0-821d-aa11b813d63f > .shg-box-overlay {
  background-color: rgba(29, 38, 46, 1);
  opacity: 0.8;
  display: block;
}#s-2a4b5446-0969-4ce0-821d-aa11b813d63f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 767px){






#s-2a4b5446-0969-4ce0-821d-aa11b813d63f > .shg-box-overlay {
  background-color: rgba(29, 38, 46, 1);
  opacity: 0.8;
  display: block;
}#s-2a4b5446-0969-4ce0-821d-aa11b813d63f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
}
#s-51a8461c-4038-4e09-baca-08ad36fd49d8 {
  margin-top: -16px;
margin-bottom: 0px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-51a8461c-4038-4e09-baca-08ad36fd49d8 {
  margin-top: -32px;
}
}@media (max-width: 767px){#s-51a8461c-4038-4e09-baca-08ad36fd49d8 {
  margin-top: 40px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 4%;
}
}
#s-51a8461c-4038-4e09-baca-08ad36fd49d8 .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-51a8461c-4038-4e09-baca-08ad36fd49d8 .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-51a8461c-4038-4e09-baca-08ad36fd49d8 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  line-height: 1.3em;
  
  
}


}
#s-25d6cded-36f4-4604-b2ad-3c4f0d5a52e7 {
  margin-top: 8px;
}
@media (max-width: 767px){#s-25d6cded-36f4-4604-b2ad-3c4f0d5a52e7 {
  margin-left: 0%;
margin-right: 4%;
}
}
#s-3d1846dc-727a-4faa-b001-2b52d9f18573 {
  margin-top: 32px;
}
@media (min-width: 768px) and (max-width: 991px){#s-3d1846dc-727a-4faa-b001-2b52d9f18573 {
  margin-top: 16px;
margin-bottom: -8px;
}
}
#s-96140dc1-b885-4d99-9f77-af09d70c7a8b {
  min-height: 30px;
}
@media (min-width: 1200px){#s-96140dc1-b885-4d99-9f77-af09d70c7a8b {
  min-height: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-96140dc1-b885-4d99-9f77-af09d70c7a8b {
  min-height: 50px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-96140dc1-b885-4d99-9f77-af09d70c7a8b {
  min-height: 50px;
}
}







#s-96140dc1-b885-4d99-9f77-af09d70c7a8b > .shg-box-overlay {
  background-color: rgba(29, 38, 46, 1);
  opacity: 0.8;
  display: block;
}#s-96140dc1-b885-4d99-9f77-af09d70c7a8b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-be7b18fb-2e7c-408c-9f42-060c2aeb8373 {
  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-be7b18fb-2e7c-408c-9f42-060c2aeb8373 {
  margin-top: -70px;
}
}@media (max-width: 767px){#s-be7b18fb-2e7c-408c-9f42-060c2aeb8373 {
  display: none;
}
#s-be7b18fb-2e7c-408c-9f42-060c2aeb8373, #wrap-s-be7b18fb-2e7c-408c-9f42-060c2aeb8373 { display: none !important; }}
#s-b46969f8-c5a7-4acc-a685-9f4b3825ac64 {
  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-b46969f8-c5a7-4acc-a685-9f4b3825ac64 {
  display: none;
}
#s-b46969f8-c5a7-4acc-a685-9f4b3825ac64, #wrap-s-b46969f8-c5a7-4acc-a685-9f4b3825ac64 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b46969f8-c5a7-4acc-a685-9f4b3825ac64 {
  display: none;
}
#s-b46969f8-c5a7-4acc-a685-9f4b3825ac64, #wrap-s-b46969f8-c5a7-4acc-a685-9f4b3825ac64 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b46969f8-c5a7-4acc-a685-9f4b3825ac64 {
  background-color: rgba(233, 242, 239, 1);
}
}@media (max-width: 767px){#s-b46969f8-c5a7-4acc-a685-9f4b3825ac64 {
  min-height: 0px;
display: none;
}
#s-b46969f8-c5a7-4acc-a685-9f4b3825ac64, #wrap-s-b46969f8-c5a7-4acc-a685-9f4b3825ac64 { display: none !important; }}







#s-b46969f8-c5a7-4acc-a685-9f4b3825ac64 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b46969f8-c5a7-4acc-a685-9f4b3825ac64.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e78b5157-4ce7-41e3-85a7-9e870e2ddf06 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-e78b5157-4ce7-41e3-85a7-9e870e2ddf06 {
  display: none;
}
#s-e78b5157-4ce7-41e3-85a7-9e870e2ddf06, #wrap-s-e78b5157-4ce7-41e3-85a7-9e870e2ddf06 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e78b5157-4ce7-41e3-85a7-9e870e2ddf06 {
  display: none;
}
#s-e78b5157-4ce7-41e3-85a7-9e870e2ddf06, #wrap-s-e78b5157-4ce7-41e3-85a7-9e870e2ddf06 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e78b5157-4ce7-41e3-85a7-9e870e2ddf06 {
  background-color: rgba(221, 247, 255, 1);
}
}@media (max-width: 767px){#s-e78b5157-4ce7-41e3-85a7-9e870e2ddf06 {
  display: none;
}
#s-e78b5157-4ce7-41e3-85a7-9e870e2ddf06, #wrap-s-e78b5157-4ce7-41e3-85a7-9e870e2ddf06 { display: none !important; }}
@media (min-width: 0px) {
[id="s-e78b5157-4ce7-41e3-85a7-9e870e2ddf06"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e78b5157-4ce7-41e3-85a7-9e870e2ddf06"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-e78b5157-4ce7-41e3-85a7-9e870e2ddf06"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-e78b5157-4ce7-41e3-85a7-9e870e2ddf06"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-90619a43-619e-4dbc-bdef-e5a1d0b65afe {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 25%;
padding-bottom: 0px;
padding-right: 5%;
min-height: 426px;
background-color: rgba(221, 247, 255, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-90619a43-619e-4dbc-bdef-e5a1d0b65afe {
  padding-left: 10%;
padding-right: 4%;
}
}







#s-90619a43-619e-4dbc-bdef-e5a1d0b65afe > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-90619a43-619e-4dbc-bdef-e5a1d0b65afe.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a82328ce-1c7c-476a-9958-cd6bc7664aaa {
  margin-top: -6px;
margin-left: auto;
margin-right: auto;
}

#s-278c5c2a-7e18-4719-912e-11d8d89dd57d {
  margin-top: -6px;
margin-left: auto;
margin-right: auto;
}
@media (min-width: 768px) and (max-width: 991px){#s-278c5c2a-7e18-4719-912e-11d8d89dd57d {
  margin-top: -6px;
margin-bottom: -9px;
}
}
#s-1155dd56-9b23-48ee-9afb-b7480b2a28ba {
  margin-top: -6px;
margin-left: auto;
margin-right: auto;
}

#s-997237d0-6594-4ebf-aa59-edd74980f72e {
  margin-bottom: 8px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-997237d0-6594-4ebf-aa59-edd74980f72e {
  margin-top: 16px;
margin-bottom: 16px;
text-align: left;
}
}
#s-96b4e778-eb39-47a9-ab2e-2d0202389ded {
  margin-left: auto;
margin-right: auto;
}

#s-15094fb6-f6f2-440d-bd12-ffb3ff8f3296 {
  background-repeat: no-repeat;
background-size: cover;
margin-left: auto;
margin-right: auto;
min-height: 426px;
background-position: left center;
}
@media (min-width: 768px) and (max-width: 991px){#s-15094fb6-f6f2-440d-bd12-ffb3ff8f3296 {
  margin-top: 0%;
margin-left: -15%;
margin-bottom: 0%;
margin-right: -7%;
}
}
#s-15094fb6-f6f2-440d-bd12-ffb3ff8f3296 {
  background-image: url(https://i.shgcdn.com/a5f293bf-8610-405c-a4bd-b5b86b1a3bae/);
}








#s-15094fb6-f6f2-440d-bd12-ffb3ff8f3296 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-15094fb6-f6f2-440d-bd12-ffb3ff8f3296.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3db79ce1-f529-4112-828c-23324035cbbe {
  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(221, 247, 255, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-3db79ce1-f529-4112-828c-23324035cbbe {
  display: none;
}
#s-3db79ce1-f529-4112-828c-23324035cbbe, #wrap-s-3db79ce1-f529-4112-828c-23324035cbbe { display: none !important; }}@media (max-width: 767px){#s-3db79ce1-f529-4112-828c-23324035cbbe {
  display: none;
}
#s-3db79ce1-f529-4112-828c-23324035cbbe, #wrap-s-3db79ce1-f529-4112-828c-23324035cbbe { display: none !important; }}







#s-3db79ce1-f529-4112-828c-23324035cbbe > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3db79ce1-f529-4112-828c-23324035cbbe.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0f085ad8-1d57-4097-9b0b-bb53ba720db7 {
  margin-left: 0%;
margin-right: 0%;
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;
}

@media (min-width: 0px) {
[id="s-0f085ad8-1d57-4097-9b0b-bb53ba720db7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0f085ad8-1d57-4097-9b0b-bb53ba720db7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-0f085ad8-1d57-4097-9b0b-bb53ba720db7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-0f085ad8-1d57-4097-9b0b-bb53ba720db7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-572521f6-fd26-491c-9f88-1e2cf732efcc {
  background-size: cover;
margin-left: 30%;
margin-right: 5%;
padding-top: 0px;
padding-bottom: 0px;
min-height: 426px;
background-position: center center;
background-color: rgba(233, 242, 239, 0);
}
@media (min-width: 1200px){#s-572521f6-fd26-491c-9f88-1e2cf732efcc {
  margin-left: 25%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-572521f6-fd26-491c-9f88-1e2cf732efcc {
  margin-left: 10%;
margin-right: 5%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-572521f6-fd26-491c-9f88-1e2cf732efcc {
  padding-right: 4%;
}
}







#s-572521f6-fd26-491c-9f88-1e2cf732efcc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-572521f6-fd26-491c-9f88-1e2cf732efcc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4c1fccc2-0c62-4fe6-94c6-128aa1711530 {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
}

#s-40e8d57a-e57b-4eef-9b52-10b8b242a735 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 1200px){#s-40e8d57a-e57b-4eef-9b52-10b8b242a735 {
  margin-top: 5px;
margin-bottom: 5px;
}
}
#s-40e8d57a-e57b-4eef-9b52-10b8b242a735 .shogun-heading-component h1 {
  color: rgba(0, 175, 230, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 80px;
  
  
  
}



#s-808546a3-bc3a-4cc6-bd35-99686bfb6c9f {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
}

#s-c30e991f-effa-4951-a935-cc8a1877b860 {
  margin-top: 20px;
margin-bottom: 16px;
text-align: left;
}

#s-bca6da11-ed97-420d-af2a-31c095a5f4f7 {
  margin-left: auto;
margin-right: auto;
}

#s-abfcd879-3aea-4dbc-bc12-a50812728854 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 426px;
background-position: left bottom;
}
@media (min-width: 1200px){#s-abfcd879-3aea-4dbc-bc12-a50812728854 {
  margin-left: -14%;
}
}
#s-abfcd879-3aea-4dbc-bc12-a50812728854 {
  background-image: url(https://i.shgcdn.com/58b21719-b286-49bb-92ee-15abe0e11964/);
}








#s-abfcd879-3aea-4dbc-bc12-a50812728854 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-abfcd879-3aea-4dbc-bc12-a50812728854.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-df64f448-58aa-43b4-b7c9-2597f90aaa27 {
  padding-top: 0px;
padding-bottom: 0px;
}
@media (min-width: 1200px){#s-df64f448-58aa-43b4-b7c9-2597f90aaa27 {
  display: none;
}
#s-df64f448-58aa-43b4-b7c9-2597f90aaa27, #wrap-s-df64f448-58aa-43b4-b7c9-2597f90aaa27 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-df64f448-58aa-43b4-b7c9-2597f90aaa27 {
  display: none;
}
#s-df64f448-58aa-43b4-b7c9-2597f90aaa27, #wrap-s-df64f448-58aa-43b4-b7c9-2597f90aaa27 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-df64f448-58aa-43b4-b7c9-2597f90aaa27 {
  display: none;
}
#s-df64f448-58aa-43b4-b7c9-2597f90aaa27, #wrap-s-df64f448-58aa-43b4-b7c9-2597f90aaa27 { display: none !important; }}
#s-df64f448-58aa-43b4-b7c9-2597f90aaa27 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-df64f448-58aa-43b4-b7c9-2597f90aaa27 .shg-sld-nav-button.shg-sld-left,
#s-df64f448-58aa-43b4-b7c9-2597f90aaa27 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-df64f448-58aa-43b4-b7c9-2597f90aaa27 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-df64f448-58aa-43b4-b7c9-2597f90aaa27 .shg-sld-nav-button.shg-sld-left,
#s-df64f448-58aa-43b4-b7c9-2597f90aaa27 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}
}
#s-9b17ba2a-6263-4cf6-b663-8ec7ce880d91 {
  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-9b17ba2a-6263-4cf6-b663-8ec7ce880d91 {
  display: none;
}
#s-9b17ba2a-6263-4cf6-b663-8ec7ce880d91, #wrap-s-9b17ba2a-6263-4cf6-b663-8ec7ce880d91 { display: none !important; }}@media (max-width: 767px){#s-9b17ba2a-6263-4cf6-b663-8ec7ce880d91 {
  min-height: 0px;
display: none;
}
#s-9b17ba2a-6263-4cf6-b663-8ec7ce880d91, #wrap-s-9b17ba2a-6263-4cf6-b663-8ec7ce880d91 { display: none !important; }}
#s-9b17ba2a-6263-4cf6-b663-8ec7ce880d91 {
  background-image: url(https://i.shgcdn.com/4c36f459-033a-4407-9e23-d4354995c659/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-9b17ba2a-6263-4cf6-b663-8ec7ce880d91 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9b17ba2a-6263-4cf6-b663-8ec7ce880d91.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cd262ebd-7f62-4d4d-a841-75b395a43e93 {
  margin-left: 0%;
padding-left: 0%;
padding-right: 0%;
min-height: 424px;
max-width: 400px;
}
@media (min-width: 1200px){#s-cd262ebd-7f62-4d4d-a841-75b395a43e93 {
  margin-left: 60px;
margin-right: 0px;
}
}







#s-cd262ebd-7f62-4d4d-a841-75b395a43e93 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-cd262ebd-7f62-4d4d-a841-75b395a43e93.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f2950146-e0af-44e2-b190-b0932955b143 {
  margin-left: 4px;
margin-bottom: 8px;
margin-right: 0px;
}

#s-a060d29c-79d6-4a28-b205-a6cc0940020f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-a060d29c-79d6-4a28-b205-a6cc0940020f .shogun-heading-component h1 {
  color: rgba(168, 0, 30, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 80px;
  
  
  
}



#s-517fea5b-1a20-446e-a7c3-10d9cfa3083c {
  margin-top: -6px;
}

#s-381b3498-1556-4693-939d-c49c26c4e352 {
  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-381b3498-1556-4693-939d-c49c26c4e352:hover {background-color: rgba(82, 1, 14, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-381b3498-1556-4693-939d-c49c26c4e352:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-381b3498-1556-4693-939d-c49c26c4e352 {
  padding-left: 145px;
padding-right: 145px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-381b3498-1556-4693-939d-c49c26c4e352 {
  padding-left: 145px;
padding-right: 145px;
}
}

  #s-381b3498-1556-4693-939d-c49c26c4e352-root {
    text-align: left;
  }


#s-381b3498-1556-4693-939d-c49c26c4e352.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-381b3498-1556-4693-939d-c49c26c4e352-root {
    text-align: left;
  }


#s-381b3498-1556-4693-939d-c49c26c4e352.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-381b3498-1556-4693-939d-c49c26c4e352-root {
    text-align: left;
  }


#s-381b3498-1556-4693-939d-c49c26c4e352.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-381b3498-1556-4693-939d-c49c26c4e352-root {
    text-align: left;
  }


#s-381b3498-1556-4693-939d-c49c26c4e352.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-381b3498-1556-4693-939d-c49c26c4e352-root {
    text-align: left;
  }


#s-381b3498-1556-4693-939d-c49c26c4e352.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
}
#s-4921f09f-694a-440c-bf34-61e07ecc35d4 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 426px;
background-position: center center;
}

#s-4921f09f-694a-440c-bf34-61e07ecc35d4 {
  background-image: url(https://i.shgcdn.com/8906602a-b3fb-4504-9a8c-b843f969c1b1/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-4921f09f-694a-440c-bf34-61e07ecc35d4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4921f09f-694a-440c-bf34-61e07ecc35d4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2c68e1ad-f645-4b02-aaee-1da283324ef2 {
  
}

#s-5d9d7662-5071-4aa1-94cd-6586068626c7 {
  margin-left: auto;
margin-right: auto;
min-height: 0px;
}

@media (min-width: 0px) {
[id="s-5d9d7662-5071-4aa1-94cd-6586068626c7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5d9d7662-5071-4aa1-94cd-6586068626c7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-5d9d7662-5071-4aa1-94cd-6586068626c7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-5d9d7662-5071-4aa1-94cd-6586068626c7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-52aaa3ea-3a2d-4d25-91b5-8b4274989b44 {
  padding-top: 47px;
padding-left: 39px;
padding-bottom: 47px;
padding-right: 54px;
min-height: 376px;
}
@media (min-width: 768px) and (max-width: 991px){#s-52aaa3ea-3a2d-4d25-91b5-8b4274989b44 {
  padding-top: 47px;
}
}@media (max-width: 767px){#s-52aaa3ea-3a2d-4d25-91b5-8b4274989b44 {
  padding-top: 21px;
padding-left: 15px;
padding-bottom: 39px;
padding-right: 15px;
}
}







#s-52aaa3ea-3a2d-4d25-91b5-8b4274989b44 > .shg-box-overlay {
  background-color: rgba(29, 38, 46, 1);
  opacity: 0.8;
  display: block;
}#s-52aaa3ea-3a2d-4d25-91b5-8b4274989b44.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 767px){






#s-52aaa3ea-3a2d-4d25-91b5-8b4274989b44 > .shg-box-overlay {
  background-color: rgba(29, 38, 46, 1);
  opacity: 0.8;
  display: block;
}#s-52aaa3ea-3a2d-4d25-91b5-8b4274989b44.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
}
#s-77bba9e6-cb38-4f22-b54c-41e6c8d7bf09 {
  margin-top: -16px;
margin-bottom: 0px;
text-align: left;
}
@media (max-width: 767px){#s-77bba9e6-cb38-4f22-b54c-41e6c8d7bf09 {
  margin-top: 40px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 4%;
}
}
#s-77bba9e6-cb38-4f22-b54c-41e6c8d7bf09 .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-77bba9e6-cb38-4f22-b54c-41e6c8d7bf09 .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-77bba9e6-cb38-4f22-b54c-41e6c8d7bf09 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  line-height: 1.3em;
  
  
}


}
#s-6b9fafd3-f705-46bf-9283-6e16502c9295 {
  margin-top: 8px;
}
@media (max-width: 767px){#s-6b9fafd3-f705-46bf-9283-6e16502c9295 {
  margin-left: 0%;
margin-right: 4%;
}
}
#s-c968cd2c-3335-4cb1-a20b-0b979f6c7d07 {
  margin-top: 32px;
}

#s-e4494dd4-e2df-4d44-94fd-23b6e5171c28 {
  min-height: 30px;
}
@media (min-width: 1200px){#s-e4494dd4-e2df-4d44-94fd-23b6e5171c28 {
  min-height: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-e4494dd4-e2df-4d44-94fd-23b6e5171c28 {
  min-height: 50px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-e4494dd4-e2df-4d44-94fd-23b6e5171c28 {
  min-height: 50px;
}
}







#s-e4494dd4-e2df-4d44-94fd-23b6e5171c28 > .shg-box-overlay {
  background-color: rgba(29, 38, 46, 1);
  opacity: 0.8;
  display: block;
}#s-e4494dd4-e2df-4d44-94fd-23b6e5171c28.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f5805358-2bdc-4308-a749-5611fc99bf5d {
  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-f5805358-2bdc-4308-a749-5611fc99bf5d {
  margin-top: -40px;
}
}@media (max-width: 767px){#s-f5805358-2bdc-4308-a749-5611fc99bf5d {
  display: none;
}
#s-f5805358-2bdc-4308-a749-5611fc99bf5d, #wrap-s-f5805358-2bdc-4308-a749-5611fc99bf5d { display: none !important; }}
#s-77299f19-c3d8-4d19-896a-d86084cbec44 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 426px;
background-position: center center;
}
@media (min-width: 1200px){#s-77299f19-c3d8-4d19-896a-d86084cbec44 {
  display: none;
}
#s-77299f19-c3d8-4d19-896a-d86084cbec44, #wrap-s-77299f19-c3d8-4d19-896a-d86084cbec44 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-77299f19-c3d8-4d19-896a-d86084cbec44 {
  display: none;
}
#s-77299f19-c3d8-4d19-896a-d86084cbec44, #wrap-s-77299f19-c3d8-4d19-896a-d86084cbec44 { display: none !important; }}@media (max-width: 767px){#s-77299f19-c3d8-4d19-896a-d86084cbec44 {
  min-height: 0px;
display: none;
}
#s-77299f19-c3d8-4d19-896a-d86084cbec44, #wrap-s-77299f19-c3d8-4d19-896a-d86084cbec44 { display: none !important; }}
#s-77299f19-c3d8-4d19-896a-d86084cbec44 {
  background-image: url(https://i.shgcdn.com/01f06ead-3a76-40ed-ac8e-0382ec162703/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-77299f19-c3d8-4d19-896a-d86084cbec44 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-77299f19-c3d8-4d19-896a-d86084cbec44.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-086c17ab-cb42-43ec-8a9c-c72a4b72839e {
  padding-left: 40px;
min-height: 426px;
}
@media (min-width: 768px) and (max-width: 991px){#s-086c17ab-cb42-43ec-8a9c-c72a4b72839e {
  padding-left: 6%;
}
}







#s-086c17ab-cb42-43ec-8a9c-c72a4b72839e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-086c17ab-cb42-43ec-8a9c-c72a4b72839e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bf01a70a-93ed-497a-bba5-1e6a62d51255 {
  margin-left: 4px;
margin-bottom: 8px;
}

#s-116ffb2e-afd7-4835-9455-a35c30fb18a4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-116ffb2e-afd7-4835-9455-a35c30fb18a4 .shogun-heading-component h1 {
  color: rgba(168, 0, 30, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 70px;
  
  
  
}



#s-45506975-9b6d-4538-80da-65a8a05cf6f5 {
  margin-top: -6px;
}

#s-44d2102d-9cb4-47f7-a1e5-1575736f2b36 {
  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-44d2102d-9cb4-47f7-a1e5-1575736f2b36:hover {background-color: rgba(82, 1, 14, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-44d2102d-9cb4-47f7-a1e5-1575736f2b36:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-44d2102d-9cb4-47f7-a1e5-1575736f2b36-root {
    text-align: left;
  }


#s-44d2102d-9cb4-47f7-a1e5-1575736f2b36.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-44d2102d-9cb4-47f7-a1e5-1575736f2b36-root {
    text-align: left;
  }


#s-44d2102d-9cb4-47f7-a1e5-1575736f2b36.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-44d2102d-9cb4-47f7-a1e5-1575736f2b36-root {
    text-align: left;
  }


#s-44d2102d-9cb4-47f7-a1e5-1575736f2b36.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-44d2102d-9cb4-47f7-a1e5-1575736f2b36-root {
    text-align: left;
  }


#s-44d2102d-9cb4-47f7-a1e5-1575736f2b36.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-44d2102d-9cb4-47f7-a1e5-1575736f2b36-root {
    text-align: left;
  }


#s-44d2102d-9cb4-47f7-a1e5-1575736f2b36.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: areaNormal800;
  display:  inline-block ;
}
}
#s-ddf9b0bd-800e-46a1-b357-4c2c224a0bbd {
  margin-top: 0px;
margin-bottom: 0px;
padding-left: 0px;
padding-right: 0px;
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-ddf9b0bd-800e-46a1-b357-4c2c224a0bbd {
  display: none;
}
#s-ddf9b0bd-800e-46a1-b357-4c2c224a0bbd, #wrap-s-ddf9b0bd-800e-46a1-b357-4c2c224a0bbd { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ddf9b0bd-800e-46a1-b357-4c2c224a0bbd {
  display: none;
}
#s-ddf9b0bd-800e-46a1-b357-4c2c224a0bbd, #wrap-s-ddf9b0bd-800e-46a1-b357-4c2c224a0bbd { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ddf9b0bd-800e-46a1-b357-4c2c224a0bbd {
  display: none;
}
#s-ddf9b0bd-800e-46a1-b357-4c2c224a0bbd, #wrap-s-ddf9b0bd-800e-46a1-b357-4c2c224a0bbd { display: none !important; }}







#s-ddf9b0bd-800e-46a1-b357-4c2c224a0bbd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ddf9b0bd-800e-46a1-b357-4c2c224a0bbd.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-08306437-3bb4-4dea-a49c-7b230aead1f9 {
  background-repeat: no-repeat;
background-size: cover;
margin-left: auto;
margin-right: auto;
min-height: 50px;
background-position: center center;
}
@media (min-width: 1200px){#s-08306437-3bb4-4dea-a49c-7b230aead1f9 {
  display: none;
}
#s-08306437-3bb4-4dea-a49c-7b230aead1f9, #wrap-s-08306437-3bb4-4dea-a49c-7b230aead1f9 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-08306437-3bb4-4dea-a49c-7b230aead1f9 {
  display: none;
}
#s-08306437-3bb4-4dea-a49c-7b230aead1f9, #wrap-s-08306437-3bb4-4dea-a49c-7b230aead1f9 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-08306437-3bb4-4dea-a49c-7b230aead1f9 {
  display: none;
}
#s-08306437-3bb4-4dea-a49c-7b230aead1f9, #wrap-s-08306437-3bb4-4dea-a49c-7b230aead1f9 { display: none !important; }}@media (max-width: 767px){#s-08306437-3bb4-4dea-a49c-7b230aead1f9 {
  min-height: 140px;
}
}
#s-08306437-3bb4-4dea-a49c-7b230aead1f9 {
  background-image: url(https://i.shgcdn.com/033be07e-87ed-48c1-a696-a9c08beea646/);
}

@media (max-width: 480px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-08306437-3bb4-4dea-a49c-7b230aead1f9 {
  background-image: url(https://i.shgcdn.com/033be07e-87ed-48c1-a696-a9c08beea646/-/resize/480x/);
}
#s-08306437-3bb4-4dea-a49c-7b230aead1f9.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
#s-08306437-3bb4-4dea-a49c-7b230aead1f9 {
  background-image: url(https://i.shgcdn.com/033be07e-87ed-48c1-a696-a9c08beea646/-/resize/960x/);
}
#s-08306437-3bb4-4dea-a49c-7b230aead1f9.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-08306437-3bb4-4dea-a49c-7b230aead1f9 {
  background-image: url(https://i.shgcdn.com/033be07e-87ed-48c1-a696-a9c08beea646/-/resize/768x/);
}
#s-08306437-3bb4-4dea-a49c-7b230aead1f9.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
#s-08306437-3bb4-4dea-a49c-7b230aead1f9 {
  background-image: url(https://i.shgcdn.com/033be07e-87ed-48c1-a696-a9c08beea646/-/resize/1536x/);
}
#s-08306437-3bb4-4dea-a49c-7b230aead1f9.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-08306437-3bb4-4dea-a49c-7b230aead1f9 {
  background-image: url(https://i.shgcdn.com/033be07e-87ed-48c1-a696-a9c08beea646/-/resize/1024x/);
}
#s-08306437-3bb4-4dea-a49c-7b230aead1f9.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
#s-08306437-3bb4-4dea-a49c-7b230aead1f9 {
  background-image: url(https://i.shgcdn.com/033be07e-87ed-48c1-a696-a9c08beea646/-/resize/2048x/);
}
#s-08306437-3bb4-4dea-a49c-7b230aead1f9.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-08306437-3bb4-4dea-a49c-7b230aead1f9 {
  background-image: url(https://i.shgcdn.com/033be07e-87ed-48c1-a696-a9c08beea646/-/resize/1200x/);
}
#s-08306437-3bb4-4dea-a49c-7b230aead1f9.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 2) {
#s-08306437-3bb4-4dea-a49c-7b230aead1f9 {
  background-image: url(https://i.shgcdn.com/033be07e-87ed-48c1-a696-a9c08beea646/-/resize/2048x/);
}
#s-08306437-3bb4-4dea-a49c-7b230aead1f9.shogun-lazyload-bg-image {
  background-image: none;
}

}







#s-08306437-3bb4-4dea-a49c-7b230aead1f9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-08306437-3bb4-4dea-a49c-7b230aead1f9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dcaacc04-a614-4a31-8d74-9d97efa55420 {
  background-size: cover;
margin-left: auto;
margin-right: auto;
min-height: 50px;
background-position: center center;
background-color: rgba(221, 247, 255, 1);
}
@media (min-width: 1200px){#s-dcaacc04-a614-4a31-8d74-9d97efa55420 {
  display: none;
}
#s-dcaacc04-a614-4a31-8d74-9d97efa55420, #wrap-s-dcaacc04-a614-4a31-8d74-9d97efa55420 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-dcaacc04-a614-4a31-8d74-9d97efa55420 {
  display: none;
}
#s-dcaacc04-a614-4a31-8d74-9d97efa55420, #wrap-s-dcaacc04-a614-4a31-8d74-9d97efa55420 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-dcaacc04-a614-4a31-8d74-9d97efa55420 {
  display: none;
}
#s-dcaacc04-a614-4a31-8d74-9d97efa55420, #wrap-s-dcaacc04-a614-4a31-8d74-9d97efa55420 { display: none !important; }}@media (max-width: 767px){#s-dcaacc04-a614-4a31-8d74-9d97efa55420 {
  min-height: 140px;
}
}







#s-dcaacc04-a614-4a31-8d74-9d97efa55420 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-dcaacc04-a614-4a31-8d74-9d97efa55420.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bbcbf7c8-a28d-4520-a7ef-51fac6405d82 {
  margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-bbcbf7c8-a28d-4520-a7ef-51fac6405d82 {
  margin-top: 12px;
}
}
#s-c860c951-5ff6-4ba2-b086-29a634a5ea97 {
  margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-c860c951-5ff6-4ba2-b086-29a634a5ea97 {
  margin-top: -10px;
margin-bottom: -10px;
}
}
#s-daf50501-9196-423e-a496-6cfc84c92ac5 {
  margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-daf50501-9196-423e-a496-6cfc84c92ac5 {
  margin-top: 0px;
}
}
#s-e7a54d43-d037-4497-b20a-7c7d49a5ee74 {
  margin-top: 8px;
margin-bottom: 8px;
margin-right: 0%;
padding-top: 8px;
padding-left: 30%;
padding-bottom: 8px;
padding-right: 30%;
border-radius: 2px;
background-color: rgba(1, 97, 152, 1);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
background-image: none;
hover-type: color;
}
#s-e7a54d43-d037-4497-b20a-7c7d49a5ee74:hover {background-color: rgba(2, 72, 113, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-e7a54d43-d037-4497-b20a-7c7d49a5ee74:active {background-color: rgba(2, 72, 113, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (max-width: 767px){#s-e7a54d43-d037-4497-b20a-7c7d49a5ee74 {
  margin-top: 16px;
background-image: none;
background-color: rgba(0, 175, 230, 1);
hover-type: color;
}
}

  #s-e7a54d43-d037-4497-b20a-7c7d49a5ee74-root {
    text-align: center;
  }


#s-e7a54d43-d037-4497-b20a-7c7d49a5ee74.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: AreaNormal-Black;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e7a54d43-d037-4497-b20a-7c7d49a5ee74-root {
    text-align: center;
  }


#s-e7a54d43-d037-4497-b20a-7c7d49a5ee74.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: AreaNormal-Black;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e7a54d43-d037-4497-b20a-7c7d49a5ee74-root {
    text-align: center;
  }


#s-e7a54d43-d037-4497-b20a-7c7d49a5ee74.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: AreaNormal-Black;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e7a54d43-d037-4497-b20a-7c7d49a5ee74-root {
    text-align: center;
  }


#s-e7a54d43-d037-4497-b20a-7c7d49a5ee74.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: AreaNormal-Black;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e7a54d43-d037-4497-b20a-7c7d49a5ee74-root {
    text-align: center;
  }


#s-e7a54d43-d037-4497-b20a-7c7d49a5ee74.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: AreaNormal-Black;
  display:  inline-block ;
}
}
#s-47e2836e-a6b1-48ee-b25e-ba177fbde4d9 {
  margin-top: 8px;
margin-left: auto;
margin-bottom: 8px;
margin-right: auto;
}

/*
  $vgutter : 20px
  $hgutter : 10px;
*/

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

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

.shogun-root iframe {
  display: initial;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* <-- User Content Animations */

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

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

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