.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-2f78bfdb-c913-4e57-94c5-a0a42b16334f {
  min-height: 600px;
}
@media (max-width: 767px){#s-2f78bfdb-c913-4e57-94c5-a0a42b16334f {
  min-height: 500px;
}
}







#s-2f78bfdb-c913-4e57-94c5-a0a42b16334f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2f78bfdb-c913-4e57-94c5-a0a42b16334f.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.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-d9416751-aeae-4374-8410-0c3f8f32aef7 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-d9416751-aeae-4374-8410-0c3f8f32aef7 .shg-sld-nav-button.shg-sld-left,
#s-d9416751-aeae-4374-8410-0c3f8f32aef7 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-50635e65-d56e-4cad-b9a8-c70781ec0d02 {
  background-repeat: no-repeat;
background-size: cover;
padding-left: 100px;
padding-right: 100px;
min-height: 600px;
background-position: center center;
}
@media (min-width: 768px) and (max-width: 991px){#s-50635e65-d56e-4cad-b9a8-c70781ec0d02 {
  padding-left: 30px;
padding-right: 30px;
}
}@media (max-width: 767px){#s-50635e65-d56e-4cad-b9a8-c70781ec0d02 {
  padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
min-height: 550px;
}
}
#s-50635e65-d56e-4cad-b9a8-c70781ec0d02 {
  background-image: url(https://i.shgcdn.com/9ed951fc-2849-47ad-ba83-3e394fda617d/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-50635e65-d56e-4cad-b9a8-c70781ec0d02 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-50635e65-d56e-4cad-b9a8-c70781ec0d02.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-fd933b54-165d-4a43-a2b5-d008ba8ef461 {
  margin-top: 0px;
margin-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-fd933b54-165d-4a43-a2b5-d008ba8ef461"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fd933b54-165d-4a43-a2b5-d008ba8ef461"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-fd933b54-165d-4a43-a2b5-d008ba8ef461"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-fd933b54-165d-4a43-a2b5-d008ba8ef461"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

.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-5bd4ebd6-9e8c-4a86-adba-7ba4efb7dce8 {
  margin-top: 20px;
margin-left: 50px;
margin-bottom: 20px;
margin-right: 50px;
max-width: 70%;
}
@media (min-width: 768px) and (max-width: 991px){#s-5bd4ebd6-9e8c-4a86-adba-7ba4efb7dce8 {
  max-width: 100%;
}
}@media (max-width: 767px){#s-5bd4ebd6-9e8c-4a86-adba-7ba4efb7dce8 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 50px;
padding-bottom: 50px;
max-width: 100%;
}
}






  #s-5bd4ebd6-9e8c-4a86-adba-7ba4efb7dce8 img.shogun-image {
    

    
    
    
  }


#s-5bd4ebd6-9e8c-4a86-adba-7ba4efb7dce8 .shogun-image-content {
  
    align-items: 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-b4c105ad-c741-4120-af40-6c980ea6dd7d {
  margin-top: 60px;
padding-top: 50px;
padding-right: 20px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-b4c105ad-c741-4120-af40-6c980ea6dd7d {
  margin-top: 0px;
}
}@media (max-width: 767px){#s-b4c105ad-c741-4120-af40-6c980ea6dd7d {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 0px;
padding-right: 0px;
text-align: center;
}
}
#s-b4c105ad-c741-4120-af40-6c980ea6dd7d .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 55px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-b4c105ad-c741-4120-af40-6c980ea6dd7d .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 30px;
  
  
  
}


}@media (max-width: 767px){#s-b4c105ad-c741-4120-af40-6c980ea6dd7d .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: center;
}


}
.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-e52db9ce-e8f6-4feb-bfe8-3a37d6cd77c2 {
  box-shadow:0px 1px 6px 1px rgba(0, 0, 0, 0.26);
margin-top: 20px;
margin-bottom: 50px;
padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
border-radius: 6px;
background-color: rgba(0, 0, 0, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-e52db9ce-e8f6-4feb-bfe8-3a37d6cd77c2:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e52db9ce-e8f6-4feb-bfe8-3a37d6cd77c2:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-e52db9ce-e8f6-4feb-bfe8-3a37d6cd77c2 {
  margin-bottom: 20px;
padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
text-align: center;
}
}

  #s-e52db9ce-e8f6-4feb-bfe8-3a37d6cd77c2-root {
    text-align: left;
  }


#s-e52db9ce-e8f6-4feb-bfe8-3a37d6cd77c2.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e52db9ce-e8f6-4feb-bfe8-3a37d6cd77c2-root {
    text-align: left;
  }


#s-e52db9ce-e8f6-4feb-bfe8-3a37d6cd77c2.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e52db9ce-e8f6-4feb-bfe8-3a37d6cd77c2-root {
    text-align: left;
  }


#s-e52db9ce-e8f6-4feb-bfe8-3a37d6cd77c2.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e52db9ce-e8f6-4feb-bfe8-3a37d6cd77c2-root {
    text-align: left;
  }


#s-e52db9ce-e8f6-4feb-bfe8-3a37d6cd77c2.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e52db9ce-e8f6-4feb-bfe8-3a37d6cd77c2-root {
    text-align: center;
  }


#s-e52db9ce-e8f6-4feb-bfe8-3a37d6cd77c2.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}
#s-caf8ac65-1721-4726-a7bc-7a813475ce57 {
  background-repeat: no-repeat;
background-size: cover;
padding-left: 50px;
padding-right: 50px;
min-height: 600px;
background-position: center center;
}
@media (max-width: 767px){#s-caf8ac65-1721-4726-a7bc-7a813475ce57 {
  padding-left: 20px;
padding-right: 20px;
min-height: 550px;
}
}
#s-caf8ac65-1721-4726-a7bc-7a813475ce57 {
  background-image: url(https://i.shgcdn.com/c553a386-53d3-40a1-9efa-351b209d1897/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-caf8ac65-1721-4726-a7bc-7a813475ce57 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-caf8ac65-1721-4726-a7bc-7a813475ce57.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (max-width: 767px){#s-fe2b2a34-57db-46c2-a8ce-6d740bd4033a {
  padding-left: 0px;
padding-right: 0px;
}
}
@media (min-width: 0px) {
[id="s-fe2b2a34-57db-46c2-a8ce-6d740bd4033a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fe2b2a34-57db-46c2-a8ce-6d740bd4033a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-fe2b2a34-57db-46c2-a8ce-6d740bd4033a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-fe2b2a34-57db-46c2-a8ce-6d740bd4033a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-97ed647a-b907-41bd-9bda-239bf6f613e2 {
  margin-left: 50px;
margin-right: 50px;
max-width: 80%;
}
@media (min-width: 768px) and (max-width: 991px){#s-97ed647a-b907-41bd-9bda-239bf6f613e2 {
  max-width: 100%;
}
}@media (max-width: 767px){#s-97ed647a-b907-41bd-9bda-239bf6f613e2 {
  margin-left: 20px;
margin-right: 20px;
max-width: 100%;
}
}






  #s-97ed647a-b907-41bd-9bda-239bf6f613e2 img.shogun-image {
    

    
    
    
  }


#s-97ed647a-b907-41bd-9bda-239bf6f613e2 .shogun-image-content {
  
    align-items: center;
  
}

#s-98d0d0c2-b0d4-4abd-ae76-f55e6c75177d {
  padding-top: 80px;
padding-right: 20px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-98d0d0c2-b0d4-4abd-ae76-f55e6c75177d {
  padding-top: 0px;
}
}@media (max-width: 767px){#s-98d0d0c2-b0d4-4abd-ae76-f55e6c75177d {
  padding-top: 0px;
padding-right: 0px;
text-align: center;
}
}
#s-98d0d0c2-b0d4-4abd-ae76-f55e6c75177d .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 55px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-98d0d0c2-b0d4-4abd-ae76-f55e6c75177d .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 30px;
  
  
  
}


}@media (max-width: 767px){#s-98d0d0c2-b0d4-4abd-ae76-f55e6c75177d .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: center;
}


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

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

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

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

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

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

.shg-default-text-content h1,
.shg-default-text-content h2,
.shg-default-text-content h3,
.shg-default-text-content h4,
.shg-default-text-content h5,
.shg-default-text-content h6 {
  color: ;
  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-b6aad7b4-683a-4e1c-8c4c-56419209e4ae {
  padding-top: 20px;
padding-bottom: 20px;
}
@media (max-width: 767px){#s-b6aad7b4-683a-4e1c-8c4c-56419209e4ae {
  padding-bottom: 20px;
display: none;
}
#s-b6aad7b4-683a-4e1c-8c4c-56419209e4ae, #wrap-s-b6aad7b4-683a-4e1c-8c4c-56419209e4ae { display: none !important; }}
#s-12dbebd9-0843-459c-a5a2-bf715b0560b2 {
  box-shadow:0px 1px 6px 1px rgba(0, 0, 0, 0.26);
margin-top: 20px;
margin-bottom: 20px;
padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
border-radius: 6px;
background-color: rgba(0, 0, 0, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-12dbebd9-0843-459c-a5a2-bf715b0560b2:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-12dbebd9-0843-459c-a5a2-bf715b0560b2:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-12dbebd9-0843-459c-a5a2-bf715b0560b2 {
  box-shadow:0px 1px 6px 1px rgba(0, 0, 0, 0.26);
margin-top: 20px;
margin-bottom: 20px;
padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
border-radius: 6px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-12dbebd9-0843-459c-a5a2-bf715b0560b2:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-12dbebd9-0843-459c-a5a2-bf715b0560b2:active {background-color: #000000 !important;
text-decoration: none !important;}}

  #s-12dbebd9-0843-459c-a5a2-bf715b0560b2-root {
    text-align: left;
  }


#s-12dbebd9-0843-459c-a5a2-bf715b0560b2.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-12dbebd9-0843-459c-a5a2-bf715b0560b2-root {
    text-align: left;
  }


#s-12dbebd9-0843-459c-a5a2-bf715b0560b2.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-12dbebd9-0843-459c-a5a2-bf715b0560b2-root {
    text-align: left;
  }


#s-12dbebd9-0843-459c-a5a2-bf715b0560b2.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-12dbebd9-0843-459c-a5a2-bf715b0560b2-root {
    text-align: left;
  }


#s-12dbebd9-0843-459c-a5a2-bf715b0560b2.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-12dbebd9-0843-459c-a5a2-bf715b0560b2-root {
    text-align: center;
  }


#s-12dbebd9-0843-459c-a5a2-bf715b0560b2.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}
#s-84f5e639-4250-44eb-98d7-32f667789010 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 600px;
background-position: center center;
}
@media (max-width: 767px){#s-84f5e639-4250-44eb-98d7-32f667789010 {
  min-height: 550px;
}
}
#s-84f5e639-4250-44eb-98d7-32f667789010 {
  background-image: url(https://i.shgcdn.com/eb383273-8e70-46fc-92ec-1e2f8e93bd2e/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-84f5e639-4250-44eb-98d7-32f667789010 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-84f5e639-4250-44eb-98d7-32f667789010.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bf8c4b37-95e9-420b-ade1-d5f74e7ba9d9 {
  padding-top: 150px;
text-align: center;
}
@media (max-width: 767px){#s-bf8c4b37-95e9-420b-ade1-d5f74e7ba9d9 {
  padding-top: 20px;
padding-left: 0px;
padding-bottom: 20px;
padding-right: 0px;
}
}
#s-bf8c4b37-95e9-420b-ade1-d5f74e7ba9d9 .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 55px;
  
  
  
}


@media (max-width: 767px){#s-bf8c4b37-95e9-420b-ade1-d5f74e7ba9d9 .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 35px;
  
  
  
}


}
#s-3e41b9b0-c27d-435c-9169-ed79e892458f {
  box-shadow:0px 1px 6px 1px rgba(0, 0, 0, 0.26);
margin-top: 20px;
margin-left: 50px;
margin-bottom: 50px;
margin-right: 50px;
padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
border-radius: 6px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-3e41b9b0-c27d-435c-9169-ed79e892458f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-3e41b9b0-c27d-435c-9169-ed79e892458f:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-3e41b9b0-c27d-435c-9169-ed79e892458f {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
}
}

  #s-3e41b9b0-c27d-435c-9169-ed79e892458f-root {
    text-align: center;
  }


#s-3e41b9b0-c27d-435c-9169-ed79e892458f.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-3e41b9b0-c27d-435c-9169-ed79e892458f-root {
    text-align: center;
  }


#s-3e41b9b0-c27d-435c-9169-ed79e892458f.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-3e41b9b0-c27d-435c-9169-ed79e892458f-root {
    text-align: center;
  }


#s-3e41b9b0-c27d-435c-9169-ed79e892458f.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-3e41b9b0-c27d-435c-9169-ed79e892458f-root {
    text-align: center;
  }


#s-3e41b9b0-c27d-435c-9169-ed79e892458f.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-3e41b9b0-c27d-435c-9169-ed79e892458f-root {
    text-align: center;
  }


#s-3e41b9b0-c27d-435c-9169-ed79e892458f.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}
#s-fd4eff9a-bfd2-48e3-b674-8960f403a47a {
  background-repeat: no-repeat;
background-size: cover;
padding-left: 100px;
padding-right: 100px;
min-height: 600px;
background-position: center center;
}
@media (min-width: 768px) and (max-width: 991px){#s-fd4eff9a-bfd2-48e3-b674-8960f403a47a {
  padding-left: 60px;
padding-right: 60px;
}
}@media (max-width: 767px){#s-fd4eff9a-bfd2-48e3-b674-8960f403a47a {
  padding-left: 20px;
padding-right: 20px;
min-height: 550px;
}
}
#s-fd4eff9a-bfd2-48e3-b674-8960f403a47a {
  background-image: url(https://i.shgcdn.com/98d593d9-f8b4-4065-9884-71276bbcf332/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-fd4eff9a-bfd2-48e3-b674-8960f403a47a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fd4eff9a-bfd2-48e3-b674-8960f403a47a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-79aabea8-6b50-4d57-89c6-4e30405ee5c5 {
  padding-top: 150px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-79aabea8-6b50-4d57-89c6-4e30405ee5c5 {
  padding-top: 150px;
text-align: center;
}
}@media (max-width: 767px){#s-79aabea8-6b50-4d57-89c6-4e30405ee5c5 {
  padding-top: 50px;
}
}
#s-79aabea8-6b50-4d57-89c6-4e30405ee5c5 .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 55px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-79aabea8-6b50-4d57-89c6-4e30405ee5c5 .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: center;
}


}@media (max-width: 767px){#s-79aabea8-6b50-4d57-89c6-4e30405ee5c5 .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 30px;
  
  
  
}


}
#s-dd4f3675-c865-4355-b315-eae6294551f8 {
  padding-top: 50px;
padding-bottom: 50px;
}
@media (max-width: 767px){#s-dd4f3675-c865-4355-b315-eae6294551f8 {
  padding-top: 20px;
padding-bottom: 20px;
display: none;
}
#s-dd4f3675-c865-4355-b315-eae6294551f8, #wrap-s-dd4f3675-c865-4355-b315-eae6294551f8 { display: none !important; }}
#s-7ba75fbd-8a7a-4709-8b1a-d780c2bd1ca8 {
  box-shadow:0px 1px 6px 1px rgba(0, 0, 0, 0.26);
margin-left: 50px;
margin-bottom: 50px;
margin-right: 50px;
padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
border-radius: 6px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-7ba75fbd-8a7a-4709-8b1a-d780c2bd1ca8:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-7ba75fbd-8a7a-4709-8b1a-d780c2bd1ca8:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-7ba75fbd-8a7a-4709-8b1a-d780c2bd1ca8 {
  margin-top: 20px;
margin-left: 0px;
margin-bottom: 20px;
margin-right: 0px;
padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
}
}

  #s-7ba75fbd-8a7a-4709-8b1a-d780c2bd1ca8-root {
    text-align: center;
  }


#s-7ba75fbd-8a7a-4709-8b1a-d780c2bd1ca8.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-7ba75fbd-8a7a-4709-8b1a-d780c2bd1ca8-root {
    text-align: center;
  }


#s-7ba75fbd-8a7a-4709-8b1a-d780c2bd1ca8.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7ba75fbd-8a7a-4709-8b1a-d780c2bd1ca8-root {
    text-align: center;
  }


#s-7ba75fbd-8a7a-4709-8b1a-d780c2bd1ca8.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7ba75fbd-8a7a-4709-8b1a-d780c2bd1ca8-root {
    text-align: center;
  }


#s-7ba75fbd-8a7a-4709-8b1a-d780c2bd1ca8.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-7ba75fbd-8a7a-4709-8b1a-d780c2bd1ca8-root {
    text-align: center;
  }


#s-7ba75fbd-8a7a-4709-8b1a-d780c2bd1ca8.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}
#s-45b6c526-8df9-4fb3-b028-99b28cfe67b4 {
  background-repeat: no-repeat;
background-size: cover;
padding-left: 100px;
padding-right: 100px;
min-height: 600px;
background-position: center center;
}
@media (min-width: 768px) and (max-width: 991px){#s-45b6c526-8df9-4fb3-b028-99b28cfe67b4 {
  padding-left: 30px;
padding-right: 30px;
}
}@media (max-width: 767px){#s-45b6c526-8df9-4fb3-b028-99b28cfe67b4 {
  padding-left: 10px;
padding-right: 10px;
min-height: 550px;
}
}
#s-45b6c526-8df9-4fb3-b028-99b28cfe67b4 {
  background-image: url(https://i.shgcdn.com/5c09a521-87a7-4407-b875-98ed557c1571/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-45b6c526-8df9-4fb3-b028-99b28cfe67b4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-45b6c526-8df9-4fb3-b028-99b28cfe67b4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0aaf6497-0706-4a3c-a326-878c3e0f92fa {
  padding-top: 150px;
text-align: center;
}
@media (max-width: 767px){#s-0aaf6497-0706-4a3c-a326-878c3e0f92fa {
  padding-top: 1px;
padding-bottom: 1px;
}
}
#s-0aaf6497-0706-4a3c-a326-878c3e0f92fa .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 55px;
  
  
  
}


@media (max-width: 767px){#s-0aaf6497-0706-4a3c-a326-878c3e0f92fa .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}


}
#s-dfd71ac8-536d-4cf7-b67f-f8906a5716bd {
  padding-top: 50px;
