.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-02e77dd1-f6fa-4754-987b-9fa8cc92ce47 {
  margin-top: -67px;
text-align: center;
}








#s-02e77dd1-f6fa-4754-987b-9fa8cc92ce47 .shogun-image-content {
  
    align-items: center;
  
}

.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-caa8f8b0-7be5-45b3-9bb5-fd98ee26440a {
  min-height: 50px;
}








#s-caa8f8b0-7be5-45b3-9bb5-fd98ee26440a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-caa8f8b0-7be5-45b3-9bb5-fd98ee26440a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shogun-heading-component h1,
.shogun-heading-component h2,
.shogun-heading-component h3,
.shogun-heading-component h4,
.shogun-heading-component h5,
.shogun-heading-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  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-ab8129df-6ff4-4f9b-a083-df27767b9676 {
  padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
text-align: left;
}

#s-ab8129df-6ff4-4f9b-a083-df27767b9676 .shogun-heading-component h1 {
  color: rgba(17, 34, 60, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: left;
}



.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-35f378c4-c8b2-4480-960a-c01697b7cd86 {
  margin-left: 10px;
margin-right: 10px;
}

#s-54464d5d-5d52-43b5-a3c8-6a3566fb92f5 {
  box-shadow:0px 0px 0px 0px rgba(236, 232, 232, 1);
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(48, 48, 76, 1);
border-style: solid;
background-color: rgba(253, 249, 235, 1);
}

.shg-hr-wrapper {
  padding: 30px 0;
}

.shg-hr-wrapper hr {
  margin: 0;
  border: 0;
  width: 100%;
}

#s-5a241d42-e71e-45de-bdf2-78c1aedcefce hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

#s-f95c29a6-4bb1-4c68-96d7-11204bd27081 {
  padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
text-align: left;
}

#s-f95c29a6-4bb1-4c68-96d7-11204bd27081 .shogun-heading-component h2 {
  color: rgba(17, 34, 60, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: left;
}



#s-7d67accb-2d07-4e57-8ff6-57c3fb0d247b {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

#s-2dd7b951-9bc9-45dd-a448-d7899042197e {
  text-align: center;
}







  #s-2dd7b951-9bc9-45dd-a448-d7899042197e img.shogun-image {
    

    
    
    
  }


#s-2dd7b951-9bc9-45dd-a448-d7899042197e .shogun-image-content {
  
    align-items: center;
  
}

#s-abf561b8-8d48-4c2d-a4c7-03b83a05e9ea hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

#s-a7bc0ceb-2251-402d-824f-1adf7dc80d65 {
  box-shadow:0px 0px 0px 0px rgba(236, 232, 232, 1);
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(48, 48, 76, 1);
border-style: solid;
background-color: rgba(253, 249, 235, 1);
}

#s-3384dc51-6e0a-47c8-b7ce-df96bc780a5c {
  min-height: 50px;
}








#s-3384dc51-6e0a-47c8-b7ce-df96bc780a5c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3384dc51-6e0a-47c8-b7ce-df96bc780a5c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e057bf78-f626-496d-bb30-aab4181ece00 {
  padding-top: 10px;
padding-left: 5px;
padding-right: 5px;
}

#s-e057bf78-f626-496d-bb30-aab4181ece00 .shogun-heading-component h2 {
  color: rgba(17, 34, 60, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-a100c216-e649-4697-bfdc-a9400b1b34e4 {
  padding-left: 10px;
padding-right: 10px;
}

#s-9c14ce34-2fcd-4317-a012-de5655c0f6a7 {
  text-align: center;
}







  #s-9c14ce34-2fcd-4317-a012-de5655c0f6a7 img.shogun-image {
    

    
    
    
  }


#s-9c14ce34-2fcd-4317-a012-de5655c0f6a7 .shogun-image-content {
  
    align-items: center;
  
}

#s-2dfe22cd-31f2-460f-81a2-a75d7af577cf hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

#s-a4d199c7-385b-4c9b-8cc6-f9869c104d98 {
  box-shadow:0px 0px 0px 0px rgba(236, 232, 232, 1);
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(48, 48, 76, 1);
border-style: solid;
background-color: rgba(253, 249, 235, 1);
}

#s-1ad24b32-cd82-42cc-ad3d-b7b1a6c9f061 {
  min-height: 50px;
}








#s-1ad24b32-cd82-42cc-ad3d-b7b1a6c9f061 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1ad24b32-cd82-42cc-ad3d-b7b1a6c9f061.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-474a4038-b465-4423-a0d1-b3e03d389786 {
  padding-top: 20px;
padding-bottom: 10px;
text-align: left;
}

#s-474a4038-b465-4423-a0d1-b3e03d389786 .shogun-heading-component h3 {
  color: rgba(17, 34, 60, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: left;
}



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

.shg-category-grid {
  margin: -20px 0;
}

.shg-category-row,
.shg-category-row-hor {
  display: flex;
  margin: 20px 0;
}

.shg-category-col,
.shg-category-col-1 {
  flex: 1;
  padding: 0 10px;
}

.shg-category-col:last-child {
  padding-right: 0;
}

.shg-category-col:first-child {
  padding-left: 0;
}

.shg-category-col-2 {
  flex: 2;
  padding: 0 20px;
}

.shg-category-col-3 {
  flex: 3;
  padding: 0 30px;
}

.shg-category-col-4 {
  flex: 4;
  padding: 0 40px;
}

.shg-category-col-5 {
  flex: 5;
  padding: 0 50px;
}

@media (max-width: 768px) {
  .shg-category-row.stacked {
    display: block;
  }

  .shg-category-row .shg-category-col {
    padding: 20px 0;
  }

  .shg-category-row .shg-category-col:first-child {
    padding-top: 0;
  }

  .shg-category-row .shg-category-col:last-child {
    padding-bottom: 0;
  }
}

.shg-product-image-wrapper img.shogun-image,
.shogun-component img.shogun-image {
  display: inline-block;
  vertical-align: middle;
}

.shg-product-img-placeholder img {
  padding: 3rem;
  background: rgba(0, 0, 0, 0.1);
}

.shg-product-image-wrapper {
  display: none;
  position: relative;
  width: 100%;
}

.shg-product-image-wrapper.visible {
  display: inline-block;
}

.shg-product-image-wrapper .shg-product-image-wrapper a {
  text-decoration: none !important;
  border-bottom: 0 !important;
}

.shg-product-image-wrapper .shg-image-zoom {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  max-width: 100%;
  min-height: 100%;
}

.shg-c.shg-align-center .shg-image-zoom {
  margin: 0 auto;
}

.shg-c.shg-align-right .shg-image-zoom {
  margin-left: auto;
}

.shg-image-zoom .shg-image-zoom-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: transform 0.5s ease-out;
  transform: scale(1);
}

/**
  Fix for IE11, as min-width does not works there.
**/
@media screen\0 {
  .shg-product-image-wrapper > .shogun-image {
    width: 100%;
  }
}

#s-a3d806ba-9589-4435-908c-7012525675e8 {
  text-align: left;
}



