.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;
  /**
   * This is part of an IE11 fallback to avoid flex introducing
   * huge amount of weird space on the bottom on the section element.
   */
  min-height: 1px;
}

.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-e5cc694e-c1f5-47a8-ba9e-34a8e5bdc6ad {
  background-repeat: no-repeat;
background-size: cover;
border-style: solid;
border-top-width: 5px;
border-left-width: 0px;
border-bottom-width: 5px;
border-right-width: 0px;
border-color: rgba(253, 203, 57, 1);
min-height: 50px;
background-position: center center;
}

#s-e5cc694e-c1f5-47a8-ba9e-34a8e5bdc6ad {
  background-image: url(https://i.shgcdn.com/4b91d03a-2378-44e9-ac64-866b92e398b7/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-e5cc694e-c1f5-47a8-ba9e-34a8e5bdc6ad > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e5cc694e-c1f5-47a8-ba9e-34a8e5bdc6ad.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.shogun-image-container {
  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;
}

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

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

.shogun-image.hover {
  opacity: 0;
  z-index: 200;
  position: absolute;
  left: 0;
  top: 0;
}

.shogun-image.hover:hover {
  opacity: 1;
}

#s-a8e56e9f-b778-4b7e-b28a-f1b98d12481c {
  text-align: center;
}







  #s-a8e56e9f-b778-4b7e-b28a-f1b98d12481c img.shogun-image {
    

    
    
    
  }


#s-a8e56e9f-b778-4b7e-b28a-f1b98d12481c .shogun-image-content {
  
    align-items: center;
  
}

#s-f9f67370-30a3-4018-92aa-e23b25dfb60a {
  min-height: 50px;
}








#s-f9f67370-30a3-4018-92aa-e23b25dfb60a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f9f67370-30a3-4018-92aa-e23b25dfb60a.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-9ad4b3bb-9dee-457d-94de-a2920a0a2bb0 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-9ad4b3bb-9dee-457d-94de-a2920a0a2bb0 {
  display: none;
}
#s-9ad4b3bb-9dee-457d-94de-a2920a0a2bb0, #wrap-s-9ad4b3bb-9dee-457d-94de-a2920a0a2bb0 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9ad4b3bb-9dee-457d-94de-a2920a0a2bb0 {
  display: none;
}
#s-9ad4b3bb-9dee-457d-94de-a2920a0a2bb0, #wrap-s-9ad4b3bb-9dee-457d-94de-a2920a0a2bb0 { display: none !important; }}







#s-9ad4b3bb-9dee-457d-94de-a2920a0a2bb0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9ad4b3bb-9dee-457d-94de-a2920a0a2bb0.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

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

#s-aa10d92f-c5d0-494a-ad8c-e8e7944dd2ad {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
}

@media (min-width: 0px) {
[id="s-aa10d92f-c5d0-494a-ad8c-e8e7944dd2ad"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-aa10d92f-c5d0-494a-ad8c-e8e7944dd2ad"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-aa10d92f-c5d0-494a-ad8c-e8e7944dd2ad"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-aa10d92f-c5d0-494a-ad8c-e8e7944dd2ad"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-7697ba4f-a07b-417f-ba94-8f9451ec14c9 {
  text-align: center;
}







  #s-7697ba4f-a07b-417f-ba94-8f9451ec14c9 img.shogun-image {
    

    
    
    
  }


#s-7697ba4f-a07b-417f-ba94-8f9451ec14c9 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-ca6fec6c-658d-4251-8a8c-d5339730a6d6 {
  text-align: center;
}







  #s-ca6fec6c-658d-4251-8a8c-d5339730a6d6 img.shogun-image {
    

    
    
    
  }


#s-ca6fec6c-658d-4251-8a8c-d5339730a6d6 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-0373d94d-c28e-4366-9312-f29f69e96578 {
  text-align: center;
}







  #s-0373d94d-c28e-4366-9312-f29f69e96578 img.shogun-image {
    

    
    
    
  }


#s-0373d94d-c28e-4366-9312-f29f69e96578 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-422bb9e1-f107-4bde-b3f5-e1c4124125e0 {
  background-repeat: no-repeat;
background-size: cover;
padding-top: 90px;
padding-bottom: 160px;
min-height: 50px;
background-position: center center;
}

#s-422bb9e1-f107-4bde-b3f5-e1c4124125e0 {
  background-image: url(https://i.shgcdn.com/9084d624-a9ad-4214-bd68-324e325b1a9d/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-422bb9e1-f107-4bde-b3f5-e1c4124125e0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-422bb9e1-f107-4bde-b3f5-e1c4124125e0.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-215feb5d-42c8-4879-9cea-33195108f88d {
  min-height: 50px;
}








#s-215feb5d-42c8-4879-9cea-33195108f88d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-215feb5d-42c8-4879-9cea-33195108f88d.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

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

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

#s-cd9c1e4f-96e6-4a47-95e6-2a1d60dd706b {
  margin-top: 20px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-cd9c1e4f-96e6-4a47-95e6-2a1d60dd706b .shg-product-title-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: Lato;
  font-style:   ;
  font-size: 44px;
  line-height: ;
  letter-spacing: ;
}

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

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

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

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

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

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