padding-bottom: 50px;
}
@media (max-width: 767px){#s-dfd71ac8-536d-4cf7-b67f-f8906a5716bd {
  padding-top: 30px;
padding-bottom: 30px;
display: none;
}
#s-dfd71ac8-536d-4cf7-b67f-f8906a5716bd, #wrap-s-dfd71ac8-536d-4cf7-b67f-f8906a5716bd { display: none !important; }}
#s-7e5b06c1-1a44-481a-a6f2-fe38a879d267 {
  box-shadow:0px 1px 6px 1px rgba(0, 0, 0, 0.26);
margin-left: 50px;
margin-bottom: 50px;
margin-right: 50px;
padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
border-radius: 6px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-7e5b06c1-1a44-481a-a6f2-fe38a879d267:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-7e5b06c1-1a44-481a-a6f2-fe38a879d267:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-7e5b06c1-1a44-481a-a6f2-fe38a879d267 {
  margin-top: 20px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
}
}

  #s-7e5b06c1-1a44-481a-a6f2-fe38a879d267-root {
    text-align: center;
  }


#s-7e5b06c1-1a44-481a-a6f2-fe38a879d267.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-7e5b06c1-1a44-481a-a6f2-fe38a879d267-root {
    text-align: center;
  }


#s-7e5b06c1-1a44-481a-a6f2-fe38a879d267.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7e5b06c1-1a44-481a-a6f2-fe38a879d267-root {
    text-align: center;
  }


#s-7e5b06c1-1a44-481a-a6f2-fe38a879d267.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7e5b06c1-1a44-481a-a6f2-fe38a879d267-root {
    text-align: center;
  }


#s-7e5b06c1-1a44-481a-a6f2-fe38a879d267.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-7e5b06c1-1a44-481a-a6f2-fe38a879d267-root {
    text-align: center;
  }


#s-7e5b06c1-1a44-481a-a6f2-fe38a879d267.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}
#s-8a8fb9b2-a747-4883-bad8-a7f596507f70 {
  background-repeat: no-repeat;
background-size: cover;
padding-left: 50px;
padding-bottom: 50px;
padding-right: 50px;
min-height: 600px;
background-position: center center;
}
@media (min-width: 768px) and (max-width: 991px){#s-8a8fb9b2-a747-4883-bad8-a7f596507f70 {
  padding-left: 30px;
padding-right: 30px;
}
}@media (max-width: 767px){#s-8a8fb9b2-a747-4883-bad8-a7f596507f70 {
  padding-left: 10px;
padding-right: 10px;
min-height: 550px;
}
}
#s-8a8fb9b2-a747-4883-bad8-a7f596507f70 {
  background-image: url(https://i.shgcdn.com/c553a386-53d3-40a1-9efa-351b209d1897/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-8a8fb9b2-a747-4883-bad8-a7f596507f70 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8a8fb9b2-a747-4883-bad8-a7f596507f70.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (max-width: 767px){#s-b5a00ad4-8e89-4a86-8742-78b0ce3ca649 {
  padding-left: 20px;
padding-right: 20px;
}
}
@media (min-width: 0px) {
[id="s-b5a00ad4-8e89-4a86-8742-78b0ce3ca649"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b5a00ad4-8e89-4a86-8742-78b0ce3ca649"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b5a00ad4-8e89-4a86-8742-78b0ce3ca649"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b5a00ad4-8e89-4a86-8742-78b0ce3ca649"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-e2e8ad0f-adf7-4eb7-a350-7671441ece29 {
  margin-left: 50px;
margin-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
max-width: 90%;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-e2e8ad0f-adf7-4eb7-a350-7671441ece29 {
  max-width: 100%;
}
}@media (max-width: 767px){#s-e2e8ad0f-adf7-4eb7-a350-7671441ece29 {
  max-width: 100%;
}
}






  #s-e2e8ad0f-adf7-4eb7-a350-7671441ece29 img.shogun-image {
    

    
    
    
  }


#s-e2e8ad0f-adf7-4eb7-a350-7671441ece29 .shogun-image-content {
  
    align-items: center;
  
}

#s-6da27113-fb29-480d-bb88-8b1ed2a20937 {
  padding-top: 80px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-6da27113-fb29-480d-bb88-8b1ed2a20937 {
  padding-top: 0px;
}
}@media (max-width: 767px){#s-6da27113-fb29-480d-bb88-8b1ed2a20937 {
  padding-top: 0px;
text-align: center;
}
}
#s-6da27113-fb29-480d-bb88-8b1ed2a20937 .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 55px;
  
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-6da27113-fb29-480d-bb88-8b1ed2a20937 .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: left;
}


}@media (max-width: 767px){#s-6da27113-fb29-480d-bb88-8b1ed2a20937 .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: center;
}


}
#s-fa743f1d-782f-49fa-ae1f-4447b8e77ce6 {
  padding-top: 20px;
padding-left: 0px;
padding-bottom: 20px;
padding-right: 0px;
}
@media (max-width: 767px){#s-fa743f1d-782f-49fa-ae1f-4447b8e77ce6 {
  padding-top: 10px;
padding-bottom: 10px;
display: none;
}
#s-fa743f1d-782f-49fa-ae1f-4447b8e77ce6, #wrap-s-fa743f1d-782f-49fa-ae1f-4447b8e77ce6 { display: none !important; }}
#s-d83a0418-c033-47cd-9795-00e20176fca2 {
  box-shadow:0px 1px 6px 1px rgba(0, 0, 0, 0.26);
margin-top: 20px;
margin-bottom: 20px;
padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
border-radius: 6px;
background-color: rgba(0, 0, 0, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-d83a0418-c033-47cd-9795-00e20176fca2:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-d83a0418-c033-47cd-9795-00e20176fca2:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-d83a0418-c033-47cd-9795-00e20176fca2 {
  box-shadow:0px 1px 6px 1px rgba(0, 0, 0, 0.26);
margin-top: 20px;
margin-bottom: 20px;
padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
border-radius: 6px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-d83a0418-c033-47cd-9795-00e20176fca2:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-d83a0418-c033-47cd-9795-00e20176fca2:active {background-color: #000000 !important;
text-decoration: none !important;}}

  #s-d83a0418-c033-47cd-9795-00e20176fca2-root {
    text-align: left;
  }


#s-d83a0418-c033-47cd-9795-00e20176fca2.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-d83a0418-c033-47cd-9795-00e20176fca2-root {
    text-align: left;
  }


#s-d83a0418-c033-47cd-9795-00e20176fca2.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d83a0418-c033-47cd-9795-00e20176fca2-root {
    text-align: left;
  }


#s-d83a0418-c033-47cd-9795-00e20176fca2.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d83a0418-c033-47cd-9795-00e20176fca2-root {
    text-align: left;
  }


#s-d83a0418-c033-47cd-9795-00e20176fca2.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-d83a0418-c033-47cd-9795-00e20176fca2-root {
    text-align: center;
  }


#s-d83a0418-c033-47cd-9795-00e20176fca2.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}
#s-bcb12af7-a687-41d6-9b7b-aab6a3e30ec6 {
  padding-top: 30px;
min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-bcb12af7-a687-41d6-9b7b-aab6a3e30ec6 {
  display: none;
}
#s-bcb12af7-a687-41d6-9b7b-aab6a3e30ec6, #wrap-s-bcb12af7-a687-41d6-9b7b-aab6a3e30ec6 { display: none !important; }}@media (max-width: 767px){#s-bcb12af7-a687-41d6-9b7b-aab6a3e30ec6 {
  display: none;
}
#s-bcb12af7-a687-41d6-9b7b-aab6a3e30ec6, #wrap-s-bcb12af7-a687-41d6-9b7b-aab6a3e30ec6 { display: none !important; }}







#s-bcb12af7-a687-41d6-9b7b-aab6a3e30ec6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bcb12af7-a687-41d6-9b7b-aab6a3e30ec6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-79d83b3b-c519-45e9-993d-a37f5d366e81 {
  margin-left: 30px;
margin-right: 30px;
}

@media (min-width: 0px) {
[id="s-79d83b3b-c519-45e9-993d-a37f5d366e81"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-79d83b3b-c519-45e9-993d-a37f5d366e81"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-79d83b3b-c519-45e9-993d-a37f5d366e81"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-79d83b3b-c519-45e9-993d-a37f5d366e81"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-750ce666-0c66-4952-b56c-9e93072c4477 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-750ce666-0c66-4952-b56c-9e93072c4477 img.shogun-image {
    

    
    
    
  }


#s-750ce666-0c66-4952-b56c-9e93072c4477 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-3a3198e5-1f50-4d6c-b563-7a28c6e2e24c {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-3a3198e5-1f50-4d6c-b563-7a28c6e2e24c img.shogun-image {
    

    
    
    
  }


#s-3a3198e5-1f50-4d6c-b563-7a28c6e2e24c .shogun-image-content {
  
    align-items: center;
  
}

#s-f9a9bd04-3416-470a-8ea8-b4fb874900c3 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-f9a9bd04-3416-470a-8ea8-b4fb874900c3 img.shogun-image {
    

    
    
    
  }


#s-f9a9bd04-3416-470a-8ea8-b4fb874900c3 .shogun-image-content {
  
    align-items: center;
  
}

#s-ed5739f7-c675-4608-8aa7-b807c347cd59 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-ed5739f7-c675-4608-8aa7-b807c347cd59 img.shogun-image {
    

    
    
    
  }


#s-ed5739f7-c675-4608-8aa7-b807c347cd59 .shogun-image-content {
  
    align-items: center;
  
}

#s-28c485ac-5250-46ad-b00e-b991671f85c9 {
  padding-top: 20px;
padding-bottom: 50px;
min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-28c485ac-5250-46ad-b00e-b991671f85c9 {
  display: none;
}
#s-28c485ac-5250-46ad-b00e-b991671f85c9, #wrap-s-28c485ac-5250-46ad-b00e-b991671f85c9 { display: none !important; }}@media (max-width: 767px){#s-28c485ac-5250-46ad-b00e-b991671f85c9 {
  display: none;
}
#s-28c485ac-5250-46ad-b00e-b991671f85c9, #wrap-s-28c485ac-5250-46ad-b00e-b991671f85c9 { display: none !important; }}







#s-28c485ac-5250-46ad-b00e-b991671f85c9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-28c485ac-5250-46ad-b00e-b991671f85c9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-31185dbe-1e35-44a0-a697-510a74df6384 {
  margin-left: 30px;
margin-right: 30px;
}

@media (min-width: 0px) {
[id="s-31185dbe-1e35-44a0-a697-510a74df6384"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-31185dbe-1e35-44a0-a697-510a74df6384"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-31185dbe-1e35-44a0-a697-510a74df6384"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-31185dbe-1e35-44a0-a697-510a74df6384"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-539bf3a8-4c8f-4fac-82e9-10a0b743a2eb {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-539bf3a8-4c8f-4fac-82e9-10a0b743a2eb .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-85a330bd-2aaa-46b9-b1a7-ba1649588fe2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-85a330bd-2aaa-46b9-b1a7-ba1649588fe2 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-919f5d51-621b-4280-87aa-e015e2f2fb19 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-919f5d51-621b-4280-87aa-e015e2f2fb19 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-18f0fdaa-df80-4131-9994-4d9cb9c610a6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-18f0fdaa-df80-4131-9994-4d9cb9c610a6 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-67e82c6f-2027-41b8-a004-0981fc01ef99 {
  padding-top: 30px;
padding-bottom: 30px;
min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 1200px){#s-67e82c6f-2027-41b8-a004-0981fc01ef99 {
  display: none;
}
#s-67e82c6f-2027-41b8-a004-0981fc01ef99, #wrap-s-67e82c6f-2027-41b8-a004-0981fc01ef99 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-67e82c6f-2027-41b8-a004-0981fc01ef99 {
  display: none;
}
#s-67e82c6f-2027-41b8-a004-0981fc01ef99, #wrap-s-67e82c6f-2027-41b8-a004-0981fc01ef99 { display: none !important; }}







#s-67e82c6f-2027-41b8-a004-0981fc01ef99 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-67e82c6f-2027-41b8-a004-0981fc01ef99.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3552525f-6ab1-4d41-bc6e-cebc1962cec8 {
  margin-left: 30px;
margin-right: 30px;
}

@media (min-width: 0px) {
[id="s-3552525f-6ab1-4d41-bc6e-cebc1962cec8"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-3552525f-6ab1-4d41-bc6e-cebc1962cec8"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-3552525f-6ab1-4d41-bc6e-cebc1962cec8"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-3552525f-6ab1-4d41-bc6e-cebc1962cec8"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-4d8bfa0f-3b6d-4c32-bdc4-a542c3b02c9a {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-4d8bfa0f-3b6d-4c32-bdc4-a542c3b02c9a img.shogun-image {
    

    
    
    
  }


#s-4d8bfa0f-3b6d-4c32-bdc4-a542c3b02c9a .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-255381ed-6583-48b3-8177-3d36610ffc88 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-255381ed-6583-48b3-8177-3d36610ffc88 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-03174f6f-4d25-4e95-88bd-c3b76becc57e {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-03174f6f-4d25-4e95-88bd-c3b76becc57e img.shogun-image {
    

    
    
    
  }


#s-03174f6f-4d25-4e95-88bd-c3b76becc57e .shogun-image-content {
  
    align-items: center;
  
}

#s-438216d3-7058-404b-aca1-99e32854fa3e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-438216d3-7058-404b-aca1-99e32854fa3e {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-438216d3-7058-404b-aca1-99e32854fa3e .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-12edaaf5-80f2-440a-9124-584acaa3b8b7 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-12edaaf5-80f2-440a-9124-584acaa3b8b7 img.shogun-image {
    

    
    
    
  }


#s-12edaaf5-80f2-440a-9124-584acaa3b8b7 .shogun-image-content {
  
    align-items: center;
  
}

#s-4ba2c606-184c-45c8-9ab8-a10a9ef772aa {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4ba2c606-184c-45c8-9ab8-a10a9ef772aa .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-bdc82c99-bae0-4c81-90ef-7b79af1327cf {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-bdc82c99-bae0-4c81-90ef-7b79af1327cf img.shogun-image {
    

    
    
    
  }


#s-bdc82c99-bae0-4c81-90ef-7b79af1327cf .shogun-image-content {
  
    align-items: center;
  
}

#s-c385f4de-8e05-48bb-84ae-38a42b60da66 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c385f4de-8e05-48bb-84ae-38a42b60da66 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-eeeaa45f-3d72-4aee-802c-03a4a7cb05b4 {
  box-shadow:0px 0px 0px 0px ;
margin-left: 100px;
margin-right: 100px;
padding-top: 100px;
padding-bottom: 100px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-eeeaa45f-3d72-4aee-802c-03a4a7cb05b4 {
  margin-left: 30px;
margin-right: 30px;
}
}@media (max-width: 767px){#s-eeeaa45f-3d72-4aee-802c-03a4a7cb05b4 {
  margin-left: 30px;
margin-right: 30px;
padding-top: 50px;
padding-bottom: 30px;
}
}







#s-eeeaa45f-3d72-4aee-802c-03a4a7cb05b4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-eeeaa45f-3d72-4aee-802c-03a4a7cb05b4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0803ad62-a22d-4f40-a8db-af15363ad6e4 {
  margin-bottom: 50px;
padding-top: 10px;
padding-left: 200px;
padding-bottom: 10px;
padding-right: 200px;
max-width: 100%;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-0803ad62-a22d-4f40-a8db-af15363ad6e4 {
  padding-left: 50px;
padding-right: 50px;
}
}@media (max-width: 767px){#s-0803ad62-a22d-4f40-a8db-af15363ad6e4 {
  margin-left: 10px;
margin-right: 10px;
padding-top: 10px;
padding-left: 15px;
padding-bottom: 10px;
padding-right: 15px;
}
}
#s-0803ad62-a22d-4f40-a8db-af15363ad6e4 .shogun-heading-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-36dd6f04-a134-4352-baaa-9e40150d1131 {
  padding-left: 80px;
padding-right: 80px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-36dd6f04-a134-4352-baaa-9e40150d1131 {
  padding-left: 50px;
padding-right: 50px;
}
}@media (max-width: 767px){#s-36dd6f04-a134-4352-baaa-9e40150d1131 {
  padding-left: 0px;
padding-right: 0px;
}
}
@media (min-width: 0px) {
[id="s-36dd6f04-a134-4352-baaa-9e40150d1131"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-36dd6f04-a134-4352-baaa-9e40150d1131"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-36dd6f04-a134-4352-baaa-9e40150d1131"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-36dd6f04-a134-4352-baaa-9e40150d1131"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

}

#s-ab087b27-626a-4d8b-b440-0a2b94815ab3 {
  padding-top: 30px;
padding-left: 20px;
padding-right: 20px;
text-align: center;
}







  #s-ab087b27-626a-4d8b-b440-0a2b94815ab3 img.shogun-image {
    

    
    
    
  }


#s-ab087b27-626a-4d8b-b440-0a2b94815ab3 .shogun-image-content {
  
    align-items: center;
  
}

#s-f01c7f2b-68bc-4029-9c69-bd7854d16f1c {
  box-shadow:0px 0px 0px 1px rgba(255, 255, 255, 0);
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 0);
border-style: solid;
text-align: center;
}

#s-f01c7f2b-68bc-4029-9c69-bd7854d16f1c .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


#s-f01c7f2b-68bc-4029-9c69-bd7854d16f1c .shogun-heading-component h3 a {
  color: rgba(255, 255, 255, 1);
}


#s-fe32e3b4-a2fb-4b31-a00b-a69e9d5e3be0 {
  padding-top: 30px;
padding-left: 20px;
padding-right: 20px;
text-align: center;
}







  #s-fe32e3b4-a2fb-4b31-a00b-a69e9d5e3be0 img.shogun-image {
    

    
    
    
  }


#s-fe32e3b4-a2fb-4b31-a00b-a69e9d5e3be0 .shogun-image-content {
  
    align-items: center;
  
}

#s-3ced172c-cfe0-49ec-a45e-37881fe65123 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3ced172c-cfe0-49ec-a45e-37881fe65123 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


#s-3ced172c-cfe0-49ec-a45e-37881fe65123 .shogun-heading-component h3 a {
  color: rgba(255, 255, 255, 1);
}


#s-76362a04-d055-4072-a274-106056175436 {
  margin-left: 20px;