.shg-c#s-a3d806ba-9589-4435-908c-7012525675e8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a3d806ba-9589-4435-908c-7012525675e8 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-a3d806ba-9589-4435-908c-7012525675e8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a3d806ba-9589-4435-908c-7012525675e8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a3d806ba-9589-4435-908c-7012525675e8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a3d806ba-9589-4435-908c-7012525675e8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a3d806ba-9589-4435-908c-7012525675e8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a3d806ba-9589-4435-908c-7012525675e8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a3d806ba-9589-4435-908c-7012525675e8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a3d806ba-9589-4435-908c-7012525675e8 img.shogun-image {
  width: 100%;
}



}
.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-0587a45a-34cc-4035-b65f-528083e8508b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0587a45a-34cc-4035-b65f-528083e8508b .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
}

#s-e8b72d61-abf0-4c44-b3c6-e2eb2a2a218a {
  text-align: center;
}

#s-e8b72d61-abf0-4c44-b3c6-e2eb2a2a218a .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-e8b72d61-abf0-4c44-b3c6-e2eb2a2a218a .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-e8b72d61-abf0-4c44-b3c6-e2eb2a2a218a .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-d888f0b5-f908-4bc5-9604-5995539bf47f {
  text-align: left;
}



.shg-c#s-d888f0b5-f908-4bc5-9604-5995539bf47f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d888f0b5-f908-4bc5-9604-5995539bf47f img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-d888f0b5-f908-4bc5-9604-5995539bf47f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d888f0b5-f908-4bc5-9604-5995539bf47f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d888f0b5-f908-4bc5-9604-5995539bf47f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d888f0b5-f908-4bc5-9604-5995539bf47f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d888f0b5-f908-4bc5-9604-5995539bf47f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d888f0b5-f908-4bc5-9604-5995539bf47f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d888f0b5-f908-4bc5-9604-5995539bf47f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d888f0b5-f908-4bc5-9604-5995539bf47f img.shogun-image {
  width: 100%;
}



}
#s-024adf66-e064-4fad-bd07-7b0ec94202b5 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-024adf66-e064-4fad-bd07-7b0ec94202b5 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
}

#s-da0bc9e1-ebe6-4412-8d54-0bf3c4cb11aa {
  text-align: center;
}

#s-da0bc9e1-ebe6-4412-8d54-0bf3c4cb11aa .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-da0bc9e1-ebe6-4412-8d54-0bf3c4cb11aa .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-da0bc9e1-ebe6-4412-8d54-0bf3c4cb11aa .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-4e3b7037-c46c-4de0-8f13-0bdd8b657643 {
  text-align: left;
}



.shg-c#s-4e3b7037-c46c-4de0-8f13-0bdd8b657643 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4e3b7037-c46c-4de0-8f13-0bdd8b657643 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-4e3b7037-c46c-4de0-8f13-0bdd8b657643 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4e3b7037-c46c-4de0-8f13-0bdd8b657643 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4e3b7037-c46c-4de0-8f13-0bdd8b657643 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4e3b7037-c46c-4de0-8f13-0bdd8b657643 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4e3b7037-c46c-4de0-8f13-0bdd8b657643 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4e3b7037-c46c-4de0-8f13-0bdd8b657643 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4e3b7037-c46c-4de0-8f13-0bdd8b657643 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4e3b7037-c46c-4de0-8f13-0bdd8b657643 img.shogun-image {
  width: 100%;
}



}
#s-071e3aab-bb35-462b-96ac-d8b82179a86c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-071e3aab-bb35-462b-96ac-d8b82179a86c .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
}

#s-b389869c-0b65-4b8f-806d-d8ecc122c4cd {
  text-align: center;
}

#s-b389869c-0b65-4b8f-806d-d8ecc122c4cd .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-b389869c-0b65-4b8f-806d-d8ecc122c4cd .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-b389869c-0b65-4b8f-806d-d8ecc122c4cd .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

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

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

.shg-btn-text {
  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-c5e2ee3f-a3c2-40a1-8eed-365cf48bfc66 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(219, 61, 62, 1);
text-align: center;
text-decoration: none;
hover-type: color;
}
#s-c5e2ee3f-a3c2-40a1-8eed-365cf48bfc66:hover {background-color: rgba(223, 217, 217, 1) !important;
text-decoration: none !important;
color: rgba(219, 61, 62, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-c5e2ee3f-a3c2-40a1-8eed-365cf48bfc66:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-c5e2ee3f-a3c2-40a1-8eed-365cf48bfc66-root {
    text-align: center;
  }


#s-c5e2ee3f-a3c2-40a1-8eed-365cf48bfc66.shg-btn {
  color: #ffffff;
  font-size: 21px;
  
  
  font-family: Open Sans Condensed;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c5e2ee3f-a3c2-40a1-8eed-365cf48bfc66-root {
    text-align: center;
  }


#s-c5e2ee3f-a3c2-40a1-8eed-365cf48bfc66.shg-btn {
  color: #ffffff;
  font-size: 21px;
  
  
  font-family: Open Sans Condensed;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c5e2ee3f-a3c2-40a1-8eed-365cf48bfc66-root {
    text-align: center;
  }


#s-c5e2ee3f-a3c2-40a1-8eed-365cf48bfc66.shg-btn {
  color: #ffffff;
  font-size: 21px;
  
  
  font-family: Open Sans Condensed;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c5e2ee3f-a3c2-40a1-8eed-365cf48bfc66-root {
    text-align: center;
  }


#s-c5e2ee3f-a3c2-40a1-8eed-365cf48bfc66.shg-btn {
  color: #ffffff;
  font-size: 21px;
  
  
  font-family: Open Sans Condensed;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c5e2ee3f-a3c2-40a1-8eed-365cf48bfc66-root {
    text-align: center;
  }


#s-c5e2ee3f-a3c2-40a1-8eed-365cf48bfc66.shg-btn {
  color: #ffffff;
  font-size: 21px;
  
  
  font-family: Open Sans Condensed;
  display:  inline-block ;
}
}
#s-d7707c33-a7c0-4e12-b677-03fc1711772f {
  min-height: 50px;
}








#s-d7707c33-a7c0-4e12-b677-03fc1711772f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d7707c33-a7c0-4e12-b677-03fc1711772f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-89c7c2de-48e3-44b1-987f-dc0266eabddd {
  padding-left: 5px;
padding-right: 5px;
}

#s-89c7c2de-48e3-44b1-987f-dc0266eabddd .shogun-heading-component h2 {
  color: rgba(17, 34, 60, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-a7e31525-b1e1-46a1-a0e5-7ba816ce7718 {
  padding-left: 10px;
padding-right: 10px;
}

#s-03f79238-009d-40f3-a02a-db42d1fd6e3d {
  text-align: center;
}







  #s-03f79238-009d-40f3-a02a-db42d1fd6e3d img.shogun-image {
    

    
    
    
  }


#s-03f79238-009d-40f3-a02a-db42d1fd6e3d .shogun-image-content {
  
    align-items: center;
  
}

#s-529b0323-6e3b-4a0c-9b64-9e3f8e10f232 {
  margin-left: 30px;
margin-right: 30px;
padding-top: 5px;
padding-left: 30px;
padding-bottom: 5px;
padding-right: 30px;
}

#s-ca85022a-62b6-431b-999d-0c5969930ae7 {
  min-height: 50px;
}








#s-ca85022a-62b6-431b-999d-0c5969930ae7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ca85022a-62b6-431b-999d-0c5969930ae7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3f586a83-87b0-4494-8d7e-6ec90d89ab02 {
  padding-top: 5px;
padding-left: 10px;
padding-bottom: 5px;
padding-right: 10px;
}