.shg-default-text-content h1,
.shg-default-text-content h2,
.shg-default-text-content h3,
.shg-default-text-content h4,
.shg-default-text-content h5,
.shg-default-text-content h6 {
  color: ;
  font-family: ;
  font-weight: ;
}

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

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

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

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

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

.shg-default-text-content p {
  font-size: 1em;
  font-weight: ;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0.6em;
  color: ;
  font-family: ;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-theme-text-content h1,
.shg-theme-text-content h2,
.shg-theme-text-content h3,
.shg-theme-text-content h4,
.shg-theme-text-content h5,
.shg-theme-text-content h6 {
  color: ;
  font-family: ;
  font-weight: ;
}

.shg-theme-text-content p {
  color: ;
  font-family: ;
  font-weight: ;
}

#s-5762ce85-bf46-4074-a610-507b9dd40e91 {
  margin-top: 0px;
margin-bottom: 0px;
}

#s-bc39792a-6fa3-4aea-b810-0181309d6bfb {
  text-align: center;
}

#s-bc39792a-6fa3-4aea-b810-0181309d6bfb .shg-product-sold-out {
  display: none;
  color: rgba(253, 203, 57, 1);
  font-size: 40px;
  font-weight:   ;
  font-family: Lato;
  font-style:  normal ;
}

#s-bc39792a-6fa3-4aea-b810-0181309d6bfb .shg-product-price {
  color: rgba(253, 203, 57, 1);
  font-weight:   ;
  font-family: Lato;
  font-style:  normal ;
  font-size: 40px;
}

#s-bc39792a-6fa3-4aea-b810-0181309d6bfb .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

.shg-btn-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.shg-variant-btn {
  cursor: pointer;
  box-sizing: border-box;
  display: inline-block;
  text-decoration: none;
  letter-spacing: normal;
}

.shg-variant-btn.hidden {
  display: none;
}

.shg-variant-btn.disabled {
  cursor: not-allowed;
}

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

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

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

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

#s-47388c83-1596-4769-a624-a04c12b5721c {
  max-width: 200px;
text-align: center;
}

#s-47388c83-1596-4769-a624-a04c12b5721c .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-47388c83-1596-4769-a624-a04c12b5721c .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-47388c83-1596-4769-a624-a04c12b5721c .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-47388c83-1596-4769-a624-a04c12b5721c .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-47388c83-1596-4769-a624-a04c12b5721c .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-47388c83-1596-4769-a624-a04c12b5721c .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-47388c83-1596-4769-a624-a04c12b5721c .shg-product-swatch.not-available {
  cursor: not-allowed;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='none' viewBox='0 0 100 100'><path d='M100 0 L0 100 ' stroke='black' stroke-width='2'/></svg>");
  background-repeat:no-repeat;
  background-position:center center;
  background-size: 100% 100%, auto;
}

#s-47388c83-1596-4769-a624-a04c12b5721c .shg-product-swatch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid hsla(230, 13%, 23%, 0.1);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  transition: 0.2s;
}

#s-47388c83-1596-4769-a624-a04c12b5721c .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-47388c83-1596-4769-a624-a04c12b5721c .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-47388c83-1596-4769-a624-a04c12b5721c .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}


  #s-47388c83-1596-4769-a624-a04c12b5721c .shg-product-selector-wrapper label {
    color: rgba(255, 255, 255, 1);
    font-weight:   ;
    font-family: ;
    font-style:  normal ;
    font-size: ;
  }

  
    #s-47388c83-1596-4769-a624-a04c12b5721c .shg-product-selector-wrapper label:after {
      display: block;
      content: ' ';
      margin-bottom: ;
    }
  




  #s-47388c83-1596-4769-a624-a04c12b5721c-btn-wrapper {
    text-align: center;
  }


#s-47388c83-1596-4769-a624-a04c12b5721c .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-47388c83-1596-4769-a624-a04c12b5721c .shg-variant-btn:hover {
  background: #252525;
}

#s-47388c83-1596-4769-a624-a04c12b5721c .shg-variant-btn:active, #s-47388c83-1596-4769-a624-a04c12b5721c .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-47388c83-1596-4769-a624-a04c12b5721c .shg-variant-btn.disabled {
  background: #252525;
}

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

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

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

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

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

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

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

#s-ddf3255f-306f-4a2a-b511-93b1bcacc01f {
  margin-bottom: 25px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 4px;
max-width: 188px;
text-align: center;
background-color: rgba(253, 203, 57, 1);
}
#s-ddf3255f-306f-4a2a-b511-93b1bcacc01f:hover {background-color: #3cb0fd !important;
text-decoration: none !important;}#s-ddf3255f-306f-4a2a-b511-93b1bcacc01f:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-ddf3255f-306f-4a2a-b511-93b1bcacc01f {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-ddf3255f-306f-4a2a-b511-93b1bcacc01f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-ddf3255f-306f-4a2a-b511-93b1bcacc01f.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Lato;
  display:  block ;
}

#s-ddf3255f-306f-4a2a-b511-93b1bcacc01f.shg-btn.shg-product-atc-error {
  
  font-family: Lato;
  
  
  
}



#s-e4535611-48f1-4742-a558-c50b458fccae {
  padding-top: 50px;
padding-bottom: 50px;
min-height: 50px;
background-color: rgba(253, 203, 57, 1);
}








