.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-89f5dde0-710d-429b-9aad-7f134f20bf87 {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (min-width: 1200px){#s-89f5dde0-710d-429b-9aad-7f134f20bf87 {
  display: none;
}
#s-89f5dde0-710d-429b-9aad-7f134f20bf87, #wrap-s-89f5dde0-710d-429b-9aad-7f134f20bf87 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-89f5dde0-710d-429b-9aad-7f134f20bf87 {
  display: none;
}
#s-89f5dde0-710d-429b-9aad-7f134f20bf87, #wrap-s-89f5dde0-710d-429b-9aad-7f134f20bf87 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-89f5dde0-710d-429b-9aad-7f134f20bf87 {
  display: none;
}
#s-89f5dde0-710d-429b-9aad-7f134f20bf87, #wrap-s-89f5dde0-710d-429b-9aad-7f134f20bf87 { display:none !important; }}@media (max-width: 767px){#s-89f5dde0-710d-429b-9aad-7f134f20bf87 {
  display: none;
}
#s-89f5dde0-710d-429b-9aad-7f134f20bf87, #wrap-s-89f5dde0-710d-429b-9aad-7f134f20bf87 { display:none !important; }}







#s-89f5dde0-710d-429b-9aad-7f134f20bf87 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-89f5dde0-710d-429b-9aad-7f134f20bf87.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.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;
}
#s-c97e5000-8a1b-4fc6-936d-4d2c5a1f1416 {
  text-align: center;
}







  #s-c97e5000-8a1b-4fc6-936d-4d2c5a1f1416 img.shogun-image {
    

    
    
    
  }


#s-c97e5000-8a1b-4fc6-936d-4d2c5a1f1416 .shogun-image-content {
  
    align-items: 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-b1d1c613-f166-40de-a0bf-b6391fc6409f {
  margin-left: 2%;
margin-right: 2%;
}

@media (min-width: 0px) {
[id="s-b1d1c613-f166-40de-a0bf-b6391fc6409f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-b1d1c613-f166-40de-a0bf-b6391fc6409f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-b1d1c613-f166-40de-a0bf-b6391fc6409f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-b1d1c613-f166-40de-a0bf-b6391fc6409f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

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

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

#s-a032fcd3-7dab-454a-8373-7356dafa637d {
  margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a032fcd3-7dab-454a-8373-7356dafa637d .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 22px;
  line-height: 1.5em;
  letter-spacing: 3px;
  
}



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

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

.shg-btn-text {
  font-weight: 400;
  font-family: Europa;
}

.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-e554fff5-c7f0-47f5-8b67-e49b08e8cde5 {
  margin-top: 10px;
margin-bottom: 25px;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-radius: 2px;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
}
#s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5-root {
    text-align: center;
  }


#s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5-root {
    text-align: center;
  }


#s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5-root {
    text-align: center;
  }


#s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5-root {
    text-align: center;
  }


#s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5-root {
    text-align: center;
  }


#s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}
  #s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5-root {
    text-align: center;
  }


#s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}

#s-ced7ae4a-35ff-4f51-9a59-949e8a7b82e1 {
  margin-top: -5%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-ced7ae4a-35ff-4f51-9a59-949e8a7b82e1 {
  display: none;
}
#s-ced7ae4a-35ff-4f51-9a59-949e8a7b82e1, #wrap-s-ced7ae4a-35ff-4f51-9a59-949e8a7b82e1 { display:none !important; }}@media (max-width: 767px){#s-ced7ae4a-35ff-4f51-9a59-949e8a7b82e1 {
  display: none;
}
#s-ced7ae4a-35ff-4f51-9a59-949e8a7b82e1, #wrap-s-ced7ae4a-35ff-4f51-9a59-949e8a7b82e1 { display:none !important; }}







#s-ced7ae4a-35ff-4f51-9a59-949e8a7b82e1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ced7ae4a-35ff-4f51-9a59-949e8a7b82e1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

.shg-image-content-wrapper {
  position: relative;
}

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

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

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

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

.shogun-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.shogun-image-overlay.shg-top-left {
  align-items: flex-start;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-top-center {
  align-items: flex-start;
  justify-content: center;
}

.shogun-image-overlay.shg-top-right {
  align-items: flex-start;
  justify-content: flex-end;
}

.shogun-image-overlay.shg-middle-left {
  align-items: center;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-middle-center {
  align-items: center;
  justify-content: center;
}

.shogun-image-overlay.shg-middle-right {
  align-items: center;
  justify-content: flex-end;
}

.shogun-image-overlay.shg-bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-bottom-center {
  align-items: flex-end;
  justify-content: center;
}

.shogun-image-overlay.shg-bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}

.shogun-image-overlay p {
  margin: 0;
  padding: 0;
  line-height: normal;
}

.shogun-image-cover {
  object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
}

.shogun-image-contain {
  font-family: "object-fit: contain;";
  object-fit: contain;
  width: 100%;
}

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

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

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

.shogun-image-content {
  display: flex;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

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

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

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

.shogun-image-content > div {
  width: 100%;
}

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

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

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

#s-5668ba3c-6772-4b66-9144-e385dd1ada64 {
  text-align: center;
}







  img.s-5668ba3c-6772-4b66-9144-e385dd1ada64.shogun-image {
    
    
  }


.s-5668ba3c-6772-4b66-9144-e385dd1ada64 .shogun-image-content {
  
    align-items: center;
  
}

.s-5668ba3c-6772-4b66-9144-e385dd1ada64.shg-align-container {
  text-align: center
}

.s-5668ba3c-6772-4b66-9144-e385dd1ada64.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5668ba3c-6772-4b66-9144-e385dd1ada64.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-5668ba3c-6772-4b66-9144-e385dd1ada64.shogun-image {
    
    
  }


.s-5668ba3c-6772-4b66-9144-e385dd1ada64 .shogun-image-content {
  
    align-items: center;
  
}

.s-5668ba3c-6772-4b66-9144-e385dd1ada64.shg-align-container {
  text-align: center
}

.s-5668ba3c-6772-4b66-9144-e385dd1ada64.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5668ba3c-6772-4b66-9144-e385dd1ada64.shogun-image {
  box-sizing: border-box;
}


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





  img.s-5668ba3c-6772-4b66-9144-e385dd1ada64.shogun-image {
    
    
  }


.s-5668ba3c-6772-4b66-9144-e385dd1ada64 .shogun-image-content {
  
    align-items: center;
  
}

.s-5668ba3c-6772-4b66-9144-e385dd1ada64.shg-align-container {
  text-align: center
}

.s-5668ba3c-6772-4b66-9144-e385dd1ada64.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5668ba3c-6772-4b66-9144-e385dd1ada64.shogun-image {
  box-sizing: border-box;
}


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





  img.s-5668ba3c-6772-4b66-9144-e385dd1ada64.shogun-image {
    
    
  }


.s-5668ba3c-6772-4b66-9144-e385dd1ada64 .shogun-image-content {
  
    align-items: center;
  
}

.s-5668ba3c-6772-4b66-9144-e385dd1ada64.shg-align-container {
  text-align: center
}

.s-5668ba3c-6772-4b66-9144-e385dd1ada64.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5668ba3c-6772-4b66-9144-e385dd1ada64.shogun-image {
  box-sizing: border-box;
}


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





  img.s-5668ba3c-6772-4b66-9144-e385dd1ada64.shogun-image {
    
    
  }


.s-5668ba3c-6772-4b66-9144-e385dd1ada64 .shogun-image-content {
  
    align-items: center;
  
}

.s-5668ba3c-6772-4b66-9144-e385dd1ada64.shg-align-container {
  text-align: center
}

.s-5668ba3c-6772-4b66-9144-e385dd1ada64.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5668ba3c-6772-4b66-9144-e385dd1ada64.shogun-image {
  box-sizing: border-box;
}


}
#s-c69eefd3-a274-4737-b9e6-89e5553b54d1 {
  margin-top: -11%;
min-height: 50px;
}
@media (min-width: 1200px){#s-c69eefd3-a274-4737-b9e6-89e5553b54d1 {
  display: none;
}
#s-c69eefd3-a274-4737-b9e6-89e5553b54d1, #wrap-s-c69eefd3-a274-4737-b9e6-89e5553b54d1 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c69eefd3-a274-4737-b9e6-89e5553b54d1 {
  display: none;
}
#s-c69eefd3-a274-4737-b9e6-89e5553b54d1, #wrap-s-c69eefd3-a274-4737-b9e6-89e5553b54d1 { display:none !important; }}







#s-c69eefd3-a274-4737-b9e6-89e5553b54d1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c69eefd3-a274-4737-b9e6-89e5553b54d1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-542f014f-fa64-44c3-a90c-41e93ff8d940 {
  text-align: center;
}







  img.s-542f014f-fa64-44c3-a90c-41e93ff8d940.shogun-image {
    
    
  }


.s-542f014f-fa64-44c3-a90c-41e93ff8d940 .shogun-image-content {
  
    align-items: center;
  
}

.s-542f014f-fa64-44c3-a90c-41e93ff8d940.shg-align-container {
  text-align: center
}

.s-542f014f-fa64-44c3-a90c-41e93ff8d940.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-542f014f-fa64-44c3-a90c-41e93ff8d940.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-542f014f-fa64-44c3-a90c-41e93ff8d940.shogun-image {
    
    
  }


.s-542f014f-fa64-44c3-a90c-41e93ff8d940 .shogun-image-content {
  
    align-items: center;
  
}

.s-542f014f-fa64-44c3-a90c-41e93ff8d940.shg-align-container {
  text-align: center
}

.s-542f014f-fa64-44c3-a90c-41e93ff8d940.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-542f014f-fa64-44c3-a90c-41e93ff8d940.shogun-image {
  box-sizing: border-box;
}


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





  img.s-542f014f-fa64-44c3-a90c-41e93ff8d940.shogun-image {
    
    
  }


.s-542f014f-fa64-44c3-a90c-41e93ff8d940 .shogun-image-content {
  
    align-items: center;
  
}

.s-542f014f-fa64-44c3-a90c-41e93ff8d940.shg-align-container {
  text-align: center
}

.s-542f014f-fa64-44c3-a90c-41e93ff8d940.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-542f014f-fa64-44c3-a90c-41e93ff8d940.shogun-image {
  box-sizing: border-box;
}


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





  img.s-542f014f-fa64-44c3-a90c-41e93ff8d940.shogun-image {
    
    
  }


.s-542f014f-fa64-44c3-a90c-41e93ff8d940 .shogun-image-content {
  
    align-items: center;
  
}

.s-542f014f-fa64-44c3-a90c-41e93ff8d940.shg-align-container {
  text-align: center
}

.s-542f014f-fa64-44c3-a90c-41e93ff8d940.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-542f014f-fa64-44c3-a90c-41e93ff8d940.shogun-image {
  box-sizing: border-box;
}


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





  img.s-542f014f-fa64-44c3-a90c-41e93ff8d940.shogun-image {
    
    
  }


.s-542f014f-fa64-44c3-a90c-41e93ff8d940 .shogun-image-content {
  
    align-items: center;
  
}

.s-542f014f-fa64-44c3-a90c-41e93ff8d940.shg-align-container {
  text-align: center
}

.s-542f014f-fa64-44c3-a90c-41e93ff8d940.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-542f014f-fa64-44c3-a90c-41e93ff8d940.shogun-image {
  box-sizing: border-box;
}


}
#s-ccb3bb72-714e-4c34-82e5-d7496604b089 {
  margin-top: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-ccb3bb72-714e-4c34-82e5-d7496604b089 {
  display: none;
}
#s-ccb3bb72-714e-4c34-82e5-d7496604b089, #wrap-s-ccb3bb72-714e-4c34-82e5-d7496604b089 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ccb3bb72-714e-4c34-82e5-d7496604b089 {
  display: none;
}
#s-ccb3bb72-714e-4c34-82e5-d7496604b089, #wrap-s-ccb3bb72-714e-4c34-82e5-d7496604b089 { display:none !important; }}
#s-ccb3bb72-714e-4c34-82e5-d7496604b089 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}


@media (min-width: 768px) and (max-width: 991px){#s-ccb3bb72-714e-4c34-82e5-d7496604b089 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 60px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}


}
#s-0cf5635c-89ab-4249-9c78-c5794f8e9771 {
  min-height: 50px;
}








#s-0cf5635c-89ab-4249-9c78-c5794f8e9771 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0cf5635c-89ab-4249-9c78-c5794f8e9771.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a32459a2-5c3a-4ef0-9477-fee30e1a5dc7 {
  margin-top: 1%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-a32459a2-5c3a-4ef0-9477-fee30e1a5dc7 {
  display: none;
}
#s-a32459a2-5c3a-4ef0-9477-fee30e1a5dc7, #wrap-s-a32459a2-5c3a-4ef0-9477-fee30e1a5dc7 { display:none !important; }}@media (max-width: 767px){#s-a32459a2-5c3a-4ef0-9477-fee30e1a5dc7 {
  margin-top: 3%;
display: none;
}
#s-a32459a2-5c3a-4ef0-9477-fee30e1a5dc7, #wrap-s-a32459a2-5c3a-4ef0-9477-fee30e1a5dc7 { display:none !important; }}
#s-a32459a2-5c3a-4ef0-9477-fee30e1a5dc7 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  line-height: 1.5em;
  letter-spacing: 3px;
  
}


@media (max-width: 767px){#s-a32459a2-5c3a-4ef0-9477-fee30e1a5dc7 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-368f499c-ca27-4d85-b12f-ba8c4cec1b20 {
  margin-top: 5%;
margin-left: 10%;
margin-right: 10%;
}
@media (min-width: 1200px){#s-368f499c-ca27-4d85-b12f-ba8c4cec1b20 {
  margin-top: 0%;
margin-left: 20%;
margin-right: 20%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-368f499c-ca27-4d85-b12f-ba8c4cec1b20 {
  margin-top: 0%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-368f499c-ca27-4d85-b12f-ba8c4cec1b20 {
  margin-top: 5%;
margin-bottom: 5%;
}
}@media (max-width: 767px){#s-368f499c-ca27-4d85-b12f-ba8c4cec1b20 {
  margin-top: 5%;
margin-left: 5%;
margin-right: 5%;
}
}
#s-eff7ed85-d0ad-4858-938f-629fa735a87c {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-eff7ed85-d0ad-4858-938f-629fa735a87c {
  display: none;
}
#s-eff7ed85-d0ad-4858-938f-629fa735a87c, #wrap-s-eff7ed85-d0ad-4858-938f-629fa735a87c { display:none !important; }}@media (max-width: 767px){#s-eff7ed85-d0ad-4858-938f-629fa735a87c {
  display: none;
}
#s-eff7ed85-d0ad-4858-938f-629fa735a87c, #wrap-s-eff7ed85-d0ad-4858-938f-629fa735a87c { display:none !important; }}







#s-eff7ed85-d0ad-4858-938f-629fa735a87c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-eff7ed85-d0ad-4858-938f-629fa735a87c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3c17263a-34c9-4958-8003-edbfce57e12c {
  margin-bottom: 1%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3c17263a-34c9-4958-8003-edbfce57e12c .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 21px;
  line-height: 1.5em;
  letter-spacing: 3px;
  
}



#s-9ff0a6d0-40d9-45a6-930a-bb051d2573e1 {
  margin-left: 10px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-9ff0a6d0-40d9-45a6-930a-bb051d2573e1"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-9ff0a6d0-40d9-45a6-930a-bb051d2573e1"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 8.0px);
}

}

@media (min-width: 992px) {
[id="s-9ff0a6d0-40d9-45a6-930a-bb051d2573e1"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 8.0px);
}

}

@media (min-width: 1200px) {
[id="s-9ff0a6d0-40d9-45a6-930a-bb051d2573e1"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 8.0px);
}

}

#s-3e754d4a-07d1-4065-86a9-1d6744dac6cd {
  text-align: center;
}







  img.s-3e754d4a-07d1-4065-86a9-1d6744dac6cd.shogun-image {
    
    
  }


.s-3e754d4a-07d1-4065-86a9-1d6744dac6cd .shogun-image-content {
  
    align-items: center;
  
}

.s-3e754d4a-07d1-4065-86a9-1d6744dac6cd.shg-align-container {
  text-align: center
}

.s-3e754d4a-07d1-4065-86a9-1d6744dac6cd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e754d4a-07d1-4065-86a9-1d6744dac6cd.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-3e754d4a-07d1-4065-86a9-1d6744dac6cd.shogun-image {
    
    
  }


.s-3e754d4a-07d1-4065-86a9-1d6744dac6cd .shogun-image-content {
  
    align-items: center;
  
}

.s-3e754d4a-07d1-4065-86a9-1d6744dac6cd.shg-align-container {
  text-align: center
}

.s-3e754d4a-07d1-4065-86a9-1d6744dac6cd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e754d4a-07d1-4065-86a9-1d6744dac6cd.shogun-image {
  box-sizing: border-box;
}


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





  img.s-3e754d4a-07d1-4065-86a9-1d6744dac6cd.shogun-image {
    
    
  }


.s-3e754d4a-07d1-4065-86a9-1d6744dac6cd .shogun-image-content {
  
    align-items: center;
  
}

.s-3e754d4a-07d1-4065-86a9-1d6744dac6cd.shg-align-container {
  text-align: center
}

.s-3e754d4a-07d1-4065-86a9-1d6744dac6cd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e754d4a-07d1-4065-86a9-1d6744dac6cd.shogun-image {
  box-sizing: border-box;
}


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





  img.s-3e754d4a-07d1-4065-86a9-1d6744dac6cd.shogun-image {
    
    
  }


.s-3e754d4a-07d1-4065-86a9-1d6744dac6cd .shogun-image-content {
  
    align-items: center;
  
}

.s-3e754d4a-07d1-4065-86a9-1d6744dac6cd.shg-align-container {
  text-align: center
}

.s-3e754d4a-07d1-4065-86a9-1d6744dac6cd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e754d4a-07d1-4065-86a9-1d6744dac6cd.shogun-image {
  box-sizing: border-box;
}


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





  img.s-3e754d4a-07d1-4065-86a9-1d6744dac6cd.shogun-image {
    
    
  }


.s-3e754d4a-07d1-4065-86a9-1d6744dac6cd .shogun-image-content {
  
    align-items: center;
  
}

.s-3e754d4a-07d1-4065-86a9-1d6744dac6cd.shg-align-container {
  text-align: center
}

.s-3e754d4a-07d1-4065-86a9-1d6744dac6cd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e754d4a-07d1-4065-86a9-1d6744dac6cd.shogun-image {
  box-sizing: border-box;
}


}
#s-d1c58764-e56c-468e-a5b3-5833b3c85f93 {
  display: none;
}
#s-6f584d61-1ad5-40b8-a2fe-b08a9d4017a7 {
  margin-top: 2%;
margin-bottom: -3%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6f584d61-1ad5-40b8-a2fe-b08a9d4017a7 .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  
  letter-spacing: 3px;
  
}



.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: #000000;
  font-family: Europa;
  text-transform: none;
  font-weight: 400;
  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-ff1038b7-cfc9-4416-abe6-9812c1de3f25 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ff1038b7-cfc9-4416-abe6-9812c1de3f25 .shg-product-title-component h5 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: 2px;
}

#s-1b7bd02e-b1ff-49e1-9d98-8344a790755a {
  text-align: center;
}

#s-1b7bd02e-b1ff-49e1-9d98-8344a790755a .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 15px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-1b7bd02e-b1ff-49e1-9d98-8344a790755a .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 15px;
}

#s-1b7bd02e-b1ff-49e1-9d98-8344a790755a .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-e81a6593-5be6-40aa-8c24-84a68dab3238 {
  text-align: center;
}







  img.s-e81a6593-5be6-40aa-8c24-84a68dab3238.shogun-image {
    
    
  }


.s-e81a6593-5be6-40aa-8c24-84a68dab3238 .shogun-image-content {
  
    align-items: center;
  
}

.s-e81a6593-5be6-40aa-8c24-84a68dab3238.shg-align-container {
  text-align: center
}

.s-e81a6593-5be6-40aa-8c24-84a68dab3238.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e81a6593-5be6-40aa-8c24-84a68dab3238.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-e81a6593-5be6-40aa-8c24-84a68dab3238.shogun-image {
    
    
  }


.s-e81a6593-5be6-40aa-8c24-84a68dab3238 .shogun-image-content {
  
    align-items: center;
  
}

.s-e81a6593-5be6-40aa-8c24-84a68dab3238.shg-align-container {
  text-align: center
}

.s-e81a6593-5be6-40aa-8c24-84a68dab3238.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e81a6593-5be6-40aa-8c24-84a68dab3238.shogun-image {
  box-sizing: border-box;
}


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





  img.s-e81a6593-5be6-40aa-8c24-84a68dab3238.shogun-image {
    
    
  }


.s-e81a6593-5be6-40aa-8c24-84a68dab3238 .shogun-image-content {
  
    align-items: center;
  
}

.s-e81a6593-5be6-40aa-8c24-84a68dab3238.shg-align-container {
  text-align: center
}

.s-e81a6593-5be6-40aa-8c24-84a68dab3238.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e81a6593-5be6-40aa-8c24-84a68dab3238.shogun-image {
  box-sizing: border-box;
}


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





  img.s-e81a6593-5be6-40aa-8c24-84a68dab3238.shogun-image {
    
    
  }


.s-e81a6593-5be6-40aa-8c24-84a68dab3238 .shogun-image-content {
  
    align-items: center;
  
}

.s-e81a6593-5be6-40aa-8c24-84a68dab3238.shg-align-container {
  text-align: center
}

.s-e81a6593-5be6-40aa-8c24-84a68dab3238.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e81a6593-5be6-40aa-8c24-84a68dab3238.shogun-image {
  box-sizing: border-box;
}


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





  img.s-e81a6593-5be6-40aa-8c24-84a68dab3238.shogun-image {
    
    
  }


.s-e81a6593-5be6-40aa-8c24-84a68dab3238 .shogun-image-content {
  
    align-items: center;
  
}

.s-e81a6593-5be6-40aa-8c24-84a68dab3238.shg-align-container {
  text-align: center
}

.s-e81a6593-5be6-40aa-8c24-84a68dab3238.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e81a6593-5be6-40aa-8c24-84a68dab3238.shogun-image {
  box-sizing: border-box;
}


}
#s-d8524eb7-cb3c-4d94-9730-58758db22264 {
  margin-top: 2%;
margin-bottom: -3%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d8524eb7-cb3c-4d94-9730-58758db22264 .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  
  letter-spacing: 3px;
  
}



#s-3d9ce888-1d6a-4b32-93ad-2764efe78feb {
  display: none;
}
#s-26861711-5aba-4d7f-a0c7-1cd124be5cb2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-26861711-5aba-4d7f-a0c7-1cd124be5cb2 .shg-product-title-component h5 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: 2px;
}

#s-2e332071-3aad-47fe-bde8-34441c4a40f0 {
  text-align: center;
}

#s-2e332071-3aad-47fe-bde8-34441c4a40f0 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 15px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-2e332071-3aad-47fe-bde8-34441c4a40f0 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 15px;
}

#s-2e332071-3aad-47fe-bde8-34441c4a40f0 .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-586f9089-c9f4-4f53-a989-d7ca44d9ed35 {
  text-align: center;
}







  img.s-586f9089-c9f4-4f53-a989-d7ca44d9ed35.shogun-image {
    
    
  }


.s-586f9089-c9f4-4f53-a989-d7ca44d9ed35 .shogun-image-content {
  
    align-items: center;
  
}

.s-586f9089-c9f4-4f53-a989-d7ca44d9ed35.shg-align-container {
  text-align: center
}

.s-586f9089-c9f4-4f53-a989-d7ca44d9ed35.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-586f9089-c9f4-4f53-a989-d7ca44d9ed35.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-586f9089-c9f4-4f53-a989-d7ca44d9ed35.shogun-image {
    
    
  }


.s-586f9089-c9f4-4f53-a989-d7ca44d9ed35 .shogun-image-content {
  
    align-items: center;
  
}

.s-586f9089-c9f4-4f53-a989-d7ca44d9ed35.shg-align-container {
  text-align: center
}

.s-586f9089-c9f4-4f53-a989-d7ca44d9ed35.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-586f9089-c9f4-4f53-a989-d7ca44d9ed35.shogun-image {
  box-sizing: border-box;
}


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





  img.s-586f9089-c9f4-4f53-a989-d7ca44d9ed35.shogun-image {
    
    
  }


.s-586f9089-c9f4-4f53-a989-d7ca44d9ed35 .shogun-image-content {
  
    align-items: center;
  
}

.s-586f9089-c9f4-4f53-a989-d7ca44d9ed35.shg-align-container {
  text-align: center
}

.s-586f9089-c9f4-4f53-a989-d7ca44d9ed35.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-586f9089-c9f4-4f53-a989-d7ca44d9ed35.shogun-image {
  box-sizing: border-box;
}


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





  img.s-586f9089-c9f4-4f53-a989-d7ca44d9ed35.shogun-image {
    
    
  }


.s-586f9089-c9f4-4f53-a989-d7ca44d9ed35 .shogun-image-content {
  
    align-items: center;
  
}

.s-586f9089-c9f4-4f53-a989-d7ca44d9ed35.shg-align-container {
  text-align: center
}

.s-586f9089-c9f4-4f53-a989-d7ca44d9ed35.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-586f9089-c9f4-4f53-a989-d7ca44d9ed35.shogun-image {
  box-sizing: border-box;
}


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





  img.s-586f9089-c9f4-4f53-a989-d7ca44d9ed35.shogun-image {
    
    
  }


.s-586f9089-c9f4-4f53-a989-d7ca44d9ed35 .shogun-image-content {
  
    align-items: center;
  
}

.s-586f9089-c9f4-4f53-a989-d7ca44d9ed35.shg-align-container {
  text-align: center
}

.s-586f9089-c9f4-4f53-a989-d7ca44d9ed35.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-586f9089-c9f4-4f53-a989-d7ca44d9ed35.shogun-image {
  box-sizing: border-box;
}


}
#s-7bd42c0f-41ec-42eb-88e8-2bf29f5255ca {
  margin-top: 2%;
margin-bottom: -3%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7bd42c0f-41ec-42eb-88e8-2bf29f5255ca .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  
  letter-spacing: 3px;
  
}



#s-30155b91-1414-46f4-8832-85073d79f867 {
  display: none;
}
#s-274d32d1-c3ce-4a87-ac3f-1a9fcd5ae94c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-274d32d1-c3ce-4a87-ac3f-1a9fcd5ae94c .shg-product-title-component h5 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: 2px;
}

#s-2c54d571-ac02-4093-b0d5-c359e0cbdd1f {
  text-align: center;
}

#s-2c54d571-ac02-4093-b0d5-c359e0cbdd1f .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 15px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-2c54d571-ac02-4093-b0d5-c359e0cbdd1f .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 15px;
}

#s-2c54d571-ac02-4093-b0d5-c359e0cbdd1f .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-c7210428-1cd6-405f-a6b3-5a1cf44f8b2b {
  text-align: center;
}







  img.s-c7210428-1cd6-405f-a6b3-5a1cf44f8b2b.shogun-image {
    
    
  }


.s-c7210428-1cd6-405f-a6b3-5a1cf44f8b2b .shogun-image-content {
  
    align-items: center;
  
}

.s-c7210428-1cd6-405f-a6b3-5a1cf44f8b2b.shg-align-container {
  text-align: center
}

.s-c7210428-1cd6-405f-a6b3-5a1cf44f8b2b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7210428-1cd6-405f-a6b3-5a1cf44f8b2b.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-c7210428-1cd6-405f-a6b3-5a1cf44f8b2b.shogun-image {
    
    
  }


.s-c7210428-1cd6-405f-a6b3-5a1cf44f8b2b .shogun-image-content {
  
    align-items: center;
  
}

.s-c7210428-1cd6-405f-a6b3-5a1cf44f8b2b.shg-align-container {
  text-align: center
}

.s-c7210428-1cd6-405f-a6b3-5a1cf44f8b2b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7210428-1cd6-405f-a6b3-5a1cf44f8b2b.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c7210428-1cd6-405f-a6b3-5a1cf44f8b2b.shogun-image {
    
    
  }


.s-c7210428-1cd6-405f-a6b3-5a1cf44f8b2b .shogun-image-content {
  
    align-items: center;
  
}

.s-c7210428-1cd6-405f-a6b3-5a1cf44f8b2b.shg-align-container {
  text-align: center
}

.s-c7210428-1cd6-405f-a6b3-5a1cf44f8b2b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7210428-1cd6-405f-a6b3-5a1cf44f8b2b.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c7210428-1cd6-405f-a6b3-5a1cf44f8b2b.shogun-image {
    
    
  }


.s-c7210428-1cd6-405f-a6b3-5a1cf44f8b2b .shogun-image-content {
  
    align-items: center;
  
}

.s-c7210428-1cd6-405f-a6b3-5a1cf44f8b2b.shg-align-container {
  text-align: center
}

.s-c7210428-1cd6-405f-a6b3-5a1cf44f8b2b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7210428-1cd6-405f-a6b3-5a1cf44f8b2b.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c7210428-1cd6-405f-a6b3-5a1cf44f8b2b.shogun-image {
    
    
  }


.s-c7210428-1cd6-405f-a6b3-5a1cf44f8b2b .shogun-image-content {
  
    align-items: center;
  
}

.s-c7210428-1cd6-405f-a6b3-5a1cf44f8b2b.shg-align-container {
  text-align: center
}

.s-c7210428-1cd6-405f-a6b3-5a1cf44f8b2b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7210428-1cd6-405f-a6b3-5a1cf44f8b2b.shogun-image {
  box-sizing: border-box;
}


}
#s-a10b5c54-06f7-4b3b-8470-2b0c0b6986eb {
  margin-top: 2%;
margin-bottom: -3%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a10b5c54-06f7-4b3b-8470-2b0c0b6986eb .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  
  letter-spacing: 3px;
  
}



#s-8dc4b4bb-ec32-4c8f-aeeb-57d127f92266 {
  display: none;
}
#s-4b4f05f8-7717-49bb-a28c-c323932396c8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4b4f05f8-7717-49bb-a28c-c323932396c8 .shg-product-title-component h5 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: 2px;
}

#s-d1d07d2d-1259-4f4a-b29b-414ec3ce7d67 {
  text-align: center;
}

#s-d1d07d2d-1259-4f4a-b29b-414ec3ce7d67 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 15px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-d1d07d2d-1259-4f4a-b29b-414ec3ce7d67 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 15px;
}

#s-d1d07d2d-1259-4f4a-b29b-414ec3ce7d67 .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-bee951ee-343e-453f-9a50-7741b7bf555d {
  text-align: center;
}







  img.s-bee951ee-343e-453f-9a50-7741b7bf555d.shogun-image {
    
    
  }


.s-bee951ee-343e-453f-9a50-7741b7bf555d .shogun-image-content {
  
    align-items: center;
  
}

.s-bee951ee-343e-453f-9a50-7741b7bf555d.shg-align-container {
  text-align: center
}

.s-bee951ee-343e-453f-9a50-7741b7bf555d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bee951ee-343e-453f-9a50-7741b7bf555d.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-bee951ee-343e-453f-9a50-7741b7bf555d.shogun-image {
    
    
  }


.s-bee951ee-343e-453f-9a50-7741b7bf555d .shogun-image-content {
  
    align-items: center;
  
}

.s-bee951ee-343e-453f-9a50-7741b7bf555d.shg-align-container {
  text-align: center
}

.s-bee951ee-343e-453f-9a50-7741b7bf555d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bee951ee-343e-453f-9a50-7741b7bf555d.shogun-image {
  box-sizing: border-box;
}


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





  img.s-bee951ee-343e-453f-9a50-7741b7bf555d.shogun-image {
    
    
  }


.s-bee951ee-343e-453f-9a50-7741b7bf555d .shogun-image-content {
  
    align-items: center;
  
}

.s-bee951ee-343e-453f-9a50-7741b7bf555d.shg-align-container {
  text-align: center
}

.s-bee951ee-343e-453f-9a50-7741b7bf555d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bee951ee-343e-453f-9a50-7741b7bf555d.shogun-image {
  box-sizing: border-box;
}


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





  img.s-bee951ee-343e-453f-9a50-7741b7bf555d.shogun-image {
    
    
  }


.s-bee951ee-343e-453f-9a50-7741b7bf555d .shogun-image-content {
  
    align-items: center;
  
}

.s-bee951ee-343e-453f-9a50-7741b7bf555d.shg-align-container {
  text-align: center
}

.s-bee951ee-343e-453f-9a50-7741b7bf555d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bee951ee-343e-453f-9a50-7741b7bf555d.shogun-image {
  box-sizing: border-box;
}


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





  img.s-bee951ee-343e-453f-9a50-7741b7bf555d.shogun-image {
    
    
  }


.s-bee951ee-343e-453f-9a50-7741b7bf555d .shogun-image-content {
  
    align-items: center;
  
}

.s-bee951ee-343e-453f-9a50-7741b7bf555d.shg-align-container {
  text-align: center
}

.s-bee951ee-343e-453f-9a50-7741b7bf555d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bee951ee-343e-453f-9a50-7741b7bf555d.shogun-image {
  box-sizing: border-box;
}


}
#s-122a2e31-d7c8-48c4-9984-87aeaf933a63 {
  display: none;
}
#s-8e427c23-94ec-4d6f-a36a-60f5fe7428d5 {
  margin-top: 2%;
margin-bottom: -3%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8e427c23-94ec-4d6f-a36a-60f5fe7428d5 .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  
  letter-spacing: 3px;
  
}



#s-37f2d777-1942-485a-aa3c-30041129503a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-37f2d777-1942-485a-aa3c-30041129503a .shg-product-title-component h5 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: 2px;
}

#s-b0cfdddb-c62d-48e8-b22e-efaea0d6866e {
  text-align: center;
}

#s-b0cfdddb-c62d-48e8-b22e-efaea0d6866e .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 15px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-b0cfdddb-c62d-48e8-b22e-efaea0d6866e .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 15px;
}

#s-b0cfdddb-c62d-48e8-b22e-efaea0d6866e .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-e7ea950e-fe05-4e00-a3e6-c18ce414a5de {
  margin-left: 10px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-e7ea950e-fe05-4e00-a3e6-c18ce414a5de"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-e7ea950e-fe05-4e00-a3e6-c18ce414a5de"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 8.0px);
}

}

@media (min-width: 992px) {
[id="s-e7ea950e-fe05-4e00-a3e6-c18ce414a5de"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 8.0px);
}

}

@media (min-width: 1200px) {
[id="s-e7ea950e-fe05-4e00-a3e6-c18ce414a5de"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 8.0px);
}

}

#s-70a378b3-22c1-48a8-9d4d-6a43f3d2c2d5 {
  display: none;
}
.shg-btn.shg-cse, .shg-btn.shg-cse:hover, .shg-btn.shg-cse:focus {
  color: #FFF;
}

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

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

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

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

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

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

#s-fc7a2b7e-b794-4112-8783-a4731b166871 {
  margin-top: 5%;
margin-left: 1%;
margin-bottom: 10%;
margin-right: 1%;
padding-top: 10px;
padding-left: 10%;
padding-bottom: 10px;
padding-right: 10%;
border-radius: 2px;
max-width: 100%;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-fc7a2b7e-b794-4112-8783-a4731b166871:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-fc7a2b7e-b794-4112-8783-a4731b166871:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-fc7a2b7e-b794-4112-8783-a4731b166871 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-fc7a2b7e-b794-4112-8783-a4731b166871.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-fc7a2b7e-b794-4112-8783-a4731b166871.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-fc7a2b7e-b794-4112-8783-a4731b166871.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-fc7a2b7e-b794-4112-8783-a4731b166871.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-08fa946d-585d-4567-8af2-b3d7e0f7a981 {
  display: none;
}
#s-f3e0dac3-0e1a-4ede-9f2f-717236727824 {
  margin-top: 5%;
margin-left: 1%;
margin-bottom: 10%;
margin-right: 1%;
padding-top: 10px;
padding-left: 10%;
padding-bottom: 10px;
padding-right: 10%;
border-radius: 2px;
max-width: 100%;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-f3e0dac3-0e1a-4ede-9f2f-717236727824:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-f3e0dac3-0e1a-4ede-9f2f-717236727824:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-f3e0dac3-0e1a-4ede-9f2f-717236727824 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-f3e0dac3-0e1a-4ede-9f2f-717236727824.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-f3e0dac3-0e1a-4ede-9f2f-717236727824.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-f3e0dac3-0e1a-4ede-9f2f-717236727824.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-f3e0dac3-0e1a-4ede-9f2f-717236727824.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-86433c9f-b9fb-4616-a5aa-6a27e008c117 {
  display: none;
}
#s-e7e0a531-63cb-41f4-a0fe-c495f991f72b {
  margin-top: 5%;
margin-left: 1%;
margin-bottom: 10%;
margin-right: 1%;
padding-top: 10px;
padding-left: 10%;
padding-bottom: 10px;
padding-right: 10%;
border-radius: 2px;
max-width: 100%;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-e7e0a531-63cb-41f4-a0fe-c495f991f72b:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e7e0a531-63cb-41f4-a0fe-c495f991f72b:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-e7e0a531-63cb-41f4-a0fe-c495f991f72b {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-e7e0a531-63cb-41f4-a0fe-c495f991f72b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-e7e0a531-63cb-41f4-a0fe-c495f991f72b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-e7e0a531-63cb-41f4-a0fe-c495f991f72b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-e7e0a531-63cb-41f4-a0fe-c495f991f72b.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-f8ac31f0-9baa-4429-a0df-03258d0c6aad {
  display: none;
}
#s-3e48bc7d-2bf1-4760-9c0a-a6c8caa6dbb4 {
  margin-top: 5%;
margin-left: 1%;
margin-bottom: 10%;
margin-right: 1%;
padding-top: 10px;
padding-left: 10%;
padding-bottom: 10px;
padding-right: 10%;
border-radius: 2px;
max-width: 100%;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-3e48bc7d-2bf1-4760-9c0a-a6c8caa6dbb4:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-3e48bc7d-2bf1-4760-9c0a-a6c8caa6dbb4:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-3e48bc7d-2bf1-4760-9c0a-a6c8caa6dbb4 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-3e48bc7d-2bf1-4760-9c0a-a6c8caa6dbb4.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-3e48bc7d-2bf1-4760-9c0a-a6c8caa6dbb4.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-3e48bc7d-2bf1-4760-9c0a-a6c8caa6dbb4.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-3e48bc7d-2bf1-4760-9c0a-a6c8caa6dbb4.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-0d80b413-7ad4-443b-8d4d-ea6f3b04bf4b {
  display: none;
}
#s-651f8aea-2f17-4951-8ed6-f695707395fb {
  margin-top: 5%;
margin-left: 1%;
margin-bottom: 10%;
margin-right: 1%;
padding-top: 10px;
padding-left: 10%;
padding-bottom: 10px;
padding-right: 10%;
border-radius: 2px;
max-width: 100%;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-651f8aea-2f17-4951-8ed6-f695707395fb:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-651f8aea-2f17-4951-8ed6-f695707395fb:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-651f8aea-2f17-4951-8ed6-f695707395fb {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-651f8aea-2f17-4951-8ed6-f695707395fb.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-651f8aea-2f17-4951-8ed6-f695707395fb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-651f8aea-2f17-4951-8ed6-f695707395fb.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-651f8aea-2f17-4951-8ed6-f695707395fb.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-99492166-82a9-4b6c-b3dd-59072f2dffdf {
  margin-top: 2%;
margin-left: 10%;
margin-bottom: 0%;
margin-right: 10%;
}

@media (min-width: 0px) {
[id="s-99492166-82a9-4b6c-b3dd-59072f2dffdf"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-99492166-82a9-4b6c-b3dd-59072f2dffdf"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-99492166-82a9-4b6c-b3dd-59072f2dffdf"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-99492166-82a9-4b6c-b3dd-59072f2dffdf"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 7.5px);
}

}

#s-795b1c5b-7291-4fb0-990a-f9c9905fe8ff {
  text-align: center;
}







  img.s-795b1c5b-7291-4fb0-990a-f9c9905fe8ff.shogun-image {
    
    
  }


.s-795b1c5b-7291-4fb0-990a-f9c9905fe8ff .shogun-image-content {
  
    align-items: center;
  
}

.s-795b1c5b-7291-4fb0-990a-f9c9905fe8ff.shg-align-container {
  text-align: center
}

.s-795b1c5b-7291-4fb0-990a-f9c9905fe8ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-795b1c5b-7291-4fb0-990a-f9c9905fe8ff.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-795b1c5b-7291-4fb0-990a-f9c9905fe8ff.shogun-image {
    
    
  }


.s-795b1c5b-7291-4fb0-990a-f9c9905fe8ff .shogun-image-content {
  
    align-items: center;
  
}

.s-795b1c5b-7291-4fb0-990a-f9c9905fe8ff.shg-align-container {
  text-align: center
}

.s-795b1c5b-7291-4fb0-990a-f9c9905fe8ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-795b1c5b-7291-4fb0-990a-f9c9905fe8ff.shogun-image {
  box-sizing: border-box;
}


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





  img.s-795b1c5b-7291-4fb0-990a-f9c9905fe8ff.shogun-image {
    
    
  }


.s-795b1c5b-7291-4fb0-990a-f9c9905fe8ff .shogun-image-content {
  
    align-items: center;
  
}

.s-795b1c5b-7291-4fb0-990a-f9c9905fe8ff.shg-align-container {
  text-align: center
}

.s-795b1c5b-7291-4fb0-990a-f9c9905fe8ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-795b1c5b-7291-4fb0-990a-f9c9905fe8ff.shogun-image {
  box-sizing: border-box;
}


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





  img.s-795b1c5b-7291-4fb0-990a-f9c9905fe8ff.shogun-image {
    
    
  }


.s-795b1c5b-7291-4fb0-990a-f9c9905fe8ff .shogun-image-content {
  
    align-items: center;
  
}

.s-795b1c5b-7291-4fb0-990a-f9c9905fe8ff.shg-align-container {
  text-align: center
}

.s-795b1c5b-7291-4fb0-990a-f9c9905fe8ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-795b1c5b-7291-4fb0-990a-f9c9905fe8ff.shogun-image {
  box-sizing: border-box;
}


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





  img.s-795b1c5b-7291-4fb0-990a-f9c9905fe8ff.shogun-image {
    
    
  }


.s-795b1c5b-7291-4fb0-990a-f9c9905fe8ff .shogun-image-content {
  
    align-items: center;
  
}

.s-795b1c5b-7291-4fb0-990a-f9c9905fe8ff.shg-align-container {
  text-align: center
}

.s-795b1c5b-7291-4fb0-990a-f9c9905fe8ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-795b1c5b-7291-4fb0-990a-f9c9905fe8ff.shogun-image {
  box-sizing: border-box;
}


}
#s-92cc9d35-9922-492a-a551-277f4714493c {
  display: none;
}
#s-c2ed27fb-6a4c-4d23-accf-b5fe2a2aad25 {
  margin-top: 2%;
margin-bottom: -3%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c2ed27fb-6a4c-4d23-accf-b5fe2a2aad25 .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  
  letter-spacing: 3px;
  
}



#s-7eb7ce19-44ea-42ae-82dd-937723416797 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7eb7ce19-44ea-42ae-82dd-937723416797 .shg-product-title-component h5 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: 2px;
}

#s-07cca158-31ce-43d7-acc2-edf008a6ddf7 {
  text-align: center;
}

#s-07cca158-31ce-43d7-acc2-edf008a6ddf7 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 15px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-07cca158-31ce-43d7-acc2-edf008a6ddf7 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 15px;
}

#s-07cca158-31ce-43d7-acc2-edf008a6ddf7 .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-3d83f1c5-a867-4f3a-bfc1-3bc435b7d521 {
  text-align: center;
}







  img.s-3d83f1c5-a867-4f3a-bfc1-3bc435b7d521.shogun-image {
    
    
  }


.s-3d83f1c5-a867-4f3a-bfc1-3bc435b7d521 .shogun-image-content {
  
    align-items: center;
  
}

.s-3d83f1c5-a867-4f3a-bfc1-3bc435b7d521.shg-align-container {
  text-align: center
}

.s-3d83f1c5-a867-4f3a-bfc1-3bc435b7d521.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3d83f1c5-a867-4f3a-bfc1-3bc435b7d521.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-3d83f1c5-a867-4f3a-bfc1-3bc435b7d521.shogun-image {
    
    
  }


.s-3d83f1c5-a867-4f3a-bfc1-3bc435b7d521 .shogun-image-content {
  
    align-items: center;
  
}

.s-3d83f1c5-a867-4f3a-bfc1-3bc435b7d521.shg-align-container {
  text-align: center
}

.s-3d83f1c5-a867-4f3a-bfc1-3bc435b7d521.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3d83f1c5-a867-4f3a-bfc1-3bc435b7d521.shogun-image {
  box-sizing: border-box;
}


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





  img.s-3d83f1c5-a867-4f3a-bfc1-3bc435b7d521.shogun-image {
    
    
  }


.s-3d83f1c5-a867-4f3a-bfc1-3bc435b7d521 .shogun-image-content {
  
    align-items: center;
  
}

.s-3d83f1c5-a867-4f3a-bfc1-3bc435b7d521.shg-align-container {
  text-align: center
}

.s-3d83f1c5-a867-4f3a-bfc1-3bc435b7d521.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3d83f1c5-a867-4f3a-bfc1-3bc435b7d521.shogun-image {
  box-sizing: border-box;
}


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





  img.s-3d83f1c5-a867-4f3a-bfc1-3bc435b7d521.shogun-image {
    
    
  }


.s-3d83f1c5-a867-4f3a-bfc1-3bc435b7d521 .shogun-image-content {
  
    align-items: center;
  
}

.s-3d83f1c5-a867-4f3a-bfc1-3bc435b7d521.shg-align-container {
  text-align: center
}

.s-3d83f1c5-a867-4f3a-bfc1-3bc435b7d521.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3d83f1c5-a867-4f3a-bfc1-3bc435b7d521.shogun-image {
  box-sizing: border-box;
}


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





  img.s-3d83f1c5-a867-4f3a-bfc1-3bc435b7d521.shogun-image {
    
    
  }


.s-3d83f1c5-a867-4f3a-bfc1-3bc435b7d521 .shogun-image-content {
  
    align-items: center;
  
}

.s-3d83f1c5-a867-4f3a-bfc1-3bc435b7d521.shg-align-container {
  text-align: center
}

.s-3d83f1c5-a867-4f3a-bfc1-3bc435b7d521.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3d83f1c5-a867-4f3a-bfc1-3bc435b7d521.shogun-image {
  box-sizing: border-box;
}


}
#s-7b99967c-c65d-4225-848b-79b0fe8de152 {
  display: none;
}
#s-eec322c4-259e-48bf-b891-da0c0705dd40 {
  margin-top: 2%;
margin-bottom: -3%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-eec322c4-259e-48bf-b891-da0c0705dd40 .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  
  letter-spacing: 3px;
  
}



#s-eeffe972-191f-464d-9c8a-f5f2dc3d254b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-eeffe972-191f-464d-9c8a-f5f2dc3d254b .shg-product-title-component h5 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: 2px;
}

#s-fbb21d31-323f-4156-9c1c-ab77a7927684 {
  text-align: center;
}

#s-fbb21d31-323f-4156-9c1c-ab77a7927684 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 15px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-fbb21d31-323f-4156-9c1c-ab77a7927684 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 15px;
}

#s-fbb21d31-323f-4156-9c1c-ab77a7927684 .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-c0f57fab-8050-4aba-bf4c-312036e2af07 {
  text-align: center;
}







  img.s-c0f57fab-8050-4aba-bf4c-312036e2af07.shogun-image {
    
    
  }


.s-c0f57fab-8050-4aba-bf4c-312036e2af07 .shogun-image-content {
  
    align-items: center;
  
}

.s-c0f57fab-8050-4aba-bf4c-312036e2af07.shg-align-container {
  text-align: center
}

.s-c0f57fab-8050-4aba-bf4c-312036e2af07.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0f57fab-8050-4aba-bf4c-312036e2af07.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-c0f57fab-8050-4aba-bf4c-312036e2af07.shogun-image {
    
    
  }


.s-c0f57fab-8050-4aba-bf4c-312036e2af07 .shogun-image-content {
  
    align-items: center;
  
}

.s-c0f57fab-8050-4aba-bf4c-312036e2af07.shg-align-container {
  text-align: center
}

.s-c0f57fab-8050-4aba-bf4c-312036e2af07.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0f57fab-8050-4aba-bf4c-312036e2af07.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c0f57fab-8050-4aba-bf4c-312036e2af07.shogun-image {
    
    
  }


.s-c0f57fab-8050-4aba-bf4c-312036e2af07 .shogun-image-content {
  
    align-items: center;
  
}

.s-c0f57fab-8050-4aba-bf4c-312036e2af07.shg-align-container {
  text-align: center
}

.s-c0f57fab-8050-4aba-bf4c-312036e2af07.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0f57fab-8050-4aba-bf4c-312036e2af07.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c0f57fab-8050-4aba-bf4c-312036e2af07.shogun-image {
    
    
  }


.s-c0f57fab-8050-4aba-bf4c-312036e2af07 .shogun-image-content {
  
    align-items: center;
  
}

.s-c0f57fab-8050-4aba-bf4c-312036e2af07.shg-align-container {
  text-align: center
}

.s-c0f57fab-8050-4aba-bf4c-312036e2af07.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0f57fab-8050-4aba-bf4c-312036e2af07.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c0f57fab-8050-4aba-bf4c-312036e2af07.shogun-image {
    
    
  }


.s-c0f57fab-8050-4aba-bf4c-312036e2af07 .shogun-image-content {
  
    align-items: center;
  
}

.s-c0f57fab-8050-4aba-bf4c-312036e2af07.shg-align-container {
  text-align: center
}

.s-c0f57fab-8050-4aba-bf4c-312036e2af07.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0f57fab-8050-4aba-bf4c-312036e2af07.shogun-image {
  box-sizing: border-box;
}


}
#s-fddde324-8b6a-445b-bcff-3a31e9ad54c4 {
  display: none;
}
#s-3776e3b1-36c6-4978-8885-0d419f6a3870 {
  margin-top: 2%;
margin-bottom: -3%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3776e3b1-36c6-4978-8885-0d419f6a3870 .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  
  letter-spacing: 3px;
  
}



#s-d5399aca-94c6-4878-a0c0-198d0662492b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d5399aca-94c6-4878-a0c0-198d0662492b .shg-product-title-component h5 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: 2px;
}

#s-cceab984-ef0b-4e2a-80fe-c69c7f504a92 {
  text-align: center;
}

#s-cceab984-ef0b-4e2a-80fe-c69c7f504a92 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 15px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-cceab984-ef0b-4e2a-80fe-c69c7f504a92 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 15px;
}

#s-cceab984-ef0b-4e2a-80fe-c69c7f504a92 .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-7fdaf90f-a10a-447c-aab8-ae2a94f5b892 {
  text-align: center;
}







  img.s-7fdaf90f-a10a-447c-aab8-ae2a94f5b892.shogun-image {
    
    
  }


.s-7fdaf90f-a10a-447c-aab8-ae2a94f5b892 .shogun-image-content {
  
    align-items: center;
  
}

.s-7fdaf90f-a10a-447c-aab8-ae2a94f5b892.shg-align-container {
  text-align: center
}

.s-7fdaf90f-a10a-447c-aab8-ae2a94f5b892.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7fdaf90f-a10a-447c-aab8-ae2a94f5b892.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-7fdaf90f-a10a-447c-aab8-ae2a94f5b892.shogun-image {
    
    
  }


.s-7fdaf90f-a10a-447c-aab8-ae2a94f5b892 .shogun-image-content {
  
    align-items: center;
  
}

.s-7fdaf90f-a10a-447c-aab8-ae2a94f5b892.shg-align-container {
  text-align: center
}

.s-7fdaf90f-a10a-447c-aab8-ae2a94f5b892.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7fdaf90f-a10a-447c-aab8-ae2a94f5b892.shogun-image {
  box-sizing: border-box;
}


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





  img.s-7fdaf90f-a10a-447c-aab8-ae2a94f5b892.shogun-image {
    
    
  }


.s-7fdaf90f-a10a-447c-aab8-ae2a94f5b892 .shogun-image-content {
  
    align-items: center;
  
}

.s-7fdaf90f-a10a-447c-aab8-ae2a94f5b892.shg-align-container {
  text-align: center
}

.s-7fdaf90f-a10a-447c-aab8-ae2a94f5b892.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7fdaf90f-a10a-447c-aab8-ae2a94f5b892.shogun-image {
  box-sizing: border-box;
}


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





  img.s-7fdaf90f-a10a-447c-aab8-ae2a94f5b892.shogun-image {
    
    
  }


.s-7fdaf90f-a10a-447c-aab8-ae2a94f5b892 .shogun-image-content {
  
    align-items: center;
  
}

.s-7fdaf90f-a10a-447c-aab8-ae2a94f5b892.shg-align-container {
  text-align: center
}

.s-7fdaf90f-a10a-447c-aab8-ae2a94f5b892.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7fdaf90f-a10a-447c-aab8-ae2a94f5b892.shogun-image {
  box-sizing: border-box;
}


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





  img.s-7fdaf90f-a10a-447c-aab8-ae2a94f5b892.shogun-image {
    
    
  }


.s-7fdaf90f-a10a-447c-aab8-ae2a94f5b892 .shogun-image-content {
  
    align-items: center;
  
}

.s-7fdaf90f-a10a-447c-aab8-ae2a94f5b892.shg-align-container {
  text-align: center
}

.s-7fdaf90f-a10a-447c-aab8-ae2a94f5b892.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7fdaf90f-a10a-447c-aab8-ae2a94f5b892.shogun-image {
  box-sizing: border-box;
}


}
#s-4d0bf096-25b2-42ea-95ec-c5e6e04245a3 {
  margin-top: 2%;
margin-bottom: -3%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4d0bf096-25b2-42ea-95ec-c5e6e04245a3 .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  
  letter-spacing: 3px;
  
}



#s-4bc2061b-0786-4588-8d68-1c8e13ce69c4 {
  display: none;
}
#s-a8269a3c-595d-4a6c-961b-aedd86225951 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a8269a3c-595d-4a6c-961b-aedd86225951 .shg-product-title-component h5 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: 2px;
}

#s-7c36d36d-511f-44b3-a85b-854392420cce {
  text-align: center;
}

#s-7c36d36d-511f-44b3-a85b-854392420cce .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 15px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-7c36d36d-511f-44b3-a85b-854392420cce .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 15px;
}

#s-7c36d36d-511f-44b3-a85b-854392420cce .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-54c9e9f2-9a3e-4a1f-8fed-b9b58baebb76 {
  margin-left: 10%;
margin-right: 10%;
}

@media (min-width: 0px) {
[id="s-54c9e9f2-9a3e-4a1f-8fed-b9b58baebb76"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-54c9e9f2-9a3e-4a1f-8fed-b9b58baebb76"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-54c9e9f2-9a3e-4a1f-8fed-b9b58baebb76"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-54c9e9f2-9a3e-4a1f-8fed-b9b58baebb76"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 7.5px);
}

}

#s-e87f9c0f-9985-4686-a8f0-33f9b6faf07d {
  display: none;
}
#s-66b6cccb-67e9-4557-ae96-232478743572 {
  margin-top: 5%;
margin-left: 1%;
margin-bottom: 10%;
margin-right: 1%;
padding-top: 10px;
padding-left: 10%;
padding-bottom: 10px;
padding-right: 10%;
border-radius: 2px;
max-width: 100%;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-66b6cccb-67e9-4557-ae96-232478743572:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-66b6cccb-67e9-4557-ae96-232478743572:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-66b6cccb-67e9-4557-ae96-232478743572 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-66b6cccb-67e9-4557-ae96-232478743572.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-66b6cccb-67e9-4557-ae96-232478743572.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-66b6cccb-67e9-4557-ae96-232478743572.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-66b6cccb-67e9-4557-ae96-232478743572.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-ede028e6-eb10-4855-a73a-b8832a93c76e {
  display: none;
}
#s-a5c80685-f30b-4f76-88e9-5e8f4362d42a {
  margin-top: 5%;
margin-left: 1%;
margin-bottom: 10%;
margin-right: 1%;
padding-top: 10px;
padding-left: 10%;
padding-bottom: 10px;
padding-right: 10%;
border-radius: 2px;
max-width: 100%;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-a5c80685-f30b-4f76-88e9-5e8f4362d42a:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-a5c80685-f30b-4f76-88e9-5e8f4362d42a:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-a5c80685-f30b-4f76-88e9-5e8f4362d42a {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-a5c80685-f30b-4f76-88e9-5e8f4362d42a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-a5c80685-f30b-4f76-88e9-5e8f4362d42a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-a5c80685-f30b-4f76-88e9-5e8f4362d42a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-a5c80685-f30b-4f76-88e9-5e8f4362d42a.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-114f9a73-ddb7-447c-ab53-44e91bc8ce0f {
  display: none;
}
#s-cc21bfc6-8cc5-4bcb-8263-eb8b94061bb2 {
  margin-top: 5%;
margin-left: 1%;
margin-bottom: 10%;
margin-right: 1%;
padding-top: 10px;
padding-left: 10%;
padding-bottom: 10px;
padding-right: 10%;
border-radius: 2px;
max-width: 100%;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-cc21bfc6-8cc5-4bcb-8263-eb8b94061bb2:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-cc21bfc6-8cc5-4bcb-8263-eb8b94061bb2:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-cc21bfc6-8cc5-4bcb-8263-eb8b94061bb2 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-cc21bfc6-8cc5-4bcb-8263-eb8b94061bb2.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-cc21bfc6-8cc5-4bcb-8263-eb8b94061bb2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-cc21bfc6-8cc5-4bcb-8263-eb8b94061bb2.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-cc21bfc6-8cc5-4bcb-8263-eb8b94061bb2.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-befd575c-3497-4620-94eb-342fc80f97f2 {
  display: none;
}
#s-d9fc3577-0690-4df7-901b-30ede7636a8f {
  margin-top: 5%;
margin-left: 1%;
margin-bottom: 10%;
margin-right: 1%;
padding-top: 10px;
padding-left: 10%;
padding-bottom: 10px;
padding-right: 10%;
border-radius: 2px;
max-width: 100%;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-d9fc3577-0690-4df7-901b-30ede7636a8f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-d9fc3577-0690-4df7-901b-30ede7636a8f:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-d9fc3577-0690-4df7-901b-30ede7636a8f {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-d9fc3577-0690-4df7-901b-30ede7636a8f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-d9fc3577-0690-4df7-901b-30ede7636a8f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-d9fc3577-0690-4df7-901b-30ede7636a8f.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-d9fc3577-0690-4df7-901b-30ede7636a8f.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-7cfbe86b-8b7c-4add-bef5-4f77dff29ff5 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-7cfbe86b-8b7c-4add-bef5-4f77dff29ff5 {
  display: none;
}
#s-7cfbe86b-8b7c-4add-bef5-4f77dff29ff5, #wrap-s-7cfbe86b-8b7c-4add-bef5-4f77dff29ff5 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7cfbe86b-8b7c-4add-bef5-4f77dff29ff5 {
  display: none;
}
#s-7cfbe86b-8b7c-4add-bef5-4f77dff29ff5, #wrap-s-7cfbe86b-8b7c-4add-bef5-4f77dff29ff5 { display:none !important; }}







#s-7cfbe86b-8b7c-4add-bef5-4f77dff29ff5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7cfbe86b-8b7c-4add-bef5-4f77dff29ff5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b7672ac0-842f-4a39-8178-44efb494a2aa {
  margin-bottom: 1%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b7672ac0-842f-4a39-8178-44efb494a2aa .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}


@media (min-width: 768px) and (max-width: 991px){#s-b7672ac0-842f-4a39-8178-44efb494a2aa .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 21px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}


}
#s-9eccf91b-88da-471d-8b6b-85d469e56146 {
  margin-left: 10px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-9eccf91b-88da-471d-8b6b-85d469e56146"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-9eccf91b-88da-471d-8b6b-85d469e56146"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-9eccf91b-88da-471d-8b6b-85d469e56146"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-9eccf91b-88da-471d-8b6b-85d469e56146"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-046d3e1a-4876-40e3-9847-6f1838f16609 {
  text-align: center;
}







  img.s-046d3e1a-4876-40e3-9847-6f1838f16609.shogun-image {
    
    
  }


.s-046d3e1a-4876-40e3-9847-6f1838f16609 .shogun-image-content {
  
    align-items: center;
  
}

.s-046d3e1a-4876-40e3-9847-6f1838f16609.shg-align-container {
  text-align: center
}

.s-046d3e1a-4876-40e3-9847-6f1838f16609.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-046d3e1a-4876-40e3-9847-6f1838f16609.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-046d3e1a-4876-40e3-9847-6f1838f16609.shogun-image {
    
    
  }


.s-046d3e1a-4876-40e3-9847-6f1838f16609 .shogun-image-content {
  
    align-items: center;
  
}

.s-046d3e1a-4876-40e3-9847-6f1838f16609.shg-align-container {
  text-align: center
}

.s-046d3e1a-4876-40e3-9847-6f1838f16609.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-046d3e1a-4876-40e3-9847-6f1838f16609.shogun-image {
  box-sizing: border-box;
}


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





  img.s-046d3e1a-4876-40e3-9847-6f1838f16609.shogun-image {
    
    
  }


.s-046d3e1a-4876-40e3-9847-6f1838f16609 .shogun-image-content {
  
    align-items: center;
  
}

.s-046d3e1a-4876-40e3-9847-6f1838f16609.shg-align-container {
  text-align: center
}

.s-046d3e1a-4876-40e3-9847-6f1838f16609.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-046d3e1a-4876-40e3-9847-6f1838f16609.shogun-image {
  box-sizing: border-box;
}


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





  img.s-046d3e1a-4876-40e3-9847-6f1838f16609.shogun-image {
    
    
  }


.s-046d3e1a-4876-40e3-9847-6f1838f16609 .shogun-image-content {
  
    align-items: center;
  
}

.s-046d3e1a-4876-40e3-9847-6f1838f16609.shg-align-container {
  text-align: center
}

.s-046d3e1a-4876-40e3-9847-6f1838f16609.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-046d3e1a-4876-40e3-9847-6f1838f16609.shogun-image {
  box-sizing: border-box;
}


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





  img.s-046d3e1a-4876-40e3-9847-6f1838f16609.shogun-image {
    
    
  }


.s-046d3e1a-4876-40e3-9847-6f1838f16609 .shogun-image-content {
  
    align-items: center;
  
}

.s-046d3e1a-4876-40e3-9847-6f1838f16609.shg-align-container {
  text-align: center
}

.s-046d3e1a-4876-40e3-9847-6f1838f16609.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-046d3e1a-4876-40e3-9847-6f1838f16609.shogun-image {
  box-sizing: border-box;
}


}
#s-4b96099f-209c-46b9-8f22-daf67ec6fd09 {
  display: none;
}
#s-295c8ad4-24f0-4fbd-acc3-c41c68b49ec3 {
  margin-top: 2%;
margin-bottom: -3%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-295c8ad4-24f0-4fbd-acc3-c41c68b49ec3 .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 11px;
  
  letter-spacing: 3px;
  
}



#s-1e8fb9a0-8f4b-4767-8c6d-d8493528a551 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1e8fb9a0-8f4b-4767-8c6d-d8493528a551 .shg-product-title-component h5 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
}

#s-baa812d1-db36-46f1-99ca-bab4daf32af0 {
  text-align: center;
}

#s-baa812d1-db36-46f1-99ca-bab4daf32af0 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-baa812d1-db36-46f1-99ca-bab4daf32af0 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-baa812d1-db36-46f1-99ca-bab4daf32af0 .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-c3ec72c4-d183-464f-853a-6b5439f3e830 {
  text-align: center;
}







  img.s-c3ec72c4-d183-464f-853a-6b5439f3e830.shogun-image {
    
    
  }


.s-c3ec72c4-d183-464f-853a-6b5439f3e830 .shogun-image-content {
  
    align-items: center;
  
}

.s-c3ec72c4-d183-464f-853a-6b5439f3e830.shg-align-container {
  text-align: center
}

.s-c3ec72c4-d183-464f-853a-6b5439f3e830.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c3ec72c4-d183-464f-853a-6b5439f3e830.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-c3ec72c4-d183-464f-853a-6b5439f3e830.shogun-image {
    
    
  }


.s-c3ec72c4-d183-464f-853a-6b5439f3e830 .shogun-image-content {
  
    align-items: center;
  
}

.s-c3ec72c4-d183-464f-853a-6b5439f3e830.shg-align-container {
  text-align: center
}

.s-c3ec72c4-d183-464f-853a-6b5439f3e830.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c3ec72c4-d183-464f-853a-6b5439f3e830.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c3ec72c4-d183-464f-853a-6b5439f3e830.shogun-image {
    
    
  }


.s-c3ec72c4-d183-464f-853a-6b5439f3e830 .shogun-image-content {
  
    align-items: center;
  
}

.s-c3ec72c4-d183-464f-853a-6b5439f3e830.shg-align-container {
  text-align: center
}

.s-c3ec72c4-d183-464f-853a-6b5439f3e830.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c3ec72c4-d183-464f-853a-6b5439f3e830.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c3ec72c4-d183-464f-853a-6b5439f3e830.shogun-image {
    
    
  }


.s-c3ec72c4-d183-464f-853a-6b5439f3e830 .shogun-image-content {
  
    align-items: center;
  
}

.s-c3ec72c4-d183-464f-853a-6b5439f3e830.shg-align-container {
  text-align: center
}

.s-c3ec72c4-d183-464f-853a-6b5439f3e830.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c3ec72c4-d183-464f-853a-6b5439f3e830.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c3ec72c4-d183-464f-853a-6b5439f3e830.shogun-image {
    
    
  }


.s-c3ec72c4-d183-464f-853a-6b5439f3e830 .shogun-image-content {
  
    align-items: center;
  
}

.s-c3ec72c4-d183-464f-853a-6b5439f3e830.shg-align-container {
  text-align: center
}

.s-c3ec72c4-d183-464f-853a-6b5439f3e830.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c3ec72c4-d183-464f-853a-6b5439f3e830.shogun-image {
  box-sizing: border-box;
}


}
#s-7c36ea8f-3f00-4f5b-a209-16133f9d8e66 {
  margin-top: 2%;
margin-bottom: -3%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7c36ea8f-3f00-4f5b-a209-16133f9d8e66 .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 11px;
  
  letter-spacing: 3px;
  
}



#s-3e3ef784-e8fd-4a34-8d5e-e8faca257903 {
  display: none;
}
#s-23c19c3c-ab41-4704-b5f2-c63a1ccbc91f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-23c19c3c-ab41-4704-b5f2-c63a1ccbc91f .shg-product-title-component h5 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
}

#s-4e4e3b67-4800-4ff7-9136-e11f462eb97e {
  text-align: center;
}

#s-4e4e3b67-4800-4ff7-9136-e11f462eb97e .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-4e4e3b67-4800-4ff7-9136-e11f462eb97e .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-4e4e3b67-4800-4ff7-9136-e11f462eb97e .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-a21d9721-6061-45d3-9208-e560ee2b298d {
  margin-left: 10px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-a21d9721-6061-45d3-9208-e560ee2b298d"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-a21d9721-6061-45d3-9208-e560ee2b298d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-a21d9721-6061-45d3-9208-e560ee2b298d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-a21d9721-6061-45d3-9208-e560ee2b298d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-b627180b-e289-4fdb-afbb-eca0cb9adecd {
  display: none;
}
#s-1931d3b4-dd84-41e7-abda-a2aff06597ff {
  margin-top: 5%;
margin-left: 1%;
margin-bottom: 10%;
margin-right: 1%;
padding-top: 10px;
padding-left: 10%;
padding-bottom: 10px;
padding-right: 10%;
border-radius: 2px;
max-width: 100%;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-1931d3b4-dd84-41e7-abda-a2aff06597ff:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-1931d3b4-dd84-41e7-abda-a2aff06597ff:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-1931d3b4-dd84-41e7-abda-a2aff06597ff {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-1931d3b4-dd84-41e7-abda-a2aff06597ff.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-1931d3b4-dd84-41e7-abda-a2aff06597ff.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-1931d3b4-dd84-41e7-abda-a2aff06597ff.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-1931d3b4-dd84-41e7-abda-a2aff06597ff.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-7e468619-b5ad-4d90-a4c1-cf908474a85c {
  display: none;
}
#s-a30dccc9-cae4-45e3-a8f7-ac8e365e3667 {
  margin-top: 5%;
margin-left: 1%;
margin-bottom: 10%;
margin-right: 1%;
padding-top: 10px;
padding-left: 10%;
padding-bottom: 10px;
padding-right: 10%;
border-radius: 2px;
max-width: 100%;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-a30dccc9-cae4-45e3-a8f7-ac8e365e3667:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-a30dccc9-cae4-45e3-a8f7-ac8e365e3667:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-a30dccc9-cae4-45e3-a8f7-ac8e365e3667 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-a30dccc9-cae4-45e3-a8f7-ac8e365e3667.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-a30dccc9-cae4-45e3-a8f7-ac8e365e3667.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-a30dccc9-cae4-45e3-a8f7-ac8e365e3667.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-a30dccc9-cae4-45e3-a8f7-ac8e365e3667.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-0f36f47d-fd06-4b11-a3f6-38a94d16d208 {
  margin-left: 10px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-0f36f47d-fd06-4b11-a3f6-38a94d16d208"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-0f36f47d-fd06-4b11-a3f6-38a94d16d208"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-0f36f47d-fd06-4b11-a3f6-38a94d16d208"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-0f36f47d-fd06-4b11-a3f6-38a94d16d208"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-2dbda4aa-97bc-4f52-a705-0ae1304d10c4 {
  text-align: center;
}







  img.s-2dbda4aa-97bc-4f52-a705-0ae1304d10c4.shogun-image {
    
    
  }


.s-2dbda4aa-97bc-4f52-a705-0ae1304d10c4 .shogun-image-content {
  
    align-items: center;
  
}

.s-2dbda4aa-97bc-4f52-a705-0ae1304d10c4.shg-align-container {
  text-align: center
}

.s-2dbda4aa-97bc-4f52-a705-0ae1304d10c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2dbda4aa-97bc-4f52-a705-0ae1304d10c4.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-2dbda4aa-97bc-4f52-a705-0ae1304d10c4.shogun-image {
    
    
  }


.s-2dbda4aa-97bc-4f52-a705-0ae1304d10c4 .shogun-image-content {
  
    align-items: center;
  
}

.s-2dbda4aa-97bc-4f52-a705-0ae1304d10c4.shg-align-container {
  text-align: center
}

.s-2dbda4aa-97bc-4f52-a705-0ae1304d10c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2dbda4aa-97bc-4f52-a705-0ae1304d10c4.shogun-image {
  box-sizing: border-box;
}


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





  img.s-2dbda4aa-97bc-4f52-a705-0ae1304d10c4.shogun-image {
    
    
  }


.s-2dbda4aa-97bc-4f52-a705-0ae1304d10c4 .shogun-image-content {
  
    align-items: center;
  
}

.s-2dbda4aa-97bc-4f52-a705-0ae1304d10c4.shg-align-container {
  text-align: center
}

.s-2dbda4aa-97bc-4f52-a705-0ae1304d10c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2dbda4aa-97bc-4f52-a705-0ae1304d10c4.shogun-image {
  box-sizing: border-box;
}


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





  img.s-2dbda4aa-97bc-4f52-a705-0ae1304d10c4.shogun-image {
    
    
  }


.s-2dbda4aa-97bc-4f52-a705-0ae1304d10c4 .shogun-image-content {
  
    align-items: center;
  
}

.s-2dbda4aa-97bc-4f52-a705-0ae1304d10c4.shg-align-container {
  text-align: center
}

.s-2dbda4aa-97bc-4f52-a705-0ae1304d10c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2dbda4aa-97bc-4f52-a705-0ae1304d10c4.shogun-image {
  box-sizing: border-box;
}


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





  img.s-2dbda4aa-97bc-4f52-a705-0ae1304d10c4.shogun-image {
    
    
  }


.s-2dbda4aa-97bc-4f52-a705-0ae1304d10c4 .shogun-image-content {
  
    align-items: center;
  
}

.s-2dbda4aa-97bc-4f52-a705-0ae1304d10c4.shg-align-container {
  text-align: center
}

.s-2dbda4aa-97bc-4f52-a705-0ae1304d10c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2dbda4aa-97bc-4f52-a705-0ae1304d10c4.shogun-image {
  box-sizing: border-box;
}


}
#s-81249c09-9ae7-448f-95b3-fa4a6f3c044e {
  margin-top: 2%;
margin-bottom: -3%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-81249c09-9ae7-448f-95b3-fa4a6f3c044e .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 11px;
  
  letter-spacing: 3px;
  
}



#s-03ed442a-2bce-4321-8264-0df67122bfec {
  display: none;
}
#s-8397d165-9e76-40ef-a043-93ca3b9c47d7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8397d165-9e76-40ef-a043-93ca3b9c47d7 .shg-product-title-component h5 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
}

#s-b1b86560-419e-45ec-b042-c575a72c4cc7 {
  text-align: center;
}

#s-b1b86560-419e-45ec-b042-c575a72c4cc7 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-b1b86560-419e-45ec-b042-c575a72c4cc7 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-b1b86560-419e-45ec-b042-c575a72c4cc7 .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-d8aa6bd8-0dc7-4f8e-9da1-ce106f449b74 {
  text-align: center;
}







  img.s-d8aa6bd8-0dc7-4f8e-9da1-ce106f449b74.shogun-image {
    
    
  }


.s-d8aa6bd8-0dc7-4f8e-9da1-ce106f449b74 .shogun-image-content {
  
    align-items: center;
  
}

.s-d8aa6bd8-0dc7-4f8e-9da1-ce106f449b74.shg-align-container {
  text-align: center
}

.s-d8aa6bd8-0dc7-4f8e-9da1-ce106f449b74.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d8aa6bd8-0dc7-4f8e-9da1-ce106f449b74.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-d8aa6bd8-0dc7-4f8e-9da1-ce106f449b74.shogun-image {
    
    
  }


.s-d8aa6bd8-0dc7-4f8e-9da1-ce106f449b74 .shogun-image-content {
  
    align-items: center;
  
}

.s-d8aa6bd8-0dc7-4f8e-9da1-ce106f449b74.shg-align-container {
  text-align: center
}

.s-d8aa6bd8-0dc7-4f8e-9da1-ce106f449b74.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d8aa6bd8-0dc7-4f8e-9da1-ce106f449b74.shogun-image {
  box-sizing: border-box;
}


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





  img.s-d8aa6bd8-0dc7-4f8e-9da1-ce106f449b74.shogun-image {
    
    
  }


.s-d8aa6bd8-0dc7-4f8e-9da1-ce106f449b74 .shogun-image-content {
  
    align-items: center;
  
}

.s-d8aa6bd8-0dc7-4f8e-9da1-ce106f449b74.shg-align-container {
  text-align: center
}

.s-d8aa6bd8-0dc7-4f8e-9da1-ce106f449b74.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d8aa6bd8-0dc7-4f8e-9da1-ce106f449b74.shogun-image {
  box-sizing: border-box;
}


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





  img.s-d8aa6bd8-0dc7-4f8e-9da1-ce106f449b74.shogun-image {
    
    
  }


.s-d8aa6bd8-0dc7-4f8e-9da1-ce106f449b74 .shogun-image-content {
  
    align-items: center;
  
}

.s-d8aa6bd8-0dc7-4f8e-9da1-ce106f449b74.shg-align-container {
  text-align: center
}

.s-d8aa6bd8-0dc7-4f8e-9da1-ce106f449b74.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d8aa6bd8-0dc7-4f8e-9da1-ce106f449b74.shogun-image {
  box-sizing: border-box;
}


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





  img.s-d8aa6bd8-0dc7-4f8e-9da1-ce106f449b74.shogun-image {
    
    
  }


.s-d8aa6bd8-0dc7-4f8e-9da1-ce106f449b74 .shogun-image-content {
  
    align-items: center;
  
}

.s-d8aa6bd8-0dc7-4f8e-9da1-ce106f449b74.shg-align-container {
  text-align: center
}

.s-d8aa6bd8-0dc7-4f8e-9da1-ce106f449b74.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d8aa6bd8-0dc7-4f8e-9da1-ce106f449b74.shogun-image {
  box-sizing: border-box;
}


}
#s-b48179dd-8fe8-40e8-8400-d79724271de6 {
  margin-top: 2%;
margin-bottom: -3%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b48179dd-8fe8-40e8-8400-d79724271de6 .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 11px;
  
  letter-spacing: 3px;
  
}



#s-3713b602-4c4f-4d1f-97e5-b0c499f9de58 {
  display: none;
}
#s-70ab5a56-9651-4514-a326-2d7c6b39e482 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-70ab5a56-9651-4514-a326-2d7c6b39e482 .shg-product-title-component h5 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
}

#s-f8242975-adb8-4c9f-8bc0-66e3f80fb8cf {
  text-align: center;
}

#s-f8242975-adb8-4c9f-8bc0-66e3f80fb8cf .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-f8242975-adb8-4c9f-8bc0-66e3f80fb8cf .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-f8242975-adb8-4c9f-8bc0-66e3f80fb8cf .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-ad5c3860-e1fc-4f4f-9b26-604b48743a53 {
  margin-left: 10px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-ad5c3860-e1fc-4f4f-9b26-604b48743a53"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-ad5c3860-e1fc-4f4f-9b26-604b48743a53"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-ad5c3860-e1fc-4f4f-9b26-604b48743a53"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-ad5c3860-e1fc-4f4f-9b26-604b48743a53"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-1b62c74b-ba7c-4684-bef6-320fadd8c8c4 {
  display: none;
}
#s-13508e20-918d-48d7-b1a0-090439a15157 {
  margin-top: 5%;
margin-left: 1%;
margin-bottom: 10%;
margin-right: 1%;
padding-top: 10px;
padding-left: 10%;
padding-bottom: 10px;
padding-right: 10%;
border-radius: 2px;
max-width: 100%;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-13508e20-918d-48d7-b1a0-090439a15157:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-13508e20-918d-48d7-b1a0-090439a15157:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-13508e20-918d-48d7-b1a0-090439a15157 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-13508e20-918d-48d7-b1a0-090439a15157.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-13508e20-918d-48d7-b1a0-090439a15157.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-13508e20-918d-48d7-b1a0-090439a15157.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-13508e20-918d-48d7-b1a0-090439a15157.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-a1e163f8-78f1-441f-be31-383706857067 {
  display: none;
}
#s-b3dacc75-2cd3-4658-a38a-d7341a2cff13 {
  margin-top: 5%;
margin-left: 1%;
margin-bottom: 10%;
margin-right: 1%;
padding-top: 10px;
padding-left: 10%;
padding-bottom: 10px;
padding-right: 10%;
border-radius: 2px;
max-width: 100%;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-b3dacc75-2cd3-4658-a38a-d7341a2cff13:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-b3dacc75-2cd3-4658-a38a-d7341a2cff13:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-b3dacc75-2cd3-4658-a38a-d7341a2cff13 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-b3dacc75-2cd3-4658-a38a-d7341a2cff13.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b3dacc75-2cd3-4658-a38a-d7341a2cff13.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-b3dacc75-2cd3-4658-a38a-d7341a2cff13.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-b3dacc75-2cd3-4658-a38a-d7341a2cff13.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-af01e4d7-ba59-4b06-801b-cb5c3e699024 {
  margin-left: 10px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-af01e4d7-ba59-4b06-801b-cb5c3e699024"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-af01e4d7-ba59-4b06-801b-cb5c3e699024"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-af01e4d7-ba59-4b06-801b-cb5c3e699024"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-af01e4d7-ba59-4b06-801b-cb5c3e699024"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-60755d92-9059-4d77-8998-c98b039428e5 {
  text-align: center;
}







  img.s-60755d92-9059-4d77-8998-c98b039428e5.shogun-image {
    
    
  }


.s-60755d92-9059-4d77-8998-c98b039428e5 .shogun-image-content {
  
    align-items: center;
  
}

.s-60755d92-9059-4d77-8998-c98b039428e5.shg-align-container {
  text-align: center
}

.s-60755d92-9059-4d77-8998-c98b039428e5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60755d92-9059-4d77-8998-c98b039428e5.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-60755d92-9059-4d77-8998-c98b039428e5.shogun-image {
    
    
  }


.s-60755d92-9059-4d77-8998-c98b039428e5 .shogun-image-content {
  
    align-items: center;
  
}

.s-60755d92-9059-4d77-8998-c98b039428e5.shg-align-container {
  text-align: center
}

.s-60755d92-9059-4d77-8998-c98b039428e5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60755d92-9059-4d77-8998-c98b039428e5.shogun-image {
  box-sizing: border-box;
}


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





  img.s-60755d92-9059-4d77-8998-c98b039428e5.shogun-image {
    
    
  }


.s-60755d92-9059-4d77-8998-c98b039428e5 .shogun-image-content {
  
    align-items: center;
  
}

.s-60755d92-9059-4d77-8998-c98b039428e5.shg-align-container {
  text-align: center
}

.s-60755d92-9059-4d77-8998-c98b039428e5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60755d92-9059-4d77-8998-c98b039428e5.shogun-image {
  box-sizing: border-box;
}


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





  img.s-60755d92-9059-4d77-8998-c98b039428e5.shogun-image {
    
    
  }


.s-60755d92-9059-4d77-8998-c98b039428e5 .shogun-image-content {
  
    align-items: center;
  
}

.s-60755d92-9059-4d77-8998-c98b039428e5.shg-align-container {
  text-align: center
}

.s-60755d92-9059-4d77-8998-c98b039428e5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60755d92-9059-4d77-8998-c98b039428e5.shogun-image {
  box-sizing: border-box;
}


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





  img.s-60755d92-9059-4d77-8998-c98b039428e5.shogun-image {
    
    
  }


.s-60755d92-9059-4d77-8998-c98b039428e5 .shogun-image-content {
  
    align-items: center;
  
}

.s-60755d92-9059-4d77-8998-c98b039428e5.shg-align-container {
  text-align: center
}

.s-60755d92-9059-4d77-8998-c98b039428e5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60755d92-9059-4d77-8998-c98b039428e5.shogun-image {
  box-sizing: border-box;
}


}
#s-e078d096-2acd-4de0-8c53-b877baffb58f {
  display: none;
}
#s-edb34cac-1d40-45b1-a76d-afefcc5f8ade {
  margin-top: 2%;
margin-bottom: -3%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-edb34cac-1d40-45b1-a76d-afefcc5f8ade .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 11px;
  
  letter-spacing: 3px;
  
}



#s-652991a9-b197-4b53-a860-a4daf11d292f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-652991a9-b197-4b53-a860-a4daf11d292f .shg-product-title-component h5 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
}

#s-9d23129e-396a-40d8-a9fa-21ffc0cc6e71 {
  text-align: center;
}

#s-9d23129e-396a-40d8-a9fa-21ffc0cc6e71 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-9d23129e-396a-40d8-a9fa-21ffc0cc6e71 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-9d23129e-396a-40d8-a9fa-21ffc0cc6e71 .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-67ed508c-0280-471e-8e51-eda629a6f863 {
  text-align: center;
}







  img.s-67ed508c-0280-471e-8e51-eda629a6f863.shogun-image {
    
    
  }


.s-67ed508c-0280-471e-8e51-eda629a6f863 .shogun-image-content {
  
    align-items: center;
  
}

.s-67ed508c-0280-471e-8e51-eda629a6f863.shg-align-container {
  text-align: center
}

.s-67ed508c-0280-471e-8e51-eda629a6f863.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-67ed508c-0280-471e-8e51-eda629a6f863.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-67ed508c-0280-471e-8e51-eda629a6f863.shogun-image {
    
    
  }


.s-67ed508c-0280-471e-8e51-eda629a6f863 .shogun-image-content {
  
    align-items: center;
  
}

.s-67ed508c-0280-471e-8e51-eda629a6f863.shg-align-container {
  text-align: center
}

.s-67ed508c-0280-471e-8e51-eda629a6f863.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-67ed508c-0280-471e-8e51-eda629a6f863.shogun-image {
  box-sizing: border-box;
}


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





  img.s-67ed508c-0280-471e-8e51-eda629a6f863.shogun-image {
    
    
  }


.s-67ed508c-0280-471e-8e51-eda629a6f863 .shogun-image-content {
  
    align-items: center;
  
}

.s-67ed508c-0280-471e-8e51-eda629a6f863.shg-align-container {
  text-align: center
}

.s-67ed508c-0280-471e-8e51-eda629a6f863.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-67ed508c-0280-471e-8e51-eda629a6f863.shogun-image {
  box-sizing: border-box;
}


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





  img.s-67ed508c-0280-471e-8e51-eda629a6f863.shogun-image {
    
    
  }


.s-67ed508c-0280-471e-8e51-eda629a6f863 .shogun-image-content {
  
    align-items: center;
  
}

.s-67ed508c-0280-471e-8e51-eda629a6f863.shg-align-container {
  text-align: center
}

.s-67ed508c-0280-471e-8e51-eda629a6f863.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-67ed508c-0280-471e-8e51-eda629a6f863.shogun-image {
  box-sizing: border-box;
}


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





  img.s-67ed508c-0280-471e-8e51-eda629a6f863.shogun-image {
    
    
  }


.s-67ed508c-0280-471e-8e51-eda629a6f863 .shogun-image-content {
  
    align-items: center;
  
}

.s-67ed508c-0280-471e-8e51-eda629a6f863.shg-align-container {
  text-align: center
}

.s-67ed508c-0280-471e-8e51-eda629a6f863.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-67ed508c-0280-471e-8e51-eda629a6f863.shogun-image {
  box-sizing: border-box;
}


}
#s-1219d0b3-a6de-4c3a-a8c3-b31bbb24127f {
  display: none;
}
#s-b39f4fe1-e125-440b-9569-1cfa392b7c1a {
  margin-top: 2%;
margin-bottom: -3%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b39f4fe1-e125-440b-9569-1cfa392b7c1a .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 11px;
  
  letter-spacing: 3px;
  
}



#s-4ce74d83-4dea-4c5f-9e89-a292de9a21a5 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4ce74d83-4dea-4c5f-9e89-a292de9a21a5 .shg-product-title-component h5 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
}

#s-8f7ce56a-43fc-4896-962a-3efacc16ef57 {
  text-align: center;
}

#s-8f7ce56a-43fc-4896-962a-3efacc16ef57 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-8f7ce56a-43fc-4896-962a-3efacc16ef57 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-8f7ce56a-43fc-4896-962a-3efacc16ef57 .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-6d1125b9-9b9f-47ce-8a13-5133d8e7552a {
  margin-left: 10px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-6d1125b9-9b9f-47ce-8a13-5133d8e7552a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-6d1125b9-9b9f-47ce-8a13-5133d8e7552a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-6d1125b9-9b9f-47ce-8a13-5133d8e7552a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-6d1125b9-9b9f-47ce-8a13-5133d8e7552a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-600ce5f1-a267-439e-92d2-d4e864655d9f {
  display: none;
}
#s-8d684095-e878-427d-a51a-0add4ecb4058 {
  margin-top: 5%;
margin-left: 1%;
margin-bottom: 10%;
margin-right: 1%;
padding-top: 10px;
padding-left: 10%;
padding-bottom: 10px;
padding-right: 10%;
border-radius: 2px;
max-width: 100%;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-8d684095-e878-427d-a51a-0add4ecb4058:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-8d684095-e878-427d-a51a-0add4ecb4058:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-8d684095-e878-427d-a51a-0add4ecb4058 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-8d684095-e878-427d-a51a-0add4ecb4058.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-8d684095-e878-427d-a51a-0add4ecb4058.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-8d684095-e878-427d-a51a-0add4ecb4058.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-8d684095-e878-427d-a51a-0add4ecb4058.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-eef786af-0326-4aba-91bb-c0daac4b8c60 {
  display: none;
}
#s-a3588905-dc0d-417f-9d6e-102631703d8a {
  margin-top: 5%;
margin-left: 1%;
margin-bottom: 10%;
margin-right: 1%;
padding-top: 10px;
padding-left: 10%;
padding-bottom: 10px;
padding-right: 10%;
border-radius: 2px;
max-width: 100%;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-a3588905-dc0d-417f-9d6e-102631703d8a:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-a3588905-dc0d-417f-9d6e-102631703d8a:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-a3588905-dc0d-417f-9d6e-102631703d8a {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-a3588905-dc0d-417f-9d6e-102631703d8a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-a3588905-dc0d-417f-9d6e-102631703d8a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-a3588905-dc0d-417f-9d6e-102631703d8a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-a3588905-dc0d-417f-9d6e-102631703d8a.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-4d1faa71-1978-44be-9b21-fd6028cb6936 {
  margin-top: 2%;
margin-left: 10px;
margin-bottom: 0%;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-4d1faa71-1978-44be-9b21-fd6028cb6936"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-4d1faa71-1978-44be-9b21-fd6028cb6936"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-4d1faa71-1978-44be-9b21-fd6028cb6936"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-4d1faa71-1978-44be-9b21-fd6028cb6936"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-4dcd9e1a-0b3d-4fd4-9a7a-c2c738fc0f26 {
  text-align: center;
}







  img.s-4dcd9e1a-0b3d-4fd4-9a7a-c2c738fc0f26.shogun-image {
    
    
  }


.s-4dcd9e1a-0b3d-4fd4-9a7a-c2c738fc0f26 .shogun-image-content {
  
    align-items: center;
  
}

.s-4dcd9e1a-0b3d-4fd4-9a7a-c2c738fc0f26.shg-align-container {
  text-align: center
}

.s-4dcd9e1a-0b3d-4fd4-9a7a-c2c738fc0f26.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4dcd9e1a-0b3d-4fd4-9a7a-c2c738fc0f26.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-4dcd9e1a-0b3d-4fd4-9a7a-c2c738fc0f26.shogun-image {
    
    
  }


.s-4dcd9e1a-0b3d-4fd4-9a7a-c2c738fc0f26 .shogun-image-content {
  
    align-items: center;
  
}

.s-4dcd9e1a-0b3d-4fd4-9a7a-c2c738fc0f26.shg-align-container {
  text-align: center
}

.s-4dcd9e1a-0b3d-4fd4-9a7a-c2c738fc0f26.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4dcd9e1a-0b3d-4fd4-9a7a-c2c738fc0f26.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4dcd9e1a-0b3d-4fd4-9a7a-c2c738fc0f26.shogun-image {
    
    
  }


.s-4dcd9e1a-0b3d-4fd4-9a7a-c2c738fc0f26 .shogun-image-content {
  
    align-items: center;
  
}

.s-4dcd9e1a-0b3d-4fd4-9a7a-c2c738fc0f26.shg-align-container {
  text-align: center
}

.s-4dcd9e1a-0b3d-4fd4-9a7a-c2c738fc0f26.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4dcd9e1a-0b3d-4fd4-9a7a-c2c738fc0f26.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4dcd9e1a-0b3d-4fd4-9a7a-c2c738fc0f26.shogun-image {
    
    
  }


.s-4dcd9e1a-0b3d-4fd4-9a7a-c2c738fc0f26 .shogun-image-content {
  
    align-items: center;
  
}

.s-4dcd9e1a-0b3d-4fd4-9a7a-c2c738fc0f26.shg-align-container {
  text-align: center
}

.s-4dcd9e1a-0b3d-4fd4-9a7a-c2c738fc0f26.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4dcd9e1a-0b3d-4fd4-9a7a-c2c738fc0f26.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4dcd9e1a-0b3d-4fd4-9a7a-c2c738fc0f26.shogun-image {
    
    
  }


.s-4dcd9e1a-0b3d-4fd4-9a7a-c2c738fc0f26 .shogun-image-content {
  
    align-items: center;
  
}

.s-4dcd9e1a-0b3d-4fd4-9a7a-c2c738fc0f26.shg-align-container {
  text-align: center
}

.s-4dcd9e1a-0b3d-4fd4-9a7a-c2c738fc0f26.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4dcd9e1a-0b3d-4fd4-9a7a-c2c738fc0f26.shogun-image {
  box-sizing: border-box;
}


}
#s-df188c20-7661-4700-8d15-378c54bb82a7 {
  display: none;
}
#s-994f081e-57c7-4013-b6d3-ab56a00cff25 {
  margin-top: 2%;
margin-bottom: -3%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-994f081e-57c7-4013-b6d3-ab56a00cff25 .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 11px;
  
  letter-spacing: 3px;
  
}



#s-acca03d8-24f8-4310-bb55-866f8388b56d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-acca03d8-24f8-4310-bb55-866f8388b56d .shg-product-title-component h5 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
}

#s-532cc68c-77d9-4829-8f33-0cab8847f05f {
  text-align: center;
}

#s-532cc68c-77d9-4829-8f33-0cab8847f05f .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-532cc68c-77d9-4829-8f33-0cab8847f05f .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-532cc68c-77d9-4829-8f33-0cab8847f05f .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-c3ad6d96-e458-473e-b78b-8b80651710d8 {
  text-align: center;
}







  img.s-c3ad6d96-e458-473e-b78b-8b80651710d8.shogun-image {
    
    
  }


.s-c3ad6d96-e458-473e-b78b-8b80651710d8 .shogun-image-content {
  
    align-items: center;
  
}

.s-c3ad6d96-e458-473e-b78b-8b80651710d8.shg-align-container {
  text-align: center
}

.s-c3ad6d96-e458-473e-b78b-8b80651710d8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c3ad6d96-e458-473e-b78b-8b80651710d8.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-c3ad6d96-e458-473e-b78b-8b80651710d8.shogun-image {
    
    
  }


.s-c3ad6d96-e458-473e-b78b-8b80651710d8 .shogun-image-content {
  
    align-items: center;
  
}

.s-c3ad6d96-e458-473e-b78b-8b80651710d8.shg-align-container {
  text-align: center
}

.s-c3ad6d96-e458-473e-b78b-8b80651710d8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c3ad6d96-e458-473e-b78b-8b80651710d8.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c3ad6d96-e458-473e-b78b-8b80651710d8.shogun-image {
    
    
  }


.s-c3ad6d96-e458-473e-b78b-8b80651710d8 .shogun-image-content {
  
    align-items: center;
  
}

.s-c3ad6d96-e458-473e-b78b-8b80651710d8.shg-align-container {
  text-align: center
}

.s-c3ad6d96-e458-473e-b78b-8b80651710d8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c3ad6d96-e458-473e-b78b-8b80651710d8.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c3ad6d96-e458-473e-b78b-8b80651710d8.shogun-image {
    
    
  }


.s-c3ad6d96-e458-473e-b78b-8b80651710d8 .shogun-image-content {
  
    align-items: center;
  
}

.s-c3ad6d96-e458-473e-b78b-8b80651710d8.shg-align-container {
  text-align: center
}

.s-c3ad6d96-e458-473e-b78b-8b80651710d8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c3ad6d96-e458-473e-b78b-8b80651710d8.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c3ad6d96-e458-473e-b78b-8b80651710d8.shogun-image {
    
    
  }


.s-c3ad6d96-e458-473e-b78b-8b80651710d8 .shogun-image-content {
  
    align-items: center;
  
}

.s-c3ad6d96-e458-473e-b78b-8b80651710d8.shg-align-container {
  text-align: center
}

.s-c3ad6d96-e458-473e-b78b-8b80651710d8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c3ad6d96-e458-473e-b78b-8b80651710d8.shogun-image {
  box-sizing: border-box;
}


}
#s-56a75a7c-9d83-4c45-86e5-d51278e72aa4 {
  display: none;
}
#s-1c7d9d9e-7745-4466-b5ec-e55646b6d628 {
  margin-top: 2%;
margin-bottom: -3%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1c7d9d9e-7745-4466-b5ec-e55646b6d628 .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 11px;
  
  letter-spacing: 3px;
  
}



#s-237c081b-11bd-4714-8f53-37437ff5f63b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-237c081b-11bd-4714-8f53-37437ff5f63b .shg-product-title-component h5 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
}

#s-5a84a464-d1e7-48eb-9ff3-486284a83e85 {
  text-align: center;
}

#s-5a84a464-d1e7-48eb-9ff3-486284a83e85 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-5a84a464-d1e7-48eb-9ff3-486284a83e85 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-5a84a464-d1e7-48eb-9ff3-486284a83e85 .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-432c2724-f32d-4a59-9855-57fe2a3d8e36 {
  margin-left: 10px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-432c2724-f32d-4a59-9855-57fe2a3d8e36"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-432c2724-f32d-4a59-9855-57fe2a3d8e36"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-432c2724-f32d-4a59-9855-57fe2a3d8e36"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-432c2724-f32d-4a59-9855-57fe2a3d8e36"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-e353d95f-b90d-4bf0-b417-ba56650714e0 {
  display: none;
}
#s-3191a43b-034a-4448-b14c-2500f7f702b8 {
  margin-top: 5%;
margin-left: 1%;
margin-bottom: 10%;
margin-right: 1%;
padding-top: 10px;
padding-left: 10%;
padding-bottom: 10px;
padding-right: 10%;
border-radius: 2px;
max-width: 100%;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-3191a43b-034a-4448-b14c-2500f7f702b8:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-3191a43b-034a-4448-b14c-2500f7f702b8:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-3191a43b-034a-4448-b14c-2500f7f702b8 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-3191a43b-034a-4448-b14c-2500f7f702b8.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-3191a43b-034a-4448-b14c-2500f7f702b8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-3191a43b-034a-4448-b14c-2500f7f702b8.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-3191a43b-034a-4448-b14c-2500f7f702b8.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-321f10b1-4f36-43b6-8d16-b71dfad69f4b {
  display: none;
}
#s-1d0cc044-34ef-460b-990d-27ab915db9e2 {
  margin-top: 5%;
margin-left: 1%;
margin-bottom: 10%;
margin-right: 1%;
padding-top: 10px;
padding-left: 10%;
padding-bottom: 10px;
padding-right: 10%;
border-radius: 2px;
max-width: 100%;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-1d0cc044-34ef-460b-990d-27ab915db9e2:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-1d0cc044-34ef-460b-990d-27ab915db9e2:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-1d0cc044-34ef-460b-990d-27ab915db9e2 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-1d0cc044-34ef-460b-990d-27ab915db9e2.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-1d0cc044-34ef-460b-990d-27ab915db9e2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-1d0cc044-34ef-460b-990d-27ab915db9e2.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-1d0cc044-34ef-460b-990d-27ab915db9e2.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-3f6e7d88-d240-4cb2-8b19-46d4138671d9 {
  margin-left: 25%;
margin-right: 25%;
text-align: center;
}







  img.s-3f6e7d88-d240-4cb2-8b19-46d4138671d9.shogun-image {
    
    
  }


.s-3f6e7d88-d240-4cb2-8b19-46d4138671d9 .shogun-image-content {
  
    align-items: center;
  
}

.s-3f6e7d88-d240-4cb2-8b19-46d4138671d9.shg-align-container {
  text-align: center
}

.s-3f6e7d88-d240-4cb2-8b19-46d4138671d9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3f6e7d88-d240-4cb2-8b19-46d4138671d9.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-3f6e7d88-d240-4cb2-8b19-46d4138671d9.shogun-image {
    
    
  }


.s-3f6e7d88-d240-4cb2-8b19-46d4138671d9 .shogun-image-content {
  
    align-items: center;
  
}

.s-3f6e7d88-d240-4cb2-8b19-46d4138671d9.shg-align-container {
  text-align: center
}

.s-3f6e7d88-d240-4cb2-8b19-46d4138671d9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3f6e7d88-d240-4cb2-8b19-46d4138671d9.shogun-image {
  box-sizing: border-box;
}


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





  img.s-3f6e7d88-d240-4cb2-8b19-46d4138671d9.shogun-image {
    
    
  }


.s-3f6e7d88-d240-4cb2-8b19-46d4138671d9 .shogun-image-content {
  
    align-items: center;
  
}

.s-3f6e7d88-d240-4cb2-8b19-46d4138671d9.shg-align-container {
  text-align: center
}

.s-3f6e7d88-d240-4cb2-8b19-46d4138671d9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3f6e7d88-d240-4cb2-8b19-46d4138671d9.shogun-image {
  box-sizing: border-box;
}


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





  img.s-3f6e7d88-d240-4cb2-8b19-46d4138671d9.shogun-image {
    
    
  }


.s-3f6e7d88-d240-4cb2-8b19-46d4138671d9 .shogun-image-content {
  
    align-items: center;
  
}

.s-3f6e7d88-d240-4cb2-8b19-46d4138671d9.shg-align-container {
  text-align: center
}

.s-3f6e7d88-d240-4cb2-8b19-46d4138671d9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3f6e7d88-d240-4cb2-8b19-46d4138671d9.shogun-image {
  box-sizing: border-box;
}


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





  img.s-3f6e7d88-d240-4cb2-8b19-46d4138671d9.shogun-image {
    
    
  }


.s-3f6e7d88-d240-4cb2-8b19-46d4138671d9 .shogun-image-content {
  
    align-items: center;
  
}

.s-3f6e7d88-d240-4cb2-8b19-46d4138671d9.shg-align-container {
  text-align: center
}

.s-3f6e7d88-d240-4cb2-8b19-46d4138671d9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3f6e7d88-d240-4cb2-8b19-46d4138671d9.shogun-image {
  box-sizing: border-box;
}


}
#s-0b516ed7-8a91-4ddf-95f9-290a7a33e14a {
  display: none;
}
#s-f77304e8-7222-4f99-9b62-cf691daa4349 {
  margin-top: 2%;
margin-bottom: -3%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f77304e8-7222-4f99-9b62-cf691daa4349 .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 11px;
  
  letter-spacing: 3px;
  
}



#s-d5b2740e-84c4-4585-8eda-4dcd65ad7d54 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d5b2740e-84c4-4585-8eda-4dcd65ad7d54 .shg-product-title-component h5 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
}

#s-4cdc9b87-d732-4df0-97d2-b883bb834e76 {
  text-align: center;
}

#s-4cdc9b87-d732-4df0-97d2-b883bb834e76 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-4cdc9b87-d732-4df0-97d2-b883bb834e76 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-4cdc9b87-d732-4df0-97d2-b883bb834e76 .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-23d63a7f-600e-45fd-bd7c-5032c3c180ae {
  display: none;
}
#s-b1c62a94-fa0a-40d0-bb2f-eb0d397a5018 {
  margin-top: 3%;
margin-left: 25%;
margin-bottom: 10%;
margin-right: 25%;
padding-top: 10px;
padding-left: 10%;
padding-bottom: 10px;
padding-right: 10%;
border-radius: 2px;
max-width: 100%;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-b1c62a94-fa0a-40d0-bb2f-eb0d397a5018:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-b1c62a94-fa0a-40d0-bb2f-eb0d397a5018:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-b1c62a94-fa0a-40d0-bb2f-eb0d397a5018 {
  margin-bottom: 0%;
}
}


#s-b1c62a94-fa0a-40d0-bb2f-eb0d397a5018 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-b1c62a94-fa0a-40d0-bb2f-eb0d397a5018.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b1c62a94-fa0a-40d0-bb2f-eb0d397a5018.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-b1c62a94-fa0a-40d0-bb2f-eb0d397a5018.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-b1c62a94-fa0a-40d0-bb2f-eb0d397a5018.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-5adfc8c6-d629-497d-af23-be08b985a0c8 {
  margin-top: 5%;
margin-bottom: 10%;
min-height: 50px;
}








#s-5adfc8c6-d629-497d-af23-be08b985a0c8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5adfc8c6-d629-497d-af23-be08b985a0c8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a096fae3-eaaf-4601-ac68-5997212c4aaa {
  margin-bottom: 3%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a096fae3-eaaf-4601-ac68-5997212c4aaa .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-fe53822e-0735-4eb3-821d-4c66529f8451 {
  margin-left: 1%;
margin-right: 1%;
}

@media (min-width: 0px) {
[id="s-fe53822e-0735-4eb3-821d-4c66529f8451"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fe53822e-0735-4eb3-821d-4c66529f8451"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-fe53822e-0735-4eb3-821d-4c66529f8451"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-fe53822e-0735-4eb3-821d-4c66529f8451"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-a8231944-d822-4ed1-928c-b585566b9ca8 {
  min-height: 99px;
background-color: rgba(243, 243, 243, 1);
}
@media (min-width: 1200px){#s-a8231944-d822-4ed1-928c-b585566b9ca8 {
  padding-top: 0%;
padding-bottom: 3%;
}
}







#s-a8231944-d822-4ed1-928c-b585566b9ca8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a8231944-d822-4ed1-928c-b585566b9ca8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f8e75305-3db8-481b-98c0-d28a94e1554e {
  margin-top: 5%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f8e75305-3db8-481b-98c0-d28a94e1554e .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  font-family: "DearJoe6";
  font-style:  normal ;
  font-size: 21px;
  
  letter-spacing: 2px;
  
}



#s-1f285fb6-c1af-4717-807a-7d495ba9474d {
  margin-top: 0%;
margin-left: 10%;
margin-bottom: 5%;
margin-right: 10%;
}

#s-91796f23-de43-4e54-8bf6-7c62e9888f00 {
  min-height: 100px;
background-color: rgba(243, 243, 243, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-91796f23-de43-4e54-8bf6-7c62e9888f00 {
  margin-bottom: 0%;
padding-top: 5%;
padding-bottom: 5%;
}
}@media (max-width: 767px){#s-91796f23-de43-4e54-8bf6-7c62e9888f00 {
  margin-top: 10px;
margin-bottom: 10px;
}
}







#s-91796f23-de43-4e54-8bf6-7c62e9888f00 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-91796f23-de43-4e54-8bf6-7c62e9888f00.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bc930dc9-ba96-4f90-875f-adb73bc6f719 {
  margin-top: 5%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-bc930dc9-ba96-4f90-875f-adb73bc6f719 .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  font-family: "DearJoe6";
  font-style:  normal ;
  font-size: 21px;
  
  letter-spacing: 2px;
  
}



#s-eb4a96ba-9bef-49e3-97d9-e809c0a286c0 {
  margin-top: 0%;
margin-left: 10%;
margin-bottom: 5%;
margin-right: 10%;
}

#s-d8cc07a9-698d-44c0-8c7f-60e27fda8045 {
  min-height: 100px;
background-color: rgba(243, 243, 243, 1);
}
@media (min-width: 1200px){#s-d8cc07a9-698d-44c0-8c7f-60e27fda8045 {
  margin-top: -1px;
margin-bottom: -1px;
padding-bottom: 9%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-d8cc07a9-698d-44c0-8c7f-60e27fda8045 {
  padding-top: 6%;
padding-bottom: 6%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-d8cc07a9-698d-44c0-8c7f-60e27fda8045 {
  padding-bottom: 15%;
}
}@media (max-width: 767px){#s-d8cc07a9-698d-44c0-8c7f-60e27fda8045 {
  padding-bottom: 4%;
}
}







#s-d8cc07a9-698d-44c0-8c7f-60e27fda8045 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d8cc07a9-698d-44c0-8c7f-60e27fda8045.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2df8bf78-eda4-44c2-b387-0b84d80b00cc {
  margin-top: 5%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2df8bf78-eda4-44c2-b387-0b84d80b00cc .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  font-family: "DearJoe6";
  font-style:  normal ;
  font-size: 21px;
  
  letter-spacing: 2px;
  
}



#s-813adf23-5381-4285-826d-fc49f00b4847 {
  margin-top: 0%;
margin-left: 10%;
margin-bottom: 0%;
margin-right: 10%;
}

#s-77f4a499-b238-418f-9639-1067ad6977e5 {
  margin-left: 0%;
margin-right: 0%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-77f4a499-b238-418f-9639-1067ad6977e5 {
  display: none;
}
#s-77f4a499-b238-418f-9639-1067ad6977e5, #wrap-s-77f4a499-b238-418f-9639-1067ad6977e5 { display:none !important; }}@media (max-width: 767px){#s-77f4a499-b238-418f-9639-1067ad6977e5 {
  display: none;
}
#s-77f4a499-b238-418f-9639-1067ad6977e5, #wrap-s-77f4a499-b238-418f-9639-1067ad6977e5 { display:none !important; }}







#s-77f4a499-b238-418f-9639-1067ad6977e5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-77f4a499-b238-418f-9639-1067ad6977e5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3e668312-a585-4d4f-a143-407e66bddee4 {
  margin-top: 0%;
margin-left: 20%;
margin-bottom: 4%;
margin-right: 20%;
min-height: 50px;
background-color: rgba(29, 29, 29, 1);
}








#s-3e668312-a585-4d4f-a143-407e66bddee4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3e668312-a585-4d4f-a143-407e66bddee4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-503050d6-d616-45fa-a724-08f60958af20 {
  margin-top: 1px;
margin-left: 1px;
margin-bottom: 1px;
margin-right: 1px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-503050d6-d616-45fa-a724-08f60958af20 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-503050d6-d616-45fa-a724-08f60958af20.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b51a7b35-e27c-445c-bef2-293e9a4e034f {
  margin-top: 1%;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-b51a7b35-e27c-445c-bef2-293e9a4e034f .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 17px;
  
  letter-spacing: 5px;
  
}



#s-29180c97-fb92-45e4-a52d-03a615df5e97 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-29180c97-fb92-45e4-a52d-03a615df5e97 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  line-height: 1.5em;
  letter-spacing: 3px;
  
}



#s-23d8aedf-6bbf-4768-b677-e6004f7cdce7 {
  text-align: center;
}







  img.s-23d8aedf-6bbf-4768-b677-e6004f7cdce7.shogun-image {
    
    
  }


.s-23d8aedf-6bbf-4768-b677-e6004f7cdce7 .shogun-image-content {
  
    align-items: center;
  
}

.s-23d8aedf-6bbf-4768-b677-e6004f7cdce7.shg-align-container {
  text-align: center
}

.s-23d8aedf-6bbf-4768-b677-e6004f7cdce7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-23d8aedf-6bbf-4768-b677-e6004f7cdce7.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-23d8aedf-6bbf-4768-b677-e6004f7cdce7.shogun-image {
    
    
  }


.s-23d8aedf-6bbf-4768-b677-e6004f7cdce7 .shogun-image-content {
  
    align-items: center;
  
}

.s-23d8aedf-6bbf-4768-b677-e6004f7cdce7.shg-align-container {
  text-align: center
}

.s-23d8aedf-6bbf-4768-b677-e6004f7cdce7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-23d8aedf-6bbf-4768-b677-e6004f7cdce7.shogun-image {
  box-sizing: border-box;
}


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





  img.s-23d8aedf-6bbf-4768-b677-e6004f7cdce7.shogun-image {
    
    
  }


.s-23d8aedf-6bbf-4768-b677-e6004f7cdce7 .shogun-image-content {
  
    align-items: center;
  
}

.s-23d8aedf-6bbf-4768-b677-e6004f7cdce7.shg-align-container {
  text-align: center
}

.s-23d8aedf-6bbf-4768-b677-e6004f7cdce7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-23d8aedf-6bbf-4768-b677-e6004f7cdce7.shogun-image {
  box-sizing: border-box;
}


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





  img.s-23d8aedf-6bbf-4768-b677-e6004f7cdce7.shogun-image {
    
    
  }


.s-23d8aedf-6bbf-4768-b677-e6004f7cdce7 .shogun-image-content {
  
    align-items: center;
  
}

.s-23d8aedf-6bbf-4768-b677-e6004f7cdce7.shg-align-container {
  text-align: center
}

.s-23d8aedf-6bbf-4768-b677-e6004f7cdce7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-23d8aedf-6bbf-4768-b677-e6004f7cdce7.shogun-image {
  box-sizing: border-box;
}


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





  img.s-23d8aedf-6bbf-4768-b677-e6004f7cdce7.shogun-image {
    
    
  }


.s-23d8aedf-6bbf-4768-b677-e6004f7cdce7 .shogun-image-content {
  
    align-items: center;
  
}

.s-23d8aedf-6bbf-4768-b677-e6004f7cdce7.shg-align-container {
  text-align: center
}

.s-23d8aedf-6bbf-4768-b677-e6004f7cdce7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-23d8aedf-6bbf-4768-b677-e6004f7cdce7.shogun-image {
  box-sizing: border-box;
}


}
#s-8a819f4b-4f78-4333-965d-e6f89f3187fa {
  margin-top: 3%;
margin-bottom: 3%;
}

@media (min-width: 0px) {
[id="s-8a819f4b-4f78-4333-965d-e6f89f3187fa"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8a819f4b-4f78-4333-965d-e6f89f3187fa"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-8a819f4b-4f78-4333-965d-e6f89f3187fa"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-8a819f4b-4f78-4333-965d-e6f89f3187fa"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-8a819f4b-4f78-4333-965d-e6f89f3187fa"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-8a819f4b-4f78-4333-965d-e6f89f3187fa"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-8a819f4b-4f78-4333-965d-e6f89f3187fa"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

.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-824ee9e5-4270-4b6d-96fd-df62730498ec {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-824ee9e5-4270-4b6d-96fd-df62730498ec .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-824ee9e5-4270-4b6d-96fd-df62730498ec .shg-sld-nav-button.shg-sld-left,
#s-824ee9e5-4270-4b6d-96fd-df62730498ec .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-be8dd60a-1397-4b95-ba1c-c128497fc6ac {
  margin-left: 40%;
margin-right: 40%;
text-align: center;
}







  img.s-be8dd60a-1397-4b95-ba1c-c128497fc6ac.shogun-image {
    
    
  }


.s-be8dd60a-1397-4b95-ba1c-c128497fc6ac .shogun-image-content {
  
    align-items: center;
  
}

.s-be8dd60a-1397-4b95-ba1c-c128497fc6ac.shg-align-container {
  text-align: center
}

.s-be8dd60a-1397-4b95-ba1c-c128497fc6ac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-be8dd60a-1397-4b95-ba1c-c128497fc6ac.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-be8dd60a-1397-4b95-ba1c-c128497fc6ac.shogun-image {
    
    
  }


.s-be8dd60a-1397-4b95-ba1c-c128497fc6ac .shogun-image-content {
  
    align-items: center;
  
}

.s-be8dd60a-1397-4b95-ba1c-c128497fc6ac.shg-align-container {
  text-align: center
}

.s-be8dd60a-1397-4b95-ba1c-c128497fc6ac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-be8dd60a-1397-4b95-ba1c-c128497fc6ac.shogun-image {
  box-sizing: border-box;
}


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





  img.s-be8dd60a-1397-4b95-ba1c-c128497fc6ac.shogun-image {
    
    
  }


.s-be8dd60a-1397-4b95-ba1c-c128497fc6ac .shogun-image-content {
  
    align-items: center;
  
}

.s-be8dd60a-1397-4b95-ba1c-c128497fc6ac.shg-align-container {
  text-align: center
}

.s-be8dd60a-1397-4b95-ba1c-c128497fc6ac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-be8dd60a-1397-4b95-ba1c-c128497fc6ac.shogun-image {
  box-sizing: border-box;
}


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





  img.s-be8dd60a-1397-4b95-ba1c-c128497fc6ac.shogun-image {
    
    
  }


.s-be8dd60a-1397-4b95-ba1c-c128497fc6ac .shogun-image-content {
  
    align-items: center;
  
}

.s-be8dd60a-1397-4b95-ba1c-c128497fc6ac.shg-align-container {
  text-align: center
}

.s-be8dd60a-1397-4b95-ba1c-c128497fc6ac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-be8dd60a-1397-4b95-ba1c-c128497fc6ac.shogun-image {
  box-sizing: border-box;
}


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





  img.s-be8dd60a-1397-4b95-ba1c-c128497fc6ac.shogun-image {
    
    
  }


.s-be8dd60a-1397-4b95-ba1c-c128497fc6ac .shogun-image-content {
  
    align-items: center;
  
}

.s-be8dd60a-1397-4b95-ba1c-c128497fc6ac.shg-align-container {
  text-align: center
}

.s-be8dd60a-1397-4b95-ba1c-c128497fc6ac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-be8dd60a-1397-4b95-ba1c-c128497fc6ac.shogun-image {
  box-sizing: border-box;
}


}
#s-185f0edb-315e-46f7-959f-8baf596bbf7f {
  margin-left: 40%;
margin-right: 40%;
text-align: center;
}







  img.s-185f0edb-315e-46f7-959f-8baf596bbf7f.shogun-image {
    
    
  }


.s-185f0edb-315e-46f7-959f-8baf596bbf7f .shogun-image-content {
  
    align-items: center;
  
}

.s-185f0edb-315e-46f7-959f-8baf596bbf7f.shg-align-container {
  text-align: center
}

.s-185f0edb-315e-46f7-959f-8baf596bbf7f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-185f0edb-315e-46f7-959f-8baf596bbf7f.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-185f0edb-315e-46f7-959f-8baf596bbf7f.shogun-image {
    
    
  }


.s-185f0edb-315e-46f7-959f-8baf596bbf7f .shogun-image-content {
  
    align-items: center;
  
}

.s-185f0edb-315e-46f7-959f-8baf596bbf7f.shg-align-container {
  text-align: center
}

.s-185f0edb-315e-46f7-959f-8baf596bbf7f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-185f0edb-315e-46f7-959f-8baf596bbf7f.shogun-image {
  box-sizing: border-box;
}


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





  img.s-185f0edb-315e-46f7-959f-8baf596bbf7f.shogun-image {
    
    
  }


.s-185f0edb-315e-46f7-959f-8baf596bbf7f .shogun-image-content {
  
    align-items: center;
  
}

.s-185f0edb-315e-46f7-959f-8baf596bbf7f.shg-align-container {
  text-align: center
}

.s-185f0edb-315e-46f7-959f-8baf596bbf7f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-185f0edb-315e-46f7-959f-8baf596bbf7f.shogun-image {
  box-sizing: border-box;
}


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





  img.s-185f0edb-315e-46f7-959f-8baf596bbf7f.shogun-image {
    
    
  }


.s-185f0edb-315e-46f7-959f-8baf596bbf7f .shogun-image-content {
  
    align-items: center;
  
}

.s-185f0edb-315e-46f7-959f-8baf596bbf7f.shg-align-container {
  text-align: center
}

.s-185f0edb-315e-46f7-959f-8baf596bbf7f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-185f0edb-315e-46f7-959f-8baf596bbf7f.shogun-image {
  box-sizing: border-box;
}


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





  img.s-185f0edb-315e-46f7-959f-8baf596bbf7f.shogun-image {
    
    
  }


.s-185f0edb-315e-46f7-959f-8baf596bbf7f .shogun-image-content {
  
    align-items: center;
  
}

.s-185f0edb-315e-46f7-959f-8baf596bbf7f.shg-align-container {
  text-align: center
}

.s-185f0edb-315e-46f7-959f-8baf596bbf7f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-185f0edb-315e-46f7-959f-8baf596bbf7f.shogun-image {
  box-sizing: border-box;
}


}
#s-dbea4014-b72e-4a20-af58-f795fcb60503 {
  margin-left: 40%;
margin-right: 40%;
text-align: center;
}







  img.s-dbea4014-b72e-4a20-af58-f795fcb60503.shogun-image {
    
    
  }


.s-dbea4014-b72e-4a20-af58-f795fcb60503 .shogun-image-content {
  
    align-items: center;
  
}

.s-dbea4014-b72e-4a20-af58-f795fcb60503.shg-align-container {
  text-align: center
}

.s-dbea4014-b72e-4a20-af58-f795fcb60503.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dbea4014-b72e-4a20-af58-f795fcb60503.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-dbea4014-b72e-4a20-af58-f795fcb60503.shogun-image {
    
    
  }


.s-dbea4014-b72e-4a20-af58-f795fcb60503 .shogun-image-content {
  
    align-items: center;
  
}

.s-dbea4014-b72e-4a20-af58-f795fcb60503.shg-align-container {
  text-align: center
}

.s-dbea4014-b72e-4a20-af58-f795fcb60503.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dbea4014-b72e-4a20-af58-f795fcb60503.shogun-image {
  box-sizing: border-box;
}


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





  img.s-dbea4014-b72e-4a20-af58-f795fcb60503.shogun-image {
    
    
  }


.s-dbea4014-b72e-4a20-af58-f795fcb60503 .shogun-image-content {
  
    align-items: center;
  
}

.s-dbea4014-b72e-4a20-af58-f795fcb60503.shg-align-container {
  text-align: center
}

.s-dbea4014-b72e-4a20-af58-f795fcb60503.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dbea4014-b72e-4a20-af58-f795fcb60503.shogun-image {
  box-sizing: border-box;
}


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





  img.s-dbea4014-b72e-4a20-af58-f795fcb60503.shogun-image {
    
    
  }


.s-dbea4014-b72e-4a20-af58-f795fcb60503 .shogun-image-content {
  
    align-items: center;
  
}

.s-dbea4014-b72e-4a20-af58-f795fcb60503.shg-align-container {
  text-align: center
}

.s-dbea4014-b72e-4a20-af58-f795fcb60503.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dbea4014-b72e-4a20-af58-f795fcb60503.shogun-image {
  box-sizing: border-box;
}


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





  img.s-dbea4014-b72e-4a20-af58-f795fcb60503.shogun-image {
    
    
  }


.s-dbea4014-b72e-4a20-af58-f795fcb60503 .shogun-image-content {
  
    align-items: center;
  
}

.s-dbea4014-b72e-4a20-af58-f795fcb60503.shg-align-container {
  text-align: center
}

.s-dbea4014-b72e-4a20-af58-f795fcb60503.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dbea4014-b72e-4a20-af58-f795fcb60503.shogun-image {
  box-sizing: border-box;
}


}
#s-d99e9945-ce3f-4118-9021-3e49eda1612c {
  margin-left: 10%;
margin-right: 10%;
}

#s-0bfc4050-ed0f-4e5f-bed7-ac6d4a51a349 {
  margin-left: 40%;
margin-right: 40%;
text-align: center;
}







  img.s-0bfc4050-ed0f-4e5f-bed7-ac6d4a51a349.shogun-image {
    
    
  }


.s-0bfc4050-ed0f-4e5f-bed7-ac6d4a51a349 .shogun-image-content {
  
    align-items: center;
  
}

.s-0bfc4050-ed0f-4e5f-bed7-ac6d4a51a349.shg-align-container {
  text-align: center
}

.s-0bfc4050-ed0f-4e5f-bed7-ac6d4a51a349.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0bfc4050-ed0f-4e5f-bed7-ac6d4a51a349.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-0bfc4050-ed0f-4e5f-bed7-ac6d4a51a349.shogun-image {
    
    
  }


.s-0bfc4050-ed0f-4e5f-bed7-ac6d4a51a349 .shogun-image-content {
  
    align-items: center;
  
}

.s-0bfc4050-ed0f-4e5f-bed7-ac6d4a51a349.shg-align-container {
  text-align: center
}

.s-0bfc4050-ed0f-4e5f-bed7-ac6d4a51a349.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0bfc4050-ed0f-4e5f-bed7-ac6d4a51a349.shogun-image {
  box-sizing: border-box;
}


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





  img.s-0bfc4050-ed0f-4e5f-bed7-ac6d4a51a349.shogun-image {
    
    
  }


.s-0bfc4050-ed0f-4e5f-bed7-ac6d4a51a349 .shogun-image-content {
  
    align-items: center;
  
}

.s-0bfc4050-ed0f-4e5f-bed7-ac6d4a51a349.shg-align-container {
  text-align: center
}

.s-0bfc4050-ed0f-4e5f-bed7-ac6d4a51a349.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0bfc4050-ed0f-4e5f-bed7-ac6d4a51a349.shogun-image {
  box-sizing: border-box;
}


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





  img.s-0bfc4050-ed0f-4e5f-bed7-ac6d4a51a349.shogun-image {
    
    
  }


.s-0bfc4050-ed0f-4e5f-bed7-ac6d4a51a349 .shogun-image-content {
  
    align-items: center;
  
}

.s-0bfc4050-ed0f-4e5f-bed7-ac6d4a51a349.shg-align-container {
  text-align: center
}

.s-0bfc4050-ed0f-4e5f-bed7-ac6d4a51a349.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0bfc4050-ed0f-4e5f-bed7-ac6d4a51a349.shogun-image {
  box-sizing: border-box;
}


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





  img.s-0bfc4050-ed0f-4e5f-bed7-ac6d4a51a349.shogun-image {
    
    
  }


.s-0bfc4050-ed0f-4e5f-bed7-ac6d4a51a349 .shogun-image-content {
  
    align-items: center;
  
}

.s-0bfc4050-ed0f-4e5f-bed7-ac6d4a51a349.shg-align-container {
  text-align: center
}

.s-0bfc4050-ed0f-4e5f-bed7-ac6d4a51a349.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0bfc4050-ed0f-4e5f-bed7-ac6d4a51a349.shogun-image {
  box-sizing: border-box;
}


}
#s-d8b521ac-8815-4a56-869a-95dd879f1d44 {
  margin-left: 10%;
margin-right: 10%;
}

#s-a47ca75f-8787-4f54-b8a6-ef18543e5d75 {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-a47ca75f-8787-4f54-b8a6-ef18543e5d75:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-a47ca75f-8787-4f54-b8a6-ef18543e5d75:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-a47ca75f-8787-4f54-b8a6-ef18543e5d75-root {
    text-align: center;
  }


#s-a47ca75f-8787-4f54-b8a6-ef18543e5d75.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-a47ca75f-8787-4f54-b8a6-ef18543e5d75-root {
    text-align: center;
  }


#s-a47ca75f-8787-4f54-b8a6-ef18543e5d75.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a47ca75f-8787-4f54-b8a6-ef18543e5d75-root {
    text-align: center;
  }


#s-a47ca75f-8787-4f54-b8a6-ef18543e5d75.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a47ca75f-8787-4f54-b8a6-ef18543e5d75-root {
    text-align: center;
  }


#s-a47ca75f-8787-4f54-b8a6-ef18543e5d75.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-a47ca75f-8787-4f54-b8a6-ef18543e5d75-root {
    text-align: center;
  }


#s-a47ca75f-8787-4f54-b8a6-ef18543e5d75.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-a47ca75f-8787-4f54-b8a6-ef18543e5d75-root {
    text-align: center;
  }


#s-a47ca75f-8787-4f54-b8a6-ef18543e5d75.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-c32e026e-8a79-48f8-8b9e-991e96463631 {
  margin-left: 0%;
margin-right: 0%;
min-height: 50px;
}
@media (min-width: 1200px){#s-c32e026e-8a79-48f8-8b9e-991e96463631 {
  display: none;
}
#s-c32e026e-8a79-48f8-8b9e-991e96463631, #wrap-s-c32e026e-8a79-48f8-8b9e-991e96463631 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c32e026e-8a79-48f8-8b9e-991e96463631 {
  display: none;
}
#s-c32e026e-8a79-48f8-8b9e-991e96463631, #wrap-s-c32e026e-8a79-48f8-8b9e-991e96463631 { display:none !important; }}







#s-c32e026e-8a79-48f8-8b9e-991e96463631 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c32e026e-8a79-48f8-8b9e-991e96463631.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4a386126-b3e0-4b32-85a4-686cdb37cfe1 {
  margin-left: 1%;
margin-right: 1%;
min-height: 50px;
background-color: rgba(29, 29, 29, 1);
}








#s-4a386126-b3e0-4b32-85a4-686cdb37cfe1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4a386126-b3e0-4b32-85a4-686cdb37cfe1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e018eecb-1e2b-4902-ad64-79867c3b181d {
  margin-top: 1px;
margin-left: 1px;
margin-bottom: 1px;
margin-right: 1px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-e018eecb-1e2b-4902-ad64-79867c3b181d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e018eecb-1e2b-4902-ad64-79867c3b181d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-84e1ddca-0919-4dcf-b1f0-631dd85178c3 {
  margin-top: 2%;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-84e1ddca-0919-4dcf-b1f0-631dd85178c3 .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  letter-spacing: 5px;
  
}



#s-ab23e0b5-a53f-4194-a480-ece322e670e4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ab23e0b5-a53f-4194-a480-ece322e670e4 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 23px;
  line-height: 1.5em;
  letter-spacing: 3px;
  
}



#s-9879fdab-20da-4575-991c-ca08eaef3691 {
  text-align: center;
}







  img.s-9879fdab-20da-4575-991c-ca08eaef3691.shogun-image {
    
    
  }


.s-9879fdab-20da-4575-991c-ca08eaef3691 .shogun-image-content {
  
    align-items: center;
  
}

.s-9879fdab-20da-4575-991c-ca08eaef3691.shg-align-container {
  text-align: center
}

.s-9879fdab-20da-4575-991c-ca08eaef3691.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9879fdab-20da-4575-991c-ca08eaef3691.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-9879fdab-20da-4575-991c-ca08eaef3691.shogun-image {
    
    
  }


.s-9879fdab-20da-4575-991c-ca08eaef3691 .shogun-image-content {
  
    align-items: center;
  
}

.s-9879fdab-20da-4575-991c-ca08eaef3691.shg-align-container {
  text-align: center
}

.s-9879fdab-20da-4575-991c-ca08eaef3691.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9879fdab-20da-4575-991c-ca08eaef3691.shogun-image {
  box-sizing: border-box;
}


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





  img.s-9879fdab-20da-4575-991c-ca08eaef3691.shogun-image {
    
    
  }


.s-9879fdab-20da-4575-991c-ca08eaef3691 .shogun-image-content {
  
    align-items: center;
  
}

.s-9879fdab-20da-4575-991c-ca08eaef3691.shg-align-container {
  text-align: center
}

.s-9879fdab-20da-4575-991c-ca08eaef3691.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9879fdab-20da-4575-991c-ca08eaef3691.shogun-image {
  box-sizing: border-box;
}


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





  img.s-9879fdab-20da-4575-991c-ca08eaef3691.shogun-image {
    
    
  }


.s-9879fdab-20da-4575-991c-ca08eaef3691 .shogun-image-content {
  
    align-items: center;
  
}

.s-9879fdab-20da-4575-991c-ca08eaef3691.shg-align-container {
  text-align: center
}

.s-9879fdab-20da-4575-991c-ca08eaef3691.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9879fdab-20da-4575-991c-ca08eaef3691.shogun-image {
  box-sizing: border-box;
}


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





  img.s-9879fdab-20da-4575-991c-ca08eaef3691.shogun-image {
    
    
  }


.s-9879fdab-20da-4575-991c-ca08eaef3691 .shogun-image-content {
  
    align-items: center;
  
}

.s-9879fdab-20da-4575-991c-ca08eaef3691.shg-align-container {
  text-align: center
}

.s-9879fdab-20da-4575-991c-ca08eaef3691.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9879fdab-20da-4575-991c-ca08eaef3691.shogun-image {
  box-sizing: border-box;
}


}
#s-e6668dcf-3fa5-43cf-9f64-eb0ec36c8412 {
  margin-top: 5%;
padding-top: 0px;
padding-bottom: 0px;
}

#s-e6668dcf-3fa5-43cf-9f64-eb0ec36c8412 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-e6668dcf-3fa5-43cf-9f64-eb0ec36c8412 .shg-sld-nav-button.shg-sld-left,
#s-e6668dcf-3fa5-43cf-9f64-eb0ec36c8412 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-cf0df31a-426d-4640-a14c-bd8dc535c56f {
  margin-left: 39%;
margin-right: 39%;
text-align: center;
}







  img.s-cf0df31a-426d-4640-a14c-bd8dc535c56f.shogun-image {
    
    
  }


.s-cf0df31a-426d-4640-a14c-bd8dc535c56f .shogun-image-content {
  
    align-items: center;
  
}

.s-cf0df31a-426d-4640-a14c-bd8dc535c56f.shg-align-container {
  text-align: center
}

.s-cf0df31a-426d-4640-a14c-bd8dc535c56f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cf0df31a-426d-4640-a14c-bd8dc535c56f.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-cf0df31a-426d-4640-a14c-bd8dc535c56f.shogun-image {
    
    
  }


.s-cf0df31a-426d-4640-a14c-bd8dc535c56f .shogun-image-content {
  
    align-items: center;
  
}

.s-cf0df31a-426d-4640-a14c-bd8dc535c56f.shg-align-container {
  text-align: center
}

.s-cf0df31a-426d-4640-a14c-bd8dc535c56f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cf0df31a-426d-4640-a14c-bd8dc535c56f.shogun-image {
  box-sizing: border-box;
}


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





  img.s-cf0df31a-426d-4640-a14c-bd8dc535c56f.shogun-image {
    
    
  }


.s-cf0df31a-426d-4640-a14c-bd8dc535c56f .shogun-image-content {
  
    align-items: center;
  
}

.s-cf0df31a-426d-4640-a14c-bd8dc535c56f.shg-align-container {
  text-align: center
}

.s-cf0df31a-426d-4640-a14c-bd8dc535c56f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cf0df31a-426d-4640-a14c-bd8dc535c56f.shogun-image {
  box-sizing: border-box;
}


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





  img.s-cf0df31a-426d-4640-a14c-bd8dc535c56f.shogun-image {
    
    
  }


.s-cf0df31a-426d-4640-a14c-bd8dc535c56f .shogun-image-content {
  
    align-items: center;
  
}

.s-cf0df31a-426d-4640-a14c-bd8dc535c56f.shg-align-container {
  text-align: center
}

.s-cf0df31a-426d-4640-a14c-bd8dc535c56f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cf0df31a-426d-4640-a14c-bd8dc535c56f.shogun-image {
  box-sizing: border-box;
}


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





  img.s-cf0df31a-426d-4640-a14c-bd8dc535c56f.shogun-image {
    
    
  }


.s-cf0df31a-426d-4640-a14c-bd8dc535c56f .shogun-image-content {
  
    align-items: center;
  
}

.s-cf0df31a-426d-4640-a14c-bd8dc535c56f.shg-align-container {
  text-align: center
}

.s-cf0df31a-426d-4640-a14c-bd8dc535c56f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cf0df31a-426d-4640-a14c-bd8dc535c56f.shogun-image {
  box-sizing: border-box;
}


}
#s-40dcdfcf-1e8d-49bf-ad58-f7212177bcd0 {
  margin-left: 39%;
margin-right: 39%;
text-align: center;
}







  img.s-40dcdfcf-1e8d-49bf-ad58-f7212177bcd0.shogun-image {
    
    
  }


.s-40dcdfcf-1e8d-49bf-ad58-f7212177bcd0 .shogun-image-content {
  
    align-items: center;
  
}

.s-40dcdfcf-1e8d-49bf-ad58-f7212177bcd0.shg-align-container {
  text-align: center
}

.s-40dcdfcf-1e8d-49bf-ad58-f7212177bcd0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-40dcdfcf-1e8d-49bf-ad58-f7212177bcd0.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-40dcdfcf-1e8d-49bf-ad58-f7212177bcd0.shogun-image {
    
    
  }


.s-40dcdfcf-1e8d-49bf-ad58-f7212177bcd0 .shogun-image-content {
  
    align-items: center;
  
}

.s-40dcdfcf-1e8d-49bf-ad58-f7212177bcd0.shg-align-container {
  text-align: center
}

.s-40dcdfcf-1e8d-49bf-ad58-f7212177bcd0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-40dcdfcf-1e8d-49bf-ad58-f7212177bcd0.shogun-image {
  box-sizing: border-box;
}


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





  img.s-40dcdfcf-1e8d-49bf-ad58-f7212177bcd0.shogun-image {
    
    
  }


.s-40dcdfcf-1e8d-49bf-ad58-f7212177bcd0 .shogun-image-content {
  
    align-items: center;
  
}

.s-40dcdfcf-1e8d-49bf-ad58-f7212177bcd0.shg-align-container {
  text-align: center
}

.s-40dcdfcf-1e8d-49bf-ad58-f7212177bcd0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-40dcdfcf-1e8d-49bf-ad58-f7212177bcd0.shogun-image {
  box-sizing: border-box;
}


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





  img.s-40dcdfcf-1e8d-49bf-ad58-f7212177bcd0.shogun-image {
    
    
  }


.s-40dcdfcf-1e8d-49bf-ad58-f7212177bcd0 .shogun-image-content {
  
    align-items: center;
  
}

.s-40dcdfcf-1e8d-49bf-ad58-f7212177bcd0.shg-align-container {
  text-align: center
}

.s-40dcdfcf-1e8d-49bf-ad58-f7212177bcd0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-40dcdfcf-1e8d-49bf-ad58-f7212177bcd0.shogun-image {
  box-sizing: border-box;
}


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





  img.s-40dcdfcf-1e8d-49bf-ad58-f7212177bcd0.shogun-image {
    
    
  }


.s-40dcdfcf-1e8d-49bf-ad58-f7212177bcd0 .shogun-image-content {
  
    align-items: center;
  
}

.s-40dcdfcf-1e8d-49bf-ad58-f7212177bcd0.shg-align-container {
  text-align: center
}

.s-40dcdfcf-1e8d-49bf-ad58-f7212177bcd0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-40dcdfcf-1e8d-49bf-ad58-f7212177bcd0.shogun-image {
  box-sizing: border-box;
}


}
#s-cd88f8eb-5478-4b34-808e-fdbf032fd72d {
  margin-left: 39%;
margin-right: 39%;
text-align: center;
}







  img.s-cd88f8eb-5478-4b34-808e-fdbf032fd72d.shogun-image {
    
    
  }


.s-cd88f8eb-5478-4b34-808e-fdbf032fd72d .shogun-image-content {
  
    align-items: center;
  
}

.s-cd88f8eb-5478-4b34-808e-fdbf032fd72d.shg-align-container {
  text-align: center
}

.s-cd88f8eb-5478-4b34-808e-fdbf032fd72d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cd88f8eb-5478-4b34-808e-fdbf032fd72d.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-cd88f8eb-5478-4b34-808e-fdbf032fd72d.shogun-image {
    
    
  }


.s-cd88f8eb-5478-4b34-808e-fdbf032fd72d .shogun-image-content {
  
    align-items: center;
  
}

.s-cd88f8eb-5478-4b34-808e-fdbf032fd72d.shg-align-container {
  text-align: center
}

.s-cd88f8eb-5478-4b34-808e-fdbf032fd72d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cd88f8eb-5478-4b34-808e-fdbf032fd72d.shogun-image {
  box-sizing: border-box;
}


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





  img.s-cd88f8eb-5478-4b34-808e-fdbf032fd72d.shogun-image {
    
    
  }


.s-cd88f8eb-5478-4b34-808e-fdbf032fd72d .shogun-image-content {
  
    align-items: center;
  
}

.s-cd88f8eb-5478-4b34-808e-fdbf032fd72d.shg-align-container {
  text-align: center
}

.s-cd88f8eb-5478-4b34-808e-fdbf032fd72d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cd88f8eb-5478-4b34-808e-fdbf032fd72d.shogun-image {
  box-sizing: border-box;
}


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





  img.s-cd88f8eb-5478-4b34-808e-fdbf032fd72d.shogun-image {
    
    
  }


.s-cd88f8eb-5478-4b34-808e-fdbf032fd72d .shogun-image-content {
  
    align-items: center;
  
}

.s-cd88f8eb-5478-4b34-808e-fdbf032fd72d.shg-align-container {
  text-align: center
}

.s-cd88f8eb-5478-4b34-808e-fdbf032fd72d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cd88f8eb-5478-4b34-808e-fdbf032fd72d.shogun-image {
  box-sizing: border-box;
}


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





  img.s-cd88f8eb-5478-4b34-808e-fdbf032fd72d.shogun-image {
    
    
  }


.s-cd88f8eb-5478-4b34-808e-fdbf032fd72d .shogun-image-content {
  
    align-items: center;
  
}

.s-cd88f8eb-5478-4b34-808e-fdbf032fd72d.shg-align-container {
  text-align: center
}

.s-cd88f8eb-5478-4b34-808e-fdbf032fd72d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cd88f8eb-5478-4b34-808e-fdbf032fd72d.shogun-image {
  box-sizing: border-box;
}


}
#s-8a740a39-26fa-44e9-9fd6-17ff33896606 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: -3%;
margin-right: 0%;
}

#s-f1d58dda-1df3-40d5-8d79-3bfcdfde90ea {
  margin-left: 15%;
margin-right: 15%;
}

#s-8ce12acf-c9b8-4114-a544-fea4732b8aed {
  margin-left: 42%;
margin-right: 42%;
text-align: center;
}







  img.s-8ce12acf-c9b8-4114-a544-fea4732b8aed.shogun-image {
    
    
  }


.s-8ce12acf-c9b8-4114-a544-fea4732b8aed .shogun-image-content {
  
    align-items: center;
  
}

.s-8ce12acf-c9b8-4114-a544-fea4732b8aed.shg-align-container {
  text-align: center
}

.s-8ce12acf-c9b8-4114-a544-fea4732b8aed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ce12acf-c9b8-4114-a544-fea4732b8aed.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-8ce12acf-c9b8-4114-a544-fea4732b8aed.shogun-image {
    
    
  }


.s-8ce12acf-c9b8-4114-a544-fea4732b8aed .shogun-image-content {
  
    align-items: center;
  
}

.s-8ce12acf-c9b8-4114-a544-fea4732b8aed.shg-align-container {
  text-align: center
}

.s-8ce12acf-c9b8-4114-a544-fea4732b8aed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ce12acf-c9b8-4114-a544-fea4732b8aed.shogun-image {
  box-sizing: border-box;
}


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





  img.s-8ce12acf-c9b8-4114-a544-fea4732b8aed.shogun-image {
    
    
  }


.s-8ce12acf-c9b8-4114-a544-fea4732b8aed .shogun-image-content {
  
    align-items: center;
  
}

.s-8ce12acf-c9b8-4114-a544-fea4732b8aed.shg-align-container {
  text-align: center
}

.s-8ce12acf-c9b8-4114-a544-fea4732b8aed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ce12acf-c9b8-4114-a544-fea4732b8aed.shogun-image {
  box-sizing: border-box;
}


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





  img.s-8ce12acf-c9b8-4114-a544-fea4732b8aed.shogun-image {
    
    
  }


.s-8ce12acf-c9b8-4114-a544-fea4732b8aed .shogun-image-content {
  
    align-items: center;
  
}

.s-8ce12acf-c9b8-4114-a544-fea4732b8aed.shg-align-container {
  text-align: center
}

.s-8ce12acf-c9b8-4114-a544-fea4732b8aed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ce12acf-c9b8-4114-a544-fea4732b8aed.shogun-image {
  box-sizing: border-box;
}


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





  img.s-8ce12acf-c9b8-4114-a544-fea4732b8aed.shogun-image {
    
    
  }


.s-8ce12acf-c9b8-4114-a544-fea4732b8aed .shogun-image-content {
  
    align-items: center;
  
}

.s-8ce12acf-c9b8-4114-a544-fea4732b8aed.shg-align-container {
  text-align: center
}

.s-8ce12acf-c9b8-4114-a544-fea4732b8aed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ce12acf-c9b8-4114-a544-fea4732b8aed.shogun-image {
  box-sizing: border-box;
}


}
#s-bbf7dd30-10f7-478e-a060-e94eded60495 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: -3%;
margin-right: 0%;
}

#s-4ecf59e8-0d42-4664-a849-f6bf056c1bd3 {
  margin-left: 15%;
margin-right: 15%;
}

#s-f472e84b-829f-483a-a5b7-85c81292bde9 {
  border-style: solid;
margin-top: 5%;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-f472e84b-829f-483a-a5b7-85c81292bde9:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-f472e84b-829f-483a-a5b7-85c81292bde9:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-f472e84b-829f-483a-a5b7-85c81292bde9-root {
    text-align: center;
  }


#s-f472e84b-829f-483a-a5b7-85c81292bde9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-f472e84b-829f-483a-a5b7-85c81292bde9-root {
    text-align: center;
  }


#s-f472e84b-829f-483a-a5b7-85c81292bde9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f472e84b-829f-483a-a5b7-85c81292bde9-root {
    text-align: center;
  }


#s-f472e84b-829f-483a-a5b7-85c81292bde9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f472e84b-829f-483a-a5b7-85c81292bde9-root {
    text-align: center;
  }


#s-f472e84b-829f-483a-a5b7-85c81292bde9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-f472e84b-829f-483a-a5b7-85c81292bde9-root {
    text-align: center;
  }


#s-f472e84b-829f-483a-a5b7-85c81292bde9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-f472e84b-829f-483a-a5b7-85c81292bde9-root {
    text-align: center;
  }


#s-f472e84b-829f-483a-a5b7-85c81292bde9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-2c11c965-ccb7-419c-9026-759920b994bf {
  margin-top: 15%;
margin-left: 0%;
margin-bottom: 15%;
margin-right: 0%;
min-height: 50px;
}
@media (min-width: 1200px){#s-2c11c965-ccb7-419c-9026-759920b994bf {
  display: none;
}
#s-2c11c965-ccb7-419c-9026-759920b994bf, #wrap-s-2c11c965-ccb7-419c-9026-759920b994bf { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2c11c965-ccb7-419c-9026-759920b994bf {
  display: none;
}
#s-2c11c965-ccb7-419c-9026-759920b994bf, #wrap-s-2c11c965-ccb7-419c-9026-759920b994bf { display:none !important; }}







#s-2c11c965-ccb7-419c-9026-759920b994bf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2c11c965-ccb7-419c-9026-759920b994bf.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-60430de0-b847-46b7-b4e0-fe6f969d2e32 {
  margin-left: 1%;
margin-right: 1%;
min-height: 50px;
background-color: rgba(29, 29, 29, 1);
}








#s-60430de0-b847-46b7-b4e0-fe6f969d2e32 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-60430de0-b847-46b7-b4e0-fe6f969d2e32.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-50221995-f0a9-4db4-b8ba-3fb7ba716545 {
  margin-top: 1px;
margin-left: 1px;
margin-bottom: 1px;
margin-right: 1px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-50221995-f0a9-4db4-b8ba-3fb7ba716545 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-50221995-f0a9-4db4-b8ba-3fb7ba716545.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-993ff728-e251-4331-add2-79ac3564d6ed {
  margin-top: 2%;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-993ff728-e251-4331-add2-79ac3564d6ed .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  letter-spacing: 5px;
  
}



#s-a5ac5510-c9ab-4644-bfc6-bfb97c85ef4b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a5ac5510-c9ab-4644-bfc6-bfb97c85ef4b .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 23px;
  line-height: 1.5em;
  letter-spacing: 3px;
  
}



#s-bf504a7a-0750-437c-9f18-e8a51934beb8 {
  text-align: center;
}







  img.s-bf504a7a-0750-437c-9f18-e8a51934beb8.shogun-image {
    
    
  }


.s-bf504a7a-0750-437c-9f18-e8a51934beb8 .shogun-image-content {
  
    align-items: center;
  
}

.s-bf504a7a-0750-437c-9f18-e8a51934beb8.shg-align-container {
  text-align: center
}

.s-bf504a7a-0750-437c-9f18-e8a51934beb8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf504a7a-0750-437c-9f18-e8a51934beb8.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-bf504a7a-0750-437c-9f18-e8a51934beb8.shogun-image {
    
    
  }


.s-bf504a7a-0750-437c-9f18-e8a51934beb8 .shogun-image-content {
  
    align-items: center;
  
}

.s-bf504a7a-0750-437c-9f18-e8a51934beb8.shg-align-container {
  text-align: center
}

.s-bf504a7a-0750-437c-9f18-e8a51934beb8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf504a7a-0750-437c-9f18-e8a51934beb8.shogun-image {
  box-sizing: border-box;
}


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





  img.s-bf504a7a-0750-437c-9f18-e8a51934beb8.shogun-image {
    
    
  }


.s-bf504a7a-0750-437c-9f18-e8a51934beb8 .shogun-image-content {
  
    align-items: center;
  
}

.s-bf504a7a-0750-437c-9f18-e8a51934beb8.shg-align-container {
  text-align: center
}

.s-bf504a7a-0750-437c-9f18-e8a51934beb8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf504a7a-0750-437c-9f18-e8a51934beb8.shogun-image {
  box-sizing: border-box;
}


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





  img.s-bf504a7a-0750-437c-9f18-e8a51934beb8.shogun-image {
    
    
  }


.s-bf504a7a-0750-437c-9f18-e8a51934beb8 .shogun-image-content {
  
    align-items: center;
  
}

.s-bf504a7a-0750-437c-9f18-e8a51934beb8.shg-align-container {
  text-align: center
}

.s-bf504a7a-0750-437c-9f18-e8a51934beb8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf504a7a-0750-437c-9f18-e8a51934beb8.shogun-image {
  box-sizing: border-box;
}


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





  img.s-bf504a7a-0750-437c-9f18-e8a51934beb8.shogun-image {
    
    
  }


.s-bf504a7a-0750-437c-9f18-e8a51934beb8 .shogun-image-content {
  
    align-items: center;
  
}

.s-bf504a7a-0750-437c-9f18-e8a51934beb8.shg-align-container {
  text-align: center
}

.s-bf504a7a-0750-437c-9f18-e8a51934beb8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf504a7a-0750-437c-9f18-e8a51934beb8.shogun-image {
  box-sizing: border-box;
}


}
#s-5d9b5e45-cbdd-40df-949d-bb6df70b4db1 {
  margin-top: 15%;
padding-top: 0px;
padding-bottom: 0px;
}

#s-5d9b5e45-cbdd-40df-949d-bb6df70b4db1 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-5d9b5e45-cbdd-40df-949d-bb6df70b4db1 .shg-sld-nav-button.shg-sld-left,
#s-5d9b5e45-cbdd-40df-949d-bb6df70b4db1 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-9281355c-4f7f-4ac4-8616-388696be84de {
  margin-left: 39%;
margin-right: 39%;
text-align: center;
}







  img.s-9281355c-4f7f-4ac4-8616-388696be84de.shogun-image {
    
    
  }


.s-9281355c-4f7f-4ac4-8616-388696be84de .shogun-image-content {
  
    align-items: center;
  
}

.s-9281355c-4f7f-4ac4-8616-388696be84de.shg-align-container {
  text-align: center
}

.s-9281355c-4f7f-4ac4-8616-388696be84de.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9281355c-4f7f-4ac4-8616-388696be84de.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-9281355c-4f7f-4ac4-8616-388696be84de.shogun-image {
    
    
  }


.s-9281355c-4f7f-4ac4-8616-388696be84de .shogun-image-content {
  
    align-items: center;
  
}

.s-9281355c-4f7f-4ac4-8616-388696be84de.shg-align-container {
  text-align: center
}

.s-9281355c-4f7f-4ac4-8616-388696be84de.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9281355c-4f7f-4ac4-8616-388696be84de.shogun-image {
  box-sizing: border-box;
}


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





  img.s-9281355c-4f7f-4ac4-8616-388696be84de.shogun-image {
    
    
  }


.s-9281355c-4f7f-4ac4-8616-388696be84de .shogun-image-content {
  
    align-items: center;
  
}

.s-9281355c-4f7f-4ac4-8616-388696be84de.shg-align-container {
  text-align: center
}

.s-9281355c-4f7f-4ac4-8616-388696be84de.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9281355c-4f7f-4ac4-8616-388696be84de.shogun-image {
  box-sizing: border-box;
}


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





  img.s-9281355c-4f7f-4ac4-8616-388696be84de.shogun-image {
    
    
  }


.s-9281355c-4f7f-4ac4-8616-388696be84de .shogun-image-content {
  
    align-items: center;
  
}

.s-9281355c-4f7f-4ac4-8616-388696be84de.shg-align-container {
  text-align: center
}

.s-9281355c-4f7f-4ac4-8616-388696be84de.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9281355c-4f7f-4ac4-8616-388696be84de.shogun-image {
  box-sizing: border-box;
}


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





  img.s-9281355c-4f7f-4ac4-8616-388696be84de.shogun-image {
    
    
  }


.s-9281355c-4f7f-4ac4-8616-388696be84de .shogun-image-content {
  
    align-items: center;
  
}

.s-9281355c-4f7f-4ac4-8616-388696be84de.shg-align-container {
  text-align: center
}

.s-9281355c-4f7f-4ac4-8616-388696be84de.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9281355c-4f7f-4ac4-8616-388696be84de.shogun-image {
  box-sizing: border-box;
}


}
#s-a9e84972-aa1e-44a4-9a19-3c05aedde61f {
  margin-left: 39%;
margin-right: 39%;
text-align: center;
}







  img.s-a9e84972-aa1e-44a4-9a19-3c05aedde61f.shogun-image {
    
    
  }


.s-a9e84972-aa1e-44a4-9a19-3c05aedde61f .shogun-image-content {
  
    align-items: center;
  
}

.s-a9e84972-aa1e-44a4-9a19-3c05aedde61f.shg-align-container {
  text-align: center
}

.s-a9e84972-aa1e-44a4-9a19-3c05aedde61f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a9e84972-aa1e-44a4-9a19-3c05aedde61f.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-a9e84972-aa1e-44a4-9a19-3c05aedde61f.shogun-image {
    
    
  }


.s-a9e84972-aa1e-44a4-9a19-3c05aedde61f .shogun-image-content {
  
    align-items: center;
  
}

.s-a9e84972-aa1e-44a4-9a19-3c05aedde61f.shg-align-container {
  text-align: center
}

.s-a9e84972-aa1e-44a4-9a19-3c05aedde61f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a9e84972-aa1e-44a4-9a19-3c05aedde61f.shogun-image {
  box-sizing: border-box;
}


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





  img.s-a9e84972-aa1e-44a4-9a19-3c05aedde61f.shogun-image {
    
    
  }


.s-a9e84972-aa1e-44a4-9a19-3c05aedde61f .shogun-image-content {
  
    align-items: center;
  
}

.s-a9e84972-aa1e-44a4-9a19-3c05aedde61f.shg-align-container {
  text-align: center
}

.s-a9e84972-aa1e-44a4-9a19-3c05aedde61f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a9e84972-aa1e-44a4-9a19-3c05aedde61f.shogun-image {
  box-sizing: border-box;
}


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





  img.s-a9e84972-aa1e-44a4-9a19-3c05aedde61f.shogun-image {
    
    
  }


.s-a9e84972-aa1e-44a4-9a19-3c05aedde61f .shogun-image-content {
  
    align-items: center;
  
}

.s-a9e84972-aa1e-44a4-9a19-3c05aedde61f.shg-align-container {
  text-align: center
}

.s-a9e84972-aa1e-44a4-9a19-3c05aedde61f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a9e84972-aa1e-44a4-9a19-3c05aedde61f.shogun-image {
  box-sizing: border-box;
}


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





  img.s-a9e84972-aa1e-44a4-9a19-3c05aedde61f.shogun-image {
    
    
  }


.s-a9e84972-aa1e-44a4-9a19-3c05aedde61f .shogun-image-content {
  
    align-items: center;
  
}

.s-a9e84972-aa1e-44a4-9a19-3c05aedde61f.shg-align-container {
  text-align: center
}

.s-a9e84972-aa1e-44a4-9a19-3c05aedde61f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a9e84972-aa1e-44a4-9a19-3c05aedde61f.shogun-image {
  box-sizing: border-box;
}


}
#s-172a09af-b742-47c2-8bb4-6e8c4efa846b {
  margin-left: 39%;
margin-right: 39%;
text-align: center;
}







  img.s-172a09af-b742-47c2-8bb4-6e8c4efa846b.shogun-image {
    
    
  }


.s-172a09af-b742-47c2-8bb4-6e8c4efa846b .shogun-image-content {
  
    align-items: center;
  
}

.s-172a09af-b742-47c2-8bb4-6e8c4efa846b.shg-align-container {
  text-align: center
}

.s-172a09af-b742-47c2-8bb4-6e8c4efa846b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-172a09af-b742-47c2-8bb4-6e8c4efa846b.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-172a09af-b742-47c2-8bb4-6e8c4efa846b.shogun-image {
    
    
  }


.s-172a09af-b742-47c2-8bb4-6e8c4efa846b .shogun-image-content {
  
    align-items: center;
  
}

.s-172a09af-b742-47c2-8bb4-6e8c4efa846b.shg-align-container {
  text-align: center
}

.s-172a09af-b742-47c2-8bb4-6e8c4efa846b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-172a09af-b742-47c2-8bb4-6e8c4efa846b.shogun-image {
  box-sizing: border-box;
}


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





  img.s-172a09af-b742-47c2-8bb4-6e8c4efa846b.shogun-image {
    
    
  }


.s-172a09af-b742-47c2-8bb4-6e8c4efa846b .shogun-image-content {
  
    align-items: center;
  
}

.s-172a09af-b742-47c2-8bb4-6e8c4efa846b.shg-align-container {
  text-align: center
}

.s-172a09af-b742-47c2-8bb4-6e8c4efa846b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-172a09af-b742-47c2-8bb4-6e8c4efa846b.shogun-image {
  box-sizing: border-box;
}


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





  img.s-172a09af-b742-47c2-8bb4-6e8c4efa846b.shogun-image {
    
    
  }


.s-172a09af-b742-47c2-8bb4-6e8c4efa846b .shogun-image-content {
  
    align-items: center;
  
}

.s-172a09af-b742-47c2-8bb4-6e8c4efa846b.shg-align-container {
  text-align: center
}

.s-172a09af-b742-47c2-8bb4-6e8c4efa846b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-172a09af-b742-47c2-8bb4-6e8c4efa846b.shogun-image {
  box-sizing: border-box;
}


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





  img.s-172a09af-b742-47c2-8bb4-6e8c4efa846b.shogun-image {
    
    
  }


.s-172a09af-b742-47c2-8bb4-6e8c4efa846b .shogun-image-content {
  
    align-items: center;
  
}

.s-172a09af-b742-47c2-8bb4-6e8c4efa846b.shg-align-container {
  text-align: center
}

.s-172a09af-b742-47c2-8bb4-6e8c4efa846b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-172a09af-b742-47c2-8bb4-6e8c4efa846b.shogun-image {
  box-sizing: border-box;
}


}
#s-4f6cf541-537a-4590-96ce-ccd08e179ede {
  margin-left: 39%;
margin-right: 39%;
text-align: center;
}







  img.s-4f6cf541-537a-4590-96ce-ccd08e179ede.shogun-image {
    
    
  }


.s-4f6cf541-537a-4590-96ce-ccd08e179ede .shogun-image-content {
  
    align-items: center;
  
}

.s-4f6cf541-537a-4590-96ce-ccd08e179ede.shg-align-container {
  text-align: center
}

.s-4f6cf541-537a-4590-96ce-ccd08e179ede.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4f6cf541-537a-4590-96ce-ccd08e179ede.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-4f6cf541-537a-4590-96ce-ccd08e179ede.shogun-image {
    
    
  }


.s-4f6cf541-537a-4590-96ce-ccd08e179ede .shogun-image-content {
  
    align-items: center;
  
}

.s-4f6cf541-537a-4590-96ce-ccd08e179ede.shg-align-container {
  text-align: center
}

.s-4f6cf541-537a-4590-96ce-ccd08e179ede.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4f6cf541-537a-4590-96ce-ccd08e179ede.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4f6cf541-537a-4590-96ce-ccd08e179ede.shogun-image {
    
    
  }


.s-4f6cf541-537a-4590-96ce-ccd08e179ede .shogun-image-content {
  
    align-items: center;
  
}

.s-4f6cf541-537a-4590-96ce-ccd08e179ede.shg-align-container {
  text-align: center
}

.s-4f6cf541-537a-4590-96ce-ccd08e179ede.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4f6cf541-537a-4590-96ce-ccd08e179ede.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4f6cf541-537a-4590-96ce-ccd08e179ede.shogun-image {
    
    
  }


.s-4f6cf541-537a-4590-96ce-ccd08e179ede .shogun-image-content {
  
    align-items: center;
  
}

.s-4f6cf541-537a-4590-96ce-ccd08e179ede.shg-align-container {
  text-align: center
}

.s-4f6cf541-537a-4590-96ce-ccd08e179ede.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4f6cf541-537a-4590-96ce-ccd08e179ede.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4f6cf541-537a-4590-96ce-ccd08e179ede.shogun-image {
    
    
  }


.s-4f6cf541-537a-4590-96ce-ccd08e179ede .shogun-image-content {
  
    align-items: center;
  
}

.s-4f6cf541-537a-4590-96ce-ccd08e179ede.shg-align-container {
  text-align: center
}

.s-4f6cf541-537a-4590-96ce-ccd08e179ede.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4f6cf541-537a-4590-96ce-ccd08e179ede.shogun-image {
  box-sizing: border-box;
}


}
#s-3030d093-daaf-4db4-becd-a9cfc1cf6284 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: -3%;
margin-right: 0%;
}

#s-cf1aa5da-4355-43f1-bba1-b34ca75c1faa {
  margin-left: 15%;
margin-right: 15%;
}

#s-74cddd1e-e660-42fe-b8cc-d4dc9d4ba786 {
  margin-left: 42%;
margin-right: 37%;
text-align: center;
}







  img.s-74cddd1e-e660-42fe-b8cc-d4dc9d4ba786.shogun-image {
    
    
  }


.s-74cddd1e-e660-42fe-b8cc-d4dc9d4ba786 .shogun-image-content {
  
    align-items: center;
  
}

.s-74cddd1e-e660-42fe-b8cc-d4dc9d4ba786.shg-align-container {
  text-align: center
}

.s-74cddd1e-e660-42fe-b8cc-d4dc9d4ba786.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-74cddd1e-e660-42fe-b8cc-d4dc9d4ba786.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-74cddd1e-e660-42fe-b8cc-d4dc9d4ba786.shogun-image {
    
    
  }


.s-74cddd1e-e660-42fe-b8cc-d4dc9d4ba786 .shogun-image-content {
  
    align-items: center;
  
}

.s-74cddd1e-e660-42fe-b8cc-d4dc9d4ba786.shg-align-container {
  text-align: center
}

.s-74cddd1e-e660-42fe-b8cc-d4dc9d4ba786.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-74cddd1e-e660-42fe-b8cc-d4dc9d4ba786.shogun-image {
  box-sizing: border-box;
}


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





  img.s-74cddd1e-e660-42fe-b8cc-d4dc9d4ba786.shogun-image {
    
    
  }


.s-74cddd1e-e660-42fe-b8cc-d4dc9d4ba786 .shogun-image-content {
  
    align-items: center;
  
}

.s-74cddd1e-e660-42fe-b8cc-d4dc9d4ba786.shg-align-container {
  text-align: center
}

.s-74cddd1e-e660-42fe-b8cc-d4dc9d4ba786.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-74cddd1e-e660-42fe-b8cc-d4dc9d4ba786.shogun-image {
  box-sizing: border-box;
}


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





  img.s-74cddd1e-e660-42fe-b8cc-d4dc9d4ba786.shogun-image {
    
    
  }


.s-74cddd1e-e660-42fe-b8cc-d4dc9d4ba786 .shogun-image-content {
  
    align-items: center;
  
}

.s-74cddd1e-e660-42fe-b8cc-d4dc9d4ba786.shg-align-container {
  text-align: center
}

.s-74cddd1e-e660-42fe-b8cc-d4dc9d4ba786.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-74cddd1e-e660-42fe-b8cc-d4dc9d4ba786.shogun-image {
  box-sizing: border-box;
}


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





  img.s-74cddd1e-e660-42fe-b8cc-d4dc9d4ba786.shogun-image {
    
    
  }


.s-74cddd1e-e660-42fe-b8cc-d4dc9d4ba786 .shogun-image-content {
  
    align-items: center;
  
}

.s-74cddd1e-e660-42fe-b8cc-d4dc9d4ba786.shg-align-container {
  text-align: center
}

.s-74cddd1e-e660-42fe-b8cc-d4dc9d4ba786.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-74cddd1e-e660-42fe-b8cc-d4dc9d4ba786.shogun-image {
  box-sizing: border-box;
}


}
#s-a8cccc7c-7070-4ef2-85d6-c937bc5f4318 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: -3%;
margin-right: 0%;
}

#s-4df25bbe-998c-46d8-9398-b715b2d2063a {
  margin-left: 15%;
margin-right: 15%;
}

#s-d7f147fd-5978-41d2-8452-0cb76ec1a4e2 {
  border-style: solid;
margin-top: 5%;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-d7f147fd-5978-41d2-8452-0cb76ec1a4e2:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-d7f147fd-5978-41d2-8452-0cb76ec1a4e2:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-d7f147fd-5978-41d2-8452-0cb76ec1a4e2-root {
    text-align: center;
  }


#s-d7f147fd-5978-41d2-8452-0cb76ec1a4e2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-d7f147fd-5978-41d2-8452-0cb76ec1a4e2-root {
    text-align: center;
  }


#s-d7f147fd-5978-41d2-8452-0cb76ec1a4e2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d7f147fd-5978-41d2-8452-0cb76ec1a4e2-root {
    text-align: center;
  }


#s-d7f147fd-5978-41d2-8452-0cb76ec1a4e2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d7f147fd-5978-41d2-8452-0cb76ec1a4e2-root {
    text-align: center;
  }


#s-d7f147fd-5978-41d2-8452-0cb76ec1a4e2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-d7f147fd-5978-41d2-8452-0cb76ec1a4e2-root {
    text-align: center;
  }


#s-d7f147fd-5978-41d2-8452-0cb76ec1a4e2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-d7f147fd-5978-41d2-8452-0cb76ec1a4e2-root {
    text-align: center;
  }


#s-d7f147fd-5978-41d2-8452-0cb76ec1a4e2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-a8a73a73-7507-4993-8f55-653df9524f67 {
  margin-left: 0%;
margin-right: 0%;
min-height: 50px;
}
@media (min-width: 1200px){#s-a8a73a73-7507-4993-8f55-653df9524f67 {
  display: none;
}
#s-a8a73a73-7507-4993-8f55-653df9524f67, #wrap-s-a8a73a73-7507-4993-8f55-653df9524f67 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a8a73a73-7507-4993-8f55-653df9524f67 {
  display: none;
}
#s-a8a73a73-7507-4993-8f55-653df9524f67, #wrap-s-a8a73a73-7507-4993-8f55-653df9524f67 { display:none !important; }}







#s-a8a73a73-7507-4993-8f55-653df9524f67 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a8a73a73-7507-4993-8f55-653df9524f67.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b158a710-9d6b-48ad-978d-087aea52450b {
  margin-left: 1%;
margin-right: 1%;
min-height: 50px;
background-color: rgba(29, 29, 29, 1);
}








#s-b158a710-9d6b-48ad-978d-087aea52450b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b158a710-9d6b-48ad-978d-087aea52450b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fd6e5bc5-2e67-49e9-acc7-2a3d1e1ddc48 {
  margin-top: 1px;
margin-left: 1px;
margin-bottom: 1px;
margin-right: 1px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-fd6e5bc5-2e67-49e9-acc7-2a3d1e1ddc48 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fd6e5bc5-2e67-49e9-acc7-2a3d1e1ddc48.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0fc7f39a-f77b-4e35-ac64-7014b7837cf0 {
  margin-top: 2%;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-0fc7f39a-f77b-4e35-ac64-7014b7837cf0 .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  letter-spacing: 5px;
  
}



#s-34cb88a1-1073-4dc9-9c0a-a90e6a852efe {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-34cb88a1-1073-4dc9-9c0a-a90e6a852efe .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 23px;
  line-height: 1.5em;
  letter-spacing: 3px;
  
}



#s-bf59dae5-e231-4990-8803-fbe1f536e010 {
  text-align: center;
}







  img.s-bf59dae5-e231-4990-8803-fbe1f536e010.shogun-image {
    
    
  }


.s-bf59dae5-e231-4990-8803-fbe1f536e010 .shogun-image-content {
  
    align-items: center;
  
}

.s-bf59dae5-e231-4990-8803-fbe1f536e010.shg-align-container {
  text-align: center
}

.s-bf59dae5-e231-4990-8803-fbe1f536e010.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf59dae5-e231-4990-8803-fbe1f536e010.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-bf59dae5-e231-4990-8803-fbe1f536e010.shogun-image {
    
    
  }


.s-bf59dae5-e231-4990-8803-fbe1f536e010 .shogun-image-content {
  
    align-items: center;
  
}

.s-bf59dae5-e231-4990-8803-fbe1f536e010.shg-align-container {
  text-align: center
}

.s-bf59dae5-e231-4990-8803-fbe1f536e010.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf59dae5-e231-4990-8803-fbe1f536e010.shogun-image {
  box-sizing: border-box;
}


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





  img.s-bf59dae5-e231-4990-8803-fbe1f536e010.shogun-image {
    
    
  }


.s-bf59dae5-e231-4990-8803-fbe1f536e010 .shogun-image-content {
  
    align-items: center;
  
}

.s-bf59dae5-e231-4990-8803-fbe1f536e010.shg-align-container {
  text-align: center
}

.s-bf59dae5-e231-4990-8803-fbe1f536e010.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf59dae5-e231-4990-8803-fbe1f536e010.shogun-image {
  box-sizing: border-box;
}


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





  img.s-bf59dae5-e231-4990-8803-fbe1f536e010.shogun-image {
    
    
  }


.s-bf59dae5-e231-4990-8803-fbe1f536e010 .shogun-image-content {
  
    align-items: center;
  
}

.s-bf59dae5-e231-4990-8803-fbe1f536e010.shg-align-container {
  text-align: center
}

.s-bf59dae5-e231-4990-8803-fbe1f536e010.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf59dae5-e231-4990-8803-fbe1f536e010.shogun-image {
  box-sizing: border-box;
}


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





  img.s-bf59dae5-e231-4990-8803-fbe1f536e010.shogun-image {
    
    
  }


.s-bf59dae5-e231-4990-8803-fbe1f536e010 .shogun-image-content {
  
    align-items: center;
  
}

.s-bf59dae5-e231-4990-8803-fbe1f536e010.shg-align-container {
  text-align: center
}

.s-bf59dae5-e231-4990-8803-fbe1f536e010.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf59dae5-e231-4990-8803-fbe1f536e010.shogun-image {
  box-sizing: border-box;
}


}
#s-78da8817-996b-4922-912d-c84e4cf52323 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-78da8817-996b-4922-912d-c84e4cf52323 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-78da8817-996b-4922-912d-c84e4cf52323 .shg-sld-nav-button.shg-sld-left,
#s-78da8817-996b-4922-912d-c84e4cf52323 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-baa8f675-4781-442d-b7b3-f257f7c4527e {
  margin-left: 41.5%;
margin-bottom: -4px;
margin-right: 41.5%;
text-align: center;
}







  img.s-baa8f675-4781-442d-b7b3-f257f7c4527e.shogun-image {
    
    
  }


.s-baa8f675-4781-442d-b7b3-f257f7c4527e .shogun-image-content {
  
    align-items: center;
  
}

.s-baa8f675-4781-442d-b7b3-f257f7c4527e.shg-align-container {
  text-align: center
}

.s-baa8f675-4781-442d-b7b3-f257f7c4527e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-baa8f675-4781-442d-b7b3-f257f7c4527e.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-baa8f675-4781-442d-b7b3-f257f7c4527e.shogun-image {
    
    
  }


.s-baa8f675-4781-442d-b7b3-f257f7c4527e .shogun-image-content {
  
    align-items: center;
  
}

.s-baa8f675-4781-442d-b7b3-f257f7c4527e.shg-align-container {
  text-align: center
}

.s-baa8f675-4781-442d-b7b3-f257f7c4527e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-baa8f675-4781-442d-b7b3-f257f7c4527e.shogun-image {
  box-sizing: border-box;
}


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





  img.s-baa8f675-4781-442d-b7b3-f257f7c4527e.shogun-image {
    
    
  }


.s-baa8f675-4781-442d-b7b3-f257f7c4527e .shogun-image-content {
  
    align-items: center;
  
}

.s-baa8f675-4781-442d-b7b3-f257f7c4527e.shg-align-container {
  text-align: center
}

.s-baa8f675-4781-442d-b7b3-f257f7c4527e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-baa8f675-4781-442d-b7b3-f257f7c4527e.shogun-image {
  box-sizing: border-box;
}


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





  img.s-baa8f675-4781-442d-b7b3-f257f7c4527e.shogun-image {
    
    
  }


.s-baa8f675-4781-442d-b7b3-f257f7c4527e .shogun-image-content {
  
    align-items: center;
  
}

.s-baa8f675-4781-442d-b7b3-f257f7c4527e.shg-align-container {
  text-align: center
}

.s-baa8f675-4781-442d-b7b3-f257f7c4527e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-baa8f675-4781-442d-b7b3-f257f7c4527e.shogun-image {
  box-sizing: border-box;
}


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





  img.s-baa8f675-4781-442d-b7b3-f257f7c4527e.shogun-image {
    
    
  }


.s-baa8f675-4781-442d-b7b3-f257f7c4527e .shogun-image-content {
  
    align-items: center;
  
}

.s-baa8f675-4781-442d-b7b3-f257f7c4527e.shg-align-container {
  text-align: center
}

.s-baa8f675-4781-442d-b7b3-f257f7c4527e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-baa8f675-4781-442d-b7b3-f257f7c4527e.shogun-image {
  box-sizing: border-box;
}


}
#s-333e8539-c28d-456d-9fa1-55345f9d5823 {
  margin-left: 41%;
margin-right: 41%;
text-align: center;
}







  img.s-333e8539-c28d-456d-9fa1-55345f9d5823.shogun-image {
    
    
  }


.s-333e8539-c28d-456d-9fa1-55345f9d5823 .shogun-image-content {
  
    align-items: center;
  
}

.s-333e8539-c28d-456d-9fa1-55345f9d5823.shg-align-container {
  text-align: center
}

.s-333e8539-c28d-456d-9fa1-55345f9d5823.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-333e8539-c28d-456d-9fa1-55345f9d5823.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-333e8539-c28d-456d-9fa1-55345f9d5823.shogun-image {
    
    
  }


.s-333e8539-c28d-456d-9fa1-55345f9d5823 .shogun-image-content {
  
    align-items: center;
  
}

.s-333e8539-c28d-456d-9fa1-55345f9d5823.shg-align-container {
  text-align: center
}

.s-333e8539-c28d-456d-9fa1-55345f9d5823.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-333e8539-c28d-456d-9fa1-55345f9d5823.shogun-image {
  box-sizing: border-box;
}


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





  img.s-333e8539-c28d-456d-9fa1-55345f9d5823.shogun-image {
    
    
  }


.s-333e8539-c28d-456d-9fa1-55345f9d5823 .shogun-image-content {
  
    align-items: center;
  
}

.s-333e8539-c28d-456d-9fa1-55345f9d5823.shg-align-container {
  text-align: center
}

.s-333e8539-c28d-456d-9fa1-55345f9d5823.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-333e8539-c28d-456d-9fa1-55345f9d5823.shogun-image {
  box-sizing: border-box;
}


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





  img.s-333e8539-c28d-456d-9fa1-55345f9d5823.shogun-image {
    
    
  }


.s-333e8539-c28d-456d-9fa1-55345f9d5823 .shogun-image-content {
  
    align-items: center;
  
}

.s-333e8539-c28d-456d-9fa1-55345f9d5823.shg-align-container {
  text-align: center
}

.s-333e8539-c28d-456d-9fa1-55345f9d5823.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-333e8539-c28d-456d-9fa1-55345f9d5823.shogun-image {
  box-sizing: border-box;
}


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





  img.s-333e8539-c28d-456d-9fa1-55345f9d5823.shogun-image {
    
    
  }


.s-333e8539-c28d-456d-9fa1-55345f9d5823 .shogun-image-content {
  
    align-items: center;
  
}

.s-333e8539-c28d-456d-9fa1-55345f9d5823.shg-align-container {
  text-align: center
}

.s-333e8539-c28d-456d-9fa1-55345f9d5823.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-333e8539-c28d-456d-9fa1-55345f9d5823.shogun-image {
  box-sizing: border-box;
}


}
#s-ee071f7e-207e-49ed-a131-d03a153edbd6 {
  margin-left: 43%;
margin-right: 43%;
text-align: center;
}







  img.s-ee071f7e-207e-49ed-a131-d03a153edbd6.shogun-image {
    
    
  }


.s-ee071f7e-207e-49ed-a131-d03a153edbd6 .shogun-image-content {
  
    align-items: center;
  
}

.s-ee071f7e-207e-49ed-a131-d03a153edbd6.shg-align-container {
  text-align: center
}

.s-ee071f7e-207e-49ed-a131-d03a153edbd6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ee071f7e-207e-49ed-a131-d03a153edbd6.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-ee071f7e-207e-49ed-a131-d03a153edbd6.shogun-image {
    
    
  }


.s-ee071f7e-207e-49ed-a131-d03a153edbd6 .shogun-image-content {
  
    align-items: center;
  
}

.s-ee071f7e-207e-49ed-a131-d03a153edbd6.shg-align-container {
  text-align: center
}

.s-ee071f7e-207e-49ed-a131-d03a153edbd6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ee071f7e-207e-49ed-a131-d03a153edbd6.shogun-image {
  box-sizing: border-box;
}


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





  img.s-ee071f7e-207e-49ed-a131-d03a153edbd6.shogun-image {
    
    
  }


.s-ee071f7e-207e-49ed-a131-d03a153edbd6 .shogun-image-content {
  
    align-items: center;
  
}

.s-ee071f7e-207e-49ed-a131-d03a153edbd6.shg-align-container {
  text-align: center
}

.s-ee071f7e-207e-49ed-a131-d03a153edbd6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ee071f7e-207e-49ed-a131-d03a153edbd6.shogun-image {
  box-sizing: border-box;
}


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





  img.s-ee071f7e-207e-49ed-a131-d03a153edbd6.shogun-image {
    
    
  }


.s-ee071f7e-207e-49ed-a131-d03a153edbd6 .shogun-image-content {
  
    align-items: center;
  
}

.s-ee071f7e-207e-49ed-a131-d03a153edbd6.shg-align-container {
  text-align: center
}

.s-ee071f7e-207e-49ed-a131-d03a153edbd6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ee071f7e-207e-49ed-a131-d03a153edbd6.shogun-image {
  box-sizing: border-box;
}


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





  img.s-ee071f7e-207e-49ed-a131-d03a153edbd6.shogun-image {
    
    
  }


.s-ee071f7e-207e-49ed-a131-d03a153edbd6 .shogun-image-content {
  
    align-items: center;
  
}

.s-ee071f7e-207e-49ed-a131-d03a153edbd6.shg-align-container {
  text-align: center
}

.s-ee071f7e-207e-49ed-a131-d03a153edbd6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ee071f7e-207e-49ed-a131-d03a153edbd6.shogun-image {
  box-sizing: border-box;
}


}
#s-f7d0f871-b9c1-4e4a-95e6-19f401452127 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: -3%;
margin-right: 0%;
}

#s-d529c18f-265a-42f9-b2ee-6d7cfeee3cc6 {
  margin-left: 18%;
margin-right: 18%;
}

#s-d3fba580-80d7-41f6-9f41-a9e307940990 {
  border-style: solid;
margin-top: 5%;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-d3fba580-80d7-41f6-9f41-a9e307940990:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-d3fba580-80d7-41f6-9f41-a9e307940990:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-d3fba580-80d7-41f6-9f41-a9e307940990-root {
    text-align: center;
  }


#s-d3fba580-80d7-41f6-9f41-a9e307940990.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-d3fba580-80d7-41f6-9f41-a9e307940990-root {
    text-align: center;
  }


#s-d3fba580-80d7-41f6-9f41-a9e307940990.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d3fba580-80d7-41f6-9f41-a9e307940990-root {
    text-align: center;
  }


#s-d3fba580-80d7-41f6-9f41-a9e307940990.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d3fba580-80d7-41f6-9f41-a9e307940990-root {
    text-align: center;
  }


#s-d3fba580-80d7-41f6-9f41-a9e307940990.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-d3fba580-80d7-41f6-9f41-a9e307940990-root {
    text-align: center;
  }


#s-d3fba580-80d7-41f6-9f41-a9e307940990.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-d3fba580-80d7-41f6-9f41-a9e307940990-root {
    text-align: center;
  }


#s-d3fba580-80d7-41f6-9f41-a9e307940990.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-769e3ab5-a790-454d-a1b0-18754450a455 {
  margin-top: 10%;
margin-left: 0%;
margin-bottom: 15%;
margin-right: 0%;
min-height: 50px;
}
@media (min-width: 1200px){#s-769e3ab5-a790-454d-a1b0-18754450a455 {
  display: none;
}
#s-769e3ab5-a790-454d-a1b0-18754450a455, #wrap-s-769e3ab5-a790-454d-a1b0-18754450a455 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-769e3ab5-a790-454d-a1b0-18754450a455 {
  display: none;
}
#s-769e3ab5-a790-454d-a1b0-18754450a455, #wrap-s-769e3ab5-a790-454d-a1b0-18754450a455 { display:none !important; }}







#s-769e3ab5-a790-454d-a1b0-18754450a455 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-769e3ab5-a790-454d-a1b0-18754450a455.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-22e88a56-f32a-4a62-99f8-14d9dac9a865 {
  margin-left: 1%;
margin-right: 1%;
min-height: 50px;
background-color: rgba(29, 29, 29, 1);
}








#s-22e88a56-f32a-4a62-99f8-14d9dac9a865 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-22e88a56-f32a-4a62-99f8-14d9dac9a865.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ee0d1cce-3b2f-42f2-85ca-b6069a228fa7 {
  margin-top: 1px;
margin-left: 1px;
margin-bottom: 1px;
margin-right: 1px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-ee0d1cce-3b2f-42f2-85ca-b6069a228fa7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ee0d1cce-3b2f-42f2-85ca-b6069a228fa7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fc9a0b80-19d9-4ffd-8bc3-bf31f47f1ad6 {
  margin-top: 2%;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-fc9a0b80-19d9-4ffd-8bc3-bf31f47f1ad6 .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  letter-spacing: 5px;
  
}



#s-5e873fcb-b798-436a-9dd6-d6aab637e1eb {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5e873fcb-b798-436a-9dd6-d6aab637e1eb .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 23px;
  line-height: 1.5em;
  letter-spacing: 3px;
  
}



#s-dc818c2d-fe13-4023-8fac-c7919b8e2383 {
  text-align: center;
}







  img.s-dc818c2d-fe13-4023-8fac-c7919b8e2383.shogun-image {
    
    
  }


.s-dc818c2d-fe13-4023-8fac-c7919b8e2383 .shogun-image-content {
  
    align-items: center;
  
}

.s-dc818c2d-fe13-4023-8fac-c7919b8e2383.shg-align-container {
  text-align: center
}

.s-dc818c2d-fe13-4023-8fac-c7919b8e2383.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dc818c2d-fe13-4023-8fac-c7919b8e2383.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-dc818c2d-fe13-4023-8fac-c7919b8e2383.shogun-image {
    
    
  }


.s-dc818c2d-fe13-4023-8fac-c7919b8e2383 .shogun-image-content {
  
    align-items: center;
  
}

.s-dc818c2d-fe13-4023-8fac-c7919b8e2383.shg-align-container {
  text-align: center
}

.s-dc818c2d-fe13-4023-8fac-c7919b8e2383.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dc818c2d-fe13-4023-8fac-c7919b8e2383.shogun-image {
  box-sizing: border-box;
}


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





  img.s-dc818c2d-fe13-4023-8fac-c7919b8e2383.shogun-image {
    
    
  }


.s-dc818c2d-fe13-4023-8fac-c7919b8e2383 .shogun-image-content {
  
    align-items: center;
  
}

.s-dc818c2d-fe13-4023-8fac-c7919b8e2383.shg-align-container {
  text-align: center
}

.s-dc818c2d-fe13-4023-8fac-c7919b8e2383.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dc818c2d-fe13-4023-8fac-c7919b8e2383.shogun-image {
  box-sizing: border-box;
}


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





  img.s-dc818c2d-fe13-4023-8fac-c7919b8e2383.shogun-image {
    
    
  }


.s-dc818c2d-fe13-4023-8fac-c7919b8e2383 .shogun-image-content {
  
    align-items: center;
  
}

.s-dc818c2d-fe13-4023-8fac-c7919b8e2383.shg-align-container {
  text-align: center
}

.s-dc818c2d-fe13-4023-8fac-c7919b8e2383.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dc818c2d-fe13-4023-8fac-c7919b8e2383.shogun-image {
  box-sizing: border-box;
}


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





  img.s-dc818c2d-fe13-4023-8fac-c7919b8e2383.shogun-image {
    
    
  }


.s-dc818c2d-fe13-4023-8fac-c7919b8e2383 .shogun-image-content {
  
    align-items: center;
  
}

.s-dc818c2d-fe13-4023-8fac-c7919b8e2383.shg-align-container {
  text-align: center
}

.s-dc818c2d-fe13-4023-8fac-c7919b8e2383.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dc818c2d-fe13-4023-8fac-c7919b8e2383.shogun-image {
  box-sizing: border-box;
}


}
#s-e2f46a22-d4f7-47bd-aa19-0e02ce1f4be8 {
  margin-top: 15%;
margin-left: 1%;
margin-right: 1%;
padding-top: 0px;
padding-bottom: 0px;
}

#s-e2f46a22-d4f7-47bd-aa19-0e02ce1f4be8 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-e2f46a22-d4f7-47bd-aa19-0e02ce1f4be8 .shg-sld-nav-button.shg-sld-left,
#s-e2f46a22-d4f7-47bd-aa19-0e02ce1f4be8 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-719ffe4f-db92-428c-b752-619250d8ed7e {
  margin-left: 40%;
margin-right: 40%;
text-align: center;
}







  img.s-719ffe4f-db92-428c-b752-619250d8ed7e.shogun-image {
    
    
  }


.s-719ffe4f-db92-428c-b752-619250d8ed7e .shogun-image-content {
  
    align-items: center;
  
}

.s-719ffe4f-db92-428c-b752-619250d8ed7e.shg-align-container {
  text-align: center
}

.s-719ffe4f-db92-428c-b752-619250d8ed7e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-719ffe4f-db92-428c-b752-619250d8ed7e.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-719ffe4f-db92-428c-b752-619250d8ed7e.shogun-image {
    
    
  }


.s-719ffe4f-db92-428c-b752-619250d8ed7e .shogun-image-content {
  
    align-items: center;
  
}

.s-719ffe4f-db92-428c-b752-619250d8ed7e.shg-align-container {
  text-align: center
}

.s-719ffe4f-db92-428c-b752-619250d8ed7e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-719ffe4f-db92-428c-b752-619250d8ed7e.shogun-image {
  box-sizing: border-box;
}


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





  img.s-719ffe4f-db92-428c-b752-619250d8ed7e.shogun-image {
    
    
  }


.s-719ffe4f-db92-428c-b752-619250d8ed7e .shogun-image-content {
  
    align-items: center;
  
}

.s-719ffe4f-db92-428c-b752-619250d8ed7e.shg-align-container {
  text-align: center
}

.s-719ffe4f-db92-428c-b752-619250d8ed7e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-719ffe4f-db92-428c-b752-619250d8ed7e.shogun-image {
  box-sizing: border-box;
}


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





  img.s-719ffe4f-db92-428c-b752-619250d8ed7e.shogun-image {
    
    
  }


.s-719ffe4f-db92-428c-b752-619250d8ed7e .shogun-image-content {
  
    align-items: center;
  
}

.s-719ffe4f-db92-428c-b752-619250d8ed7e.shg-align-container {
  text-align: center
}

.s-719ffe4f-db92-428c-b752-619250d8ed7e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-719ffe4f-db92-428c-b752-619250d8ed7e.shogun-image {
  box-sizing: border-box;
}


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





  img.s-719ffe4f-db92-428c-b752-619250d8ed7e.shogun-image {
    
    
  }


.s-719ffe4f-db92-428c-b752-619250d8ed7e .shogun-image-content {
  
    align-items: center;
  
}

.s-719ffe4f-db92-428c-b752-619250d8ed7e.shg-align-container {
  text-align: center
}

.s-719ffe4f-db92-428c-b752-619250d8ed7e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-719ffe4f-db92-428c-b752-619250d8ed7e.shogun-image {
  box-sizing: border-box;
}


}
#s-99431305-ccf6-4879-b5d6-63243866aece {
  margin-left: 39%;
margin-right: 39%;
text-align: center;
}







  img.s-99431305-ccf6-4879-b5d6-63243866aece.shogun-image {
    
    
  }


.s-99431305-ccf6-4879-b5d6-63243866aece .shogun-image-content {
  
    align-items: center;
  
}

.s-99431305-ccf6-4879-b5d6-63243866aece.shg-align-container {
  text-align: center
}

.s-99431305-ccf6-4879-b5d6-63243866aece.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99431305-ccf6-4879-b5d6-63243866aece.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-99431305-ccf6-4879-b5d6-63243866aece.shogun-image {
    
    
  }


.s-99431305-ccf6-4879-b5d6-63243866aece .shogun-image-content {
  
    align-items: center;
  
}

.s-99431305-ccf6-4879-b5d6-63243866aece.shg-align-container {
  text-align: center
}

.s-99431305-ccf6-4879-b5d6-63243866aece.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99431305-ccf6-4879-b5d6-63243866aece.shogun-image {
  box-sizing: border-box;
}


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





  img.s-99431305-ccf6-4879-b5d6-63243866aece.shogun-image {
    
    
  }


.s-99431305-ccf6-4879-b5d6-63243866aece .shogun-image-content {
  
    align-items: center;
  
}

.s-99431305-ccf6-4879-b5d6-63243866aece.shg-align-container {
  text-align: center
}

.s-99431305-ccf6-4879-b5d6-63243866aece.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99431305-ccf6-4879-b5d6-63243866aece.shogun-image {
  box-sizing: border-box;
}


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





  img.s-99431305-ccf6-4879-b5d6-63243866aece.shogun-image {
    
    
  }


.s-99431305-ccf6-4879-b5d6-63243866aece .shogun-image-content {
  
    align-items: center;
  
}

.s-99431305-ccf6-4879-b5d6-63243866aece.shg-align-container {
  text-align: center
}

.s-99431305-ccf6-4879-b5d6-63243866aece.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99431305-ccf6-4879-b5d6-63243866aece.shogun-image {
  box-sizing: border-box;
}


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





  img.s-99431305-ccf6-4879-b5d6-63243866aece.shogun-image {
    
    
  }


.s-99431305-ccf6-4879-b5d6-63243866aece .shogun-image-content {
  
    align-items: center;
  
}

.s-99431305-ccf6-4879-b5d6-63243866aece.shg-align-container {
  text-align: center
}

.s-99431305-ccf6-4879-b5d6-63243866aece.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99431305-ccf6-4879-b5d6-63243866aece.shogun-image {
  box-sizing: border-box;
}


}
#s-8f6bec00-8727-405f-8992-93e5d3ffb729 {
  margin-left: 39%;
margin-right: 39%;
text-align: center;
}







  img.s-8f6bec00-8727-405f-8992-93e5d3ffb729.shogun-image {
    
    
  }


.s-8f6bec00-8727-405f-8992-93e5d3ffb729 .shogun-image-content {
  
    align-items: center;
  
}

.s-8f6bec00-8727-405f-8992-93e5d3ffb729.shg-align-container {
  text-align: center
}

.s-8f6bec00-8727-405f-8992-93e5d3ffb729.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8f6bec00-8727-405f-8992-93e5d3ffb729.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-8f6bec00-8727-405f-8992-93e5d3ffb729.shogun-image {
    
    
  }


.s-8f6bec00-8727-405f-8992-93e5d3ffb729 .shogun-image-content {
  
    align-items: center;
  
}

.s-8f6bec00-8727-405f-8992-93e5d3ffb729.shg-align-container {
  text-align: center
}

.s-8f6bec00-8727-405f-8992-93e5d3ffb729.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8f6bec00-8727-405f-8992-93e5d3ffb729.shogun-image {
  box-sizing: border-box;
}


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





  img.s-8f6bec00-8727-405f-8992-93e5d3ffb729.shogun-image {
    
    
  }


.s-8f6bec00-8727-405f-8992-93e5d3ffb729 .shogun-image-content {
  
    align-items: center;
  
}

.s-8f6bec00-8727-405f-8992-93e5d3ffb729.shg-align-container {
  text-align: center
}

.s-8f6bec00-8727-405f-8992-93e5d3ffb729.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8f6bec00-8727-405f-8992-93e5d3ffb729.shogun-image {
  box-sizing: border-box;
}


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





  img.s-8f6bec00-8727-405f-8992-93e5d3ffb729.shogun-image {
    
    
  }


.s-8f6bec00-8727-405f-8992-93e5d3ffb729 .shogun-image-content {
  
    align-items: center;
  
}

.s-8f6bec00-8727-405f-8992-93e5d3ffb729.shg-align-container {
  text-align: center
}

.s-8f6bec00-8727-405f-8992-93e5d3ffb729.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8f6bec00-8727-405f-8992-93e5d3ffb729.shogun-image {
  box-sizing: border-box;
}


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





  img.s-8f6bec00-8727-405f-8992-93e5d3ffb729.shogun-image {
    
    
  }


.s-8f6bec00-8727-405f-8992-93e5d3ffb729 .shogun-image-content {
  
    align-items: center;
  
}

.s-8f6bec00-8727-405f-8992-93e5d3ffb729.shg-align-container {
  text-align: center
}

.s-8f6bec00-8727-405f-8992-93e5d3ffb729.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8f6bec00-8727-405f-8992-93e5d3ffb729.shogun-image {
  box-sizing: border-box;
}


}
#s-9b12202b-0ce2-4a0b-a3f3-bed4ca072390 {
  margin-left: 39%;
margin-right: 39%;
text-align: center;
}







  img.s-9b12202b-0ce2-4a0b-a3f3-bed4ca072390.shogun-image {
    
    
  }


.s-9b12202b-0ce2-4a0b-a3f3-bed4ca072390 .shogun-image-content {
  
    align-items: center;
  
}

.s-9b12202b-0ce2-4a0b-a3f3-bed4ca072390.shg-align-container {
  text-align: center
}

.s-9b12202b-0ce2-4a0b-a3f3-bed4ca072390.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b12202b-0ce2-4a0b-a3f3-bed4ca072390.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-9b12202b-0ce2-4a0b-a3f3-bed4ca072390.shogun-image {
    
    
  }


.s-9b12202b-0ce2-4a0b-a3f3-bed4ca072390 .shogun-image-content {
  
    align-items: center;
  
}

.s-9b12202b-0ce2-4a0b-a3f3-bed4ca072390.shg-align-container {
  text-align: center
}

.s-9b12202b-0ce2-4a0b-a3f3-bed4ca072390.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b12202b-0ce2-4a0b-a3f3-bed4ca072390.shogun-image {
  box-sizing: border-box;
}


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





  img.s-9b12202b-0ce2-4a0b-a3f3-bed4ca072390.shogun-image {
    
    
  }


.s-9b12202b-0ce2-4a0b-a3f3-bed4ca072390 .shogun-image-content {
  
    align-items: center;
  
}

.s-9b12202b-0ce2-4a0b-a3f3-bed4ca072390.shg-align-container {
  text-align: center
}

.s-9b12202b-0ce2-4a0b-a3f3-bed4ca072390.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b12202b-0ce2-4a0b-a3f3-bed4ca072390.shogun-image {
  box-sizing: border-box;
}


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





  img.s-9b12202b-0ce2-4a0b-a3f3-bed4ca072390.shogun-image {
    
    
  }


.s-9b12202b-0ce2-4a0b-a3f3-bed4ca072390 .shogun-image-content {
  
    align-items: center;
  
}

.s-9b12202b-0ce2-4a0b-a3f3-bed4ca072390.shg-align-container {
  text-align: center
}

.s-9b12202b-0ce2-4a0b-a3f3-bed4ca072390.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b12202b-0ce2-4a0b-a3f3-bed4ca072390.shogun-image {
  box-sizing: border-box;
}


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





  img.s-9b12202b-0ce2-4a0b-a3f3-bed4ca072390.shogun-image {
    
    
  }


.s-9b12202b-0ce2-4a0b-a3f3-bed4ca072390 .shogun-image-content {
  
    align-items: center;
  
}

.s-9b12202b-0ce2-4a0b-a3f3-bed4ca072390.shg-align-container {
  text-align: center
}

.s-9b12202b-0ce2-4a0b-a3f3-bed4ca072390.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b12202b-0ce2-4a0b-a3f3-bed4ca072390.shogun-image {
  box-sizing: border-box;
}


}
#s-8434e63f-426c-410b-b51b-42a0fb9fb884 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: -3%;
margin-right: 0%;
}

#s-2e805b7e-d474-4dde-88e6-9796c89d0dc5 {
  margin-left: 15%;
margin-right: 15%;
}

#s-72059da4-fc9e-40ac-aacc-5de55267468f {
  margin-top: 5%;
margin-left: 42%;
margin-right: 42%;
text-align: center;
}







  img.s-72059da4-fc9e-40ac-aacc-5de55267468f.shogun-image {
    
    
  }


.s-72059da4-fc9e-40ac-aacc-5de55267468f .shogun-image-content {
  
    align-items: center;
  
}

.s-72059da4-fc9e-40ac-aacc-5de55267468f.shg-align-container {
  text-align: center
}

.s-72059da4-fc9e-40ac-aacc-5de55267468f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-72059da4-fc9e-40ac-aacc-5de55267468f.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-72059da4-fc9e-40ac-aacc-5de55267468f.shogun-image {
    
    
  }


.s-72059da4-fc9e-40ac-aacc-5de55267468f .shogun-image-content {
  
    align-items: center;
  
}

.s-72059da4-fc9e-40ac-aacc-5de55267468f.shg-align-container {
  text-align: center
}

.s-72059da4-fc9e-40ac-aacc-5de55267468f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-72059da4-fc9e-40ac-aacc-5de55267468f.shogun-image {
  box-sizing: border-box;
}


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





  img.s-72059da4-fc9e-40ac-aacc-5de55267468f.shogun-image {
    
    
  }


.s-72059da4-fc9e-40ac-aacc-5de55267468f .shogun-image-content {
  
    align-items: center;
  
}

.s-72059da4-fc9e-40ac-aacc-5de55267468f.shg-align-container {
  text-align: center
}

.s-72059da4-fc9e-40ac-aacc-5de55267468f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-72059da4-fc9e-40ac-aacc-5de55267468f.shogun-image {
  box-sizing: border-box;
}


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





  img.s-72059da4-fc9e-40ac-aacc-5de55267468f.shogun-image {
    
    
  }


.s-72059da4-fc9e-40ac-aacc-5de55267468f .shogun-image-content {
  
    align-items: center;
  
}

.s-72059da4-fc9e-40ac-aacc-5de55267468f.shg-align-container {
  text-align: center
}

.s-72059da4-fc9e-40ac-aacc-5de55267468f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-72059da4-fc9e-40ac-aacc-5de55267468f.shogun-image {
  box-sizing: border-box;
}


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





  img.s-72059da4-fc9e-40ac-aacc-5de55267468f.shogun-image {
    
    
  }


.s-72059da4-fc9e-40ac-aacc-5de55267468f .shogun-image-content {
  
    align-items: center;
  
}

.s-72059da4-fc9e-40ac-aacc-5de55267468f.shg-align-container {
  text-align: center
}

.s-72059da4-fc9e-40ac-aacc-5de55267468f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-72059da4-fc9e-40ac-aacc-5de55267468f.shogun-image {
  box-sizing: border-box;
}


}
#s-b9ab160d-519f-4bf8-a7b3-05b7c9299bf9 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: -3%;
margin-right: 0%;
}

#s-94e89765-48fa-433a-a31d-67315e831454 {
  margin-left: 15%;
margin-right: 15%;
}

#s-d743d4f0-4fd4-40df-9bb1-c4a2f6463ea1 {
  border-style: solid;
margin-top: 5%;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-d743d4f0-4fd4-40df-9bb1-c4a2f6463ea1:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-d743d4f0-4fd4-40df-9bb1-c4a2f6463ea1:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-d743d4f0-4fd4-40df-9bb1-c4a2f6463ea1-root {
    text-align: center;
  }


#s-d743d4f0-4fd4-40df-9bb1-c4a2f6463ea1.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-d743d4f0-4fd4-40df-9bb1-c4a2f6463ea1-root {
    text-align: center;
  }


#s-d743d4f0-4fd4-40df-9bb1-c4a2f6463ea1.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d743d4f0-4fd4-40df-9bb1-c4a2f6463ea1-root {
    text-align: center;
  }


#s-d743d4f0-4fd4-40df-9bb1-c4a2f6463ea1.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d743d4f0-4fd4-40df-9bb1-c4a2f6463ea1-root {
    text-align: center;
  }


#s-d743d4f0-4fd4-40df-9bb1-c4a2f6463ea1.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-d743d4f0-4fd4-40df-9bb1-c4a2f6463ea1-root {
    text-align: center;
  }


#s-d743d4f0-4fd4-40df-9bb1-c4a2f6463ea1.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-d743d4f0-4fd4-40df-9bb1-c4a2f6463ea1-root {
    text-align: center;
  }


#s-d743d4f0-4fd4-40df-9bb1-c4a2f6463ea1.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-338557b3-bc60-48fd-85aa-a99a00365c1f {
  margin-left: 0%;
margin-right: 0%;
min-height: 50px;
}
@media (min-width: 1200px){#s-338557b3-bc60-48fd-85aa-a99a00365c1f {
  display: none;
}
#s-338557b3-bc60-48fd-85aa-a99a00365c1f, #wrap-s-338557b3-bc60-48fd-85aa-a99a00365c1f { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-338557b3-bc60-48fd-85aa-a99a00365c1f {
  display: none;
}
#s-338557b3-bc60-48fd-85aa-a99a00365c1f, #wrap-s-338557b3-bc60-48fd-85aa-a99a00365c1f { display:none !important; }}







#s-338557b3-bc60-48fd-85aa-a99a00365c1f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-338557b3-bc60-48fd-85aa-a99a00365c1f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1655d1e6-8c22-4505-9b4d-e341bc725627 {
  margin-left: 1%;
margin-right: 1%;
min-height: 50px;
background-color: rgba(29, 29, 29, 1);
}








#s-1655d1e6-8c22-4505-9b4d-e341bc725627 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1655d1e6-8c22-4505-9b4d-e341bc725627.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-98fd36ad-af45-411f-8082-fa81765e5296 {
  margin-top: 1px;
margin-left: 1px;
margin-bottom: 1px;
margin-right: 1px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-98fd36ad-af45-411f-8082-fa81765e5296 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-98fd36ad-af45-411f-8082-fa81765e5296.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dadf3c08-e1d8-4be3-87f3-34093b4b2cfc {
  margin-top: 2%;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-dadf3c08-e1d8-4be3-87f3-34093b4b2cfc .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  letter-spacing: 5px;
  
}



#s-4967d7bc-fc7c-4fcc-8b2a-1595bc90b1e7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4967d7bc-fc7c-4fcc-8b2a-1595bc90b1e7 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 23px;
  line-height: 1.5em;
  letter-spacing: 3px;
  
}



#s-aef7ebf7-6505-4236-80c2-e9a73721f328 {
  text-align: center;
}







  img.s-aef7ebf7-6505-4236-80c2-e9a73721f328.shogun-image {
    
    
  }


.s-aef7ebf7-6505-4236-80c2-e9a73721f328 .shogun-image-content {
  
    align-items: center;
  
}

.s-aef7ebf7-6505-4236-80c2-e9a73721f328.shg-align-container {
  text-align: center
}

.s-aef7ebf7-6505-4236-80c2-e9a73721f328.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aef7ebf7-6505-4236-80c2-e9a73721f328.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-aef7ebf7-6505-4236-80c2-e9a73721f328.shogun-image {
    
    
  }


.s-aef7ebf7-6505-4236-80c2-e9a73721f328 .shogun-image-content {
  
    align-items: center;
  
}

.s-aef7ebf7-6505-4236-80c2-e9a73721f328.shg-align-container {
  text-align: center
}

.s-aef7ebf7-6505-4236-80c2-e9a73721f328.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aef7ebf7-6505-4236-80c2-e9a73721f328.shogun-image {
  box-sizing: border-box;
}


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





  img.s-aef7ebf7-6505-4236-80c2-e9a73721f328.shogun-image {
    
    
  }


.s-aef7ebf7-6505-4236-80c2-e9a73721f328 .shogun-image-content {
  
    align-items: center;
  
}

.s-aef7ebf7-6505-4236-80c2-e9a73721f328.shg-align-container {
  text-align: center
}

.s-aef7ebf7-6505-4236-80c2-e9a73721f328.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aef7ebf7-6505-4236-80c2-e9a73721f328.shogun-image {
  box-sizing: border-box;
}


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





  img.s-aef7ebf7-6505-4236-80c2-e9a73721f328.shogun-image {
    
    
  }


.s-aef7ebf7-6505-4236-80c2-e9a73721f328 .shogun-image-content {
  
    align-items: center;
  
}

.s-aef7ebf7-6505-4236-80c2-e9a73721f328.shg-align-container {
  text-align: center
}

.s-aef7ebf7-6505-4236-80c2-e9a73721f328.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aef7ebf7-6505-4236-80c2-e9a73721f328.shogun-image {
  box-sizing: border-box;
}


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





  img.s-aef7ebf7-6505-4236-80c2-e9a73721f328.shogun-image {
    
    
  }


.s-aef7ebf7-6505-4236-80c2-e9a73721f328 .shogun-image-content {
  
    align-items: center;
  
}

.s-aef7ebf7-6505-4236-80c2-e9a73721f328.shg-align-container {
  text-align: center
}

.s-aef7ebf7-6505-4236-80c2-e9a73721f328.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aef7ebf7-6505-4236-80c2-e9a73721f328.shogun-image {
  box-sizing: border-box;
}


}
#s-2eb459f5-5db2-4086-baaa-3001901669d0 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: -3%;
margin-right: 0%;
}

#s-cd30ae53-d0b3-44a8-b803-6c5689c4128f {
  margin-left: 15%;
margin-right: 15%;
}

#s-202887c5-a97a-4d47-acd7-04418389f548 {
  border-style: solid;
margin-top: 0px;
margin-left: auto;
margin-bottom: 5%;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-202887c5-a97a-4d47-acd7-04418389f548:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-202887c5-a97a-4d47-acd7-04418389f548:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-202887c5-a97a-4d47-acd7-04418389f548-root {
    text-align: center;
  }


#s-202887c5-a97a-4d47-acd7-04418389f548.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-202887c5-a97a-4d47-acd7-04418389f548-root {
    text-align: center;
  }


#s-202887c5-a97a-4d47-acd7-04418389f548.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-202887c5-a97a-4d47-acd7-04418389f548-root {
    text-align: center;
  }


#s-202887c5-a97a-4d47-acd7-04418389f548.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-202887c5-a97a-4d47-acd7-04418389f548-root {
    text-align: center;
  }


#s-202887c5-a97a-4d47-acd7-04418389f548.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-202887c5-a97a-4d47-acd7-04418389f548-root {
    text-align: center;
  }


#s-202887c5-a97a-4d47-acd7-04418389f548.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-202887c5-a97a-4d47-acd7-04418389f548-root {
    text-align: center;
  }


#s-202887c5-a97a-4d47-acd7-04418389f548.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-8afd479e-cd8b-4496-9415-0483198299a0 {
  margin-top: 15%;
margin-left: 0%;
margin-bottom: -3%;
margin-right: 0%;
}

#s-50d6bda2-01b4-4322-8da1-81ae4d02225a {
  margin-top: 0%;
margin-left: 15%;
margin-right: 14%;
}

#s-311a179c-43b4-43a1-b623-31ab0f2585d8 {
  border-style: solid;
margin-top: 0px;
margin-left: auto;
margin-bottom: 5%;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-311a179c-43b4-43a1-b623-31ab0f2585d8:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-311a179c-43b4-43a1-b623-31ab0f2585d8:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-311a179c-43b4-43a1-b623-31ab0f2585d8-root {
    text-align: center;
  }


#s-311a179c-43b4-43a1-b623-31ab0f2585d8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-311a179c-43b4-43a1-b623-31ab0f2585d8-root {
    text-align: center;
  }


#s-311a179c-43b4-43a1-b623-31ab0f2585d8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-311a179c-43b4-43a1-b623-31ab0f2585d8-root {
    text-align: center;
  }


#s-311a179c-43b4-43a1-b623-31ab0f2585d8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-311a179c-43b4-43a1-b623-31ab0f2585d8-root {
    text-align: center;
  }


#s-311a179c-43b4-43a1-b623-31ab0f2585d8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-311a179c-43b4-43a1-b623-31ab0f2585d8-root {
    text-align: center;
  }


#s-311a179c-43b4-43a1-b623-31ab0f2585d8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-311a179c-43b4-43a1-b623-31ab0f2585d8-root {
    text-align: center;
  }


#s-311a179c-43b4-43a1-b623-31ab0f2585d8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-266bf0af-65cf-4883-9ed6-c5606f703e59 {
  margin-top: 5%;
margin-left: 0%;
margin-bottom: 5%;
margin-right: 0%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-266bf0af-65cf-4883-9ed6-c5606f703e59 {
  display: none;
}
#s-266bf0af-65cf-4883-9ed6-c5606f703e59, #wrap-s-266bf0af-65cf-4883-9ed6-c5606f703e59 { display:none !important; }}@media (max-width: 767px){#s-266bf0af-65cf-4883-9ed6-c5606f703e59 {
  display: none;
}
#s-266bf0af-65cf-4883-9ed6-c5606f703e59, #wrap-s-266bf0af-65cf-4883-9ed6-c5606f703e59 { display:none !important; }}







#s-266bf0af-65cf-4883-9ed6-c5606f703e59 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-266bf0af-65cf-4883-9ed6-c5606f703e59.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f48344e9-2b24-4bc2-a1b1-70cb17a5e4f3 {
  margin-left: 20%;
margin-bottom: 4%;
margin-right: 20%;
min-height: 50px;
background-color: rgba(29, 29, 29, 1);
}








#s-f48344e9-2b24-4bc2-a1b1-70cb17a5e4f3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f48344e9-2b24-4bc2-a1b1-70cb17a5e4f3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c8c9b15a-cf1c-411f-80a5-0facfca1bea8 {
  margin-top: 1px;
margin-left: 1px;
margin-bottom: 1px;
margin-right: 1px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-c8c9b15a-cf1c-411f-80a5-0facfca1bea8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c8c9b15a-cf1c-411f-80a5-0facfca1bea8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c1adf694-b8ee-47a1-8eb3-50a0311734a6 {
  margin-top: 1%;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-c1adf694-b8ee-47a1-8eb3-50a0311734a6 .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 17px;
  
  letter-spacing: 5px;
  
}



#s-a89dcb29-c129-4c33-90fa-8146e4241c1b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a89dcb29-c129-4c33-90fa-8146e4241c1b .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  line-height: 1.5em;
  letter-spacing: 3px;
  
}



#s-25844dc6-04df-4add-b4e3-be199af828ba {
  text-align: center;
}







  img.s-25844dc6-04df-4add-b4e3-be199af828ba.shogun-image {
    
    
  }


.s-25844dc6-04df-4add-b4e3-be199af828ba .shogun-image-content {
  
    align-items: center;
  
}

.s-25844dc6-04df-4add-b4e3-be199af828ba.shg-align-container {
  text-align: center
}

.s-25844dc6-04df-4add-b4e3-be199af828ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-25844dc6-04df-4add-b4e3-be199af828ba.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-25844dc6-04df-4add-b4e3-be199af828ba.shogun-image {
    
    
  }


.s-25844dc6-04df-4add-b4e3-be199af828ba .shogun-image-content {
  
    align-items: center;
  
}

.s-25844dc6-04df-4add-b4e3-be199af828ba.shg-align-container {
  text-align: center
}

.s-25844dc6-04df-4add-b4e3-be199af828ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-25844dc6-04df-4add-b4e3-be199af828ba.shogun-image {
  box-sizing: border-box;
}


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





  img.s-25844dc6-04df-4add-b4e3-be199af828ba.shogun-image {
    
    
  }


.s-25844dc6-04df-4add-b4e3-be199af828ba .shogun-image-content {
  
    align-items: center;
  
}

.s-25844dc6-04df-4add-b4e3-be199af828ba.shg-align-container {
  text-align: center
}

.s-25844dc6-04df-4add-b4e3-be199af828ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-25844dc6-04df-4add-b4e3-be199af828ba.shogun-image {
  box-sizing: border-box;
}


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





  img.s-25844dc6-04df-4add-b4e3-be199af828ba.shogun-image {
    
    
  }


.s-25844dc6-04df-4add-b4e3-be199af828ba .shogun-image-content {
  
    align-items: center;
  
}

.s-25844dc6-04df-4add-b4e3-be199af828ba.shg-align-container {
  text-align: center
}

.s-25844dc6-04df-4add-b4e3-be199af828ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-25844dc6-04df-4add-b4e3-be199af828ba.shogun-image {
  box-sizing: border-box;
}


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





  img.s-25844dc6-04df-4add-b4e3-be199af828ba.shogun-image {
    
    
  }


.s-25844dc6-04df-4add-b4e3-be199af828ba .shogun-image-content {
  
    align-items: center;
  
}

.s-25844dc6-04df-4add-b4e3-be199af828ba.shg-align-container {
  text-align: center
}

.s-25844dc6-04df-4add-b4e3-be199af828ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-25844dc6-04df-4add-b4e3-be199af828ba.shogun-image {
  box-sizing: border-box;
}


}
#s-83ca2677-4f5c-4551-9dcc-14b7be4865cc {
  margin-top: 3%;
margin-bottom: 3%;
}

@media (min-width: 0px) {
[id="s-83ca2677-4f5c-4551-9dcc-14b7be4865cc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-83ca2677-4f5c-4551-9dcc-14b7be4865cc"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-83ca2677-4f5c-4551-9dcc-14b7be4865cc"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-83ca2677-4f5c-4551-9dcc-14b7be4865cc"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-83ca2677-4f5c-4551-9dcc-14b7be4865cc"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-83ca2677-4f5c-4551-9dcc-14b7be4865cc"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-83ca2677-4f5c-4551-9dcc-14b7be4865cc"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-5b614924-c1a9-45ba-8743-d6e5308a879b {
  margin-left: 1%;
margin-right: 1%;
padding-top: 0px;
padding-bottom: 0px;
}

#s-5b614924-c1a9-45ba-8743-d6e5308a879b .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-5b614924-c1a9-45ba-8743-d6e5308a879b .shg-sld-nav-button.shg-sld-left,
#s-5b614924-c1a9-45ba-8743-d6e5308a879b .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-2b1638a7-82c3-4426-bec9-c8331ab7a15d {
  margin-left: 40%;
margin-right: 40%;
text-align: center;
}







  img.s-2b1638a7-82c3-4426-bec9-c8331ab7a15d.shogun-image {
    
    
  }


.s-2b1638a7-82c3-4426-bec9-c8331ab7a15d .shogun-image-content {
  
    align-items: center;
  
}

.s-2b1638a7-82c3-4426-bec9-c8331ab7a15d.shg-align-container {
  text-align: center
}

.s-2b1638a7-82c3-4426-bec9-c8331ab7a15d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b1638a7-82c3-4426-bec9-c8331ab7a15d.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-2b1638a7-82c3-4426-bec9-c8331ab7a15d.shogun-image {
    
    
  }


.s-2b1638a7-82c3-4426-bec9-c8331ab7a15d .shogun-image-content {
  
    align-items: center;
  
}

.s-2b1638a7-82c3-4426-bec9-c8331ab7a15d.shg-align-container {
  text-align: center
}

.s-2b1638a7-82c3-4426-bec9-c8331ab7a15d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b1638a7-82c3-4426-bec9-c8331ab7a15d.shogun-image {
  box-sizing: border-box;
}


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





  img.s-2b1638a7-82c3-4426-bec9-c8331ab7a15d.shogun-image {
    
    
  }


.s-2b1638a7-82c3-4426-bec9-c8331ab7a15d .shogun-image-content {
  
    align-items: center;
  
}

.s-2b1638a7-82c3-4426-bec9-c8331ab7a15d.shg-align-container {
  text-align: center
}

.s-2b1638a7-82c3-4426-bec9-c8331ab7a15d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b1638a7-82c3-4426-bec9-c8331ab7a15d.shogun-image {
  box-sizing: border-box;
}


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





  img.s-2b1638a7-82c3-4426-bec9-c8331ab7a15d.shogun-image {
    
    
  }


.s-2b1638a7-82c3-4426-bec9-c8331ab7a15d .shogun-image-content {
  
    align-items: center;
  
}

.s-2b1638a7-82c3-4426-bec9-c8331ab7a15d.shg-align-container {
  text-align: center
}

.s-2b1638a7-82c3-4426-bec9-c8331ab7a15d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b1638a7-82c3-4426-bec9-c8331ab7a15d.shogun-image {
  box-sizing: border-box;
}


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





  img.s-2b1638a7-82c3-4426-bec9-c8331ab7a15d.shogun-image {
    
    
  }


.s-2b1638a7-82c3-4426-bec9-c8331ab7a15d .shogun-image-content {
  
    align-items: center;
  
}

.s-2b1638a7-82c3-4426-bec9-c8331ab7a15d.shg-align-container {
  text-align: center
}

.s-2b1638a7-82c3-4426-bec9-c8331ab7a15d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b1638a7-82c3-4426-bec9-c8331ab7a15d.shogun-image {
  box-sizing: border-box;
}


}
#s-a80b4aeb-a17c-48b4-af9b-c76c5c6594a8 {
  margin-left: 40%;
margin-right: 40%;
text-align: center;
}







  img.s-a80b4aeb-a17c-48b4-af9b-c76c5c6594a8.shogun-image {
    
    
  }


.s-a80b4aeb-a17c-48b4-af9b-c76c5c6594a8 .shogun-image-content {
  
    align-items: center;
  
}

.s-a80b4aeb-a17c-48b4-af9b-c76c5c6594a8.shg-align-container {
  text-align: center
}

.s-a80b4aeb-a17c-48b4-af9b-c76c5c6594a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a80b4aeb-a17c-48b4-af9b-c76c5c6594a8.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-a80b4aeb-a17c-48b4-af9b-c76c5c6594a8.shogun-image {
    
    
  }


.s-a80b4aeb-a17c-48b4-af9b-c76c5c6594a8 .shogun-image-content {
  
    align-items: center;
  
}

.s-a80b4aeb-a17c-48b4-af9b-c76c5c6594a8.shg-align-container {
  text-align: center
}

.s-a80b4aeb-a17c-48b4-af9b-c76c5c6594a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a80b4aeb-a17c-48b4-af9b-c76c5c6594a8.shogun-image {
  box-sizing: border-box;
}


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





  img.s-a80b4aeb-a17c-48b4-af9b-c76c5c6594a8.shogun-image {
    
    
  }


.s-a80b4aeb-a17c-48b4-af9b-c76c5c6594a8 .shogun-image-content {
  
    align-items: center;
  
}

.s-a80b4aeb-a17c-48b4-af9b-c76c5c6594a8.shg-align-container {
  text-align: center
}

.s-a80b4aeb-a17c-48b4-af9b-c76c5c6594a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a80b4aeb-a17c-48b4-af9b-c76c5c6594a8.shogun-image {
  box-sizing: border-box;
}


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





  img.s-a80b4aeb-a17c-48b4-af9b-c76c5c6594a8.shogun-image {
    
    
  }


.s-a80b4aeb-a17c-48b4-af9b-c76c5c6594a8 .shogun-image-content {
  
    align-items: center;
  
}

.s-a80b4aeb-a17c-48b4-af9b-c76c5c6594a8.shg-align-container {
  text-align: center
}

.s-a80b4aeb-a17c-48b4-af9b-c76c5c6594a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a80b4aeb-a17c-48b4-af9b-c76c5c6594a8.shogun-image {
  box-sizing: border-box;
}


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





  img.s-a80b4aeb-a17c-48b4-af9b-c76c5c6594a8.shogun-image {
    
    
  }


.s-a80b4aeb-a17c-48b4-af9b-c76c5c6594a8 .shogun-image-content {
  
    align-items: center;
  
}

.s-a80b4aeb-a17c-48b4-af9b-c76c5c6594a8.shg-align-container {
  text-align: center
}

.s-a80b4aeb-a17c-48b4-af9b-c76c5c6594a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a80b4aeb-a17c-48b4-af9b-c76c5c6594a8.shogun-image {
  box-sizing: border-box;
}


}
#s-03389aa2-2bfa-479b-a614-b475e123d382 {
  margin-left: 40%;
margin-right: 40%;
text-align: center;
}







  img.s-03389aa2-2bfa-479b-a614-b475e123d382.shogun-image {
    
    
  }


.s-03389aa2-2bfa-479b-a614-b475e123d382 .shogun-image-content {
  
    align-items: center;
  
}

.s-03389aa2-2bfa-479b-a614-b475e123d382.shg-align-container {
  text-align: center
}

.s-03389aa2-2bfa-479b-a614-b475e123d382.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03389aa2-2bfa-479b-a614-b475e123d382.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-03389aa2-2bfa-479b-a614-b475e123d382.shogun-image {
    
    
  }


.s-03389aa2-2bfa-479b-a614-b475e123d382 .shogun-image-content {
  
    align-items: center;
  
}

.s-03389aa2-2bfa-479b-a614-b475e123d382.shg-align-container {
  text-align: center
}

.s-03389aa2-2bfa-479b-a614-b475e123d382.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03389aa2-2bfa-479b-a614-b475e123d382.shogun-image {
  box-sizing: border-box;
}


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





  img.s-03389aa2-2bfa-479b-a614-b475e123d382.shogun-image {
    
    
  }


.s-03389aa2-2bfa-479b-a614-b475e123d382 .shogun-image-content {
  
    align-items: center;
  
}

.s-03389aa2-2bfa-479b-a614-b475e123d382.shg-align-container {
  text-align: center
}

.s-03389aa2-2bfa-479b-a614-b475e123d382.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03389aa2-2bfa-479b-a614-b475e123d382.shogun-image {
  box-sizing: border-box;
}


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





  img.s-03389aa2-2bfa-479b-a614-b475e123d382.shogun-image {
    
    
  }


.s-03389aa2-2bfa-479b-a614-b475e123d382 .shogun-image-content {
  
    align-items: center;
  
}

.s-03389aa2-2bfa-479b-a614-b475e123d382.shg-align-container {
  text-align: center
}

.s-03389aa2-2bfa-479b-a614-b475e123d382.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03389aa2-2bfa-479b-a614-b475e123d382.shogun-image {
  box-sizing: border-box;
}


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





  img.s-03389aa2-2bfa-479b-a614-b475e123d382.shogun-image {
    
    
  }


.s-03389aa2-2bfa-479b-a614-b475e123d382 .shogun-image-content {
  
    align-items: center;
  
}

.s-03389aa2-2bfa-479b-a614-b475e123d382.shg-align-container {
  text-align: center
}

.s-03389aa2-2bfa-479b-a614-b475e123d382.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03389aa2-2bfa-479b-a614-b475e123d382.shogun-image {
  box-sizing: border-box;
}


}
#s-ec401a8f-c712-4edb-9e3b-0dcb70d68e8c {
  margin-left: 40%;
margin-right: 40%;
text-align: center;
}







  img.s-ec401a8f-c712-4edb-9e3b-0dcb70d68e8c.shogun-image {
    
    
  }


.s-ec401a8f-c712-4edb-9e3b-0dcb70d68e8c .shogun-image-content {
  
    align-items: center;
  
}

.s-ec401a8f-c712-4edb-9e3b-0dcb70d68e8c.shg-align-container {
  text-align: center
}

.s-ec401a8f-c712-4edb-9e3b-0dcb70d68e8c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ec401a8f-c712-4edb-9e3b-0dcb70d68e8c.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-ec401a8f-c712-4edb-9e3b-0dcb70d68e8c.shogun-image {
    
    
  }


.s-ec401a8f-c712-4edb-9e3b-0dcb70d68e8c .shogun-image-content {
  
    align-items: center;
  
}

.s-ec401a8f-c712-4edb-9e3b-0dcb70d68e8c.shg-align-container {
  text-align: center
}

.s-ec401a8f-c712-4edb-9e3b-0dcb70d68e8c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ec401a8f-c712-4edb-9e3b-0dcb70d68e8c.shogun-image {
  box-sizing: border-box;
}


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





  img.s-ec401a8f-c712-4edb-9e3b-0dcb70d68e8c.shogun-image {
    
    
  }


.s-ec401a8f-c712-4edb-9e3b-0dcb70d68e8c .shogun-image-content {
  
    align-items: center;
  
}

.s-ec401a8f-c712-4edb-9e3b-0dcb70d68e8c.shg-align-container {
  text-align: center
}

.s-ec401a8f-c712-4edb-9e3b-0dcb70d68e8c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ec401a8f-c712-4edb-9e3b-0dcb70d68e8c.shogun-image {
  box-sizing: border-box;
}


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





  img.s-ec401a8f-c712-4edb-9e3b-0dcb70d68e8c.shogun-image {
    
    
  }


.s-ec401a8f-c712-4edb-9e3b-0dcb70d68e8c .shogun-image-content {
  
    align-items: center;
  
}

.s-ec401a8f-c712-4edb-9e3b-0dcb70d68e8c.shg-align-container {
  text-align: center
}

.s-ec401a8f-c712-4edb-9e3b-0dcb70d68e8c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ec401a8f-c712-4edb-9e3b-0dcb70d68e8c.shogun-image {
  box-sizing: border-box;
}


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





  img.s-ec401a8f-c712-4edb-9e3b-0dcb70d68e8c.shogun-image {
    
    
  }


.s-ec401a8f-c712-4edb-9e3b-0dcb70d68e8c .shogun-image-content {
  
    align-items: center;
  
}

.s-ec401a8f-c712-4edb-9e3b-0dcb70d68e8c.shg-align-container {
  text-align: center
}

.s-ec401a8f-c712-4edb-9e3b-0dcb70d68e8c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ec401a8f-c712-4edb-9e3b-0dcb70d68e8c.shogun-image {
  box-sizing: border-box;
}


}
#s-02ef9176-082d-4758-a8a8-ae75413d8e14 {
  margin-left: 10%;
margin-right: 10%;
}

#s-731d12ad-83e5-4180-8bb6-ccd1f73a2b69 {
  margin-left: 40%;
margin-right: 40%;
text-align: center;
}







  img.s-731d12ad-83e5-4180-8bb6-ccd1f73a2b69.shogun-image {
    
    
  }


.s-731d12ad-83e5-4180-8bb6-ccd1f73a2b69 .shogun-image-content {
  
    align-items: center;
  
}

.s-731d12ad-83e5-4180-8bb6-ccd1f73a2b69.shg-align-container {
  text-align: center
}

.s-731d12ad-83e5-4180-8bb6-ccd1f73a2b69.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-731d12ad-83e5-4180-8bb6-ccd1f73a2b69.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-731d12ad-83e5-4180-8bb6-ccd1f73a2b69.shogun-image {
    
    
  }


.s-731d12ad-83e5-4180-8bb6-ccd1f73a2b69 .shogun-image-content {
  
    align-items: center;
  
}

.s-731d12ad-83e5-4180-8bb6-ccd1f73a2b69.shg-align-container {
  text-align: center
}

.s-731d12ad-83e5-4180-8bb6-ccd1f73a2b69.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-731d12ad-83e5-4180-8bb6-ccd1f73a2b69.shogun-image {
  box-sizing: border-box;
}


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





  img.s-731d12ad-83e5-4180-8bb6-ccd1f73a2b69.shogun-image {
    
    
  }


.s-731d12ad-83e5-4180-8bb6-ccd1f73a2b69 .shogun-image-content {
  
    align-items: center;
  
}

.s-731d12ad-83e5-4180-8bb6-ccd1f73a2b69.shg-align-container {
  text-align: center
}

.s-731d12ad-83e5-4180-8bb6-ccd1f73a2b69.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-731d12ad-83e5-4180-8bb6-ccd1f73a2b69.shogun-image {
  box-sizing: border-box;
}


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





  img.s-731d12ad-83e5-4180-8bb6-ccd1f73a2b69.shogun-image {
    
    
  }


.s-731d12ad-83e5-4180-8bb6-ccd1f73a2b69 .shogun-image-content {
  
    align-items: center;
  
}

.s-731d12ad-83e5-4180-8bb6-ccd1f73a2b69.shg-align-container {
  text-align: center
}

.s-731d12ad-83e5-4180-8bb6-ccd1f73a2b69.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-731d12ad-83e5-4180-8bb6-ccd1f73a2b69.shogun-image {
  box-sizing: border-box;
}


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





  img.s-731d12ad-83e5-4180-8bb6-ccd1f73a2b69.shogun-image {
    
    
  }


.s-731d12ad-83e5-4180-8bb6-ccd1f73a2b69 .shogun-image-content {
  
    align-items: center;
  
}

.s-731d12ad-83e5-4180-8bb6-ccd1f73a2b69.shg-align-container {
  text-align: center
}

.s-731d12ad-83e5-4180-8bb6-ccd1f73a2b69.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-731d12ad-83e5-4180-8bb6-ccd1f73a2b69.shogun-image {
  box-sizing: border-box;
}


}
#s-0fd489cb-de0b-4656-8f00-181a6e95fd62 {
  margin-left: 10%;
margin-right: 10%;
}

#s-97f8425f-82db-4f10-b0b6-7badbc3ccfc9 {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-97f8425f-82db-4f10-b0b6-7badbc3ccfc9:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-97f8425f-82db-4f10-b0b6-7badbc3ccfc9:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-97f8425f-82db-4f10-b0b6-7badbc3ccfc9-root {
    text-align: center;
  }


#s-97f8425f-82db-4f10-b0b6-7badbc3ccfc9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-97f8425f-82db-4f10-b0b6-7badbc3ccfc9-root {
    text-align: center;
  }


#s-97f8425f-82db-4f10-b0b6-7badbc3ccfc9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-97f8425f-82db-4f10-b0b6-7badbc3ccfc9-root {
    text-align: center;
  }


#s-97f8425f-82db-4f10-b0b6-7badbc3ccfc9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-97f8425f-82db-4f10-b0b6-7badbc3ccfc9-root {
    text-align: center;
  }


#s-97f8425f-82db-4f10-b0b6-7badbc3ccfc9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-97f8425f-82db-4f10-b0b6-7badbc3ccfc9-root {
    text-align: center;
  }


#s-97f8425f-82db-4f10-b0b6-7badbc3ccfc9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-97f8425f-82db-4f10-b0b6-7badbc3ccfc9-root {
    text-align: center;
  }


#s-97f8425f-82db-4f10-b0b6-7badbc3ccfc9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-5d13cd33-96c2-46f8-b9e7-a1f1ca84f185 {
  margin-left: 0%;
margin-right: 0%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-5d13cd33-96c2-46f8-b9e7-a1f1ca84f185 {
  display: none;
}
#s-5d13cd33-96c2-46f8-b9e7-a1f1ca84f185, #wrap-s-5d13cd33-96c2-46f8-b9e7-a1f1ca84f185 { display:none !important; }}@media (max-width: 767px){#s-5d13cd33-96c2-46f8-b9e7-a1f1ca84f185 {
  display: none;
}
#s-5d13cd33-96c2-46f8-b9e7-a1f1ca84f185, #wrap-s-5d13cd33-96c2-46f8-b9e7-a1f1ca84f185 { display:none !important; }}







#s-5d13cd33-96c2-46f8-b9e7-a1f1ca84f185 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5d13cd33-96c2-46f8-b9e7-a1f1ca84f185.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5953cb36-cec5-4ef6-99df-dfb7c410126e {
  margin-left: 20%;
margin-right: 20%;
min-height: 50px;
background-color: rgba(29, 29, 29, 1);
}








#s-5953cb36-cec5-4ef6-99df-dfb7c410126e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5953cb36-cec5-4ef6-99df-dfb7c410126e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1c7dde1f-2ced-4fcc-8550-4fa4248378f5 {
  margin-top: 1px;
margin-left: 1px;
margin-bottom: 1px;
margin-right: 1px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-1c7dde1f-2ced-4fcc-8550-4fa4248378f5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1c7dde1f-2ced-4fcc-8550-4fa4248378f5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9cc9fab2-ff7a-439e-a310-f25e08328d8a {
  margin-top: 1%;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-9cc9fab2-ff7a-439e-a310-f25e08328d8a .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 17px;
  
  letter-spacing: 5px;
  
}



#s-48c49518-8db4-4cf9-bf4a-7f8442472c42 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-48c49518-8db4-4cf9-bf4a-7f8442472c42 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  line-height: 1.5em;
  letter-spacing: 3px;
  
}



#s-c14ce5c1-131f-48ed-a766-ba2b8806b481 {
  text-align: center;
}







  img.s-c14ce5c1-131f-48ed-a766-ba2b8806b481.shogun-image {
    
    
  }


.s-c14ce5c1-131f-48ed-a766-ba2b8806b481 .shogun-image-content {
  
    align-items: center;
  
}

.s-c14ce5c1-131f-48ed-a766-ba2b8806b481.shg-align-container {
  text-align: center
}

.s-c14ce5c1-131f-48ed-a766-ba2b8806b481.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c14ce5c1-131f-48ed-a766-ba2b8806b481.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-c14ce5c1-131f-48ed-a766-ba2b8806b481.shogun-image {
    
    
  }


.s-c14ce5c1-131f-48ed-a766-ba2b8806b481 .shogun-image-content {
  
    align-items: center;
  
}

.s-c14ce5c1-131f-48ed-a766-ba2b8806b481.shg-align-container {
  text-align: center
}

.s-c14ce5c1-131f-48ed-a766-ba2b8806b481.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c14ce5c1-131f-48ed-a766-ba2b8806b481.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c14ce5c1-131f-48ed-a766-ba2b8806b481.shogun-image {
    
    
  }


.s-c14ce5c1-131f-48ed-a766-ba2b8806b481 .shogun-image-content {
  
    align-items: center;
  
}

.s-c14ce5c1-131f-48ed-a766-ba2b8806b481.shg-align-container {
  text-align: center
}

.s-c14ce5c1-131f-48ed-a766-ba2b8806b481.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c14ce5c1-131f-48ed-a766-ba2b8806b481.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c14ce5c1-131f-48ed-a766-ba2b8806b481.shogun-image {
    
    
  }


.s-c14ce5c1-131f-48ed-a766-ba2b8806b481 .shogun-image-content {
  
    align-items: center;
  
}

.s-c14ce5c1-131f-48ed-a766-ba2b8806b481.shg-align-container {
  text-align: center
}

.s-c14ce5c1-131f-48ed-a766-ba2b8806b481.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c14ce5c1-131f-48ed-a766-ba2b8806b481.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c14ce5c1-131f-48ed-a766-ba2b8806b481.shogun-image {
    
    
  }


.s-c14ce5c1-131f-48ed-a766-ba2b8806b481 .shogun-image-content {
  
    align-items: center;
  
}

.s-c14ce5c1-131f-48ed-a766-ba2b8806b481.shg-align-container {
  text-align: center
}

.s-c14ce5c1-131f-48ed-a766-ba2b8806b481.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c14ce5c1-131f-48ed-a766-ba2b8806b481.shogun-image {
  box-sizing: border-box;
}


}
#s-408d9716-800f-434d-8160-105f36e30371 {
  margin-top: 3%;
margin-bottom: 3%;
}

@media (min-width: 0px) {
[id="s-408d9716-800f-434d-8160-105f36e30371"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-408d9716-800f-434d-8160-105f36e30371"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-408d9716-800f-434d-8160-105f36e30371"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-408d9716-800f-434d-8160-105f36e30371"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-408d9716-800f-434d-8160-105f36e30371"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-408d9716-800f-434d-8160-105f36e30371"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-408d9716-800f-434d-8160-105f36e30371"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-98084d92-7f3d-4bf9-ae75-4b187efebb79 {
  padding-top: 2px;
padding-bottom: 2px;
}

#s-98084d92-7f3d-4bf9-ae75-4b187efebb79 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-98084d92-7f3d-4bf9-ae75-4b187efebb79 .shg-sld-nav-button.shg-sld-left,
#s-98084d92-7f3d-4bf9-ae75-4b187efebb79 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-156a3e2b-84ad-4522-b21f-ac6691337939 {
  margin-left: 40%;
margin-right: 40%;
text-align: center;
}







  img.s-156a3e2b-84ad-4522-b21f-ac6691337939.shogun-image {
    
    
  }


.s-156a3e2b-84ad-4522-b21f-ac6691337939 .shogun-image-content {
  
    align-items: center;
  
}

.s-156a3e2b-84ad-4522-b21f-ac6691337939.shg-align-container {
  text-align: center
}

.s-156a3e2b-84ad-4522-b21f-ac6691337939.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-156a3e2b-84ad-4522-b21f-ac6691337939.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-156a3e2b-84ad-4522-b21f-ac6691337939.shogun-image {
    
    
  }


.s-156a3e2b-84ad-4522-b21f-ac6691337939 .shogun-image-content {
  
    align-items: center;
  
}

.s-156a3e2b-84ad-4522-b21f-ac6691337939.shg-align-container {
  text-align: center
}

.s-156a3e2b-84ad-4522-b21f-ac6691337939.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-156a3e2b-84ad-4522-b21f-ac6691337939.shogun-image {
  box-sizing: border-box;
}


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





  img.s-156a3e2b-84ad-4522-b21f-ac6691337939.shogun-image {
    
    
  }


.s-156a3e2b-84ad-4522-b21f-ac6691337939 .shogun-image-content {
  
    align-items: center;
  
}

.s-156a3e2b-84ad-4522-b21f-ac6691337939.shg-align-container {
  text-align: center
}

.s-156a3e2b-84ad-4522-b21f-ac6691337939.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-156a3e2b-84ad-4522-b21f-ac6691337939.shogun-image {
  box-sizing: border-box;
}


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





  img.s-156a3e2b-84ad-4522-b21f-ac6691337939.shogun-image {
    
    
  }


.s-156a3e2b-84ad-4522-b21f-ac6691337939 .shogun-image-content {
  
    align-items: center;
  
}

.s-156a3e2b-84ad-4522-b21f-ac6691337939.shg-align-container {
  text-align: center
}

.s-156a3e2b-84ad-4522-b21f-ac6691337939.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-156a3e2b-84ad-4522-b21f-ac6691337939.shogun-image {
  box-sizing: border-box;
}


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





  img.s-156a3e2b-84ad-4522-b21f-ac6691337939.shogun-image {
    
    
  }


.s-156a3e2b-84ad-4522-b21f-ac6691337939 .shogun-image-content {
  
    align-items: center;
  
}

.s-156a3e2b-84ad-4522-b21f-ac6691337939.shg-align-container {
  text-align: center
}

.s-156a3e2b-84ad-4522-b21f-ac6691337939.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-156a3e2b-84ad-4522-b21f-ac6691337939.shogun-image {
  box-sizing: border-box;
}


}
#s-a329000f-16dc-47da-9f8c-c0159eb66e59 {
  margin-left: 40%;
margin-right: 40%;
text-align: center;
}







  img.s-a329000f-16dc-47da-9f8c-c0159eb66e59.shogun-image {
    
    
  }


.s-a329000f-16dc-47da-9f8c-c0159eb66e59 .shogun-image-content {
  
    align-items: center;
  
}

.s-a329000f-16dc-47da-9f8c-c0159eb66e59.shg-align-container {
  text-align: center
}

.s-a329000f-16dc-47da-9f8c-c0159eb66e59.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a329000f-16dc-47da-9f8c-c0159eb66e59.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-a329000f-16dc-47da-9f8c-c0159eb66e59.shogun-image {
    
    
  }


.s-a329000f-16dc-47da-9f8c-c0159eb66e59 .shogun-image-content {
  
    align-items: center;
  
}

.s-a329000f-16dc-47da-9f8c-c0159eb66e59.shg-align-container {
  text-align: center
}

.s-a329000f-16dc-47da-9f8c-c0159eb66e59.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a329000f-16dc-47da-9f8c-c0159eb66e59.shogun-image {
  box-sizing: border-box;
}


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





  img.s-a329000f-16dc-47da-9f8c-c0159eb66e59.shogun-image {
    
    
  }


.s-a329000f-16dc-47da-9f8c-c0159eb66e59 .shogun-image-content {
  
    align-items: center;
  
}

.s-a329000f-16dc-47da-9f8c-c0159eb66e59.shg-align-container {
  text-align: center
}

.s-a329000f-16dc-47da-9f8c-c0159eb66e59.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a329000f-16dc-47da-9f8c-c0159eb66e59.shogun-image {
  box-sizing: border-box;
}


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





  img.s-a329000f-16dc-47da-9f8c-c0159eb66e59.shogun-image {
    
    
  }


.s-a329000f-16dc-47da-9f8c-c0159eb66e59 .shogun-image-content {
  
    align-items: center;
  
}

.s-a329000f-16dc-47da-9f8c-c0159eb66e59.shg-align-container {
  text-align: center
}

.s-a329000f-16dc-47da-9f8c-c0159eb66e59.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a329000f-16dc-47da-9f8c-c0159eb66e59.shogun-image {
  box-sizing: border-box;
}


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





  img.s-a329000f-16dc-47da-9f8c-c0159eb66e59.shogun-image {
    
    
  }


.s-a329000f-16dc-47da-9f8c-c0159eb66e59 .shogun-image-content {
  
    align-items: center;
  
}

.s-a329000f-16dc-47da-9f8c-c0159eb66e59.shg-align-container {
  text-align: center
}

.s-a329000f-16dc-47da-9f8c-c0159eb66e59.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a329000f-16dc-47da-9f8c-c0159eb66e59.shogun-image {
  box-sizing: border-box;
}


}
#s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb {
  margin-left: 40%;
margin-right: 40%;
text-align: center;
}







  img.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shogun-image {
    
    
  }


.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb .shogun-image-content {
  
    align-items: center;
  
}

.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shg-align-container {
  text-align: center
}

.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shogun-image {
    
    
  }


.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb .shogun-image-content {
  
    align-items: center;
  
}

.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shg-align-container {
  text-align: center
}

.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shogun-image {
    
    
  }


.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb .shogun-image-content {
  
    align-items: center;
  
}

.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shg-align-container {
  text-align: center
}

.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shogun-image {
    
    
  }


.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb .shogun-image-content {
  
    align-items: center;
  
}

.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shg-align-container {
  text-align: center
}

.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shogun-image {
    
    
  }


.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb .shogun-image-content {
  
    align-items: center;
  
}

.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shg-align-container {
  text-align: center
}

.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shogun-image {
  box-sizing: border-box;
}


}
#s-381588fa-29c8-49d8-bc0f-d926f8e8a553 {
  margin-left: 10%;
margin-right: 10%;
}

#s-f404dabf-3340-47dd-a0c8-14b375e51d59 {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-f404dabf-3340-47dd-a0c8-14b375e51d59:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-f404dabf-3340-47dd-a0c8-14b375e51d59:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-f404dabf-3340-47dd-a0c8-14b375e51d59-root {
    text-align: center;
  }


#s-f404dabf-3340-47dd-a0c8-14b375e51d59.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-f404dabf-3340-47dd-a0c8-14b375e51d59-root {
    text-align: center;
  }


#s-f404dabf-3340-47dd-a0c8-14b375e51d59.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f404dabf-3340-47dd-a0c8-14b375e51d59-root {
    text-align: center;
  }


#s-f404dabf-3340-47dd-a0c8-14b375e51d59.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f404dabf-3340-47dd-a0c8-14b375e51d59-root {
    text-align: center;
  }


#s-f404dabf-3340-47dd-a0c8-14b375e51d59.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-f404dabf-3340-47dd-a0c8-14b375e51d59-root {
    text-align: center;
  }


#s-f404dabf-3340-47dd-a0c8-14b375e51d59.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-f404dabf-3340-47dd-a0c8-14b375e51d59-root {
    text-align: center;
  }


#s-f404dabf-3340-47dd-a0c8-14b375e51d59.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-d3a5c70d-327c-459a-8239-44ed4caab683 {
  margin-top: 5%;
margin-left: 0%;
margin-bottom: 5%;
margin-right: 0%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-d3a5c70d-327c-459a-8239-44ed4caab683 {
  display: none;
}
#s-d3a5c70d-327c-459a-8239-44ed4caab683, #wrap-s-d3a5c70d-327c-459a-8239-44ed4caab683 { display:none !important; }}@media (max-width: 767px){#s-d3a5c70d-327c-459a-8239-44ed4caab683 {
  display: none;
}
#s-d3a5c70d-327c-459a-8239-44ed4caab683, #wrap-s-d3a5c70d-327c-459a-8239-44ed4caab683 { display:none !important; }}







#s-d3a5c70d-327c-459a-8239-44ed4caab683 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d3a5c70d-327c-459a-8239-44ed4caab683.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-56e6dad3-feb2-429c-ad49-aa4c6174b30d {
  margin-left: 20%;
margin-bottom: 4%;
margin-right: 20%;
min-height: 50px;
background-color: rgba(29, 29, 29, 1);
}








#s-56e6dad3-feb2-429c-ad49-aa4c6174b30d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-56e6dad3-feb2-429c-ad49-aa4c6174b30d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6e909c31-383a-4c63-a843-b8ca22fb7ad8 {
  margin-top: 1px;
margin-left: 1px;
margin-bottom: 1px;
margin-right: 1px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-6e909c31-383a-4c63-a843-b8ca22fb7ad8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6e909c31-383a-4c63-a843-b8ca22fb7ad8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-db092d59-5f45-4f71-b021-fa63c7ddf4d4 {
  margin-top: 1%;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-db092d59-5f45-4f71-b021-fa63c7ddf4d4 .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 17px;
  
  letter-spacing: 5px;
  
}



#s-0546b01b-a351-4e73-80aa-3887f1fe97f9 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0546b01b-a351-4e73-80aa-3887f1fe97f9 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  line-height: 1.5em;
  letter-spacing: 3px;
  
}



#s-4451c54a-a69a-4c25-889b-893c506777eb {
  text-align: center;
}







  img.s-4451c54a-a69a-4c25-889b-893c506777eb.shogun-image {
    
    
  }


.s-4451c54a-a69a-4c25-889b-893c506777eb .shogun-image-content {
  
    align-items: center;
  
}

.s-4451c54a-a69a-4c25-889b-893c506777eb.shg-align-container {
  text-align: center
}

.s-4451c54a-a69a-4c25-889b-893c506777eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4451c54a-a69a-4c25-889b-893c506777eb.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-4451c54a-a69a-4c25-889b-893c506777eb.shogun-image {
    
    
  }


.s-4451c54a-a69a-4c25-889b-893c506777eb .shogun-image-content {
  
    align-items: center;
  
}

.s-4451c54a-a69a-4c25-889b-893c506777eb.shg-align-container {
  text-align: center
}

.s-4451c54a-a69a-4c25-889b-893c506777eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4451c54a-a69a-4c25-889b-893c506777eb.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4451c54a-a69a-4c25-889b-893c506777eb.shogun-image {
    
    
  }


.s-4451c54a-a69a-4c25-889b-893c506777eb .shogun-image-content {
  
    align-items: center;
  
}

.s-4451c54a-a69a-4c25-889b-893c506777eb.shg-align-container {
  text-align: center
}

.s-4451c54a-a69a-4c25-889b-893c506777eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4451c54a-a69a-4c25-889b-893c506777eb.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4451c54a-a69a-4c25-889b-893c506777eb.shogun-image {
    
    
  }


.s-4451c54a-a69a-4c25-889b-893c506777eb .shogun-image-content {
  
    align-items: center;
  
}

.s-4451c54a-a69a-4c25-889b-893c506777eb.shg-align-container {
  text-align: center
}

.s-4451c54a-a69a-4c25-889b-893c506777eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4451c54a-a69a-4c25-889b-893c506777eb.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4451c54a-a69a-4c25-889b-893c506777eb.shogun-image {
    
    
  }


.s-4451c54a-a69a-4c25-889b-893c506777eb .shogun-image-content {
  
    align-items: center;
  
}

.s-4451c54a-a69a-4c25-889b-893c506777eb.shg-align-container {
  text-align: center
}

.s-4451c54a-a69a-4c25-889b-893c506777eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4451c54a-a69a-4c25-889b-893c506777eb.shogun-image {
  box-sizing: border-box;
}


}
#s-cc4d0437-1082-4f5f-b2f9-f9511aff2c5a {
  margin-top: 3%;
margin-bottom: 3%;
}

@media (min-width: 0px) {
[id="s-cc4d0437-1082-4f5f-b2f9-f9511aff2c5a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cc4d0437-1082-4f5f-b2f9-f9511aff2c5a"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-cc4d0437-1082-4f5f-b2f9-f9511aff2c5a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-cc4d0437-1082-4f5f-b2f9-f9511aff2c5a"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-cc4d0437-1082-4f5f-b2f9-f9511aff2c5a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-cc4d0437-1082-4f5f-b2f9-f9511aff2c5a"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-cc4d0437-1082-4f5f-b2f9-f9511aff2c5a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-7c506bce-a917-498d-b5e5-ae0a71aa4885 {
  margin-left: 1%;
margin-right: 1%;
padding-top: 0px;
padding-bottom: 0px;
}

#s-7c506bce-a917-498d-b5e5-ae0a71aa4885 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-7c506bce-a917-498d-b5e5-ae0a71aa4885 .shg-sld-nav-button.shg-sld-left,
#s-7c506bce-a917-498d-b5e5-ae0a71aa4885 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-4af7d23d-b550-438e-9c3c-13de26e68838 {
  margin-left: 40%;
margin-right: 40%;
text-align: center;
}







  img.s-4af7d23d-b550-438e-9c3c-13de26e68838.shogun-image {
    
    
  }


.s-4af7d23d-b550-438e-9c3c-13de26e68838 .shogun-image-content {
  
    align-items: center;
  
}

.s-4af7d23d-b550-438e-9c3c-13de26e68838.shg-align-container {
  text-align: center
}

.s-4af7d23d-b550-438e-9c3c-13de26e68838.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4af7d23d-b550-438e-9c3c-13de26e68838.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-4af7d23d-b550-438e-9c3c-13de26e68838.shogun-image {
    
    
  }


.s-4af7d23d-b550-438e-9c3c-13de26e68838 .shogun-image-content {
  
    align-items: center;
  
}

.s-4af7d23d-b550-438e-9c3c-13de26e68838.shg-align-container {
  text-align: center
}

.s-4af7d23d-b550-438e-9c3c-13de26e68838.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4af7d23d-b550-438e-9c3c-13de26e68838.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4af7d23d-b550-438e-9c3c-13de26e68838.shogun-image {
    
    
  }


.s-4af7d23d-b550-438e-9c3c-13de26e68838 .shogun-image-content {
  
    align-items: center;
  
}

.s-4af7d23d-b550-438e-9c3c-13de26e68838.shg-align-container {
  text-align: center
}

.s-4af7d23d-b550-438e-9c3c-13de26e68838.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4af7d23d-b550-438e-9c3c-13de26e68838.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4af7d23d-b550-438e-9c3c-13de26e68838.shogun-image {
    
    
  }


.s-4af7d23d-b550-438e-9c3c-13de26e68838 .shogun-image-content {
  
    align-items: center;
  
}

.s-4af7d23d-b550-438e-9c3c-13de26e68838.shg-align-container {
  text-align: center
}

.s-4af7d23d-b550-438e-9c3c-13de26e68838.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4af7d23d-b550-438e-9c3c-13de26e68838.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4af7d23d-b550-438e-9c3c-13de26e68838.shogun-image {
    
    
  }


.s-4af7d23d-b550-438e-9c3c-13de26e68838 .shogun-image-content {
  
    align-items: center;
  
}

.s-4af7d23d-b550-438e-9c3c-13de26e68838.shg-align-container {
  text-align: center
}

.s-4af7d23d-b550-438e-9c3c-13de26e68838.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4af7d23d-b550-438e-9c3c-13de26e68838.shogun-image {
  box-sizing: border-box;
}


}
#s-03246310-74f0-4233-b0e5-d9ae99614b7b {
  margin-left: 40%;
margin-right: 40%;
text-align: center;
}







  img.s-03246310-74f0-4233-b0e5-d9ae99614b7b.shogun-image {
    
    
  }


.s-03246310-74f0-4233-b0e5-d9ae99614b7b .shogun-image-content {
  
    align-items: center;
  
}

.s-03246310-74f0-4233-b0e5-d9ae99614b7b.shg-align-container {
  text-align: center
}

.s-03246310-74f0-4233-b0e5-d9ae99614b7b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03246310-74f0-4233-b0e5-d9ae99614b7b.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-03246310-74f0-4233-b0e5-d9ae99614b7b.shogun-image {
    
    
  }


.s-03246310-74f0-4233-b0e5-d9ae99614b7b .shogun-image-content {
  
    align-items: center;
  
}

.s-03246310-74f0-4233-b0e5-d9ae99614b7b.shg-align-container {
  text-align: center
}

.s-03246310-74f0-4233-b0e5-d9ae99614b7b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03246310-74f0-4233-b0e5-d9ae99614b7b.shogun-image {
  box-sizing: border-box;
}


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





  img.s-03246310-74f0-4233-b0e5-d9ae99614b7b.shogun-image {
    
    
  }


.s-03246310-74f0-4233-b0e5-d9ae99614b7b .shogun-image-content {
  
    align-items: center;
  
}

.s-03246310-74f0-4233-b0e5-d9ae99614b7b.shg-align-container {
  text-align: center
}

.s-03246310-74f0-4233-b0e5-d9ae99614b7b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03246310-74f0-4233-b0e5-d9ae99614b7b.shogun-image {
  box-sizing: border-box;
}


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





  img.s-03246310-74f0-4233-b0e5-d9ae99614b7b.shogun-image {
    
    
  }


.s-03246310-74f0-4233-b0e5-d9ae99614b7b .shogun-image-content {
  
    align-items: center;
  
}

.s-03246310-74f0-4233-b0e5-d9ae99614b7b.shg-align-container {
  text-align: center
}

.s-03246310-74f0-4233-b0e5-d9ae99614b7b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03246310-74f0-4233-b0e5-d9ae99614b7b.shogun-image {
  box-sizing: border-box;
}


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





  img.s-03246310-74f0-4233-b0e5-d9ae99614b7b.shogun-image {
    
    
  }


.s-03246310-74f0-4233-b0e5-d9ae99614b7b .shogun-image-content {
  
    align-items: center;
  
}

.s-03246310-74f0-4233-b0e5-d9ae99614b7b.shg-align-container {
  text-align: center
}

.s-03246310-74f0-4233-b0e5-d9ae99614b7b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03246310-74f0-4233-b0e5-d9ae99614b7b.shogun-image {
  box-sizing: border-box;
}


}
#s-8ba07239-167b-4d7c-b0c1-bb01f8763ade {
  margin-left: 40%;
margin-right: 40%;
text-align: center;
}







  img.s-8ba07239-167b-4d7c-b0c1-bb01f8763ade.shogun-image {
    
    
  }


.s-8ba07239-167b-4d7c-b0c1-bb01f8763ade .shogun-image-content {
  
    align-items: center;
  
}

.s-8ba07239-167b-4d7c-b0c1-bb01f8763ade.shg-align-container {
  text-align: center
}

.s-8ba07239-167b-4d7c-b0c1-bb01f8763ade.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ba07239-167b-4d7c-b0c1-bb01f8763ade.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-8ba07239-167b-4d7c-b0c1-bb01f8763ade.shogun-image {
    
    
  }


.s-8ba07239-167b-4d7c-b0c1-bb01f8763ade .shogun-image-content {
  
    align-items: center;
  
}

.s-8ba07239-167b-4d7c-b0c1-bb01f8763ade.shg-align-container {
  text-align: center
}

.s-8ba07239-167b-4d7c-b0c1-bb01f8763ade.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ba07239-167b-4d7c-b0c1-bb01f8763ade.shogun-image {
  box-sizing: border-box;
}


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





  img.s-8ba07239-167b-4d7c-b0c1-bb01f8763ade.shogun-image {
    
    
  }


.s-8ba07239-167b-4d7c-b0c1-bb01f8763ade .shogun-image-content {
  
    align-items: center;
  
}

.s-8ba07239-167b-4d7c-b0c1-bb01f8763ade.shg-align-container {
  text-align: center
}

.s-8ba07239-167b-4d7c-b0c1-bb01f8763ade.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ba07239-167b-4d7c-b0c1-bb01f8763ade.shogun-image {
  box-sizing: border-box;
}


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





  img.s-8ba07239-167b-4d7c-b0c1-bb01f8763ade.shogun-image {
    
    
  }


.s-8ba07239-167b-4d7c-b0c1-bb01f8763ade .shogun-image-content {
  
    align-items: center;
  
}

.s-8ba07239-167b-4d7c-b0c1-bb01f8763ade.shg-align-container {
  text-align: center
}

.s-8ba07239-167b-4d7c-b0c1-bb01f8763ade.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ba07239-167b-4d7c-b0c1-bb01f8763ade.shogun-image {
  box-sizing: border-box;
}


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





  img.s-8ba07239-167b-4d7c-b0c1-bb01f8763ade.shogun-image {
    
    
  }


.s-8ba07239-167b-4d7c-b0c1-bb01f8763ade .shogun-image-content {
  
    align-items: center;
  
}

.s-8ba07239-167b-4d7c-b0c1-bb01f8763ade.shg-align-container {
  text-align: center
}

.s-8ba07239-167b-4d7c-b0c1-bb01f8763ade.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ba07239-167b-4d7c-b0c1-bb01f8763ade.shogun-image {
  box-sizing: border-box;
}


}
#s-6ad0de5e-f1ce-45d5-b51c-0af0515386a5 {
  margin-left: 40%;
margin-right: 40%;
text-align: center;
}







  img.s-6ad0de5e-f1ce-45d5-b51c-0af0515386a5.shogun-image {
    
    
  }


.s-6ad0de5e-f1ce-45d5-b51c-0af0515386a5 .shogun-image-content {
  
    align-items: center;
  
}

.s-6ad0de5e-f1ce-45d5-b51c-0af0515386a5.shg-align-container {
  text-align: center
}

.s-6ad0de5e-f1ce-45d5-b51c-0af0515386a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6ad0de5e-f1ce-45d5-b51c-0af0515386a5.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-6ad0de5e-f1ce-45d5-b51c-0af0515386a5.shogun-image {
    
    
  }


.s-6ad0de5e-f1ce-45d5-b51c-0af0515386a5 .shogun-image-content {
  
    align-items: center;
  
}

.s-6ad0de5e-f1ce-45d5-b51c-0af0515386a5.shg-align-container {
  text-align: center
}

.s-6ad0de5e-f1ce-45d5-b51c-0af0515386a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6ad0de5e-f1ce-45d5-b51c-0af0515386a5.shogun-image {
  box-sizing: border-box;
}


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





  img.s-6ad0de5e-f1ce-45d5-b51c-0af0515386a5.shogun-image {
    
    
  }


.s-6ad0de5e-f1ce-45d5-b51c-0af0515386a5 .shogun-image-content {
  
    align-items: center;
  
}

.s-6ad0de5e-f1ce-45d5-b51c-0af0515386a5.shg-align-container {
  text-align: center
}

.s-6ad0de5e-f1ce-45d5-b51c-0af0515386a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6ad0de5e-f1ce-45d5-b51c-0af0515386a5.shogun-image {
  box-sizing: border-box;
}


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





  img.s-6ad0de5e-f1ce-45d5-b51c-0af0515386a5.shogun-image {
    
    
  }


.s-6ad0de5e-f1ce-45d5-b51c-0af0515386a5 .shogun-image-content {
  
    align-items: center;
  
}

.s-6ad0de5e-f1ce-45d5-b51c-0af0515386a5.shg-align-container {
  text-align: center
}

.s-6ad0de5e-f1ce-45d5-b51c-0af0515386a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6ad0de5e-f1ce-45d5-b51c-0af0515386a5.shogun-image {
  box-sizing: border-box;
}


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





  img.s-6ad0de5e-f1ce-45d5-b51c-0af0515386a5.shogun-image {
    
    
  }


.s-6ad0de5e-f1ce-45d5-b51c-0af0515386a5 .shogun-image-content {
  
    align-items: center;
  
}

.s-6ad0de5e-f1ce-45d5-b51c-0af0515386a5.shg-align-container {
  text-align: center
}

.s-6ad0de5e-f1ce-45d5-b51c-0af0515386a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6ad0de5e-f1ce-45d5-b51c-0af0515386a5.shogun-image {
  box-sizing: border-box;
}


}
#s-d3c195a3-e45f-4da0-a751-74645d431aca {
  margin-left: 10%;
margin-right: 10%;
}

#s-89cb9936-a6d5-4958-ab9c-e51960070c30 {
  margin-left: 41%;
margin-right: 41%;
text-align: center;
}







  img.s-89cb9936-a6d5-4958-ab9c-e51960070c30.shogun-image {
    
    
  }


.s-89cb9936-a6d5-4958-ab9c-e51960070c30 .shogun-image-content {
  
    align-items: center;
  
}

.s-89cb9936-a6d5-4958-ab9c-e51960070c30.shg-align-container {
  text-align: center
}

.s-89cb9936-a6d5-4958-ab9c-e51960070c30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89cb9936-a6d5-4958-ab9c-e51960070c30.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-89cb9936-a6d5-4958-ab9c-e51960070c30.shogun-image {
    
    
  }


.s-89cb9936-a6d5-4958-ab9c-e51960070c30 .shogun-image-content {
  
    align-items: center;
  
}

.s-89cb9936-a6d5-4958-ab9c-e51960070c30.shg-align-container {
  text-align: center
}

.s-89cb9936-a6d5-4958-ab9c-e51960070c30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89cb9936-a6d5-4958-ab9c-e51960070c30.shogun-image {
  box-sizing: border-box;
}


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





  img.s-89cb9936-a6d5-4958-ab9c-e51960070c30.shogun-image {
    
    
  }


.s-89cb9936-a6d5-4958-ab9c-e51960070c30 .shogun-image-content {
  
    align-items: center;
  
}

.s-89cb9936-a6d5-4958-ab9c-e51960070c30.shg-align-container {
  text-align: center
}

.s-89cb9936-a6d5-4958-ab9c-e51960070c30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89cb9936-a6d5-4958-ab9c-e51960070c30.shogun-image {
  box-sizing: border-box;
}


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





  img.s-89cb9936-a6d5-4958-ab9c-e51960070c30.shogun-image {
    
    
  }


.s-89cb9936-a6d5-4958-ab9c-e51960070c30 .shogun-image-content {
  
    align-items: center;
  
}

.s-89cb9936-a6d5-4958-ab9c-e51960070c30.shg-align-container {
  text-align: center
}

.s-89cb9936-a6d5-4958-ab9c-e51960070c30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89cb9936-a6d5-4958-ab9c-e51960070c30.shogun-image {
  box-sizing: border-box;
}


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





  img.s-89cb9936-a6d5-4958-ab9c-e51960070c30.shogun-image {
    
    
  }


.s-89cb9936-a6d5-4958-ab9c-e51960070c30 .shogun-image-content {
  
    align-items: center;
  
}

.s-89cb9936-a6d5-4958-ab9c-e51960070c30.shg-align-container {
  text-align: center
}

.s-89cb9936-a6d5-4958-ab9c-e51960070c30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89cb9936-a6d5-4958-ab9c-e51960070c30.shogun-image {
  box-sizing: border-box;
}


}
#s-f384df0d-1f8a-4925-8454-bc599ce983b4 {
  margin-left: 10%;
margin-right: 10%;
}

#s-965b6f89-9281-43d8-a449-ccc22f2b572f {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-965b6f89-9281-43d8-a449-ccc22f2b572f:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-965b6f89-9281-43d8-a449-ccc22f2b572f:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-965b6f89-9281-43d8-a449-ccc22f2b572f-root {
    text-align: center;
  }


#s-965b6f89-9281-43d8-a449-ccc22f2b572f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-965b6f89-9281-43d8-a449-ccc22f2b572f-root {
    text-align: center;
  }


#s-965b6f89-9281-43d8-a449-ccc22f2b572f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-965b6f89-9281-43d8-a449-ccc22f2b572f-root {
    text-align: center;
  }


#s-965b6f89-9281-43d8-a449-ccc22f2b572f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-965b6f89-9281-43d8-a449-ccc22f2b572f-root {
    text-align: center;
  }


#s-965b6f89-9281-43d8-a449-ccc22f2b572f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-965b6f89-9281-43d8-a449-ccc22f2b572f-root {
    text-align: center;
  }


#s-965b6f89-9281-43d8-a449-ccc22f2b572f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-965b6f89-9281-43d8-a449-ccc22f2b572f-root {
    text-align: center;
  }


#s-965b6f89-9281-43d8-a449-ccc22f2b572f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-d0f4b6dc-1b81-484d-a8bf-3b192c084c5b {
  margin-left: 0%;
margin-right: 0%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-d0f4b6dc-1b81-484d-a8bf-3b192c084c5b {
  display: none;
}
#s-d0f4b6dc-1b81-484d-a8bf-3b192c084c5b, #wrap-s-d0f4b6dc-1b81-484d-a8bf-3b192c084c5b { display:none !important; }}@media (max-width: 767px){#s-d0f4b6dc-1b81-484d-a8bf-3b192c084c5b {
  display: none;
}
#s-d0f4b6dc-1b81-484d-a8bf-3b192c084c5b, #wrap-s-d0f4b6dc-1b81-484d-a8bf-3b192c084c5b { display:none !important; }}







#s-d0f4b6dc-1b81-484d-a8bf-3b192c084c5b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d0f4b6dc-1b81-484d-a8bf-3b192c084c5b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bd1ce56a-22ce-407c-994d-9f025bd9c6c7 {
  margin-left: 20%;
margin-right: 20%;
min-height: 50px;
background-color: rgba(29, 29, 29, 1);
}








#s-bd1ce56a-22ce-407c-994d-9f025bd9c6c7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bd1ce56a-22ce-407c-994d-9f025bd9c6c7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-309d2228-727f-4eb3-aee1-b98c111da786 {
  margin-top: 1px;
margin-left: 1px;
margin-bottom: 1px;
margin-right: 1px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-309d2228-727f-4eb3-aee1-b98c111da786 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-309d2228-727f-4eb3-aee1-b98c111da786.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d1599a98-8b1b-44fc-95bd-07994ad0524c {
  margin-top: 1%;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-d1599a98-8b1b-44fc-95bd-07994ad0524c .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 17px;
  
  letter-spacing: 5px;
  
}



#s-1b1d1a8a-c06e-477a-909a-f80d3a003533 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1b1d1a8a-c06e-477a-909a-f80d3a003533 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  line-height: 1.5em;
  letter-spacing: 3px;
  
}



#s-6cd06476-0d5a-467c-9b4d-6df0c8f9be1d {
  text-align: center;
}







  img.s-6cd06476-0d5a-467c-9b4d-6df0c8f9be1d.shogun-image {
    
    
  }


.s-6cd06476-0d5a-467c-9b4d-6df0c8f9be1d .shogun-image-content {
  
    align-items: center;
  
}

.s-6cd06476-0d5a-467c-9b4d-6df0c8f9be1d.shg-align-container {
  text-align: center
}

.s-6cd06476-0d5a-467c-9b4d-6df0c8f9be1d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6cd06476-0d5a-467c-9b4d-6df0c8f9be1d.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-6cd06476-0d5a-467c-9b4d-6df0c8f9be1d.shogun-image {
    
    
  }


.s-6cd06476-0d5a-467c-9b4d-6df0c8f9be1d .shogun-image-content {
  
    align-items: center;
  
}

.s-6cd06476-0d5a-467c-9b4d-6df0c8f9be1d.shg-align-container {
  text-align: center
}

.s-6cd06476-0d5a-467c-9b4d-6df0c8f9be1d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6cd06476-0d5a-467c-9b4d-6df0c8f9be1d.shogun-image {
  box-sizing: border-box;
}


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





  img.s-6cd06476-0d5a-467c-9b4d-6df0c8f9be1d.shogun-image {
    
    
  }


.s-6cd06476-0d5a-467c-9b4d-6df0c8f9be1d .shogun-image-content {
  
    align-items: center;
  
}

.s-6cd06476-0d5a-467c-9b4d-6df0c8f9be1d.shg-align-container {
  text-align: center
}

.s-6cd06476-0d5a-467c-9b4d-6df0c8f9be1d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6cd06476-0d5a-467c-9b4d-6df0c8f9be1d.shogun-image {
  box-sizing: border-box;
}


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





  img.s-6cd06476-0d5a-467c-9b4d-6df0c8f9be1d.shogun-image {
    
    
  }


.s-6cd06476-0d5a-467c-9b4d-6df0c8f9be1d .shogun-image-content {
  
    align-items: center;
  
}

.s-6cd06476-0d5a-467c-9b4d-6df0c8f9be1d.shg-align-container {
  text-align: center
}

.s-6cd06476-0d5a-467c-9b4d-6df0c8f9be1d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6cd06476-0d5a-467c-9b4d-6df0c8f9be1d.shogun-image {
  box-sizing: border-box;
}


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





  img.s-6cd06476-0d5a-467c-9b4d-6df0c8f9be1d.shogun-image {
    
    
  }


.s-6cd06476-0d5a-467c-9b4d-6df0c8f9be1d .shogun-image-content {
  
    align-items: center;
  
}

.s-6cd06476-0d5a-467c-9b4d-6df0c8f9be1d.shg-align-container {
  text-align: center
}

.s-6cd06476-0d5a-467c-9b4d-6df0c8f9be1d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6cd06476-0d5a-467c-9b4d-6df0c8f9be1d.shogun-image {
  box-sizing: border-box;
}


}
#s-e6d148bc-6184-4242-92fd-b37874656574 {
  margin-top: 3%;
margin-bottom: 3%;
}

@media (min-width: 0px) {
[id="s-e6d148bc-6184-4242-92fd-b37874656574"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e6d148bc-6184-4242-92fd-b37874656574"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-e6d148bc-6184-4242-92fd-b37874656574"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-e6d148bc-6184-4242-92fd-b37874656574"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-e6d148bc-6184-4242-92fd-b37874656574"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-e6d148bc-6184-4242-92fd-b37874656574"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-e6d148bc-6184-4242-92fd-b37874656574"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-70ee8006-bbd8-473b-914f-02397db1ddf0 {
  margin-top: 5%;
margin-left: 10%;
margin-bottom: 0%;
margin-right: 10%;
}

#s-ec8a7dfb-d092-4b81-bcee-60d41285303a {
  border-style: solid;
margin-top: 0px;
margin-left: auto;
margin-bottom: 5%;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-ec8a7dfb-d092-4b81-bcee-60d41285303a:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-ec8a7dfb-d092-4b81-bcee-60d41285303a:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-ec8a7dfb-d092-4b81-bcee-60d41285303a-root {
    text-align: center;
  }


#s-ec8a7dfb-d092-4b81-bcee-60d41285303a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-ec8a7dfb-d092-4b81-bcee-60d41285303a-root {
    text-align: center;
  }


#s-ec8a7dfb-d092-4b81-bcee-60d41285303a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ec8a7dfb-d092-4b81-bcee-60d41285303a-root {
    text-align: center;
  }


#s-ec8a7dfb-d092-4b81-bcee-60d41285303a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ec8a7dfb-d092-4b81-bcee-60d41285303a-root {
    text-align: center;
  }


#s-ec8a7dfb-d092-4b81-bcee-60d41285303a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-ec8a7dfb-d092-4b81-bcee-60d41285303a-root {
    text-align: center;
  }


#s-ec8a7dfb-d092-4b81-bcee-60d41285303a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-ec8a7dfb-d092-4b81-bcee-60d41285303a-root {
    text-align: center;
  }


#s-ec8a7dfb-d092-4b81-bcee-60d41285303a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-bf2002d4-86cf-48de-8395-c84a5fd29797 {
  margin-top: 10%;
margin-left: 10%;
margin-right: 10%;
}

#s-90c0c693-702f-4ae1-be39-5e7c5e47c374 {
  border-style: solid;
margin-top: 0px;
margin-left: auto;
margin-bottom: 5%;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-90c0c693-702f-4ae1-be39-5e7c5e47c374:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-90c0c693-702f-4ae1-be39-5e7c5e47c374:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-90c0c693-702f-4ae1-be39-5e7c5e47c374-root {
    text-align: center;
  }


#s-90c0c693-702f-4ae1-be39-5e7c5e47c374.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-90c0c693-702f-4ae1-be39-5e7c5e47c374-root {
    text-align: center;
  }


#s-90c0c693-702f-4ae1-be39-5e7c5e47c374.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-90c0c693-702f-4ae1-be39-5e7c5e47c374-root {
    text-align: center;
  }


#s-90c0c693-702f-4ae1-be39-5e7c5e47c374.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-90c0c693-702f-4ae1-be39-5e7c5e47c374-root {
    text-align: center;
  }


#s-90c0c693-702f-4ae1-be39-5e7c5e47c374.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-90c0c693-702f-4ae1-be39-5e7c5e47c374-root {
    text-align: center;
  }


#s-90c0c693-702f-4ae1-be39-5e7c5e47c374.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-90c0c693-702f-4ae1-be39-5e7c5e47c374-root {
    text-align: center;
  }


#s-90c0c693-702f-4ae1-be39-5e7c5e47c374.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-855e188f-3907-487e-b195-e3036dfe8a14 {
  margin-top: 5%;
margin-bottom: 5%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-855e188f-3907-487e-b195-e3036dfe8a14 {
  display: none;
}
#s-855e188f-3907-487e-b195-e3036dfe8a14, #wrap-s-855e188f-3907-487e-b195-e3036dfe8a14 { display:none !important; }}@media (max-width: 767px){#s-855e188f-3907-487e-b195-e3036dfe8a14 {
  display: none;
}
#s-855e188f-3907-487e-b195-e3036dfe8a14, #wrap-s-855e188f-3907-487e-b195-e3036dfe8a14 { display:none !important; }}







#s-855e188f-3907-487e-b195-e3036dfe8a14 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-855e188f-3907-487e-b195-e3036dfe8a14.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6983a2a3-723b-4ec1-8788-12295dab1a3e {
  text-align: center;
}







  img.s-6983a2a3-723b-4ec1-8788-12295dab1a3e.shogun-image {
    
    
  }


.s-6983a2a3-723b-4ec1-8788-12295dab1a3e .shogun-image-content {
  
    align-items: center;
  
}

.s-6983a2a3-723b-4ec1-8788-12295dab1a3e.shg-align-container {
  text-align: center
}

.s-6983a2a3-723b-4ec1-8788-12295dab1a3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6983a2a3-723b-4ec1-8788-12295dab1a3e.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-6983a2a3-723b-4ec1-8788-12295dab1a3e.shogun-image {
    
    
  }


.s-6983a2a3-723b-4ec1-8788-12295dab1a3e .shogun-image-content {
  
    align-items: center;
  
}

.s-6983a2a3-723b-4ec1-8788-12295dab1a3e.shg-align-container {
  text-align: center
}

.s-6983a2a3-723b-4ec1-8788-12295dab1a3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6983a2a3-723b-4ec1-8788-12295dab1a3e.shogun-image {
  box-sizing: border-box;
}


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





  img.s-6983a2a3-723b-4ec1-8788-12295dab1a3e.shogun-image {
    
    
  }


.s-6983a2a3-723b-4ec1-8788-12295dab1a3e .shogun-image-content {
  
    align-items: center;
  
}

.s-6983a2a3-723b-4ec1-8788-12295dab1a3e.shg-align-container {
  text-align: center
}

.s-6983a2a3-723b-4ec1-8788-12295dab1a3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6983a2a3-723b-4ec1-8788-12295dab1a3e.shogun-image {
  box-sizing: border-box;
}


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





  img.s-6983a2a3-723b-4ec1-8788-12295dab1a3e.shogun-image {
    
    
  }


.s-6983a2a3-723b-4ec1-8788-12295dab1a3e .shogun-image-content {
  
    align-items: center;
  
}

.s-6983a2a3-723b-4ec1-8788-12295dab1a3e.shg-align-container {
  text-align: center
}

.s-6983a2a3-723b-4ec1-8788-12295dab1a3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6983a2a3-723b-4ec1-8788-12295dab1a3e.shogun-image {
  box-sizing: border-box;
}


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





  img.s-6983a2a3-723b-4ec1-8788-12295dab1a3e.shogun-image {
    
    
  }


.s-6983a2a3-723b-4ec1-8788-12295dab1a3e .shogun-image-content {
  
    align-items: center;
  
}

.s-6983a2a3-723b-4ec1-8788-12295dab1a3e.shg-align-container {
  text-align: center
}

.s-6983a2a3-723b-4ec1-8788-12295dab1a3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6983a2a3-723b-4ec1-8788-12295dab1a3e.shogun-image {
  box-sizing: border-box;
}


}
#s-0df944bb-16d2-4c92-b8ff-30d6f2e2e7da {
  margin-left: 25%;
margin-right: 25%;
min-height: 50px;
background-color: rgba(255, 255, 255, 0.92);
}








#s-0df944bb-16d2-4c92-b8ff-30d6f2e2e7da > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0df944bb-16d2-4c92-b8ff-30d6f2e2e7da.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-083b14a8-67ce-418f-973a-92569a011363 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-083b14a8-67ce-418f-973a-92569a011363 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  letter-spacing: 3px;
  
}



#s-2b4baae5-f64f-45e4-bc34-73bf4182156d {
  margin-left: 10%;
margin-right: 10%;
}

#s-d3beabc3-4a4e-4346-9248-a637235026fa {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-left: 25%;
padding-bottom: 15px;
padding-right: 25%;
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
}
#s-d3beabc3-4a4e-4346-9248-a637235026fa:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-d3beabc3-4a4e-4346-9248-a637235026fa:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-d3beabc3-4a4e-4346-9248-a637235026fa-root {
    text-align: center;
  }


#s-d3beabc3-4a4e-4346-9248-a637235026fa.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-d3beabc3-4a4e-4346-9248-a637235026fa-root {
    text-align: center;
  }


#s-d3beabc3-4a4e-4346-9248-a637235026fa.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d3beabc3-4a4e-4346-9248-a637235026fa-root {
    text-align: center;
  }


#s-d3beabc3-4a4e-4346-9248-a637235026fa.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d3beabc3-4a4e-4346-9248-a637235026fa-root {
    text-align: center;
  }


#s-d3beabc3-4a4e-4346-9248-a637235026fa.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-d3beabc3-4a4e-4346-9248-a637235026fa-root {
    text-align: center;
  }


#s-d3beabc3-4a4e-4346-9248-a637235026fa.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
  #s-d3beabc3-4a4e-4346-9248-a637235026fa-root {
    text-align: center;
  }


#s-d3beabc3-4a4e-4346-9248-a637235026fa.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-08bbe50e-cffb-4892-bd8f-4ca35b6335ca {
  margin-left: 2%;
margin-right: 2%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-08bbe50e-cffb-4892-bd8f-4ca35b6335ca {
  display: none;
}
#s-08bbe50e-cffb-4892-bd8f-4ca35b6335ca, #wrap-s-08bbe50e-cffb-4892-bd8f-4ca35b6335ca { display:none !important; }}@media (max-width: 767px){#s-08bbe50e-cffb-4892-bd8f-4ca35b6335ca {
  display: none;
}
#s-08bbe50e-cffb-4892-bd8f-4ca35b6335ca, #wrap-s-08bbe50e-cffb-4892-bd8f-4ca35b6335ca { display:none !important; }}







#s-08bbe50e-cffb-4892-bd8f-4ca35b6335ca > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-08bbe50e-cffb-4892-bd8f-4ca35b6335ca.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3b8b0ea8-e7ae-4d42-9b6d-41ac45c2af75 {
  margin-top: 0px;
}

#s-1d8b805d-d78d-4c2b-948b-be2b29680b0a {
  margin-top: 1%;
margin-bottom: 1%;
}

#s-e0c8ee75-5efd-4271-8f84-31b96396b1c2 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-e0c8ee75-5efd-4271-8f84-31b96396b1c2 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-e0c8ee75-5efd-4271-8f84-31b96396b1c2 .shg-sld-nav-button.shg-sld-left,
#s-e0c8ee75-5efd-4271-8f84-31b96396b1c2 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

@media (min-width: 0px) {
[id="s-2c94b6c5-7c78-405d-bbc5-9264cdeee6a0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2c94b6c5-7c78-405d-bbc5-9264cdeee6a0"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 16.666666666666668px);
}

}

@media (min-width: 992px) {
[id="s-2c94b6c5-7c78-405d-bbc5-9264cdeee6a0"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 16.666666666666668px);
}

}

@media (min-width: 1200px) {
[id="s-2c94b6c5-7c78-405d-bbc5-9264cdeee6a0"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 16.666666666666668px);
}

}

#s-d618d458-b88d-4ca7-b209-29a69edc06df {
  text-align: center;
}







  #s-d618d458-b88d-4ca7-b209-29a69edc06df img.shogun-image {
    

    
    
    
  }


#s-d618d458-b88d-4ca7-b209-29a69edc06df .shogun-image-content {
  
    align-items: center;
  
}

#s-52c8e0d5-718e-41d0-887f-aa10ff78506a {
  margin-top: 110%;
margin-left: 46%;
margin-right: 46%;
text-align: center;
}







  #s-52c8e0d5-718e-41d0-887f-aa10ff78506a img.shogun-image {
    

    
    
    
  }


#s-52c8e0d5-718e-41d0-887f-aa10ff78506a .shogun-image-content {
  
    align-items: center;
  
}

#s-48f7a1ce-a8e1-4c51-b684-ce2928b7efe8 {
  margin-top: -2%;
}

#s-08e0d7f7-f6a9-4682-b9a7-3ec4d148d109 {
  margin-left: 5%;
margin-right: 5%;
}

#s-975f4a6d-ddb6-40ba-9815-c4a1eed02cb7 {
  border-style: solid;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 200px;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-975f4a6d-ddb6-40ba-9815-c4a1eed02cb7:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-975f4a6d-ddb6-40ba-9815-c4a1eed02cb7:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-975f4a6d-ddb6-40ba-9815-c4a1eed02cb7-root {
    text-align: center;
  }


#s-975f4a6d-ddb6-40ba-9815-c4a1eed02cb7.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-975f4a6d-ddb6-40ba-9815-c4a1eed02cb7-root {
    text-align: center;
  }


#s-975f4a6d-ddb6-40ba-9815-c4a1eed02cb7.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-975f4a6d-ddb6-40ba-9815-c4a1eed02cb7-root {
    text-align: center;
  }


#s-975f4a6d-ddb6-40ba-9815-c4a1eed02cb7.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-975f4a6d-ddb6-40ba-9815-c4a1eed02cb7-root {
    text-align: center;
  }


#s-975f4a6d-ddb6-40ba-9815-c4a1eed02cb7.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-975f4a6d-ddb6-40ba-9815-c4a1eed02cb7-root {
    text-align: center;
  }


#s-975f4a6d-ddb6-40ba-9815-c4a1eed02cb7.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}
  #s-975f4a6d-ddb6-40ba-9815-c4a1eed02cb7-root {
    text-align: center;
  }


#s-975f4a6d-ddb6-40ba-9815-c4a1eed02cb7.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}

#s-c63160d6-4eb4-4696-b4a8-a63ea7cd09b8 {
  text-align: center;
}







  #s-c63160d6-4eb4-4696-b4a8-a63ea7cd09b8 img.shogun-image {
    

    
    
    
  }


#s-c63160d6-4eb4-4696-b4a8-a63ea7cd09b8 .shogun-image-content {
  
    align-items: center;
  
}

#s-e3667ab9-7673-4bf5-a265-fb0c5d37c30c {
  margin-top: 110%;
margin-left: 46%;
margin-right: 46%;
text-align: center;
}







  #s-e3667ab9-7673-4bf5-a265-fb0c5d37c30c img.shogun-image {
    

    
    
    
  }


#s-e3667ab9-7673-4bf5-a265-fb0c5d37c30c .shogun-image-content {
  
    align-items: center;
  
}

#s-b0152650-0127-43ad-ad34-16fa4dfda939 {
  margin-top: 0px;
margin-bottom: 0px;
}

#s-38f2af47-2ab5-446c-be41-a7b27f077482 {
  margin-top: -2%;
}

#s-3e92b5ef-780d-4937-89f8-375c2967dd66 {
  margin-left: 5%;
margin-right: 5%;
}

#s-62bd263b-6f08-44cd-90d1-87dbb2a24622 {
  border-style: solid;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 200px;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-62bd263b-6f08-44cd-90d1-87dbb2a24622:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-62bd263b-6f08-44cd-90d1-87dbb2a24622:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-62bd263b-6f08-44cd-90d1-87dbb2a24622-root {
    text-align: center;
  }


#s-62bd263b-6f08-44cd-90d1-87dbb2a24622.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-62bd263b-6f08-44cd-90d1-87dbb2a24622-root {
    text-align: center;
  }


#s-62bd263b-6f08-44cd-90d1-87dbb2a24622.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-62bd263b-6f08-44cd-90d1-87dbb2a24622-root {
    text-align: center;
  }


#s-62bd263b-6f08-44cd-90d1-87dbb2a24622.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-62bd263b-6f08-44cd-90d1-87dbb2a24622-root {
    text-align: center;
  }


#s-62bd263b-6f08-44cd-90d1-87dbb2a24622.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-62bd263b-6f08-44cd-90d1-87dbb2a24622-root {
    text-align: center;
  }


#s-62bd263b-6f08-44cd-90d1-87dbb2a24622.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}
  #s-62bd263b-6f08-44cd-90d1-87dbb2a24622-root {
    text-align: center;
  }


#s-62bd263b-6f08-44cd-90d1-87dbb2a24622.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}

#s-7933ef2b-0b0f-4c81-8ec0-f7a00503b4f4 {
  text-align: center;
}







  #s-7933ef2b-0b0f-4c81-8ec0-f7a00503b4f4 img.shogun-image {
    

    
    
    
  }


#s-7933ef2b-0b0f-4c81-8ec0-f7a00503b4f4 .shogun-image-content {
  
    align-items: center;
  
}

#s-6ef7040f-44d0-45c6-bc5e-9c3cfdd2bb13 {
  margin-top: 110%;
margin-left: 46%;
margin-right: 46%;
text-align: center;
}







  #s-6ef7040f-44d0-45c6-bc5e-9c3cfdd2bb13 img.shogun-image {
    

    
    
    
  }


#s-6ef7040f-44d0-45c6-bc5e-9c3cfdd2bb13 .shogun-image-content {
  
    align-items: center;
  
}

#s-ebb0d872-c448-4f82-86b8-d9333bb581c5 {
  margin-top: -2%;
}

#s-add6ce47-e193-4408-8881-98e06c8285a9 {
  margin-left: 5%;
margin-right: 5%;
}

#s-cb507f53-9404-4ea4-bda8-6ecea37df02d {
  border-style: solid;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 200px;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-cb507f53-9404-4ea4-bda8-6ecea37df02d:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-cb507f53-9404-4ea4-bda8-6ecea37df02d:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-cb507f53-9404-4ea4-bda8-6ecea37df02d-root {
    text-align: center;
  }


#s-cb507f53-9404-4ea4-bda8-6ecea37df02d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-cb507f53-9404-4ea4-bda8-6ecea37df02d-root {
    text-align: center;
  }


#s-cb507f53-9404-4ea4-bda8-6ecea37df02d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-cb507f53-9404-4ea4-bda8-6ecea37df02d-root {
    text-align: center;
  }


#s-cb507f53-9404-4ea4-bda8-6ecea37df02d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-cb507f53-9404-4ea4-bda8-6ecea37df02d-root {
    text-align: center;
  }


#s-cb507f53-9404-4ea4-bda8-6ecea37df02d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-cb507f53-9404-4ea4-bda8-6ecea37df02d-root {
    text-align: center;
  }


#s-cb507f53-9404-4ea4-bda8-6ecea37df02d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}
  #s-cb507f53-9404-4ea4-bda8-6ecea37df02d-root {
    text-align: center;
  }


#s-cb507f53-9404-4ea4-bda8-6ecea37df02d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}

@media (min-width: 0px) {
[id="s-8ef27d18-5460-4b1f-93fa-68db2fac7eea"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8ef27d18-5460-4b1f-93fa-68db2fac7eea"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 16.666666666666668px);
}

}

@media (min-width: 992px) {
[id="s-8ef27d18-5460-4b1f-93fa-68db2fac7eea"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 16.666666666666668px);
}

}

@media (min-width: 1200px) {
[id="s-8ef27d18-5460-4b1f-93fa-68db2fac7eea"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 16.666666666666668px);
}

}

#s-3984d155-b354-474d-82c5-bee28a488644 {
  text-align: center;
}







  #s-3984d155-b354-474d-82c5-bee28a488644 img.shogun-image {
    

    
    
    
  }


#s-3984d155-b354-474d-82c5-bee28a488644 .shogun-image-content {
  
    align-items: center;
  
}

#s-39f45c43-4935-427f-a398-08de8ec0b007 {
  margin-top: 110%;
margin-left: 44%;
margin-bottom: 0px;
margin-right: 44%;
text-align: center;
}







  #s-39f45c43-4935-427f-a398-08de8ec0b007 img.shogun-image {
    

    
    
    
  }


#s-39f45c43-4935-427f-a398-08de8ec0b007 .shogun-image-content {
  
    align-items: center;
  
}

#s-0c4e0fd1-9f2c-4998-bda2-5a08549d437f {
  margin-top: 0px;
margin-bottom: 0px;
}

#s-499c48ff-2a70-4ba2-9db9-a777ade14ddb {
  margin-top: -2%;
margin-left: 10%;
margin-right: 10%;
}

#s-e202d1ef-7ee6-4731-9ceb-13e9473733c8 {
  border-style: solid;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 200px;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-e202d1ef-7ee6-4731-9ceb-13e9473733c8:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-e202d1ef-7ee6-4731-9ceb-13e9473733c8:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-e202d1ef-7ee6-4731-9ceb-13e9473733c8-root {
    text-align: center;
  }


#s-e202d1ef-7ee6-4731-9ceb-13e9473733c8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-e202d1ef-7ee6-4731-9ceb-13e9473733c8-root {
    text-align: center;
  }


#s-e202d1ef-7ee6-4731-9ceb-13e9473733c8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e202d1ef-7ee6-4731-9ceb-13e9473733c8-root {
    text-align: center;
  }


#s-e202d1ef-7ee6-4731-9ceb-13e9473733c8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e202d1ef-7ee6-4731-9ceb-13e9473733c8-root {
    text-align: center;
  }


#s-e202d1ef-7ee6-4731-9ceb-13e9473733c8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-e202d1ef-7ee6-4731-9ceb-13e9473733c8-root {
    text-align: center;
  }


#s-e202d1ef-7ee6-4731-9ceb-13e9473733c8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}
  #s-e202d1ef-7ee6-4731-9ceb-13e9473733c8-root {
    text-align: center;
  }


#s-e202d1ef-7ee6-4731-9ceb-13e9473733c8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}

#s-69b7d087-1cd0-4ec8-a2ff-156cfab0f6bc {
  text-align: center;
}







  #s-69b7d087-1cd0-4ec8-a2ff-156cfab0f6bc img.shogun-image {
    

    
    
    
  }


#s-69b7d087-1cd0-4ec8-a2ff-156cfab0f6bc .shogun-image-content {
  
    align-items: center;
  
}

#s-366dbb72-a9cb-4f7a-bf03-accba8d99849 {
  margin-top: 110%;
margin-left: 44%;
margin-bottom: 0px;
margin-right: 44%;
text-align: center;
}







  #s-366dbb72-a9cb-4f7a-bf03-accba8d99849 img.shogun-image {
    

    
    
    
  }


#s-366dbb72-a9cb-4f7a-bf03-accba8d99849 .shogun-image-content {
  
    align-items: center;
  
}

#s-9809e3c1-c346-47e2-b03c-38b57d976596 {
  margin-top: 0px;
margin-bottom: 0px;
}

#s-f8a1ef7b-c89c-49b3-949b-39620081426a {
  margin-top: -2%;
margin-left: 10%;
margin-right: 10%;
}

#s-cb438163-9a2e-492d-9047-76d44f26bb0f {
  border-style: solid;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 200px;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-cb438163-9a2e-492d-9047-76d44f26bb0f:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-cb438163-9a2e-492d-9047-76d44f26bb0f:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-cb438163-9a2e-492d-9047-76d44f26bb0f-root {
    text-align: center;
  }


#s-cb438163-9a2e-492d-9047-76d44f26bb0f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-cb438163-9a2e-492d-9047-76d44f26bb0f-root {
    text-align: center;
  }


#s-cb438163-9a2e-492d-9047-76d44f26bb0f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-cb438163-9a2e-492d-9047-76d44f26bb0f-root {
    text-align: center;
  }


#s-cb438163-9a2e-492d-9047-76d44f26bb0f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-cb438163-9a2e-492d-9047-76d44f26bb0f-root {
    text-align: center;
  }


#s-cb438163-9a2e-492d-9047-76d44f26bb0f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-cb438163-9a2e-492d-9047-76d44f26bb0f-root {
    text-align: center;
  }


#s-cb438163-9a2e-492d-9047-76d44f26bb0f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}
  #s-cb438163-9a2e-492d-9047-76d44f26bb0f-root {
    text-align: center;
  }


#s-cb438163-9a2e-492d-9047-76d44f26bb0f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}

#s-c623af05-a1b7-4e4e-b8f8-493a78a90fe9 {
  text-align: center;
}







  #s-c623af05-a1b7-4e4e-b8f8-493a78a90fe9 img.shogun-image {
    

    
    
    
  }


#s-c623af05-a1b7-4e4e-b8f8-493a78a90fe9 .shogun-image-content {
  
    align-items: center;
  
}

#s-5e2cabdf-1812-4139-894d-3f8723d2e745 {
  margin-top: 110%;
margin-left: 47%;
margin-right: 47%;
text-align: center;
}







  #s-5e2cabdf-1812-4139-894d-3f8723d2e745 img.shogun-image {
    

    
    
    
  }


#s-5e2cabdf-1812-4139-894d-3f8723d2e745 .shogun-image-content {
  
    align-items: center;
  
}

#s-4c7f2a49-15f8-4534-89a1-7bc45c2fa3c3 {
  margin-top: -2%;
margin-left: 10%;
margin-right: 10%;
}

#s-b2253904-f42f-44f5-914e-84d0dfa51dc2 {
  border-style: solid;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 200px;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-b2253904-f42f-44f5-914e-84d0dfa51dc2:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-b2253904-f42f-44f5-914e-84d0dfa51dc2:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-b2253904-f42f-44f5-914e-84d0dfa51dc2-root {
    text-align: center;
  }


#s-b2253904-f42f-44f5-914e-84d0dfa51dc2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-b2253904-f42f-44f5-914e-84d0dfa51dc2-root {
    text-align: center;
  }


#s-b2253904-f42f-44f5-914e-84d0dfa51dc2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b2253904-f42f-44f5-914e-84d0dfa51dc2-root {
    text-align: center;
  }


#s-b2253904-f42f-44f5-914e-84d0dfa51dc2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b2253904-f42f-44f5-914e-84d0dfa51dc2-root {
    text-align: center;
  }


#s-b2253904-f42f-44f5-914e-84d0dfa51dc2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-b2253904-f42f-44f5-914e-84d0dfa51dc2-root {
    text-align: center;
  }


#s-b2253904-f42f-44f5-914e-84d0dfa51dc2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}
  #s-b2253904-f42f-44f5-914e-84d0dfa51dc2-root {
    text-align: center;
  }


#s-b2253904-f42f-44f5-914e-84d0dfa51dc2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}

#s-9b6d2027-4816-4a53-a80d-69ad9b1e07b2 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-9b6d2027-4816-4a53-a80d-69ad9b1e07b2 {
  display: none;
}
#s-9b6d2027-4816-4a53-a80d-69ad9b1e07b2, #wrap-s-9b6d2027-4816-4a53-a80d-69ad9b1e07b2 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9b6d2027-4816-4a53-a80d-69ad9b1e07b2 {
  display: none;
}
#s-9b6d2027-4816-4a53-a80d-69ad9b1e07b2, #wrap-s-9b6d2027-4816-4a53-a80d-69ad9b1e07b2 { display:none !important; }}







#s-9b6d2027-4816-4a53-a80d-69ad9b1e07b2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9b6d2027-4816-4a53-a80d-69ad9b1e07b2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f8f431b0-0268-42c7-b4f8-e132f7259f49 {
  margin-top: 5%;
margin-bottom: 5%;
padding-top: 0px;
padding-bottom: 0px;
}

#s-f8f431b0-0268-42c7-b4f8-e132f7259f49 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-f8f431b0-0268-42c7-b4f8-e132f7259f49 .shg-sld-nav-button.shg-sld-left,
#s-f8f431b0-0268-42c7-b4f8-e132f7259f49 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-ecb48565-3148-4175-a457-60bdb584e042 {
  text-align: center;
}







  img.s-ecb48565-3148-4175-a457-60bdb584e042.shogun-image {
    
    
  }


.s-ecb48565-3148-4175-a457-60bdb584e042 .shogun-image-content {
  
    align-items: center;
  
}

.s-ecb48565-3148-4175-a457-60bdb584e042.shg-align-container {
  text-align: center
}

.s-ecb48565-3148-4175-a457-60bdb584e042.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ecb48565-3148-4175-a457-60bdb584e042.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-ecb48565-3148-4175-a457-60bdb584e042.shogun-image {
    
    
  }


.s-ecb48565-3148-4175-a457-60bdb584e042 .shogun-image-content {
  
    align-items: center;
  
}

.s-ecb48565-3148-4175-a457-60bdb584e042.shg-align-container {
  text-align: center
}

.s-ecb48565-3148-4175-a457-60bdb584e042.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ecb48565-3148-4175-a457-60bdb584e042.shogun-image {
  box-sizing: border-box;
}


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





  img.s-ecb48565-3148-4175-a457-60bdb584e042.shogun-image {
    
    
  }


.s-ecb48565-3148-4175-a457-60bdb584e042 .shogun-image-content {
  
    align-items: center;
  
}

.s-ecb48565-3148-4175-a457-60bdb584e042.shg-align-container {
  text-align: center
}

.s-ecb48565-3148-4175-a457-60bdb584e042.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ecb48565-3148-4175-a457-60bdb584e042.shogun-image {
  box-sizing: border-box;
}


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





  img.s-ecb48565-3148-4175-a457-60bdb584e042.shogun-image {
    
    
  }


.s-ecb48565-3148-4175-a457-60bdb584e042 .shogun-image-content {
  
    align-items: center;
  
}

.s-ecb48565-3148-4175-a457-60bdb584e042.shg-align-container {
  text-align: center
}

.s-ecb48565-3148-4175-a457-60bdb584e042.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ecb48565-3148-4175-a457-60bdb584e042.shogun-image {
  box-sizing: border-box;
}


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





  img.s-ecb48565-3148-4175-a457-60bdb584e042.shogun-image {
    
    
  }


.s-ecb48565-3148-4175-a457-60bdb584e042 .shogun-image-content {
  
    align-items: center;
  
}

.s-ecb48565-3148-4175-a457-60bdb584e042.shg-align-container {
  text-align: center
}

.s-ecb48565-3148-4175-a457-60bdb584e042.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ecb48565-3148-4175-a457-60bdb584e042.shogun-image {
  box-sizing: border-box;
}


}
#s-366b24c1-e22d-4e7b-bf42-71aff480ee5d {
  margin-left: 5%;
margin-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 0.8);
}








#s-366b24c1-e22d-4e7b-bf42-71aff480ee5d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-366b24c1-e22d-4e7b-bf42-71aff480ee5d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2868b50a-db3f-4d5c-8b42-9ac6bd8e4339 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2868b50a-db3f-4d5c-8b42-9ac6bd8e4339 .shogun-heading-component h5 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  
  letter-spacing: 3px;
  
}



#s-e5684f5a-86a5-4064-a53e-d6f34f1e33c7 {
  margin-left: 10%;
margin-right: 10%;
}

#s-9e27afc0-028e-4f87-9b93-e536f27c2cd6 {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-9e27afc0-028e-4f87-9b93-e536f27c2cd6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9e27afc0-028e-4f87-9b93-e536f27c2cd6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b3f14e55-cf84-47fa-939e-90746845c275 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-left: 25%;
padding-bottom: 15px;
padding-right: 25%;
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
}
#s-b3f14e55-cf84-47fa-939e-90746845c275:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-b3f14e55-cf84-47fa-939e-90746845c275:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-b3f14e55-cf84-47fa-939e-90746845c275-root {
    text-align: center;
  }


#s-b3f14e55-cf84-47fa-939e-90746845c275.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-b3f14e55-cf84-47fa-939e-90746845c275-root {
    text-align: center;
  }


#s-b3f14e55-cf84-47fa-939e-90746845c275.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b3f14e55-cf84-47fa-939e-90746845c275-root {
    text-align: center;
  }


#s-b3f14e55-cf84-47fa-939e-90746845c275.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b3f14e55-cf84-47fa-939e-90746845c275-root {
    text-align: center;
  }


#s-b3f14e55-cf84-47fa-939e-90746845c275.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-b3f14e55-cf84-47fa-939e-90746845c275-root {
    text-align: center;
  }


#s-b3f14e55-cf84-47fa-939e-90746845c275.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-b3f14e55-cf84-47fa-939e-90746845c275-root {
    text-align: center;
  }


#s-b3f14e55-cf84-47fa-939e-90746845c275.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-7776ed3a-2249-4758-b8a7-91f486f19715 {
  text-align: center;
}







  img.s-7776ed3a-2249-4758-b8a7-91f486f19715.shogun-image {
    
    
  }


.s-7776ed3a-2249-4758-b8a7-91f486f19715 .shogun-image-content {
  
    align-items: center;
  
}

.s-7776ed3a-2249-4758-b8a7-91f486f19715.shg-align-container {
  text-align: center
}

.s-7776ed3a-2249-4758-b8a7-91f486f19715.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7776ed3a-2249-4758-b8a7-91f486f19715.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-7776ed3a-2249-4758-b8a7-91f486f19715.shogun-image {
    
    
  }


.s-7776ed3a-2249-4758-b8a7-91f486f19715 .shogun-image-content {
  
    align-items: center;
  
}

.s-7776ed3a-2249-4758-b8a7-91f486f19715.shg-align-container {
  text-align: center
}

.s-7776ed3a-2249-4758-b8a7-91f486f19715.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7776ed3a-2249-4758-b8a7-91f486f19715.shogun-image {
  box-sizing: border-box;
}


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





  img.s-7776ed3a-2249-4758-b8a7-91f486f19715.shogun-image {
    
    
  }


.s-7776ed3a-2249-4758-b8a7-91f486f19715 .shogun-image-content {
  
    align-items: center;
  
}

.s-7776ed3a-2249-4758-b8a7-91f486f19715.shg-align-container {
  text-align: center
}

.s-7776ed3a-2249-4758-b8a7-91f486f19715.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7776ed3a-2249-4758-b8a7-91f486f19715.shogun-image {
  box-sizing: border-box;
}


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





  img.s-7776ed3a-2249-4758-b8a7-91f486f19715.shogun-image {
    
    
  }


.s-7776ed3a-2249-4758-b8a7-91f486f19715 .shogun-image-content {
  
    align-items: center;
  
}

.s-7776ed3a-2249-4758-b8a7-91f486f19715.shg-align-container {
  text-align: center
}

.s-7776ed3a-2249-4758-b8a7-91f486f19715.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7776ed3a-2249-4758-b8a7-91f486f19715.shogun-image {
  box-sizing: border-box;
}


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





  img.s-7776ed3a-2249-4758-b8a7-91f486f19715.shogun-image {
    
    
  }


.s-7776ed3a-2249-4758-b8a7-91f486f19715 .shogun-image-content {
  
    align-items: center;
  
}

.s-7776ed3a-2249-4758-b8a7-91f486f19715.shg-align-container {
  text-align: center
}

.s-7776ed3a-2249-4758-b8a7-91f486f19715.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7776ed3a-2249-4758-b8a7-91f486f19715.shogun-image {
  box-sizing: border-box;
}


}
#s-79a66ac9-37fb-4ecf-b35b-f6304a664af7 {
  margin-left: 5%;
margin-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 0.8);
}








#s-79a66ac9-37fb-4ecf-b35b-f6304a664af7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-79a66ac9-37fb-4ecf-b35b-f6304a664af7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-71a52007-8c96-4254-856c-20a2785afbeb {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-71a52007-8c96-4254-856c-20a2785afbeb .shogun-heading-component h5 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  
  letter-spacing: 3px;
  
}



#s-6f05fd4f-841b-4b30-b69f-e380115fe0f5 {
  margin-left: 10%;
margin-right: 10%;
}

#s-74cdff50-96db-463b-afa2-c2ca873e02a2 {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-74cdff50-96db-463b-afa2-c2ca873e02a2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-74cdff50-96db-463b-afa2-c2ca873e02a2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-70102834-d007-42f1-a5ae-689709b9dde0 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-left: 25%;
padding-bottom: 15px;
padding-right: 25%;
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
}
#s-70102834-d007-42f1-a5ae-689709b9dde0:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-70102834-d007-42f1-a5ae-689709b9dde0:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-70102834-d007-42f1-a5ae-689709b9dde0-root {
    text-align: center;
  }


#s-70102834-d007-42f1-a5ae-689709b9dde0.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-70102834-d007-42f1-a5ae-689709b9dde0-root {
    text-align: center;
  }


#s-70102834-d007-42f1-a5ae-689709b9dde0.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-70102834-d007-42f1-a5ae-689709b9dde0-root {
    text-align: center;
  }


#s-70102834-d007-42f1-a5ae-689709b9dde0.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-70102834-d007-42f1-a5ae-689709b9dde0-root {
    text-align: center;
  }


#s-70102834-d007-42f1-a5ae-689709b9dde0.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-70102834-d007-42f1-a5ae-689709b9dde0-root {
    text-align: center;
  }


#s-70102834-d007-42f1-a5ae-689709b9dde0.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-70102834-d007-42f1-a5ae-689709b9dde0-root {
    text-align: center;
  }


#s-70102834-d007-42f1-a5ae-689709b9dde0.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-601f2c6b-0762-4dac-a394-82a3fb6f396e {
  text-align: center;
}







  img.s-601f2c6b-0762-4dac-a394-82a3fb6f396e.shogun-image {
    
    
  }


.s-601f2c6b-0762-4dac-a394-82a3fb6f396e .shogun-image-content {
  
    align-items: center;
  
}

.s-601f2c6b-0762-4dac-a394-82a3fb6f396e.shg-align-container {
  text-align: center
}

.s-601f2c6b-0762-4dac-a394-82a3fb6f396e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-601f2c6b-0762-4dac-a394-82a3fb6f396e.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-601f2c6b-0762-4dac-a394-82a3fb6f396e.shogun-image {
    
    
  }


.s-601f2c6b-0762-4dac-a394-82a3fb6f396e .shogun-image-content {
  
    align-items: center;
  
}

.s-601f2c6b-0762-4dac-a394-82a3fb6f396e.shg-align-container {
  text-align: center
}

.s-601f2c6b-0762-4dac-a394-82a3fb6f396e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-601f2c6b-0762-4dac-a394-82a3fb6f396e.shogun-image {
  box-sizing: border-box;
}


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





  img.s-601f2c6b-0762-4dac-a394-82a3fb6f396e.shogun-image {
    
    
  }


.s-601f2c6b-0762-4dac-a394-82a3fb6f396e .shogun-image-content {
  
    align-items: center;
  
}

.s-601f2c6b-0762-4dac-a394-82a3fb6f396e.shg-align-container {
  text-align: center
}

.s-601f2c6b-0762-4dac-a394-82a3fb6f396e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-601f2c6b-0762-4dac-a394-82a3fb6f396e.shogun-image {
  box-sizing: border-box;
}


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





  img.s-601f2c6b-0762-4dac-a394-82a3fb6f396e.shogun-image {
    
    
  }


.s-601f2c6b-0762-4dac-a394-82a3fb6f396e .shogun-image-content {
  
    align-items: center;
  
}

.s-601f2c6b-0762-4dac-a394-82a3fb6f396e.shg-align-container {
  text-align: center
}

.s-601f2c6b-0762-4dac-a394-82a3fb6f396e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-601f2c6b-0762-4dac-a394-82a3fb6f396e.shogun-image {
  box-sizing: border-box;
}


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





  img.s-601f2c6b-0762-4dac-a394-82a3fb6f396e.shogun-image {
    
    
  }


.s-601f2c6b-0762-4dac-a394-82a3fb6f396e .shogun-image-content {
  
    align-items: center;
  
}

.s-601f2c6b-0762-4dac-a394-82a3fb6f396e.shg-align-container {
  text-align: center
}

.s-601f2c6b-0762-4dac-a394-82a3fb6f396e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-601f2c6b-0762-4dac-a394-82a3fb6f396e.shogun-image {
  box-sizing: border-box;
}


}
#s-65c6a8a8-a9e5-4be3-8ac3-5dde842a3906 {
  margin-left: 5%;
margin-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 0.8);
}








#s-65c6a8a8-a9e5-4be3-8ac3-5dde842a3906 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-65c6a8a8-a9e5-4be3-8ac3-5dde842a3906.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4604e457-2c8b-4bb5-a4d1-1361c1b805fd {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4604e457-2c8b-4bb5-a4d1-1361c1b805fd .shogun-heading-component h5 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  
  letter-spacing: 3px;
  
}



#s-6e5d4261-0a8a-494b-b167-1f17f2d55ca3 {
  margin-left: 10%;
margin-right: 10%;
}

#s-8b591ba5-0c5f-415d-bae0-264cf964d65a {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-8b591ba5-0c5f-415d-bae0-264cf964d65a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8b591ba5-0c5f-415d-bae0-264cf964d65a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8bc4dcbb-8d9f-461b-90f9-c9cba4ba5cfb {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-left: 25%;
padding-bottom: 15px;
padding-right: 25%;
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
}
#s-8bc4dcbb-8d9f-461b-90f9-c9cba4ba5cfb:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-8bc4dcbb-8d9f-461b-90f9-c9cba4ba5cfb:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-8bc4dcbb-8d9f-461b-90f9-c9cba4ba5cfb-root {
    text-align: center;
  }


#s-8bc4dcbb-8d9f-461b-90f9-c9cba4ba5cfb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-8bc4dcbb-8d9f-461b-90f9-c9cba4ba5cfb-root {
    text-align: center;
  }


#s-8bc4dcbb-8d9f-461b-90f9-c9cba4ba5cfb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-8bc4dcbb-8d9f-461b-90f9-c9cba4ba5cfb-root {
    text-align: center;
  }


#s-8bc4dcbb-8d9f-461b-90f9-c9cba4ba5cfb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-8bc4dcbb-8d9f-461b-90f9-c9cba4ba5cfb-root {
    text-align: center;
  }


#s-8bc4dcbb-8d9f-461b-90f9-c9cba4ba5cfb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-8bc4dcbb-8d9f-461b-90f9-c9cba4ba5cfb-root {
    text-align: center;
  }


#s-8bc4dcbb-8d9f-461b-90f9-c9cba4ba5cfb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-8bc4dcbb-8d9f-461b-90f9-c9cba4ba5cfb-root {
    text-align: center;
  }


#s-8bc4dcbb-8d9f-461b-90f9-c9cba4ba5cfb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-6a53042c-2b74-4aef-9ac1-ecfbd9b53032 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
min-height: 50px;
}
@media (min-width: 1200px){#s-6a53042c-2b74-4aef-9ac1-ecfbd9b53032 {
  display: none;
}
#s-6a53042c-2b74-4aef-9ac1-ecfbd9b53032, #wrap-s-6a53042c-2b74-4aef-9ac1-ecfbd9b53032 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6a53042c-2b74-4aef-9ac1-ecfbd9b53032 {
  display: none;
}
#s-6a53042c-2b74-4aef-9ac1-ecfbd9b53032, #wrap-s-6a53042c-2b74-4aef-9ac1-ecfbd9b53032 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-6a53042c-2b74-4aef-9ac1-ecfbd9b53032 {
  
}
}







#s-6a53042c-2b74-4aef-9ac1-ecfbd9b53032 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6a53042c-2b74-4aef-9ac1-ecfbd9b53032.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b20f3b02-63b1-4ada-9a81-0eec5c6df645 {
  margin-top: 0px;
}

#s-2406f85b-9055-4ea1-94af-6f89d1ed4cd3 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 0%;
}
@media (min-width: 768px) and (max-width: 991px){#s-2406f85b-9055-4ea1-94af-6f89d1ed4cd3 {
  padding-left: 15%;
padding-right: 15%;
}
}
#s-2406f85b-9055-4ea1-94af-6f89d1ed4cd3 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-2406f85b-9055-4ea1-94af-6f89d1ed4cd3 .shg-sld-nav-button.shg-sld-left,
#s-2406f85b-9055-4ea1-94af-6f89d1ed4cd3 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-ef8a0e68-810a-4597-ba93-4eead6b94251 {
  text-align: center;
}







  #s-ef8a0e68-810a-4597-ba93-4eead6b94251 img.shogun-image {
    

    
    
    
  }


#s-ef8a0e68-810a-4597-ba93-4eead6b94251 .shogun-image-content {
  
    align-items: center;
  
}

#s-caac056b-e7c2-4897-86bb-6045a414799d {
  margin-top: 110%;
margin-left: 46%;
margin-right: 46%;
text-align: center;
}







  #s-caac056b-e7c2-4897-86bb-6045a414799d img.shogun-image {
    

    
    
    
  }


#s-caac056b-e7c2-4897-86bb-6045a414799d .shogun-image-content {
  
    align-items: center;
  
}

#s-9b11361e-b410-4aa3-8379-b472415758a7 {
  margin-top: 0px;
margin-bottom: 0px;
}

#s-77b00c7a-bc12-4721-9c84-a8fefe4593d2 {
  margin-top: -20px;
margin-left: 10%;
margin-right: 10%;
}

#s-7d4439b5-8ed9-44aa-a187-b4df4ad09eb6 {
  margin-left: 3%;
margin-right: 3%;
}

#s-c8164c5c-ab79-4202-8f00-aa32cd4f7b0e {
  border-style: solid;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 5px;
padding-bottom: 5px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 200px;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-c8164c5c-ab79-4202-8f00-aa32cd4f7b0e:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-c8164c5c-ab79-4202-8f00-aa32cd4f7b0e:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-c8164c5c-ab79-4202-8f00-aa32cd4f7b0e-root {
    text-align: center;
  }


#s-c8164c5c-ab79-4202-8f00-aa32cd4f7b0e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-c8164c5c-ab79-4202-8f00-aa32cd4f7b0e-root {
    text-align: center;
  }


#s-c8164c5c-ab79-4202-8f00-aa32cd4f7b0e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c8164c5c-ab79-4202-8f00-aa32cd4f7b0e-root {
    text-align: center;
  }


#s-c8164c5c-ab79-4202-8f00-aa32cd4f7b0e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c8164c5c-ab79-4202-8f00-aa32cd4f7b0e-root {
    text-align: center;
  }


#s-c8164c5c-ab79-4202-8f00-aa32cd4f7b0e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-c8164c5c-ab79-4202-8f00-aa32cd4f7b0e-root {
    text-align: center;
  }


#s-c8164c5c-ab79-4202-8f00-aa32cd4f7b0e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}
  #s-c8164c5c-ab79-4202-8f00-aa32cd4f7b0e-root {
    text-align: center;
  }


#s-c8164c5c-ab79-4202-8f00-aa32cd4f7b0e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}

#s-50f7e8c9-df7e-4e83-8097-8fdd4243d1f9 {
  text-align: center;
}







  #s-50f7e8c9-df7e-4e83-8097-8fdd4243d1f9 img.shogun-image {
    

    
    
    
  }


#s-50f7e8c9-df7e-4e83-8097-8fdd4243d1f9 .shogun-image-content {
  
    align-items: center;
  
}

#s-bfc03216-1658-42b7-8658-c74dff82d8cf {
  margin-top: 110%;
margin-left: 46%;
margin-right: 46%;
text-align: center;
}







  #s-bfc03216-1658-42b7-8658-c74dff82d8cf img.shogun-image {
    

    
    
    
  }


#s-bfc03216-1658-42b7-8658-c74dff82d8cf .shogun-image-content {
  
    align-items: center;
  
}

#s-79a876b3-6962-4e1f-896d-510292f9c45a {
  margin-top: 0px;
margin-bottom: 0px;
}

#s-db4714c5-9959-42d1-ae27-1f24d575a7d3 {
  margin-top: -20px;
margin-left: 10%;
margin-right: 10%;
}

#s-073d977d-6d1a-4286-9062-56102b2d92e8 {
  margin-left: 3%;
margin-right: 3%;
}

#s-4019ee1a-59f5-4b06-8e65-1b69f4efc244 {
  border-style: solid;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 5px;
padding-bottom: 5px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 200px;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-4019ee1a-59f5-4b06-8e65-1b69f4efc244:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-4019ee1a-59f5-4b06-8e65-1b69f4efc244:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-4019ee1a-59f5-4b06-8e65-1b69f4efc244-root {
    text-align: center;
  }


#s-4019ee1a-59f5-4b06-8e65-1b69f4efc244.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-4019ee1a-59f5-4b06-8e65-1b69f4efc244-root {
    text-align: center;
  }


#s-4019ee1a-59f5-4b06-8e65-1b69f4efc244.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4019ee1a-59f5-4b06-8e65-1b69f4efc244-root {
    text-align: center;
  }


#s-4019ee1a-59f5-4b06-8e65-1b69f4efc244.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4019ee1a-59f5-4b06-8e65-1b69f4efc244-root {
    text-align: center;
  }


#s-4019ee1a-59f5-4b06-8e65-1b69f4efc244.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-4019ee1a-59f5-4b06-8e65-1b69f4efc244-root {
    text-align: center;
  }


#s-4019ee1a-59f5-4b06-8e65-1b69f4efc244.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}
  #s-4019ee1a-59f5-4b06-8e65-1b69f4efc244-root {
    text-align: center;
  }


#s-4019ee1a-59f5-4b06-8e65-1b69f4efc244.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}

#s-72121ce9-081f-4ff2-9938-d143949bd3e8 {
  text-align: center;
}







  #s-72121ce9-081f-4ff2-9938-d143949bd3e8 img.shogun-image {
    

    
    
    
  }


#s-72121ce9-081f-4ff2-9938-d143949bd3e8 .shogun-image-content {
  
    align-items: center;
  
}

#s-0546bf82-0114-4171-a74d-82012900b327 {
  margin-top: 110%;
margin-left: 46%;
margin-right: 46%;
text-align: center;
}







  #s-0546bf82-0114-4171-a74d-82012900b327 img.shogun-image {
    

    
    
    
  }


#s-0546bf82-0114-4171-a74d-82012900b327 .shogun-image-content {
  
    align-items: center;
  
}

#s-1384a896-3a39-45ae-8ca4-6944b0ecd0ee {
  margin-top: 0px;
margin-bottom: 0px;
}

#s-39513edb-aa1e-41c1-9c60-a792dc3982e3 {
  margin-top: -20px;
margin-left: 10%;
margin-right: 10%;
}

#s-1d74b6f5-4c46-42d1-91dc-67040915dc2e {
  margin-left: 3%;
margin-right: 3%;
}

#s-712b46bd-9ebb-40b0-bcaa-c9a372eaf3ca {
  border-style: solid;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 5px;
padding-bottom: 5px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 200px;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-712b46bd-9ebb-40b0-bcaa-c9a372eaf3ca:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-712b46bd-9ebb-40b0-bcaa-c9a372eaf3ca:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-712b46bd-9ebb-40b0-bcaa-c9a372eaf3ca-root {
    text-align: center;
  }


#s-712b46bd-9ebb-40b0-bcaa-c9a372eaf3ca.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-712b46bd-9ebb-40b0-bcaa-c9a372eaf3ca-root {
    text-align: center;
  }


#s-712b46bd-9ebb-40b0-bcaa-c9a372eaf3ca.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-712b46bd-9ebb-40b0-bcaa-c9a372eaf3ca-root {
    text-align: center;
  }


#s-712b46bd-9ebb-40b0-bcaa-c9a372eaf3ca.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-712b46bd-9ebb-40b0-bcaa-c9a372eaf3ca-root {
    text-align: center;
  }


#s-712b46bd-9ebb-40b0-bcaa-c9a372eaf3ca.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-712b46bd-9ebb-40b0-bcaa-c9a372eaf3ca-root {
    text-align: center;
  }


#s-712b46bd-9ebb-40b0-bcaa-c9a372eaf3ca.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}
  #s-712b46bd-9ebb-40b0-bcaa-c9a372eaf3ca-root {
    text-align: center;
  }


#s-712b46bd-9ebb-40b0-bcaa-c9a372eaf3ca.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}

#s-a0a20f12-0d2d-4617-a4e0-d300ab8b550d {
  text-align: center;
}







  #s-a0a20f12-0d2d-4617-a4e0-d300ab8b550d img.shogun-image {
    

    
    
    
  }


#s-a0a20f12-0d2d-4617-a4e0-d300ab8b550d .shogun-image-content {
  
    align-items: center;
  
}

#s-34f19f7b-d3e6-4701-bd7f-ec085a8b6e13 {
  margin-top: 110%;
margin-left: 48%;
margin-right: 48%;
text-align: center;
}







  #s-34f19f7b-d3e6-4701-bd7f-ec085a8b6e13 img.shogun-image {
    

    
    
    
  }


#s-34f19f7b-d3e6-4701-bd7f-ec085a8b6e13 .shogun-image-content {
  
    align-items: center;
  
}

#s-e147a76b-6512-45dc-bf8c-2c0cdf1ba0c5 {
  margin-top: 0px;
margin-bottom: 0px;
}

#s-b77c6064-f4c1-4924-b1e9-3a12f2a2e0db {
  margin-top: -20px;
margin-left: 10%;
margin-right: 10%;
}

#s-80786809-c01d-476a-9619-e94a6b89f7b8 {
  border-style: solid;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 5px;
padding-bottom: 5px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 200px;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-80786809-c01d-476a-9619-e94a6b89f7b8:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-80786809-c01d-476a-9619-e94a6b89f7b8:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-80786809-c01d-476a-9619-e94a6b89f7b8-root {
    text-align: center;
  }


#s-80786809-c01d-476a-9619-e94a6b89f7b8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-80786809-c01d-476a-9619-e94a6b89f7b8-root {
    text-align: center;
  }


#s-80786809-c01d-476a-9619-e94a6b89f7b8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-80786809-c01d-476a-9619-e94a6b89f7b8-root {
    text-align: center;
  }


#s-80786809-c01d-476a-9619-e94a6b89f7b8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-80786809-c01d-476a-9619-e94a6b89f7b8-root {
    text-align: center;
  }


#s-80786809-c01d-476a-9619-e94a6b89f7b8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-80786809-c01d-476a-9619-e94a6b89f7b8-root {
    text-align: center;
  }


#s-80786809-c01d-476a-9619-e94a6b89f7b8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}
  #s-80786809-c01d-476a-9619-e94a6b89f7b8-root {
    text-align: center;
  }


#s-80786809-c01d-476a-9619-e94a6b89f7b8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}

#s-74d77731-09d4-466e-aac3-a451682bf03a {
  margin-left: 0%;
margin-right: 0%;
text-align: center;
}







  #s-74d77731-09d4-466e-aac3-a451682bf03a img.shogun-image {
    

    
    
    
  }


#s-74d77731-09d4-466e-aac3-a451682bf03a .shogun-image-content {
  
    align-items: center;
  
}

#s-95f2087b-b9ee-43a0-9ab1-7908690723de {
  margin-top: 400px;
margin-left: 46%;
margin-right: 46%;
text-align: center;
}







  #s-95f2087b-b9ee-43a0-9ab1-7908690723de img.shogun-image {
    

    
    
    
  }


#s-95f2087b-b9ee-43a0-9ab1-7908690723de .shogun-image-content {
  
    align-items: center;
  
}

#s-b903aedb-768b-4994-804c-a3bb3260ac6f {
  margin-top: 0px;
margin-bottom: 0px;
}

#s-36cae486-6863-47a3-aaea-033d35083583 {
  margin-top: -20px;
}

#s-0b03ed19-b1b5-4da1-bb9d-adbb2e93e765 {
  margin-left: 5%;
margin-right: 5%;
}

#s-8198ebd1-bea0-4327-8f10-5a16a8b76482 {
  border-style: solid;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 5px;
padding-bottom: 5px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 200px;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-8198ebd1-bea0-4327-8f10-5a16a8b76482:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-8198ebd1-bea0-4327-8f10-5a16a8b76482:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-8198ebd1-bea0-4327-8f10-5a16a8b76482-root {
    text-align: center;
  }


#s-8198ebd1-bea0-4327-8f10-5a16a8b76482.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-8198ebd1-bea0-4327-8f10-5a16a8b76482-root {
    text-align: center;
  }


#s-8198ebd1-bea0-4327-8f10-5a16a8b76482.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-8198ebd1-bea0-4327-8f10-5a16a8b76482-root {
    text-align: center;
  }


#s-8198ebd1-bea0-4327-8f10-5a16a8b76482.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-8198ebd1-bea0-4327-8f10-5a16a8b76482-root {
    text-align: center;
  }


#s-8198ebd1-bea0-4327-8f10-5a16a8b76482.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-8198ebd1-bea0-4327-8f10-5a16a8b76482-root {
    text-align: center;
  }


#s-8198ebd1-bea0-4327-8f10-5a16a8b76482.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}
  #s-8198ebd1-bea0-4327-8f10-5a16a8b76482-root {
    text-align: center;
  }


#s-8198ebd1-bea0-4327-8f10-5a16a8b76482.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}

#s-a37d031f-0313-4362-9b40-241a665458bd {
  margin-left: 0%;
margin-right: 0%;
text-align: center;
}







  #s-a37d031f-0313-4362-9b40-241a665458bd img.shogun-image {
    

    
    
    
  }


#s-a37d031f-0313-4362-9b40-241a665458bd .shogun-image-content {
  
    align-items: center;
  
}

#s-37aa8d8f-150e-4f67-8517-9f2d6cea9781 {
  margin-top: 110%;
margin-left: 46.5%;
margin-right: 46.5%;
text-align: center;
}







  #s-37aa8d8f-150e-4f67-8517-9f2d6cea9781 img.shogun-image {
    

    
    
    
  }


#s-37aa8d8f-150e-4f67-8517-9f2d6cea9781 .shogun-image-content {
  
    align-items: center;
  
}

#s-0eda1a12-491b-43a9-ac5d-ea22e9481dea {
  margin-top: -20px;
margin-left: 10%;
margin-right: 10%;
}

#s-77c7d1ca-94aa-4526-86fb-a7bd22c9fb28 {
  border-style: solid;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 5px;
padding-bottom: 5px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 200px;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-77c7d1ca-94aa-4526-86fb-a7bd22c9fb28:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-77c7d1ca-94aa-4526-86fb-a7bd22c9fb28:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-77c7d1ca-94aa-4526-86fb-a7bd22c9fb28-root {
    text-align: center;
  }


#s-77c7d1ca-94aa-4526-86fb-a7bd22c9fb28.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-77c7d1ca-94aa-4526-86fb-a7bd22c9fb28-root {
    text-align: center;
  }


#s-77c7d1ca-94aa-4526-86fb-a7bd22c9fb28.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-77c7d1ca-94aa-4526-86fb-a7bd22c9fb28-root {
    text-align: center;
  }


#s-77c7d1ca-94aa-4526-86fb-a7bd22c9fb28.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-77c7d1ca-94aa-4526-86fb-a7bd22c9fb28-root {
    text-align: center;
  }


#s-77c7d1ca-94aa-4526-86fb-a7bd22c9fb28.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-77c7d1ca-94aa-4526-86fb-a7bd22c9fb28-root {
    text-align: center;
  }


#s-77c7d1ca-94aa-4526-86fb-a7bd22c9fb28.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}
  #s-77c7d1ca-94aa-4526-86fb-a7bd22c9fb28-root {
    text-align: center;
  }


#s-77c7d1ca-94aa-4526-86fb-a7bd22c9fb28.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}

#s-15102b93-2c18-4394-ad9a-58962b386091 {
  margin-left: 0%;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
text-align: center;
}







  #s-15102b93-2c18-4394-ad9a-58962b386091 img.shogun-image {
    

    
    
    
  }


#s-15102b93-2c18-4394-ad9a-58962b386091 .shogun-image-content {
  
    align-items: center;
  
}

#s-f93dc607-a5a3-4a0e-be30-33fbd3fc0285 {
  margin-top: 110%;
margin-left: 46%;
margin-right: 46%;
text-align: center;
}







  #s-f93dc607-a5a3-4a0e-be30-33fbd3fc0285 img.shogun-image {
    

    
    
    
  }


#s-f93dc607-a5a3-4a0e-be30-33fbd3fc0285 .shogun-image-content {
  
    align-items: center;
  
}

#s-0cc555a0-7e72-4d1b-97ae-5ede6f08106d {
  margin-left: 0%;
margin-right: 0%;
}

#s-ae085e57-83f3-4ebc-b7f5-2828d8bd6604 {
  margin-top: -20px;
margin-left: 15%;
margin-right: 15%;
}

#s-686dfa89-63f3-46ad-bb5c-5d66ab89426b {
  border-style: solid;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 5px;
padding-bottom: 5px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 200px;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-686dfa89-63f3-46ad-bb5c-5d66ab89426b:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-686dfa89-63f3-46ad-bb5c-5d66ab89426b:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-686dfa89-63f3-46ad-bb5c-5d66ab89426b-root {
    text-align: center;
  }


#s-686dfa89-63f3-46ad-bb5c-5d66ab89426b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-686dfa89-63f3-46ad-bb5c-5d66ab89426b-root {
    text-align: center;
  }


#s-686dfa89-63f3-46ad-bb5c-5d66ab89426b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-686dfa89-63f3-46ad-bb5c-5d66ab89426b-root {
    text-align: center;
  }


#s-686dfa89-63f3-46ad-bb5c-5d66ab89426b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-686dfa89-63f3-46ad-bb5c-5d66ab89426b-root {
    text-align: center;
  }


#s-686dfa89-63f3-46ad-bb5c-5d66ab89426b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-686dfa89-63f3-46ad-bb5c-5d66ab89426b-root {
    text-align: center;
  }


#s-686dfa89-63f3-46ad-bb5c-5d66ab89426b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}
  #s-686dfa89-63f3-46ad-bb5c-5d66ab89426b-root {
    text-align: center;
  }


#s-686dfa89-63f3-46ad-bb5c-5d66ab89426b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}

@charset "UTF-8";/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */:root{--animate-duration:1s;--animate-delay:1s;--animate-repeat:1}.animate__animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-duration:var(--animate-duration);animation-duration:var(--animate-duration);-webkit-animation-fill-mode:both;animation-fill-mode:both}.animate__animated.animate__infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animate__animated.animate__repeat-1{-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-iteration-count:var(--animate-repeat);animation-iteration-count:var(--animate-repeat)}.animate__animated.animate__repeat-2{-webkit-animation-iteration-count:2;animation-iteration-count:2;-webkit-animation-iteration-count:calc(var(--animate-repeat)*2);animation-iteration-count:calc(var(--animate-repeat)*2)}.animate__animated.animate__repeat-3{-webkit-animation-iteration-count:3;animation-iteration-count:3;-webkit-animation-iteration-count:calc(var(--animate-repeat)*3);animation-iteration-count:calc(var(--animate-repeat)*3)}.animate__animated.animate__delay-1s{-webkit-animation-delay:1s;animation-delay:1s;-webkit-animation-delay:var(--animate-delay);animation-delay:var(--animate-delay)}.animate__animated.animate__delay-2s{-webkit-animation-delay:2s;animation-delay:2s;-webkit-animation-delay:calc(var(--animate-delay)*2);animation-delay:calc(var(--animate-delay)*2)}.animate__animated.animate__delay-3s{-webkit-animation-delay:3s;animation-delay:3s;-webkit-animation-delay:calc(var(--animate-delay)*3);animation-delay:calc(var(--animate-delay)*3)}.animate__animated.animate__delay-4s{-webkit-animation-delay:4s;animation-delay:4s;-webkit-animation-delay:calc(var(--animate-delay)*4);animation-delay:calc(var(--animate-delay)*4)}.animate__animated.animate__delay-5s{-webkit-animation-delay:5s;animation-delay:5s;-webkit-animation-delay:calc(var(--animate-delay)*5);animation-delay:calc(var(--animate-delay)*5)}.animate__animated.animate__faster{-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-duration:calc(var(--animate-duration)/2);animation-duration:calc(var(--animate-duration)/2)}.animate__animated.animate__fast{-webkit-animation-duration:.8s;animation-duration:.8s;-webkit-animation-duration:calc(var(--animate-duration)*0.8);animation-duration:calc(var(--animate-duration)*0.8)}.animate__animated.animate__slow{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-duration:calc(var(--animate-duration)*2);animation-duration:calc(var(--animate-duration)*2)}.animate__animated.animate__slower{-webkit-animation-duration:3s;animation-duration:3s;-webkit-animation-duration:calc(var(--animate-duration)*3);animation-duration:calc(var(--animate-duration)*3)}@media (prefers-reduced-motion:reduce),print{.animate__animated{-webkit-animation-duration:1ms!important;animation-duration:1ms!important;-webkit-transition-duration:1ms!important;transition-duration:1ms!important;-webkit-animation-iteration-count:1!important;animation-iteration-count:1!important}.animate__animated[class*=Out]{opacity:0}}@-webkit-keyframes bounce{0%,20%,53%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0);transform:translateZ(0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0) scaleY(1.1);transform:translate3d(0,-30px,0) scaleY(1.1)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0) scaleY(1.05);transform:translate3d(0,-15px,0) scaleY(1.05)}80%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0) scaleY(.95);transform:translateZ(0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-4px,0) scaleY(1.02);transform:translate3d(0,-4px,0) scaleY(1.02)}}@keyframes bounce{0%,20%,53%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0);transform:translateZ(0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0) scaleY(1.1);transform:translate3d(0,-30px,0) scaleY(1.1)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0) scaleY(1.05);transform:translate3d(0,-15px,0) scaleY(1.05)}80%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0) scaleY(.95);transform:translateZ(0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-4px,0) scaleY(1.02);transform:translate3d(0,-4px,0) scaleY(1.02)}}.animate__bounce{-webkit-animation-name:bounce;animation-name:bounce;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}.animate__flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes pulse{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__pulse{-webkit-animation-name:pulse;animation-name:pulse;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}@-webkit-keyframes rubberBand{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes rubberBand{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shakeX{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@keyframes shakeX{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}.animate__shakeX{-webkit-animation-name:shakeX;animation-name:shakeX}@-webkit-keyframes shakeY{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}20%,40%,60%,80%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}}@keyframes shakeY{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}20%,40%,60%,80%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}}.animate__shakeY{-webkit-animation-name:shakeY;animation-name:shakeY}@-webkit-keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}.animate__headShake{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-name:headShake;animation-name:headShake}@-webkit-keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}.animate__swing{-webkit-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate(-3deg);transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(3deg);transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(-3deg);transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate(-3deg);transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(3deg);transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(-3deg);transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate(-5deg);transform:translate3d(-25%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate(3deg);transform:translate3d(20%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate(-3deg);transform:translate3d(-15%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate(2deg);transform:translate3d(10%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes wobble{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate(-5deg);transform:translate3d(-25%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate(3deg);transform:translate3d(20%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate(-3deg);transform:translate3d(-15%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate(2deg);transform:translate3d(10%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes jello{0%,11.1%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}@keyframes jello{0%,11.1%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}.animate__jello{-webkit-animation-name:jello;animation-name:jello;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}.animate__heartBeat{-webkit-animation-name:heartBeat;animation-name:heartBeat;-webkit-animation-duration:1.3s;animation-duration:1.3s;-webkit-animation-duration:calc(var(--animate-duration)*1.3);animation-duration:calc(var(--animate-duration)*1.3);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}@-webkit-keyframes backInDown{0%{-webkit-transform:translateY(-1200px) scale(.7);transform:translateY(-1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInDown{0%{-webkit-transform:translateY(-1200px) scale(.7);transform:translateY(-1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInDown{-webkit-animation-name:backInDown;animation-name:backInDown}@-webkit-keyframes backInLeft{0%{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInLeft{0%{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInLeft{-webkit-animation-name:backInLeft;animation-name:backInLeft}@-webkit-keyframes backInRight{0%{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInRight{0%{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInRight{-webkit-animation-name:backInRight;animation-name:backInRight}@-webkit-keyframes backInUp{0%{-webkit-transform:translateY(1200px) scale(.7);transform:translateY(1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInUp{0%{-webkit-transform:translateY(1200px) scale(.7);transform:translateY(1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInUp{-webkit-animation-name:backInUp;animation-name:backInUp}@-webkit-keyframes backOutDown{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(700px) scale(.7);transform:translateY(700px) scale(.7);opacity:.7}}@keyframes backOutDown{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(700px) scale(.7);transform:translateY(700px) scale(.7);opacity:.7}}.animate__backOutDown{-webkit-animation-name:backOutDown;animation-name:backOutDown}@-webkit-keyframes backOutLeft{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}}@keyframes backOutLeft{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}}.animate__backOutLeft{-webkit-animation-name:backOutLeft;animation-name:backOutLeft}@-webkit-keyframes backOutRight{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}}@keyframes backOutRight{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}}.animate__backOutRight{-webkit-animation-name:backOutRight;animation-name:backOutRight}@-webkit-keyframes backOutUp{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(-700px) scale(.7);transform:translateY(-700px) scale(.7);opacity:.7}}@keyframes backOutUp{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(-700px) scale(.7);transform:translateY(-700px) scale(.7);opacity:.7}}.animate__backOutUp{-webkit-animation-name:backOutUp;animation-name:backOutUp}@-webkit-keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__bounceIn{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0) scaleY(3);transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0) scaleY(.9);transform:translate3d(0,25px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,-10px,0) scaleY(.95);transform:translate3d(0,-10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,5px,0) scaleY(.985);transform:translate3d(0,5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0) scaleY(3);transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0) scaleY(.9);transform:translate3d(0,25px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,-10px,0) scaleY(.95);transform:translate3d(0,-10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,5px,0) scaleY(.985);transform:translate3d(0,5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0) scaleX(3);transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0) scaleX(1);transform:translate3d(25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(-10px,0,0) scaleX(.98);transform:translate3d(-10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(5px,0,0) scaleX(.995);transform:translate3d(5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0) scaleX(3);transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0) scaleX(1);transform:translate3d(25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(-10px,0,0) scaleX(.98);transform:translate3d(-10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(5px,0,0) scaleX(.995);transform:translate3d(5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(3000px,0,0) scaleX(3);transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0) scaleX(1);transform:translate3d(-25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(10px,0,0) scaleX(.98);transform:translate3d(10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(-5px,0,0) scaleX(.995);transform:translate3d(-5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(3000px,0,0) scaleX(3);transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0) scaleX(1);transform:translate3d(-25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(10px,0,0) scaleX(.98);transform:translate3d(10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(-5px,0,0) scaleX(.995);transform:translate3d(-5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0) scaleY(5);transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,10px,0) scaleY(.95);transform:translate3d(0,10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-5px,0) scaleY(.985);transform:translate3d(0,-5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0) scaleY(5);transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,10px,0) scaleY(.95);transform:translate3d(0,10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-5px,0) scaleY(.985);transform:translate3d(0,-5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}.animate__bounceOut{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0) scaleY(.985);transform:translate3d(0,10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0) scaleY(3);transform:translate3d(0,2000px,0) scaleY(3)}}@keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0) scaleY(.985);transform:translate3d(0,10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0) scaleY(3);transform:translate3d(0,2000px,0) scaleY(3)}}.animate__bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0) scaleX(.9);transform:translate3d(20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0) scaleX(2);transform:translate3d(-2000px,0,0) scaleX(2)}}@keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0) scaleX(.9);transform:translate3d(20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0) scaleX(2);transform:translate3d(-2000px,0,0) scaleX(2)}}.animate__bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0) scaleX(.9);transform:translate3d(-20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0) scaleX(2);transform:translate3d(2000px,0,0) scaleX(2)}}@keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0) scaleX(.9);transform:translate3d(-20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0) scaleX(2);transform:translate3d(2000px,0,0) scaleX(2)}}.animate__bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0) scaleY(.985);transform:translate3d(0,-10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0) scaleY(.9);transform:translate3d(0,20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0) scaleY(3);transform:translate3d(0,-2000px,0) scaleY(3)}}@keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0) scaleY(.985);transform:translate3d(0,-10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0) scaleY(.9);transform:translate3d(0,20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0) scaleY(3);transform:translate3d(0,-2000px,0) scaleY(3)}}.animate__bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.animate__fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeInTopLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInTopLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInTopLeft{-webkit-animation-name:fadeInTopLeft;animation-name:fadeInTopLeft}@-webkit-keyframes fadeInTopRight{0%{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInTopRight{0%{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInTopRight{-webkit-animation-name:fadeInTopRight;animation-name:fadeInTopRight}@-webkit-keyframes fadeInBottomLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInBottomLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInBottomLeft{-webkit-animation-name:fadeInBottomLeft;animation-name:fadeInBottomLeft}@-webkit-keyframes fadeInBottomRight{0%{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInBottomRight{0%{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInBottomRight{-webkit-animation-name:fadeInBottomRight;animation-name:fadeInBottomRight}@-webkit-keyframes fadeOut{0%{opacity:1}to{opacity:0}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.animate__fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes fadeOutDown{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.animate__fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.animate__fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.animate__fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.animate__fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes fadeOutRight{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.animate__fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.animate__fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes fadeOutUp{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.animate__fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.animate__fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes fadeOutTopLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}}@keyframes fadeOutTopLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}}.animate__fadeOutTopLeft{-webkit-animation-name:fadeOutTopLeft;animation-name:fadeOutTopLeft}@-webkit-keyframes fadeOutTopRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}}@keyframes fadeOutTopRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}}.animate__fadeOutTopRight{-webkit-animation-name:fadeOutTopRight;animation-name:fadeOutTopRight}@-webkit-keyframes fadeOutBottomRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}}@keyframes fadeOutBottomRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}}.animate__fadeOutBottomRight{-webkit-animation-name:fadeOutBottomRight;animation-name:fadeOutBottomRight}@-webkit-keyframes fadeOutBottomLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}}@keyframes fadeOutBottomLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}}.animate__fadeOutBottomLeft{-webkit-animation-name:fadeOutBottomLeft;animation-name:fadeOutBottomLeft}@-webkit-keyframes flip{0%{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{0%{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.animate__animated.animate__flip{-webkit-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.animate__flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}@-webkit-keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-20deg);transform:perspective(400px) rotateY(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-20deg);transform:perspective(400px) rotateY(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.animate__flipInY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}@keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}.animate__flipOutX{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:flipOutX;animation-name:flipOutX;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}@-webkit-keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateY(-15deg);transform:perspective(400px) rotateY(-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}@keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateY(-15deg);transform:perspective(400px) rotateY(-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}.animate__flipOutY{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedInRight{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes lightSpeedInRight{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__lightSpeedInRight{-webkit-animation-name:lightSpeedInRight;animation-name:lightSpeedInRight;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedInLeft{0%{-webkit-transform:translate3d(-100%,0,0) skewX(30deg);transform:translate3d(-100%,0,0) skewX(30deg);opacity:0}60%{-webkit-transform:skewX(-20deg);transform:skewX(-20deg);opacity:1}80%{-webkit-transform:skewX(5deg);transform:skewX(5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes lightSpeedInLeft{0%{-webkit-transform:translate3d(-100%,0,0) skewX(30deg);transform:translate3d(-100%,0,0) skewX(30deg);opacity:0}60%{-webkit-transform:skewX(-20deg);transform:skewX(-20deg);opacity:1}80%{-webkit-transform:skewX(5deg);transform:skewX(5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__lightSpeedInLeft{-webkit-animation-name:lightSpeedInLeft;animation-name:lightSpeedInLeft;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOutRight{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}@keyframes lightSpeedOutRight{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.animate__lightSpeedOutRight{-webkit-animation-name:lightSpeedOutRight;animation-name:lightSpeedOutRight;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes lightSpeedOutLeft{0%{opacity:1}to{-webkit-transform:translate3d(-100%,0,0) skewX(-30deg);transform:translate3d(-100%,0,0) skewX(-30deg);opacity:0}}@keyframes lightSpeedOutLeft{0%{opacity:1}to{-webkit-transform:translate3d(-100%,0,0) skewX(-30deg);transform:translate3d(-100%,0,0) skewX(-30deg);opacity:0}}.animate__lightSpeedOutLeft{-webkit-animation-name:lightSpeedOutLeft;animation-name:lightSpeedOutLeft;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{0%{-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateIn{0%{-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes rotateInDownLeft{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInDownLeft{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateInDownRight{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInDownRight{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateInUpLeft{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInUpLeft{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateInUpRight{0%{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInUpRight{0%{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateOut{0%{opacity:1}to{-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}@keyframes rotateOut{0%{opacity:1}to{-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}.animate__rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes rotateOutDownLeft{0%{opacity:1}to{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}}@keyframes rotateOutDownLeft{0%{opacity:1}to{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}}.animate__rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateOutDownRight{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}@keyframes rotateOutDownRight{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}.animate__rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateOutUpLeft{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}@keyframes rotateOutUpLeft{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}.animate__rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateOutUpRight{0%{opacity:1}to{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes rotateOutUpRight{0%{opacity:1}to{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}.animate__rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes hinge{0%{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}@keyframes hinge{0%{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}.animate__hinge{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-duration:calc(var(--animate-duration)*2);animation-duration:calc(var(--animate-duration)*2);-webkit-animation-name:hinge;animation-name:hinge;-webkit-transform-origin:top left;transform-origin:top left}@-webkit-keyframes jackInTheBox{0%{opacity:0;-webkit-transform:scale(.1) rotate(30deg);transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes jackInTheBox{0%{opacity:0;-webkit-transform:scale(.1) rotate(30deg);transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.animate__jackInTheBox{-webkit-animation-name:jackInTheBox;animation-name:jackInTheBox}@-webkit-keyframes rollIn{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate(-120deg);transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes rollIn{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate(-120deg);transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate(120deg);transform:translate3d(100%,0,0) rotate(120deg)}}@keyframes rollOut{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate(120deg);transform:translate3d(100%,0,0) rotate(120deg)}}.animate__rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}@-webkit-keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}.animate__zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-webkit-keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-webkit-keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-webkit-keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}@-webkit-keyframes zoomOut{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes zoomOut{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}.animate__zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-webkit-keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0)}}@keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0)}}.animate__zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft;-webkit-transform-origin:left center;transform-origin:left center}@-webkit-keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0)}}@keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0)}}.animate__zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight;-webkit-transform-origin:right center;transform-origin:right center}@-webkit-keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes slideOutDown{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.animate__slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes slideOutLeft{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes slideOutLeft{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.animate__slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes slideOutRight{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.animate__slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes slideOutUp{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.animate__slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}
/*
  $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}