margin-right: 20px;
padding-top: 30px;
padding-left: 0px;
padding-right: 0px;
text-align: center;
}







  #s-76362a04-d055-4072-a274-106056175436 img.shogun-image {
    

    
    
    
  }


#s-76362a04-d055-4072-a274-106056175436 .shogun-image-content {
  
    align-items: center;
  
}

#s-48ac1e88-1b40-4d00-81eb-5d7e6ba67863 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-48ac1e88-1b40-4d00-81eb-5d7e6ba67863 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 19px;
  
  
  
}


#s-48ac1e88-1b40-4d00-81eb-5d7e6ba67863 .shogun-heading-component h3 a {
  color: rgba(255, 255, 255, 1);
}


#s-a7d91604-e91d-4a54-b048-bfca809b4a89 {
  margin-left: 20px;
margin-right: 20px;
padding-top: 30px;
padding-left: 0px;
padding-right: 0px;
text-align: center;
}







  #s-a7d91604-e91d-4a54-b048-bfca809b4a89 img.shogun-image {
    

    
    
    
  }


#s-a7d91604-e91d-4a54-b048-bfca809b4a89 .shogun-image-content {
  
    align-items: center;
  
}

#s-ac8d126a-7609-482c-808b-7b989e870945 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ac8d126a-7609-482c-808b-7b989e870945 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


#s-ac8d126a-7609-482c-808b-7b989e870945 .shogun-heading-component h3 a {
  color: rgba(255, 255, 255, 1);
}


#s-89e7fe53-d7c1-4389-b439-34dfc7a60105 {
  box-shadow:0px 1px 6px 1px rgba(0, 0, 0, 0.26);
margin-top: 50px;
margin-left: 50px;
margin-right: 50px;
padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
border-radius: 6px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-89e7fe53-d7c1-4389-b439-34dfc7a60105:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-89e7fe53-d7c1-4389-b439-34dfc7a60105:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-89e7fe53-d7c1-4389-b439-34dfc7a60105 {
  margin-left: 0px;
margin-bottom: 30px;
margin-right: 0px;
padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
}
}

  #s-89e7fe53-d7c1-4389-b439-34dfc7a60105-root {
    text-align: center;
  }


#s-89e7fe53-d7c1-4389-b439-34dfc7a60105.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-89e7fe53-d7c1-4389-b439-34dfc7a60105-root {
    text-align: center;
  }


#s-89e7fe53-d7c1-4389-b439-34dfc7a60105.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-89e7fe53-d7c1-4389-b439-34dfc7a60105-root {
    text-align: center;
  }


#s-89e7fe53-d7c1-4389-b439-34dfc7a60105.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-89e7fe53-d7c1-4389-b439-34dfc7a60105-root {
    text-align: center;
  }


#s-89e7fe53-d7c1-4389-b439-34dfc7a60105.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-89e7fe53-d7c1-4389-b439-34dfc7a60105-root {
    text-align: center;
  }


#s-89e7fe53-d7c1-4389-b439-34dfc7a60105.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}
#s-4060757e-900f-4f10-abbc-31ff6519d7c9 {
  box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 1);
padding-top: 50px;
padding-left: 50px;
padding-bottom: 50px;
padding-right: 50px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
min-height: 50px;
background-color: rgba(249, 249, 249, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-4060757e-900f-4f10-abbc-31ff6519d7c9 {
  padding-left: 30px;
padding-right: 30px;
display: none;
}
#s-4060757e-900f-4f10-abbc-31ff6519d7c9, #wrap-s-4060757e-900f-4f10-abbc-31ff6519d7c9 { display: none !important; }}@media (max-width: 767px){#s-4060757e-900f-4f10-abbc-31ff6519d7c9 {
  padding-left: 0px;
padding-right: 0px;
display: none;
}
#s-4060757e-900f-4f10-abbc-31ff6519d7c9, #wrap-s-4060757e-900f-4f10-abbc-31ff6519d7c9 { display: none !important; }}







#s-4060757e-900f-4f10-abbc-31ff6519d7c9 > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-4060757e-900f-4f10-abbc-31ff6519d7c9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-33be2ec0-2225-403f-9593-1162f3c854e3 {
  margin-left: 30px;
margin-right: 30px;
padding-top: 100px;
padding-bottom: 100px;
}
@media (min-width: 768px) and (max-width: 991px){#s-33be2ec0-2225-403f-9593-1162f3c854e3 {
  padding-top: 50px;
padding-bottom: 50px;
}
}@media (max-width: 767px){#s-33be2ec0-2225-403f-9593-1162f3c854e3 {
  padding-top: 50px;
padding-left: 0px;
padding-bottom: 50px;
padding-right: 0px;
}
}
@media (min-width: 0px) {
[id="s-33be2ec0-2225-403f-9593-1162f3c854e3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-33be2ec0-2225-403f-9593-1162f3c854e3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-33be2ec0-2225-403f-9593-1162f3c854e3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-33be2ec0-2225-403f-9593-1162f3c854e3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 992px) and (max-width: 1199px){#s-a9f9cfa5-3c63-4c13-8160-328fb5dccd22 {
  display: none;
}
#s-a9f9cfa5-3c63-4c13-8160-328fb5dccd22, #wrap-s-a9f9cfa5-3c63-4c13-8160-328fb5dccd22 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a9f9cfa5-3c63-4c13-8160-328fb5dccd22 {
  display: none;
}
#s-a9f9cfa5-3c63-4c13-8160-328fb5dccd22, #wrap-s-a9f9cfa5-3c63-4c13-8160-328fb5dccd22 { display: none !important; }}@media (max-width: 767px){#s-a9f9cfa5-3c63-4c13-8160-328fb5dccd22 {
  display: none;
}
#s-a9f9cfa5-3c63-4c13-8160-328fb5dccd22, #wrap-s-a9f9cfa5-3c63-4c13-8160-328fb5dccd22 { display: none !important; }}
@media (min-width: 0px) {
[id="s-a9f9cfa5-3c63-4c13-8160-328fb5dccd22"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a9f9cfa5-3c63-4c13-8160-328fb5dccd22"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-a9f9cfa5-3c63-4c13-8160-328fb5dccd22"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-a9f9cfa5-3c63-4c13-8160-328fb5dccd22"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

.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-8649a979-4f04-4ff1-924f-581487ca740b {
  margin-top: 10px;
margin-bottom: 10px;
text-align: left;
}



.shg-c#s-8649a979-4f04-4ff1-924f-581487ca740b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8649a979-4f04-4ff1-924f-581487ca740b img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-8649a979-4f04-4ff1-924f-581487ca740b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8649a979-4f04-4ff1-924f-581487ca740b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8649a979-4f04-4ff1-924f-581487ca740b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8649a979-4f04-4ff1-924f-581487ca740b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8649a979-4f04-4ff1-924f-581487ca740b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8649a979-4f04-4ff1-924f-581487ca740b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8649a979-4f04-4ff1-924f-581487ca740b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8649a979-4f04-4ff1-924f-581487ca740b 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-2da87622-9973-47fa-9058-fbba6b932b01 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-2da87622-9973-47fa-9058-fbba6b932b01 .shg-product-title-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-79203cfc-686d-4c5e-8faf-cf5f06680c0b {
  
}

#s-79203cfc-686d-4c5e-8faf-cf5f06680c0b .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-79203cfc-686d-4c5e-8faf-cf5f06680c0b .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-79203cfc-686d-4c5e-8faf-cf5f06680c0b .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-f78615b5-6529-4f79-aa7d-9e61f22d9e70 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: left;
}



.shg-c#s-f78615b5-6529-4f79-aa7d-9e61f22d9e70 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f78615b5-6529-4f79-aa7d-9e61f22d9e70 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-f78615b5-6529-4f79-aa7d-9e61f22d9e70 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f78615b5-6529-4f79-aa7d-9e61f22d9e70 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f78615b5-6529-4f79-aa7d-9e61f22d9e70 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f78615b5-6529-4f79-aa7d-9e61f22d9e70 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f78615b5-6529-4f79-aa7d-9e61f22d9e70 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f78615b5-6529-4f79-aa7d-9e61f22d9e70 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f78615b5-6529-4f79-aa7d-9e61f22d9e70 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f78615b5-6529-4f79-aa7d-9e61f22d9e70 img.shogun-image {
  width: 100%;
}



}
#s-b7dc223f-006a-4cd8-b761-c7f7ee64e59b {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-b7dc223f-006a-4cd8-b761-c7f7ee64e59b .shg-product-title-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-c04827ba-69e6-4ac0-bd7c-3a4adc410b2f {
  
}

#s-c04827ba-69e6-4ac0-bd7c-3a4adc410b2f .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-c04827ba-69e6-4ac0-bd7c-3a4adc410b2f .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-c04827ba-69e6-4ac0-bd7c-3a4adc410b2f .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-264e955e-70fb-4513-a005-0852cf1d1a91 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: left;
}



.shg-c#s-264e955e-70fb-4513-a005-0852cf1d1a91 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-264e955e-70fb-4513-a005-0852cf1d1a91 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-264e955e-70fb-4513-a005-0852cf1d1a91 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-264e955e-70fb-4513-a005-0852cf1d1a91 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-264e955e-70fb-4513-a005-0852cf1d1a91 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-264e955e-70fb-4513-a005-0852cf1d1a91 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-264e955e-70fb-4513-a005-0852cf1d1a91 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-264e955e-70fb-4513-a005-0852cf1d1a91 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-264e955e-70fb-4513-a005-0852cf1d1a91 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-264e955e-70fb-4513-a005-0852cf1d1a91 img.shogun-image {
  width: 100%;
}



}
#s-08986a1e-fb3a-4e49-8b43-91f0a102db93 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-08986a1e-fb3a-4e49-8b43-91f0a102db93 .shg-product-title-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-61ec0020-5657-4380-ac5b-8d6ec695b749 {
  
}

#s-61ec0020-5657-4380-ac5b-8d6ec695b749 .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-61ec0020-5657-4380-ac5b-8d6ec695b749 .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-61ec0020-5657-4380-ac5b-8d6ec695b749 .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;
}

@media (min-width: 1200px){#s-599de5f6-2a35-42e2-9fad-c7977fc7e479 {
  display: none;
}
#s-599de5f6-2a35-42e2-9fad-c7977fc7e479, #wrap-s-599de5f6-2a35-42e2-9fad-c7977fc7e479 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-599de5f6-2a35-42e2-9fad-c7977fc7e479 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-599de5f6-2a35-42e2-9fad-c7977fc7e479 {
  display: none;
}
#s-599de5f6-2a35-42e2-9fad-c7977fc7e479, #wrap-s-599de5f6-2a35-42e2-9fad-c7977fc7e479 { display: none !important; }}@media (max-width: 767px){#s-599de5f6-2a35-42e2-9fad-c7977fc7e479 {
  display: none;
}
#s-599de5f6-2a35-42e2-9fad-c7977fc7e479, #wrap-s-599de5f6-2a35-42e2-9fad-c7977fc7e479 { display: none !important; }}
@media (min-width: 0px) {
[id="s-599de5f6-2a35-42e2-9fad-c7977fc7e479"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-599de5f6-2a35-42e2-9fad-c7977fc7e479"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-599de5f6-2a35-42e2-9fad-c7977fc7e479"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-599de5f6-2a35-42e2-9fad-c7977fc7e479"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-cbb6357d-c5ce-4c0e-bca3-1d352f5102d8 {
  text-align: left;
}



.shg-c#s-cbb6357d-c5ce-4c0e-bca3-1d352f5102d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cbb6357d-c5ce-4c0e-bca3-1d352f5102d8 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-cbb6357d-c5ce-4c0e-bca3-1d352f5102d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cbb6357d-c5ce-4c0e-bca3-1d352f5102d8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-cbb6357d-c5ce-4c0e-bca3-1d352f5102d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cbb6357d-c5ce-4c0e-bca3-1d352f5102d8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-cbb6357d-c5ce-4c0e-bca3-1d352f5102d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cbb6357d-c5ce-4c0e-bca3-1d352f5102d8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-cbb6357d-c5ce-4c0e-bca3-1d352f5102d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cbb6357d-c5ce-4c0e-bca3-1d352f5102d8 img.shogun-image {
  width: 100%;
}



}
#s-b1680f5b-18e9-4ffb-b89b-74267d946b08 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-b1680f5b-18e9-4ffb-b89b-74267d946b08 .shg-product-title-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-b39e1f63-cbe4-4664-a5ed-25ad3391dee1 {
  
}

#s-b39e1f63-cbe4-4664-a5ed-25ad3391dee1 .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-b39e1f63-cbe4-4664-a5ed-25ad3391dee1 .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-b39e1f63-cbe4-4664-a5ed-25ad3391dee1 .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-f0dd771c-4eff-4a3d-b6a2-556b0d91b7de {
  text-align: left;
}



.shg-c#s-f0dd771c-4eff-4a3d-b6a2-556b0d91b7de .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f0dd771c-4eff-4a3d-b6a2-556b0d91b7de img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-f0dd771c-4eff-4a3d-b6a2-556b0d91b7de .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f0dd771c-4eff-4a3d-b6a2-556b0d91b7de img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f0dd771c-4eff-4a3d-b6a2-556b0d91b7de .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f0dd771c-4eff-4a3d-b6a2-556b0d91b7de img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f0dd771c-4eff-4a3d-b6a2-556b0d91b7de .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f0dd771c-4eff-4a3d-b6a2-556b0d91b7de img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f0dd771c-4eff-4a3d-b6a2-556b0d91b7de .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f0dd771c-4eff-4a3d-b6a2-556b0d91b7de img.shogun-image {
  width: 100%;
}



}
#s-6d8e3dfb-7e0d-44c4-b3c8-c77cc642b2ee {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-6d8e3dfb-7e0d-44c4-b3c8-c77cc642b2ee .shg-product-title-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-59ff69de-400b-41ac-90da-eaf365823cfb {
  
}

#s-59ff69de-400b-41ac-90da-eaf365823cfb .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-59ff69de-400b-41ac-90da-eaf365823cfb .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-59ff69de-400b-41ac-90da-eaf365823cfb .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-e25c43da-7342-46b5-b982-cb6c7e84ffe7 {
  margin-left: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-e25c43da-7342-46b5-b982-cb6c7e84ffe7 .shogun-heading-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: left;
}



#s-0496a7c6-4787-4ad4-bdba-58146eef4d3d {
  margin-left: 20px;
margin-bottom: 10px;
}
@media (max-width: 767px){#s-0496a7c6-4787-4ad4-bdba-58146eef4d3d {
  display: none;
}
#s-0496a7c6-4787-4ad4-bdba-58146eef4d3d, #wrap-s-0496a7c6-4787-4ad4-bdba-58146eef4d3d { display: none !important; }}
@media (min-width: 1200px){#s-414b0e3a-8de0-451c-9d2b-e0a1d87e473e {
  display: none;
}
#s-414b0e3a-8de0-451c-9d2b-e0a1d87e473e, #wrap-s-414b0e3a-8de0-451c-9d2b-e0a1d87e473e { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-414b0e3a-8de0-451c-9d2b-e0a1d87e473e {
  display: none;
}
#s-414b0e3a-8de0-451c-9d2b-e0a1d87e473e, #wrap-s-414b0e3a-8de0-451c-9d2b-e0a1d87e473e { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-414b0e3a-8de0-451c-9d2b-e0a1d87e473e {
  
}
}@media (max-width: 767px){#s-414b0e3a-8de0-451c-9d2b-e0a1d87e473e {
  display: none;
}
#s-414b0e3a-8de0-451c-9d2b-e0a1d87e473e, #wrap-s-414b0e3a-8de0-451c-9d2b-e0a1d87e473e { display: none !important; }}
@media (min-width: 1200px){#s-80b42d6a-b87f-483a-b5e4-e9a0355269ba {
  display: none;
}
#s-80b42d6a-b87f-483a-b5e4-e9a0355269ba, #wrap-s-80b42d6a-b87f-483a-b5e4-e9a0355269ba { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-80b42d6a-b87f-483a-b5e4-e9a0355269ba {
  display: none;
}
#s-80b42d6a-b87f-483a-b5e4-e9a0355269ba, #wrap-s-80b42d6a-b87f-483a-b5e4-e9a0355269ba { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-80b42d6a-b87f-483a-b5e4-e9a0355269ba {
  
}
}@media (max-width: 767px){#s-80b42d6a-b87f-483a-b5e4-e9a0355269ba {
  display: none;
}
#s-80b42d6a-b87f-483a-b5e4-e9a0355269ba, #wrap-s-80b42d6a-b87f-483a-b5e4-e9a0355269ba { display: none !important; }}
@media (min-width: 1200px){#s-8de3943b-db15-4ac8-ba0e-b6c4c1f8a4c0 {
  display: none;
}
#s-8de3943b-db15-4ac8-ba0e-b6c4c1f8a4c0, #wrap-s-8de3943b-db15-4ac8-ba0e-b6c4c1f8a4c0 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8de3943b-db15-4ac8-ba0e-b6c4c1f8a4c0 {
  display: none;
}
#s-8de3943b-db15-4ac8-ba0e-b6c4c1f8a4c0, #wrap-s-8de3943b-db15-4ac8-ba0e-b6c4c1f8a4c0 { display: none !important; }}@media (max-width: 767px){#s-8de3943b-db15-4ac8-ba0e-b6c4c1f8a4c0 {
  display: none;
}
#s-8de3943b-db15-4ac8-ba0e-b6c4c1f8a4c0, #wrap-s-8de3943b-db15-4ac8-ba0e-b6c4c1f8a4c0 { display: none !important; }}
#s-cc4d2958-9d60-4132-ba5f-d181ee8a08bc {
  box-shadow:0px 1px 6px 1px rgba(0, 0, 0, 0.26);
margin-left: 20px;
padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
border-radius: 6px;
background-color: rgba(0, 0, 0, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-cc4d2958-9d60-4132-ba5f-d181ee8a08bc:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-cc4d2958-9d60-4132-ba5f-d181ee8a08bc:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-cc4d2958-9d60-4132-ba5f-d181ee8a08bc-root {
    text-align: left;
  }


#s-cc4d2958-9d60-4132-ba5f-d181ee8a08bc.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-cc4d2958-9d60-4132-ba5f-d181ee8a08bc-root {
    text-align: left;
  }


#s-cc4d2958-9d60-4132-ba5f-d181ee8a08bc.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-cc4d2958-9d60-4132-ba5f-d181ee8a08bc-root {
    text-align: left;
  }