#s-e4535611-48f1-4742-a558-c50b458fccae > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e4535611-48f1-4742-a558-c50b458fccae.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

@media (min-width: 0px) {
[id="s-837cceb7-72d1-4507-9e84-f01ba6cce5ad"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-837cceb7-72d1-4507-9e84-f01ba6cce5ad"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-837cceb7-72d1-4507-9e84-f01ba6cce5ad"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-837cceb7-72d1-4507-9e84-f01ba6cce5ad"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.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: ;
  font-family: ;
}

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

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

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

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

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

#s-0ab96349-5d74-4e7a-b04d-a4578f30b8af {
  margin-bottom: 12px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 0px;
text-align: left;
background-color: rgba(0, 0, 0, 1);
text-decoration: none;
}
#s-0ab96349-5d74-4e7a-b04d-a4578f30b8af:hover {background-color: rgba(210, 59, 52, 1) !important;
text-decoration: none !important;}#s-0ab96349-5d74-4e7a-b04d-a4578f30b8af:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-0ab96349-5d74-4e7a-b04d-a4578f30b8af-root {
    text-align: left;
  }


#s-0ab96349-5d74-4e7a-b04d-a4578f30b8af.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Lato;
  display:  block ;
}
@media (min-width: 1200px){
  #s-0ab96349-5d74-4e7a-b04d-a4578f30b8af-root {
    text-align: left;
  }


#s-0ab96349-5d74-4e7a-b04d-a4578f30b8af.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Lato;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-0ab96349-5d74-4e7a-b04d-a4578f30b8af-root {
    text-align: left;
  }


#s-0ab96349-5d74-4e7a-b04d-a4578f30b8af.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Lato;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-0ab96349-5d74-4e7a-b04d-a4578f30b8af-root {
    text-align: left;
  }


#s-0ab96349-5d74-4e7a-b04d-a4578f30b8af.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Lato;
  display:  block ;
}
}@media (max-width: 767px){
  #s-0ab96349-5d74-4e7a-b04d-a4578f30b8af-root {
    text-align: left;
  }


#s-0ab96349-5d74-4e7a-b04d-a4578f30b8af.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Lato;
  display:  block ;
}
}
#s-be8ad32d-0912-4b83-a3ac-b3ae4d1b80bb {
  margin-bottom: 12px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 0px;
text-align: left;
background-color: rgba(0, 0, 0, 1);
text-decoration: none;
}
#s-be8ad32d-0912-4b83-a3ac-b3ae4d1b80bb:hover {background-color: rgba(210, 59, 52, 1) !important;
text-decoration: none !important;}#s-be8ad32d-0912-4b83-a3ac-b3ae4d1b80bb:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-be8ad32d-0912-4b83-a3ac-b3ae4d1b80bb-root {
    text-align: left;
  }


#s-be8ad32d-0912-4b83-a3ac-b3ae4d1b80bb.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Lato;
  display:  block ;
}
@media (min-width: 1200px){
  #s-be8ad32d-0912-4b83-a3ac-b3ae4d1b80bb-root {
    text-align: left;
  }


#s-be8ad32d-0912-4b83-a3ac-b3ae4d1b80bb.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Lato;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-be8ad32d-0912-4b83-a3ac-b3ae4d1b80bb-root {
    text-align: left;
  }


#s-be8ad32d-0912-4b83-a3ac-b3ae4d1b80bb.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Lato;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-be8ad32d-0912-4b83-a3ac-b3ae4d1b80bb-root {
    text-align: left;
  }


#s-be8ad32d-0912-4b83-a3ac-b3ae4d1b80bb.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Lato;
  display:  block ;
}
}@media (max-width: 767px){
  #s-be8ad32d-0912-4b83-a3ac-b3ae4d1b80bb-root {
    text-align: left;
  }


#s-be8ad32d-0912-4b83-a3ac-b3ae4d1b80bb.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Lato;
  display:  block ;
}
}
#s-1f426e6e-91d0-4f50-97d3-8bf3e812a428 {
  margin-bottom: 12px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 0px;
text-align: left;
background-color: rgba(0, 0, 0, 1);
text-decoration: none;
}
#s-1f426e6e-91d0-4f50-97d3-8bf3e812a428:hover {background-color: rgba(210, 59, 52, 1) !important;
text-decoration: none !important;}#s-1f426e6e-91d0-4f50-97d3-8bf3e812a428:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-1f426e6e-91d0-4f50-97d3-8bf3e812a428-root {
    text-align: left;
  }


#s-1f426e6e-91d0-4f50-97d3-8bf3e812a428.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Lato;
  display:  block ;
}
@media (min-width: 1200px){
  #s-1f426e6e-91d0-4f50-97d3-8bf3e812a428-root {
    text-align: left;
  }


#s-1f426e6e-91d0-4f50-97d3-8bf3e812a428.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Lato;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-1f426e6e-91d0-4f50-97d3-8bf3e812a428-root {
    text-align: left;
  }


#s-1f426e6e-91d0-4f50-97d3-8bf3e812a428.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Lato;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-1f426e6e-91d0-4f50-97d3-8bf3e812a428-root {
    text-align: left;
  }


#s-1f426e6e-91d0-4f50-97d3-8bf3e812a428.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Lato;
  display:  block ;
}
}@media (max-width: 767px){
  #s-1f426e6e-91d0-4f50-97d3-8bf3e812a428-root {
    text-align: left;
  }