#s-7780c462-f27d-4ada-b75e-6db805d316b7 {
  padding-left: 5px;
padding-right: 5px;
}

#s-7780c462-f27d-4ada-b75e-6db805d316b7 .shogun-heading-component h2 {
  color: rgba(17, 34, 60, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-6b6b2552-db4e-4f8b-afbf-b85eb4c08dc9 {
  padding-left: 10px;
padding-right: 10px;
}

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

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

.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-b2b026a8-5459-4a3d-9503-315056dda1cf {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-b2b026a8-5459-4a3d-9503-315056dda1cf .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-b2b026a8-5459-4a3d-9503-315056dda1cf .shg-sld-nav-button.shg-sld-left,
#s-b2b026a8-5459-4a3d-9503-315056dda1cf .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-eba5c4d0-c8f9-420b-a763-7bcd38a40db2 {
  text-align: center;
}







  #s-eba5c4d0-c8f9-420b-a763-7bcd38a40db2 img.shogun-image {
    

    
    
    
  }


#s-eba5c4d0-c8f9-420b-a763-7bcd38a40db2 .shogun-image-content {
  
    align-items: center;
  
}

#s-f1a1e6e7-fc71-4111-98ee-7ef646b9f0f2 {
  text-align: center;
}







  #s-f1a1e6e7-fc71-4111-98ee-7ef646b9f0f2 img.shogun-image {
    

    
    
    
  }


#s-f1a1e6e7-fc71-4111-98ee-7ef646b9f0f2 .shogun-image-content {
  
    align-items: center;
  
}







  #s-4b6342e6-6753-4cae-ab65-2407ccc01526 img.shogun-image {
    

    
    
    
  }


#s-4b6342e6-6753-4cae-ab65-2407ccc01526 .shogun-image-content {
  
    align-items: center;
  
}

#s-e5193449-e8a8-4d17-a753-21cdbefdc406 {
  text-align: center;
}







  #s-e5193449-e8a8-4d17-a753-21cdbefdc406 img.shogun-image {
    

    
    
    
  }


#s-e5193449-e8a8-4d17-a753-21cdbefdc406 .shogun-image-content {
  
    align-items: center;
  
}

#s-e7abbbf5-97a6-4ce1-b42b-c1695c49eefd {
  padding-left: 20px;
padding-right: 20px;
}

#s-b3605dc1-915b-4a8e-9f7b-6e82147f9144 {
  padding-left: 20px;
padding-right: 20px;
}

#s-0608b264-51a9-4542-89a5-6f7cbada9d7c {
  padding-left: 20px;
padding-right: 20px;
}

#s-be289cc8-d877-4e0a-995a-5b4ebc416837 {
  padding-left: 40px;
padding-right: 40px;
}

#s-94ecbb76-8fde-4d3e-88c2-6c9ab29d706e {
  box-shadow:0px 0px 0px 0px rgba(236, 232, 232, 1);
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(48, 48, 76, 1);
border-style: solid;
background-color: rgba(253, 249, 235, 1);
}

#s-6d085f23-7832-4f04-9e05-d592248c8e49 {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

#s-11db0d5a-fc44-49c5-8efc-4ba0045402d1 {
  min-height: 50px;
}








#s-11db0d5a-fc44-49c5-8efc-4ba0045402d1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-11db0d5a-fc44-49c5-8efc-4ba0045402d1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ff374d8b-f7f1-40c8-93b5-700aea895cc8 {
  padding-left: 5px;
padding-right: 5px;
text-align: left;
}

#s-ff374d8b-f7f1-40c8-93b5-700aea895cc8 .shogun-heading-component h2 {
  color: rgba(17, 34, 60, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: left;
}



#s-8ceb39ce-a7cb-4ac9-b2e2-0364744b5ef9 {
  text-align: left;
}



.shg-c#s-8ceb39ce-a7cb-4ac9-b2e2-0364744b5ef9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8ceb39ce-a7cb-4ac9-b2e2-0364744b5ef9 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-8ceb39ce-a7cb-4ac9-b2e2-0364744b5ef9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8ceb39ce-a7cb-4ac9-b2e2-0364744b5ef9 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8ceb39ce-a7cb-4ac9-b2e2-0364744b5ef9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8ceb39ce-a7cb-4ac9-b2e2-0364744b5ef9 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8ceb39ce-a7cb-4ac9-b2e2-0364744b5ef9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8ceb39ce-a7cb-4ac9-b2e2-0364744b5ef9 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8ceb39ce-a7cb-4ac9-b2e2-0364744b5ef9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8ceb39ce-a7cb-4ac9-b2e2-0364744b5ef9 img.shogun-image {
  width: 100%;
}



}
#s-36112bcc-3393-496e-b19d-736e45d78629 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-36112bcc-3393-496e-b19d-736e45d78629 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
}

#s-31b1e1fb-572f-4e27-802b-5e949cc5f7e6 {
  text-align: center;
}

#s-31b1e1fb-572f-4e27-802b-5e949cc5f7e6 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-31b1e1fb-572f-4e27-802b-5e949cc5f7e6 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-31b1e1fb-572f-4e27-802b-5e949cc5f7e6 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-a98a36ad-3d25-4c26-9c9b-7c863c20b969 {
  text-align: left;
}



.shg-c#s-a98a36ad-3d25-4c26-9c9b-7c863c20b969 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a98a36ad-3d25-4c26-9c9b-7c863c20b969 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-a98a36ad-3d25-4c26-9c9b-7c863c20b969 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a98a36ad-3d25-4c26-9c9b-7c863c20b969 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a98a36ad-3d25-4c26-9c9b-7c863c20b969 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a98a36ad-3d25-4c26-9c9b-7c863c20b969 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a98a36ad-3d25-4c26-9c9b-7c863c20b969 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a98a36ad-3d25-4c26-9c9b-7c863c20b969 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a98a36ad-3d25-4c26-9c9b-7c863c20b969 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a98a36ad-3d25-4c26-9c9b-7c863c20b969 img.shogun-image {
  width: 100%;
}



}
#s-ecc920c7-5160-44c5-803b-9252dd359444 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ecc920c7-5160-44c5-803b-9252dd359444 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
}

#s-cc2d4e03-b0af-417f-b26d-0a02f93d4cc0 {
  text-align: center;
}

#s-cc2d4e03-b0af-417f-b26d-0a02f93d4cc0 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-cc2d4e03-b0af-417f-b26d-0a02f93d4cc0 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-cc2d4e03-b0af-417f-b26d-0a02f93d4cc0 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-ff3a1939-8458-4ae0-9edc-a011d8318a9b {
  text-align: left;
}



.shg-c#s-ff3a1939-8458-4ae0-9edc-a011d8318a9b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ff3a1939-8458-4ae0-9edc-a011d8318a9b img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-ff3a1939-8458-4ae0-9edc-a011d8318a9b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ff3a1939-8458-4ae0-9edc-a011d8318a9b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ff3a1939-8458-4ae0-9edc-a011d8318a9b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ff3a1939-8458-4ae0-9edc-a011d8318a9b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ff3a1939-8458-4ae0-9edc-a011d8318a9b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ff3a1939-8458-4ae0-9edc-a011d8318a9b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ff3a1939-8458-4ae0-9edc-a011d8318a9b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ff3a1939-8458-4ae0-9edc-a011d8318a9b img.shogun-image {
  width: 100%;
}



}
#s-99ee6b42-b246-4a2c-9005-040db64f07f4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-99ee6b42-b246-4a2c-9005-040db64f07f4 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
}