#s-cc4d2958-9d60-4132-ba5f-d181ee8a08bc.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-cc4d2958-9d60-4132-ba5f-d181ee8a08bc-root {
    text-align: left;
  }


#s-cc4d2958-9d60-4132-ba5f-d181ee8a08bc.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-cc4d2958-9d60-4132-ba5f-d181ee8a08bc-root {
    text-align: left;
  }


#s-cc4d2958-9d60-4132-ba5f-d181ee8a08bc.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}
#s-c7dd0b28-f487-496d-ae91-287434ea49df {
  box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 1);
padding-top: 50px;
padding-left: 50px;
padding-bottom: 50px;
padding-right: 50px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
min-height: 50px;
background-color: rgba(249, 249, 249, 1);
}
@media (min-width: 1200px){#s-c7dd0b28-f487-496d-ae91-287434ea49df {
  display: none;
}
#s-c7dd0b28-f487-496d-ae91-287434ea49df, #wrap-s-c7dd0b28-f487-496d-ae91-287434ea49df { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c7dd0b28-f487-496d-ae91-287434ea49df {
  display: none;
}
#s-c7dd0b28-f487-496d-ae91-287434ea49df, #wrap-s-c7dd0b28-f487-496d-ae91-287434ea49df { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c7dd0b28-f487-496d-ae91-287434ea49df {
  
}
}@media (max-width: 767px){#s-c7dd0b28-f487-496d-ae91-287434ea49df {
  padding-left: 0px;
padding-right: 0px;
}
}







#s-c7dd0b28-f487-496d-ae91-287434ea49df > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-c7dd0b28-f487-496d-ae91-287434ea49df.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4f02f47d-2b9a-491a-a288-7a99e2b5c05f {
  margin-left: 30px;
margin-right: 30px;
}

@media (min-width: 0px) {
[id="s-4f02f47d-2b9a-491a-a288-7a99e2b5c05f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4f02f47d-2b9a-491a-a288-7a99e2b5c05f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4f02f47d-2b9a-491a-a288-7a99e2b5c05f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4f02f47d-2b9a-491a-a288-7a99e2b5c05f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-5505022d-fe76-4ff9-8e94-06aebbd6ea13 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-5505022d-fe76-4ff9-8e94-06aebbd6ea13 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
}
#s-5505022d-fe76-4ff9-8e94-06aebbd6ea13 .shogun-heading-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-5505022d-fe76-4ff9-8e94-06aebbd6ea13 .shogun-heading-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: center;
}


}
@media (min-width: 768px) and (max-width: 991px){#s-88e5d374-4d53-48e3-a5ea-95bcf911cca1 {
  display: none;
}
#s-88e5d374-4d53-48e3-a5ea-95bcf911cca1, #wrap-s-88e5d374-4d53-48e3-a5ea-95bcf911cca1 { display: none !important; }}@media (max-width: 767px){#s-88e5d374-4d53-48e3-a5ea-95bcf911cca1 {
  display: none;
}
#s-88e5d374-4d53-48e3-a5ea-95bcf911cca1, #wrap-s-88e5d374-4d53-48e3-a5ea-95bcf911cca1 { display: none !important; }}
@media (min-width: 1200px){#s-47ab9a60-b1de-4a75-a453-ebba620f8009 {
  display: none;
}
#s-47ab9a60-b1de-4a75-a453-ebba620f8009, #wrap-s-47ab9a60-b1de-4a75-a453-ebba620f8009 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-47ab9a60-b1de-4a75-a453-ebba620f8009 {
  display: none;
}
#s-47ab9a60-b1de-4a75-a453-ebba620f8009, #wrap-s-47ab9a60-b1de-4a75-a453-ebba620f8009 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-47ab9a60-b1de-4a75-a453-ebba620f8009 {
  
}
}@media (max-width: 767px){#s-47ab9a60-b1de-4a75-a453-ebba620f8009 {
  display: none;
}
#s-47ab9a60-b1de-4a75-a453-ebba620f8009, #wrap-s-47ab9a60-b1de-4a75-a453-ebba620f8009 { display: none !important; }}
@media (min-width: 1200px){#s-6f027cbf-3142-4c4f-b6ea-97996b0be8fa {
  display: none;
}
#s-6f027cbf-3142-4c4f-b6ea-97996b0be8fa, #wrap-s-6f027cbf-3142-4c4f-b6ea-97996b0be8fa { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6f027cbf-3142-4c4f-b6ea-97996b0be8fa {
  display: none;
}
#s-6f027cbf-3142-4c4f-b6ea-97996b0be8fa, #wrap-s-6f027cbf-3142-4c4f-b6ea-97996b0be8fa { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-6f027cbf-3142-4c4f-b6ea-97996b0be8fa {
  display: none;
}
#s-6f027cbf-3142-4c4f-b6ea-97996b0be8fa, #wrap-s-6f027cbf-3142-4c4f-b6ea-97996b0be8fa { display: none !important; }}@media (max-width: 767px){#s-6f027cbf-3142-4c4f-b6ea-97996b0be8fa {
  
}
}
#s-ea1eb1ba-e3e6-4f18-be73-f4d5a295ccad {
  box-shadow:0px 1px 6px 1px rgba(0, 0, 0, 0.26);
padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
border-radius: 6px;
background-color: rgba(0, 0, 0, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-ea1eb1ba-e3e6-4f18-be73-f4d5a295ccad:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ea1eb1ba-e3e6-4f18-be73-f4d5a295ccad:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-ea1eb1ba-e3e6-4f18-be73-f4d5a295ccad {
  display: none;
}
#s-ea1eb1ba-e3e6-4f18-be73-f4d5a295ccad, #wrap-s-ea1eb1ba-e3e6-4f18-be73-f4d5a295ccad { display: none !important; }}@media (max-width: 767px){#s-ea1eb1ba-e3e6-4f18-be73-f4d5a295ccad {
  display: none;
}
#s-ea1eb1ba-e3e6-4f18-be73-f4d5a295ccad, #wrap-s-ea1eb1ba-e3e6-4f18-be73-f4d5a295ccad { display: none !important; }}

  #s-ea1eb1ba-e3e6-4f18-be73-f4d5a295ccad-root {
    text-align: left;
  }


#s-ea1eb1ba-e3e6-4f18-be73-f4d5a295ccad.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ea1eb1ba-e3e6-4f18-be73-f4d5a295ccad-root {
    text-align: left;
  }


#s-ea1eb1ba-e3e6-4f18-be73-f4d5a295ccad.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ea1eb1ba-e3e6-4f18-be73-f4d5a295ccad-root {
    text-align: left;
  }


#s-ea1eb1ba-e3e6-4f18-be73-f4d5a295ccad.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ea1eb1ba-e3e6-4f18-be73-f4d5a295ccad-root {
    text-align: left;
  }


#s-ea1eb1ba-e3e6-4f18-be73-f4d5a295ccad.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ea1eb1ba-e3e6-4f18-be73-f4d5a295ccad-root {
    text-align: left;
  }


#s-ea1eb1ba-e3e6-4f18-be73-f4d5a295ccad.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}
#s-f4f6af3f-bb72-4c8b-bb2b-52e195bc7a72 {
  box-shadow:0px 1px 6px 1px rgba(0, 0, 0, 0.26);
margin-top: 20px;
margin-bottom: 20px;
padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
border-radius: 6px;
background-color: rgba(0, 0, 0, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-f4f6af3f-bb72-4c8b-bb2b-52e195bc7a72:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-f4f6af3f-bb72-4c8b-bb2b-52e195bc7a72:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-f4f6af3f-bb72-4c8b-bb2b-52e195bc7a72 {
  display: none;
}
#s-f4f6af3f-bb72-4c8b-bb2b-52e195bc7a72, #wrap-s-f4f6af3f-bb72-4c8b-bb2b-52e195bc7a72 { display: none !important; }}

  #s-f4f6af3f-bb72-4c8b-bb2b-52e195bc7a72-root {
    text-align: left;
  }


#s-f4f6af3f-bb72-4c8b-bb2b-52e195bc7a72.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-f4f6af3f-bb72-4c8b-bb2b-52e195bc7a72-root {
    text-align: left;
  }


#s-f4f6af3f-bb72-4c8b-bb2b-52e195bc7a72.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f4f6af3f-bb72-4c8b-bb2b-52e195bc7a72-root {
    text-align: left;
  }


#s-f4f6af3f-bb72-4c8b-bb2b-52e195bc7a72.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f4f6af3f-bb72-4c8b-bb2b-52e195bc7a72-root {
    text-align: left;
  }


#s-f4f6af3f-bb72-4c8b-bb2b-52e195bc7a72.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-f4f6af3f-bb72-4c8b-bb2b-52e195bc7a72-root {
    text-align: left;
  }


#s-f4f6af3f-bb72-4c8b-bb2b-52e195bc7a72.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}
@media (min-width: 0px) {
[id="s-18edbbdc-22ec-441a-a880-9f7edac32bf4"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-18edbbdc-22ec-441a-a880-9f7edac32bf4"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-18edbbdc-22ec-441a-a880-9f7edac32bf4"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-18edbbdc-22ec-441a-a880-9f7edac32bf4"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px){#s-43cf7932-565f-4631-b682-503e8d8e0c38 {
  display: none;
}
#s-43cf7932-565f-4631-b682-503e8d8e0c38, #wrap-s-43cf7932-565f-4631-b682-503e8d8e0c38 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-43cf7932-565f-4631-b682-503e8d8e0c38 {
  display: none;
}
#s-43cf7932-565f-4631-b682-503e8d8e0c38, #wrap-s-43cf7932-565f-4631-b682-503e8d8e0c38 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-43cf7932-565f-4631-b682-503e8d8e0c38 {
  display: none;
}
#s-43cf7932-565f-4631-b682-503e8d8e0c38, #wrap-s-43cf7932-565f-4631-b682-503e8d8e0c38 { display: none !important; }}@media (max-width: 767px){#s-43cf7932-565f-4631-b682-503e8d8e0c38 {
  
}
}
#s-6d9501da-da26-42e1-bb4a-32726deed10a {
  text-align: left;
}



.shg-c#s-6d9501da-da26-42e1-bb4a-32726deed10a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6d9501da-da26-42e1-bb4a-32726deed10a img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-6d9501da-da26-42e1-bb4a-32726deed10a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6d9501da-da26-42e1-bb4a-32726deed10a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6d9501da-da26-42e1-bb4a-32726deed10a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6d9501da-da26-42e1-bb4a-32726deed10a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6d9501da-da26-42e1-bb4a-32726deed10a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6d9501da-da26-42e1-bb4a-32726deed10a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6d9501da-da26-42e1-bb4a-32726deed10a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6d9501da-da26-42e1-bb4a-32726deed10a img.shogun-image {
  width: 100%;
}



}
#s-2fa7ce09-dee4-4bd2-bb58-b9d4146e4efb {
  text-align: left;
}



.shg-c#s-2fa7ce09-dee4-4bd2-bb58-b9d4146e4efb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2fa7ce09-dee4-4bd2-bb58-b9d4146e4efb img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-2fa7ce09-dee4-4bd2-bb58-b9d4146e4efb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2fa7ce09-dee4-4bd2-bb58-b9d4146e4efb img.shogun-image {
  width: 100%;
}



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

.shg-c#s-2fa7ce09-dee4-4bd2-bb58-b9d4146e4efb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2fa7ce09-dee4-4bd2-bb58-b9d4146e4efb img.shogun-image {
  width: 100%;
}



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

.shg-c#s-2fa7ce09-dee4-4bd2-bb58-b9d4146e4efb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2fa7ce09-dee4-4bd2-bb58-b9d4146e4efb img.shogun-image {
  width: 100%;
}



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

.shg-c#s-2fa7ce09-dee4-4bd2-bb58-b9d4146e4efb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2fa7ce09-dee4-4bd2-bb58-b9d4146e4efb img.shogun-image {
  width: 100%;
}



}
#s-da8800aa-fdef-4e6f-9530-caf16fcea250 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
}

#s-da8800aa-fdef-4e6f-9530-caf16fcea250 .shg-product-title-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-13a6769e-03d2-4d12-abce-3d8a866bd087 {
  
}

#s-13a6769e-03d2-4d12-abce-3d8a866bd087 .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-13a6769e-03d2-4d12-abce-3d8a866bd087 .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-13a6769e-03d2-4d12-abce-3d8a866bd087 .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-171131d0-91da-4cdc-98b4-1d0050fa6dfe {
  margin-top: 20px;
margin-bottom: 20px;
}
@media (min-width: 1200px){#s-171131d0-91da-4cdc-98b4-1d0050fa6dfe {
  display: none;
}
#s-171131d0-91da-4cdc-98b4-1d0050fa6dfe, #wrap-s-171131d0-91da-4cdc-98b4-1d0050fa6dfe { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-171131d0-91da-4cdc-98b4-1d0050fa6dfe {
  display: none;
}
#s-171131d0-91da-4cdc-98b4-1d0050fa6dfe, #wrap-s-171131d0-91da-4cdc-98b4-1d0050fa6dfe { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-171131d0-91da-4cdc-98b4-1d0050fa6dfe {
  display: none;
}
#s-171131d0-91da-4cdc-98b4-1d0050fa6dfe, #wrap-s-171131d0-91da-4cdc-98b4-1d0050fa6dfe { display: none !important; }}
#s-9bf1c679-bab4-407c-a7b8-b66829080c42 {
  text-align: left;
}



.shg-c#s-9bf1c679-bab4-407c-a7b8-b66829080c42 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9bf1c679-bab4-407c-a7b8-b66829080c42 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-9bf1c679-bab4-407c-a7b8-b66829080c42 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9bf1c679-bab4-407c-a7b8-b66829080c42 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9bf1c679-bab4-407c-a7b8-b66829080c42 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9bf1c679-bab4-407c-a7b8-b66829080c42 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9bf1c679-bab4-407c-a7b8-b66829080c42 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9bf1c679-bab4-407c-a7b8-b66829080c42 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9bf1c679-bab4-407c-a7b8-b66829080c42 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9bf1c679-bab4-407c-a7b8-b66829080c42 img.shogun-image {
  width: 100%;
}



}
#s-b22d2420-2452-4f1f-a994-5386f0374762 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
}

#s-b22d2420-2452-4f1f-a994-5386f0374762 .shg-product-title-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-f940cb29-c2f5-4667-91a5-d8ccc48afe3e {
  
}

#s-f940cb29-c2f5-4667-91a5-d8ccc48afe3e .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-f940cb29-c2f5-4667-91a5-d8ccc48afe3e .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-f940cb29-c2f5-4667-91a5-d8ccc48afe3e .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-c0e7beaa-d7d0-4739-94cb-4a13a73cbe12 {
  box-shadow:0px 1px 6px 1px rgba(0, 0, 0, 0.26);
margin-top: 30px;
margin-bottom: 20px;
padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
border-radius: 6px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-c0e7beaa-d7d0-4739-94cb-4a13a73cbe12:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c0e7beaa-d7d0-4739-94cb-4a13a73cbe12:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-c0e7beaa-d7d0-4739-94cb-4a13a73cbe12 {
  box-shadow:0px 1px 6px 1px rgba(0, 0, 0, 0.26);
margin-bottom: 20px;
padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
border-radius: 6px;
background-color: rgba(0, 0, 0, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-c0e7beaa-d7d0-4739-94cb-4a13a73cbe12:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c0e7beaa-d7d0-4739-94cb-4a13a73cbe12:active {background-color: #000000 !important;
text-decoration: none !important;}}@media (min-width: 768px) and (max-width: 991px){#s-c0e7beaa-d7d0-4739-94cb-4a13a73cbe12 {
  text-align: left;
display: none;
}
#s-c0e7beaa-d7d0-4739-94cb-4a13a73cbe12, #wrap-s-c0e7beaa-d7d0-4739-94cb-4a13a73cbe12 { display: none !important; }}

  #s-c0e7beaa-d7d0-4739-94cb-4a13a73cbe12-root {
    text-align: center;
  }


#s-c0e7beaa-d7d0-4739-94cb-4a13a73cbe12.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c0e7beaa-d7d0-4739-94cb-4a13a73cbe12-root {
    text-align: left;
  }


#s-c0e7beaa-d7d0-4739-94cb-4a13a73cbe12.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c0e7beaa-d7d0-4739-94cb-4a13a73cbe12-root {
    text-align: center;
  }


#s-c0e7beaa-d7d0-4739-94cb-4a13a73cbe12.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c0e7beaa-d7d0-4739-94cb-4a13a73cbe12-root {
    text-align: left;
  }


#s-c0e7beaa-d7d0-4739-94cb-4a13a73cbe12.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c0e7beaa-d7d0-4739-94cb-4a13a73cbe12-root {
    text-align: center;
  }


#s-c0e7beaa-d7d0-4739-94cb-4a13a73cbe12.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}
@media (min-width: 1200px){#s-ca5887a4-2ee5-4a98-a030-59974307fa0d {
  display: none;
}
#s-ca5887a4-2ee5-4a98-a030-59974307fa0d, #wrap-s-ca5887a4-2ee5-4a98-a030-59974307fa0d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ca5887a4-2ee5-4a98-a030-59974307fa0d {
  display: none;
}
#s-ca5887a4-2ee5-4a98-a030-59974307fa0d, #wrap-s-ca5887a4-2ee5-4a98-a030-59974307fa0d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ca5887a4-2ee5-4a98-a030-59974307fa0d {
  
}
}@media (max-width: 767px){#s-ca5887a4-2ee5-4a98-a030-59974307fa0d {
  display: none;
}
#s-ca5887a4-2ee5-4a98-a030-59974307fa0d, #wrap-s-ca5887a4-2ee5-4a98-a030-59974307fa0d { display: none !important; }}
@media (min-width: 0px) {
[id="s-ca5887a4-2ee5-4a98-a030-59974307fa0d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ca5887a4-2ee5-4a98-a030-59974307fa0d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ca5887a4-2ee5-4a98-a030-59974307fa0d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ca5887a4-2ee5-4a98-a030-59974307fa0d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-5bec9cae-713d-480e-99c1-d03c9d3c3207 {
  margin-top: 20px;
margin-bottom: 20px;
}

#s-fc2d0569-c219-4f1b-ba4d-e80c8b9e0190 {
  text-align: left;
}