#s-1f426e6e-91d0-4f50-97d3-8bf3e812a428.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Lato;
  display:  block ;
}
}
#s-dbc65b30-83b6-49b1-b9c0-503695fcf9a0 {
  margin-bottom: 0px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 0px;
text-align: left;
background-color: rgba(0, 0, 0, 1);
text-decoration: none;
}
#s-dbc65b30-83b6-49b1-b9c0-503695fcf9a0:hover {background-color: rgba(210, 59, 52, 1) !important;
text-decoration: none !important;}#s-dbc65b30-83b6-49b1-b9c0-503695fcf9a0:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-dbc65b30-83b6-49b1-b9c0-503695fcf9a0-root {
    text-align: left;
  }


#s-dbc65b30-83b6-49b1-b9c0-503695fcf9a0.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Lato;
  display:  block ;
}
@media (min-width: 1200px){
  #s-dbc65b30-83b6-49b1-b9c0-503695fcf9a0-root {
    text-align: left;
  }


#s-dbc65b30-83b6-49b1-b9c0-503695fcf9a0.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Lato;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-dbc65b30-83b6-49b1-b9c0-503695fcf9a0-root {
    text-align: left;
  }


#s-dbc65b30-83b6-49b1-b9c0-503695fcf9a0.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Lato;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-dbc65b30-83b6-49b1-b9c0-503695fcf9a0-root {
    text-align: left;
  }


#s-dbc65b30-83b6-49b1-b9c0-503695fcf9a0.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Lato;
  display:  block ;
}
}@media (max-width: 767px){
  #s-dbc65b30-83b6-49b1-b9c0-503695fcf9a0-root {
    text-align: left;
  }


#s-dbc65b30-83b6-49b1-b9c0-503695fcf9a0.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Lato;
  display:  block ;
}
}
.shogun-tabs {
  margin: 0 !important;
  list-style: none !important;
  padding: 0 0 0 0;
  overflow: visible;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.shogun-tabs.shogun-modern {
  padding-left: 10px;
  padding-right: 5px;
  overflow: hidden;
  transform: translate(0px, 0px);
}

.shogun-tabs li {
  text-decoration: none;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
}

.shogun-tabs.shogun-modern li {
  width: 200px;
  height: 45px;
  margin: 0 5px 0 0;
}

.shogun-tabs.shogun-rounded li {
  margin-bottom: 0;
  float: left;
  box-sizing: border-box;
  margin-right: 2px;
  line-height: 1.42857143;
  position: relative;
  display: block;
  overflow: visible;
}

.shogun-tabs.shogun-rounded li .shogun-tab-box {
  padding: 10px 15px !important;
  border-radius: 4px 4px 0 0;
}

.shogun-tabs.shogun-modern li .shogun-tab-box {
  padding: 12px 5px !important;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .shogun-tabs.shogun-rounded li .shogun-tab-box {
    padding: 10px 5px !important;
    text-align: center;
  }

  .shogun-tabs.shogun-modern li .shogun-tab-box {
    padding: 12px 15px !important;
  }
}

.shogun-tabs.shogun-rounded .shogun-tab-box {
  border-bottom: none !important;
}

.shogun-tabs.shogun-modern li.active {
  z-index: 40;
}

.shogun-tabs.shogun-modern li .shogun-tab-box::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: -1;
  outline: 1px solid transparent;
  border-radius: 4px 4px 0 0;
  content: "";
  transform: perspective(100px) rotateX(30deg);
  -webkit-transform: perspective(100px) rotateX(30deg);
}

.shogun-tabs.shogun-modern li.shogun-tab-active .shogun-tab-box::after {
  border-bottom: none !important;
  height: 46px;
}

.shogun-tabs-body {
  padding-top: 10px;
}

.shogun-tabs-body.shogun-rounded {
  margin-top: 0px !important;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.shogun-tabs-body > .shogun-tab-content {
  display: none;
}

.shogun-tabs-body > .shogun-tab-content.shogun-tab-active {
  -webkit-animation: fadeIn 0.5s;
  animation: fadeIn 0.5s;
  display: block;
}

.shogun-tab-border {
  position: absolute;
}

.shogun-tab-title {
  white-space: nowrap;
  text-align: center;

  display: inline-block;
  width: 100%;
}

.shogun-tabs.shogun-modern .shogun-tab-title {
  /** Hack for Safari weird bug */
  /* https://stackoverflow.com/questions/18146511/bug-in-css3-rotatey-transition-on-safari */
  transform: translateZ(1000px);
}

#s-4c3fd1fe-6009-4cd8-8503-34aa71db0aa2 .shogun-tabs > li > .shogun-tab-box {
    background: none;
    border: none;
  }
  #s-4c3fd1fe-6009-4cd8-8503-34aa71db0aa2 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: none;
    border: none;
  }
  #s-4c3fd1fe-6009-4cd8-8503-34aa71db0aa2 .shogun-tabs > li > .shogun-tab-box::after {
    background: rgba(0, 0, 0, 1);
    border: 1px solid rgba(0, 0, 0, 1);
  }
  #s-4c3fd1fe-6009-4cd8-8503-34aa71db0aa2 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box::after  {
    background: rgba(253, 203, 57, 1);
    border: 1px solid rgba(253, 203, 57, 1);
  }