#s-5c480cc6-8091-470e-bacd-0dc9569640ac {
  text-align: center;
}

#s-5c480cc6-8091-470e-bacd-0dc9569640ac .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-5c480cc6-8091-470e-bacd-0dc9569640ac .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-5c480cc6-8091-470e-bacd-0dc9569640ac .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-4436f83b-ba6f-4b06-98af-9de362d05475 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(219, 61, 62, 1);
text-align: center;
text-decoration: none;
hover-type: color;
}
#s-4436f83b-ba6f-4b06-98af-9de362d05475:hover {background-color: rgba(223, 217, 217, 1) !important;
text-decoration: none !important;
color: rgba(219, 61, 62, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-4436f83b-ba6f-4b06-98af-9de362d05475:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-4436f83b-ba6f-4b06-98af-9de362d05475-root {
    text-align: center;
  }


#s-4436f83b-ba6f-4b06-98af-9de362d05475.shg-btn {
  color: #ffffff;
  font-size: 21px;
  
  
  font-family: Open Sans Condensed;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-4436f83b-ba6f-4b06-98af-9de362d05475-root {
    text-align: center;
  }


#s-4436f83b-ba6f-4b06-98af-9de362d05475.shg-btn {
  color: #ffffff;
  font-size: 21px;
  
  
  font-family: Open Sans Condensed;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4436f83b-ba6f-4b06-98af-9de362d05475-root {
    text-align: center;
  }


#s-4436f83b-ba6f-4b06-98af-9de362d05475.shg-btn {
  color: #ffffff;
  font-size: 21px;
  
  
  font-family: Open Sans Condensed;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4436f83b-ba6f-4b06-98af-9de362d05475-root {
    text-align: center;
  }


#s-4436f83b-ba6f-4b06-98af-9de362d05475.shg-btn {
  color: #ffffff;
  font-size: 21px;
  
  
  font-family: Open Sans Condensed;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-4436f83b-ba6f-4b06-98af-9de362d05475-root {
    text-align: center;
  }


#s-4436f83b-ba6f-4b06-98af-9de362d05475.shg-btn {
  color: #ffffff;
  font-size: 21px;
  
  
  font-family: Open Sans Condensed;
  display:  inline-block ;
}
}
#s-71029b02-b59a-43ad-b7a8-e22845f03fbe {
  padding-left: 5px;
padding-right: 5px;
}

#s-71029b02-b59a-43ad-b7a8-e22845f03fbe .shogun-heading-component h2 {
  color: rgba(17, 34, 60, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-52fd12e4-7fef-4b53-aca8-e118108522d2 {
  padding-left: 40px;
padding-right: 40px;
}

.shogun-accordion-wrapper .shogun-accordion {
  margin-bottom: 0;
  border-radius: 4px;
}

.shogun-accordion {
  margin-bottom: 20px;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.shogun-accordion-wrapper .shogun-accordion + .shogun-accordion {
  margin-top: 5px;
}

.shogun-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.shogun-accordion-heading {
  color: #333;
  border-bottom: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  cursor: pointer;
}

.shogun-accordion-title {
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer;
  text-decoration: none;
  flex: 1;
  user-select: none;
}

.shogun-accordion-body {
  display: none;
  opacity: 0;
  transition: opacity 0.5s linear;
}

.shogun-accordion-body.shogun-accordion-active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.shogun-accordion-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1.2em;
}

.shogun-accordion-icon > span {
  transition: 0.3s transform;
  position: absolute;
  right: 0;
  font-size: 1.2em;
}

.shogun-accordion-icon.shogun-icon-chevron > span::after {
  content: "▸";
}

.shogun-accordion.shogun-accordion-active
  > .shogun-accordion-heading
  .shogun-accordion-icon.shogun-icon-chevron
  > span {
  transform: rotate(90deg);
}

.shogun-accordion-icon.shogun-icon-plus > span::after {
  content: "＋";
}

.shogun-accordion.shogun-accordion-active
  > .shogun-accordion-heading
  .shogun-accordion-icon.shogun-icon-plus
  > span {
  transform: rotate(-225deg);
}

#s-65d71846-42e3-4a49-b1e8-62123535a1b0 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-65d71846-42e3-4a49-b1e8-62123535a1b0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-65d71846-42e3-4a49-b1e8-62123535a1b0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(18, 34, 60, 1);
}

#s-65d71846-42e3-4a49-b1e8-62123535a1b0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-65d71846-42e3-4a49-b1e8-62123535a1b0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(18, 34, 60, 1);
  text-align: left;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 25px;
}

#s-65d71846-42e3-4a49-b1e8-62123535a1b0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 25px;
}
#s-70a1cb7a-df8d-48f7-97d4-c7fed167b581 {
  text-align: center;
}







  #s-70a1cb7a-df8d-48f7-97d4-c7fed167b581 img.shogun-image {
    

    
    
    
  }


#s-70a1cb7a-df8d-48f7-97d4-c7fed167b581 .shogun-image-content {
  
    align-items: center;
  
}

#s-e87037fc-e3f1-434b-8c9d-ee8190a0e36d {
  text-align: center;
}







  #s-e87037fc-e3f1-434b-8c9d-ee8190a0e36d img.shogun-image {
    

    
    
    
  }


#s-e87037fc-e3f1-434b-8c9d-ee8190a0e36d .shogun-image-content {
  
    align-items: center;
  
}

#s-f97c4e6c-b9df-4d50-8de1-a1975a57e68b {
  text-align: center;
}







  #s-f97c4e6c-b9df-4d50-8de1-a1975a57e68b img.shogun-image {
    

    
    
    
  }


#s-f97c4e6c-b9df-4d50-8de1-a1975a57e68b .shogun-image-content {
  
    align-items: center;
  
}

#s-2b1d04e0-19b6-4ab1-b3fb-f504e0eb21a0 {
  text-align: center;
}







  #s-2b1d04e0-19b6-4ab1-b3fb-f504e0eb21a0 img.shogun-image {
    

    
    
    
  }


#s-2b1d04e0-19b6-4ab1-b3fb-f504e0eb21a0 .shogun-image-content {
  
    align-items: center;
  
}

#s-3a40b49f-8bc0-461a-bc79-858793aa417d {
  text-align: center;
}







  #s-3a40b49f-8bc0-461a-bc79-858793aa417d img.shogun-image {
    

    
    
    
  }


#s-3a40b49f-8bc0-461a-bc79-858793aa417d .shogun-image-content {
  
    align-items: center;
  
}

#s-73311f4c-1340-4fcf-b886-1dd12d8b9c79 {
  padding-left: 40px;
padding-right: 40px;
}

#s-62c7e1cb-fbb5-4625-8653-879c82450047 {
  padding-left: 40px;
padding-right: 40px;
}

#s-26b69c89-4d22-49a9-a26d-76d8d28702dc {
  padding-left: 40px;
padding-right: 40px;
}

#s-ee0ddc5b-7a92-4d6c-a4f9-67974f463c58 {
  padding-left: 40px;
padding-right: 40px;
}

#s-c3bf59f7-6cf4-4fde-b528-1e1ecf88bfa8 {
  padding-left: 40px;
padding-right: 40px;
}

#s-c888f9ab-9087-4a3a-a60a-ef48b6ccbd27 {
  min-height: 50px;
}