.shg-c#s-fc2d0569-c219-4f1b-ba4d-e80c8b9e0190 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fc2d0569-c219-4f1b-ba4d-e80c8b9e0190 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-fc2d0569-c219-4f1b-ba4d-e80c8b9e0190 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fc2d0569-c219-4f1b-ba4d-e80c8b9e0190 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-fc2d0569-c219-4f1b-ba4d-e80c8b9e0190 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fc2d0569-c219-4f1b-ba4d-e80c8b9e0190 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-fc2d0569-c219-4f1b-ba4d-e80c8b9e0190 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fc2d0569-c219-4f1b-ba4d-e80c8b9e0190 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-fc2d0569-c219-4f1b-ba4d-e80c8b9e0190 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fc2d0569-c219-4f1b-ba4d-e80c8b9e0190 img.shogun-image {
  width: 100%;
}



}
#s-bbae4e84-dcb0-4aa6-bca5-da1742465a1b {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
}

#s-bbae4e84-dcb0-4aa6-bca5-da1742465a1b .shg-product-title-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-f978487e-3618-41a6-8685-5e98f09f2d6e {
  
}

#s-f978487e-3618-41a6-8685-5e98f09f2d6e .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-f978487e-3618-41a6-8685-5e98f09f2d6e .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-f978487e-3618-41a6-8685-5e98f09f2d6e .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-c8046af8-9a6c-4a7c-addf-2a885e36f4db {
  margin-top: 20px;
margin-bottom: 20px;
}

#s-c57b6099-d9b9-491d-9def-108673b8bdca {
  text-align: left;
}



.shg-c#s-c57b6099-d9b9-491d-9def-108673b8bdca .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c57b6099-d9b9-491d-9def-108673b8bdca img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-c57b6099-d9b9-491d-9def-108673b8bdca .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c57b6099-d9b9-491d-9def-108673b8bdca img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c57b6099-d9b9-491d-9def-108673b8bdca .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c57b6099-d9b9-491d-9def-108673b8bdca img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c57b6099-d9b9-491d-9def-108673b8bdca .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c57b6099-d9b9-491d-9def-108673b8bdca img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c57b6099-d9b9-491d-9def-108673b8bdca .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c57b6099-d9b9-491d-9def-108673b8bdca img.shogun-image {
  width: 100%;
}



}
#s-9d61345d-f9eb-45c6-a917-d6dc437cea41 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
}

#s-9d61345d-f9eb-45c6-a917-d6dc437cea41 .shg-product-title-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-0b8b15d2-e06d-45f0-ba17-478165f996cd {
  
}

#s-0b8b15d2-e06d-45f0-ba17-478165f996cd .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-0b8b15d2-e06d-45f0-ba17-478165f996cd .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-0b8b15d2-e06d-45f0-ba17-478165f996cd .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-31909dbd-953d-40c3-8792-b7af4cf3a1c9 {
  padding-top: 100px;
padding-left: 50px;
padding-bottom: 100px;
padding-right: 50px;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-31909dbd-953d-40c3-8792-b7af4cf3a1c9 {
  padding-left: 30px;
padding-right: 30px;
}
}@media (max-width: 767px){#s-31909dbd-953d-40c3-8792-b7af4cf3a1c9 {
  padding-left: 20px;
padding-right: 20px;
}
}







#s-31909dbd-953d-40c3-8792-b7af4cf3a1c9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-31909dbd-953d-40c3-8792-b7af4cf3a1c9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6b0328fc-6bf9-4656-87db-f6572c29e650 {
  margin-bottom: 30px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6b0328fc-6bf9-4656-87db-f6572c29e650 .shogun-heading-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-0fb6f8be-de68-49a7-88e0-5a36442b9b14 {
  margin-left: 100px;
margin-right: 100px;
}
@media (min-width: 1200px){#s-0fb6f8be-de68-49a7-88e0-5a36442b9b14 {
  margin-left: 200px;
margin-right: 200px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0fb6f8be-de68-49a7-88e0-5a36442b9b14 {
  margin-left: 150px;
margin-right: 150px;
}
}@media (max-width: 767px){#s-0fb6f8be-de68-49a7-88e0-5a36442b9b14 {
  margin-left: 30px;
margin-right: 30px;
}
}
#s-46a0d816-c509-40b3-bbba-7b559c6376c6 {
  padding-top: 25px;
padding-left: 300px;
padding-bottom: 25px;
padding-right: 300px;
}
@media (min-width: 768px) and (max-width: 991px){#s-46a0d816-c509-40b3-bbba-7b559c6376c6 {
  padding-left: 0px;
padding-right: 0px;
}
}@media (max-width: 767px){#s-46a0d816-c509-40b3-bbba-7b559c6376c6 {
  padding-left: 50px;
padding-right: 50px;
}
}
#s-dac62b2c-d785-462a-8688-111eb6474a42 {
  box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 1);
padding-top: 100px;
padding-left: 50px;
padding-bottom: 100px;
padding-right: 50px;
min-height: 50px;
background-color: rgba(249, 249, 249, 1);
}
@media (min-width: 1200px){#s-dac62b2c-d785-462a-8688-111eb6474a42 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-dac62b2c-d785-462a-8688-111eb6474a42 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-dac62b2c-d785-462a-8688-111eb6474a42 {
  padding-top: 50px;
padding-bottom: 50px;
}
}@media (max-width: 767px){#s-dac62b2c-d785-462a-8688-111eb6474a42 {
  padding-top: 50px;
padding-left: 0px;
padding-bottom: 50px;
padding-right: 0px;
}
}







#s-dac62b2c-d785-462a-8688-111eb6474a42 > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-dac62b2c-d785-462a-8688-111eb6474a42.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-95cbed8d-c635-4706-aa12-07d1f66ad96b {
  margin-left: 30px;
margin-right: 30px;
}

@media (min-width: 0px) {
[id="s-95cbed8d-c635-4706-aa12-07d1f66ad96b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-95cbed8d-c635-4706-aa12-07d1f66ad96b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-95cbed8d-c635-4706-aa12-07d1f66ad96b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-95cbed8d-c635-4706-aa12-07d1f66ad96b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 25.0px);
}

}

#s-d5f4e200-40b1-4db2-b0b4-52d1ef857386 {
  margin-top: 5px;
margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-d5f4e200-40b1-4db2-b0b4-52d1ef857386 {
  margin-top: 5px;
margin-bottom: 5px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-d5f4e200-40b1-4db2-b0b4-52d1ef857386 {
  margin-top: 5px;
margin-bottom: 5px;
}
}@media (max-width: 767px){#s-d5f4e200-40b1-4db2-b0b4-52d1ef857386 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
}
#s-d5f4e200-40b1-4db2-b0b4-52d1ef857386 .shogun-heading-component h4 {
  color: #000;
  font-weight:  300 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-d5f4e200-40b1-4db2-b0b4-52d1ef857386 .shogun-heading-component h4 {
  color: #000;
  font-weight:  300 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}


}
#s-354ea938-b075-47d7-909e-426a2370683d {
  margin-top: 5px;
margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-354ea938-b075-47d7-909e-426a2370683d {
  margin-top: 5px;
margin-bottom: 5px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-354ea938-b075-47d7-909e-426a2370683d {
  margin-top: 5px;
margin-bottom: 5px;
}
}@media (max-width: 767px){#s-354ea938-b075-47d7-909e-426a2370683d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
}
#s-354ea938-b075-47d7-909e-426a2370683d .shogun-heading-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-354ea938-b075-47d7-909e-426a2370683d .shogun-heading-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: center;
}


}
#s-2cb39561-68f3-43f4-9bc6-bccb074975fa {
  margin-top: 5px;
margin-bottom: 5px;
}
@media (min-width: 768px) and (max-width: 991px){#s-2cb39561-68f3-43f4-9bc6-bccb074975fa {
  display: none;
}
#s-2cb39561-68f3-43f4-9bc6-bccb074975fa, #wrap-s-2cb39561-68f3-43f4-9bc6-bccb074975fa { display: none !important; }}@media (max-width: 767px){#s-2cb39561-68f3-43f4-9bc6-bccb074975fa {
  display: none;
}
#s-2cb39561-68f3-43f4-9bc6-bccb074975fa, #wrap-s-2cb39561-68f3-43f4-9bc6-bccb074975fa { display: none !important; }}
@media (min-width: 1200px){#s-704cb573-6291-426a-aafe-44f30d3c6af1 {
  display: none;
}
#s-704cb573-6291-426a-aafe-44f30d3c6af1, #wrap-s-704cb573-6291-426a-aafe-44f30d3c6af1 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-704cb573-6291-426a-aafe-44f30d3c6af1 {
  display: none;
}
#s-704cb573-6291-426a-aafe-44f30d3c6af1, #wrap-s-704cb573-6291-426a-aafe-44f30d3c6af1 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-704cb573-6291-426a-aafe-44f30d3c6af1 {
  
}
}@media (max-width: 767px){#s-704cb573-6291-426a-aafe-44f30d3c6af1 {
  display: none;
}
#s-704cb573-6291-426a-aafe-44f30d3c6af1, #wrap-s-704cb573-6291-426a-aafe-44f30d3c6af1 { display: none !important; }}
@media (min-width: 1200px){#s-4beec9ef-8be6-4e42-842a-f9bfc1ce9c94 {
  display: none;
}
#s-4beec9ef-8be6-4e42-842a-f9bfc1ce9c94, #wrap-s-4beec9ef-8be6-4e42-842a-f9bfc1ce9c94 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4beec9ef-8be6-4e42-842a-f9bfc1ce9c94 {
  display: none;
}
#s-4beec9ef-8be6-4e42-842a-f9bfc1ce9c94, #wrap-s-4beec9ef-8be6-4e42-842a-f9bfc1ce9c94 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-4beec9ef-8be6-4e42-842a-f9bfc1ce9c94 {
  display: none;
}
#s-4beec9ef-8be6-4e42-842a-f9bfc1ce9c94, #wrap-s-4beec9ef-8be6-4e42-842a-f9bfc1ce9c94 { display: none !important; }}
@media (min-width: 0px) {
[id="s-7691f024-5a9e-481b-ad9d-204902cc233e"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-7691f024-5a9e-481b-ad9d-204902cc233e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7691f024-5a9e-481b-ad9d-204902cc233e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7691f024-5a9e-481b-ad9d-204902cc233e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px){#s-e52c55b6-0173-4302-8934-d5698e9c19a4 {
  display: none;
}
#s-e52c55b6-0173-4302-8934-d5698e9c19a4, #wrap-s-e52c55b6-0173-4302-8934-d5698e9c19a4 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e52c55b6-0173-4302-8934-d5698e9c19a4 {
  display: none;
}
#s-e52c55b6-0173-4302-8934-d5698e9c19a4, #wrap-s-e52c55b6-0173-4302-8934-d5698e9c19a4 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e52c55b6-0173-4302-8934-d5698e9c19a4 {
  display: none;
}
#s-e52c55b6-0173-4302-8934-d5698e9c19a4, #wrap-s-e52c55b6-0173-4302-8934-d5698e9c19a4 { display: none !important; }}@media (max-width: 767px){#s-e52c55b6-0173-4302-8934-d5698e9c19a4 {
  
}
}
#s-c3299fdc-af39-4134-a06e-4f3f71bf42dc {
  text-align: left;
}



.shg-c#s-c3299fdc-af39-4134-a06e-4f3f71bf42dc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c3299fdc-af39-4134-a06e-4f3f71bf42dc img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-c3299fdc-af39-4134-a06e-4f3f71bf42dc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c3299fdc-af39-4134-a06e-4f3f71bf42dc img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c3299fdc-af39-4134-a06e-4f3f71bf42dc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c3299fdc-af39-4134-a06e-4f3f71bf42dc img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c3299fdc-af39-4134-a06e-4f3f71bf42dc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c3299fdc-af39-4134-a06e-4f3f71bf42dc img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c3299fdc-af39-4134-a06e-4f3f71bf42dc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c3299fdc-af39-4134-a06e-4f3f71bf42dc img.shogun-image {
  width: 100%;
}



}
#s-90c29bfd-1edb-43a3-9160-5b928806cbcd {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
}

#s-90c29bfd-1edb-43a3-9160-5b928806cbcd .shg-product-title-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-65922c22-105a-4b1c-a759-dbc2ae0b53ce {
  
}

#s-65922c22-105a-4b1c-a759-dbc2ae0b53ce .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-65922c22-105a-4b1c-a759-dbc2ae0b53ce .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-65922c22-105a-4b1c-a759-dbc2ae0b53ce .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-26e68873-ac52-4fa8-bfee-6076d1ad8d21 {
  margin-top: 20px;
margin-bottom: 20px;
}
@media (min-width: 1200px){#s-26e68873-ac52-4fa8-bfee-6076d1ad8d21 {
  display: none;
}
#s-26e68873-ac52-4fa8-bfee-6076d1ad8d21, #wrap-s-26e68873-ac52-4fa8-bfee-6076d1ad8d21 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-26e68873-ac52-4fa8-bfee-6076d1ad8d21 {
  display: none;
}
#s-26e68873-ac52-4fa8-bfee-6076d1ad8d21, #wrap-s-26e68873-ac52-4fa8-bfee-6076d1ad8d21 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-26e68873-ac52-4fa8-bfee-6076d1ad8d21 {
  display: none;
}
#s-26e68873-ac52-4fa8-bfee-6076d1ad8d21, #wrap-s-26e68873-ac52-4fa8-bfee-6076d1ad8d21 { display: none !important; }}
#s-b8733e83-9bc7-41e2-85c7-a7d9d80a809e {
  text-align: left;
}



.shg-c#s-b8733e83-9bc7-41e2-85c7-a7d9d80a809e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b8733e83-9bc7-41e2-85c7-a7d9d80a809e img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-b8733e83-9bc7-41e2-85c7-a7d9d80a809e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b8733e83-9bc7-41e2-85c7-a7d9d80a809e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b8733e83-9bc7-41e2-85c7-a7d9d80a809e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b8733e83-9bc7-41e2-85c7-a7d9d80a809e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b8733e83-9bc7-41e2-85c7-a7d9d80a809e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b8733e83-9bc7-41e2-85c7-a7d9d80a809e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b8733e83-9bc7-41e2-85c7-a7d9d80a809e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b8733e83-9bc7-41e2-85c7-a7d9d80a809e img.shogun-image {
  width: 100%;
}



}
#s-096a93eb-2a0f-4e13-afef-42ed8562f8ba {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
}

#s-096a93eb-2a0f-4e13-afef-42ed8562f8ba .shg-product-title-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-49c4b282-c772-4765-a06f-99c664f264b3 {
  
}

#s-49c4b282-c772-4765-a06f-99c664f264b3 .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-49c4b282-c772-4765-a06f-99c664f264b3 .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-49c4b282-c772-4765-a06f-99c664f264b3 .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-4bf06ec6-2230-45c3-8257-bddbd92d157f {
  box-shadow:0px 1px 6px 1px rgba(0, 0, 0, 0.26);
margin-top: 10px;
margin-bottom: 5px;
padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
border-radius: 6px;
background-color: rgba(0, 0, 0, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-4bf06ec6-2230-45c3-8257-bddbd92d157f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-4bf06ec6-2230-45c3-8257-bddbd92d157f:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 992px) and (max-width: 1199px){#s-4bf06ec6-2230-45c3-8257-bddbd92d157f {
  margin-bottom: 0px;
}
}@media (max-width: 767px){#s-4bf06ec6-2230-45c3-8257-bddbd92d157f {
  box-shadow:0px 1px 6px 1px rgba(0, 0, 0, 0.26);
padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
border-radius: 6px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-4bf06ec6-2230-45c3-8257-bddbd92d157f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-4bf06ec6-2230-45c3-8257-bddbd92d157f:active {background-color: #000000 !important;
text-decoration: none !important;}}

  #s-4bf06ec6-2230-45c3-8257-bddbd92d157f-root {
    text-align: left;
  }


#s-4bf06ec6-2230-45c3-8257-bddbd92d157f.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-4bf06ec6-2230-45c3-8257-bddbd92d157f-root {
    text-align: left;
  }


#s-4bf06ec6-2230-45c3-8257-bddbd92d157f.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4bf06ec6-2230-45c3-8257-bddbd92d157f-root {
    text-align: left;
  }


#s-4bf06ec6-2230-45c3-8257-bddbd92d157f.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4bf06ec6-2230-45c3-8257-bddbd92d157f-root {
    text-align: left;
  }


#s-4bf06ec6-2230-45c3-8257-bddbd92d157f.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-4bf06ec6-2230-45c3-8257-bddbd92d157f-root {
    text-align: center;
  }


#s-4bf06ec6-2230-45c3-8257-bddbd92d157f.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}
@media (min-width: 992px) and (max-width: 1199px){#s-a1f803ea-db1f-4693-9f73-4cba57bb0ed9 {
  display: none;
}
#s-a1f803ea-db1f-4693-9f73-4cba57bb0ed9, #wrap-s-a1f803ea-db1f-4693-9f73-4cba57bb0ed9 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a1f803ea-db1f-4693-9f73-4cba57bb0ed9 {
  display: none;
}
#s-a1f803ea-db1f-4693-9f73-4cba57bb0ed9, #wrap-s-a1f803ea-db1f-4693-9f73-4cba57bb0ed9 { display: none !important; }}@media (max-width: 767px){#s-a1f803ea-db1f-4693-9f73-4cba57bb0ed9 {
  display: none;
}
#s-a1f803ea-db1f-4693-9f73-4cba57bb0ed9, #wrap-s-a1f803ea-db1f-4693-9f73-4cba57bb0ed9 { display: none !important; }}
@media (min-width: 0px) {
[id="s-a1f803ea-db1f-4693-9f73-4cba57bb0ed9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a1f803ea-db1f-4693-9f73-4cba57bb0ed9"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-a1f803ea-db1f-4693-9f73-4cba57bb0ed9"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-a1f803ea-db1f-4693-9f73-4cba57bb0ed9"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-28176c70-6131-4f0e-a4e3-be16f17f7355 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: left;
}



.shg-c#s-28176c70-6131-4f0e-a4e3-be16f17f7355 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-28176c70-6131-4f0e-a4e3-be16f17f7355 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-28176c70-6131-4f0e-a4e3-be16f17f7355 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-28176c70-6131-4f0e-a4e3-be16f17f7355 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-28176c70-6131-4f0e-a4e3-be16f17f7355 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-28176c70-6131-4f0e-a4e3-be16f17f7355 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-28176c70-6131-4f0e-a4e3-be16f17f7355 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-28176c70-6131-4f0e-a4e3-be16f17f7355 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-28176c70-6131-4f0e-a4e3-be16f17f7355 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-28176c70-6131-4f0e-a4e3-be16f17f7355 img.shogun-image {
  width: 100%;
}



}
#s-6b026eba-52b1-4643-b197-29458b21d80e {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-6b026eba-52b1-4643-b197-29458b21d80e .shg-product-title-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-07aabd77-09d1-4664-ae8f-035024fabd1d {
  
}