#s-4c3fd1fe-6009-4cd8-8503-34aa71db0aa2 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(255, 255, 255, 1);
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-4c3fd1fe-6009-4cd8-8503-34aa71db0aa2 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(0, 0, 0, 1);
}

#s-4c3fd1fe-6009-4cd8-8503-34aa71db0aa2 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(253, 203, 57, 1);
}

#s-4c3fd1fe-6009-4cd8-8503-34aa71db0aa2 .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid rgba(253, 203, 57, 1);
}

.shogun-table-wrapper {
  overflow: auto;
}

table.shogun-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  border-style: hidden;
}

thead.shogun-table-column-container {
  font-weight: bold;
}

td.shogun-table-column {
  padding: 10px;
}

td.shogun-table-row {
  padding: 10px;
  min-height: 45px;
}

td.shogun-table-column:only-child, td.shogun-table-row:only-child {
  width: 100%;
}

#s-f260ae2f-c786-4ac2-8fdb-135fb0f759e9 .shogun-table-wrapper {
  overflow: auto;
  border: 1px solid rgba(0, 0, 0, 1);
  border-radius: 0px;
}

#s-f260ae2f-c786-4ac2-8fdb-135fb0f759e9 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-f260ae2f-c786-4ac2-8fdb-135fb0f759e9 td.shogun-table-column {
  background-color: rgba(253, 203, 57, 1);
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-f260ae2f-c786-4ac2-8fdb-135fb0f759e9 td.shogun-table-row {
  background-color: rgba(253, 203, 57, 1);
  padding: 10px;
}

#s-f260ae2f-c786-4ac2-8fdb-135fb0f759e9 td.shogun-table-column, #s-f260ae2f-c786-4ac2-8fdb-135fb0f759e9 td.shogun-table-row {
  border: 1px solid rgba(0, 0, 0, 1);
}

#s-f9759497-7734-46d5-bbdc-10a24cf2571f .shogun-table-wrapper {
  overflow: auto;
  border: 1px solid rgba(0, 0, 0, 1);
  border-radius: 0px;
}

#s-f9759497-7734-46d5-bbdc-10a24cf2571f table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-f9759497-7734-46d5-bbdc-10a24cf2571f td.shogun-table-column {
  background-color: rgba(253, 203, 57, 1);
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-f9759497-7734-46d5-bbdc-10a24cf2571f td.shogun-table-row {
  background-color: rgba(253, 203, 57, 1);
  padding: 10px;
}

#s-f9759497-7734-46d5-bbdc-10a24cf2571f td.shogun-table-column, #s-f9759497-7734-46d5-bbdc-10a24cf2571f td.shogun-table-row {
  border: 1px solid rgba(0, 0, 0, 1);
}

#s-387b2ba4-4df0-4d97-aa70-ae660f812b8c {
  margin-top: 0px;
}

#s-a75cce1a-cf5f-40f2-8526-5d121c9f3c56 {
  min-height: 50px;
background-color: rgba(240, 240, 240, 1);
}








#s-a75cce1a-cf5f-40f2-8526-5d121c9f3c56 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a75cce1a-cf5f-40f2-8526-5d121c9f3c56.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-21442e33-3653-4aa3-bcb3-88cde13ed608 {
  text-align: center;
}







  #s-21442e33-3653-4aa3-bcb3-88cde13ed608 img.shogun-image {
    

    
    
    
  }


#s-21442e33-3653-4aa3-bcb3-88cde13ed608 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-baad0b08-ad50-4e59-ab83-b1452074cffc {
  padding-top: 50px;
padding-bottom: 50px;
min-height: 50px;
background-color: rgba(240, 240, 240, 1);
}








#s-baad0b08-ad50-4e59-ab83-b1452074cffc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-baad0b08-ad50-4e59-ab83-b1452074cffc.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

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

.shogun-heading-component a {
  text-decoration: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

#s-dd65bb38-e3ba-48a1-83fb-7677ced1909c {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-dd65bb38-e3ba-48a1-83fb-7677ced1909c .shogun-heading-component h1 {
  color: rgba(79, 79, 79, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 45px;
  
  
  
}



#s-1e09f20f-da00-4de6-8b43-2a0a3f956862 {
  margin-top: -20px;
margin-bottom: -20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-1e09f20f-da00-4de6-8b43-2a0a3f956862 .shogun-heading-component h2 {
  color: rgba(253, 203, 57, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 37px;
  
  
  
}



#s-2ae7b643-f1d9-4568-bb87-842e0fa1d75f {
  text-align: center;
}







  #s-2ae7b643-f1d9-4568-bb87-842e0fa1d75f img.shogun-image {
    

    
    
    
  }


#s-2ae7b643-f1d9-4568-bb87-842e0fa1d75f .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-36e6feca-29e0-4ea5-8fa0-938a65c83a5b {
  background-repeat: no-repeat;
background-size: cover;
min-height: 50px;
background-position: center center;
}








#s-36e6feca-29e0-4ea5-8fa0-938a65c83a5b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-36e6feca-29e0-4ea5-8fa0-938a65c83a5b.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-d5624a92-0f79-45c5-b580-7ea6765c79e7 {
  text-align: center;
}







  #s-d5624a92-0f79-45c5-b580-7ea6765c79e7 img.shogun-image {
    

    
    
    
  }