#s-c888f9ab-9087-4a3a-a60a-ef48b6ccbd27 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c888f9ab-9087-4a3a-a60a-ef48b6ccbd27.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c12f067d-981d-47f8-9a3e-639a85590607 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-c12f067d-981d-47f8-9a3e-639a85590607 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



#s-86619f3c-4510-4e6f-b184-49b329597f1c {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

.shogun-video {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.shogun-video-16x9 {
  padding-bottom: 56.25%;
}

.shogun-video-4x3 {
  padding-bottom: 75%;
}

.shogun-video-embed {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#s-2abad3a7-a88d-4475-9ed3-50f218e69f49 {
  padding-top: 5px;
padding-bottom: 5px;
}

#s-2abad3a7-a88d-4475-9ed3-50f218e69f49 hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

#s-f06795d8-92df-4229-bcf9-58fadf7cfb82 {
  padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
}

#s-f06795d8-92df-4229-bcf9-58fadf7cfb82 .shogun-heading-component h2 {
  color: rgba(17, 34, 60, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-d1be6bcf-2aa7-4ceb-b20b-68325f1f30ec {
  text-align: center;
}







  #s-d1be6bcf-2aa7-4ceb-b20b-68325f1f30ec img.shogun-image {
    

    
    
    
  }


#s-d1be6bcf-2aa7-4ceb-b20b-68325f1f30ec .shogun-image-content {
  
    align-items: center;
  
}

#s-9734585b-9663-40b7-813e-498ea6bad489 {
  padding-top: 15px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

#s-f377564a-fc89-4613-b6cc-5227f1b3be63 {
  padding-top: 13px;
padding-left: 15px;
padding-right: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(48, 48, 76, 1);
border-style: solid;
max-width: 100%;
background-color: rgba(253, 249, 235, 1);
}

#s-283376b1-3531-405b-92c6-a5a6380cab9d {
  min-height: 50px;
}








#s-283376b1-3531-405b-92c6-a5a6380cab9d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-283376b1-3531-405b-92c6-a5a6380cab9d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

#s-4393c68e-ad46-4ae2-b804-764cf5e32377 {
  border-style: solid;
margin-left: 0px;
margin-right: 0px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: #000;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-4393c68e-ad46-4ae2-b804-764cf5e32377"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4393c68e-ad46-4ae2-b804-764cf5e32377"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-4393c68e-ad46-4ae2-b804-764cf5e32377"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-4393c68e-ad46-4ae2-b804-764cf5e32377"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-98fef051-5ba8-48b5-840c-b9727f0b9b2f {
  margin-top: 50px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-98fef051-5ba8-48b5-840c-b9727f0b9b2f {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-98fef051-5ba8-48b5-840c-b9727f0b9b2f {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-98fef051-5ba8-48b5-840c-b9727f0b9b2f {
  
}
}@media (max-width: 767px){#s-98fef051-5ba8-48b5-840c-b9727f0b9b2f {
  
}
}
#s-0c1bc6a5-899b-43b1-86d0-5af83dfdcbc2 {
  margin-top: 0px;
margin-left: 30px;
margin-bottom: 0px;
margin-right: 30px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-0c1bc6a5-899b-43b1-86d0-5af83dfdcbc2 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0c1bc6a5-899b-43b1-86d0-5af83dfdcbc2 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-0c1bc6a5-899b-43b1-86d0-5af83dfdcbc2 {
  
}
}@media (max-width: 767px){#s-0c1bc6a5-899b-43b1-86d0-5af83dfdcbc2 {
  
}
}
#s-0c1bc6a5-899b-43b1-86d0-5af83dfdcbc2 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Cormorant Garamond";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-c5370b81-f36a-49e4-9565-51ebefcacace {
  border-style: solid;
margin-top: 20px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
padding-top: 20px;
padding-bottom: 20px;
border-top-width: 1px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-c5370b81-f36a-49e4-9565-51ebefcacace {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c5370b81-f36a-49e4-9565-51ebefcacace {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-c5370b81-f36a-49e4-9565-51ebefcacace {
  
}
}@media (max-width: 767px){#s-c5370b81-f36a-49e4-9565-51ebefcacace {
  
}
}
#s-f5fcb777-f82f-4858-885b-b524c073c628 {
  border-style: solid;
margin-left: 30px;
margin-bottom: 50px;
margin-right: 30px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-f5fcb777-f82f-4858-885b-b524c073c628 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f5fcb777-f82f-4858-885b-b524c073c628 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-f5fcb777-f82f-4858-885b-b524c073c628 {
  
}
}@media (max-width: 767px){#s-f5fcb777-f82f-4858-885b-b524c073c628 {
  
}
}
@media (min-width: 0px) {
[id="s-f5fcb777-f82f-4858-885b-b524c073c628"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f5fcb777-f82f-4858-885b-b524c073c628"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-f5fcb777-f82f-4858-885b-b524c073c628"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-f5fcb777-f82f-4858-885b-b524c073c628"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-7ab7ee96-cdb0-4da3-a35b-632d198af813 {
  box-shadow:0px 5px 30px 0px rgba(0, 0, 0, 0.1);
border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 1);
border-radius: 30px;
opacity: 1;
text-align: center;
background-color: rgba(15, 33, 57, 1);
font-size: 14px;
font-weight: bold;
color: rgba(255, 255, 255, 1);
text-decoration: none;
}
#s-7ab7ee96-cdb0-4da3-a35b-632d198af813:hover {box-shadow:  15px   !important;
border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 30px !important;
opacity: 1 !important;
background-color: rgba(176, 178, 179, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}#s-7ab7ee96-cdb0-4da3-a35b-632d198af813:active {box-shadow: 0px 0px   !important;
background-color: rgba(0, 97, 255, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-7ab7ee96-cdb0-4da3-a35b-632d198af813 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-7ab7ee96-cdb0-4da3-a35b-632d198af813 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-7ab7ee96-cdb0-4da3-a35b-632d198af813 {
  
}
}@media (max-width: 767px){#s-7ab7ee96-cdb0-4da3-a35b-632d198af813 {
  
}
}

  #s-7ab7ee96-cdb0-4da3-a35b-632d198af813-root {
    text-align: center;
  }


#s-7ab7ee96-cdb0-4da3-a35b-632d198af813.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 21px;
  
  
  font-family: Open Sans;
  display:  block ;
}
@media (min-width: 1200px){
  #s-7ab7ee96-cdb0-4da3-a35b-632d198af813-root {
    text-align: center;
  }


#s-7ab7ee96-cdb0-4da3-a35b-632d198af813.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 21px;
  
  
  font-family: Open Sans;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7ab7ee96-cdb0-4da3-a35b-632d198af813-root {
    text-align: center;
  }


#s-7ab7ee96-cdb0-4da3-a35b-632d198af813.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 21px;
  
  
  font-family: Open Sans;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7ab7ee96-cdb0-4da3-a35b-632d198af813-root {
    text-align: center;
  }


#s-7ab7ee96-cdb0-4da3-a35b-632d198af813.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 21px;
  
  
  font-family: Open Sans;
  display:  block ;
}
}@media (max-width: 767px){
  #s-7ab7ee96-cdb0-4da3-a35b-632d198af813-root {
    text-align: center;
  }