#s-07aabd77-09d1-4664-ae8f-035024fabd1d .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-07aabd77-09d1-4664-ae8f-035024fabd1d .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-07aabd77-09d1-4664-ae8f-035024fabd1d .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-94cab8f9-ff43-4524-91a6-029572883d08 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: left;
}



.shg-c#s-94cab8f9-ff43-4524-91a6-029572883d08 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-94cab8f9-ff43-4524-91a6-029572883d08 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-94cab8f9-ff43-4524-91a6-029572883d08 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-94cab8f9-ff43-4524-91a6-029572883d08 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-94cab8f9-ff43-4524-91a6-029572883d08 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-94cab8f9-ff43-4524-91a6-029572883d08 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-94cab8f9-ff43-4524-91a6-029572883d08 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-94cab8f9-ff43-4524-91a6-029572883d08 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-94cab8f9-ff43-4524-91a6-029572883d08 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-94cab8f9-ff43-4524-91a6-029572883d08 img.shogun-image {
  width: 100%;
}



}
#s-f8b2cf05-993e-4484-9652-c6bb4d3014eb {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-f8b2cf05-993e-4484-9652-c6bb4d3014eb .shg-product-title-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-0f954360-e763-49df-9cbd-8ea0c93c7816 {
  
}

#s-0f954360-e763-49df-9cbd-8ea0c93c7816 .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-0f954360-e763-49df-9cbd-8ea0c93c7816 .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-0f954360-e763-49df-9cbd-8ea0c93c7816 .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-070840a3-da58-4620-bdf7-30029a169d0e {
  margin-top: 10px;
margin-bottom: 10px;
text-align: left;
}



.shg-c#s-070840a3-da58-4620-bdf7-30029a169d0e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-070840a3-da58-4620-bdf7-30029a169d0e img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-070840a3-da58-4620-bdf7-30029a169d0e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-070840a3-da58-4620-bdf7-30029a169d0e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-070840a3-da58-4620-bdf7-30029a169d0e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-070840a3-da58-4620-bdf7-30029a169d0e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-070840a3-da58-4620-bdf7-30029a169d0e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-070840a3-da58-4620-bdf7-30029a169d0e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-070840a3-da58-4620-bdf7-30029a169d0e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-070840a3-da58-4620-bdf7-30029a169d0e img.shogun-image {
  width: 100%;
}



}
#s-ecd5ba69-9678-4418-beca-8d1b2ef921aa {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-ecd5ba69-9678-4418-beca-8d1b2ef921aa .shg-product-title-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-7ffeb655-55a2-4ccc-8fd7-4a5ac9c39069 {
  
}

#s-7ffeb655-55a2-4ccc-8fd7-4a5ac9c39069 .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-7ffeb655-55a2-4ccc-8fd7-4a5ac9c39069 .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-7ffeb655-55a2-4ccc-8fd7-4a5ac9c39069 .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;
}

@media (min-width: 1200px){#s-1d4ceeb2-a73b-4728-984c-ea5a946e3eb2 {
  display: none;
}
#s-1d4ceeb2-a73b-4728-984c-ea5a946e3eb2, #wrap-s-1d4ceeb2-a73b-4728-984c-ea5a946e3eb2 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1d4ceeb2-a73b-4728-984c-ea5a946e3eb2 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-1d4ceeb2-a73b-4728-984c-ea5a946e3eb2 {
  display: none;
}
#s-1d4ceeb2-a73b-4728-984c-ea5a946e3eb2, #wrap-s-1d4ceeb2-a73b-4728-984c-ea5a946e3eb2 { display: none !important; }}@media (max-width: 767px){#s-1d4ceeb2-a73b-4728-984c-ea5a946e3eb2 {
  display: none;
}
#s-1d4ceeb2-a73b-4728-984c-ea5a946e3eb2, #wrap-s-1d4ceeb2-a73b-4728-984c-ea5a946e3eb2 { display: none !important; }}
@media (min-width: 0px) {
[id="s-1d4ceeb2-a73b-4728-984c-ea5a946e3eb2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1d4ceeb2-a73b-4728-984c-ea5a946e3eb2"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1d4ceeb2-a73b-4728-984c-ea5a946e3eb2"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1d4ceeb2-a73b-4728-984c-ea5a946e3eb2"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-ae14b1e3-e8ed-436d-a8de-ede8acb076f2 {
  text-align: left;
}



.shg-c#s-ae14b1e3-e8ed-436d-a8de-ede8acb076f2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ae14b1e3-e8ed-436d-a8de-ede8acb076f2 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-ae14b1e3-e8ed-436d-a8de-ede8acb076f2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ae14b1e3-e8ed-436d-a8de-ede8acb076f2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ae14b1e3-e8ed-436d-a8de-ede8acb076f2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ae14b1e3-e8ed-436d-a8de-ede8acb076f2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ae14b1e3-e8ed-436d-a8de-ede8acb076f2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ae14b1e3-e8ed-436d-a8de-ede8acb076f2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ae14b1e3-e8ed-436d-a8de-ede8acb076f2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ae14b1e3-e8ed-436d-a8de-ede8acb076f2 img.shogun-image {
  width: 100%;
}



}
#s-ca05cd46-01ef-4f07-abed-acf76c5dd8a1 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-ca05cd46-01ef-4f07-abed-acf76c5dd8a1 .shg-product-title-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-9be48d8e-3c1e-47ff-be99-79bfb52949e8 {
  
}

#s-9be48d8e-3c1e-47ff-be99-79bfb52949e8 .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-9be48d8e-3c1e-47ff-be99-79bfb52949e8 .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-9be48d8e-3c1e-47ff-be99-79bfb52949e8 .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-c5b11f42-4fdb-44be-983b-f4923096cea0 {
  text-align: left;
}



.shg-c#s-c5b11f42-4fdb-44be-983b-f4923096cea0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c5b11f42-4fdb-44be-983b-f4923096cea0 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-c5b11f42-4fdb-44be-983b-f4923096cea0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c5b11f42-4fdb-44be-983b-f4923096cea0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c5b11f42-4fdb-44be-983b-f4923096cea0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c5b11f42-4fdb-44be-983b-f4923096cea0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c5b11f42-4fdb-44be-983b-f4923096cea0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c5b11f42-4fdb-44be-983b-f4923096cea0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c5b11f42-4fdb-44be-983b-f4923096cea0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c5b11f42-4fdb-44be-983b-f4923096cea0 img.shogun-image {
  width: 100%;
}



}
#s-fed44e74-e7e4-4e0f-ad4a-43e1b1e02681 {
  margin-top: 1px;
margin-bottom: 1px;
padding-top: 10px;
padding-bottom: 10px;
}

#s-fed44e74-e7e4-4e0f-ad4a-43e1b1e02681 .shg-product-title-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-13b924a4-5238-4072-8f08-d9ecbecbfcfc {
  
}

#s-13b924a4-5238-4072-8f08-d9ecbecbfcfc .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-13b924a4-5238-4072-8f08-d9ecbecbfcfc .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-13b924a4-5238-4072-8f08-d9ecbecbfcfc .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;
}

@media (min-width: 1200px){#s-20cd5469-8fea-4ef4-a2f2-fd0c8f045e0b {
  display: none;
}
#s-20cd5469-8fea-4ef4-a2f2-fd0c8f045e0b, #wrap-s-20cd5469-8fea-4ef4-a2f2-fd0c8f045e0b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-20cd5469-8fea-4ef4-a2f2-fd0c8f045e0b {
  display: none;
}
#s-20cd5469-8fea-4ef4-a2f2-fd0c8f045e0b, #wrap-s-20cd5469-8fea-4ef4-a2f2-fd0c8f045e0b { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-20cd5469-8fea-4ef4-a2f2-fd0c8f045e0b {
  
}
}@media (max-width: 767px){#s-20cd5469-8fea-4ef4-a2f2-fd0c8f045e0b {
  display: none;
}
#s-20cd5469-8fea-4ef4-a2f2-fd0c8f045e0b, #wrap-s-20cd5469-8fea-4ef4-a2f2-fd0c8f045e0b { display: none !important; }}
@media (min-width: 0px) {
[id="s-20cd5469-8fea-4ef4-a2f2-fd0c8f045e0b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-20cd5469-8fea-4ef4-a2f2-fd0c8f045e0b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-20cd5469-8fea-4ef4-a2f2-fd0c8f045e0b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-20cd5469-8fea-4ef4-a2f2-fd0c8f045e0b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-cdea4393-e85d-4d28-9cd3-ecdb1759290d {
  margin-top: 20px;
margin-bottom: 20px;
}

#s-fa373cb2-77af-473d-b6d8-009f4dbf975f {
  text-align: left;
}



.shg-c#s-fa373cb2-77af-473d-b6d8-009f4dbf975f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fa373cb2-77af-473d-b6d8-009f4dbf975f img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-fa373cb2-77af-473d-b6d8-009f4dbf975f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fa373cb2-77af-473d-b6d8-009f4dbf975f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-fa373cb2-77af-473d-b6d8-009f4dbf975f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fa373cb2-77af-473d-b6d8-009f4dbf975f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-fa373cb2-77af-473d-b6d8-009f4dbf975f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fa373cb2-77af-473d-b6d8-009f4dbf975f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-fa373cb2-77af-473d-b6d8-009f4dbf975f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fa373cb2-77af-473d-b6d8-009f4dbf975f img.shogun-image {
  width: 100%;
}



}
#s-c7c2f1f2-5253-4f38-865e-00b2bc121c63 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
}

#s-c7c2f1f2-5253-4f38-865e-00b2bc121c63 .shg-product-title-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-33d23ede-5123-4b45-8ec6-70f36b694743 {
  
}

#s-33d23ede-5123-4b45-8ec6-70f36b694743 .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-33d23ede-5123-4b45-8ec6-70f36b694743 .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-33d23ede-5123-4b45-8ec6-70f36b694743 .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-816e7ca6-8cd0-4a8b-bbcf-a7c5cf054f81 {
  margin-top: 20px;
margin-bottom: 20px;
}

#s-6ce2ed4d-bc14-4f7c-b239-b78542ca73a5 {
  text-align: left;
}



.shg-c#s-6ce2ed4d-bc14-4f7c-b239-b78542ca73a5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6ce2ed4d-bc14-4f7c-b239-b78542ca73a5 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-6ce2ed4d-bc14-4f7c-b239-b78542ca73a5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6ce2ed4d-bc14-4f7c-b239-b78542ca73a5 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6ce2ed4d-bc14-4f7c-b239-b78542ca73a5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6ce2ed4d-bc14-4f7c-b239-b78542ca73a5 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6ce2ed4d-bc14-4f7c-b239-b78542ca73a5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6ce2ed4d-bc14-4f7c-b239-b78542ca73a5 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6ce2ed4d-bc14-4f7c-b239-b78542ca73a5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6ce2ed4d-bc14-4f7c-b239-b78542ca73a5 img.shogun-image {
  width: 100%;
}



}
#s-eabc9aec-2140-4cda-ab51-f2ef78a4f6b4 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
}

#s-eabc9aec-2140-4cda-ab51-f2ef78a4f6b4 .shg-product-title-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-bad927f0-1a0e-4100-acbc-d1c02d8dd8cd {
  
}

#s-bad927f0-1a0e-4100-acbc-d1c02d8dd8cd .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-bad927f0-1a0e-4100-acbc-d1c02d8dd8cd .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-bad927f0-1a0e-4100-acbc-d1c02d8dd8cd .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-db463b01-f280-4eb2-834c-1b0ef6bba95f {
  box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 1);
background-repeat: no-repeat;
background-size: cover;
padding-top: 50px;
padding-left: 50px;
padding-bottom: 50px;
padding-right: 50px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
min-height: 50px;
background-position: center center;
}
@media (max-width: 767px){#s-db463b01-f280-4eb2-834c-1b0ef6bba95f {
  padding-left: 0px;
padding-right: 0px;
}
}







#s-db463b01-f280-4eb2-834c-1b0ef6bba95f > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-db463b01-f280-4eb2-834c-1b0ef6bba95f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2432d834-f29d-4d3b-9c53-79ccbad15c63 {
  margin-left: 30px;
margin-right: 30px;
padding-top: 50px;
padding-bottom: 50px;
}
@media (max-width: 767px){#s-2432d834-f29d-4d3b-9c53-79ccbad15c63 {
  padding-top: 0px;
padding-bottom: 0px;
}
}
@media (min-width: 0px) {
[id="s-2432d834-f29d-4d3b-9c53-79ccbad15c63"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2432d834-f29d-4d3b-9c53-79ccbad15c63"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-2432d834-f29d-4d3b-9c53-79ccbad15c63"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-2432d834-f29d-4d3b-9c53-79ccbad15c63"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 25.0px);
}

}

#s-03759e24-4d65-4427-ae49-42ca8ff3ece5 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-03759e24-4d65-4427-ae49-42ca8ff3ece5 {
  margin-right: 50px;
}
}






  #s-03759e24-4d65-4427-ae49-42ca8ff3ece5 img.shogun-image {
    

    
    
    
  }


#s-03759e24-4d65-4427-ae49-42ca8ff3ece5 .shogun-image-content {
  
    align-items: center;
  
}

#s-fdba58a1-6128-4e74-9534-ef85e33bd8ee {
  margin-top: 5px;
margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-fdba58a1-6128-4e74-9534-ef85e33bd8ee {
  padding-top: 30px;
padding-bottom: 10px;
text-align: center;
}
}
#s-fdba58a1-6128-4e74-9534-ef85e33bd8ee .shogun-heading-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-fdba58a1-6128-4e74-9534-ef85e33bd8ee .shogun-heading-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: center;
}


}
#s-e0bc6d47-1387-41de-8721-f608d79b9ef3 {
  margin-top: 5px;
margin-bottom: 5px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-e0bc6d47-1387-41de-8721-f608d79b9ef3 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-e0bc6d47-1387-41de-8721-f608d79b9ef3 {
  display: none;
}
#s-e0bc6d47-1387-41de-8721-f608d79b9ef3, #wrap-s-e0bc6d47-1387-41de-8721-f608d79b9ef3 { display: none !important; }}@media (max-width: 767px){#s-e0bc6d47-1387-41de-8721-f608d79b9ef3 {
  display: none;
}
#s-e0bc6d47-1387-41de-8721-f608d79b9ef3, #wrap-s-e0bc6d47-1387-41de-8721-f608d79b9ef3 { display: none !important; }}
@media (min-width: 1200px){#s-d576fd9c-c141-4fee-b546-30c2d1af6d04 {
  display: none;
}
#s-d576fd9c-c141-4fee-b546-30c2d1af6d04, #wrap-s-d576fd9c-c141-4fee-b546-30c2d1af6d04 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d576fd9c-c141-4fee-b546-30c2d1af6d04 {
  display: none;
}
#s-d576fd9c-c141-4fee-b546-30c2d1af6d04, #wrap-s-d576fd9c-c141-4fee-b546-30c2d1af6d04 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d576fd9c-c141-4fee-b546-30c2d1af6d04 {
  
}
}@media (max-width: 767px){#s-d576fd9c-c141-4fee-b546-30c2d1af6d04 {
  display: none;
}
#s-d576fd9c-c141-4fee-b546-30c2d1af6d04, #wrap-s-d576fd9c-c141-4fee-b546-30c2d1af6d04 { display: none !important; }}
@media (min-width: 1200px){#s-e4abb750-0586-4989-9535-a73377600744 {
  display: none;
}
#s-e4abb750-0586-4989-9535-a73377600744, #wrap-s-e4abb750-0586-4989-9535-a73377600744 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e4abb750-0586-4989-9535-a73377600744 {
  display: none;
}
#s-e4abb750-0586-4989-9535-a73377600744, #wrap-s-e4abb750-0586-4989-9535-a73377600744 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e4abb750-0586-4989-9535-a73377600744 {
  display: none;
}
#s-e4abb750-0586-4989-9535-a73377600744, #wrap-s-e4abb750-0586-4989-9535-a73377600744 { display: none !important; }}
#s-580a155a-d456-41eb-ab03-715f32f896eb {
  box-shadow:0px 1px 6px 1px rgba(0, 0, 0, 0.26);
padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
border-radius: 6px;
background-color: rgba(0, 0, 0, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-580a155a-d456-41eb-ab03-715f32f896eb:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-580a155a-d456-41eb-ab03-715f32f896eb:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-580a155a-d456-41eb-ab03-715f32f896eb {
  box-shadow:0px 1px 6px 1px rgba(0, 0, 0, 0.26);
padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
border-radius: 6px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-580a155a-d456-41eb-ab03-715f32f896eb:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-580a155a-d456-41eb-ab03-715f32f896eb:active {background-color: #000000 !important;
text-decoration: none !important;}}

  #s-580a155a-d456-41eb-ab03-715f32f896eb-root {
    text-align: left;
  }


#s-580a155a-d456-41eb-ab03-715f32f896eb.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-580a155a-d456-41eb-ab03-715f32f896eb-root {
    text-align: left;
  }


#s-580a155a-d456-41eb-ab03-715f32f896eb.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-580a155a-d456-41eb-ab03-715f32f896eb-root {
    text-align: left;
  }


#s-580a155a-d456-41eb-ab03-715f32f896eb.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-580a155a-d456-41eb-ab03-715f32f896eb-root {
    text-align: left;
  }


#s-580a155a-d456-41eb-ab03-715f32f896eb.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-580a155a-d456-41eb-ab03-715f32f896eb-root {
    text-align: center;
  }


#s-580a155a-d456-41eb-ab03-715f32f896eb.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}
#s-7c1e3b3d-d0d6-426c-949a-1d985978764c {
  box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 1);