#s-d5624a92-0f79-45c5-b580-7ea6765c79e7 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-d6de59ac-2e4b-4f72-b9b1-8f73d459209d {
  padding-top: 50px;
padding-bottom: 70px;
}

@media (min-width: 0px) {
[id="s-d6de59ac-2e4b-4f72-b9b1-8f73d459209d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d6de59ac-2e4b-4f72-b9b1-8f73d459209d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d6de59ac-2e4b-4f72-b9b1-8f73d459209d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d6de59ac-2e4b-4f72-b9b1-8f73d459209d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-89508b10-c6d5-4c68-8286-6122499e1fd9 {
  margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: right;
}

#s-89508b10-c6d5-4c68-8286-6122499e1fd9 .shogun-heading-component h1 {
  color: rgba(240, 240, 240, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 70px;
  
  
  
}



#s-7fa256d3-fc3b-43cd-bc72-e0ff25525302 {
  text-align: right;
}







  #s-7fa256d3-fc3b-43cd-bc72-e0ff25525302 img.shogun-image {
    

    
    
    
  }


#s-7fa256d3-fc3b-43cd-bc72-e0ff25525302 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-adb3f1fb-9bb2-4bac-a962-8dd505ab19bc {
  padding-top: 60px;
padding-bottom: 60px;
min-height: 50px;
background-color: rgba(240, 240, 240, 1);
}








#s-adb3f1fb-9bb2-4bac-a962-8dd505ab19bc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-adb3f1fb-9bb2-4bac-a962-8dd505ab19bc.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-2d1d7e07-e4fb-4b2d-af9c-22c6bb349e51 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-2d1d7e07-e4fb-4b2d-af9c-22c6bb349e51 .shogun-heading-component h1 {
  color: rgba(253, 203, 57, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 56px;
  
  
  
}



#s-123592f5-6568-4b13-8077-cbb4032915b3 {
  margin-top: -20px;
margin-bottom: -20px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-226199ff-b66e-42a3-985e-d95a2395dd73 {
  margin-top: 0px;
margin-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-226199ff-b66e-42a3-985e-d95a2395dd73"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-226199ff-b66e-42a3-985e-d95a2395dd73"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-226199ff-b66e-42a3-985e-d95a2395dd73"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-226199ff-b66e-42a3-985e-d95a2395dd73"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-a0563d19-038e-4764-b431-1cb7c898a5d4 {
  text-align: center;
}







  #s-a0563d19-038e-4764-b431-1cb7c898a5d4 img.shogun-image {
    

    
    
    
  }


#s-a0563d19-038e-4764-b431-1cb7c898a5d4 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-77dd6ffe-955c-401a-ae1b-af4e7a5b6533 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 50px;
background-position: center center;
}








#s-77dd6ffe-955c-401a-ae1b-af4e7a5b6533 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-77dd6ffe-955c-401a-ae1b-af4e7a5b6533.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-098b2d87-9293-491e-a744-2088d5d9b8cb {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-098b2d87-9293-491e-a744-2088d5d9b8cb .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  900 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}



#s-59ca460d-9053-4be9-b1c1-86fad55a7d30 {
  min-height: 50px;
background-color: rgba(240, 240, 240, 1);
}








#s-59ca460d-9053-4be9-b1c1-86fad55a7d30 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-59ca460d-9053-4be9-b1c1-86fad55a7d30.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-0d0ff4e7-6df9-4cf8-b786-c63f08016f85 {
  margin-top: 25px;
margin-bottom: 50px;
}

@media (min-width: 0px) {
[id="s-0d0ff4e7-6df9-4cf8-b786-c63f08016f85"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0d0ff4e7-6df9-4cf8-b786-c63f08016f85"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-0d0ff4e7-6df9-4cf8-b786-c63f08016f85"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-0d0ff4e7-6df9-4cf8-b786-c63f08016f85"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-0d0ff4e7-6df9-4cf8-b786-c63f08016f85"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-0d0ff4e7-6df9-4cf8-b786-c63f08016f85"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-0d0ff4e7-6df9-4cf8-b786-c63f08016f85"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

#s-a0312ef3-fc01-4315-84fe-98152e07168a {
  background-repeat: no-repeat;
background-size: cover;
min-height: 50px;
background-position: center center;
}








#s-a0312ef3-fc01-4315-84fe-98152e07168a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a0312ef3-fc01-4315-84fe-98152e07168a.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-cda61bf6-f7e7-4494-b17b-6221c0d9b69d {
  text-align: center;
}







  #s-cda61bf6-f7e7-4494-b17b-6221c0d9b69d img.shogun-image {
    

    
    
    
  }


#s-cda61bf6-f7e7-4494-b17b-6221c0d9b69d .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-001d8810-aa3c-4421-b6e5-651698fab662 {
  padding-top: 50px;
padding-bottom: 70px;
}

@media (min-width: 0px) {
[id="s-001d8810-aa3c-4421-b6e5-651698fab662"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-001d8810-aa3c-4421-b6e5-651698fab662"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-001d8810-aa3c-4421-b6e5-651698fab662"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-001d8810-aa3c-4421-b6e5-651698fab662"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-01a50ab0-0fee-4d16-99e1-df4249a08c96 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-01a50ab0-0fee-4d16-99e1-df4249a08c96 .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 70px;
  
  
  
}



#s-6d8b4945-e7eb-4375-949b-0b3ab59dcc9e {
  text-align: left;
}







  #s-6d8b4945-e7eb-4375-949b-0b3ab59dcc9e img.shogun-image {
    

    
    
    
  }