#s-7ab7ee96-cdb0-4da3-a35b-632d198af813.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 21px;
  
  
  font-family: Open Sans;
  display:  block ;
}
}
#s-9439b703-1204-4122-ac53-71fb7a2553a5 {
  margin-top: 0px;
margin-bottom: 0px;
text-align: center;
}







  #s-9439b703-1204-4122-ac53-71fb7a2553a5 img.shogun-image {
    

    
    
    
  }


#s-9439b703-1204-4122-ac53-71fb7a2553a5 .shogun-image-content {
  
    align-items: center;
  
}

#s-f2fa7f6a-d1fc-46fc-acc0-e71e9883cbce {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-f2fa7f6a-d1fc-46fc-acc0-e71e9883cbce hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

#s-51818c08-2b6b-4ffb-a159-7b26b747ac2a {
  padding-top: 10px;
padding-left: 5px;
padding-right: 5px;
}

#s-51818c08-2b6b-4ffb-a159-7b26b747ac2a .shogun-heading-component h2 {
  color: rgba(17, 34, 60, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-f3860c6c-f13c-4bc1-b0df-ab37a9d62def {
  padding-left: 10px;
padding-right: 10px;
}

#s-d99608c5-6a1f-4efd-8897-fba38399d269 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-d99608c5-6a1f-4efd-8897-fba38399d269 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-d99608c5-6a1f-4efd-8897-fba38399d269 .shg-sld-nav-button.shg-sld-left,
#s-d99608c5-6a1f-4efd-8897-fba38399d269 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-5932b226-f24d-4a89-9a8d-786edb029f79 {
  text-align: center;
}







  #s-5932b226-f24d-4a89-9a8d-786edb029f79 img.shogun-image {
    

    
    
    
  }


#s-5932b226-f24d-4a89-9a8d-786edb029f79 .shogun-image-content {
  
    align-items: center;
  
}

#s-9e4ba13c-f4c9-44a8-bca7-a8d7e9ccf04c {
  text-align: center;
}







  #s-9e4ba13c-f4c9-44a8-bca7-a8d7e9ccf04c img.shogun-image {
    

    
    
    
  }


#s-9e4ba13c-f4c9-44a8-bca7-a8d7e9ccf04c .shogun-image-content {
  
    align-items: center;
  
}

#s-ff3ed012-4718-4b12-a91a-2d647c403b6c {
  text-align: center;
}







  #s-ff3ed012-4718-4b12-a91a-2d647c403b6c img.shogun-image {
    

    
    
    
  }


#s-ff3ed012-4718-4b12-a91a-2d647c403b6c .shogun-image-content {
  
    align-items: center;
  
}

#s-b66f1140-db5d-4b97-bc37-c5ed00386732 {
  text-align: center;
}







  #s-b66f1140-db5d-4b97-bc37-c5ed00386732 img.shogun-image {
    

    
    
    
  }


#s-b66f1140-db5d-4b97-bc37-c5ed00386732 .shogun-image-content {
  
    align-items: center;
  
}

#s-66181850-06c6-487e-b18d-46d97b6622e3 {
  text-align: center;
}







  #s-66181850-06c6-487e-b18d-46d97b6622e3 img.shogun-image {
    

    
    
    
  }


#s-66181850-06c6-487e-b18d-46d97b6622e3 .shogun-image-content {
  
    align-items: center;
  
}

#s-5c11c293-6b55-469d-8749-997fa324c8ec {
  padding-top: 5px;
padding-left: 20px;
padding-bottom: 5px;
padding-right: 20px;
}

#s-069b18ba-5ed3-494e-8d83-3f487af40966 {
  padding-top: 5px;
padding-left: 20px;
padding-bottom: 5px;
padding-right: 20px;
}

#s-c3bc5be2-957c-45d5-8026-127b69ffde6a {
  padding-top: 5px;
padding-left: 20px;
padding-bottom: 5px;
padding-right: 20px;
}

#s-51a55f6f-486c-47b9-bcd3-2b9e9ef50d47 {
  padding-top: 5px;
padding-left: 20px;
padding-bottom: 5px;
padding-right: 20px;
}

#s-70282be9-26fa-4471-b2a5-fe18a6d05ef4 {
  padding-top: 5px;
padding-left: 20px;
padding-bottom: 5px;
padding-right: 20px;
}

#s-5433d259-313e-486d-8549-8880a0b47c7e {
  padding-left: 5px;
padding-right: 5px;
}

#s-5433d259-313e-486d-8549-8880a0b47c7e .shogun-heading-component h2 {
  color: rgba(17, 34, 60, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-d644d048-a784-402a-8ef2-fdbed5a61697 {
  padding-left: 10px;
padding-right: 10px;
}

#s-0dbb16e2-e26e-4988-94e4-9839349bf402 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-0dbb16e2-e26e-4988-94e4-9839349bf402 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-0dbb16e2-e26e-4988-94e4-9839349bf402 .shg-sld-nav-button.shg-sld-left,
#s-0dbb16e2-e26e-4988-94e4-9839349bf402 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-8aba65fb-5321-48a3-aa05-06ee26a614d1 {
  text-align: center;
}







  #s-8aba65fb-5321-48a3-aa05-06ee26a614d1 img.shogun-image {
    

    
    
    
  }


#s-8aba65fb-5321-48a3-aa05-06ee26a614d1 .shogun-image-content {
  
    align-items: center;
  
}

#s-7722fb05-1c26-4cbe-b7e6-edaf6183932b {
  text-align: center;
}







  #s-7722fb05-1c26-4cbe-b7e6-edaf6183932b img.shogun-image {
    

    
    
    
  }


#s-7722fb05-1c26-4cbe-b7e6-edaf6183932b .shogun-image-content {
  
    align-items: center;
  
}

#s-268e4640-13ae-4e99-9960-acbde7ae51aa {
  text-align: center;
}







  #s-268e4640-13ae-4e99-9960-acbde7ae51aa img.shogun-image {
    

    
    
    
  }


#s-268e4640-13ae-4e99-9960-acbde7ae51aa .shogun-image-content {
  
    align-items: center;
  
}

#s-a5ba1c11-f342-444b-994a-5b0b464a8f54 {
  text-align: center;
}







  #s-a5ba1c11-f342-444b-994a-5b0b464a8f54 img.shogun-image {
    

    
    
    
  }


#s-a5ba1c11-f342-444b-994a-5b0b464a8f54 .shogun-image-content {
  
    align-items: center;
  
}

#s-fa1f06cd-ae15-4af0-80fb-19992c50eb3a {
  padding-top: 5px;
padding-left: 20px;
padding-bottom: 5px;
padding-right: 20px;
}

#s-57ff9afa-44c1-473b-b37e-b563cd36c17e {
  padding-top: 5px;
padding-left: 20px;
padding-bottom: 5px;
padding-right: 20px;
}

#s-1835e617-49ba-449b-854c-32ddb0ec4161 {
  padding-top: 5px;
padding-left: 20px;
padding-bottom: 5px;
padding-right: 20px;
}

#s-b550f997-bb7d-4739-88cb-7adf18c6122b {
  min-height: 50px;
}








#s-b550f997-bb7d-4739-88cb-7adf18c6122b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b550f997-bb7d-4739-88cb-7adf18c6122b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-78a4b40e-518f-44e4-9e72-e70327b9d58b {
  padding-top: 13px;
padding-left: 15px;
padding-right: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(48, 48, 76, 1);
border-style: solid;
max-width: 100%;
background-color: rgba(253, 249, 235, 1);
}