padding-top: 50px;
padding-left: 50px;
padding-bottom: 50px;
padding-right: 50px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
min-height: 50px;
background-color: rgba(249, 249, 249, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-7c1e3b3d-d0d6-426c-949a-1d985978764c {
  padding-left: 30px;
padding-right: 30px;
}
}@media (max-width: 767px){#s-7c1e3b3d-d0d6-426c-949a-1d985978764c {
  padding-left: 0px;
padding-right: 0px;
display: none;
}
#s-7c1e3b3d-d0d6-426c-949a-1d985978764c, #wrap-s-7c1e3b3d-d0d6-426c-949a-1d985978764c { display: none !important; }}







#s-7c1e3b3d-d0d6-426c-949a-1d985978764c > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-7c1e3b3d-d0d6-426c-949a-1d985978764c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-af94cd19-f751-4598-9c05-ff139a5d13c9 {
  margin-left: 30px;
margin-right: 30px;
padding-top: 50px;
padding-bottom: 50px;
}

@media (min-width: 0px) {
[id="s-af94cd19-f751-4598-9c05-ff139a5d13c9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-af94cd19-f751-4598-9c05-ff139a5d13c9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-af94cd19-f751-4598-9c05-ff139a5d13c9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-af94cd19-f751-4598-9c05-ff139a5d13c9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (max-width: 767px) {
  [id="s-af94cd19-f751-4598-9c05-ff139a5d13c9"] > .shg-row {
    flex-flow: column-reverse;
  }
}

@media (min-width: 992px) and (max-width: 1199px){#s-107603c1-a8a2-4241-bc04-4ec829bcfa8a {
  display: none;
}
#s-107603c1-a8a2-4241-bc04-4ec829bcfa8a, #wrap-s-107603c1-a8a2-4241-bc04-4ec829bcfa8a { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-107603c1-a8a2-4241-bc04-4ec829bcfa8a {
  display: none;
}
#s-107603c1-a8a2-4241-bc04-4ec829bcfa8a, #wrap-s-107603c1-a8a2-4241-bc04-4ec829bcfa8a { display: none !important; }}@media (max-width: 767px){#s-107603c1-a8a2-4241-bc04-4ec829bcfa8a {
  display: none;
}
#s-107603c1-a8a2-4241-bc04-4ec829bcfa8a, #wrap-s-107603c1-a8a2-4241-bc04-4ec829bcfa8a { display: none !important; }}
@media (min-width: 0px) {
[id="s-107603c1-a8a2-4241-bc04-4ec829bcfa8a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-107603c1-a8a2-4241-bc04-4ec829bcfa8a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-107603c1-a8a2-4241-bc04-4ec829bcfa8a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-107603c1-a8a2-4241-bc04-4ec829bcfa8a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-8f26f8a1-9c2c-40db-8f44-867dcd5f2b86 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: left;
}



.shg-c#s-8f26f8a1-9c2c-40db-8f44-867dcd5f2b86 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8f26f8a1-9c2c-40db-8f44-867dcd5f2b86 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-8f26f8a1-9c2c-40db-8f44-867dcd5f2b86 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8f26f8a1-9c2c-40db-8f44-867dcd5f2b86 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8f26f8a1-9c2c-40db-8f44-867dcd5f2b86 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8f26f8a1-9c2c-40db-8f44-867dcd5f2b86 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8f26f8a1-9c2c-40db-8f44-867dcd5f2b86 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8f26f8a1-9c2c-40db-8f44-867dcd5f2b86 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8f26f8a1-9c2c-40db-8f44-867dcd5f2b86 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8f26f8a1-9c2c-40db-8f44-867dcd5f2b86 img.shogun-image {
  width: 100%;
}



}
#s-1d99978f-d8d9-41b0-a182-aea89fcf6d65 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-1d99978f-d8d9-41b0-a182-aea89fcf6d65 .shg-product-title-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-5a6cf3d1-d9b1-499e-b96c-bd2d0f9954bb {
  
}

#s-5a6cf3d1-d9b1-499e-b96c-bd2d0f9954bb .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-5a6cf3d1-d9b1-499e-b96c-bd2d0f9954bb .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-5a6cf3d1-d9b1-499e-b96c-bd2d0f9954bb .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-c69a1863-40db-42ee-9db2-7c34bb6f8f9b {
  margin-top: 10px;
margin-bottom: 10px;
text-align: left;
}



.shg-c#s-c69a1863-40db-42ee-9db2-7c34bb6f8f9b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c69a1863-40db-42ee-9db2-7c34bb6f8f9b img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-c69a1863-40db-42ee-9db2-7c34bb6f8f9b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c69a1863-40db-42ee-9db2-7c34bb6f8f9b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c69a1863-40db-42ee-9db2-7c34bb6f8f9b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c69a1863-40db-42ee-9db2-7c34bb6f8f9b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c69a1863-40db-42ee-9db2-7c34bb6f8f9b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c69a1863-40db-42ee-9db2-7c34bb6f8f9b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c69a1863-40db-42ee-9db2-7c34bb6f8f9b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c69a1863-40db-42ee-9db2-7c34bb6f8f9b img.shogun-image {
  width: 100%;
}



}
#s-ca52022f-47e8-4e21-accc-6013177c66c4 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-ca52022f-47e8-4e21-accc-6013177c66c4 .shg-product-title-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-4fedf395-f2e3-4f8f-a0b6-a559f9530080 {
  
}

#s-4fedf395-f2e3-4f8f-a0b6-a559f9530080 .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-4fedf395-f2e3-4f8f-a0b6-a559f9530080 .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-4fedf395-f2e3-4f8f-a0b6-a559f9530080 .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-a5abc870-116e-48c2-a197-6af62f394aee {
  margin-top: 10px;
margin-bottom: 10px;
text-align: left;
}



.shg-c#s-a5abc870-116e-48c2-a197-6af62f394aee .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a5abc870-116e-48c2-a197-6af62f394aee img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-a5abc870-116e-48c2-a197-6af62f394aee .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a5abc870-116e-48c2-a197-6af62f394aee img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a5abc870-116e-48c2-a197-6af62f394aee .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a5abc870-116e-48c2-a197-6af62f394aee img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a5abc870-116e-48c2-a197-6af62f394aee .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a5abc870-116e-48c2-a197-6af62f394aee img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a5abc870-116e-48c2-a197-6af62f394aee .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a5abc870-116e-48c2-a197-6af62f394aee img.shogun-image {
  width: 100%;
}



}
#s-a4b8d39b-118c-4dd5-bcbb-7958a6dc3af7 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-a4b8d39b-118c-4dd5-bcbb-7958a6dc3af7 .shg-product-title-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-780724e7-45c5-4a22-b91c-91dd9f475ed2 {
  
}

#s-780724e7-45c5-4a22-b91c-91dd9f475ed2 .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-780724e7-45c5-4a22-b91c-91dd9f475ed2 .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-780724e7-45c5-4a22-b91c-91dd9f475ed2 .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;
}

@media (min-width: 1200px){#s-c65667e3-7781-4fa5-831c-b553836930c9 {
  display: none;
}
#s-c65667e3-7781-4fa5-831c-b553836930c9, #wrap-s-c65667e3-7781-4fa5-831c-b553836930c9 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c65667e3-7781-4fa5-831c-b553836930c9 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-c65667e3-7781-4fa5-831c-b553836930c9 {
  display: none;
}
#s-c65667e3-7781-4fa5-831c-b553836930c9, #wrap-s-c65667e3-7781-4fa5-831c-b553836930c9 { display: none !important; }}@media (max-width: 767px){#s-c65667e3-7781-4fa5-831c-b553836930c9 {
  display: none;
}
#s-c65667e3-7781-4fa5-831c-b553836930c9, #wrap-s-c65667e3-7781-4fa5-831c-b553836930c9 { display: none !important; }}
@media (min-width: 0px) {
[id="s-c65667e3-7781-4fa5-831c-b553836930c9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c65667e3-7781-4fa5-831c-b553836930c9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c65667e3-7781-4fa5-831c-b553836930c9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c65667e3-7781-4fa5-831c-b553836930c9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-8543cc0e-937a-424f-97c7-3cba9cd4f203 {
  text-align: left;
}



.shg-c#s-8543cc0e-937a-424f-97c7-3cba9cd4f203 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8543cc0e-937a-424f-97c7-3cba9cd4f203 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-8543cc0e-937a-424f-97c7-3cba9cd4f203 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8543cc0e-937a-424f-97c7-3cba9cd4f203 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8543cc0e-937a-424f-97c7-3cba9cd4f203 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8543cc0e-937a-424f-97c7-3cba9cd4f203 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8543cc0e-937a-424f-97c7-3cba9cd4f203 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8543cc0e-937a-424f-97c7-3cba9cd4f203 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8543cc0e-937a-424f-97c7-3cba9cd4f203 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8543cc0e-937a-424f-97c7-3cba9cd4f203 img.shogun-image {
  width: 100%;
}



}
#s-2620f7fd-a0b2-410c-8e20-5763d626bc56 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-2620f7fd-a0b2-410c-8e20-5763d626bc56 .shg-product-title-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-7a177db6-f3e0-4d46-b39a-5078065b2e0e {
  
}

#s-7a177db6-f3e0-4d46-b39a-5078065b2e0e .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-7a177db6-f3e0-4d46-b39a-5078065b2e0e .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-7a177db6-f3e0-4d46-b39a-5078065b2e0e .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-8a239b49-59cb-4562-bf47-7d5006d1b5bf {
  text-align: left;
}



.shg-c#s-8a239b49-59cb-4562-bf47-7d5006d1b5bf .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8a239b49-59cb-4562-bf47-7d5006d1b5bf img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-8a239b49-59cb-4562-bf47-7d5006d1b5bf .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8a239b49-59cb-4562-bf47-7d5006d1b5bf img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8a239b49-59cb-4562-bf47-7d5006d1b5bf .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8a239b49-59cb-4562-bf47-7d5006d1b5bf img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8a239b49-59cb-4562-bf47-7d5006d1b5bf .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8a239b49-59cb-4562-bf47-7d5006d1b5bf img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8a239b49-59cb-4562-bf47-7d5006d1b5bf .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8a239b49-59cb-4562-bf47-7d5006d1b5bf img.shogun-image {
  width: 100%;
}



}
#s-6c34c38f-1440-420c-9198-bf10ebc9ef11 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-6c34c38f-1440-420c-9198-bf10ebc9ef11 .shg-product-title-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-8888a1c3-1d8d-4f1f-a447-a2eed91ab6ec {
  
}

#s-8888a1c3-1d8d-4f1f-a447-a2eed91ab6ec .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-8888a1c3-1d8d-4f1f-a447-a2eed91ab6ec .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-8888a1c3-1d8d-4f1f-a447-a2eed91ab6ec .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;
}

@media (min-width: 1200px){#s-a8d4c85b-46d1-48ab-9926-ab14a26f03db {
  display: none;
}
#s-a8d4c85b-46d1-48ab-9926-ab14a26f03db, #wrap-s-a8d4c85b-46d1-48ab-9926-ab14a26f03db { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a8d4c85b-46d1-48ab-9926-ab14a26f03db {
  display: none;
}
#s-a8d4c85b-46d1-48ab-9926-ab14a26f03db, #wrap-s-a8d4c85b-46d1-48ab-9926-ab14a26f03db { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a8d4c85b-46d1-48ab-9926-ab14a26f03db {
  
}
}@media (max-width: 767px){#s-a8d4c85b-46d1-48ab-9926-ab14a26f03db {
  display: none;
}
#s-a8d4c85b-46d1-48ab-9926-ab14a26f03db, #wrap-s-a8d4c85b-46d1-48ab-9926-ab14a26f03db { display: none !important; }}
@media (min-width: 0px) {
[id="s-a8d4c85b-46d1-48ab-9926-ab14a26f03db"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a8d4c85b-46d1-48ab-9926-ab14a26f03db"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a8d4c85b-46d1-48ab-9926-ab14a26f03db"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a8d4c85b-46d1-48ab-9926-ab14a26f03db"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-768c35f1-c6ea-43b4-8ed4-3f498b41c523 {
  margin-top: 20px;
margin-bottom: 20px;
}

#s-efc25467-1eea-4331-9eef-fea19f9c9620 {
  text-align: left;
}



.shg-c#s-efc25467-1eea-4331-9eef-fea19f9c9620 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-efc25467-1eea-4331-9eef-fea19f9c9620 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-efc25467-1eea-4331-9eef-fea19f9c9620 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-efc25467-1eea-4331-9eef-fea19f9c9620 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-efc25467-1eea-4331-9eef-fea19f9c9620 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-efc25467-1eea-4331-9eef-fea19f9c9620 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-efc25467-1eea-4331-9eef-fea19f9c9620 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-efc25467-1eea-4331-9eef-fea19f9c9620 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-efc25467-1eea-4331-9eef-fea19f9c9620 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-efc25467-1eea-4331-9eef-fea19f9c9620 img.shogun-image {
  width: 100%;
}



}
#s-221f72ac-e3d9-4d6a-a133-71780fb7a4fa {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
}

#s-221f72ac-e3d9-4d6a-a133-71780fb7a4fa .shg-product-title-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-e31fd5b0-10af-4393-a9ae-f3c0583e240e {
  
}

#s-e31fd5b0-10af-4393-a9ae-f3c0583e240e .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-e31fd5b0-10af-4393-a9ae-f3c0583e240e .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-e31fd5b0-10af-4393-a9ae-f3c0583e240e .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-52fe2721-4d10-4ff2-985e-ce5cfba82b19 {
  margin-top: 20px;
margin-bottom: 20px;
}

#s-c858f84c-7d4c-48bf-beed-80e0a65c8243 {
  text-align: left;
}



.shg-c#s-c858f84c-7d4c-48bf-beed-80e0a65c8243 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c858f84c-7d4c-48bf-beed-80e0a65c8243 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-c858f84c-7d4c-48bf-beed-80e0a65c8243 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c858f84c-7d4c-48bf-beed-80e0a65c8243 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c858f84c-7d4c-48bf-beed-80e0a65c8243 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c858f84c-7d4c-48bf-beed-80e0a65c8243 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c858f84c-7d4c-48bf-beed-80e0a65c8243 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c858f84c-7d4c-48bf-beed-80e0a65c8243 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c858f84c-7d4c-48bf-beed-80e0a65c8243 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c858f84c-7d4c-48bf-beed-80e0a65c8243 img.shogun-image {
  width: 100%;
}



}
#s-98a679fa-69cc-4141-89e9-1d929bfdecc2 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
}

#s-98a679fa-69cc-4141-89e9-1d929bfdecc2 .shg-product-title-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-44875132-a65f-421f-b34e-fb4ccf1c946a {
  
}

#s-44875132-a65f-421f-b34e-fb4ccf1c946a .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-44875132-a65f-421f-b34e-fb4ccf1c946a .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-44875132-a65f-421f-b34e-fb4ccf1c946a .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-0c280a13-d110-4685-9c6b-df3a6c03f23d {
  margin-left: 20px;
margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-0c280a13-d110-4685-9c6b-df3a6c03f23d {
  text-align: center;
}
}
#s-0c280a13-d110-4685-9c6b-df3a6c03f23d .shogun-heading-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-0c280a13-d110-4685-9c6b-df3a6c03f23d .shogun-heading-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: center;
}


}
#s-28c2cd3e-f7fb-4aa2-8f7c-f4ea8bb53903 {
  margin-left: 20px;
}
@media (min-width: 768px) and (max-width: 991px){#s-28c2cd3e-f7fb-4aa2-8f7c-f4ea8bb53903 {
  display: none;
}
#s-28c2cd3e-f7fb-4aa2-8f7c-f4ea8bb53903, #wrap-s-28c2cd3e-f7fb-4aa2-8f7c-f4ea8bb53903 { display: none !important; }}@media (max-width: 767px){#s-28c2cd3e-f7fb-4aa2-8f7c-f4ea8bb53903 {
  display: none;
}
#s-28c2cd3e-f7fb-4aa2-8f7c-f4ea8bb53903, #wrap-s-28c2cd3e-f7fb-4aa2-8f7c-f4ea8bb53903 { display: none !important; }}
#s-537291aa-a161-49e2-889e-8c987306efcb {
  margin-left: 20px;
}
@media (min-width: 1200px){#s-537291aa-a161-49e2-889e-8c987306efcb {
  display: none;
}
#s-537291aa-a161-49e2-889e-8c987306efcb, #wrap-s-537291aa-a161-49e2-889e-8c987306efcb { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-537291aa-a161-49e2-889e-8c987306efcb {
  display: none;
}
#s-537291aa-a161-49e2-889e-8c987306efcb, #wrap-s-537291aa-a161-49e2-889e-8c987306efcb { display: none !important; }}@media (max-width: 767px){#s-537291aa-a161-49e2-889e-8c987306efcb {
  display: none;
}
#s-537291aa-a161-49e2-889e-8c987306efcb, #wrap-s-537291aa-a161-49e2-889e-8c987306efcb { display: none !important; }}
#s-1a8bd8b9-1588-4b51-9f7a-2eb0ccd266e0 {
  box-shadow:0px 1px 6px 1px rgba(0, 0, 0, 0.26);
margin-top: 5px;
margin-left: 20px;
padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
border-radius: 6px;
background-color: rgba(0, 0, 0, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-1a8bd8b9-1588-4b51-9f7a-2eb0ccd266e0:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-1a8bd8b9-1588-4b51-9f7a-2eb0ccd266e0:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-1a8bd8b9-1588-4b51-9f7a-2eb0ccd266e0 {
  box-shadow:0px 1px 6px 1px rgba(0, 0, 0, 0.26);
padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
border-radius: 6px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-1a8bd8b9-1588-4b51-9f7a-2eb0ccd266e0:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-1a8bd8b9-1588-4b51-9f7a-2eb0ccd266e0:active {background-color: #000000 !important;
text-decoration: none !important;}}

  #s-1a8bd8b9-1588-4b51-9f7a-2eb0ccd266e0-root {
    text-align: left;
  }


#s-1a8bd8b9-1588-4b51-9f7a-2eb0ccd266e0.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-1a8bd8b9-1588-4b51-9f7a-2eb0ccd266e0-root {
    text-align: left;
  }


#s-1a8bd8b9-1588-4b51-9f7a-2eb0ccd266e0.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-1a8bd8b9-1588-4b51-9f7a-2eb0ccd266e0-root {
    text-align: left;
  }


#s-1a8bd8b9-1588-4b51-9f7a-2eb0ccd266e0.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-1a8bd8b9-1588-4b51-9f7a-2eb0ccd266e0-root {
    text-align: left;
  }