#s-6d8b4945-e7eb-4375-949b-0b3ab59dcc9e .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-88ad8227-fc64-4597-aae9-d970aa1a6d88 {
  padding-top: 60px;
padding-bottom: 60px;
min-height: 50px;
background-color: rgba(240, 240, 240, 1);
}








#s-88ad8227-fc64-4597-aae9-d970aa1a6d88 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-88ad8227-fc64-4597-aae9-d970aa1a6d88.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-fbf8cc34-bedd-45ba-97d7-5bb4fb758fab {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-fbf8cc34-bedd-45ba-97d7-5bb4fb758fab .shogun-heading-component h1 {
  color: rgba(79, 79, 79, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 56px;
  
  
  
}



#s-ec798e72-4609-4278-a1a3-e1e4c51e24ff {
  margin-top: -20px;
margin-bottom: -20px;
}

@media (min-width: 0px) {
[id="s-654be187-2627-4777-b461-1d5361fbf023"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-654be187-2627-4777-b461-1d5361fbf023"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-654be187-2627-4777-b461-1d5361fbf023"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-654be187-2627-4777-b461-1d5361fbf023"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-e5e2d91d-088d-4db8-a839-b919b9f9e3d0 {
  text-align: center;
}







  #s-e5e2d91d-088d-4db8-a839-b919b9f9e3d0 img.shogun-image {
    

    
    
    
  }


#s-e5e2d91d-088d-4db8-a839-b919b9f9e3d0 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-4c774dfb-15f2-4305-b0a4-074dfc6c44fd {
  background-repeat: no-repeat;
background-size: cover;
min-height: 50px;
background-position: 0px center;
}








#s-4c774dfb-15f2-4305-b0a4-074dfc6c44fd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4c774dfb-15f2-4305-b0a4-074dfc6c44fd.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-62f74567-617e-468e-a0a4-b4646ba083dc {
  text-align: center;
}







  #s-62f74567-617e-468e-a0a4-b4646ba083dc img.shogun-image {
    

    
    
    
  }


#s-62f74567-617e-468e-a0a4-b4646ba083dc .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-f1a288af-55e9-44a0-82d4-e4f69cf5ef7b {
  padding-top: 50px;
padding-bottom: 70px;
}

@media (min-width: 0px) {
[id="s-f1a288af-55e9-44a0-82d4-e4f69cf5ef7b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f1a288af-55e9-44a0-82d4-e4f69cf5ef7b"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-f1a288af-55e9-44a0-82d4-e4f69cf5ef7b"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f1a288af-55e9-44a0-82d4-e4f69cf5ef7b"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-f1a288af-55e9-44a0-82d4-e4f69cf5ef7b"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f1a288af-55e9-44a0-82d4-e4f69cf5ef7b"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-f1a288af-55e9-44a0-82d4-e4f69cf5ef7b"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

}

#s-88327427-4a50-40f3-be36-e324deae5efb {
  padding-top: 10px;
padding-bottom: 10px;
text-align: right;
}

#s-88327427-4a50-40f3-be36-e324deae5efb .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 60px;
  
  
  
}



#s-bf9d798c-6a81-484b-8786-fc9a1b247380 {
  text-align: right;
}







  #s-bf9d798c-6a81-484b-8786-fc9a1b247380 img.shogun-image {
    

    
    
    
  }


#s-bf9d798c-6a81-484b-8786-fc9a1b247380 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-2a5ab7d7-009c-4949-92a8-70fb482997cd {
  background-repeat: no-repeat;
background-size: cover;
min-height: 50px;
background-position: center center;
}








#s-2a5ab7d7-009c-4949-92a8-70fb482997cd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2a5ab7d7-009c-4949-92a8-70fb482997cd.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-66a9cd68-9bbe-41be-aca9-0952a19c9b6f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-66a9cd68-9bbe-41be-aca9-0952a19c9b6f .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  900 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}



#s-7c893764-8405-4688-bde3-560e49bb83c5 {
  padding-top: 60px;
padding-bottom: 60px;
min-height: 50px;
background-color: rgba(240, 240, 240, 1);
}








#s-7c893764-8405-4688-bde3-560e49bb83c5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7c893764-8405-4688-bde3-560e49bb83c5.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-6a9d3783-ab4d-4e14-ab06-86db5031e63e {
  margin-top: -30px;
margin-bottom: 50px;
}