#s-4bffb3a6-fc3b-4645-ad01-5c6419587acb hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

#s-47ff790c-d477-4726-b8e1-8b2aed0ae339 {
  padding-top: 20px;
padding-left: 5px;
}

#s-47ff790c-d477-4726-b8e1-8b2aed0ae339 .shogun-heading-component h3 {
  color: rgba(17, 34, 60, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-549bc714-04f5-4464-b852-b052dae5cac7 {
  padding-left: 10px;
padding-right: 10px;
}

#s-a5d8f5a4-f01a-49f5-b1c5-78539ee66bce {
  text-align: center;
}







  #s-a5d8f5a4-f01a-49f5-b1c5-78539ee66bce img.shogun-image {
    

    
    
    
  }


#s-a5d8f5a4-f01a-49f5-b1c5-78539ee66bce .shogun-image-content {
  
    align-items: center;
  
}

#s-4ca81ee5-826b-4533-97cc-6279a02d77ae {
  box-shadow:0px 0px 0px 0px rgba(236, 232, 232, 1);
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(48, 48, 76, 1);
border-style: solid;
background-color: rgba(253, 249, 235, 1);
}

#s-92806f67-a711-4cb7-8dc2-3fddf9096766 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-92806f67-a711-4cb7-8dc2-3fddf9096766 hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

#s-3924d497-ce68-4b0c-aded-30d6037834d0 {
  padding-top: 10px;
padding-left: 5px;
padding-right: 5px;
}

#s-3924d497-ce68-4b0c-aded-30d6037834d0 .shogun-heading-component h2 {
  color: rgba(17, 34, 60, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-d5de642f-10bb-424d-8854-1914457cabbd {
  text-align: center;
}







  #s-d5de642f-10bb-424d-8854-1914457cabbd img.shogun-image {
    

    
    
    
  }


#s-d5de642f-10bb-424d-8854-1914457cabbd .shogun-image-content {
  
    align-items: center;
  
}

#s-bac2ad11-fe9f-4648-978d-836596fb649c {
  min-height: 50px;
}








#s-bac2ad11-fe9f-4648-978d-836596fb649c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bac2ad11-fe9f-4648-978d-836596fb649c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b0bce302-4c79-451c-8818-872296f669d1 {
  padding-top: 15px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

#s-3e618da6-ada7-49e1-a904-d9c778a26dc0 {
  box-shadow:0px 0px 0px 0px rgba(236, 232, 232, 1);
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(48, 48, 76, 1);
border-style: solid;
background-color: rgba(253, 249, 235, 1);
}

#s-94c18e77-3416-4793-8ead-aa9f9575d0b7 {
  padding-top: 13px;
padding-left: 15px;
padding-right: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(48, 48, 76, 1);
border-style: solid;
max-width: 100%;
background-color: rgba(253, 249, 235, 1);
}

#s-7711d7c2-9a05-4555-9b1a-710902e64e81 {
  min-height: 50px;
}








#s-7711d7c2-9a05-4555-9b1a-710902e64e81 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7711d7c2-9a05-4555-9b1a-710902e64e81.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8781f55a-e02b-4b51-a631-b6bc98d9348c {
  padding-top: 10px;
padding-left: 5px;
padding-right: 5px;
}

#s-8781f55a-e02b-4b51-a631-b6bc98d9348c .shogun-heading-component h2 {
  color: rgba(17, 34, 60, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-b76f7fd3-4fe2-47a3-acf8-05b3f226dfeb {
  padding-left: 10px;
padding-right: 10px;
}

#s-6dfb80c2-4b2c-462a-b7cc-25ef4df7c5a8 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-6dfb80c2-4b2c-462a-b7cc-25ef4df7c5a8 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-6dfb80c2-4b2c-462a-b7cc-25ef4df7c5a8 .shg-sld-nav-button.shg-sld-left,
#s-6dfb80c2-4b2c-462a-b7cc-25ef4df7c5a8 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-63d081e9-9574-45ec-8779-23c236e8a6e3 {
  text-align: center;
}







  #s-63d081e9-9574-45ec-8779-23c236e8a6e3 img.shogun-image {
    

    
    
    
  }


#s-63d081e9-9574-45ec-8779-23c236e8a6e3 .shogun-image-content {
  
    align-items: center;
  
}

#s-887ccf4f-0d6a-477c-aebb-40776e1f2a27 {
  text-align: center;
}







  #s-887ccf4f-0d6a-477c-aebb-40776e1f2a27 img.shogun-image {
    

    
    
    
  }


#s-887ccf4f-0d6a-477c-aebb-40776e1f2a27 .shogun-image-content {
  
    align-items: center;
  
}

#s-0cfee408-2ebe-4041-889b-52f0f8e6d293 {
  text-align: center;
}







  #s-0cfee408-2ebe-4041-889b-52f0f8e6d293 img.shogun-image {
    

    
    
    
  }


#s-0cfee408-2ebe-4041-889b-52f0f8e6d293 .shogun-image-content {
  
    align-items: center;
  
}

#s-3d907425-0bf9-4cb7-afe0-1d1fa7aa79ff {
  text-align: center;
}







  #s-3d907425-0bf9-4cb7-afe0-1d1fa7aa79ff img.shogun-image {
    

    
    
    
  }


#s-3d907425-0bf9-4cb7-afe0-1d1fa7aa79ff .shogun-image-content {
  
    align-items: center;
  
}

#s-d117a38e-f538-42db-881b-216b13a2d8e2 {
  text-align: center;
}







  #s-d117a38e-f538-42db-881b-216b13a2d8e2 img.shogun-image {
    

    
    
    
  }


#s-d117a38e-f538-42db-881b-216b13a2d8e2 .shogun-image-content {
  
    align-items: center;
  
}

#s-fb87b78e-b688-4aa6-9ba9-5ac857ca2869 {
  padding-left: 20px;
padding-right: 20px;
}

#s-4392cb80-863f-49ba-bd82-4102fe3d5224 {
  padding-left: 20px;
padding-right: 20px;
}

#s-a8da69c4-983d-49af-8c49-e72896e7d878 {
  padding-left: 2px;
padding-right: 2px;
}

#s-dab8858b-9957-471c-b50b-9bf5ea9dfa56 {
  padding-left: 20px;
padding-right: 20px;
}

#s-eab819bc-a537-462d-9af4-baae3697c9eb {
  padding-left: 20px;
padding-right: 20px;
}