#s-1a8bd8b9-1588-4b51-9f7a-2eb0ccd266e0.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-1a8bd8b9-1588-4b51-9f7a-2eb0ccd266e0-root {
    text-align: center;
  }


#s-1a8bd8b9-1588-4b51-9f7a-2eb0ccd266e0.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}
#s-7ce74023-6956-4d9b-913b-64256451868c {
  box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 1);
padding-top: 50px;
padding-left: 50px;
padding-bottom: 50px;
padding-right: 50px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
min-height: 50px;
background-color: rgba(249, 249, 249, 1);
}
@media (min-width: 1200px){#s-7ce74023-6956-4d9b-913b-64256451868c {
  display: none;
}
#s-7ce74023-6956-4d9b-913b-64256451868c, #wrap-s-7ce74023-6956-4d9b-913b-64256451868c { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7ce74023-6956-4d9b-913b-64256451868c {
  display: none;
}
#s-7ce74023-6956-4d9b-913b-64256451868c, #wrap-s-7ce74023-6956-4d9b-913b-64256451868c { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7ce74023-6956-4d9b-913b-64256451868c {
  display: none;
}
#s-7ce74023-6956-4d9b-913b-64256451868c, #wrap-s-7ce74023-6956-4d9b-913b-64256451868c { display: none !important; }}@media (max-width: 767px){#s-7ce74023-6956-4d9b-913b-64256451868c {
  padding-left: 0px;
padding-right: 0px;
}
}







#s-7ce74023-6956-4d9b-913b-64256451868c > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-7ce74023-6956-4d9b-913b-64256451868c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4a152e35-a653-414d-b44d-5d87e80cf040 {
  margin-left: 30px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-4a152e35-a653-414d-b44d-5d87e80cf040 {
  display: none;
}
#s-4a152e35-a653-414d-b44d-5d87e80cf040, #wrap-s-4a152e35-a653-414d-b44d-5d87e80cf040 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4a152e35-a653-414d-b44d-5d87e80cf040 {
  display: none;
}
#s-4a152e35-a653-414d-b44d-5d87e80cf040, #wrap-s-4a152e35-a653-414d-b44d-5d87e80cf040 { display: none !important; }}
@media (min-width: 0px) {
[id="s-4a152e35-a653-414d-b44d-5d87e80cf040"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4a152e35-a653-414d-b44d-5d87e80cf040"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4a152e35-a653-414d-b44d-5d87e80cf040"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4a152e35-a653-414d-b44d-5d87e80cf040"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-e36cb634-970c-4e60-8f9b-e2eaa6a3150b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-e36cb634-970c-4e60-8f9b-e2eaa6a3150b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
}
#s-e36cb634-970c-4e60-8f9b-e2eaa6a3150b .shogun-heading-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-e36cb634-970c-4e60-8f9b-e2eaa6a3150b .shogun-heading-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: center;
}


}
@media (min-width: 768px) and (max-width: 991px){#s-7f44a142-91a8-407e-bcd8-13aca68da7a0 {
  display: none;
}
#s-7f44a142-91a8-407e-bcd8-13aca68da7a0, #wrap-s-7f44a142-91a8-407e-bcd8-13aca68da7a0 { display: none !important; }}@media (max-width: 767px){#s-7f44a142-91a8-407e-bcd8-13aca68da7a0 {
  margin-top: 10px;
margin-bottom: 10px;
display: none;
}
#s-7f44a142-91a8-407e-bcd8-13aca68da7a0, #wrap-s-7f44a142-91a8-407e-bcd8-13aca68da7a0 { display: none !important; }}
@media (min-width: 1200px){#s-2f448d77-41ee-44bb-af25-dd05f6fe28e9 {
  display: none;
}
#s-2f448d77-41ee-44bb-af25-dd05f6fe28e9, #wrap-s-2f448d77-41ee-44bb-af25-dd05f6fe28e9 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2f448d77-41ee-44bb-af25-dd05f6fe28e9 {
  display: none;
}
#s-2f448d77-41ee-44bb-af25-dd05f6fe28e9, #wrap-s-2f448d77-41ee-44bb-af25-dd05f6fe28e9 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2f448d77-41ee-44bb-af25-dd05f6fe28e9 {
  display: none;
}
#s-2f448d77-41ee-44bb-af25-dd05f6fe28e9, #wrap-s-2f448d77-41ee-44bb-af25-dd05f6fe28e9 { display: none !important; }}@media (max-width: 767px){#s-2f448d77-41ee-44bb-af25-dd05f6fe28e9 {
  margin-top: 10px;
margin-bottom: 10px;
}
}
@media (min-width: 0px) {
[id="s-731f6fc3-d1c9-4fd1-bd78-057a7b38ea67"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-731f6fc3-d1c9-4fd1-bd78-057a7b38ea67"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-731f6fc3-d1c9-4fd1-bd78-057a7b38ea67"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-731f6fc3-d1c9-4fd1-bd78-057a7b38ea67"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px){#s-4bff4400-4bb9-4cd0-a4d7-5c4ea0bd217f {
  display: none;
}
#s-4bff4400-4bb9-4cd0-a4d7-5c4ea0bd217f, #wrap-s-4bff4400-4bb9-4cd0-a4d7-5c4ea0bd217f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4bff4400-4bb9-4cd0-a4d7-5c4ea0bd217f {
  display: none;
}
#s-4bff4400-4bb9-4cd0-a4d7-5c4ea0bd217f, #wrap-s-4bff4400-4bb9-4cd0-a4d7-5c4ea0bd217f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-4bff4400-4bb9-4cd0-a4d7-5c4ea0bd217f {
  display: none;
}
#s-4bff4400-4bb9-4cd0-a4d7-5c4ea0bd217f, #wrap-s-4bff4400-4bb9-4cd0-a4d7-5c4ea0bd217f { display: none !important; }}@media (max-width: 767px){#s-4bff4400-4bb9-4cd0-a4d7-5c4ea0bd217f {
  
}
}
#s-e3e9662f-a275-49e0-bc9a-86b965b73aab {
  text-align: left;
}



.shg-c#s-e3e9662f-a275-49e0-bc9a-86b965b73aab .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e3e9662f-a275-49e0-bc9a-86b965b73aab img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-e3e9662f-a275-49e0-bc9a-86b965b73aab .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e3e9662f-a275-49e0-bc9a-86b965b73aab img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e3e9662f-a275-49e0-bc9a-86b965b73aab .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e3e9662f-a275-49e0-bc9a-86b965b73aab img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e3e9662f-a275-49e0-bc9a-86b965b73aab .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e3e9662f-a275-49e0-bc9a-86b965b73aab img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e3e9662f-a275-49e0-bc9a-86b965b73aab .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e3e9662f-a275-49e0-bc9a-86b965b73aab img.shogun-image {
  width: 100%;
}



}
#s-abf11ab1-747d-43ea-919f-69846b9d55fd {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
}

#s-abf11ab1-747d-43ea-919f-69846b9d55fd .shg-product-title-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-8733747c-5337-4b02-a2fd-8c257465474d {
  
}

#s-8733747c-5337-4b02-a2fd-8c257465474d .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-8733747c-5337-4b02-a2fd-8c257465474d .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-8733747c-5337-4b02-a2fd-8c257465474d .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-42bdf929-4cb2-41b5-bfc4-c5d96c1cc165 {
  margin-top: 20px;
margin-bottom: 20px;
}
@media (min-width: 1200px){#s-42bdf929-4cb2-41b5-bfc4-c5d96c1cc165 {
  display: none;
}
#s-42bdf929-4cb2-41b5-bfc4-c5d96c1cc165, #wrap-s-42bdf929-4cb2-41b5-bfc4-c5d96c1cc165 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-42bdf929-4cb2-41b5-bfc4-c5d96c1cc165 {
  display: none;
}
#s-42bdf929-4cb2-41b5-bfc4-c5d96c1cc165, #wrap-s-42bdf929-4cb2-41b5-bfc4-c5d96c1cc165 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-42bdf929-4cb2-41b5-bfc4-c5d96c1cc165 {
  display: none;
}
#s-42bdf929-4cb2-41b5-bfc4-c5d96c1cc165, #wrap-s-42bdf929-4cb2-41b5-bfc4-c5d96c1cc165 { display: none !important; }}
#s-69435cf1-8a84-4395-a336-135b7ca8c85d {
  text-align: left;
}



.shg-c#s-69435cf1-8a84-4395-a336-135b7ca8c85d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-69435cf1-8a84-4395-a336-135b7ca8c85d img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-69435cf1-8a84-4395-a336-135b7ca8c85d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-69435cf1-8a84-4395-a336-135b7ca8c85d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-69435cf1-8a84-4395-a336-135b7ca8c85d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-69435cf1-8a84-4395-a336-135b7ca8c85d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-69435cf1-8a84-4395-a336-135b7ca8c85d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-69435cf1-8a84-4395-a336-135b7ca8c85d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-69435cf1-8a84-4395-a336-135b7ca8c85d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-69435cf1-8a84-4395-a336-135b7ca8c85d img.shogun-image {
  width: 100%;
}



}
#s-0f8793c7-7e7a-4993-a544-5f80186b88ff {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
}

#s-0f8793c7-7e7a-4993-a544-5f80186b88ff .shg-product-title-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-15998631-1933-4491-95d7-b4e81630fccc {
  
}

#s-15998631-1933-4491-95d7-b4e81630fccc .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-15998631-1933-4491-95d7-b4e81630fccc .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-15998631-1933-4491-95d7-b4e81630fccc .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-5a539e61-3c4b-4e0c-b8cd-65500465ff58 {
  box-shadow:0px 1px 6px 1px rgba(0, 0, 0, 0.26);
margin-top: 30px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 60px;
padding-bottom: 10px;
padding-right: 60px;
border-radius: 6px;
background-color: rgba(0, 0, 0, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-5a539e61-3c4b-4e0c-b8cd-65500465ff58:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-5a539e61-3c4b-4e0c-b8cd-65500465ff58:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-5a539e61-3c4b-4e0c-b8cd-65500465ff58 {
  box-shadow:0px 1px 6px 1px rgba(0, 0, 0, 0.26);
margin-bottom: 20px;
padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
border-radius: 6px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-5a539e61-3c4b-4e0c-b8cd-65500465ff58:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-5a539e61-3c4b-4e0c-b8cd-65500465ff58:active {background-color: #000000 !important;
text-decoration: none !important;}}

  #s-5a539e61-3c4b-4e0c-b8cd-65500465ff58-root {
    text-align: left;
  }


#s-5a539e61-3c4b-4e0c-b8cd-65500465ff58.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-5a539e61-3c4b-4e0c-b8cd-65500465ff58-root {
    text-align: left;
  }


#s-5a539e61-3c4b-4e0c-b8cd-65500465ff58.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-5a539e61-3c4b-4e0c-b8cd-65500465ff58-root {
    text-align: left;
  }


#s-5a539e61-3c4b-4e0c-b8cd-65500465ff58.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-5a539e61-3c4b-4e0c-b8cd-65500465ff58-root {
    text-align: left;
  }


#s-5a539e61-3c4b-4e0c-b8cd-65500465ff58.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-5a539e61-3c4b-4e0c-b8cd-65500465ff58-root {
    text-align: center;
  }


#s-5a539e61-3c4b-4e0c-b8cd-65500465ff58.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}
#s-cf26d5eb-1f95-47cb-affd-1781e977bb0b {
  box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 1);
padding-top: 50px;
padding-left: 50px;
padding-bottom: 50px;
padding-right: 50px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
min-height: 50px;
background-color: rgba(235, 235, 235, 1);
}
@media (max-width: 767px){#s-cf26d5eb-1f95-47cb-affd-1781e977bb0b {
  padding-left: 0px;
padding-right: 0px;
}
}







#s-cf26d5eb-1f95-47cb-affd-1781e977bb0b > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-cf26d5eb-1f95-47cb-affd-1781e977bb0b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3aab02d4-e4ac-4713-8d68-3f4008172fec {
  margin-left: 30px;
margin-right: 30px;
padding-top: 50px;
padding-bottom: 50px;
}
@media (max-width: 767px){#s-3aab02d4-e4ac-4713-8d68-3f4008172fec {
  padding-top: 0px;
padding-bottom: 0px;
}
}
@media (min-width: 0px) {
[id="s-3aab02d4-e4ac-4713-8d68-3f4008172fec"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3aab02d4-e4ac-4713-8d68-3f4008172fec"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-3aab02d4-e4ac-4713-8d68-3f4008172fec"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-3aab02d4-e4ac-4713-8d68-3f4008172fec"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 25.0px);
}

}

#s-438ad72a-20b1-427d-b1fb-8d7b3f37f32a {
  margin-top: 20px;
margin-bottom: 20px;
padding-left: 40px;
padding-right: 40px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-438ad72a-20b1-427d-b1fb-8d7b3f37f32a {
  margin-right: 50px;
}
}






  #s-438ad72a-20b1-427d-b1fb-8d7b3f37f32a img.shogun-image {
    

    
    
    
  }


#s-438ad72a-20b1-427d-b1fb-8d7b3f37f32a .shogun-image-content {
  
    align-items: center;
  
}

#s-74468926-535e-4651-8fac-1780681af407 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-74468926-535e-4651-8fac-1780681af407 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
}
#s-74468926-535e-4651-8fac-1780681af407 .shogun-heading-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-74468926-535e-4651-8fac-1780681af407 .shogun-heading-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: center;
}


}
@media (min-width: 1200px){#s-844b5373-9432-4d09-b847-5e95e12752ab {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-844b5373-9432-4d09-b847-5e95e12752ab {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-844b5373-9432-4d09-b847-5e95e12752ab {
  display: none;
}
#s-844b5373-9432-4d09-b847-5e95e12752ab, #wrap-s-844b5373-9432-4d09-b847-5e95e12752ab { display: none !important; }}@media (max-width: 767px){#s-844b5373-9432-4d09-b847-5e95e12752ab {
  margin-top: 10px;
margin-bottom: 10px;
display: none;
}
#s-844b5373-9432-4d09-b847-5e95e12752ab, #wrap-s-844b5373-9432-4d09-b847-5e95e12752ab { display: none !important; }}
@media (min-width: 1200px){#s-815d4dca-9bda-44c6-a47c-5e20cffe46fb {
  display: none;
}
#s-815d4dca-9bda-44c6-a47c-5e20cffe46fb, #wrap-s-815d4dca-9bda-44c6-a47c-5e20cffe46fb { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-815d4dca-9bda-44c6-a47c-5e20cffe46fb {
  display: none;
}
#s-815d4dca-9bda-44c6-a47c-5e20cffe46fb, #wrap-s-815d4dca-9bda-44c6-a47c-5e20cffe46fb { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-815d4dca-9bda-44c6-a47c-5e20cffe46fb {
  
}
}@media (max-width: 767px){#s-815d4dca-9bda-44c6-a47c-5e20cffe46fb {
  margin-top: 10px;
margin-bottom: 10px;
display: none;
}
#s-815d4dca-9bda-44c6-a47c-5e20cffe46fb, #wrap-s-815d4dca-9bda-44c6-a47c-5e20cffe46fb { display: none !important; }}
@media (min-width: 1200px){#s-bf6914a0-fb5e-40e3-a257-85bf2a9d9a38 {
  display: none;
}
#s-bf6914a0-fb5e-40e3-a257-85bf2a9d9a38, #wrap-s-bf6914a0-fb5e-40e3-a257-85bf2a9d9a38 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-bf6914a0-fb5e-40e3-a257-85bf2a9d9a38 {
  display: none;
}
#s-bf6914a0-fb5e-40e3-a257-85bf2a9d9a38, #wrap-s-bf6914a0-fb5e-40e3-a257-85bf2a9d9a38 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-bf6914a0-fb5e-40e3-a257-85bf2a9d9a38 {
  display: none;
}
#s-bf6914a0-fb5e-40e3-a257-85bf2a9d9a38, #wrap-s-bf6914a0-fb5e-40e3-a257-85bf2a9d9a38 { display: none !important; }}@media (max-width: 767px){#s-bf6914a0-fb5e-40e3-a257-85bf2a9d9a38 {
  margin-top: 10px;
margin-bottom: 10px;
}
}
#s-1cfc3d0a-cc53-435f-8b49-b22943878856 {
  box-shadow:0px 1px 6px 1px rgba(0, 0, 0, 0.26);
padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
border-radius: 6px;
background-color: rgba(0, 0, 0, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-1cfc3d0a-cc53-435f-8b49-b22943878856:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-1cfc3d0a-cc53-435f-8b49-b22943878856:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-1cfc3d0a-cc53-435f-8b49-b22943878856 {
  box-shadow:0px 1px 6px 1px rgba(0, 0, 0, 0.26);
padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
border-radius: 6px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-1cfc3d0a-cc53-435f-8b49-b22943878856:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-1cfc3d0a-cc53-435f-8b49-b22943878856:active {background-color: #000000 !important;
text-decoration: none !important;}}

  #s-1cfc3d0a-cc53-435f-8b49-b22943878856-root {
    text-align: left;
  }


#s-1cfc3d0a-cc53-435f-8b49-b22943878856.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-1cfc3d0a-cc53-435f-8b49-b22943878856-root {
    text-align: left;
  }


#s-1cfc3d0a-cc53-435f-8b49-b22943878856.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-1cfc3d0a-cc53-435f-8b49-b22943878856-root {
    text-align: left;
  }


#s-1cfc3d0a-cc53-435f-8b49-b22943878856.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-1cfc3d0a-cc53-435f-8b49-b22943878856-root {
    text-align: left;
  }


#s-1cfc3d0a-cc53-435f-8b49-b22943878856.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-1cfc3d0a-cc53-435f-8b49-b22943878856-root {
    text-align: center;
  }


#s-1cfc3d0a-cc53-435f-8b49-b22943878856.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}
#s-d8632b51-7be8-4c79-8f67-d78e5b0d4981 {
  padding-top: 60px;
padding-left: 35px;
padding-bottom: 20px;
padding-right: 35px;
min-height: 50px;
}








#s-d8632b51-7be8-4c79-8f67-d78e5b0d4981 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d8632b51-7be8-4c79-8f67-d78e5b0d4981.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b0765873-845c-43ec-932b-a28c7724dfd0 {
  margin-bottom: 60px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b0765873-845c-43ec-932b-a28c7724dfd0 .shogun-heading-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



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