@media (min-width: 0px) {
[id="s-6a9d3783-ab4d-4e14-ab06-86db5031e63e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6a9d3783-ab4d-4e14-ab06-86db5031e63e"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-6a9d3783-ab4d-4e14-ab06-86db5031e63e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-6a9d3783-ab4d-4e14-ab06-86db5031e63e"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-6a9d3783-ab4d-4e14-ab06-86db5031e63e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-6a9d3783-ab4d-4e14-ab06-86db5031e63e"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-6a9d3783-ab4d-4e14-ab06-86db5031e63e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

#s-abe0ed7d-ec74-43f6-b01c-9951dbead02d {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-abe0ed7d-ec74-43f6-b01c-9951dbead02d .shogun-heading-component h1 {
  color: rgba(71, 71, 71, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 44px;
  
  
  
}



#s-b5a67041-4800-4d62-aaed-cee1f48d453a {
  margin-top: -30px;
margin-bottom: -30px;
}

@media (min-width: 0px) {
[id="s-39635099-4413-4589-9317-df047356fd5e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-39635099-4413-4589-9317-df047356fd5e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-39635099-4413-4589-9317-df047356fd5e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-39635099-4413-4589-9317-df047356fd5e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-65aab1cb-4e11-4f49-b795-a27d054d7913 {
  margin-top: 0px;
text-align: center;
}







  #s-65aab1cb-4e11-4f49-b795-a27d054d7913 img.shogun-image {
    

    
    
    
  }


#s-65aab1cb-4e11-4f49-b795-a27d054d7913 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-ec9ebda5-0f68-4ae0-9ecc-1f9317a9f86d {
  margin-top: 50px;
margin-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-ec9ebda5-0f68-4ae0-9ecc-1f9317a9f86d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ec9ebda5-0f68-4ae0-9ecc-1f9317a9f86d"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-ec9ebda5-0f68-4ae0-9ecc-1f9317a9f86d"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-ec9ebda5-0f68-4ae0-9ecc-1f9317a9f86d"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-ec9ebda5-0f68-4ae0-9ecc-1f9317a9f86d"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-ec9ebda5-0f68-4ae0-9ecc-1f9317a9f86d"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-ec9ebda5-0f68-4ae0-9ecc-1f9317a9f86d"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

#s-18ae9c7f-4f7a-4e44-a580-d897cd77d43b {
  
}

#s-241e33cf-a0bd-4aec-a8f3-f45f7d744111 {
  margin-top: 50px;
}

#s-67bc9dca-7be7-4645-ad42-7d423ade1985 {
  min-height: 50px;
}








#s-67bc9dca-7be7-4645-ad42-7d423ade1985 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-67bc9dca-7be7-4645-ad42-7d423ade1985.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-de6cb294-4b76-4fdb-b127-4a1c94f2dda0 {
  text-align: center;
}







  #s-de6cb294-4b76-4fdb-b127-4a1c94f2dda0 img.shogun-image {
    

    
    
    
  }


#s-de6cb294-4b76-4fdb-b127-4a1c94f2dda0 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-81c0dc05-e5fa-4bed-8c06-15a9bf191812 {
  background-size: cover;
min-height: 50px;
background-position: center center;
background-color: rgba(17, 17, 17, 1);
}








#s-81c0dc05-e5fa-4bed-8c06-15a9bf191812 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-81c0dc05-e5fa-4bed-8c06-15a9bf191812.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-5090e4ef-f9af-4adc-b9d9-9de7339d2e83 {
  text-align: center;
}







  #s-5090e4ef-f9af-4adc-b9d9-9de7339d2e83 img.shogun-image {
    

    
    
    
  }


#s-5090e4ef-f9af-4adc-b9d9-9de7339d2e83 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-734d5593-23b4-4362-966f-c8a9764bdecd {
  padding-top: 155px;
padding-bottom: 270px;
}
@media (min-width: 1200px){#s-734d5593-23b4-4362-966f-c8a9764bdecd {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-734d5593-23b4-4362-966f-c8a9764bdecd {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-734d5593-23b4-4362-966f-c8a9764bdecd {
  
}
}@media (max-width: 767px){#s-734d5593-23b4-4362-966f-c8a9764bdecd {
  
}
}
@media (min-width: 0px) {
[id="s-734d5593-23b4-4362-966f-c8a9764bdecd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-734d5593-23b4-4362-966f-c8a9764bdecd"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-734d5593-23b4-4362-966f-c8a9764bdecd"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-734d5593-23b4-4362-966f-c8a9764bdecd"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-734d5593-23b4-4362-966f-c8a9764bdecd"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-734d5593-23b4-4362-966f-c8a9764bdecd"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-734d5593-23b4-4362-966f-c8a9764bdecd"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

#s-41140698-bace-4772-9a05-4ade6f7a2c5d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-41140698-bace-4772-9a05-4ade6f7a2c5d .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 70px;
  
  
  
}



#s-8b853346-689c-41fd-aa29-d6da07fe6f05 {
  min-height: 50px;
}








#s-8b853346-689c-41fd-aa29-d6da07fe6f05 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8b853346-689c-41fd-aa29-d6da07fe6f05.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

/*
  $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;
}

@media (max-width: 1024px) {
  .shg-c,
  .shg-box {
    background-attachment: scroll !important;
  }
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape) {
  .shg-box {
    background-attachment: scroll !important;
  }
}

#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-lazyload-bg-image {
  display: none;
}

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

.shg-c:before,.shg-c:after{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width: 1024px){.shg-c,.shg-box{background-attachment:scroll !important}}@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape){.shg-box{background-attachment:scroll !important}}#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:#000;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-lazyload-bg-image{display:none}.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{display:inline-block}[data-animations*="enterviewport"][data-animations*="fadeIn"],[data-animations*="enterviewport"][data-animations*="zoomIn"]{opacity:0}.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}