#s-8716d3e8-ba2a-43fe-a918-aa0cce3db849 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(219, 61, 62, 1);
text-align: center;
text-decoration: none;
hover-type: color;
}
#s-8716d3e8-ba2a-43fe-a918-aa0cce3db849:hover {background-color: rgba(223, 217, 217, 1) !important;
text-decoration: none !important;
color: rgba(219, 61, 62, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-8716d3e8-ba2a-43fe-a918-aa0cce3db849:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-8716d3e8-ba2a-43fe-a918-aa0cce3db849-root {
    text-align: center;
  }


#s-8716d3e8-ba2a-43fe-a918-aa0cce3db849.shg-btn {
  color: #ffffff;
  font-size: 21px;
  
  
  font-family: Open Sans Condensed;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-8716d3e8-ba2a-43fe-a918-aa0cce3db849-root {
    text-align: center;
  }


#s-8716d3e8-ba2a-43fe-a918-aa0cce3db849.shg-btn {
  color: #ffffff;
  font-size: 21px;
  
  
  font-family: Open Sans Condensed;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-8716d3e8-ba2a-43fe-a918-aa0cce3db849-root {
    text-align: center;
  }


#s-8716d3e8-ba2a-43fe-a918-aa0cce3db849.shg-btn {
  color: #ffffff;
  font-size: 21px;
  
  
  font-family: Open Sans Condensed;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-8716d3e8-ba2a-43fe-a918-aa0cce3db849-root {
    text-align: center;
  }


#s-8716d3e8-ba2a-43fe-a918-aa0cce3db849.shg-btn {
  color: #ffffff;
  font-size: 21px;
  
  
  font-family: Open Sans Condensed;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-8716d3e8-ba2a-43fe-a918-aa0cce3db849-root {
    text-align: center;
  }


#s-8716d3e8-ba2a-43fe-a918-aa0cce3db849.shg-btn {
  color: #ffffff;
  font-size: 21px;
  
  
  font-family: Open Sans Condensed;
  display:  inline-block ;
}
}
#s-37f3f939-b87a-40ec-adb8-f334ba1ef40e {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(219, 61, 62, 1);
text-align: center;
text-decoration: none;
hover-type: color;
}
#s-37f3f939-b87a-40ec-adb8-f334ba1ef40e:hover {background-color: rgba(223, 217, 217, 1) !important;
text-decoration: none !important;
color: rgba(219, 61, 62, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-37f3f939-b87a-40ec-adb8-f334ba1ef40e:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-37f3f939-b87a-40ec-adb8-f334ba1ef40e-root {
    text-align: center;
  }


#s-37f3f939-b87a-40ec-adb8-f334ba1ef40e.shg-btn {
  color: #ffffff;
  font-size: 21px;
  
  
  font-family: Open Sans Condensed;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-37f3f939-b87a-40ec-adb8-f334ba1ef40e-root {
    text-align: center;
  }


#s-37f3f939-b87a-40ec-adb8-f334ba1ef40e.shg-btn {
  color: #ffffff;
  font-size: 21px;
  
  
  font-family: Open Sans Condensed;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-37f3f939-b87a-40ec-adb8-f334ba1ef40e-root {
    text-align: center;
  }


#s-37f3f939-b87a-40ec-adb8-f334ba1ef40e.shg-btn {
  color: #ffffff;
  font-size: 21px;
  
  
  font-family: Open Sans Condensed;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-37f3f939-b87a-40ec-adb8-f334ba1ef40e-root {
    text-align: center;
  }


#s-37f3f939-b87a-40ec-adb8-f334ba1ef40e.shg-btn {
  color: #ffffff;
  font-size: 21px;
  
  
  font-family: Open Sans Condensed;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-37f3f939-b87a-40ec-adb8-f334ba1ef40e-root {
    text-align: center;
  }


#s-37f3f939-b87a-40ec-adb8-f334ba1ef40e.shg-btn {
  color: #ffffff;
  font-size: 21px;
  
  
  font-family: Open Sans Condensed;
  display:  inline-block ;
}
}
#s-46fd1dae-952c-4524-84f9-9df4fc0a5298 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(219, 61, 62, 1);
text-align: center;
text-decoration: none;
hover-type: color;
}
#s-46fd1dae-952c-4524-84f9-9df4fc0a5298:hover {background-color: rgba(223, 217, 217, 1) !important;
text-decoration: none !important;
color: rgba(219, 61, 62, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-46fd1dae-952c-4524-84f9-9df4fc0a5298:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-46fd1dae-952c-4524-84f9-9df4fc0a5298-root {
    text-align: center;
  }


#s-46fd1dae-952c-4524-84f9-9df4fc0a5298.shg-btn {
  color: #ffffff;
  font-size: 21px;
  
  
  font-family: Open Sans Condensed;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-46fd1dae-952c-4524-84f9-9df4fc0a5298-root {
    text-align: center;
  }


#s-46fd1dae-952c-4524-84f9-9df4fc0a5298.shg-btn {
  color: #ffffff;
  font-size: 21px;
  
  
  font-family: Open Sans Condensed;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-46fd1dae-952c-4524-84f9-9df4fc0a5298-root {
    text-align: center;
  }


#s-46fd1dae-952c-4524-84f9-9df4fc0a5298.shg-btn {
  color: #ffffff;
  font-size: 21px;
  
  
  font-family: Open Sans Condensed;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-46fd1dae-952c-4524-84f9-9df4fc0a5298-root {
    text-align: center;
  }


#s-46fd1dae-952c-4524-84f9-9df4fc0a5298.shg-btn {
  color: #ffffff;
  font-size: 21px;
  
  
  font-family: Open Sans Condensed;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-46fd1dae-952c-4524-84f9-9df4fc0a5298-root {
    text-align: center;
  }


#s-46fd1dae-952c-4524-84f9-9df4fc0a5298.shg-btn {
  color: #ffffff;
  font-size: 21px;
  
  
  font-family: Open Sans Condensed;
  display:  inline-block ;
}
}
#s-acce8ec2-8a43-484f-a17b-99c30cc62d8c {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(219, 61, 62, 1);
text-align: center;
text-decoration: none;
hover-type: color;
}
#s-acce8ec2-8a43-484f-a17b-99c30cc62d8c:hover {background-color: rgba(223, 217, 217, 1) !important;
text-decoration: none !important;
color: rgba(219, 61, 62, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-acce8ec2-8a43-484f-a17b-99c30cc62d8c:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-acce8ec2-8a43-484f-a17b-99c30cc62d8c-root {
    text-align: center;
  }


#s-acce8ec2-8a43-484f-a17b-99c30cc62d8c.shg-btn {
  color: #ffffff;
  font-size: 21px;
  
  
  font-family: Open Sans Condensed;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-acce8ec2-8a43-484f-a17b-99c30cc62d8c-root {
    text-align: center;
  }


#s-acce8ec2-8a43-484f-a17b-99c30cc62d8c.shg-btn {
  color: #ffffff;
  font-size: 21px;
  
  
  font-family: Open Sans Condensed;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-acce8ec2-8a43-484f-a17b-99c30cc62d8c-root {
    text-align: center;
  }


#s-acce8ec2-8a43-484f-a17b-99c30cc62d8c.shg-btn {
  color: #ffffff;
  font-size: 21px;
  
  
  font-family: Open Sans Condensed;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-acce8ec2-8a43-484f-a17b-99c30cc62d8c-root {
    text-align: center;
  }


#s-acce8ec2-8a43-484f-a17b-99c30cc62d8c.shg-btn {
  color: #ffffff;
  font-size: 21px;
  
  
  font-family: Open Sans Condensed;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-acce8ec2-8a43-484f-a17b-99c30cc62d8c-root {
    text-align: center;
  }


#s-acce8ec2-8a43-484f-a17b-99c30cc62d8c.shg-btn {
  color: #ffffff;
  font-size: 21px;
  
  
  font-family: Open Sans Condensed;
  display:  inline-block ;
}
}
#s-5355ef40-94b2-44a2-82dd-d419355550f8 {
  padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
}

#s-5355ef40-94b2-44a2-82dd-d419355550f8 .shogun-heading-component h2 {
  color: rgba(17, 34, 60, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-c06be48b-9c8e-4b53-b4c6-606c4152366c {
  padding-left: 40px;
padding-right: 40px;
}

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