.shg-swiper-container {
  --arrow-button-size: 35px;
  --pagination-height: 32px;
  --swiper-pagination-bullet-size: 14px;
  --swiper-pagination-bottom: 8px;

  position: relative;
  /*
   * In case you are wondering, why it's set to grid, please see the links below:
   * https://github.com/nolimits4web/swiper/issues/3599
   * https://github.com/nolimits4web/swiper/issues/3599#issuecomment-1290283431
   */
  display: grid;
  padding: 0 var(--arrow-button-size) var(--pagination-height)
    var(--arrow-button-size);
}

.shg-swiper:not(.swiper-initialized) {
  visibility: hidden;
  display: flex;
  overflow-x: hidden;
}

.shg-swiper-container > .shg-swiper {
  margin-left: 0;
  margin-right: 0;
}

.shg-swiper:not(.swiper-initialized) ~ .swiper-pagination,
.shg-swiper:not(.swiper-initialized) ~ .swiper-button-prev,
.shg-swiper:not(.swiper-initialized) ~ .swiper-button-next {
  visibility: hidden;
}

.shg-swiper-container > .swiper-button-prev,
.shg-swiper-container > .swiper-button-next {
  top: 0;
  height: calc(100% - var(--pagination-height));
  width: var(--arrow-button-size);
  margin: 0;
}

.shg-swiper-container > .swiper-button-prev {
  left: 0;
}

.shg-swiper-container > .swiper-button-next {
  right: 0;
}

.shg-swiper-container > .swiper-button-next:after,
.shg-swiper-container > .swiper-button-prev:after {
  /* Ditch default Swiper arrow */
  display: none;
}

.shg-swiper-container > .swiper-button-next svg,
.shg-swiper-container > .swiper-button-prev svg {
  width: var(--arrow-button-size);
  height: var(--arrow-button-size);
}

#s-15273d10-a760-432a-9ab1-42d8a92780b7 {
  margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
}
@media (min-width: 1200px){#s-15273d10-a760-432a-9ab1-42d8a92780b7 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-15273d10-a760-432a-9ab1-42d8a92780b7 {
  display: none;
}
#s-15273d10-a760-432a-9ab1-42d8a92780b7, #wrap-s-15273d10-a760-432a-9ab1-42d8a92780b7 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-15273d10-a760-432a-9ab1-42d8a92780b7 {
  display: none;
}
#s-15273d10-a760-432a-9ab1-42d8a92780b7, #wrap-s-15273d10-a760-432a-9ab1-42d8a92780b7 { display: none !important; }}@media (max-width: 767px){#s-15273d10-a760-432a-9ab1-42d8a92780b7 {
  display: none;
}
#s-15273d10-a760-432a-9ab1-42d8a92780b7, #wrap-s-15273d10-a760-432a-9ab1-42d8a92780b7 { display: none !important; }}
#slider-v3-s-15273d10-a760-432a-9ab1-42d8a92780b7 {
  --swiper-pagination-color: rgba(255, 255, 255, 1) !important;
  --swiper-pagination-bullet-inactive-color: rgba(255, 255, 255, 1) !important;

  
    --swiper-pagination-bottom: 14px !important;
    padding: 0 !important;
  
}

#slider-v3-s-15273d10-a760-432a-9ab1-42d8a92780b7 > .swiper-button-prev,
#slider-v3-s-15273d10-a760-432a-9ab1-42d8a92780b7 > .swiper-button-next {
  
    height: 100% !important;
  
}

& > .swiper-button-prev {
  
    left: 2% !important;
  
}

& > .swiper-button-next {
  
    right: 2% !important;
  }


#slider-v3-s-15273d10-a760-432a-9ab1-42d8a92780b7 > .swiper-button-next svg,
#slider-v3-s-15273d10-a760-432a-9ab1-42d8a92780b7 > .swiper-button-prev svg {
  fill: rgba(113, 113, 113, 1) !important;
}

.shg-box {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  /**
   * While `flex: 1` is enough here, we need to supply the rest
   * of the parameters (`1 auto`) to keep compatibility with IE11.
   * Otherwise, IE11 flex would break.
   */
  flex: 1 1 auto;
}

.shg-box > .shg-box-content {
  z-index: 4;
  position: relative;
}

.shg-box-vertical-align-wrapper, .shg-box-vertical-center-wrapper {
  display: flex;
  width: 100%;
}

.shg-box-vertical-align-top {
  justify-content: flex-start;
}

.shg-box-vertical-align-center, .shg-box-vertical-center {
  justify-content: center;
}

.shg-box-vertical-align-bottom {
  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-2f1f7662-611a-4489-8906-cdc95227449a {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
min-height: 550px;
background-color: rgba(0, 0, 0, 0);
background-position: left center;
}
@media (min-width: 1200px){#s-2f1f7662-611a-4489-8906-cdc95227449a {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2f1f7662-611a-4489-8906-cdc95227449a {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-2f1f7662-611a-4489-8906-cdc95227449a {
  min-height: 400px;
}
}@media (max-width: 767px){#s-2f1f7662-611a-4489-8906-cdc95227449a {
  
}
}
#s-2f1f7662-611a-4489-8906-cdc95227449a {
  background-image: url(https://i.shgcdn.com/e625ea15-77a1-4d67-b321-a5ead9755b45/);
}








#s-2f1f7662-611a-4489-8906-cdc95227449a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2f1f7662-611a-4489-8906-cdc95227449a.shg-box.shg-c {
  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 {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-e4d20083-8aae-4f15-b9cf-00cc129cb111 {
  margin-top: 0px;
margin-left: 100px;
margin-bottom: 10px;
margin-right: 0px;
max-width: 650px;
text-align: left;
}







  #s-e4d20083-8aae-4f15-b9cf-00cc129cb111 img.shogun-image {
    

    
    
    
  }


#s-e4d20083-8aae-4f15-b9cf-00cc129cb111 .shogun-image-content {
  
    align-items: center;
  
}

.shogun-heading-component h1,
.shogun-heading-component h2,
.shogun-heading-component h3,
.shogun-heading-component h4,
.shogun-heading-component h5,
.shogun-heading-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  
  
  text-transform: none;
  
  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-38c4574a-a9bb-46da-8942-1408f2d33591 {
  margin-top: 10px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
max-width: 450px;
text-align: left;
}
@media (min-width: 1200px){#s-38c4574a-a9bb-46da-8942-1408f2d33591 {
  margin-left: 100px;
margin-right: 100px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-38c4574a-a9bb-46da-8942-1408f2d33591 {
  margin-left: 100px;
margin-right: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-38c4574a-a9bb-46da-8942-1408f2d33591 {
  margin-left: 50px;
padding-top: 10px;
padding-bottom: 10px;
}
}@media (max-width: 767px){#s-38c4574a-a9bb-46da-8942-1408f2d33591 {
  margin-left: 35px;
padding-top: 0px;
padding-bottom: 0px;
}
}
#s-38c4574a-a9bb-46da-8942-1408f2d33591 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 26px;
  line-height: 1.25em;
  
  text-align: left;
}



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

.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-9f459695-9fd8-4846-9e2b-bc585b4ecfde {
  margin-top: 20px;
margin-left: 100px;
margin-bottom: 0px;
margin-right: 100px;
padding-top: 10px;
padding-left: 15px;
padding-bottom: 10px;
padding-right: 15px;
border-radius: 2px;
background-color: rgba(255, 229, 0, 1);
text-align: left;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-9f459695-9fd8-4846-9e2b-bc585b4ecfde:hover {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-9f459695-9fd8-4846-9e2b-bc585b4ecfde:active {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-9f459695-9fd8-4846-9e2b-bc585b4ecfde {
  padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-9f459695-9fd8-4846-9e2b-bc585b4ecfde {
  padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-9f459695-9fd8-4846-9e2b-bc585b4ecfde {
  margin-top: 10px;
margin-left: 50px;
margin-right: 0px;
padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}

  #s-9f459695-9fd8-4846-9e2b-bc585b4ecfde-root {
    text-align: left;
  }


#s-9f459695-9fd8-4846-9e2b-bc585b4ecfde.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-9f459695-9fd8-4846-9e2b-bc585b4ecfde-root {
    text-align: left;
  }


#s-9f459695-9fd8-4846-9e2b-bc585b4ecfde.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9f459695-9fd8-4846-9e2b-bc585b4ecfde-root {
    text-align: left;
  }


#s-9f459695-9fd8-4846-9e2b-bc585b4ecfde.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9f459695-9fd8-4846-9e2b-bc585b4ecfde-root {
    text-align: left;
  }


#s-9f459695-9fd8-4846-9e2b-bc585b4ecfde.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-9f459695-9fd8-4846-9e2b-bc585b4ecfde-root {
    text-align: left;
  }


#s-9f459695-9fd8-4846-9e2b-bc585b4ecfde.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-7eff2ad9-95af-416d-bfdd-0e016ea77c83 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
min-height: 550px;
background-color: rgba(0, 0, 0, 0);
background-position: center center;
}
@media (min-width: 1200px){#s-7eff2ad9-95af-416d-bfdd-0e016ea77c83 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-7eff2ad9-95af-416d-bfdd-0e016ea77c83 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-7eff2ad9-95af-416d-bfdd-0e016ea77c83 {
  min-height: 400px;
}
}@media (max-width: 767px){#s-7eff2ad9-95af-416d-bfdd-0e016ea77c83 {
  
}
}
#s-7eff2ad9-95af-416d-bfdd-0e016ea77c83 {
  background-image: url(https://i.shgcdn.com/2c961b80-0f4d-4d3b-baf8-ec3d4f9b0d16/);
}








#s-7eff2ad9-95af-416d-bfdd-0e016ea77c83 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7eff2ad9-95af-416d-bfdd-0e016ea77c83.shg-box.shg-c {
  justify-content: center;
}

#s-dbd5394f-7525-4d99-a81e-b9335fbb91cd {
  margin-top: 0px;
margin-left: 80px;
margin-bottom: 10px;
margin-right: 0px;
max-width: 475px;
text-align: left;
}







  #s-dbd5394f-7525-4d99-a81e-b9335fbb91cd img.shogun-image {
    

    
    
    
  }


#s-dbd5394f-7525-4d99-a81e-b9335fbb91cd .shogun-image-content {
  
    align-items: center;
  
}

#s-ed4195c4-35a1-4469-8968-bb2ad9158ba3 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
max-width: 500px;
text-align: left;
}
@media (min-width: 1200px){#s-ed4195c4-35a1-4469-8968-bb2ad9158ba3 {
  margin-left: 100px;
margin-right: 100px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ed4195c4-35a1-4469-8968-bb2ad9158ba3 {
  margin-left: 100px;
margin-right: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-ed4195c4-35a1-4469-8968-bb2ad9158ba3 {
  margin-left: 50px;
padding-top: 10px;
padding-bottom: 10px;
}
}@media (max-width: 767px){#s-ed4195c4-35a1-4469-8968-bb2ad9158ba3 {
  margin-left: 35px;
padding-top: 0px;
padding-bottom: 0px;
}
}
#s-ed4195c4-35a1-4469-8968-bb2ad9158ba3 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 26px;
  line-height: 1.25em;
  
  text-align: left;
}



#s-17976ef5-d9d8-4de8-839a-94ac79b06d61 {
  margin-top: 20px;
margin-left: 100px;
margin-bottom: 0px;
margin-right: 100px;
padding-top: 10px;
padding-left: 15px;
padding-bottom: 10px;
padding-right: 15px;
border-radius: 2px;
background-color: rgba(255, 229, 0, 1);
text-align: left;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-17976ef5-d9d8-4de8-839a-94ac79b06d61:hover {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-17976ef5-d9d8-4de8-839a-94ac79b06d61:active {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-17976ef5-d9d8-4de8-839a-94ac79b06d61 {
  padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-17976ef5-d9d8-4de8-839a-94ac79b06d61 {
  padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-17976ef5-d9d8-4de8-839a-94ac79b06d61 {
  margin-top: 10px;
margin-left: 50px;
margin-right: 0px;
padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}

  #s-17976ef5-d9d8-4de8-839a-94ac79b06d61-root {
    text-align: left;
  }


#s-17976ef5-d9d8-4de8-839a-94ac79b06d61.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-17976ef5-d9d8-4de8-839a-94ac79b06d61-root {
    text-align: left;
  }


#s-17976ef5-d9d8-4de8-839a-94ac79b06d61.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-17976ef5-d9d8-4de8-839a-94ac79b06d61-root {
    text-align: left;
  }


#s-17976ef5-d9d8-4de8-839a-94ac79b06d61.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-17976ef5-d9d8-4de8-839a-94ac79b06d61-root {
    text-align: left;
  }


#s-17976ef5-d9d8-4de8-839a-94ac79b06d61.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-17976ef5-d9d8-4de8-839a-94ac79b06d61-root {
    text-align: left;
  }


#s-17976ef5-d9d8-4de8-839a-94ac79b06d61.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-20e1d986-2c59-4592-bb0a-193bebf075f2 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
min-height: 550px;
background-color: rgba(0, 0, 0, 0);
background-position: center center;
}
@media (min-width: 1200px){#s-20e1d986-2c59-4592-bb0a-193bebf075f2 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-20e1d986-2c59-4592-bb0a-193bebf075f2 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-20e1d986-2c59-4592-bb0a-193bebf075f2 {
  min-height: 400px;
}
}@media (max-width: 767px){#s-20e1d986-2c59-4592-bb0a-193bebf075f2 {
  
}
}
#s-20e1d986-2c59-4592-bb0a-193bebf075f2 {
  background-image: url(https://i.shgcdn.com/44b81f50-cb34-4274-82a2-56ae3e58635b/);
}








#s-20e1d986-2c59-4592-bb0a-193bebf075f2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-20e1d986-2c59-4592-bb0a-193bebf075f2.shg-box.shg-c {
  justify-content: center;
}

#s-76f2f9c8-d507-4c57-9ddd-81b30e8e7101 {
  margin-top: 0px;
margin-left: 100px;
margin-bottom: 10px;
margin-right: 0px;
max-width: 600px;
text-align: left;
}







  #s-76f2f9c8-d507-4c57-9ddd-81b30e8e7101 img.shogun-image {
    

    
    
    
  }


#s-76f2f9c8-d507-4c57-9ddd-81b30e8e7101 .shogun-image-content {
  
    align-items: center;
  
}

#s-d8a39f63-4ad8-4fbb-ba4d-08cf24274f0c {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
max-width: 625px;
text-align: left;
}
@media (min-width: 1200px){#s-d8a39f63-4ad8-4fbb-ba4d-08cf24274f0c {
  margin-left: 100px;
margin-right: 100px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-d8a39f63-4ad8-4fbb-ba4d-08cf24274f0c {
  margin-left: 100px;
margin-right: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-d8a39f63-4ad8-4fbb-ba4d-08cf24274f0c {
  margin-left: 50px;
padding-top: 10px;
padding-bottom: 10px;
}
}@media (max-width: 767px){#s-d8a39f63-4ad8-4fbb-ba4d-08cf24274f0c {
  margin-left: 35px;
padding-top: 0px;
padding-bottom: 0px;
}
}
#s-d8a39f63-4ad8-4fbb-ba4d-08cf24274f0c .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 26px;
  line-height: 1.25em;
  
  text-align: left;
}



#s-b2952914-6688-400e-b15b-1b7a7a85bb3c {
  margin-top: 20px;
margin-left: 100px;
margin-bottom: 0px;
margin-right: 100px;
padding-top: 10px;
padding-left: 15px;
padding-bottom: 10px;
padding-right: 15px;
border-radius: 2px;
background-color: rgba(255, 229, 0, 1);
text-align: left;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-b2952914-6688-400e-b15b-1b7a7a85bb3c:hover {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-b2952914-6688-400e-b15b-1b7a7a85bb3c:active {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-b2952914-6688-400e-b15b-1b7a7a85bb3c {
  padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b2952914-6688-400e-b15b-1b7a7a85bb3c {
  padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-b2952914-6688-400e-b15b-1b7a7a85bb3c {
  margin-top: 10px;
margin-left: 50px;
margin-right: 0px;
padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}

  #s-b2952914-6688-400e-b15b-1b7a7a85bb3c-root {
    text-align: left;
  }


#s-b2952914-6688-400e-b15b-1b7a7a85bb3c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-b2952914-6688-400e-b15b-1b7a7a85bb3c-root {
    text-align: left;
  }


#s-b2952914-6688-400e-b15b-1b7a7a85bb3c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b2952914-6688-400e-b15b-1b7a7a85bb3c-root {
    text-align: left;
  }


#s-b2952914-6688-400e-b15b-1b7a7a85bb3c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b2952914-6688-400e-b15b-1b7a7a85bb3c-root {
    text-align: left;
  }


#s-b2952914-6688-400e-b15b-1b7a7a85bb3c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-b2952914-6688-400e-b15b-1b7a7a85bb3c-root {
    text-align: left;
  }


#s-b2952914-6688-400e-b15b-1b7a7a85bb3c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-f1ad8184-11d5-4ec4-bdc7-6a6615b4c504 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
min-height: 550px;
background-color: rgba(0, 0, 0, 0);
background-position: center center;
}
@media (min-width: 1200px){#s-f1ad8184-11d5-4ec4-bdc7-6a6615b4c504 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f1ad8184-11d5-4ec4-bdc7-6a6615b4c504 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-f1ad8184-11d5-4ec4-bdc7-6a6615b4c504 {
  min-height: 400px;
}
}@media (max-width: 767px){#s-f1ad8184-11d5-4ec4-bdc7-6a6615b4c504 {
  
}
}
#s-f1ad8184-11d5-4ec4-bdc7-6a6615b4c504 {
  background-image: url(https://i.shgcdn.com/cfe9767b-7079-4a19-b44f-a6c5496c8078/);
}








#s-f1ad8184-11d5-4ec4-bdc7-6a6615b4c504 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f1ad8184-11d5-4ec4-bdc7-6a6615b4c504.shg-box.shg-c {
  justify-content: center;
}

#s-62c3764f-43a0-426b-aff1-7cb80215603f {
  margin-top: 0px;
margin-left: 100px;
margin-bottom: 10px;
margin-right: 0px;
max-width: 500px;
text-align: left;
}







  #s-62c3764f-43a0-426b-aff1-7cb80215603f img.shogun-image {
    

    
    
    
  }


#s-62c3764f-43a0-426b-aff1-7cb80215603f .shogun-image-content {
  
    align-items: center;
  
}

#s-7bacd14b-22ae-41fb-a2bc-8e909d46f5b5 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
max-width: 550px;
text-align: left;
}
@media (min-width: 1200px){#s-7bacd14b-22ae-41fb-a2bc-8e909d46f5b5 {
  margin-left: 100px;
margin-right: 100px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-7bacd14b-22ae-41fb-a2bc-8e909d46f5b5 {
  margin-left: 100px;
margin-right: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-7bacd14b-22ae-41fb-a2bc-8e909d46f5b5 {
  margin-left: 50px;
padding-top: 10px;
padding-bottom: 10px;
}
}@media (max-width: 767px){#s-7bacd14b-22ae-41fb-a2bc-8e909d46f5b5 {
  margin-left: 35px;
padding-top: 0px;
padding-bottom: 0px;
}
}
#s-7bacd14b-22ae-41fb-a2bc-8e909d46f5b5 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 26px;
  line-height: 1.25em;
  
  text-align: left;
}



#s-6be1f17a-2178-4d99-a52b-224b8e0bca7d {
  margin-top: 20px;
margin-left: 100px;
margin-bottom: 0px;
margin-right: 100px;
padding-top: 10px;
padding-left: 15px;
padding-bottom: 10px;
padding-right: 15px;
border-radius: 2px;
background-color: rgba(255, 229, 0, 1);
text-align: left;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-6be1f17a-2178-4d99-a52b-224b8e0bca7d:hover {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-6be1f17a-2178-4d99-a52b-224b8e0bca7d:active {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-6be1f17a-2178-4d99-a52b-224b8e0bca7d {
  padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-6be1f17a-2178-4d99-a52b-224b8e0bca7d {
  padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-6be1f17a-2178-4d99-a52b-224b8e0bca7d {
  margin-top: 10px;
margin-left: 50px;
margin-right: 0px;
padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}

  #s-6be1f17a-2178-4d99-a52b-224b8e0bca7d-root {
    text-align: left;
  }


#s-6be1f17a-2178-4d99-a52b-224b8e0bca7d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-6be1f17a-2178-4d99-a52b-224b8e0bca7d-root {
    text-align: left;
  }


#s-6be1f17a-2178-4d99-a52b-224b8e0bca7d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6be1f17a-2178-4d99-a52b-224b8e0bca7d-root {
    text-align: left;
  }


#s-6be1f17a-2178-4d99-a52b-224b8e0bca7d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6be1f17a-2178-4d99-a52b-224b8e0bca7d-root {
    text-align: left;
  }


#s-6be1f17a-2178-4d99-a52b-224b8e0bca7d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-6be1f17a-2178-4d99-a52b-224b8e0bca7d-root {
    text-align: left;
  }


#s-6be1f17a-2178-4d99-a52b-224b8e0bca7d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-98b5567c-5b1a-4e24-b333-42646c093b98 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
min-height: 550px;
background-color: rgba(0, 0, 0, 0);
background-position: center center;
}
@media (min-width: 1200px){#s-98b5567c-5b1a-4e24-b333-42646c093b98 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-98b5567c-5b1a-4e24-b333-42646c093b98 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-98b5567c-5b1a-4e24-b333-42646c093b98 {
  min-height: 400px;
}
}@media (max-width: 767px){#s-98b5567c-5b1a-4e24-b333-42646c093b98 {
  
}
}
#s-98b5567c-5b1a-4e24-b333-42646c093b98 {
  background-image: url(https://i.shgcdn.com/881d2b4a-2625-4495-9fdb-d3c737c19fbc/);
}








#s-98b5567c-5b1a-4e24-b333-42646c093b98 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-98b5567c-5b1a-4e24-b333-42646c093b98.shg-box.shg-c {
  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 {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

.shg-image-content-wrapper .shogun-image.hover~* {
  z-index: 1;
}
#s-c1c1b105-c3f7-4c2c-8c0c-da58451adf00 {
  margin-left: 100px;
margin-bottom: 25px;
margin-right: 0px;
max-width: 200px;
text-align: left;
}



.shg-image-margin-container-s-c1c1b105-c3f7-4c2c-8c0c-da58451adf00 {
  margin-left: 100px;
  margin-right: 0px;
  
  margin-bottom: 25px;
}

#s-c1c1b105-c3f7-4c2c-8c0c-da58451adf00 {
  margin: 0 !important;
}





  img.s-c1c1b105-c3f7-4c2c-8c0c-da58451adf00.shogun-image {
    
    
  }


.s-c1c1b105-c3f7-4c2c-8c0c-da58451adf00 .shogun-image-content {
  
    align-items: center;
  
}

.s-c1c1b105-c3f7-4c2c-8c0c-da58451adf00.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-c1c1b105-c3f7-4c2c-8c0c-da58451adf00.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c1c1b105-c3f7-4c2c-8c0c-da58451adf00.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-c1c1b105-c3f7-4c2c-8c0c-da58451adf00 {
  
  
  
  
}

#s-c1c1b105-c3f7-4c2c-8c0c-da58451adf00 {
  margin: 0 !important;
}





  img.s-c1c1b105-c3f7-4c2c-8c0c-da58451adf00.shogun-image {
    
    
  }


.s-c1c1b105-c3f7-4c2c-8c0c-da58451adf00 .shogun-image-content {
  
    align-items: center;
  
}

.s-c1c1b105-c3f7-4c2c-8c0c-da58451adf00.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-c1c1b105-c3f7-4c2c-8c0c-da58451adf00.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c1c1b105-c3f7-4c2c-8c0c-da58451adf00.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-c1c1b105-c3f7-4c2c-8c0c-da58451adf00 {
  
  
  
  
}

#s-c1c1b105-c3f7-4c2c-8c0c-da58451adf00 {
  margin: 0 !important;
}





  img.s-c1c1b105-c3f7-4c2c-8c0c-da58451adf00.shogun-image {
    
    
  }


.s-c1c1b105-c3f7-4c2c-8c0c-da58451adf00 .shogun-image-content {
  
    align-items: center;
  
}

.s-c1c1b105-c3f7-4c2c-8c0c-da58451adf00.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-c1c1b105-c3f7-4c2c-8c0c-da58451adf00.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c1c1b105-c3f7-4c2c-8c0c-da58451adf00.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-c1c1b105-c3f7-4c2c-8c0c-da58451adf00 {
  
  
  
  
}

#s-c1c1b105-c3f7-4c2c-8c0c-da58451adf00 {
  margin: 0 !important;
}





  img.s-c1c1b105-c3f7-4c2c-8c0c-da58451adf00.shogun-image {
    
    
  }


.s-c1c1b105-c3f7-4c2c-8c0c-da58451adf00 .shogun-image-content {
  
    align-items: center;
  
}

.s-c1c1b105-c3f7-4c2c-8c0c-da58451adf00.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-c1c1b105-c3f7-4c2c-8c0c-da58451adf00.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c1c1b105-c3f7-4c2c-8c0c-da58451adf00.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-c1c1b105-c3f7-4c2c-8c0c-da58451adf00 {
  
  
  
  
}

#s-c1c1b105-c3f7-4c2c-8c0c-da58451adf00 {
  margin: 0 !important;
}





  img.s-c1c1b105-c3f7-4c2c-8c0c-da58451adf00.shogun-image {
    
    
  }


.s-c1c1b105-c3f7-4c2c-8c0c-da58451adf00 .shogun-image-content {
  
    align-items: center;
  
}

.s-c1c1b105-c3f7-4c2c-8c0c-da58451adf00.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-c1c1b105-c3f7-4c2c-8c0c-da58451adf00.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c1c1b105-c3f7-4c2c-8c0c-da58451adf00.shogun-image {
  box-sizing: border-box;
}




}
#s-fb65c621-fe13-4a59-ba66-c5a296cc2e2a {
  margin-top: 0px;
margin-left: 100px;
margin-bottom: 10px;
margin-right: 0px;
max-width: 700px;
text-align: left;
}







  #s-fb65c621-fe13-4a59-ba66-c5a296cc2e2a img.shogun-image {
    

    
    
    
  }


#s-fb65c621-fe13-4a59-ba66-c5a296cc2e2a .shogun-image-content {
  
    align-items: center;
  
}

#s-8e6e20fd-4375-450a-8f47-15d6d8ce79ac {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
max-width: 450px;
text-align: left;
}
@media (min-width: 1200px){#s-8e6e20fd-4375-450a-8f47-15d6d8ce79ac {
  margin-left: 100px;
margin-right: 100px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-8e6e20fd-4375-450a-8f47-15d6d8ce79ac {
  margin-left: 100px;
margin-right: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-8e6e20fd-4375-450a-8f47-15d6d8ce79ac {
  margin-left: 50px;
padding-top: 10px;
padding-bottom: 10px;
}
}@media (max-width: 767px){#s-8e6e20fd-4375-450a-8f47-15d6d8ce79ac {
  margin-left: 35px;
padding-top: 0px;
padding-bottom: 0px;
}
}
#s-8e6e20fd-4375-450a-8f47-15d6d8ce79ac .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 26px;
  line-height: 1.25em;
  
  text-align: left;
}



#s-10090943-192a-4542-8163-1a35f591fffe {
  margin-top: 20px;
margin-left: 100px;
margin-bottom: 0px;
margin-right: 100px;
padding-top: 10px;
padding-left: 15px;
padding-bottom: 10px;
padding-right: 15px;
border-radius: 2px;
background-color: rgba(255, 229, 0, 1);
text-align: left;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-10090943-192a-4542-8163-1a35f591fffe:hover {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-10090943-192a-4542-8163-1a35f591fffe:active {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-10090943-192a-4542-8163-1a35f591fffe {
  padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-10090943-192a-4542-8163-1a35f591fffe {
  padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-10090943-192a-4542-8163-1a35f591fffe {
  margin-top: 10px;
margin-left: 50px;
margin-right: 0px;
padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}

  #s-10090943-192a-4542-8163-1a35f591fffe-root {
    text-align: left;
  }


#s-10090943-192a-4542-8163-1a35f591fffe.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-10090943-192a-4542-8163-1a35f591fffe-root {
    text-align: left;
  }


#s-10090943-192a-4542-8163-1a35f591fffe.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-10090943-192a-4542-8163-1a35f591fffe-root {
    text-align: left;
  }


#s-10090943-192a-4542-8163-1a35f591fffe.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-10090943-192a-4542-8163-1a35f591fffe-root {
    text-align: left;
  }


#s-10090943-192a-4542-8163-1a35f591fffe.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-10090943-192a-4542-8163-1a35f591fffe-root {
    text-align: left;
  }


#s-10090943-192a-4542-8163-1a35f591fffe.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-4804c741-4f5d-467c-95c4-8a9a1b0563b3 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
}
@media (min-width: 1200px){#s-4804c741-4f5d-467c-95c4-8a9a1b0563b3 {
  display: none;
}
#s-4804c741-4f5d-467c-95c4-8a9a1b0563b3, #wrap-s-4804c741-4f5d-467c-95c4-8a9a1b0563b3 { display: none !important; }}@media (max-width: 767px){#s-4804c741-4f5d-467c-95c4-8a9a1b0563b3 {
  display: none;
}
#s-4804c741-4f5d-467c-95c4-8a9a1b0563b3, #wrap-s-4804c741-4f5d-467c-95c4-8a9a1b0563b3 { display: none !important; }}
#slider-v3-s-4804c741-4f5d-467c-95c4-8a9a1b0563b3 {
  --swiper-pagination-color: rgba(255, 255, 255, 1) !important;
  --swiper-pagination-bullet-inactive-color: rgba(255, 255, 255, 1) !important;

  
    --swiper-pagination-bottom: 14px !important;
    padding: 0 !important;
  
}

#slider-v3-s-4804c741-4f5d-467c-95c4-8a9a1b0563b3 > .swiper-button-prev,
#slider-v3-s-4804c741-4f5d-467c-95c4-8a9a1b0563b3 > .swiper-button-next {
  
    height: 100% !important;
  
}

& > .swiper-button-prev {
  
    left: 2% !important;
  
}

& > .swiper-button-next {
  
    right: 2% !important;
  }


#slider-v3-s-4804c741-4f5d-467c-95c4-8a9a1b0563b3 > .swiper-button-next svg,
#slider-v3-s-4804c741-4f5d-467c-95c4-8a9a1b0563b3 > .swiper-button-prev svg {
  fill: rgba(113, 113, 113, 1) !important;
}

#s-b8f08c52-c45d-47f7-9014-a6fc839c6687 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
min-height: 550px;
background-color: rgba(0, 0, 0, 0);
background-position: center center;
}
@media (min-width: 1200px){#s-b8f08c52-c45d-47f7-9014-a6fc839c6687 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b8f08c52-c45d-47f7-9014-a6fc839c6687 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-b8f08c52-c45d-47f7-9014-a6fc839c6687 {
  min-height: 400px;
}
}@media (max-width: 767px){#s-b8f08c52-c45d-47f7-9014-a6fc839c6687 {
  
}
}
#s-b8f08c52-c45d-47f7-9014-a6fc839c6687 {
  background-image: url(https://i.shgcdn.com/26e6908a-3172-4ce6-bdfa-1b99b186689b/);
}








#s-b8f08c52-c45d-47f7-9014-a6fc839c6687 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b8f08c52-c45d-47f7-9014-a6fc839c6687.shg-box.shg-c {
  justify-content: center;
}

#s-413347d2-1220-43f3-bb20-ad0d84dd0ec2 {
  margin-top: 0px;
margin-left: 100px;
margin-bottom: 10px;
margin-right: 0px;
max-width: 500px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-413347d2-1220-43f3-bb20-ad0d84dd0ec2 {
  margin-left: 50px;
max-width: 400px;
}
}






  #s-413347d2-1220-43f3-bb20-ad0d84dd0ec2 img.shogun-image {
    

    
    
    
  }


#s-413347d2-1220-43f3-bb20-ad0d84dd0ec2 .shogun-image-content {
  
    align-items: center;
  
}

#s-0e3204d6-ce77-4d1f-8620-851d7ff64744 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
max-width: 525px;
text-align: left;
}
@media (min-width: 1200px){#s-0e3204d6-ce77-4d1f-8620-851d7ff64744 {
  margin-left: 100px;
margin-right: 100px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0e3204d6-ce77-4d1f-8620-851d7ff64744 {
  margin-left: 100px;
margin-right: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-0e3204d6-ce77-4d1f-8620-851d7ff64744 {
  margin-left: 50px;
padding-top: 10px;
padding-bottom: 10px;
max-width: 375px;
}
}@media (max-width: 767px){#s-0e3204d6-ce77-4d1f-8620-851d7ff64744 {
  margin-left: 35px;
padding-top: 0px;
padding-bottom: 0px;
}
}
#s-0e3204d6-ce77-4d1f-8620-851d7ff64744 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 22px;
  line-height: 1.25em;
  
  text-align: left;
}



#s-ab2e678a-0c1e-41b0-9a9e-4b7f4c66ffe4 {
  margin-top: 20px;
margin-left: 100px;
margin-bottom: 0px;
margin-right: 100px;
padding-top: 10px;
padding-left: 15px;
padding-bottom: 10px;
padding-right: 15px;
border-radius: 2px;
background-color: rgba(255, 229, 0, 1);
text-align: left;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-ab2e678a-0c1e-41b0-9a9e-4b7f4c66ffe4:hover {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-ab2e678a-0c1e-41b0-9a9e-4b7f4c66ffe4:active {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-ab2e678a-0c1e-41b0-9a9e-4b7f4c66ffe4 {
  padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ab2e678a-0c1e-41b0-9a9e-4b7f4c66ffe4 {
  padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-ab2e678a-0c1e-41b0-9a9e-4b7f4c66ffe4 {
  margin-top: 10px;
margin-left: 50px;
margin-right: 0px;
padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}

  #s-ab2e678a-0c1e-41b0-9a9e-4b7f4c66ffe4-root {
    text-align: left;
  }


#s-ab2e678a-0c1e-41b0-9a9e-4b7f4c66ffe4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ab2e678a-0c1e-41b0-9a9e-4b7f4c66ffe4-root {
    text-align: left;
  }


#s-ab2e678a-0c1e-41b0-9a9e-4b7f4c66ffe4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ab2e678a-0c1e-41b0-9a9e-4b7f4c66ffe4-root {
    text-align: left;
  }


#s-ab2e678a-0c1e-41b0-9a9e-4b7f4c66ffe4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ab2e678a-0c1e-41b0-9a9e-4b7f4c66ffe4-root {
    text-align: left;
  }


#s-ab2e678a-0c1e-41b0-9a9e-4b7f4c66ffe4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ab2e678a-0c1e-41b0-9a9e-4b7f4c66ffe4-root {
    text-align: left;
  }


#s-ab2e678a-0c1e-41b0-9a9e-4b7f4c66ffe4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-bc3a0c72-a4e8-4064-b2e4-d8c9fb81038a {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
min-height: 550px;
background-color: rgba(0, 0, 0, 0);
background-position: center center;
}
@media (min-width: 1200px){#s-bc3a0c72-a4e8-4064-b2e4-d8c9fb81038a {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-bc3a0c72-a4e8-4064-b2e4-d8c9fb81038a {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-bc3a0c72-a4e8-4064-b2e4-d8c9fb81038a {
  min-height: 400px;
}
}@media (max-width: 767px){#s-bc3a0c72-a4e8-4064-b2e4-d8c9fb81038a {
  
}
}
#s-bc3a0c72-a4e8-4064-b2e4-d8c9fb81038a {
  background-image: url(https://i.shgcdn.com/c7881c1f-33c4-4b47-a14a-2590d07035eb/);
}








#s-bc3a0c72-a4e8-4064-b2e4-d8c9fb81038a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-bc3a0c72-a4e8-4064-b2e4-d8c9fb81038a.shg-box.shg-c {
  justify-content: center;
}

#s-4af9f491-e544-4885-9e79-b11591d3e972 {
  margin-top: 0px;
margin-left: 100px;
margin-bottom: 10px;
margin-right: 0px;
max-width: 550px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-4af9f491-e544-4885-9e79-b11591d3e972 {
  margin-left: 50px;
max-width: 425px;
}
}






  #s-4af9f491-e544-4885-9e79-b11591d3e972 img.shogun-image {
    

    
    
    
  }


#s-4af9f491-e544-4885-9e79-b11591d3e972 .shogun-image-content {
  
    align-items: center;
  
}

#s-b54fcd82-258a-4343-b2ca-c446c0e79f0a {
  margin-top: 10px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
max-width: 600px;
text-align: left;
}
@media (min-width: 1200px){#s-b54fcd82-258a-4343-b2ca-c446c0e79f0a {
  margin-left: 100px;
margin-right: 100px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b54fcd82-258a-4343-b2ca-c446c0e79f0a {
  margin-left: 100px;
margin-right: 0px;
max-width: 400px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-b54fcd82-258a-4343-b2ca-c446c0e79f0a {
  margin-left: 50px;
padding-top: 10px;
padding-bottom: 10px;
max-width: 375px;
}
}@media (max-width: 767px){#s-b54fcd82-258a-4343-b2ca-c446c0e79f0a {
  margin-left: 35px;
padding-top: 0px;
padding-bottom: 0px;
}
}
#s-b54fcd82-258a-4343-b2ca-c446c0e79f0a .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 22px;
  line-height: 1.25em;
  
  text-align: left;
}



#s-19b410fd-1ff8-4a77-af41-9668097d3fc8 {
  margin-top: 20px;
margin-left: 100px;
margin-bottom: 0px;
margin-right: 100px;
padding-top: 10px;
padding-left: 15px;
padding-bottom: 10px;
padding-right: 15px;
border-radius: 2px;
background-color: rgba(255, 229, 0, 1);
text-align: left;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-19b410fd-1ff8-4a77-af41-9668097d3fc8:hover {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-19b410fd-1ff8-4a77-af41-9668097d3fc8:active {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-19b410fd-1ff8-4a77-af41-9668097d3fc8 {
  padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-19b410fd-1ff8-4a77-af41-9668097d3fc8 {
  padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-19b410fd-1ff8-4a77-af41-9668097d3fc8 {
  margin-top: 10px;
margin-left: 50px;
margin-right: 0px;
padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}

  #s-19b410fd-1ff8-4a77-af41-9668097d3fc8-root {
    text-align: left;
  }


#s-19b410fd-1ff8-4a77-af41-9668097d3fc8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-19b410fd-1ff8-4a77-af41-9668097d3fc8-root {
    text-align: left;
  }


#s-19b410fd-1ff8-4a77-af41-9668097d3fc8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-19b410fd-1ff8-4a77-af41-9668097d3fc8-root {
    text-align: left;
  }


#s-19b410fd-1ff8-4a77-af41-9668097d3fc8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-19b410fd-1ff8-4a77-af41-9668097d3fc8-root {
    text-align: left;
  }


#s-19b410fd-1ff8-4a77-af41-9668097d3fc8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-19b410fd-1ff8-4a77-af41-9668097d3fc8-root {
    text-align: left;
  }


#s-19b410fd-1ff8-4a77-af41-9668097d3fc8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-8d920022-6d42-4d0a-8511-4e4840059460 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
min-height: 550px;
background-color: rgba(0, 0, 0, 0);
background-position: center center;
}
@media (min-width: 1200px){#s-8d920022-6d42-4d0a-8511-4e4840059460 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-8d920022-6d42-4d0a-8511-4e4840059460 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-8d920022-6d42-4d0a-8511-4e4840059460 {
  min-height: 400px;
}
}@media (max-width: 767px){#s-8d920022-6d42-4d0a-8511-4e4840059460 {
  
}
}
#s-8d920022-6d42-4d0a-8511-4e4840059460 {
  background-image: url(https://i.shgcdn.com/935e5d25-da5a-4f55-ae6e-802150b7f8c0/);
}








#s-8d920022-6d42-4d0a-8511-4e4840059460 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8d920022-6d42-4d0a-8511-4e4840059460.shg-box.shg-c {
  justify-content: center;
}

#s-bc1f2da8-cc70-4d67-a9ae-5e7a068e44d2 {
  margin-top: 0px;
margin-left: 100px;
margin-bottom: 10px;
margin-right: 0px;
max-width: 500px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-bc1f2da8-cc70-4d67-a9ae-5e7a068e44d2 {
  margin-left: 50px;
max-width: 380px;
}
}






  #s-bc1f2da8-cc70-4d67-a9ae-5e7a068e44d2 img.shogun-image {
    

    
    
    
  }


#s-bc1f2da8-cc70-4d67-a9ae-5e7a068e44d2 .shogun-image-content {
  
    align-items: center;
  
}

#s-21443101-084f-4a58-8174-d4c3f3cdf69e {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
max-width: 550px;
text-align: left;
}
@media (min-width: 1200px){#s-21443101-084f-4a58-8174-d4c3f3cdf69e {
  margin-left: 100px;
margin-right: 100px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-21443101-084f-4a58-8174-d4c3f3cdf69e {
  margin-left: 100px;
margin-right: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-21443101-084f-4a58-8174-d4c3f3cdf69e {
  margin-left: 50px;
padding-top: 10px;
padding-bottom: 10px;
max-width: 425px;
}
}@media (max-width: 767px){#s-21443101-084f-4a58-8174-d4c3f3cdf69e {
  margin-left: 35px;
padding-top: 0px;
padding-bottom: 0px;
}
}
#s-21443101-084f-4a58-8174-d4c3f3cdf69e .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 22px;
  line-height: 1.25em;
  
  text-align: left;
}



#s-072ce1db-8846-4875-a49b-bab0c7f16a24 {
  margin-top: 20px;
margin-left: 100px;
margin-bottom: 0px;
margin-right: 100px;
padding-top: 10px;
padding-left: 15px;
padding-bottom: 10px;
padding-right: 15px;
border-radius: 2px;
background-color: rgba(255, 229, 0, 1);
text-align: left;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-072ce1db-8846-4875-a49b-bab0c7f16a24:hover {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-072ce1db-8846-4875-a49b-bab0c7f16a24:active {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-072ce1db-8846-4875-a49b-bab0c7f16a24 {
  padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-072ce1db-8846-4875-a49b-bab0c7f16a24 {
  padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-072ce1db-8846-4875-a49b-bab0c7f16a24 {
  margin-top: 10px;
margin-left: 50px;
margin-right: 0px;
padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}

  #s-072ce1db-8846-4875-a49b-bab0c7f16a24-root {
    text-align: left;
  }


#s-072ce1db-8846-4875-a49b-bab0c7f16a24.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-072ce1db-8846-4875-a49b-bab0c7f16a24-root {
    text-align: left;
  }


#s-072ce1db-8846-4875-a49b-bab0c7f16a24.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-072ce1db-8846-4875-a49b-bab0c7f16a24-root {
    text-align: left;
  }


#s-072ce1db-8846-4875-a49b-bab0c7f16a24.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-072ce1db-8846-4875-a49b-bab0c7f16a24-root {
    text-align: left;
  }


#s-072ce1db-8846-4875-a49b-bab0c7f16a24.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-072ce1db-8846-4875-a49b-bab0c7f16a24-root {
    text-align: left;
  }


#s-072ce1db-8846-4875-a49b-bab0c7f16a24.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-05f12261-4993-46be-8482-725e5c04a26f {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
min-height: 550px;
background-color: rgba(0, 0, 0, 0);
background-position: center center;
}
@media (min-width: 1200px){#s-05f12261-4993-46be-8482-725e5c04a26f {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-05f12261-4993-46be-8482-725e5c04a26f {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-05f12261-4993-46be-8482-725e5c04a26f {
  min-height: 400px;
}
}@media (max-width: 767px){#s-05f12261-4993-46be-8482-725e5c04a26f {
  
}
}
#s-05f12261-4993-46be-8482-725e5c04a26f {
  background-image: url(https://i.shgcdn.com/0721a246-4892-4257-9aa3-612fbbe54f9a/);
}








#s-05f12261-4993-46be-8482-725e5c04a26f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-05f12261-4993-46be-8482-725e5c04a26f.shg-box.shg-c {
  justify-content: center;
}

#s-722b9bd7-4fb9-4a08-860b-7a0aa843089e {
  margin-left: 100px;
margin-bottom: 25px;
margin-right: 0px;
max-width: 175px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-722b9bd7-4fb9-4a08-860b-7a0aa843089e {
  margin-left: 50px;
max-width: 150px;
}
}


.shg-image-margin-container-s-722b9bd7-4fb9-4a08-860b-7a0aa843089e {
  margin-left: 100px;
  margin-right: 0px;
  
  margin-bottom: 25px;
}

#s-722b9bd7-4fb9-4a08-860b-7a0aa843089e {
  margin: 0 !important;
}





  img.s-722b9bd7-4fb9-4a08-860b-7a0aa843089e.shogun-image {
    
    
  }


.s-722b9bd7-4fb9-4a08-860b-7a0aa843089e .shogun-image-content {
  
    align-items: center;
  
}

.s-722b9bd7-4fb9-4a08-860b-7a0aa843089e.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-722b9bd7-4fb9-4a08-860b-7a0aa843089e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-722b9bd7-4fb9-4a08-860b-7a0aa843089e.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-722b9bd7-4fb9-4a08-860b-7a0aa843089e {
  
  
  
  
}

#s-722b9bd7-4fb9-4a08-860b-7a0aa843089e {
  margin: 0 !important;
}





  img.s-722b9bd7-4fb9-4a08-860b-7a0aa843089e.shogun-image {
    
    
  }


.s-722b9bd7-4fb9-4a08-860b-7a0aa843089e .shogun-image-content {
  
    align-items: center;
  
}

.s-722b9bd7-4fb9-4a08-860b-7a0aa843089e.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-722b9bd7-4fb9-4a08-860b-7a0aa843089e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-722b9bd7-4fb9-4a08-860b-7a0aa843089e.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-722b9bd7-4fb9-4a08-860b-7a0aa843089e {
  
  
  
  
}

#s-722b9bd7-4fb9-4a08-860b-7a0aa843089e {
  margin: 0 !important;
}





  img.s-722b9bd7-4fb9-4a08-860b-7a0aa843089e.shogun-image {
    
    
  }


.s-722b9bd7-4fb9-4a08-860b-7a0aa843089e .shogun-image-content {
  
    align-items: center;
  
}

.s-722b9bd7-4fb9-4a08-860b-7a0aa843089e.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-722b9bd7-4fb9-4a08-860b-7a0aa843089e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-722b9bd7-4fb9-4a08-860b-7a0aa843089e.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-722b9bd7-4fb9-4a08-860b-7a0aa843089e {
  margin-left: 50px;
  
  
  
}

#s-722b9bd7-4fb9-4a08-860b-7a0aa843089e {
  margin: 0 !important;
}





  img.s-722b9bd7-4fb9-4a08-860b-7a0aa843089e.shogun-image {
    
    
  }


.s-722b9bd7-4fb9-4a08-860b-7a0aa843089e .shogun-image-content {
  
    align-items: center;
  
}

.s-722b9bd7-4fb9-4a08-860b-7a0aa843089e.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-722b9bd7-4fb9-4a08-860b-7a0aa843089e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-722b9bd7-4fb9-4a08-860b-7a0aa843089e.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-722b9bd7-4fb9-4a08-860b-7a0aa843089e {
  
  
  
  
}

#s-722b9bd7-4fb9-4a08-860b-7a0aa843089e {
  margin: 0 !important;
}





  img.s-722b9bd7-4fb9-4a08-860b-7a0aa843089e.shogun-image {
    
    
  }


.s-722b9bd7-4fb9-4a08-860b-7a0aa843089e .shogun-image-content {
  
    align-items: center;
  
}

.s-722b9bd7-4fb9-4a08-860b-7a0aa843089e.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-722b9bd7-4fb9-4a08-860b-7a0aa843089e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-722b9bd7-4fb9-4a08-860b-7a0aa843089e.shogun-image {
  box-sizing: border-box;
}




}
#s-7a0f2849-7062-4136-a084-c7c3051a9dc5 {
  margin-top: 0px;
margin-left: 100px;
margin-bottom: 5px;
margin-right: 0px;
max-width: 600px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-7a0f2849-7062-4136-a084-c7c3051a9dc5 {
  margin-left: 50px;
max-width: 425px;
}
}






  #s-7a0f2849-7062-4136-a084-c7c3051a9dc5 img.shogun-image {
    

    
    
    
  }


#s-7a0f2849-7062-4136-a084-c7c3051a9dc5 .shogun-image-content {
  
    align-items: center;
  
}

#s-ad3ecda8-6376-4ab2-92ee-fcca79a6e9ac {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
max-width: 425px;
text-align: left;
}
@media (min-width: 1200px){#s-ad3ecda8-6376-4ab2-92ee-fcca79a6e9ac {
  margin-left: 100px;
margin-right: 100px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ad3ecda8-6376-4ab2-92ee-fcca79a6e9ac {
  margin-left: 100px;
margin-right: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-ad3ecda8-6376-4ab2-92ee-fcca79a6e9ac {
  margin-left: 50px;
padding-top: 10px;
padding-bottom: 10px;
max-width: 370px;
}
}@media (max-width: 767px){#s-ad3ecda8-6376-4ab2-92ee-fcca79a6e9ac {
  margin-left: 35px;
padding-top: 0px;
padding-bottom: 0px;
}
}
#s-ad3ecda8-6376-4ab2-92ee-fcca79a6e9ac .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 22px;
  line-height: 1.25em;
  
  text-align: left;
}



#s-c87646c4-a5dc-41ae-a6f5-1150ab68b0ab {
  margin-top: 20px;
margin-left: 100px;
margin-bottom: 0px;
margin-right: 100px;
padding-top: 10px;
padding-left: 15px;
padding-bottom: 10px;
padding-right: 15px;
border-radius: 2px;
background-color: rgba(255, 229, 0, 1);
text-align: left;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-c87646c4-a5dc-41ae-a6f5-1150ab68b0ab:hover {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-c87646c4-a5dc-41ae-a6f5-1150ab68b0ab:active {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-c87646c4-a5dc-41ae-a6f5-1150ab68b0ab {
  padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c87646c4-a5dc-41ae-a6f5-1150ab68b0ab {
  padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-c87646c4-a5dc-41ae-a6f5-1150ab68b0ab {
  margin-top: 10px;
margin-left: 50px;
margin-right: 0px;
padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}

  #s-c87646c4-a5dc-41ae-a6f5-1150ab68b0ab-root {
    text-align: left;
  }


#s-c87646c4-a5dc-41ae-a6f5-1150ab68b0ab.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c87646c4-a5dc-41ae-a6f5-1150ab68b0ab-root {
    text-align: left;
  }


#s-c87646c4-a5dc-41ae-a6f5-1150ab68b0ab.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c87646c4-a5dc-41ae-a6f5-1150ab68b0ab-root {
    text-align: left;
  }


#s-c87646c4-a5dc-41ae-a6f5-1150ab68b0ab.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c87646c4-a5dc-41ae-a6f5-1150ab68b0ab-root {
    text-align: left;
  }


#s-c87646c4-a5dc-41ae-a6f5-1150ab68b0ab.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c87646c4-a5dc-41ae-a6f5-1150ab68b0ab-root {
    text-align: left;
  }


#s-c87646c4-a5dc-41ae-a6f5-1150ab68b0ab.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-05ac92c1-d9af-4b20-957e-308b5900480d {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
min-height: 550px;
background-color: rgba(0, 0, 0, 0);
background-position: center center;
}
@media (min-width: 1200px){#s-05ac92c1-d9af-4b20-957e-308b5900480d {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-05ac92c1-d9af-4b20-957e-308b5900480d {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-05ac92c1-d9af-4b20-957e-308b5900480d {
  min-height: 400px;
}
}@media (max-width: 767px){#s-05ac92c1-d9af-4b20-957e-308b5900480d {
  
}
}
#s-05ac92c1-d9af-4b20-957e-308b5900480d {
  background-image: url(https://i.shgcdn.com/7a34985f-1a6a-4024-9455-1816dcb51952/);
}








#s-05ac92c1-d9af-4b20-957e-308b5900480d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-05ac92c1-d9af-4b20-957e-308b5900480d.shg-box.shg-c {
  justify-content: center;
}

#s-36319d18-2004-4533-b0b4-27407e831715 {
  margin-top: 0px;
margin-left: 100px;
margin-bottom: 10px;
margin-right: 0px;
max-width: 430px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-36319d18-2004-4533-b0b4-27407e831715 {
  margin-left: 50px;
max-width: 325px;
}
}






  #s-36319d18-2004-4533-b0b4-27407e831715 img.shogun-image {
    

    
    
    
  }


#s-36319d18-2004-4533-b0b4-27407e831715 .shogun-image-content {
  
    align-items: center;
  
}

#s-29b8fe09-429c-4637-80ce-960b7bfdfcaa {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
max-width: 450px;
text-align: left;
}
@media (min-width: 1200px){#s-29b8fe09-429c-4637-80ce-960b7bfdfcaa {
  margin-left: 100px;
margin-right: 100px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-29b8fe09-429c-4637-80ce-960b7bfdfcaa {
  margin-left: 100px;
margin-right: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-29b8fe09-429c-4637-80ce-960b7bfdfcaa {
  margin-left: 50px;
padding-top: 10px;
padding-bottom: 10px;
max-width: 350px;
}
}@media (max-width: 767px){#s-29b8fe09-429c-4637-80ce-960b7bfdfcaa {
  margin-left: 35px;
padding-top: 0px;
padding-bottom: 0px;
}
}
#s-29b8fe09-429c-4637-80ce-960b7bfdfcaa .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 22px;
  line-height: 1.25em;
  
  text-align: left;
}



#s-2c27baf0-69d2-486a-a418-d1620fef54a5 {
  margin-top: 20px;
margin-left: 100px;
margin-bottom: 0px;
margin-right: 100px;
padding-top: 10px;
padding-left: 15px;
padding-bottom: 10px;
padding-right: 15px;
border-radius: 2px;
background-color: rgba(255, 229, 0, 1);
text-align: left;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-2c27baf0-69d2-486a-a418-d1620fef54a5:hover {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-2c27baf0-69d2-486a-a418-d1620fef54a5:active {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-2c27baf0-69d2-486a-a418-d1620fef54a5 {
  padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2c27baf0-69d2-486a-a418-d1620fef54a5 {
  padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-2c27baf0-69d2-486a-a418-d1620fef54a5 {
  margin-top: 10px;
margin-left: 50px;
margin-right: 0px;
padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}

  #s-2c27baf0-69d2-486a-a418-d1620fef54a5-root {
    text-align: left;
  }


#s-2c27baf0-69d2-486a-a418-d1620fef54a5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-2c27baf0-69d2-486a-a418-d1620fef54a5-root {
    text-align: left;
  }


#s-2c27baf0-69d2-486a-a418-d1620fef54a5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-2c27baf0-69d2-486a-a418-d1620fef54a5-root {
    text-align: left;
  }


#s-2c27baf0-69d2-486a-a418-d1620fef54a5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-2c27baf0-69d2-486a-a418-d1620fef54a5-root {
    text-align: left;
  }


#s-2c27baf0-69d2-486a-a418-d1620fef54a5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-2c27baf0-69d2-486a-a418-d1620fef54a5-root {
    text-align: left;
  }


#s-2c27baf0-69d2-486a-a418-d1620fef54a5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-842a39c8-8e99-44b3-acb9-47a5fb48962f {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
}
@media (min-width: 1200px){#s-842a39c8-8e99-44b3-acb9-47a5fb48962f {
  display: none;
}
#s-842a39c8-8e99-44b3-acb9-47a5fb48962f, #wrap-s-842a39c8-8e99-44b3-acb9-47a5fb48962f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-842a39c8-8e99-44b3-acb9-47a5fb48962f {
  display: none;
}
#s-842a39c8-8e99-44b3-acb9-47a5fb48962f, #wrap-s-842a39c8-8e99-44b3-acb9-47a5fb48962f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-842a39c8-8e99-44b3-acb9-47a5fb48962f {
  display: none;
}
#s-842a39c8-8e99-44b3-acb9-47a5fb48962f, #wrap-s-842a39c8-8e99-44b3-acb9-47a5fb48962f { display: none !important; }}
#slider-v3-s-842a39c8-8e99-44b3-acb9-47a5fb48962f {
  --swiper-pagination-color: rgba(255, 255, 255, 1) !important;
  --swiper-pagination-bullet-inactive-color: rgba(255, 255, 255, 1) !important;

  
    --swiper-pagination-bottom: 14px !important;
    padding: 0 !important;
  
}

#slider-v3-s-842a39c8-8e99-44b3-acb9-47a5fb48962f > .swiper-button-prev,
#slider-v3-s-842a39c8-8e99-44b3-acb9-47a5fb48962f > .swiper-button-next {
  
    height: 100% !important;
  
}

& > .swiper-button-prev {
  
    left: 2% !important;
  
}

& > .swiper-button-next {
  
    right: 2% !important;
  }


#slider-v3-s-842a39c8-8e99-44b3-acb9-47a5fb48962f > .swiper-button-next svg,
#slider-v3-s-842a39c8-8e99-44b3-acb9-47a5fb48962f > .swiper-button-prev svg {
  fill: rgba(113, 113, 113, 1) !important;
}

#s-824a228b-c4f6-45cf-b235-7fa2ac3d4de4 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
min-height: 500px;
background-color: rgba(0, 0, 0, 0);
background-position: center top;
}
@media (min-width: 1200px){#s-824a228b-c4f6-45cf-b235-7fa2ac3d4de4 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-824a228b-c4f6-45cf-b235-7fa2ac3d4de4 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-824a228b-c4f6-45cf-b235-7fa2ac3d4de4 {
  
}
}@media (max-width: 767px){#s-824a228b-c4f6-45cf-b235-7fa2ac3d4de4 {
  
}
}
#s-824a228b-c4f6-45cf-b235-7fa2ac3d4de4 {
  background-image: url(https://i.shgcdn.com/d3726677-c099-45bc-93ee-7c7518159539/);
}








#s-824a228b-c4f6-45cf-b235-7fa2ac3d4de4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-824a228b-c4f6-45cf-b235-7fa2ac3d4de4.shg-box.shg-c {
  justify-content: flex-end;
}

#s-0e0735c9-7433-4a5d-9e7e-d40afd9c4a2b {
  margin-left: auto;
margin-right: auto;
padding-left: 15%;
padding-right: 15%;
max-width: 1302px;
text-align: center;
}







  #s-0e0735c9-7433-4a5d-9e7e-d40afd9c4a2b img.shogun-image {
    

    
    
    
  }


#s-0e0735c9-7433-4a5d-9e7e-d40afd9c4a2b .shogun-image-content {
  
    align-items: center;
  
}

#s-61866413-53f7-431d-ab66-c69cdc7ff90d {
  margin-top: 15px;
margin-left: 7%;
margin-right: 7%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-61866413-53f7-431d-ab66-c69cdc7ff90d .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.25em;
  
  text-align: center;
}



#s-0a0e0174-2013-40b4-b7e2-2aeb42331fee {
  margin-top: 20px;
margin-left: 0px;
margin-bottom: 60px;
margin-right: 0px;
padding-top: 10px;
padding-left: 15px;
padding-bottom: 10px;
padding-right: 15px;
border-radius: 2px;
background-color: rgba(255, 229, 0, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-0a0e0174-2013-40b4-b7e2-2aeb42331fee:hover {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-0a0e0174-2013-40b4-b7e2-2aeb42331fee:active {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-0a0e0174-2013-40b4-b7e2-2aeb42331fee {
  padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0a0e0174-2013-40b4-b7e2-2aeb42331fee {
  padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-0a0e0174-2013-40b4-b7e2-2aeb42331fee {
  padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}

  #s-0a0e0174-2013-40b4-b7e2-2aeb42331fee-root {
    text-align: center;
  }


#s-0a0e0174-2013-40b4-b7e2-2aeb42331fee.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-0a0e0174-2013-40b4-b7e2-2aeb42331fee-root {
    text-align: center;
  }


#s-0a0e0174-2013-40b4-b7e2-2aeb42331fee.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-0a0e0174-2013-40b4-b7e2-2aeb42331fee-root {
    text-align: center;
  }


#s-0a0e0174-2013-40b4-b7e2-2aeb42331fee.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-0a0e0174-2013-40b4-b7e2-2aeb42331fee-root {
    text-align: center;
  }


#s-0a0e0174-2013-40b4-b7e2-2aeb42331fee.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-0a0e0174-2013-40b4-b7e2-2aeb42331fee-root {
    text-align: center;
  }


#s-0a0e0174-2013-40b4-b7e2-2aeb42331fee.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-056464aa-6e57-491b-8a30-bb6ffa7cdcdc {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
min-height: 500px;
background-color: rgba(0, 0, 0, 0);
background-position: center top;
}
@media (min-width: 1200px){#s-056464aa-6e57-491b-8a30-bb6ffa7cdcdc {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-056464aa-6e57-491b-8a30-bb6ffa7cdcdc {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-056464aa-6e57-491b-8a30-bb6ffa7cdcdc {
  
}
}@media (max-width: 767px){#s-056464aa-6e57-491b-8a30-bb6ffa7cdcdc {
  
}
}
#s-056464aa-6e57-491b-8a30-bb6ffa7cdcdc {
  background-image: url(https://i.shgcdn.com/9bab234d-d8c3-4e23-86f2-e21e459adecc/);
}








#s-056464aa-6e57-491b-8a30-bb6ffa7cdcdc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-056464aa-6e57-491b-8a30-bb6ffa7cdcdc.shg-box.shg-c {
  justify-content: flex-end;
}

#s-ec5efd1d-93d3-43e5-955a-7f098a9dbfe4 {
  margin-left: auto;
margin-right: auto;
padding-left: 15%;
padding-right: 15%;
max-width: 576px;
text-align: center;
}







  #s-ec5efd1d-93d3-43e5-955a-7f098a9dbfe4 img.shogun-image {
    

    
    
    
  }


#s-ec5efd1d-93d3-43e5-955a-7f098a9dbfe4 .shogun-image-content {
  
    align-items: center;
  
}

#s-29d01827-56ed-482e-8726-a21251c2c8be {
  margin-top: 15px;
margin-left: 10%;
margin-right: 10%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-29d01827-56ed-482e-8726-a21251c2c8be .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.25em;
  
  text-align: center;
}



#s-ab93024a-19a9-4738-b34b-00b45dab6ad7 {
  margin-top: 20px;
margin-left: 0px;
margin-bottom: 60px;
margin-right: 0px;
padding-top: 10px;
padding-left: 15px;
padding-bottom: 10px;
padding-right: 15px;
border-radius: 2px;
background-color: rgba(255, 229, 0, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-ab93024a-19a9-4738-b34b-00b45dab6ad7:hover {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-ab93024a-19a9-4738-b34b-00b45dab6ad7:active {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-ab93024a-19a9-4738-b34b-00b45dab6ad7 {
  padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ab93024a-19a9-4738-b34b-00b45dab6ad7 {
  padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-ab93024a-19a9-4738-b34b-00b45dab6ad7 {
  padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}

  #s-ab93024a-19a9-4738-b34b-00b45dab6ad7-root {
    text-align: center;
  }


#s-ab93024a-19a9-4738-b34b-00b45dab6ad7.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ab93024a-19a9-4738-b34b-00b45dab6ad7-root {
    text-align: center;
  }


#s-ab93024a-19a9-4738-b34b-00b45dab6ad7.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ab93024a-19a9-4738-b34b-00b45dab6ad7-root {
    text-align: center;
  }


#s-ab93024a-19a9-4738-b34b-00b45dab6ad7.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ab93024a-19a9-4738-b34b-00b45dab6ad7-root {
    text-align: center;
  }


#s-ab93024a-19a9-4738-b34b-00b45dab6ad7.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ab93024a-19a9-4738-b34b-00b45dab6ad7-root {
    text-align: center;
  }


#s-ab93024a-19a9-4738-b34b-00b45dab6ad7.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-7dd7eae5-549c-47ee-ae27-e52e2ce14f33 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
min-height: 500px;
background-color: rgba(0, 0, 0, 0);
background-position: center top;
}
@media (min-width: 1200px){#s-7dd7eae5-549c-47ee-ae27-e52e2ce14f33 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-7dd7eae5-549c-47ee-ae27-e52e2ce14f33 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-7dd7eae5-549c-47ee-ae27-e52e2ce14f33 {
  
}
}@media (max-width: 767px){#s-7dd7eae5-549c-47ee-ae27-e52e2ce14f33 {
  
}
}
#s-7dd7eae5-549c-47ee-ae27-e52e2ce14f33 {
  background-image: url(https://i.shgcdn.com/4db14b75-54eb-458c-96f0-4c7e0cd3e2c1/);
}








#s-7dd7eae5-549c-47ee-ae27-e52e2ce14f33 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7dd7eae5-549c-47ee-ae27-e52e2ce14f33.shg-box.shg-c {
  justify-content: flex-end;
}

#s-d3a8f0b3-0a02-4f3a-8721-c087705517d6 {
  margin-left: auto;
margin-right: auto;
padding-left: 5%;
padding-right: 5%;
max-width: 1505px;
text-align: center;
}







  #s-d3a8f0b3-0a02-4f3a-8721-c087705517d6 img.shogun-image {
    

    
    
    
  }


#s-d3a8f0b3-0a02-4f3a-8721-c087705517d6 .shogun-image-content {
  
    align-items: center;
  
}

#s-e3d4942c-3441-4059-92ae-cac28f448435 {
  margin-top: 15px;
margin-left: 10%;
margin-right: 10%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-e3d4942c-3441-4059-92ae-cac28f448435 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.25em;
  
  text-align: center;
}



#s-e2feb073-be8e-4e66-aeec-53f5e5980f8c {
  margin-top: 20px;
margin-left: 0px;
margin-bottom: 60px;
margin-right: 0px;
padding-top: 10px;
padding-left: 15px;
padding-bottom: 10px;
padding-right: 15px;
border-radius: 2px;
background-color: rgba(255, 229, 0, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-e2feb073-be8e-4e66-aeec-53f5e5980f8c:hover {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-e2feb073-be8e-4e66-aeec-53f5e5980f8c:active {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-e2feb073-be8e-4e66-aeec-53f5e5980f8c {
  padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-e2feb073-be8e-4e66-aeec-53f5e5980f8c {
  padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-e2feb073-be8e-4e66-aeec-53f5e5980f8c {
  padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}

  #s-e2feb073-be8e-4e66-aeec-53f5e5980f8c-root {
    text-align: center;
  }


#s-e2feb073-be8e-4e66-aeec-53f5e5980f8c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e2feb073-be8e-4e66-aeec-53f5e5980f8c-root {
    text-align: center;
  }


#s-e2feb073-be8e-4e66-aeec-53f5e5980f8c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e2feb073-be8e-4e66-aeec-53f5e5980f8c-root {
    text-align: center;
  }


#s-e2feb073-be8e-4e66-aeec-53f5e5980f8c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e2feb073-be8e-4e66-aeec-53f5e5980f8c-root {
    text-align: center;
  }


#s-e2feb073-be8e-4e66-aeec-53f5e5980f8c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e2feb073-be8e-4e66-aeec-53f5e5980f8c-root {
    text-align: center;
  }


#s-e2feb073-be8e-4e66-aeec-53f5e5980f8c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-3b59f027-0775-4dac-81fd-750340ffb7d0 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
min-height: 500px;
background-color: rgba(0, 0, 0, 0);
background-position: center top;
}
@media (min-width: 1200px){#s-3b59f027-0775-4dac-81fd-750340ffb7d0 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-3b59f027-0775-4dac-81fd-750340ffb7d0 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-3b59f027-0775-4dac-81fd-750340ffb7d0 {
  
}
}@media (max-width: 767px){#s-3b59f027-0775-4dac-81fd-750340ffb7d0 {
  
}
}
#s-3b59f027-0775-4dac-81fd-750340ffb7d0 {
  background-image: url(https://i.shgcdn.com/038606ec-44c6-4eb9-915c-8f99b46f5982/);
}








#s-3b59f027-0775-4dac-81fd-750340ffb7d0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3b59f027-0775-4dac-81fd-750340ffb7d0.shg-box.shg-c {
  justify-content: flex-end;
}

#s-52618f32-8998-4dc4-ba2f-6cfe1e63bd94 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
max-width: 125px;
text-align: center;
}



.shg-image-margin-container-s-52618f32-8998-4dc4-ba2f-6cfe1e63bd94 {
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}

#s-52618f32-8998-4dc4-ba2f-6cfe1e63bd94 {
  margin: 0 !important;
}





  img.s-52618f32-8998-4dc4-ba2f-6cfe1e63bd94.shogun-image {
    
    
  }


.s-52618f32-8998-4dc4-ba2f-6cfe1e63bd94 .shogun-image-content {
  
    align-items: center;
  
}

.s-52618f32-8998-4dc4-ba2f-6cfe1e63bd94.shg-align-container {
  display: flex;
  justify-content: center
}

.s-52618f32-8998-4dc4-ba2f-6cfe1e63bd94.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-52618f32-8998-4dc4-ba2f-6cfe1e63bd94.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-52618f32-8998-4dc4-ba2f-6cfe1e63bd94 {
  
  
  
  
}

#s-52618f32-8998-4dc4-ba2f-6cfe1e63bd94 {
  margin: 0 !important;
}





  img.s-52618f32-8998-4dc4-ba2f-6cfe1e63bd94.shogun-image {
    
    
  }


.s-52618f32-8998-4dc4-ba2f-6cfe1e63bd94 .shogun-image-content {
  
    align-items: center;
  
}

.s-52618f32-8998-4dc4-ba2f-6cfe1e63bd94.shg-align-container {
  display: flex;
  justify-content: center
}

.s-52618f32-8998-4dc4-ba2f-6cfe1e63bd94.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-52618f32-8998-4dc4-ba2f-6cfe1e63bd94.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-52618f32-8998-4dc4-ba2f-6cfe1e63bd94 {
  
  
  
  
}

#s-52618f32-8998-4dc4-ba2f-6cfe1e63bd94 {
  margin: 0 !important;
}





  img.s-52618f32-8998-4dc4-ba2f-6cfe1e63bd94.shogun-image {
    
    
  }


.s-52618f32-8998-4dc4-ba2f-6cfe1e63bd94 .shogun-image-content {
  
    align-items: center;
  
}

.s-52618f32-8998-4dc4-ba2f-6cfe1e63bd94.shg-align-container {
  display: flex;
  justify-content: center
}

.s-52618f32-8998-4dc4-ba2f-6cfe1e63bd94.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-52618f32-8998-4dc4-ba2f-6cfe1e63bd94.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-52618f32-8998-4dc4-ba2f-6cfe1e63bd94 {
  
  
  
  
}

#s-52618f32-8998-4dc4-ba2f-6cfe1e63bd94 {
  margin: 0 !important;
}





  img.s-52618f32-8998-4dc4-ba2f-6cfe1e63bd94.shogun-image {
    
    
  }


.s-52618f32-8998-4dc4-ba2f-6cfe1e63bd94 .shogun-image-content {
  
    align-items: center;
  
}

.s-52618f32-8998-4dc4-ba2f-6cfe1e63bd94.shg-align-container {
  display: flex;
  justify-content: center
}

.s-52618f32-8998-4dc4-ba2f-6cfe1e63bd94.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-52618f32-8998-4dc4-ba2f-6cfe1e63bd94.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-52618f32-8998-4dc4-ba2f-6cfe1e63bd94 {
  
  
  
  
}

#s-52618f32-8998-4dc4-ba2f-6cfe1e63bd94 {
  margin: 0 !important;
}





  img.s-52618f32-8998-4dc4-ba2f-6cfe1e63bd94.shogun-image {
    
    
  }


.s-52618f32-8998-4dc4-ba2f-6cfe1e63bd94 .shogun-image-content {
  
    align-items: center;
  
}

.s-52618f32-8998-4dc4-ba2f-6cfe1e63bd94.shg-align-container {
  display: flex;
  justify-content: center
}

.s-52618f32-8998-4dc4-ba2f-6cfe1e63bd94.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-52618f32-8998-4dc4-ba2f-6cfe1e63bd94.shogun-image {
  box-sizing: border-box;
}




}
#s-a70ad8e9-35d8-4b0b-b305-8ad5badeecb6 {
  margin-left: auto;
margin-right: auto;
padding-left: 5%;
padding-right: 5%;
max-width: 679px;
text-align: center;
}







  #s-a70ad8e9-35d8-4b0b-b305-8ad5badeecb6 img.shogun-image {
    

    
    
    
  }


#s-a70ad8e9-35d8-4b0b-b305-8ad5badeecb6 .shogun-image-content {
  
    align-items: center;
  
}

#s-ac624c30-2334-4bac-a6dd-cfd7873c098a {
  margin-top: 15px;
margin-left: 10%;
margin-right: 10%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-ac624c30-2334-4bac-a6dd-cfd7873c098a .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.25em;
  
  text-align: center;
}



#s-100b44d8-d23c-461a-89a3-3ea0f8546d97 {
  margin-top: 20px;
margin-left: 0px;
margin-bottom: 60px;
margin-right: 0px;
padding-top: 10px;
padding-left: 15px;
padding-bottom: 10px;
padding-right: 15px;
border-radius: 2px;
background-color: rgba(255, 229, 0, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-100b44d8-d23c-461a-89a3-3ea0f8546d97:hover {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-100b44d8-d23c-461a-89a3-3ea0f8546d97:active {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-100b44d8-d23c-461a-89a3-3ea0f8546d97 {
  padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-100b44d8-d23c-461a-89a3-3ea0f8546d97 {
  padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-100b44d8-d23c-461a-89a3-3ea0f8546d97 {
  padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}

  #s-100b44d8-d23c-461a-89a3-3ea0f8546d97-root {
    text-align: center;
  }


#s-100b44d8-d23c-461a-89a3-3ea0f8546d97.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-100b44d8-d23c-461a-89a3-3ea0f8546d97-root {
    text-align: center;
  }


#s-100b44d8-d23c-461a-89a3-3ea0f8546d97.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-100b44d8-d23c-461a-89a3-3ea0f8546d97-root {
    text-align: center;
  }


#s-100b44d8-d23c-461a-89a3-3ea0f8546d97.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-100b44d8-d23c-461a-89a3-3ea0f8546d97-root {
    text-align: center;
  }


#s-100b44d8-d23c-461a-89a3-3ea0f8546d97.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-100b44d8-d23c-461a-89a3-3ea0f8546d97-root {
    text-align: center;
  }


#s-100b44d8-d23c-461a-89a3-3ea0f8546d97.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-6f54a770-5747-43d5-9274-c78975053b8c {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
min-height: 500px;
background-color: rgba(0, 0, 0, 0);
background-position: center top;
}
@media (min-width: 1200px){#s-6f54a770-5747-43d5-9274-c78975053b8c {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-6f54a770-5747-43d5-9274-c78975053b8c {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-6f54a770-5747-43d5-9274-c78975053b8c {
  
}
}@media (max-width: 767px){#s-6f54a770-5747-43d5-9274-c78975053b8c {
  
}
}
#s-6f54a770-5747-43d5-9274-c78975053b8c {
  background-image: url(https://i.shgcdn.com/efdaf4a3-c9e7-4228-b941-6069b85baefb/);
}








#s-6f54a770-5747-43d5-9274-c78975053b8c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6f54a770-5747-43d5-9274-c78975053b8c.shg-box.shg-c {
  justify-content: flex-end;
}

#s-290b9a27-faed-42a5-b21c-21c8eb2a3662 {
  margin-left: auto;
margin-right: auto;
padding-left: 15%;
padding-right: 15%;
max-width: 1250px;
text-align: center;
}







  #s-290b9a27-faed-42a5-b21c-21c8eb2a3662 img.shogun-image {
    

    
    
    
  }


#s-290b9a27-faed-42a5-b21c-21c8eb2a3662 .shogun-image-content {
  
    align-items: center;
  
}

#s-b10af7bc-c6a1-4c43-a292-485721083d5a {
  margin-top: 15px;
margin-left: 10%;
margin-right: 10%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-b10af7bc-c6a1-4c43-a292-485721083d5a .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.25em;
  
  text-align: center;
}



#s-af04f655-1421-4584-86eb-ecbb42d5bcff {
  margin-top: 20px;
margin-left: 0px;
margin-bottom: 60px;
margin-right: 0px;
padding-top: 10px;
padding-left: 15px;
padding-bottom: 10px;
padding-right: 15px;
border-radius: 2px;
background-color: rgba(255, 229, 0, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-af04f655-1421-4584-86eb-ecbb42d5bcff:hover {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-af04f655-1421-4584-86eb-ecbb42d5bcff:active {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-af04f655-1421-4584-86eb-ecbb42d5bcff {
  padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-af04f655-1421-4584-86eb-ecbb42d5bcff {
  padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-af04f655-1421-4584-86eb-ecbb42d5bcff {
  padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}
}

  #s-af04f655-1421-4584-86eb-ecbb42d5bcff-root {
    text-align: center;
  }


#s-af04f655-1421-4584-86eb-ecbb42d5bcff.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-af04f655-1421-4584-86eb-ecbb42d5bcff-root {
    text-align: center;
  }


#s-af04f655-1421-4584-86eb-ecbb42d5bcff.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-af04f655-1421-4584-86eb-ecbb42d5bcff-root {
    text-align: center;
  }


#s-af04f655-1421-4584-86eb-ecbb42d5bcff.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-af04f655-1421-4584-86eb-ecbb42d5bcff-root {
    text-align: center;
  }


#s-af04f655-1421-4584-86eb-ecbb42d5bcff.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-af04f655-1421-4584-86eb-ecbb42d5bcff-root {
    text-align: center;
  }


#s-af04f655-1421-4584-86eb-ecbb42d5bcff.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-2660ea50-7bd9-4956-ba0d-02d2a9e28143 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-2660ea50-7bd9-4956-ba0d-02d2a9e28143 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2660ea50-7bd9-4956-ba0d-02d2a9e28143 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-2660ea50-7bd9-4956-ba0d-02d2a9e28143 {
  
}
}@media (max-width: 767px){#s-2660ea50-7bd9-4956-ba0d-02d2a9e28143 {
  
}
}
#s-2660ea50-7bd9-4956-ba0d-02d2a9e28143 {
  background-image: url();
}








#s-2660ea50-7bd9-4956-ba0d-02d2a9e28143 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2660ea50-7bd9-4956-ba0d-02d2a9e28143.shg-box.shg-c {
  justify-content: flex-start;
}

#s-63df620f-cd75-4f33-b62f-4df9f01db355 {
  margin-left: 0px;
margin-right: 0px;
min-height: 50px;
background-color: rgba(0, 0, 0, 0);
}
@media (min-width: 1200px){#s-63df620f-cd75-4f33-b62f-4df9f01db355 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-63df620f-cd75-4f33-b62f-4df9f01db355 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-63df620f-cd75-4f33-b62f-4df9f01db355 {
  
}
}@media (max-width: 767px){#s-63df620f-cd75-4f33-b62f-4df9f01db355 {
  
}
}







#s-63df620f-cd75-4f33-b62f-4df9f01db355 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-63df620f-cd75-4f33-b62f-4df9f01db355.shg-box.shg-c {
  justify-content: flex-start;
}

#s-e589d561-df29-4a4e-937b-cc672d975647 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
background-attachment: scroll;
}








#s-e589d561-df29-4a4e-937b-cc672d975647 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e589d561-df29-4a4e-937b-cc672d975647.shg-box.shg-c {
  justify-content: center;
}

#s-fbdffe2e-1c8e-431b-a411-6a788bd33cbf {
  margin-top: 50px;
margin-left: 0px;
margin-bottom: 50px;
margin-right: 0px;
min-height: 50px;
background-color: rgba(0, 0, 0, 0);
}
@media (min-width: 1200px){#s-fbdffe2e-1c8e-431b-a411-6a788bd33cbf {
  display: none;
}
#s-fbdffe2e-1c8e-431b-a411-6a788bd33cbf, #wrap-s-fbdffe2e-1c8e-431b-a411-6a788bd33cbf { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-fbdffe2e-1c8e-431b-a411-6a788bd33cbf {
  display: none;
}
#s-fbdffe2e-1c8e-431b-a411-6a788bd33cbf, #wrap-s-fbdffe2e-1c8e-431b-a411-6a788bd33cbf { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-fbdffe2e-1c8e-431b-a411-6a788bd33cbf {
  margin-top: 20px;
margin-bottom: 20px;
display: none;
}
#s-fbdffe2e-1c8e-431b-a411-6a788bd33cbf, #wrap-s-fbdffe2e-1c8e-431b-a411-6a788bd33cbf { display: none !important; }}@media (max-width: 767px){#s-fbdffe2e-1c8e-431b-a411-6a788bd33cbf {
  display: none;
}
#s-fbdffe2e-1c8e-431b-a411-6a788bd33cbf, #wrap-s-fbdffe2e-1c8e-431b-a411-6a788bd33cbf { display: none !important; }}







#s-fbdffe2e-1c8e-431b-a411-6a788bd33cbf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fbdffe2e-1c8e-431b-a411-6a788bd33cbf.shg-box.shg-c {
  justify-content: flex-start;
}

.shg-row {
  display: flex;
  flex-wrap: wrap;
  min-height: inherit;
  max-height: inherit;
  justify-content: space-between;
}

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

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

/* 
  Shopify base css adds display none to empty divs
  This causes items in the second column position to shift when
  the first column is empty. In order to overwrite that style,
  we have to manually set empty divs in the column to display block 
  so the whole element holds its positioning on published pages.
*/

.shg-row > div:empty {
  display: block;
}

#s-57ffe126-0348-4b90-bcaf-3ffefca4ebac {
  margin-left: 10%;
margin-right: 10%;
}
@media (min-width: 768px) and (max-width: 991px){#s-57ffe126-0348-4b90-bcaf-3ffefca4ebac {
  margin-left: 5%;
margin-right: 5%;
}
}
@media (min-width: 0px) {
[id="s-57ffe126-0348-4b90-bcaf-3ffefca4ebac"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-57ffe126-0348-4b90-bcaf-3ffefca4ebac"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-57ffe126-0348-4b90-bcaf-3ffefca4ebac"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-57ffe126-0348-4b90-bcaf-3ffefca4ebac"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-aaff2461-c56f-4307-ad4c-9116a4ee3051 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
min-height: 250px;
background-color: rgba(0, 0, 0, 0);
}
@media (min-width: 1200px){#s-aaff2461-c56f-4307-ad4c-9116a4ee3051 {
  min-height: 325px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-aaff2461-c56f-4307-ad4c-9116a4ee3051 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-aaff2461-c56f-4307-ad4c-9116a4ee3051 {
  min-height: 190px;
}
}@media (max-width: 767px){#s-aaff2461-c56f-4307-ad4c-9116a4ee3051 {
  
}
}







#s-aaff2461-c56f-4307-ad4c-9116a4ee3051 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-aaff2461-c56f-4307-ad4c-9116a4ee3051 {
  cursor: pointer;
}#s-aaff2461-c56f-4307-ad4c-9116a4ee3051.shg-box.shg-c {
  justify-content: center;
}
@media (min-width: 768px) and (max-width: 991px){






#s-aaff2461-c56f-4307-ad4c-9116a4ee3051 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-aaff2461-c56f-4307-ad4c-9116a4ee3051 {
  cursor: pointer;
}#s-aaff2461-c56f-4307-ad4c-9116a4ee3051.shg-box.shg-c {
  justify-content: center;
}
}
#s-13def8b4-e612-44a2-8eaa-1c33dc8a8524 {
  margin-bottom: 15px;
max-width: 300px;
text-align: center;
}



.shg-image-margin-container-s-13def8b4-e612-44a2-8eaa-1c33dc8a8524 {
  
  
  
  margin-bottom: 15px;
}

#s-13def8b4-e612-44a2-8eaa-1c33dc8a8524 {
  margin: 0 !important;
}





  img.s-13def8b4-e612-44a2-8eaa-1c33dc8a8524.shogun-image {
    
    
  }


.s-13def8b4-e612-44a2-8eaa-1c33dc8a8524 .shogun-image-content {
  
    align-items: center;
  
}

.s-13def8b4-e612-44a2-8eaa-1c33dc8a8524.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13def8b4-e612-44a2-8eaa-1c33dc8a8524.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13def8b4-e612-44a2-8eaa-1c33dc8a8524.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-13def8b4-e612-44a2-8eaa-1c33dc8a8524 {
  
  
  
  
}

#s-13def8b4-e612-44a2-8eaa-1c33dc8a8524 {
  margin: 0 !important;
}





  img.s-13def8b4-e612-44a2-8eaa-1c33dc8a8524.shogun-image {
    
    
  }


.s-13def8b4-e612-44a2-8eaa-1c33dc8a8524 .shogun-image-content {
  
    align-items: center;
  
}

.s-13def8b4-e612-44a2-8eaa-1c33dc8a8524.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13def8b4-e612-44a2-8eaa-1c33dc8a8524.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13def8b4-e612-44a2-8eaa-1c33dc8a8524.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-13def8b4-e612-44a2-8eaa-1c33dc8a8524 {
  
  
  
  
}

#s-13def8b4-e612-44a2-8eaa-1c33dc8a8524 {
  margin: 0 !important;
}





  img.s-13def8b4-e612-44a2-8eaa-1c33dc8a8524.shogun-image {
    
    
  }


.s-13def8b4-e612-44a2-8eaa-1c33dc8a8524 .shogun-image-content {
  
    align-items: center;
  
}

.s-13def8b4-e612-44a2-8eaa-1c33dc8a8524.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13def8b4-e612-44a2-8eaa-1c33dc8a8524.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13def8b4-e612-44a2-8eaa-1c33dc8a8524.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-13def8b4-e612-44a2-8eaa-1c33dc8a8524 {
  
  
  
  
}

#s-13def8b4-e612-44a2-8eaa-1c33dc8a8524 {
  margin: 0 !important;
}





  img.s-13def8b4-e612-44a2-8eaa-1c33dc8a8524.shogun-image {
    
    
  }


.s-13def8b4-e612-44a2-8eaa-1c33dc8a8524 .shogun-image-content {
  
    align-items: center;
  
}

.s-13def8b4-e612-44a2-8eaa-1c33dc8a8524.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13def8b4-e612-44a2-8eaa-1c33dc8a8524.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13def8b4-e612-44a2-8eaa-1c33dc8a8524.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-13def8b4-e612-44a2-8eaa-1c33dc8a8524 {
  
  
  
  
}

#s-13def8b4-e612-44a2-8eaa-1c33dc8a8524 {
  margin: 0 !important;
}





  img.s-13def8b4-e612-44a2-8eaa-1c33dc8a8524.shogun-image {
    
    
  }


.s-13def8b4-e612-44a2-8eaa-1c33dc8a8524 .shogun-image-content {
  
    align-items: center;
  
}

.s-13def8b4-e612-44a2-8eaa-1c33dc8a8524.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13def8b4-e612-44a2-8eaa-1c33dc8a8524.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13def8b4-e612-44a2-8eaa-1c33dc8a8524.shogun-image {
  box-sizing: border-box;
}




}
#s-12253b14-9476-4ece-ab25-eebfd1ee7447 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-12253b14-9476-4ece-ab25-eebfd1ee7447 .shogun-heading-component h3 {
  
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: center;
}


@media (min-width: 1200px){#s-12253b14-9476-4ece-ab25-eebfd1ee7447 .shogun-heading-component h3 {
  
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 22px;
  
  
  text-align: center;
}


}
#s-c6e87d2a-1f47-4ce7-8c58-22f8e35e7f77 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
background-color: rgba(0, 0, 0, 0);
}
@media (min-width: 1200px){#s-c6e87d2a-1f47-4ce7-8c58-22f8e35e7f77 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c6e87d2a-1f47-4ce7-8c58-22f8e35e7f77 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-c6e87d2a-1f47-4ce7-8c58-22f8e35e7f77 {
  
}
}@media (max-width: 767px){#s-c6e87d2a-1f47-4ce7-8c58-22f8e35e7f77 {
  
}
}







#s-c6e87d2a-1f47-4ce7-8c58-22f8e35e7f77 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c6e87d2a-1f47-4ce7-8c58-22f8e35e7f77.shg-box.shg-c {
  justify-content: flex-start;
}

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

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

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

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

#s-4f217c7e-1966-4528-b863-398fb4ffc5f3 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-left: 2%;
padding-right: 2%;
min-height: 50px;
background-color: rgba(0, 0, 0, 0);
background-position: center center;
}
@media (min-width: 1200px){#s-4f217c7e-1966-4528-b863-398fb4ffc5f3 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-4f217c7e-1966-4528-b863-398fb4ffc5f3 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-4f217c7e-1966-4528-b863-398fb4ffc5f3 {
  
}
}@media (max-width: 767px){#s-4f217c7e-1966-4528-b863-398fb4ffc5f3 {
  
}
}
#s-4f217c7e-1966-4528-b863-398fb4ffc5f3 {
  background-image: url(https://i.shgcdn.com/a1ed8318-c49a-4276-b20a-ad0d487044bb/);
}

@media (max-width: 480px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-4f217c7e-1966-4528-b863-398fb4ffc5f3 {
  background-image: url(https://i.shgcdn.com/a1ed8318-c49a-4276-b20a-ad0d487044bb/-/resize/480x/);
}
#s-4f217c7e-1966-4528-b863-398fb4ffc5f3.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
#s-4f217c7e-1966-4528-b863-398fb4ffc5f3 {
  background-image: url(https://i.shgcdn.com/a1ed8318-c49a-4276-b20a-ad0d487044bb/-/resize/960x/);
}
#s-4f217c7e-1966-4528-b863-398fb4ffc5f3.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-4f217c7e-1966-4528-b863-398fb4ffc5f3 {
  background-image: url(https://i.shgcdn.com/a1ed8318-c49a-4276-b20a-ad0d487044bb/-/resize/768x/);
}
#s-4f217c7e-1966-4528-b863-398fb4ffc5f3.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
#s-4f217c7e-1966-4528-b863-398fb4ffc5f3 {
  background-image: url(https://i.shgcdn.com/a1ed8318-c49a-4276-b20a-ad0d487044bb/-/resize/1536x/);
}
#s-4f217c7e-1966-4528-b863-398fb4ffc5f3.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-4f217c7e-1966-4528-b863-398fb4ffc5f3 {
  background-image: url(https://i.shgcdn.com/a1ed8318-c49a-4276-b20a-ad0d487044bb/-/resize/1024x/);
}
#s-4f217c7e-1966-4528-b863-398fb4ffc5f3.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
#s-4f217c7e-1966-4528-b863-398fb4ffc5f3 {
  background-image: url(https://i.shgcdn.com/a1ed8318-c49a-4276-b20a-ad0d487044bb/-/resize/2048x/);
}
#s-4f217c7e-1966-4528-b863-398fb4ffc5f3.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-4f217c7e-1966-4528-b863-398fb4ffc5f3 {
  background-image: url(https://i.shgcdn.com/a1ed8318-c49a-4276-b20a-ad0d487044bb/-/resize/1200x/);
}
#s-4f217c7e-1966-4528-b863-398fb4ffc5f3.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 2) {
#s-4f217c7e-1966-4528-b863-398fb4ffc5f3 {
  background-image: url(https://i.shgcdn.com/a1ed8318-c49a-4276-b20a-ad0d487044bb/-/resize/2048x/);
}
#s-4f217c7e-1966-4528-b863-398fb4ffc5f3.shogun-lazyload-bg-image {
  background-image: none;
}

}







#s-4f217c7e-1966-4528-b863-398fb4ffc5f3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4f217c7e-1966-4528-b863-398fb4ffc5f3.shg-box.shg-c {
  justify-content: flex-start;
}

#s-c99d50bd-3ab6-404b-9de6-424babe68696 {
  margin-top: 50px;
margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-c99d50bd-3ab6-404b-9de6-424babe68696"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c99d50bd-3ab6-404b-9de6-424babe68696"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c99d50bd-3ab6-404b-9de6-424babe68696"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c99d50bd-3ab6-404b-9de6-424babe68696"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-85f7ad89-be11-4a34-9c25-daaf15cb0fc4 {
  margin-top: 5%;
margin-left: 0px;
margin-bottom: 5%;
margin-right: 0px;
min-height: 50px;
background-color: rgba(0, 0, 0, 0);
}
@media (min-width: 1200px){#s-85f7ad89-be11-4a34-9c25-daaf15cb0fc4 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-85f7ad89-be11-4a34-9c25-daaf15cb0fc4 {
  margin-top: 0%;
margin-bottom: 0%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-85f7ad89-be11-4a34-9c25-daaf15cb0fc4 {
  margin-top: 0%;
margin-bottom: 0%;
}
}@media (max-width: 767px){#s-85f7ad89-be11-4a34-9c25-daaf15cb0fc4 {
  
}
}







#s-85f7ad89-be11-4a34-9c25-daaf15cb0fc4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-85f7ad89-be11-4a34-9c25-daaf15cb0fc4 {
  cursor: pointer;
}#s-85f7ad89-be11-4a34-9c25-daaf15cb0fc4.shg-box.shg-c {
  justify-content: center;
}

#s-3c03d336-7cfb-4686-aa8d-ba66d9df845d {
  margin-left: 10%;
margin-right: auto;
max-width: 40%;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-3c03d336-7cfb-4686-aa8d-ba66d9df845d {
  max-width: 50%;
}
}@media (max-width: 767px){#s-3c03d336-7cfb-4686-aa8d-ba66d9df845d {
  margin-right: 10%;
max-width: 50%;
text-align: center;
}
}


.shg-image-margin-container-s-3c03d336-7cfb-4686-aa8d-ba66d9df845d {
  margin-left: 10%;
  margin-right: auto;
  
  
}

#s-3c03d336-7cfb-4686-aa8d-ba66d9df845d {
  margin: 0 !important;
}





  img.s-3c03d336-7cfb-4686-aa8d-ba66d9df845d.shogun-image {
    
    
  }


.s-3c03d336-7cfb-4686-aa8d-ba66d9df845d .shogun-image-content {
  
    align-items: center;
  
}

.s-3c03d336-7cfb-4686-aa8d-ba66d9df845d.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-3c03d336-7cfb-4686-aa8d-ba66d9df845d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3c03d336-7cfb-4686-aa8d-ba66d9df845d.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-3c03d336-7cfb-4686-aa8d-ba66d9df845d {
  
  
  
  
}

#s-3c03d336-7cfb-4686-aa8d-ba66d9df845d {
  margin: 0 !important;
}





  img.s-3c03d336-7cfb-4686-aa8d-ba66d9df845d.shogun-image {
    
    
  }


.s-3c03d336-7cfb-4686-aa8d-ba66d9df845d .shogun-image-content {
  
    align-items: center;
  
}

.s-3c03d336-7cfb-4686-aa8d-ba66d9df845d.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-3c03d336-7cfb-4686-aa8d-ba66d9df845d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3c03d336-7cfb-4686-aa8d-ba66d9df845d.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-3c03d336-7cfb-4686-aa8d-ba66d9df845d {
  
  
  
  
}

#s-3c03d336-7cfb-4686-aa8d-ba66d9df845d {
  margin: 0 !important;
}





  img.s-3c03d336-7cfb-4686-aa8d-ba66d9df845d.shogun-image {
    
    
  }


.s-3c03d336-7cfb-4686-aa8d-ba66d9df845d .shogun-image-content {
  
    align-items: center;
  
}

.s-3c03d336-7cfb-4686-aa8d-ba66d9df845d.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-3c03d336-7cfb-4686-aa8d-ba66d9df845d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3c03d336-7cfb-4686-aa8d-ba66d9df845d.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-3c03d336-7cfb-4686-aa8d-ba66d9df845d {
  
  
  
  
}

#s-3c03d336-7cfb-4686-aa8d-ba66d9df845d {
  margin: 0 !important;
}





  img.s-3c03d336-7cfb-4686-aa8d-ba66d9df845d.shogun-image {
    
    
  }


.s-3c03d336-7cfb-4686-aa8d-ba66d9df845d .shogun-image-content {
  
    align-items: center;
  
}

.s-3c03d336-7cfb-4686-aa8d-ba66d9df845d.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-3c03d336-7cfb-4686-aa8d-ba66d9df845d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3c03d336-7cfb-4686-aa8d-ba66d9df845d.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-3c03d336-7cfb-4686-aa8d-ba66d9df845d {
  
  margin-right: 10%;
  
  
}

#s-3c03d336-7cfb-4686-aa8d-ba66d9df845d {
  margin: 0 !important;
}





  img.s-3c03d336-7cfb-4686-aa8d-ba66d9df845d.shogun-image {
    
    
  }


.s-3c03d336-7cfb-4686-aa8d-ba66d9df845d .shogun-image-content {
  
    align-items: center;
  
}

.s-3c03d336-7cfb-4686-aa8d-ba66d9df845d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3c03d336-7cfb-4686-aa8d-ba66d9df845d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3c03d336-7cfb-4686-aa8d-ba66d9df845d.shogun-image {
  box-sizing: border-box;
}




}
#s-c31005d0-8e69-4827-8ea5-97faeb6fa099 {
  margin-left: 10%;
margin-right: 5%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-c31005d0-8e69-4827-8ea5-97faeb6fa099 {
  margin-right: 0%;
}
}@media (max-width: 767px){#s-c31005d0-8e69-4827-8ea5-97faeb6fa099 {
  margin-left: 5%;
text-align: center;
}
}
#s-c31005d0-8e69-4827-8ea5-97faeb6fa099 .shogun-heading-component h1 {
  
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  
  
  
}



#s-6734a1a2-fcbb-464c-81b0-56be6802a7db {
  margin-left: 10%;
margin-right: 5%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-6734a1a2-fcbb-464c-81b0-56be6802a7db {
  margin-right: 0%;
}
}@media (max-width: 767px){#s-6734a1a2-fcbb-464c-81b0-56be6802a7db {
  margin-left: 5%;
text-align: center;
}
}
#s-6734a1a2-fcbb-464c-81b0-56be6802a7db .shogun-heading-component h3 {
  
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-edbf43ff-73bb-4be5-b394-08b85c711ad4 {
  margin-left: auto;
margin-right: auto;
padding-right: 10%;
}
@media (max-width: 767px){#s-edbf43ff-73bb-4be5-b394-08b85c711ad4 {
  padding-left: 5%;
padding-right: 5%;
}
}
#s-b8cdfa96-08b3-487c-9fcb-5b6cb8eb3ee0 {
  margin-top: 50px;
margin-left: 0px;
margin-bottom: 50px;
margin-right: 0px;
padding-top: 0px;
padding-bottom: 0px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-b8cdfa96-08b3-487c-9fcb-5b6cb8eb3ee0 {
  margin-top: 0px;
margin-bottom: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b8cdfa96-08b3-487c-9fcb-5b6cb8eb3ee0 {
  margin-top: 0px;
margin-bottom: 50px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-b8cdfa96-08b3-487c-9fcb-5b6cb8eb3ee0 {
  margin-top: 0px;
margin-bottom: 0px;
}
}@media (max-width: 767px){#s-b8cdfa96-08b3-487c-9fcb-5b6cb8eb3ee0 {
  margin-top: 0px;
margin-bottom: 20px;
display: none;
}
#s-b8cdfa96-08b3-487c-9fcb-5b6cb8eb3ee0, #wrap-s-b8cdfa96-08b3-487c-9fcb-5b6cb8eb3ee0 { display: none !important; }}







#s-b8cdfa96-08b3-487c-9fcb-5b6cb8eb3ee0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b8cdfa96-08b3-487c-9fcb-5b6cb8eb3ee0.shg-box.shg-c {
  justify-content: flex-start;
}

#s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84 {
  margin-top: 50px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-top: 0px;
padding-left: 2%;
padding-bottom: 0px;
padding-right: 2%;
max-width: 6360px;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84 {
  margin-top: 50px;
}
}


.shg-image-margin-container-s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84 {
  margin-left: 0%;
  margin-right: 0%;
  margin-top: 50px;
  margin-bottom: 0px;
}

#s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84 {
  margin: 0 !important;
}





  img.s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84.shogun-image {
    
    
  }


.s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84 .shogun-image-content {
  
    align-items: center;
  
}

.s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84.shg-align-container {
  display: flex;
  justify-content: center
}

.s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84 {
  
  
  
  
}

#s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84 {
  margin: 0 !important;
}





  img.s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84.shogun-image {
    
    
  }


.s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84 .shogun-image-content {
  
    align-items: center;
  
}

.s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84.shg-align-container {
  display: flex;
  justify-content: center
}

.s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84 {
  
  
  
  
}

#s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84 {
  margin: 0 !important;
}





  img.s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84.shogun-image {
    
    
  }


.s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84 .shogun-image-content {
  
    align-items: center;
  
}

.s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84.shg-align-container {
  display: flex;
  justify-content: center
}

.s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84 {
  
  
  margin-top: 50px;
  
}

#s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84 {
  margin: 0 !important;
}





  img.s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84.shogun-image {
    
    
  }


.s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84 .shogun-image-content {
  
    align-items: center;
  
}

.s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84.shg-align-container {
  display: flex;
  justify-content: center
}

.s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84 {
  
  
  
  
}

#s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84 {
  margin: 0 !important;
}





  img.s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84.shogun-image {
    
    
  }


.s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84 .shogun-image-content {
  
    align-items: center;
  
}

.s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84.shg-align-container {
  display: flex;
  justify-content: center
}

.s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-da0a0def-ab8a-4f4c-bf04-2fdc88695b84.shogun-image {
  box-sizing: border-box;
}




}
#s-8905641f-55d5-4833-8fd2-aca877910d86 {
  max-width: 780px;
text-align: center;
}
@media (min-width: 1200px){#s-8905641f-55d5-4833-8fd2-aca877910d86 {
  display: none;
}
#s-8905641f-55d5-4833-8fd2-aca877910d86, #wrap-s-8905641f-55d5-4833-8fd2-aca877910d86 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8905641f-55d5-4833-8fd2-aca877910d86 {
  display: none;
}
#s-8905641f-55d5-4833-8fd2-aca877910d86, #wrap-s-8905641f-55d5-4833-8fd2-aca877910d86 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-8905641f-55d5-4833-8fd2-aca877910d86 {
  display: none;
}
#s-8905641f-55d5-4833-8fd2-aca877910d86, #wrap-s-8905641f-55d5-4833-8fd2-aca877910d86 { display: none !important; }}


.shg-image-margin-container-s-8905641f-55d5-4833-8fd2-aca877910d86 {
  
  
  
  
}

#s-8905641f-55d5-4833-8fd2-aca877910d86 {
  margin: 0 !important;
}





  img.s-8905641f-55d5-4833-8fd2-aca877910d86.shogun-image {
    
    
  }


.s-8905641f-55d5-4833-8fd2-aca877910d86 .shogun-image-content {
  
    align-items: center;
  
}

.s-8905641f-55d5-4833-8fd2-aca877910d86.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8905641f-55d5-4833-8fd2-aca877910d86.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8905641f-55d5-4833-8fd2-aca877910d86.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-8905641f-55d5-4833-8fd2-aca877910d86 {
  
  
  
  
}

#s-8905641f-55d5-4833-8fd2-aca877910d86 {
  margin: 0 !important;
}





  img.s-8905641f-55d5-4833-8fd2-aca877910d86.shogun-image {
    
    
  }


.s-8905641f-55d5-4833-8fd2-aca877910d86 .shogun-image-content {
  
    align-items: center;
  
}

.s-8905641f-55d5-4833-8fd2-aca877910d86.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8905641f-55d5-4833-8fd2-aca877910d86.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8905641f-55d5-4833-8fd2-aca877910d86.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-8905641f-55d5-4833-8fd2-aca877910d86 {
  
  
  
  
}

#s-8905641f-55d5-4833-8fd2-aca877910d86 {
  margin: 0 !important;
}





  img.s-8905641f-55d5-4833-8fd2-aca877910d86.shogun-image {
    
    
  }


.s-8905641f-55d5-4833-8fd2-aca877910d86 .shogun-image-content {
  
    align-items: center;
  
}

.s-8905641f-55d5-4833-8fd2-aca877910d86.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8905641f-55d5-4833-8fd2-aca877910d86.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8905641f-55d5-4833-8fd2-aca877910d86.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-8905641f-55d5-4833-8fd2-aca877910d86 {
  
  
  
  
}

#s-8905641f-55d5-4833-8fd2-aca877910d86 {
  margin: 0 !important;
}





  img.s-8905641f-55d5-4833-8fd2-aca877910d86.shogun-image {
    
    
  }


.s-8905641f-55d5-4833-8fd2-aca877910d86 .shogun-image-content {
  
    align-items: center;
  
}

.s-8905641f-55d5-4833-8fd2-aca877910d86.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8905641f-55d5-4833-8fd2-aca877910d86.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8905641f-55d5-4833-8fd2-aca877910d86.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-8905641f-55d5-4833-8fd2-aca877910d86 {
  
  
  
  
}

#s-8905641f-55d5-4833-8fd2-aca877910d86 {
  margin: 0 !important;
}





  img.s-8905641f-55d5-4833-8fd2-aca877910d86.shogun-image {
    
    
  }


.s-8905641f-55d5-4833-8fd2-aca877910d86 .shogun-image-content {
  
    align-items: center;
  
}

.s-8905641f-55d5-4833-8fd2-aca877910d86.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8905641f-55d5-4833-8fd2-aca877910d86.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8905641f-55d5-4833-8fd2-aca877910d86.shogun-image {
  box-sizing: border-box;
}




}
#s-603a6cf1-6356-45a9-b615-18b2bb2dd3c9 {
  background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 992px) and (max-width: 1199px){#s-603a6cf1-6356-45a9-b615-18b2bb2dd3c9 {
  margin-top: 0px;
margin-bottom: 20px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-603a6cf1-6356-45a9-b615-18b2bb2dd3c9 {
  padding-bottom: 50px;
}
}
@media (min-width: 0px) {
[id="s-603a6cf1-6356-45a9-b615-18b2bb2dd3c9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-603a6cf1-6356-45a9-b615-18b2bb2dd3c9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-603a6cf1-6356-45a9-b615-18b2bb2dd3c9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-603a6cf1-6356-45a9-b615-18b2bb2dd3c9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-603a6cf1-6356-45a9-b615-18b2bb2dd3c9"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-59165efb-405a-4d57-9ba1-be7b153ae47d {
  margin-left: 20%;
margin-right: 0%;
max-width: 937px;
text-align: left;
}
@media (min-width: 1200px){#s-59165efb-405a-4d57-9ba1-be7b153ae47d {
  margin-top: 50px;
margin-left: 30%;
margin-right: 0%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-59165efb-405a-4d57-9ba1-be7b153ae47d {
  margin-top: 25px;
margin-left: 25%;
margin-right: 0%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-59165efb-405a-4d57-9ba1-be7b153ae47d {
  margin-top: 25px;
margin-left: 15%;
margin-right: 0%;
padding-top: 0px;
}
}@media (max-width: 767px){#s-59165efb-405a-4d57-9ba1-be7b153ae47d {
  margin-top: 10px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
max-width: 350px;
text-align: center;
}
}


.shg-image-margin-container-s-59165efb-405a-4d57-9ba1-be7b153ae47d {
  margin-left: 20%;
  margin-right: 0%;
  
  
}

#s-59165efb-405a-4d57-9ba1-be7b153ae47d {
  margin: 0 !important;
}





  img.s-59165efb-405a-4d57-9ba1-be7b153ae47d.shogun-image {
    
    
  }


.s-59165efb-405a-4d57-9ba1-be7b153ae47d .shogun-image-content {
  
    align-items: center;
  
}

.s-59165efb-405a-4d57-9ba1-be7b153ae47d.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-59165efb-405a-4d57-9ba1-be7b153ae47d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-59165efb-405a-4d57-9ba1-be7b153ae47d.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-59165efb-405a-4d57-9ba1-be7b153ae47d {
  margin-left: 30%;
  margin-right: 0%;
  margin-top: 50px;
  
}

#s-59165efb-405a-4d57-9ba1-be7b153ae47d {
  margin: 0 !important;
}





  img.s-59165efb-405a-4d57-9ba1-be7b153ae47d.shogun-image {
    
    
  }


.s-59165efb-405a-4d57-9ba1-be7b153ae47d .shogun-image-content {
  
    align-items: center;
  
}

.s-59165efb-405a-4d57-9ba1-be7b153ae47d.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-59165efb-405a-4d57-9ba1-be7b153ae47d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-59165efb-405a-4d57-9ba1-be7b153ae47d.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-59165efb-405a-4d57-9ba1-be7b153ae47d {
  margin-left: 25%;
  margin-right: 0%;
  margin-top: 25px;
  
}

#s-59165efb-405a-4d57-9ba1-be7b153ae47d {
  margin: 0 !important;
}





  img.s-59165efb-405a-4d57-9ba1-be7b153ae47d.shogun-image {
    
    
  }


.s-59165efb-405a-4d57-9ba1-be7b153ae47d .shogun-image-content {
  
    align-items: center;
  
}

.s-59165efb-405a-4d57-9ba1-be7b153ae47d.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-59165efb-405a-4d57-9ba1-be7b153ae47d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-59165efb-405a-4d57-9ba1-be7b153ae47d.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-59165efb-405a-4d57-9ba1-be7b153ae47d {
  margin-left: 15%;
  margin-right: 0%;
  margin-top: 25px;
  
}

#s-59165efb-405a-4d57-9ba1-be7b153ae47d {
  margin: 0 !important;
}





  img.s-59165efb-405a-4d57-9ba1-be7b153ae47d.shogun-image {
    
    
  }


.s-59165efb-405a-4d57-9ba1-be7b153ae47d .shogun-image-content {
  
    align-items: center;
  
}

.s-59165efb-405a-4d57-9ba1-be7b153ae47d.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-59165efb-405a-4d57-9ba1-be7b153ae47d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-59165efb-405a-4d57-9ba1-be7b153ae47d.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-59165efb-405a-4d57-9ba1-be7b153ae47d {
  margin-left: 0%;
  margin-right: 0%;
  margin-top: 10px;
  margin-bottom: 10px;
}

#s-59165efb-405a-4d57-9ba1-be7b153ae47d {
  margin: 0 !important;
}





  img.s-59165efb-405a-4d57-9ba1-be7b153ae47d.shogun-image {
    
    
  }


.s-59165efb-405a-4d57-9ba1-be7b153ae47d .shogun-image-content {
  
    align-items: center;
  
}

.s-59165efb-405a-4d57-9ba1-be7b153ae47d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-59165efb-405a-4d57-9ba1-be7b153ae47d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-59165efb-405a-4d57-9ba1-be7b153ae47d.shogun-image {
  box-sizing: border-box;
}




}
#s-d068eed5-cbe6-422e-bb21-a77edbf18881 {
  margin-top: 100px;
margin-left: 10%;
margin-right: 10%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-d068eed5-cbe6-422e-bb21-a77edbf18881 {
  margin-top: 50px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-d068eed5-cbe6-422e-bb21-a77edbf18881 {
  margin-top: 18px;
margin-left: 0%;
}
}@media (max-width: 767px){#s-d068eed5-cbe6-422e-bb21-a77edbf18881 {
  margin-top: 20px;
margin-left: 10%;
margin-right: 10%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
}
#s-d068eed5-cbe6-422e-bb21-a77edbf18881 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-d068eed5-cbe6-422e-bb21-a77edbf18881 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  
  
  text-align: center;
}


}
#s-bdb60ef4-4994-4e18-b122-e937a6473dd2 {
  margin-left: 10%;
margin-bottom: 20px;
margin-right: 10%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-bdb60ef4-4994-4e18-b122-e937a6473dd2 {
  margin-left: 0%;
}
}
#s-bdb60ef4-4994-4e18-b122-e937a6473dd2 .shogun-heading-component h3 {
  
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-5fe61a24-09be-45c7-a430-67afd8bf1bb0 {
  margin-top: 0px;
margin-left: 10%;
margin-bottom: 0px;
margin-right: 10%;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-radius: 0px;
background-color: rgba(255, 229, 0, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 0px;
}
#s-5fe61a24-09be-45c7-a430-67afd8bf1bb0:hover {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-5fe61a24-09be-45c7-a430-67afd8bf1bb0:active {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}@media (min-width: 1200px){#s-5fe61a24-09be-45c7-a430-67afd8bf1bb0 {
  text-align: left;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-5fe61a24-09be-45c7-a430-67afd8bf1bb0 {
  text-align: left;
}
}@media (min-width: 768px) and (max-width: 991px){#s-5fe61a24-09be-45c7-a430-67afd8bf1bb0 {
  margin-left: 0%;
margin-right: 0%;
text-align: left;
}
}@media (max-width: 767px){#s-5fe61a24-09be-45c7-a430-67afd8bf1bb0 {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-radius: 0px;
background-color: rgba(255, 229, 0, 1);
text-decoration: none;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 0px;
}
}

  #s-5fe61a24-09be-45c7-a430-67afd8bf1bb0-root {
    text-align: center;
  }


#s-5fe61a24-09be-45c7-a430-67afd8bf1bb0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-5fe61a24-09be-45c7-a430-67afd8bf1bb0-root {
    text-align: left;
  }


#s-5fe61a24-09be-45c7-a430-67afd8bf1bb0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-5fe61a24-09be-45c7-a430-67afd8bf1bb0-root {
    text-align: left;
  }


#s-5fe61a24-09be-45c7-a430-67afd8bf1bb0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-5fe61a24-09be-45c7-a430-67afd8bf1bb0-root {
    text-align: left;
  }


#s-5fe61a24-09be-45c7-a430-67afd8bf1bb0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-5fe61a24-09be-45c7-a430-67afd8bf1bb0-root {
    text-align: center;
  }


#s-5fe61a24-09be-45c7-a430-67afd8bf1bb0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  block ;
}
}
#s-5ee61b8b-b210-4eb9-b6a2-4ddbd96cc402 {
  margin-top: 50px;
margin-left: 0px;
margin-bottom: 50px;
margin-right: 0px;
padding-top: 20px;
padding-bottom: 0px;
min-height: 50px;
background-color: rgba(247, 247, 247, 1);
}
@media (min-width: 1200px){#s-5ee61b8b-b210-4eb9-b6a2-4ddbd96cc402 {
  margin-top: 0px;
margin-bottom: 50px;
padding-top: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-5ee61b8b-b210-4eb9-b6a2-4ddbd96cc402 {
  margin-top: 0px;
margin-bottom: 50px;
padding-top: 50px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-5ee61b8b-b210-4eb9-b6a2-4ddbd96cc402 {
  margin-top: 0px;
margin-bottom: 50px;
padding-top: 50px;
}
}@media (max-width: 767px){#s-5ee61b8b-b210-4eb9-b6a2-4ddbd96cc402 {
  margin-top: 0px;
margin-bottom: 50px;
padding-top: 0px;
display: none;
}
#s-5ee61b8b-b210-4eb9-b6a2-4ddbd96cc402, #wrap-s-5ee61b8b-b210-4eb9-b6a2-4ddbd96cc402 { display: none !important; }}







#s-5ee61b8b-b210-4eb9-b6a2-4ddbd96cc402 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5ee61b8b-b210-4eb9-b6a2-4ddbd96cc402.shg-box.shg-c {
  justify-content: flex-start;
}

#s-08938882-6beb-45e0-8b61-ba729827dcec {
  margin-left: 0%;
margin-right: 0%;
padding-left: 2%;
padding-right: 2%;
max-width: 6360px;
text-align: center;
background-color: rgba(247, 247, 247, 1);
}
@media (max-width: 767px){#s-08938882-6beb-45e0-8b61-ba729827dcec {
  display: none;
}
#s-08938882-6beb-45e0-8b61-ba729827dcec, #wrap-s-08938882-6beb-45e0-8b61-ba729827dcec { display: none !important; }}


.shg-image-margin-container-s-08938882-6beb-45e0-8b61-ba729827dcec {
  margin-left: 0%;
  margin-right: 0%;
  
  
}

#s-08938882-6beb-45e0-8b61-ba729827dcec {
  margin: 0 !important;
}





  img.s-08938882-6beb-45e0-8b61-ba729827dcec.shogun-image {
    
    
  }


.s-08938882-6beb-45e0-8b61-ba729827dcec .shogun-image-content {
  
    align-items: center;
  
}

.s-08938882-6beb-45e0-8b61-ba729827dcec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-08938882-6beb-45e0-8b61-ba729827dcec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-08938882-6beb-45e0-8b61-ba729827dcec.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-08938882-6beb-45e0-8b61-ba729827dcec {
  
  
  
  
}

#s-08938882-6beb-45e0-8b61-ba729827dcec {
  margin: 0 !important;
}





  img.s-08938882-6beb-45e0-8b61-ba729827dcec.shogun-image {
    
    
  }


.s-08938882-6beb-45e0-8b61-ba729827dcec .shogun-image-content {
  
    align-items: center;
  
}

.s-08938882-6beb-45e0-8b61-ba729827dcec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-08938882-6beb-45e0-8b61-ba729827dcec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-08938882-6beb-45e0-8b61-ba729827dcec.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-08938882-6beb-45e0-8b61-ba729827dcec {
  
  
  
  
}

#s-08938882-6beb-45e0-8b61-ba729827dcec {
  margin: 0 !important;
}





  img.s-08938882-6beb-45e0-8b61-ba729827dcec.shogun-image {
    
    
  }


.s-08938882-6beb-45e0-8b61-ba729827dcec .shogun-image-content {
  
    align-items: center;
  
}

.s-08938882-6beb-45e0-8b61-ba729827dcec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-08938882-6beb-45e0-8b61-ba729827dcec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-08938882-6beb-45e0-8b61-ba729827dcec.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-08938882-6beb-45e0-8b61-ba729827dcec {
  
  
  
  
}

#s-08938882-6beb-45e0-8b61-ba729827dcec {
  margin: 0 !important;
}





  img.s-08938882-6beb-45e0-8b61-ba729827dcec.shogun-image {
    
    
  }


.s-08938882-6beb-45e0-8b61-ba729827dcec .shogun-image-content {
  
    align-items: center;
  
}

.s-08938882-6beb-45e0-8b61-ba729827dcec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-08938882-6beb-45e0-8b61-ba729827dcec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-08938882-6beb-45e0-8b61-ba729827dcec.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-08938882-6beb-45e0-8b61-ba729827dcec {
  
  
  
  
}

#s-08938882-6beb-45e0-8b61-ba729827dcec {
  margin: 0 !important;
}





  img.s-08938882-6beb-45e0-8b61-ba729827dcec.shogun-image {
    
    
  }


.s-08938882-6beb-45e0-8b61-ba729827dcec .shogun-image-content {
  
    align-items: center;
  
}

.s-08938882-6beb-45e0-8b61-ba729827dcec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-08938882-6beb-45e0-8b61-ba729827dcec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-08938882-6beb-45e0-8b61-ba729827dcec.shogun-image {
  box-sizing: border-box;
}




}
#s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0 {
  max-width: 780px;
text-align: center;
}
@media (min-width: 1200px){#s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0 {
  display: none;
}
#s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0, #wrap-s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0 {
  display: none;
}
#s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0, #wrap-s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0 {
  display: none;
}
#s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0, #wrap-s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0 { display: none !important; }}


.shg-image-margin-container-s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0 {
  
  
  
  
}

#s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0 {
  margin: 0 !important;
}





  img.s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0.shogun-image {
    
    
  }


.s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0 .shogun-image-content {
  
    align-items: center;
  
}

.s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0 {
  
  
  
  
}

#s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0 {
  margin: 0 !important;
}





  img.s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0.shogun-image {
    
    
  }


.s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0 .shogun-image-content {
  
    align-items: center;
  
}

.s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0 {
  
  
  
  
}

#s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0 {
  margin: 0 !important;
}





  img.s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0.shogun-image {
    
    
  }


.s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0 .shogun-image-content {
  
    align-items: center;
  
}

.s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0 {
  
  
  
  
}

#s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0 {
  margin: 0 !important;
}





  img.s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0.shogun-image {
    
    
  }


.s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0 .shogun-image-content {
  
    align-items: center;
  
}

.s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0 {
  
  
  
  
}

#s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0 {
  margin: 0 !important;
}





  img.s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0.shogun-image {
    
    
  }


.s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0 .shogun-image-content {
  
    align-items: center;
  
}

.s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8a6f11b6-1829-49d8-ac6a-09e7e3f089c0.shogun-image {
  box-sizing: border-box;
}




}
#s-cfe58ccc-12a9-4b88-b55d-074cade2052c {
  background-color: rgba(247, 247, 247, 1);
}
@media (min-width: 992px) and (max-width: 1199px){#s-cfe58ccc-12a9-4b88-b55d-074cade2052c {
  margin-top: 0px;
margin-bottom: 20px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-cfe58ccc-12a9-4b88-b55d-074cade2052c {
  padding-bottom: 50px;
}
}
@media (min-width: 0px) {
[id="s-cfe58ccc-12a9-4b88-b55d-074cade2052c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cfe58ccc-12a9-4b88-b55d-074cade2052c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-cfe58ccc-12a9-4b88-b55d-074cade2052c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-cfe58ccc-12a9-4b88-b55d-074cade2052c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-45946a6c-907d-478f-88ac-20970a28f72a {
  margin-top: 100px;
margin-left: 10%;
margin-right: 10%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-45946a6c-907d-478f-88ac-20970a28f72a {
  margin-top: 50px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-45946a6c-907d-478f-88ac-20970a28f72a {
  margin-top: 18px;
}
}@media (max-width: 767px){#s-45946a6c-907d-478f-88ac-20970a28f72a {
  margin-top: 20px;
margin-left: 10%;
margin-right: 10%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
}
#s-45946a6c-907d-478f-88ac-20970a28f72a .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-45946a6c-907d-478f-88ac-20970a28f72a .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  
  
  text-align: center;
}


}
#s-7f3bb4bd-9e82-4266-99de-b1e0a47f90e7 {
  border-style: solid;
margin-top: 0px;
margin-left: 10%;
margin-bottom: 20px;
margin-right: 10%;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0.2);
text-align: left;
}
@media (max-width: 767px){#s-7f3bb4bd-9e82-4266-99de-b1e0a47f90e7 {
  border-style: solid;
margin-top: 0px;
margin-left: 10%;
margin-bottom: 20px;
margin-right: 10%;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0.2);
text-align: center;
}
}
#s-7f3bb4bd-9e82-4266-99de-b1e0a47f90e7 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-7f3bb4bd-9e82-4266-99de-b1e0a47f90e7 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: center;
}


}
#s-c89867c5-17c1-49fc-97cc-6e32a5b539e5 {
  margin-top: 0px;
margin-left: 10%;
margin-bottom: 0px;
margin-right: 10%;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-radius: 0px;
background-color: rgba(255, 229, 0, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 0px;
}
#s-c89867c5-17c1-49fc-97cc-6e32a5b539e5:hover {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-c89867c5-17c1-49fc-97cc-6e32a5b539e5:active {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}@media (min-width: 1200px){#s-c89867c5-17c1-49fc-97cc-6e32a5b539e5 {
  text-align: left;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c89867c5-17c1-49fc-97cc-6e32a5b539e5 {
  text-align: left;
}
}@media (min-width: 768px) and (max-width: 991px){#s-c89867c5-17c1-49fc-97cc-6e32a5b539e5 {
  text-align: left;
}
}@media (max-width: 767px){#s-c89867c5-17c1-49fc-97cc-6e32a5b539e5 {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-radius: 0px;
background-color: rgba(255, 229, 0, 1);
text-decoration: none;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 0px;
}
}

  #s-c89867c5-17c1-49fc-97cc-6e32a5b539e5-root {
    text-align: center;
  }


#s-c89867c5-17c1-49fc-97cc-6e32a5b539e5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c89867c5-17c1-49fc-97cc-6e32a5b539e5-root {
    text-align: left;
  }


#s-c89867c5-17c1-49fc-97cc-6e32a5b539e5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c89867c5-17c1-49fc-97cc-6e32a5b539e5-root {
    text-align: left;
  }


#s-c89867c5-17c1-49fc-97cc-6e32a5b539e5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c89867c5-17c1-49fc-97cc-6e32a5b539e5-root {
    text-align: left;
  }


#s-c89867c5-17c1-49fc-97cc-6e32a5b539e5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c89867c5-17c1-49fc-97cc-6e32a5b539e5-root {
    text-align: center;
  }


#s-c89867c5-17c1-49fc-97cc-6e32a5b539e5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  block ;
}
}
#s-bd58c633-2a89-4a38-b48a-4623823b52a2 {
  margin-left: 0%;
margin-right: 0%;
max-width: 600px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-bd58c633-2a89-4a38-b48a-4623823b52a2 {
  margin-top: 25px;
padding-top: 0px;
}
}@media (max-width: 767px){#s-bd58c633-2a89-4a38-b48a-4623823b52a2 {
  margin-bottom: 10px;
padding-left: 0%;
padding-right: 0%;
}
}


.shg-image-margin-container-s-bd58c633-2a89-4a38-b48a-4623823b52a2 {
  margin-left: 0%;
  margin-right: 0%;
  
  
}

#s-bd58c633-2a89-4a38-b48a-4623823b52a2 {
  margin: 0 !important;
}





  img.s-bd58c633-2a89-4a38-b48a-4623823b52a2.shogun-image {
    
    
  }


.s-bd58c633-2a89-4a38-b48a-4623823b52a2 .shogun-image-content {
  
    align-items: center;
  
}

.s-bd58c633-2a89-4a38-b48a-4623823b52a2.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-bd58c633-2a89-4a38-b48a-4623823b52a2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd58c633-2a89-4a38-b48a-4623823b52a2.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-bd58c633-2a89-4a38-b48a-4623823b52a2 {
  
  
  
  
}

#s-bd58c633-2a89-4a38-b48a-4623823b52a2 {
  margin: 0 !important;
}





  img.s-bd58c633-2a89-4a38-b48a-4623823b52a2.shogun-image {
    
    
  }


.s-bd58c633-2a89-4a38-b48a-4623823b52a2 .shogun-image-content {
  
    align-items: center;
  
}

.s-bd58c633-2a89-4a38-b48a-4623823b52a2.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-bd58c633-2a89-4a38-b48a-4623823b52a2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd58c633-2a89-4a38-b48a-4623823b52a2.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-bd58c633-2a89-4a38-b48a-4623823b52a2 {
  
  
  
  
}

#s-bd58c633-2a89-4a38-b48a-4623823b52a2 {
  margin: 0 !important;
}





  img.s-bd58c633-2a89-4a38-b48a-4623823b52a2.shogun-image {
    
    
  }


.s-bd58c633-2a89-4a38-b48a-4623823b52a2 .shogun-image-content {
  
    align-items: center;
  
}

.s-bd58c633-2a89-4a38-b48a-4623823b52a2.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-bd58c633-2a89-4a38-b48a-4623823b52a2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd58c633-2a89-4a38-b48a-4623823b52a2.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-bd58c633-2a89-4a38-b48a-4623823b52a2 {
  
  
  margin-top: 25px;
  
}

#s-bd58c633-2a89-4a38-b48a-4623823b52a2 {
  margin: 0 !important;
}





  img.s-bd58c633-2a89-4a38-b48a-4623823b52a2.shogun-image {
    
    
  }


.s-bd58c633-2a89-4a38-b48a-4623823b52a2 .shogun-image-content {
  
    align-items: center;
  
}

.s-bd58c633-2a89-4a38-b48a-4623823b52a2.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-bd58c633-2a89-4a38-b48a-4623823b52a2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd58c633-2a89-4a38-b48a-4623823b52a2.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-bd58c633-2a89-4a38-b48a-4623823b52a2 {
  
  
  
  margin-bottom: 10px;
}

#s-bd58c633-2a89-4a38-b48a-4623823b52a2 {
  margin: 0 !important;
}





  img.s-bd58c633-2a89-4a38-b48a-4623823b52a2.shogun-image {
    
    
  }


.s-bd58c633-2a89-4a38-b48a-4623823b52a2 .shogun-image-content {
  
    align-items: center;
  
}

.s-bd58c633-2a89-4a38-b48a-4623823b52a2.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-bd58c633-2a89-4a38-b48a-4623823b52a2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd58c633-2a89-4a38-b48a-4623823b52a2.shogun-image {
  box-sizing: border-box;
}




}
#s-8ab9d47b-c492-4652-ad59-636d0477ad9b {
  margin-top: 50px;
margin-left: 0px;
margin-bottom: 50px;
margin-right: 0px;
padding-top: 20px;
padding-bottom: 0px;
min-height: 50px;
background-color: rgba(247, 247, 247, 1);
}
@media (min-width: 1200px){#s-8ab9d47b-c492-4652-ad59-636d0477ad9b {
  margin-top: 0px;
margin-bottom: 50px;
padding-top: 50px;
display: none;
}
#s-8ab9d47b-c492-4652-ad59-636d0477ad9b, #wrap-s-8ab9d47b-c492-4652-ad59-636d0477ad9b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8ab9d47b-c492-4652-ad59-636d0477ad9b {
  margin-top: 0px;
margin-bottom: 50px;
padding-top: 50px;
display: none;
}
#s-8ab9d47b-c492-4652-ad59-636d0477ad9b, #wrap-s-8ab9d47b-c492-4652-ad59-636d0477ad9b { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-8ab9d47b-c492-4652-ad59-636d0477ad9b {
  margin-top: 0px;
margin-bottom: 50px;
padding-top: 50px;
display: none;
}
#s-8ab9d47b-c492-4652-ad59-636d0477ad9b, #wrap-s-8ab9d47b-c492-4652-ad59-636d0477ad9b { display: none !important; }}@media (max-width: 767px){#s-8ab9d47b-c492-4652-ad59-636d0477ad9b {
  margin-top: 0px;
margin-bottom: 50px;
padding-top: 0px;
}
}







#s-8ab9d47b-c492-4652-ad59-636d0477ad9b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8ab9d47b-c492-4652-ad59-636d0477ad9b.shg-box.shg-c {
  justify-content: flex-start;
}

#s-c44ea619-3117-442e-a574-2b343a8affd9 {
  margin-left: 0%;
margin-right: 0%;
padding-left: 2%;
padding-right: 2%;
max-width: 6360px;
text-align: center;
background-color: rgba(247, 247, 247, 1);
}
@media (max-width: 767px){#s-c44ea619-3117-442e-a574-2b343a8affd9 {
  display: none;
}
#s-c44ea619-3117-442e-a574-2b343a8affd9, #wrap-s-c44ea619-3117-442e-a574-2b343a8affd9 { display: none !important; }}


.shg-image-margin-container-s-c44ea619-3117-442e-a574-2b343a8affd9 {
  margin-left: 0%;
  margin-right: 0%;
  
  
}

#s-c44ea619-3117-442e-a574-2b343a8affd9 {
  margin: 0 !important;
}





  img.s-c44ea619-3117-442e-a574-2b343a8affd9.shogun-image {
    
    
  }


.s-c44ea619-3117-442e-a574-2b343a8affd9 .shogun-image-content {
  
    align-items: center;
  
}

.s-c44ea619-3117-442e-a574-2b343a8affd9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c44ea619-3117-442e-a574-2b343a8affd9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c44ea619-3117-442e-a574-2b343a8affd9.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-c44ea619-3117-442e-a574-2b343a8affd9 {
  
  
  
  
}

#s-c44ea619-3117-442e-a574-2b343a8affd9 {
  margin: 0 !important;
}





  img.s-c44ea619-3117-442e-a574-2b343a8affd9.shogun-image {
    
    
  }


.s-c44ea619-3117-442e-a574-2b343a8affd9 .shogun-image-content {
  
    align-items: center;
  
}

.s-c44ea619-3117-442e-a574-2b343a8affd9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c44ea619-3117-442e-a574-2b343a8affd9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c44ea619-3117-442e-a574-2b343a8affd9.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-c44ea619-3117-442e-a574-2b343a8affd9 {
  
  
  
  
}

#s-c44ea619-3117-442e-a574-2b343a8affd9 {
  margin: 0 !important;
}





  img.s-c44ea619-3117-442e-a574-2b343a8affd9.shogun-image {
    
    
  }


.s-c44ea619-3117-442e-a574-2b343a8affd9 .shogun-image-content {
  
    align-items: center;
  
}

.s-c44ea619-3117-442e-a574-2b343a8affd9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c44ea619-3117-442e-a574-2b343a8affd9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c44ea619-3117-442e-a574-2b343a8affd9.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-c44ea619-3117-442e-a574-2b343a8affd9 {
  
  
  
  
}

#s-c44ea619-3117-442e-a574-2b343a8affd9 {
  margin: 0 !important;
}





  img.s-c44ea619-3117-442e-a574-2b343a8affd9.shogun-image {
    
    
  }


.s-c44ea619-3117-442e-a574-2b343a8affd9 .shogun-image-content {
  
    align-items: center;
  
}

.s-c44ea619-3117-442e-a574-2b343a8affd9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c44ea619-3117-442e-a574-2b343a8affd9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c44ea619-3117-442e-a574-2b343a8affd9.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-c44ea619-3117-442e-a574-2b343a8affd9 {
  
  
  
  
}

#s-c44ea619-3117-442e-a574-2b343a8affd9 {
  margin: 0 !important;
}





  img.s-c44ea619-3117-442e-a574-2b343a8affd9.shogun-image {
    
    
  }


.s-c44ea619-3117-442e-a574-2b343a8affd9 .shogun-image-content {
  
    align-items: center;
  
}

.s-c44ea619-3117-442e-a574-2b343a8affd9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c44ea619-3117-442e-a574-2b343a8affd9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c44ea619-3117-442e-a574-2b343a8affd9.shogun-image {
  box-sizing: border-box;
}




}
#s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2 {
  max-width: 780px;
text-align: center;
}
@media (min-width: 1200px){#s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2 {
  display: none;
}
#s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2, #wrap-s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2 {
  display: none;
}
#s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2, #wrap-s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2 {
  display: none;
}
#s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2, #wrap-s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2 { display: none !important; }}


.shg-image-margin-container-s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2 {
  
  
  
  
}

#s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2 {
  margin: 0 !important;
}





  img.s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2.shogun-image {
    
    
  }


.s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2 .shogun-image-content {
  
    align-items: center;
  
}

.s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2 {
  
  
  
  
}

#s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2 {
  margin: 0 !important;
}





  img.s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2.shogun-image {
    
    
  }


.s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2 .shogun-image-content {
  
    align-items: center;
  
}

.s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2 {
  
  
  
  
}

#s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2 {
  margin: 0 !important;
}





  img.s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2.shogun-image {
    
    
  }


.s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2 .shogun-image-content {
  
    align-items: center;
  
}

.s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2 {
  
  
  
  
}

#s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2 {
  margin: 0 !important;
}





  img.s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2.shogun-image {
    
    
  }


.s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2 .shogun-image-content {
  
    align-items: center;
  
}

.s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2 {
  
  
  
  
}

#s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2 {
  margin: 0 !important;
}





  img.s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2.shogun-image {
    
    
  }


.s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2 .shogun-image-content {
  
    align-items: center;
  
}

.s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aa61d0a5-39bf-4f82-9509-3d4a730e69c2.shogun-image {
  box-sizing: border-box;
}




}
#s-fbea195e-d351-410b-8134-738f2dabd579 {
  margin-top: 2px;
max-width: 780px;
text-align: center;
}



.shg-image-margin-container-s-fbea195e-d351-410b-8134-738f2dabd579 {
  
  
  margin-top: 2px;
  
}

#s-fbea195e-d351-410b-8134-738f2dabd579 {
  margin: 0 !important;
}





  img.s-fbea195e-d351-410b-8134-738f2dabd579.shogun-image {
    
    
  }


.s-fbea195e-d351-410b-8134-738f2dabd579 .shogun-image-content {
  
    align-items: center;
  
}

.s-fbea195e-d351-410b-8134-738f2dabd579.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fbea195e-d351-410b-8134-738f2dabd579.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fbea195e-d351-410b-8134-738f2dabd579.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-fbea195e-d351-410b-8134-738f2dabd579 {
  
  
  
  
}

#s-fbea195e-d351-410b-8134-738f2dabd579 {
  margin: 0 !important;
}





  img.s-fbea195e-d351-410b-8134-738f2dabd579.shogun-image {
    
    
  }


.s-fbea195e-d351-410b-8134-738f2dabd579 .shogun-image-content {
  
    align-items: center;
  
}

.s-fbea195e-d351-410b-8134-738f2dabd579.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fbea195e-d351-410b-8134-738f2dabd579.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fbea195e-d351-410b-8134-738f2dabd579.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-fbea195e-d351-410b-8134-738f2dabd579 {
  
  
  
  
}

#s-fbea195e-d351-410b-8134-738f2dabd579 {
  margin: 0 !important;
}





  img.s-fbea195e-d351-410b-8134-738f2dabd579.shogun-image {
    
    
  }


.s-fbea195e-d351-410b-8134-738f2dabd579 .shogun-image-content {
  
    align-items: center;
  
}

.s-fbea195e-d351-410b-8134-738f2dabd579.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fbea195e-d351-410b-8134-738f2dabd579.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fbea195e-d351-410b-8134-738f2dabd579.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-fbea195e-d351-410b-8134-738f2dabd579 {
  
  
  
  
}

#s-fbea195e-d351-410b-8134-738f2dabd579 {
  margin: 0 !important;
}





  img.s-fbea195e-d351-410b-8134-738f2dabd579.shogun-image {
    
    
  }


.s-fbea195e-d351-410b-8134-738f2dabd579 .shogun-image-content {
  
    align-items: center;
  
}

.s-fbea195e-d351-410b-8134-738f2dabd579.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fbea195e-d351-410b-8134-738f2dabd579.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fbea195e-d351-410b-8134-738f2dabd579.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-fbea195e-d351-410b-8134-738f2dabd579 {
  
  
  
  
}

#s-fbea195e-d351-410b-8134-738f2dabd579 {
  margin: 0 !important;
}





  img.s-fbea195e-d351-410b-8134-738f2dabd579.shogun-image {
    
    
  }


.s-fbea195e-d351-410b-8134-738f2dabd579 .shogun-image-content {
  
    align-items: center;
  
}

.s-fbea195e-d351-410b-8134-738f2dabd579.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fbea195e-d351-410b-8134-738f2dabd579.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fbea195e-d351-410b-8134-738f2dabd579.shogun-image {
  box-sizing: border-box;
}




}
#s-cf9157b2-0ddb-464e-85db-e078f04f5ec7 {
  background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 992px) and (max-width: 1199px){#s-cf9157b2-0ddb-464e-85db-e078f04f5ec7 {
  margin-top: 0px;
margin-bottom: 20px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-cf9157b2-0ddb-464e-85db-e078f04f5ec7 {
  padding-bottom: 50px;
}
}
@media (min-width: 0px) {
[id="s-cf9157b2-0ddb-464e-85db-e078f04f5ec7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cf9157b2-0ddb-464e-85db-e078f04f5ec7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-cf9157b2-0ddb-464e-85db-e078f04f5ec7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-cf9157b2-0ddb-464e-85db-e078f04f5ec7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-cf9157b2-0ddb-464e-85db-e078f04f5ec7"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-336a7003-61b6-4698-9f69-728531630dd7 {
  margin-left: 20%;
margin-right: 0%;
max-width: 937px;
text-align: left;
}
@media (min-width: 1200px){#s-336a7003-61b6-4698-9f69-728531630dd7 {
  margin-top: 50px;
margin-left: 30%;
margin-right: 0%;
display: none;
}
#s-336a7003-61b6-4698-9f69-728531630dd7, #wrap-s-336a7003-61b6-4698-9f69-728531630dd7 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-336a7003-61b6-4698-9f69-728531630dd7 {
  margin-top: 25px;
margin-left: 25%;
margin-right: 0%;
display: none;
}
#s-336a7003-61b6-4698-9f69-728531630dd7, #wrap-s-336a7003-61b6-4698-9f69-728531630dd7 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-336a7003-61b6-4698-9f69-728531630dd7 {
  margin-top: 25px;
margin-left: 15%;
margin-right: 0%;
padding-top: 0px;
display: none;
}
#s-336a7003-61b6-4698-9f69-728531630dd7, #wrap-s-336a7003-61b6-4698-9f69-728531630dd7 { display: none !important; }}@media (max-width: 767px){#s-336a7003-61b6-4698-9f69-728531630dd7 {
  margin-top: 10px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
max-width: 350px;
text-align: center;
}
}


.shg-image-margin-container-s-336a7003-61b6-4698-9f69-728531630dd7 {
  margin-left: 20%;
  margin-right: 0%;
  
  
}

#s-336a7003-61b6-4698-9f69-728531630dd7 {
  margin: 0 !important;
}





  img.s-336a7003-61b6-4698-9f69-728531630dd7.shogun-image {
    
    
  }


.s-336a7003-61b6-4698-9f69-728531630dd7 .shogun-image-content {
  
    align-items: center;
  
}

.s-336a7003-61b6-4698-9f69-728531630dd7.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-336a7003-61b6-4698-9f69-728531630dd7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-336a7003-61b6-4698-9f69-728531630dd7.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-336a7003-61b6-4698-9f69-728531630dd7 {
  margin-left: 30%;
  margin-right: 0%;
  margin-top: 50px;
  
}

#s-336a7003-61b6-4698-9f69-728531630dd7 {
  margin: 0 !important;
}





  img.s-336a7003-61b6-4698-9f69-728531630dd7.shogun-image {
    
    
  }


.s-336a7003-61b6-4698-9f69-728531630dd7 .shogun-image-content {
  
    align-items: center;
  
}

.s-336a7003-61b6-4698-9f69-728531630dd7.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-336a7003-61b6-4698-9f69-728531630dd7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-336a7003-61b6-4698-9f69-728531630dd7.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-336a7003-61b6-4698-9f69-728531630dd7 {
  margin-left: 25%;
  margin-right: 0%;
  margin-top: 25px;
  
}

#s-336a7003-61b6-4698-9f69-728531630dd7 {
  margin: 0 !important;
}





  img.s-336a7003-61b6-4698-9f69-728531630dd7.shogun-image {
    
    
  }


.s-336a7003-61b6-4698-9f69-728531630dd7 .shogun-image-content {
  
    align-items: center;
  
}

.s-336a7003-61b6-4698-9f69-728531630dd7.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-336a7003-61b6-4698-9f69-728531630dd7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-336a7003-61b6-4698-9f69-728531630dd7.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-336a7003-61b6-4698-9f69-728531630dd7 {
  margin-left: 15%;
  margin-right: 0%;
  margin-top: 25px;
  
}

#s-336a7003-61b6-4698-9f69-728531630dd7 {
  margin: 0 !important;
}





  img.s-336a7003-61b6-4698-9f69-728531630dd7.shogun-image {
    
    
  }


.s-336a7003-61b6-4698-9f69-728531630dd7 .shogun-image-content {
  
    align-items: center;
  
}

.s-336a7003-61b6-4698-9f69-728531630dd7.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-336a7003-61b6-4698-9f69-728531630dd7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-336a7003-61b6-4698-9f69-728531630dd7.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-336a7003-61b6-4698-9f69-728531630dd7 {
  margin-left: 0%;
  margin-right: 0%;
  margin-top: 10px;
  margin-bottom: 10px;
}

#s-336a7003-61b6-4698-9f69-728531630dd7 {
  margin: 0 !important;
}





  img.s-336a7003-61b6-4698-9f69-728531630dd7.shogun-image {
    
    
  }


.s-336a7003-61b6-4698-9f69-728531630dd7 .shogun-image-content {
  
    align-items: center;
  
}

.s-336a7003-61b6-4698-9f69-728531630dd7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-336a7003-61b6-4698-9f69-728531630dd7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-336a7003-61b6-4698-9f69-728531630dd7.shogun-image {
  box-sizing: border-box;
}




}
#s-180c9847-9ab9-4255-be78-a90a32d19a96 {
  margin-top: 100px;
margin-left: 10%;
margin-right: 10%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-180c9847-9ab9-4255-be78-a90a32d19a96 {
  margin-top: 50px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-180c9847-9ab9-4255-be78-a90a32d19a96 {
  margin-top: 18px;
margin-left: 0%;
}
}@media (max-width: 767px){#s-180c9847-9ab9-4255-be78-a90a32d19a96 {
  margin-top: 20px;
margin-left: 10%;
margin-right: 10%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
}
#s-180c9847-9ab9-4255-be78-a90a32d19a96 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-180c9847-9ab9-4255-be78-a90a32d19a96 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  
  
  text-align: center;
}


}
#s-30529100-bf2e-43d9-a820-ceb23a4b230b {
  margin-left: 10%;
margin-bottom: 20px;
margin-right: 10%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-30529100-bf2e-43d9-a820-ceb23a4b230b {
  margin-left: 0%;
}
}
#s-30529100-bf2e-43d9-a820-ceb23a4b230b .shogun-heading-component h3 {
  
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-cab4c3b8-6a23-4bab-9080-71bec74a9988 {
  margin-top: 0px;
margin-left: 10%;
margin-bottom: 0px;
margin-right: 10%;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-radius: 0px;
background-color: rgba(255, 229, 0, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 0px;
}
#s-cab4c3b8-6a23-4bab-9080-71bec74a9988:hover {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-cab4c3b8-6a23-4bab-9080-71bec74a9988:active {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}@media (min-width: 1200px){#s-cab4c3b8-6a23-4bab-9080-71bec74a9988 {
  text-align: left;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-cab4c3b8-6a23-4bab-9080-71bec74a9988 {
  text-align: left;
}
}@media (min-width: 768px) and (max-width: 991px){#s-cab4c3b8-6a23-4bab-9080-71bec74a9988 {
  margin-left: 0%;
margin-right: 0%;
text-align: left;
}
}@media (max-width: 767px){#s-cab4c3b8-6a23-4bab-9080-71bec74a9988 {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-radius: 0px;
background-color: rgba(255, 229, 0, 1);
text-decoration: none;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 0px;
}
}

  #s-cab4c3b8-6a23-4bab-9080-71bec74a9988-root {
    text-align: center;
  }


#s-cab4c3b8-6a23-4bab-9080-71bec74a9988.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-cab4c3b8-6a23-4bab-9080-71bec74a9988-root {
    text-align: left;
  }


#s-cab4c3b8-6a23-4bab-9080-71bec74a9988.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-cab4c3b8-6a23-4bab-9080-71bec74a9988-root {
    text-align: left;
  }


#s-cab4c3b8-6a23-4bab-9080-71bec74a9988.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-cab4c3b8-6a23-4bab-9080-71bec74a9988-root {
    text-align: left;
  }


#s-cab4c3b8-6a23-4bab-9080-71bec74a9988.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-cab4c3b8-6a23-4bab-9080-71bec74a9988-root {
    text-align: center;
  }


#s-cab4c3b8-6a23-4bab-9080-71bec74a9988.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  block ;
}
}
#s-8c5b2e52-f0d3-42ac-8a26-b430b59ca0b9 {
  margin-top: 50px;
margin-left: 0px;
margin-bottom: 50px;
margin-right: 0px;
padding-top: 20px;
padding-bottom: 0px;
min-height: 50px;
background-color: rgba(247, 247, 247, 1);
}
@media (min-width: 1200px){#s-8c5b2e52-f0d3-42ac-8a26-b430b59ca0b9 {
  margin-top: 0px;
margin-bottom: 50px;
padding-top: 50px;
display: none;
}
#s-8c5b2e52-f0d3-42ac-8a26-b430b59ca0b9, #wrap-s-8c5b2e52-f0d3-42ac-8a26-b430b59ca0b9 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8c5b2e52-f0d3-42ac-8a26-b430b59ca0b9 {
  margin-top: 0px;
margin-bottom: 50px;
padding-top: 50px;
display: none;
}
#s-8c5b2e52-f0d3-42ac-8a26-b430b59ca0b9, #wrap-s-8c5b2e52-f0d3-42ac-8a26-b430b59ca0b9 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-8c5b2e52-f0d3-42ac-8a26-b430b59ca0b9 {
  margin-top: 0px;
margin-bottom: 50px;
padding-top: 50px;
display: none;
}
#s-8c5b2e52-f0d3-42ac-8a26-b430b59ca0b9, #wrap-s-8c5b2e52-f0d3-42ac-8a26-b430b59ca0b9 { display: none !important; }}@media (max-width: 767px){#s-8c5b2e52-f0d3-42ac-8a26-b430b59ca0b9 {
  margin-top: 0px;
margin-bottom: 50px;
padding-top: 0px;
}
}







#s-8c5b2e52-f0d3-42ac-8a26-b430b59ca0b9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8c5b2e52-f0d3-42ac-8a26-b430b59ca0b9.shg-box.shg-c {
  justify-content: flex-start;
}

#s-f481a4d4-58b4-4791-a2ca-464af038762d {
  margin-left: 0%;
margin-right: 0%;
padding-left: 2%;
padding-right: 2%;
max-width: 6360px;
text-align: center;
background-color: rgba(247, 247, 247, 1);
}
@media (max-width: 767px){#s-f481a4d4-58b4-4791-a2ca-464af038762d {
  display: none;
}
#s-f481a4d4-58b4-4791-a2ca-464af038762d, #wrap-s-f481a4d4-58b4-4791-a2ca-464af038762d { display: none !important; }}


.shg-image-margin-container-s-f481a4d4-58b4-4791-a2ca-464af038762d {
  margin-left: 0%;
  margin-right: 0%;
  
  
}

#s-f481a4d4-58b4-4791-a2ca-464af038762d {
  margin: 0 !important;
}





  img.s-f481a4d4-58b4-4791-a2ca-464af038762d.shogun-image {
    
    
  }


.s-f481a4d4-58b4-4791-a2ca-464af038762d .shogun-image-content {
  
    align-items: center;
  
}

.s-f481a4d4-58b4-4791-a2ca-464af038762d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f481a4d4-58b4-4791-a2ca-464af038762d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f481a4d4-58b4-4791-a2ca-464af038762d.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-f481a4d4-58b4-4791-a2ca-464af038762d {
  
  
  
  
}

#s-f481a4d4-58b4-4791-a2ca-464af038762d {
  margin: 0 !important;
}





  img.s-f481a4d4-58b4-4791-a2ca-464af038762d.shogun-image {
    
    
  }


.s-f481a4d4-58b4-4791-a2ca-464af038762d .shogun-image-content {
  
    align-items: center;
  
}

.s-f481a4d4-58b4-4791-a2ca-464af038762d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f481a4d4-58b4-4791-a2ca-464af038762d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f481a4d4-58b4-4791-a2ca-464af038762d.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-f481a4d4-58b4-4791-a2ca-464af038762d {
  
  
  
  
}

#s-f481a4d4-58b4-4791-a2ca-464af038762d {
  margin: 0 !important;
}





  img.s-f481a4d4-58b4-4791-a2ca-464af038762d.shogun-image {
    
    
  }


.s-f481a4d4-58b4-4791-a2ca-464af038762d .shogun-image-content {
  
    align-items: center;
  
}

.s-f481a4d4-58b4-4791-a2ca-464af038762d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f481a4d4-58b4-4791-a2ca-464af038762d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f481a4d4-58b4-4791-a2ca-464af038762d.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-f481a4d4-58b4-4791-a2ca-464af038762d {
  
  
  
  
}

#s-f481a4d4-58b4-4791-a2ca-464af038762d {
  margin: 0 !important;
}





  img.s-f481a4d4-58b4-4791-a2ca-464af038762d.shogun-image {
    
    
  }


.s-f481a4d4-58b4-4791-a2ca-464af038762d .shogun-image-content {
  
    align-items: center;
  
}

.s-f481a4d4-58b4-4791-a2ca-464af038762d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f481a4d4-58b4-4791-a2ca-464af038762d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f481a4d4-58b4-4791-a2ca-464af038762d.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-f481a4d4-58b4-4791-a2ca-464af038762d {
  
  
  
  
}

#s-f481a4d4-58b4-4791-a2ca-464af038762d {
  margin: 0 !important;
}





  img.s-f481a4d4-58b4-4791-a2ca-464af038762d.shogun-image {
    
    
  }


.s-f481a4d4-58b4-4791-a2ca-464af038762d .shogun-image-content {
  
    align-items: center;
  
}

.s-f481a4d4-58b4-4791-a2ca-464af038762d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f481a4d4-58b4-4791-a2ca-464af038762d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f481a4d4-58b4-4791-a2ca-464af038762d.shogun-image {
  box-sizing: border-box;
}




}
#s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a {
  max-width: 780px;
text-align: center;
}
@media (min-width: 1200px){#s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a {
  display: none;
}
#s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a, #wrap-s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a {
  display: none;
}
#s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a, #wrap-s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a {
  display: none;
}
#s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a, #wrap-s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a { display: none !important; }}


.shg-image-margin-container-s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a {
  
  
  
  
}

#s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a {
  margin: 0 !important;
}





  img.s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a.shogun-image {
    
    
  }


.s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a .shogun-image-content {
  
    align-items: center;
  
}

.s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a {
  
  
  
  
}

#s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a {
  margin: 0 !important;
}





  img.s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a.shogun-image {
    
    
  }


.s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a .shogun-image-content {
  
    align-items: center;
  
}

.s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a {
  
  
  
  
}

#s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a {
  margin: 0 !important;
}





  img.s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a.shogun-image {
    
    
  }


.s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a .shogun-image-content {
  
    align-items: center;
  
}

.s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a {
  
  
  
  
}

#s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a {
  margin: 0 !important;
}





  img.s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a.shogun-image {
    
    
  }


.s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a .shogun-image-content {
  
    align-items: center;
  
}

.s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a {
  
  
  
  
}

#s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a {
  margin: 0 !important;
}





  img.s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a.shogun-image {
    
    
  }


.s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a .shogun-image-content {
  
    align-items: center;
  
}

.s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1c7ba470-52c3-48ce-a9e7-4728bc382a9a.shogun-image {
  box-sizing: border-box;
}




}
#s-a173358e-52cd-4df8-ba19-56e3ddced595 {
  background-color: rgba(247, 247, 247, 1);
}
@media (min-width: 992px) and (max-width: 1199px){#s-a173358e-52cd-4df8-ba19-56e3ddced595 {
  margin-top: 0px;
margin-bottom: 20px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-a173358e-52cd-4df8-ba19-56e3ddced595 {
  padding-bottom: 50px;
}
}
@media (min-width: 0px) {
[id="s-a173358e-52cd-4df8-ba19-56e3ddced595"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a173358e-52cd-4df8-ba19-56e3ddced595"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a173358e-52cd-4df8-ba19-56e3ddced595"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a173358e-52cd-4df8-ba19-56e3ddced595"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-252eeb5b-ff0e-4ef0-9986-053263c44c84 {
  margin-top: 100px;
margin-left: 10%;
margin-right: 10%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-252eeb5b-ff0e-4ef0-9986-053263c44c84 {
  margin-top: 50px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-252eeb5b-ff0e-4ef0-9986-053263c44c84 {
  margin-top: 18px;
}
}@media (max-width: 767px){#s-252eeb5b-ff0e-4ef0-9986-053263c44c84 {
  margin-top: 20px;
margin-left: 10%;
margin-right: 10%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
}
#s-252eeb5b-ff0e-4ef0-9986-053263c44c84 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-252eeb5b-ff0e-4ef0-9986-053263c44c84 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  
  
  text-align: center;
}


}
#s-1a06ac7e-cbd3-4294-95ad-0acce8c53a19 {
  border-style: solid;
margin-top: 0px;
margin-left: 10%;
margin-bottom: 20px;
margin-right: 10%;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0.2);
text-align: left;
}
@media (max-width: 767px){#s-1a06ac7e-cbd3-4294-95ad-0acce8c53a19 {
  border-style: solid;
margin-top: 0px;
margin-left: 10%;
margin-bottom: 20px;
margin-right: 10%;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0.2);
text-align: center;
}
}
#s-1a06ac7e-cbd3-4294-95ad-0acce8c53a19 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-1a06ac7e-cbd3-4294-95ad-0acce8c53a19 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: center;
}


}
#s-aa77604e-7bde-43db-a7b7-19c3c73429ce {
  margin-top: 0px;
margin-left: 10%;
margin-bottom: 0px;
margin-right: 10%;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-radius: 0px;
background-color: rgba(255, 229, 0, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 0px;
}
#s-aa77604e-7bde-43db-a7b7-19c3c73429ce:hover {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-aa77604e-7bde-43db-a7b7-19c3c73429ce:active {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}@media (min-width: 1200px){#s-aa77604e-7bde-43db-a7b7-19c3c73429ce {
  text-align: left;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-aa77604e-7bde-43db-a7b7-19c3c73429ce {
  text-align: left;
}
}@media (min-width: 768px) and (max-width: 991px){#s-aa77604e-7bde-43db-a7b7-19c3c73429ce {
  text-align: left;
}
}@media (max-width: 767px){#s-aa77604e-7bde-43db-a7b7-19c3c73429ce {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-radius: 0px;
background-color: rgba(255, 229, 0, 1);
text-decoration: none;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 0px;
}
}

  #s-aa77604e-7bde-43db-a7b7-19c3c73429ce-root {
    text-align: center;
  }


#s-aa77604e-7bde-43db-a7b7-19c3c73429ce.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-aa77604e-7bde-43db-a7b7-19c3c73429ce-root {
    text-align: left;
  }


#s-aa77604e-7bde-43db-a7b7-19c3c73429ce.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-aa77604e-7bde-43db-a7b7-19c3c73429ce-root {
    text-align: left;
  }


#s-aa77604e-7bde-43db-a7b7-19c3c73429ce.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-aa77604e-7bde-43db-a7b7-19c3c73429ce-root {
    text-align: left;
  }


#s-aa77604e-7bde-43db-a7b7-19c3c73429ce.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-aa77604e-7bde-43db-a7b7-19c3c73429ce-root {
    text-align: center;
  }


#s-aa77604e-7bde-43db-a7b7-19c3c73429ce.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  block ;
}
}
#s-1893a92a-f2dc-4357-9ee9-6a8f28b28946 {
  margin-left: 0%;
margin-right: 0%;
max-width: 300px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-1893a92a-f2dc-4357-9ee9-6a8f28b28946 {
  margin-top: 25px;
padding-top: 0px;
}
}@media (max-width: 767px){#s-1893a92a-f2dc-4357-9ee9-6a8f28b28946 {
  margin-bottom: 10px;
padding-left: 0%;
padding-right: 0%;
}
}


.shg-image-margin-container-s-1893a92a-f2dc-4357-9ee9-6a8f28b28946 {
  margin-left: 0%;
  margin-right: 0%;
  
  
}

#s-1893a92a-f2dc-4357-9ee9-6a8f28b28946 {
  margin: 0 !important;
}





  img.s-1893a92a-f2dc-4357-9ee9-6a8f28b28946.shogun-image {
    
    
  }


.s-1893a92a-f2dc-4357-9ee9-6a8f28b28946 .shogun-image-content {
  
    align-items: center;
  
}

.s-1893a92a-f2dc-4357-9ee9-6a8f28b28946.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1893a92a-f2dc-4357-9ee9-6a8f28b28946.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1893a92a-f2dc-4357-9ee9-6a8f28b28946.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-1893a92a-f2dc-4357-9ee9-6a8f28b28946 {
  
  
  
  
}

#s-1893a92a-f2dc-4357-9ee9-6a8f28b28946 {
  margin: 0 !important;
}





  img.s-1893a92a-f2dc-4357-9ee9-6a8f28b28946.shogun-image {
    
    
  }


.s-1893a92a-f2dc-4357-9ee9-6a8f28b28946 .shogun-image-content {
  
    align-items: center;
  
}

.s-1893a92a-f2dc-4357-9ee9-6a8f28b28946.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1893a92a-f2dc-4357-9ee9-6a8f28b28946.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1893a92a-f2dc-4357-9ee9-6a8f28b28946.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-1893a92a-f2dc-4357-9ee9-6a8f28b28946 {
  
  
  
  
}

#s-1893a92a-f2dc-4357-9ee9-6a8f28b28946 {
  margin: 0 !important;
}





  img.s-1893a92a-f2dc-4357-9ee9-6a8f28b28946.shogun-image {
    
    
  }


.s-1893a92a-f2dc-4357-9ee9-6a8f28b28946 .shogun-image-content {
  
    align-items: center;
  
}

.s-1893a92a-f2dc-4357-9ee9-6a8f28b28946.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1893a92a-f2dc-4357-9ee9-6a8f28b28946.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1893a92a-f2dc-4357-9ee9-6a8f28b28946.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-1893a92a-f2dc-4357-9ee9-6a8f28b28946 {
  
  
  margin-top: 25px;
  
}

#s-1893a92a-f2dc-4357-9ee9-6a8f28b28946 {
  margin: 0 !important;
}





  img.s-1893a92a-f2dc-4357-9ee9-6a8f28b28946.shogun-image {
    
    
  }


.s-1893a92a-f2dc-4357-9ee9-6a8f28b28946 .shogun-image-content {
  
    align-items: center;
  
}

.s-1893a92a-f2dc-4357-9ee9-6a8f28b28946.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1893a92a-f2dc-4357-9ee9-6a8f28b28946.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1893a92a-f2dc-4357-9ee9-6a8f28b28946.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-1893a92a-f2dc-4357-9ee9-6a8f28b28946 {
  
  
  
  margin-bottom: 10px;
}

#s-1893a92a-f2dc-4357-9ee9-6a8f28b28946 {
  margin: 0 !important;
}





  img.s-1893a92a-f2dc-4357-9ee9-6a8f28b28946.shogun-image {
    
    
  }


.s-1893a92a-f2dc-4357-9ee9-6a8f28b28946 .shogun-image-content {
  
    align-items: center;
  
}

.s-1893a92a-f2dc-4357-9ee9-6a8f28b28946.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1893a92a-f2dc-4357-9ee9-6a8f28b28946.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1893a92a-f2dc-4357-9ee9-6a8f28b28946.shogun-image {
  box-sizing: border-box;
}




}
#s-2480b820-1c5d-4177-8207-21e4c34a98ad {
  margin-left: 30%;
margin-right: 30%;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-2480b820-1c5d-4177-8207-21e4c34a98ad {
  margin-left: 7%;
margin-right: 7%;
}
}@media (max-width: 767px){#s-2480b820-1c5d-4177-8207-21e4c34a98ad {
  margin-left: 5%;
margin-right: 5%;
}
}
#s-2480b820-1c5d-4177-8207-21e4c34a98ad .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  
  letter-spacing: 0px;
  
}



#s-bf1f6882-56f6-4b00-83d9-a027a7a278d4 {
  margin-top: 40px;
margin-bottom: 0px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-bf1f6882-56f6-4b00-83d9-a027a7a278d4 {
  margin-left: 4%;
margin-right: 4%;
padding-left: 8%;
padding-right: 8%;
}
}







#s-bf1f6882-56f6-4b00-83d9-a027a7a278d4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-bf1f6882-56f6-4b00-83d9-a027a7a278d4.shg-box.shg-c {
  justify-content: center;
}

#s-4470b91e-5116-41e0-aee7-a1ebea3744e4 {
  margin-left: 2%;
margin-right: 2%;
min-height: 50px;
background-color: rgba(0, 0, 0, 0);
}
@media (min-width: 1200px){#s-4470b91e-5116-41e0-aee7-a1ebea3744e4 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-4470b91e-5116-41e0-aee7-a1ebea3744e4 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-4470b91e-5116-41e0-aee7-a1ebea3744e4 {
  
}
}@media (max-width: 767px){#s-4470b91e-5116-41e0-aee7-a1ebea3744e4 {
  margin-left: 0%;
margin-right: 0%;
}
}







#s-4470b91e-5116-41e0-aee7-a1ebea3744e4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4470b91e-5116-41e0-aee7-a1ebea3744e4.shg-box.shg-c {
  justify-content: flex-start;
}

#s-dad05fd5-afef-4e79-8812-e7075fab2fec {
  margin-top: 0px;
}
@media (max-width: 767px){#s-dad05fd5-afef-4e79-8812-e7075fab2fec {
  margin-left: -9%;
margin-right: -9%;
}
}
@media (min-width: 0px) {
[id="s-dad05fd5-afef-4e79-8812-e7075fab2fec"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-dad05fd5-afef-4e79-8812-e7075fab2fec"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-dad05fd5-afef-4e79-8812-e7075fab2fec"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-dad05fd5-afef-4e79-8812-e7075fab2fec"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-066d815c-56f0-456a-bb19-419be33e3f2a {
  text-align: center;
}







  #s-066d815c-56f0-456a-bb19-419be33e3f2a img.shogun-image {
    

    
    
    
  }


#s-066d815c-56f0-456a-bb19-419be33e3f2a .shogun-image-content {
  
    align-items: center;
  
}

#s-87386c1e-9247-4408-b167-93ca6a032d95 {
  border-style: solid;
padding-top: 30px;
padding-left: 15px;
padding-bottom: 30px;
padding-right: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-87386c1e-9247-4408-b167-93ca6a032d95:hover {background-color: rgba(255, 229, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-87386c1e-9247-4408-b167-93ca6a032d95:active {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (max-width: 767px){#s-87386c1e-9247-4408-b167-93ca6a032d95 {
  padding-left: 0px;
padding-right: 0px;
}
}

  #s-87386c1e-9247-4408-b167-93ca6a032d95-root {
    text-align: center;
  }


#s-87386c1e-9247-4408-b167-93ca6a032d95.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-87386c1e-9247-4408-b167-93ca6a032d95-root {
    text-align: center;
  }


#s-87386c1e-9247-4408-b167-93ca6a032d95.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-87386c1e-9247-4408-b167-93ca6a032d95-root {
    text-align: center;
  }


#s-87386c1e-9247-4408-b167-93ca6a032d95.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-87386c1e-9247-4408-b167-93ca6a032d95-root {
    text-align: center;
  }


#s-87386c1e-9247-4408-b167-93ca6a032d95.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-87386c1e-9247-4408-b167-93ca6a032d95-root {
    text-align: center;
  }


#s-87386c1e-9247-4408-b167-93ca6a032d95.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  
  display:  block ;
}
}
  #s-87386c1e-9247-4408-b167-93ca6a032d95-root {
    text-align: center;
  }


#s-87386c1e-9247-4408-b167-93ca6a032d95.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  
  display:  block ;
}

#s-7ab8963c-d64b-4a0a-b0ce-586396c4e5fb {
  text-align: center;
}







  #s-7ab8963c-d64b-4a0a-b0ce-586396c4e5fb img.shogun-image {
    

    
    
    
  }


#s-7ab8963c-d64b-4a0a-b0ce-586396c4e5fb .shogun-image-content {
  
    align-items: center;
  
}

#s-9e202b66-481a-40d7-a8a6-a70451660ebb {
  border-style: solid;
padding-top: 30px;
padding-left: 15px;
padding-bottom: 30px;
padding-right: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-9e202b66-481a-40d7-a8a6-a70451660ebb:hover {background-color: rgba(255, 229, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-9e202b66-481a-40d7-a8a6-a70451660ebb:active {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-9e202b66-481a-40d7-a8a6-a70451660ebb-root {
    text-align: center;
  }


#s-9e202b66-481a-40d7-a8a6-a70451660ebb.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-9e202b66-481a-40d7-a8a6-a70451660ebb-root {
    text-align: center;
  }


#s-9e202b66-481a-40d7-a8a6-a70451660ebb.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9e202b66-481a-40d7-a8a6-a70451660ebb-root {
    text-align: center;
  }


#s-9e202b66-481a-40d7-a8a6-a70451660ebb.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9e202b66-481a-40d7-a8a6-a70451660ebb-root {
    text-align: center;
  }


#s-9e202b66-481a-40d7-a8a6-a70451660ebb.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-9e202b66-481a-40d7-a8a6-a70451660ebb-root {
    text-align: center;
  }


#s-9e202b66-481a-40d7-a8a6-a70451660ebb.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  
  display:  block ;
}
}
  #s-9e202b66-481a-40d7-a8a6-a70451660ebb-root {
    text-align: center;
  }


#s-9e202b66-481a-40d7-a8a6-a70451660ebb.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  
  display:  block ;
}

#s-24b9d7d0-fbba-4257-bbb5-09ce5af716ad {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
text-align: center;
}







  #s-24b9d7d0-fbba-4257-bbb5-09ce5af716ad img.shogun-image {
    

    
    
    
  }


#s-24b9d7d0-fbba-4257-bbb5-09ce5af716ad .shogun-image-content {
  
    align-items: center;
  
}

#s-25d5ab33-e9df-43de-ae19-787d25ed7d28 {
  border-style: solid;
padding-top: 30px;
padding-left: 15px;
padding-bottom: 30px;
padding-right: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-25d5ab33-e9df-43de-ae19-787d25ed7d28:hover {background-color: rgba(255, 229, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-25d5ab33-e9df-43de-ae19-787d25ed7d28:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-25d5ab33-e9df-43de-ae19-787d25ed7d28 {
  padding-left: 0px;
padding-right: 0px;
}
}

  #s-25d5ab33-e9df-43de-ae19-787d25ed7d28-root {
    text-align: center;
  }


#s-25d5ab33-e9df-43de-ae19-787d25ed7d28.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-25d5ab33-e9df-43de-ae19-787d25ed7d28-root {
    text-align: center;
  }


#s-25d5ab33-e9df-43de-ae19-787d25ed7d28.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-25d5ab33-e9df-43de-ae19-787d25ed7d28-root {
    text-align: center;
  }


#s-25d5ab33-e9df-43de-ae19-787d25ed7d28.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-25d5ab33-e9df-43de-ae19-787d25ed7d28-root {
    text-align: center;
  }


#s-25d5ab33-e9df-43de-ae19-787d25ed7d28.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-25d5ab33-e9df-43de-ae19-787d25ed7d28-root {
    text-align: center;
  }


#s-25d5ab33-e9df-43de-ae19-787d25ed7d28.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  
  display:  block ;
}
}
  #s-25d5ab33-e9df-43de-ae19-787d25ed7d28-root {
    text-align: center;
  }


#s-25d5ab33-e9df-43de-ae19-787d25ed7d28.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  
  display:  block ;
}

#s-32fdbbb4-4dbc-4666-b4f1-7b6fa0da81d0 {
  text-align: center;
}







  #s-32fdbbb4-4dbc-4666-b4f1-7b6fa0da81d0 img.shogun-image {
    

    
    
    
  }


#s-32fdbbb4-4dbc-4666-b4f1-7b6fa0da81d0 .shogun-image-content {
  
    align-items: center;
  
}

#s-239394f3-c8cf-4610-b0a0-52ce44e74ccd {
  border-style: solid;
padding-top: 30px;
padding-left: 15px;
padding-bottom: 30px;
padding-right: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-239394f3-c8cf-4610-b0a0-52ce44e74ccd:hover {background-color: rgba(255, 229, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-239394f3-c8cf-4610-b0a0-52ce44e74ccd:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-239394f3-c8cf-4610-b0a0-52ce44e74ccd {
  padding-left: 0px;
padding-right: 0px;
}
}

  #s-239394f3-c8cf-4610-b0a0-52ce44e74ccd-root {
    text-align: center;
  }


#s-239394f3-c8cf-4610-b0a0-52ce44e74ccd.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-239394f3-c8cf-4610-b0a0-52ce44e74ccd-root {
    text-align: center;
  }


#s-239394f3-c8cf-4610-b0a0-52ce44e74ccd.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-239394f3-c8cf-4610-b0a0-52ce44e74ccd-root {
    text-align: center;
  }


#s-239394f3-c8cf-4610-b0a0-52ce44e74ccd.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-239394f3-c8cf-4610-b0a0-52ce44e74ccd-root {
    text-align: center;
  }


#s-239394f3-c8cf-4610-b0a0-52ce44e74ccd.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-239394f3-c8cf-4610-b0a0-52ce44e74ccd-root {
    text-align: center;
  }


#s-239394f3-c8cf-4610-b0a0-52ce44e74ccd.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  
  display:  block ;
}
}
  #s-239394f3-c8cf-4610-b0a0-52ce44e74ccd-root {
    text-align: center;
  }


#s-239394f3-c8cf-4610-b0a0-52ce44e74ccd.shg-btn {
  color: rgba(0, 0, 0, 1);
  
  
  
  
  display:  block ;
}

#s-c5218745-0d0a-4318-8119-ebf18ef87b7e {
  margin-top: 20px;
margin-bottom: 10px;
max-width: 275px;
text-align: center;
}
@media (max-width: 767px){#s-c5218745-0d0a-4318-8119-ebf18ef87b7e {
  display: none;
}
#s-c5218745-0d0a-4318-8119-ebf18ef87b7e, #wrap-s-c5218745-0d0a-4318-8119-ebf18ef87b7e { display: none !important; }}


.shg-image-margin-container-s-c5218745-0d0a-4318-8119-ebf18ef87b7e {
  
  
  margin-top: 20px;
  margin-bottom: 10px;
}

#s-c5218745-0d0a-4318-8119-ebf18ef87b7e {
  margin: 0 !important;
}





  img.s-c5218745-0d0a-4318-8119-ebf18ef87b7e.shogun-image {
    
    
  }


.s-c5218745-0d0a-4318-8119-ebf18ef87b7e .shogun-image-content {
  
    align-items: center;
  
}

.s-c5218745-0d0a-4318-8119-ebf18ef87b7e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c5218745-0d0a-4318-8119-ebf18ef87b7e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c5218745-0d0a-4318-8119-ebf18ef87b7e.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-c5218745-0d0a-4318-8119-ebf18ef87b7e {
  
  
  
  
}

#s-c5218745-0d0a-4318-8119-ebf18ef87b7e {
  margin: 0 !important;
}





  img.s-c5218745-0d0a-4318-8119-ebf18ef87b7e.shogun-image {
    
    
  }


.s-c5218745-0d0a-4318-8119-ebf18ef87b7e .shogun-image-content {
  
    align-items: center;
  
}

.s-c5218745-0d0a-4318-8119-ebf18ef87b7e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c5218745-0d0a-4318-8119-ebf18ef87b7e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c5218745-0d0a-4318-8119-ebf18ef87b7e.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-c5218745-0d0a-4318-8119-ebf18ef87b7e {
  
  
  
  
}

#s-c5218745-0d0a-4318-8119-ebf18ef87b7e {
  margin: 0 !important;
}





  img.s-c5218745-0d0a-4318-8119-ebf18ef87b7e.shogun-image {
    
    
  }


.s-c5218745-0d0a-4318-8119-ebf18ef87b7e .shogun-image-content {
  
    align-items: center;
  
}

.s-c5218745-0d0a-4318-8119-ebf18ef87b7e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c5218745-0d0a-4318-8119-ebf18ef87b7e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c5218745-0d0a-4318-8119-ebf18ef87b7e.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-c5218745-0d0a-4318-8119-ebf18ef87b7e {
  
  
  
  
}

#s-c5218745-0d0a-4318-8119-ebf18ef87b7e {
  margin: 0 !important;
}





  img.s-c5218745-0d0a-4318-8119-ebf18ef87b7e.shogun-image {
    
    
  }


.s-c5218745-0d0a-4318-8119-ebf18ef87b7e .shogun-image-content {
  
    align-items: center;
  
}

.s-c5218745-0d0a-4318-8119-ebf18ef87b7e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c5218745-0d0a-4318-8119-ebf18ef87b7e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c5218745-0d0a-4318-8119-ebf18ef87b7e.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-c5218745-0d0a-4318-8119-ebf18ef87b7e {
  
  
  
  
}

#s-c5218745-0d0a-4318-8119-ebf18ef87b7e {
  margin: 0 !important;
}





  img.s-c5218745-0d0a-4318-8119-ebf18ef87b7e.shogun-image {
    
    
  }


.s-c5218745-0d0a-4318-8119-ebf18ef87b7e .shogun-image-content {
  
    align-items: center;
  
}

.s-c5218745-0d0a-4318-8119-ebf18ef87b7e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c5218745-0d0a-4318-8119-ebf18ef87b7e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c5218745-0d0a-4318-8119-ebf18ef87b7e.shogun-image {
  box-sizing: border-box;
}




}
#s-9893f2fa-a54e-4e48-9c47-aa2a1497cdb9 {
  background-repeat: no-repeat;
background-size: cover;
margin-left: 0%;
margin-right: 0%;
padding-top: 40px;
padding-left: 0%;
padding-bottom: 40px;
padding-right: 0%;
min-height: 700px;
background-position: center center;
background-attachment: scroll;
opacity: 1;
}
@media (min-width: 1200px){#s-9893f2fa-a54e-4e48-9c47-aa2a1497cdb9 {
  margin-left: 9%;
margin-right: 9%;
}
}@media (max-width: 767px){#s-9893f2fa-a54e-4e48-9c47-aa2a1497cdb9 {
  display: none;
}
#s-9893f2fa-a54e-4e48-9c47-aa2a1497cdb9, #wrap-s-9893f2fa-a54e-4e48-9c47-aa2a1497cdb9 { display: none !important; }}







#s-9893f2fa-a54e-4e48-9c47-aa2a1497cdb9 > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0.4;
  display: block;
}#s-9893f2fa-a54e-4e48-9c47-aa2a1497cdb9.shg-box.shg-c {
  justify-content: center;
}

#s-cc577af4-0128-42e5-ae16-326ffae2e3f1 {
  margin-left: 0%;
margin-right: 0%;
padding-left: 10%;
padding-right: 10%;
}
@media (min-width: 768px) and (max-width: 991px){#s-cc577af4-0128-42e5-ae16-326ffae2e3f1 {
  padding-left: 5%;
padding-right: 5%;
}
}@media (max-width: 767px){#s-cc577af4-0128-42e5-ae16-326ffae2e3f1 {
  margin-top: 50px;
margin-bottom: 50px;
padding-left: 7%;
padding-right: 7%;
}
}
@media (min-width: 0px) {
[id="s-cc577af4-0128-42e5-ae16-326ffae2e3f1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cc577af4-0128-42e5-ae16-326ffae2e3f1"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 35.0px);
}

}

@media (min-width: 992px) {
[id="s-cc577af4-0128-42e5-ae16-326ffae2e3f1"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 35.0px);
}

}

@media (min-width: 1200px) {
[id="s-cc577af4-0128-42e5-ae16-326ffae2e3f1"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 35.0px);
}

}

@media (max-width: 767px) {
  [id="s-cc577af4-0128-42e5-ae16-326ffae2e3f1"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-eeefed5f-93c5-4a12-9224-78753d96c9da {
  margin-top: 50px;
margin-left: 0px;
margin-bottom: 50px;
margin-right: 0px;
min-height: 600px;
background-color: rgba(0, 0, 0, 0);
}
@media (min-width: 1200px){#s-eeefed5f-93c5-4a12-9224-78753d96c9da {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-eeefed5f-93c5-4a12-9224-78753d96c9da {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-eeefed5f-93c5-4a12-9224-78753d96c9da {
  margin-top: 0px;
}
}@media (max-width: 767px){#s-eeefed5f-93c5-4a12-9224-78753d96c9da {
  
}
}







#s-eeefed5f-93c5-4a12-9224-78753d96c9da > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-eeefed5f-93c5-4a12-9224-78753d96c9da.shg-box.shg-c {
  justify-content: center;
}
@media (min-width: 1200px){






#s-eeefed5f-93c5-4a12-9224-78753d96c9da > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-eeefed5f-93c5-4a12-9224-78753d96c9da.shg-box.shg-c {
  justify-content: flex-end;
}
}@media (min-width: 992px) and (max-width: 1199px){






#s-eeefed5f-93c5-4a12-9224-78753d96c9da > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-eeefed5f-93c5-4a12-9224-78753d96c9da.shg-box.shg-c {
  justify-content: flex-end;
}
}@media (min-width: 768px) and (max-width: 991px){






#s-eeefed5f-93c5-4a12-9224-78753d96c9da > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-eeefed5f-93c5-4a12-9224-78753d96c9da.shg-box.shg-c {
  justify-content: flex-end;
}
}
#s-3cda687f-72cc-48c5-a12f-845021241d15 {
  margin-bottom: 0px;
text-align: right;
background-color: rgba(0, 0, 0, 0);
}
@media (min-width: 1200px){#s-3cda687f-72cc-48c5-a12f-845021241d15 {
  max-width: 500px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-3cda687f-72cc-48c5-a12f-845021241d15 {
  text-align: center;
}
}@media (min-width: 768px) and (max-width: 991px){#s-3cda687f-72cc-48c5-a12f-845021241d15 {
  text-align: center;
}
}






  #s-3cda687f-72cc-48c5-a12f-845021241d15 img.shogun-image {
    

    
    
    
  }


#s-3cda687f-72cc-48c5-a12f-845021241d15 .shogun-image-content {
  
    align-items: center;
  
}

#s-cde5e5ce-7541-403a-9404-a41f3abfaf0d {
  margin-top: 50px;
margin-left: 0px;
margin-bottom: 50px;
margin-right: 0px;
min-height: 600px;
background-color: rgba(0, 0, 0, 0);
}
@media (min-width: 1200px){#s-cde5e5ce-7541-403a-9404-a41f3abfaf0d {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-cde5e5ce-7541-403a-9404-a41f3abfaf0d {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-cde5e5ce-7541-403a-9404-a41f3abfaf0d {
  margin-top: 0px;
margin-bottom: 0px;
}
}@media (max-width: 767px){#s-cde5e5ce-7541-403a-9404-a41f3abfaf0d {
  
}
}







#s-cde5e5ce-7541-403a-9404-a41f3abfaf0d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-cde5e5ce-7541-403a-9404-a41f3abfaf0d.shg-box.shg-c {
  justify-content: center;
}
@media (min-width: 1200px){






#s-cde5e5ce-7541-403a-9404-a41f3abfaf0d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-cde5e5ce-7541-403a-9404-a41f3abfaf0d.shg-box.shg-c {
  justify-content: flex-end;
}
}
.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 {
  
  
  
}

.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 ::-moz-selection, .shg-default-text-content *::-moz-selection {
  background: #accef7;
}
.shg-default-text-content ::selection,
.shg-default-text-content *::selection {
  background: #accef7;
}

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

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

.shg-theme-text-content p {
  
  
  
}

#s-8188d6f5-91a6-40d1-ab6c-5d8384c4e099 {
  margin-top: 0px;
margin-right: 12%;
}
@media (min-width: 1200px){#s-8188d6f5-91a6-40d1-ab6c-5d8384c4e099 {
  margin-bottom: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-8188d6f5-91a6-40d1-ab6c-5d8384c4e099 {
  margin-top: 25px;
}
}@media (max-width: 767px){#s-8188d6f5-91a6-40d1-ab6c-5d8384c4e099 {
  margin-right: 12%;
}
}
#s-6b983dd6-a630-4e85-ba38-9a82baa13870 {
  margin-top: 10px;
margin-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-6b983dd6-a630-4e85-ba38-9a82baa13870"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6b983dd6-a630-4e85-ba38-9a82baa13870"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-6b983dd6-a630-4e85-ba38-9a82baa13870"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-6b983dd6-a630-4e85-ba38-9a82baa13870"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-6b983dd6-a630-4e85-ba38-9a82baa13870"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-6b983dd6-a630-4e85-ba38-9a82baa13870"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-6b983dd6-a630-4e85-ba38-9a82baa13870"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

#s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 {
  margin-top: 4px;
max-width: 20px;
aspect-ratio: 20/21;
text-align: center;
}



.shg-image-margin-container-s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 {
  
  
  margin-top: 4px;
  
}

#s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 .shg-image-content-wrapper {
      aspect-ratio: 20/21;
      width: 100%;
      height: 100%;
    }

    #s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 .shogun-image-link {
      aspect-ratio: 20/21;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shogun-image {
    
    
  }


.s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 .shogun-image-content {
  
    align-items: center;
  
}

.s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 {
      --shg-aspect-ratio: calc(20/21); 
    }

    .s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shogun-image-container {
      position: relative;
    }

    .s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 {
  
  
  
  
}

#s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 .shg-image-content-wrapper {
      aspect-ratio: 20/21;
      width: 100%;
      height: 100%;
    }

    #s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 .shogun-image-link {
      aspect-ratio: 20/21;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shogun-image {
    
    
  }


.s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 .shogun-image-content {
  
    align-items: center;
  
}

.s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 {
      --shg-aspect-ratio: calc(20/21); 
    }

    .s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shogun-image-container {
      position: relative;
    }

    .s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 {
  
  
  
  
}

#s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 .shg-image-content-wrapper {
      aspect-ratio: 20/21;
      width: 100%;
      height: 100%;
    }

    #s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 .shogun-image-link {
      aspect-ratio: 20/21;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shogun-image {
    
    
  }


.s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 .shogun-image-content {
  
    align-items: center;
  
}

.s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 {
      --shg-aspect-ratio: calc(20/21); 
    }

    .s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shogun-image-container {
      position: relative;
    }

    .s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 {
  
  
  
  
}

#s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 .shg-image-content-wrapper {
      aspect-ratio: 20/21;
      width: 100%;
      height: 100%;
    }

    #s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 .shogun-image-link {
      aspect-ratio: 20/21;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shogun-image {
    
    
  }


.s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 .shogun-image-content {
  
    align-items: center;
  
}

.s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 {
      --shg-aspect-ratio: calc(20/21); 
    }

    .s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shogun-image-container {
      position: relative;
    }

    .s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 {
  
  
  
  
}

#s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 .shg-image-content-wrapper {
      aspect-ratio: 20/21;
      width: 100%;
      height: 100%;
    }

    #s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 .shogun-image-link {
      aspect-ratio: 20/21;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shogun-image {
    
    
  }


.s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 .shogun-image-content {
  
    align-items: center;
  
}

.s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 {
      --shg-aspect-ratio: calc(20/21); 
    }

    .s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shogun-image-container {
      position: relative;
    }

    .s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5970fb38-9660-4e1a-a05b-4fe6cd584d80.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5970fb38-9660-4e1a-a05b-4fe6cd584d80 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-2ca81f48-2ba5-47df-b747-94ab267b35cd {
  margin-left: 0%;
margin-right: 12%;
}

#s-50551ab0-0c0d-4746-988a-643c7fd8173e {
  margin-top: 10px;
margin-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-50551ab0-0c0d-4746-988a-643c7fd8173e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-50551ab0-0c0d-4746-988a-643c7fd8173e"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-50551ab0-0c0d-4746-988a-643c7fd8173e"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-50551ab0-0c0d-4746-988a-643c7fd8173e"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-50551ab0-0c0d-4746-988a-643c7fd8173e"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-50551ab0-0c0d-4746-988a-643c7fd8173e"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-50551ab0-0c0d-4746-988a-643c7fd8173e"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

#s-c4fc232e-126e-4538-a567-552526dd4e85 {
  margin-top: 4px;
max-width: 20px;
aspect-ratio: 20/21;
text-align: center;
}



.shg-image-margin-container-s-c4fc232e-126e-4538-a567-552526dd4e85 {
  
  
  margin-top: 4px;
  
}

#s-c4fc232e-126e-4538-a567-552526dd4e85 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c4fc232e-126e-4538-a567-552526dd4e85 .shg-image-content-wrapper {
      aspect-ratio: 20/21;
      width: 100%;
      height: 100%;
    }

    #s-c4fc232e-126e-4538-a567-552526dd4e85 .shogun-image-link {
      aspect-ratio: 20/21;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c4fc232e-126e-4538-a567-552526dd4e85 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c4fc232e-126e-4538-a567-552526dd4e85.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c4fc232e-126e-4538-a567-552526dd4e85 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c4fc232e-126e-4538-a567-552526dd4e85.shogun-image {
    
    
  }


.s-c4fc232e-126e-4538-a567-552526dd4e85 .shogun-image-content {
  
    align-items: center;
  
}

.s-c4fc232e-126e-4538-a567-552526dd4e85.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c4fc232e-126e-4538-a567-552526dd4e85.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c4fc232e-126e-4538-a567-552526dd4e85.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c4fc232e-126e-4538-a567-552526dd4e85 {
      --shg-aspect-ratio: calc(20/21); 
    }

    .s-c4fc232e-126e-4538-a567-552526dd4e85.shogun-image-container {
      position: relative;
    }

    .s-c4fc232e-126e-4538-a567-552526dd4e85.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c4fc232e-126e-4538-a567-552526dd4e85.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c4fc232e-126e-4538-a567-552526dd4e85 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-c4fc232e-126e-4538-a567-552526dd4e85 {
  
  
  
  
}

#s-c4fc232e-126e-4538-a567-552526dd4e85 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c4fc232e-126e-4538-a567-552526dd4e85 .shg-image-content-wrapper {
      aspect-ratio: 20/21;
      width: 100%;
      height: 100%;
    }

    #s-c4fc232e-126e-4538-a567-552526dd4e85 .shogun-image-link {
      aspect-ratio: 20/21;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c4fc232e-126e-4538-a567-552526dd4e85 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c4fc232e-126e-4538-a567-552526dd4e85.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c4fc232e-126e-4538-a567-552526dd4e85 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c4fc232e-126e-4538-a567-552526dd4e85.shogun-image {
    
    
  }


.s-c4fc232e-126e-4538-a567-552526dd4e85 .shogun-image-content {
  
    align-items: center;
  
}

.s-c4fc232e-126e-4538-a567-552526dd4e85.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c4fc232e-126e-4538-a567-552526dd4e85.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c4fc232e-126e-4538-a567-552526dd4e85.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c4fc232e-126e-4538-a567-552526dd4e85 {
      --shg-aspect-ratio: calc(20/21); 
    }

    .s-c4fc232e-126e-4538-a567-552526dd4e85.shogun-image-container {
      position: relative;
    }

    .s-c4fc232e-126e-4538-a567-552526dd4e85.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c4fc232e-126e-4538-a567-552526dd4e85.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c4fc232e-126e-4538-a567-552526dd4e85 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-c4fc232e-126e-4538-a567-552526dd4e85 {
  
  
  
  
}

#s-c4fc232e-126e-4538-a567-552526dd4e85 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c4fc232e-126e-4538-a567-552526dd4e85 .shg-image-content-wrapper {
      aspect-ratio: 20/21;
      width: 100%;
      height: 100%;
    }

    #s-c4fc232e-126e-4538-a567-552526dd4e85 .shogun-image-link {
      aspect-ratio: 20/21;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c4fc232e-126e-4538-a567-552526dd4e85 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c4fc232e-126e-4538-a567-552526dd4e85.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c4fc232e-126e-4538-a567-552526dd4e85 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c4fc232e-126e-4538-a567-552526dd4e85.shogun-image {
    
    
  }


.s-c4fc232e-126e-4538-a567-552526dd4e85 .shogun-image-content {
  
    align-items: center;
  
}

.s-c4fc232e-126e-4538-a567-552526dd4e85.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c4fc232e-126e-4538-a567-552526dd4e85.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c4fc232e-126e-4538-a567-552526dd4e85.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c4fc232e-126e-4538-a567-552526dd4e85 {
      --shg-aspect-ratio: calc(20/21); 
    }

    .s-c4fc232e-126e-4538-a567-552526dd4e85.shogun-image-container {
      position: relative;
    }

    .s-c4fc232e-126e-4538-a567-552526dd4e85.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c4fc232e-126e-4538-a567-552526dd4e85.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c4fc232e-126e-4538-a567-552526dd4e85 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-c4fc232e-126e-4538-a567-552526dd4e85 {
  
  
  
  
}

#s-c4fc232e-126e-4538-a567-552526dd4e85 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c4fc232e-126e-4538-a567-552526dd4e85 .shg-image-content-wrapper {
      aspect-ratio: 20/21;
      width: 100%;
      height: 100%;
    }

    #s-c4fc232e-126e-4538-a567-552526dd4e85 .shogun-image-link {
      aspect-ratio: 20/21;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c4fc232e-126e-4538-a567-552526dd4e85 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c4fc232e-126e-4538-a567-552526dd4e85.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c4fc232e-126e-4538-a567-552526dd4e85 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c4fc232e-126e-4538-a567-552526dd4e85.shogun-image {
    
    
  }


.s-c4fc232e-126e-4538-a567-552526dd4e85 .shogun-image-content {
  
    align-items: center;
  
}

.s-c4fc232e-126e-4538-a567-552526dd4e85.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c4fc232e-126e-4538-a567-552526dd4e85.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c4fc232e-126e-4538-a567-552526dd4e85.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c4fc232e-126e-4538-a567-552526dd4e85 {
      --shg-aspect-ratio: calc(20/21); 
    }

    .s-c4fc232e-126e-4538-a567-552526dd4e85.shogun-image-container {
      position: relative;
    }

    .s-c4fc232e-126e-4538-a567-552526dd4e85.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c4fc232e-126e-4538-a567-552526dd4e85.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c4fc232e-126e-4538-a567-552526dd4e85 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-c4fc232e-126e-4538-a567-552526dd4e85 {
  
  
  
  
}

#s-c4fc232e-126e-4538-a567-552526dd4e85 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c4fc232e-126e-4538-a567-552526dd4e85 .shg-image-content-wrapper {
      aspect-ratio: 20/21;
      width: 100%;
      height: 100%;
    }

    #s-c4fc232e-126e-4538-a567-552526dd4e85 .shogun-image-link {
      aspect-ratio: 20/21;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c4fc232e-126e-4538-a567-552526dd4e85 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c4fc232e-126e-4538-a567-552526dd4e85.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c4fc232e-126e-4538-a567-552526dd4e85 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c4fc232e-126e-4538-a567-552526dd4e85.shogun-image {
    
    
  }


.s-c4fc232e-126e-4538-a567-552526dd4e85 .shogun-image-content {
  
    align-items: center;
  
}

.s-c4fc232e-126e-4538-a567-552526dd4e85.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c4fc232e-126e-4538-a567-552526dd4e85.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c4fc232e-126e-4538-a567-552526dd4e85.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c4fc232e-126e-4538-a567-552526dd4e85 {
      --shg-aspect-ratio: calc(20/21); 
    }

    .s-c4fc232e-126e-4538-a567-552526dd4e85.shogun-image-container {
      position: relative;
    }

    .s-c4fc232e-126e-4538-a567-552526dd4e85.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c4fc232e-126e-4538-a567-552526dd4e85.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c4fc232e-126e-4538-a567-552526dd4e85 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-d8fec66c-d71c-472f-bd74-3c7e3402177b {
  margin-left: 0%;
margin-right: 12%;
}

#s-a5dda8c6-4c06-45b0-bae8-176aeed374bc {
  margin-top: 10px;
margin-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-a5dda8c6-4c06-45b0-bae8-176aeed374bc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a5dda8c6-4c06-45b0-bae8-176aeed374bc"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-a5dda8c6-4c06-45b0-bae8-176aeed374bc"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-a5dda8c6-4c06-45b0-bae8-176aeed374bc"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-a5dda8c6-4c06-45b0-bae8-176aeed374bc"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-a5dda8c6-4c06-45b0-bae8-176aeed374bc"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-a5dda8c6-4c06-45b0-bae8-176aeed374bc"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

#s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 {
  margin-top: 4px;
max-width: 20px;
aspect-ratio: 20/21;
text-align: center;
}



.shg-image-margin-container-s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 {
  
  
  margin-top: 4px;
  
}

#s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 .shg-image-content-wrapper {
      aspect-ratio: 20/21;
      width: 100%;
      height: 100%;
    }

    #s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 .shogun-image-link {
      aspect-ratio: 20/21;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shogun-image {
    
    
  }


.s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 .shogun-image-content {
  
    align-items: center;
  
}

.s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 {
      --shg-aspect-ratio: calc(20/21); 
    }

    .s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shogun-image-container {
      position: relative;
    }

    .s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 {
  
  
  
  
}

#s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 .shg-image-content-wrapper {
      aspect-ratio: 20/21;
      width: 100%;
      height: 100%;
    }

    #s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 .shogun-image-link {
      aspect-ratio: 20/21;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shogun-image {
    
    
  }


.s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 .shogun-image-content {
  
    align-items: center;
  
}

.s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 {
      --shg-aspect-ratio: calc(20/21); 
    }

    .s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shogun-image-container {
      position: relative;
    }

    .s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 {
  
  
  
  
}

#s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 .shg-image-content-wrapper {
      aspect-ratio: 20/21;
      width: 100%;
      height: 100%;
    }

    #s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 .shogun-image-link {
      aspect-ratio: 20/21;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shogun-image {
    
    
  }


.s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 .shogun-image-content {
  
    align-items: center;
  
}

.s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 {
      --shg-aspect-ratio: calc(20/21); 
    }

    .s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shogun-image-container {
      position: relative;
    }

    .s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 {
  
  
  
  
}

#s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 .shg-image-content-wrapper {
      aspect-ratio: 20/21;
      width: 100%;
      height: 100%;
    }

    #s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 .shogun-image-link {
      aspect-ratio: 20/21;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shogun-image {
    
    
  }


.s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 .shogun-image-content {
  
    align-items: center;
  
}

.s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 {
      --shg-aspect-ratio: calc(20/21); 
    }

    .s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shogun-image-container {
      position: relative;
    }

    .s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 {
  
  
  
  
}

#s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 .shg-image-content-wrapper {
      aspect-ratio: 20/21;
      width: 100%;
      height: 100%;
    }

    #s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 .shogun-image-link {
      aspect-ratio: 20/21;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shogun-image {
    
    
  }


.s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 .shogun-image-content {
  
    align-items: center;
  
}

.s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 {
      --shg-aspect-ratio: calc(20/21); 
    }

    .s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shogun-image-container {
      position: relative;
    }

    .s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9c3d1876-a196-4606-88bc-1cc07a4a1e87.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9c3d1876-a196-4606-88bc-1cc07a4a1e87 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-af4034a9-9bef-4153-8a80-34c2d25224d9 {
  margin-left: 0%;
margin-right: 12%;
}

#s-41b06af8-55ee-4540-a8d4-3512f40c29ee {
  margin-top: 10px;
margin-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-41b06af8-55ee-4540-a8d4-3512f40c29ee"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-41b06af8-55ee-4540-a8d4-3512f40c29ee"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-41b06af8-55ee-4540-a8d4-3512f40c29ee"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-41b06af8-55ee-4540-a8d4-3512f40c29ee"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-41b06af8-55ee-4540-a8d4-3512f40c29ee"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-41b06af8-55ee-4540-a8d4-3512f40c29ee"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-41b06af8-55ee-4540-a8d4-3512f40c29ee"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

#s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 {
  margin-top: 4px;
max-width: 20px;
aspect-ratio: 20/21;
text-align: center;
}



.shg-image-margin-container-s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 {
  
  
  margin-top: 4px;
  
}

#s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 .shg-image-content-wrapper {
      aspect-ratio: 20/21;
      width: 100%;
      height: 100%;
    }

    #s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 .shogun-image-link {
      aspect-ratio: 20/21;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shogun-image {
    
    
  }


.s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 .shogun-image-content {
  
    align-items: center;
  
}

.s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 {
      --shg-aspect-ratio: calc(20/21); 
    }

    .s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shogun-image-container {
      position: relative;
    }

    .s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 {
  
  
  
  
}

#s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 .shg-image-content-wrapper {
      aspect-ratio: 20/21;
      width: 100%;
      height: 100%;
    }

    #s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 .shogun-image-link {
      aspect-ratio: 20/21;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shogun-image {
    
    
  }


.s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 .shogun-image-content {
  
    align-items: center;
  
}

.s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 {
      --shg-aspect-ratio: calc(20/21); 
    }

    .s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shogun-image-container {
      position: relative;
    }

    .s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 {
  
  
  
  
}

#s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 .shg-image-content-wrapper {
      aspect-ratio: 20/21;
      width: 100%;
      height: 100%;
    }

    #s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 .shogun-image-link {
      aspect-ratio: 20/21;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shogun-image {
    
    
  }


.s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 .shogun-image-content {
  
    align-items: center;
  
}

.s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 {
      --shg-aspect-ratio: calc(20/21); 
    }

    .s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shogun-image-container {
      position: relative;
    }

    .s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 {
  
  
  
  
}

#s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 .shg-image-content-wrapper {
      aspect-ratio: 20/21;
      width: 100%;
      height: 100%;
    }

    #s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 .shogun-image-link {
      aspect-ratio: 20/21;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shogun-image {
    
    
  }


.s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 .shogun-image-content {
  
    align-items: center;
  
}

.s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 {
      --shg-aspect-ratio: calc(20/21); 
    }

    .s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shogun-image-container {
      position: relative;
    }

    .s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 {
  
  
  
  
}

#s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 .shg-image-content-wrapper {
      aspect-ratio: 20/21;
      width: 100%;
      height: 100%;
    }

    #s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 .shogun-image-link {
      aspect-ratio: 20/21;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shogun-image {
    
    
  }


.s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 .shogun-image-content {
  
    align-items: center;
  
}

.s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 {
      --shg-aspect-ratio: calc(20/21); 
    }

    .s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shogun-image-container {
      position: relative;
    }

    .s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7ca4365e-4dc7-446f-ba73-09b9dd512aa4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-23d4d2fc-cddc-4e8e-a6e2-1f5b4ee651fb {
  margin-left: 0%;
margin-right: 12%;
}

#s-39bcabca-ef96-41cf-bcb1-30ac94b77db3 {
  margin-top: 10px;
margin-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-39bcabca-ef96-41cf-bcb1-30ac94b77db3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-39bcabca-ef96-41cf-bcb1-30ac94b77db3"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-39bcabca-ef96-41cf-bcb1-30ac94b77db3"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-39bcabca-ef96-41cf-bcb1-30ac94b77db3"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-39bcabca-ef96-41cf-bcb1-30ac94b77db3"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-39bcabca-ef96-41cf-bcb1-30ac94b77db3"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-39bcabca-ef96-41cf-bcb1-30ac94b77db3"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

#s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 {
  margin-top: 4px;
max-width: 20px;
aspect-ratio: 20/21;
text-align: center;
}



.shg-image-margin-container-s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 {
  
  
  margin-top: 4px;
  
}

#s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 .shg-image-content-wrapper {
      aspect-ratio: 20/21;
      width: 100%;
      height: 100%;
    }

    #s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 .shogun-image-link {
      aspect-ratio: 20/21;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shogun-image {
    
    
  }


.s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 .shogun-image-content {
  
    align-items: center;
  
}

.s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 {
      --shg-aspect-ratio: calc(20/21); 
    }

    .s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shogun-image-container {
      position: relative;
    }

    .s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 {
  
  
  
  
}

#s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 .shg-image-content-wrapper {
      aspect-ratio: 20/21;
      width: 100%;
      height: 100%;
    }

    #s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 .shogun-image-link {
      aspect-ratio: 20/21;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shogun-image {
    
    
  }


.s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 .shogun-image-content {
  
    align-items: center;
  
}

.s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 {
      --shg-aspect-ratio: calc(20/21); 
    }

    .s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shogun-image-container {
      position: relative;
    }

    .s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 {
  
  
  
  
}

#s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 .shg-image-content-wrapper {
      aspect-ratio: 20/21;
      width: 100%;
      height: 100%;
    }

    #s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 .shogun-image-link {
      aspect-ratio: 20/21;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shogun-image {
    
    
  }


.s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 .shogun-image-content {
  
    align-items: center;
  
}

.s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 {
      --shg-aspect-ratio: calc(20/21); 
    }

    .s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shogun-image-container {
      position: relative;
    }

    .s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 {
  
  
  
  
}

#s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 .shg-image-content-wrapper {
      aspect-ratio: 20/21;
      width: 100%;
      height: 100%;
    }

    #s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 .shogun-image-link {
      aspect-ratio: 20/21;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shogun-image {
    
    
  }


.s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 .shogun-image-content {
  
    align-items: center;
  
}

.s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 {
      --shg-aspect-ratio: calc(20/21); 
    }

    .s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shogun-image-container {
      position: relative;
    }

    .s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 {
  
  
  
  
}

#s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 .shg-image-content-wrapper {
      aspect-ratio: 20/21;
      width: 100%;
      height: 100%;
    }

    #s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 .shogun-image-link {
      aspect-ratio: 20/21;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shogun-image {
    
    
  }


.s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 .shogun-image-content {
  
    align-items: center;
  
}

.s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 {
      --shg-aspect-ratio: calc(20/21); 
    }

    .s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shogun-image-container {
      position: relative;
    }

    .s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d437a4fa-6600-44fb-a5e6-71fe4847bd97.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d437a4fa-6600-44fb-a5e6-71fe4847bd97 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-4f7a933d-9095-4517-a828-2b9e0b133a00 {
  margin-left: 0%;
margin-right: 12%;
}

#s-8bc27e13-86d1-4a90-86ca-1ae933579f90 {
  margin-top: 25px;
margin-bottom: -50px;
padding-top: 20px;
padding-left: 30px;
padding-bottom: 20px;
padding-right: 30px;
border-radius: 0px;
background-color: rgba(255, 229, 0, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-8bc27e13-86d1-4a90-86ca-1ae933579f90:hover {background-color: rgba(238, 213, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-8bc27e13-86d1-4a90-86ca-1ae933579f90:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-8bc27e13-86d1-4a90-86ca-1ae933579f90 {
  margin-bottom: 25px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-8bc27e13-86d1-4a90-86ca-1ae933579f90 {
  margin-bottom: -50px;
}
}

  #s-8bc27e13-86d1-4a90-86ca-1ae933579f90-root {
    text-align: left;
  }


#s-8bc27e13-86d1-4a90-86ca-1ae933579f90.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-8bc27e13-86d1-4a90-86ca-1ae933579f90-root {
    text-align: left;
  }


#s-8bc27e13-86d1-4a90-86ca-1ae933579f90.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-8bc27e13-86d1-4a90-86ca-1ae933579f90-root {
    text-align: left;
  }


#s-8bc27e13-86d1-4a90-86ca-1ae933579f90.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-8bc27e13-86d1-4a90-86ca-1ae933579f90-root {
    text-align: left;
  }


#s-8bc27e13-86d1-4a90-86ca-1ae933579f90.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-8bc27e13-86d1-4a90-86ca-1ae933579f90-root {
    text-align: left;
  }


#s-8bc27e13-86d1-4a90-86ca-1ae933579f90.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}
  #s-8bc27e13-86d1-4a90-86ca-1ae933579f90-root {
    text-align: left;
  }


#s-8bc27e13-86d1-4a90-86ca-1ae933579f90.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}

#s-7b44667e-d0c8-40ed-8912-6c5470a0094e {
  background-size: cover;
margin-top: 50px;
margin-left: 0px;
margin-bottom: 50px;
margin-right: 0px;
background-position: center top;
}
@media (min-width: 1200px){#s-7b44667e-d0c8-40ed-8912-6c5470a0094e {
  display: none;
}
#s-7b44667e-d0c8-40ed-8912-6c5470a0094e, #wrap-s-7b44667e-d0c8-40ed-8912-6c5470a0094e { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7b44667e-d0c8-40ed-8912-6c5470a0094e {
  display: none;
}
#s-7b44667e-d0c8-40ed-8912-6c5470a0094e, #wrap-s-7b44667e-d0c8-40ed-8912-6c5470a0094e { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7b44667e-d0c8-40ed-8912-6c5470a0094e {
  margin-top: 0px;
margin-bottom: 25px;
display: none;
}
#s-7b44667e-d0c8-40ed-8912-6c5470a0094e, #wrap-s-7b44667e-d0c8-40ed-8912-6c5470a0094e { display: none !important; }}@media (max-width: 767px){#s-7b44667e-d0c8-40ed-8912-6c5470a0094e {
  margin-top: -20px;
margin-bottom: 25px;
}
}







#s-7b44667e-d0c8-40ed-8912-6c5470a0094e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7b44667e-d0c8-40ed-8912-6c5470a0094e.shg-box.shg-c {
  justify-content: flex-start;
}

#s-566da8a4-48aa-4d8a-8412-fdf9e7f2e635 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
min-height: 50px;
background-color: rgba(0, 0, 0, 0);
}
@media (min-width: 1200px){#s-566da8a4-48aa-4d8a-8412-fdf9e7f2e635 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-566da8a4-48aa-4d8a-8412-fdf9e7f2e635 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-566da8a4-48aa-4d8a-8412-fdf9e7f2e635 {
  
}
}@media (max-width: 767px){#s-566da8a4-48aa-4d8a-8412-fdf9e7f2e635 {
  margin-top: 18px;
margin-bottom: 0px;
}
}







#s-566da8a4-48aa-4d8a-8412-fdf9e7f2e635 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-566da8a4-48aa-4d8a-8412-fdf9e7f2e635.shg-box.shg-c {
  justify-content: flex-start;
}

#s-d82ee3b3-731a-40ba-91d1-49b5a3021584 {
  margin-left: 5%;
margin-bottom: 25px;
margin-right: 5%;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (max-width: 767px){#s-d82ee3b3-731a-40ba-91d1-49b5a3021584 {
  display: none;
}
#s-d82ee3b3-731a-40ba-91d1-49b5a3021584, #wrap-s-d82ee3b3-731a-40ba-91d1-49b5a3021584 { display: none !important; }}
#s-d82ee3b3-731a-40ba-91d1-49b5a3021584 .shogun-heading-component h2 {
  
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  
  
  
}



#s-243403b0-d7ce-41a4-bbf7-d093d6cc5052 {
  max-width: 1282px;
text-align: center;
}



.shg-image-margin-container-s-243403b0-d7ce-41a4-bbf7-d093d6cc5052 {
  
  
  
  
}

#s-243403b0-d7ce-41a4-bbf7-d093d6cc5052 {
  margin: 0 !important;
}





  img.s-243403b0-d7ce-41a4-bbf7-d093d6cc5052.shogun-image {
    
    
  }


.s-243403b0-d7ce-41a4-bbf7-d093d6cc5052 .shogun-image-content {
  
    align-items: center;
  
}

.s-243403b0-d7ce-41a4-bbf7-d093d6cc5052.shg-align-container {
  display: flex;
  justify-content: center
}

.s-243403b0-d7ce-41a4-bbf7-d093d6cc5052.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-243403b0-d7ce-41a4-bbf7-d093d6cc5052.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-243403b0-d7ce-41a4-bbf7-d093d6cc5052 {
  
  
  
  
}

#s-243403b0-d7ce-41a4-bbf7-d093d6cc5052 {
  margin: 0 !important;
}





  img.s-243403b0-d7ce-41a4-bbf7-d093d6cc5052.shogun-image {
    
    
  }


.s-243403b0-d7ce-41a4-bbf7-d093d6cc5052 .shogun-image-content {
  
    align-items: center;
  
}

.s-243403b0-d7ce-41a4-bbf7-d093d6cc5052.shg-align-container {
  display: flex;
  justify-content: center
}

.s-243403b0-d7ce-41a4-bbf7-d093d6cc5052.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-243403b0-d7ce-41a4-bbf7-d093d6cc5052.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-243403b0-d7ce-41a4-bbf7-d093d6cc5052 {
  
  
  
  
}

#s-243403b0-d7ce-41a4-bbf7-d093d6cc5052 {
  margin: 0 !important;
}





  img.s-243403b0-d7ce-41a4-bbf7-d093d6cc5052.shogun-image {
    
    
  }


.s-243403b0-d7ce-41a4-bbf7-d093d6cc5052 .shogun-image-content {
  
    align-items: center;
  
}

.s-243403b0-d7ce-41a4-bbf7-d093d6cc5052.shg-align-container {
  display: flex;
  justify-content: center
}

.s-243403b0-d7ce-41a4-bbf7-d093d6cc5052.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-243403b0-d7ce-41a4-bbf7-d093d6cc5052.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-243403b0-d7ce-41a4-bbf7-d093d6cc5052 {
  
  
  
  
}

#s-243403b0-d7ce-41a4-bbf7-d093d6cc5052 {
  margin: 0 !important;
}





  img.s-243403b0-d7ce-41a4-bbf7-d093d6cc5052.shogun-image {
    
    
  }


.s-243403b0-d7ce-41a4-bbf7-d093d6cc5052 .shogun-image-content {
  
    align-items: center;
  
}

.s-243403b0-d7ce-41a4-bbf7-d093d6cc5052.shg-align-container {
  display: flex;
  justify-content: center
}

.s-243403b0-d7ce-41a4-bbf7-d093d6cc5052.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-243403b0-d7ce-41a4-bbf7-d093d6cc5052.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-243403b0-d7ce-41a4-bbf7-d093d6cc5052 {
  
  
  
  
}

#s-243403b0-d7ce-41a4-bbf7-d093d6cc5052 {
  margin: 0 !important;
}





  img.s-243403b0-d7ce-41a4-bbf7-d093d6cc5052.shogun-image {
    
    
  }


.s-243403b0-d7ce-41a4-bbf7-d093d6cc5052 .shogun-image-content {
  
    align-items: center;
  
}

.s-243403b0-d7ce-41a4-bbf7-d093d6cc5052.shg-align-container {
  display: flex;
  justify-content: center
}

.s-243403b0-d7ce-41a4-bbf7-d093d6cc5052.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-243403b0-d7ce-41a4-bbf7-d093d6cc5052.shogun-image {
  box-sizing: border-box;
}




}
#s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c {
  margin-top: 20px;
margin-bottom: 0px;
max-width: 200px;
text-align: center;
}
@media (min-width: 1200px){#s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c {
  display: none;
}
#s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c, #wrap-s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c {
  display: none;
}
#s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c, #wrap-s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c {
  display: none;
}
#s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c, #wrap-s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c { display: none !important; }}


.shg-image-margin-container-s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c {
  
  
  margin-top: 20px;
  margin-bottom: 0px;
}

#s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c {
  margin: 0 !important;
}





  img.s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c.shogun-image {
    
    
  }


.s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c .shogun-image-content {
  
    align-items: center;
  
}

.s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c {
  
  
  
  
}

#s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c {
  margin: 0 !important;
}





  img.s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c.shogun-image {
    
    
  }


.s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c .shogun-image-content {
  
    align-items: center;
  
}

.s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c {
  
  
  
  
}

#s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c {
  margin: 0 !important;
}





  img.s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c.shogun-image {
    
    
  }


.s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c .shogun-image-content {
  
    align-items: center;
  
}

.s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c {
  
  
  
  
}

#s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c {
  margin: 0 !important;
}





  img.s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c.shogun-image {
    
    
  }


.s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c .shogun-image-content {
  
    align-items: center;
  
}

.s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c {
  
  
  
  
}

#s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c {
  margin: 0 !important;
}





  img.s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c.shogun-image {
    
    
  }


.s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c .shogun-image-content {
  
    align-items: center;
  
}

.s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26cec1a3-8a2b-4f56-b4ca-c7a501c6ca5c.shogun-image {
  box-sizing: border-box;
}




}
#s-8e976173-02d6-4934-b43f-74ddacf206e0 {
  margin-top: 20px;
margin-bottom: 0px;
max-width: 440px;
text-align: center;
}
@media (max-width: 767px){#s-8e976173-02d6-4934-b43f-74ddacf206e0 {
  display: none;
}
#s-8e976173-02d6-4934-b43f-74ddacf206e0, #wrap-s-8e976173-02d6-4934-b43f-74ddacf206e0 { display: none !important; }}


.shg-image-margin-container-s-8e976173-02d6-4934-b43f-74ddacf206e0 {
  
  
  margin-top: 20px;
  margin-bottom: 0px;
}

#s-8e976173-02d6-4934-b43f-74ddacf206e0 {
  margin: 0 !important;
}





  img.s-8e976173-02d6-4934-b43f-74ddacf206e0.shogun-image {
    
    
  }


.s-8e976173-02d6-4934-b43f-74ddacf206e0 .shogun-image-content {
  
    align-items: center;
  
}

.s-8e976173-02d6-4934-b43f-74ddacf206e0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8e976173-02d6-4934-b43f-74ddacf206e0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8e976173-02d6-4934-b43f-74ddacf206e0.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-8e976173-02d6-4934-b43f-74ddacf206e0 {
  
  
  
  
}

#s-8e976173-02d6-4934-b43f-74ddacf206e0 {
  margin: 0 !important;
}





  img.s-8e976173-02d6-4934-b43f-74ddacf206e0.shogun-image {
    
    
  }


.s-8e976173-02d6-4934-b43f-74ddacf206e0 .shogun-image-content {
  
    align-items: center;
  
}

.s-8e976173-02d6-4934-b43f-74ddacf206e0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8e976173-02d6-4934-b43f-74ddacf206e0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8e976173-02d6-4934-b43f-74ddacf206e0.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-8e976173-02d6-4934-b43f-74ddacf206e0 {
  
  
  
  
}

#s-8e976173-02d6-4934-b43f-74ddacf206e0 {
  margin: 0 !important;
}





  img.s-8e976173-02d6-4934-b43f-74ddacf206e0.shogun-image {
    
    
  }


.s-8e976173-02d6-4934-b43f-74ddacf206e0 .shogun-image-content {
  
    align-items: center;
  
}

.s-8e976173-02d6-4934-b43f-74ddacf206e0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8e976173-02d6-4934-b43f-74ddacf206e0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8e976173-02d6-4934-b43f-74ddacf206e0.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-8e976173-02d6-4934-b43f-74ddacf206e0 {
  
  
  
  
}

#s-8e976173-02d6-4934-b43f-74ddacf206e0 {
  margin: 0 !important;
}





  img.s-8e976173-02d6-4934-b43f-74ddacf206e0.shogun-image {
    
    
  }


.s-8e976173-02d6-4934-b43f-74ddacf206e0 .shogun-image-content {
  
    align-items: center;
  
}

.s-8e976173-02d6-4934-b43f-74ddacf206e0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8e976173-02d6-4934-b43f-74ddacf206e0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8e976173-02d6-4934-b43f-74ddacf206e0.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-8e976173-02d6-4934-b43f-74ddacf206e0 {
  
  
  
  
}

#s-8e976173-02d6-4934-b43f-74ddacf206e0 {
  margin: 0 !important;
}





  img.s-8e976173-02d6-4934-b43f-74ddacf206e0.shogun-image {
    
    
  }


.s-8e976173-02d6-4934-b43f-74ddacf206e0 .shogun-image-content {
  
    align-items: center;
  
}

.s-8e976173-02d6-4934-b43f-74ddacf206e0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8e976173-02d6-4934-b43f-74ddacf206e0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8e976173-02d6-4934-b43f-74ddacf206e0.shogun-image {
  box-sizing: border-box;
}




}
#s-24b6a472-3460-46ec-857b-1ee41f571f64 {
  margin-top: 25px;
margin-left: 10%;
margin-right: 10%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-24b6a472-3460-46ec-857b-1ee41f571f64 .shogun-heading-component h3 {
  
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-f5e999d7-a68a-4ffa-a090-7c551f236d1f {
  margin-top: 25px;
margin-left: 10%;
margin-bottom: 0px;
margin-right: 10%;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-radius: 0px;
background-color: rgba(255, 229, 0, 1);
text-align: left;
text-decoration: none;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 0px;
}
#s-f5e999d7-a68a-4ffa-a090-7c551f236d1f:hover {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-f5e999d7-a68a-4ffa-a090-7c551f236d1f:active {background-color: rgba(245, 220, 11, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}@media (min-width: 768px) and (max-width: 991px){#s-f5e999d7-a68a-4ffa-a090-7c551f236d1f {
  padding-left: 21px;
padding-right: 21px;
}
}@media (max-width: 767px){#s-f5e999d7-a68a-4ffa-a090-7c551f236d1f {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-radius: 0px;
background-color: rgba(255, 229, 0, 1);
text-decoration: none;
color: rgba(0, 0, 0, 1);
line-height: 1em;
letter-spacing: 0px;
text-align: center;
}
}

  #s-f5e999d7-a68a-4ffa-a090-7c551f236d1f-root {
    text-align: left;
  }


#s-f5e999d7-a68a-4ffa-a090-7c551f236d1f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-f5e999d7-a68a-4ffa-a090-7c551f236d1f-root {
    text-align: left;
  }


#s-f5e999d7-a68a-4ffa-a090-7c551f236d1f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f5e999d7-a68a-4ffa-a090-7c551f236d1f-root {
    text-align: left;
  }


#s-f5e999d7-a68a-4ffa-a090-7c551f236d1f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f5e999d7-a68a-4ffa-a090-7c551f236d1f-root {
    text-align: left;
  }


#s-f5e999d7-a68a-4ffa-a090-7c551f236d1f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-f5e999d7-a68a-4ffa-a090-7c551f236d1f-root {
    text-align: center;
  }


#s-f5e999d7-a68a-4ffa-a090-7c551f236d1f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  block ;
}
}
#s-d912fb2b-9730-4d11-b89f-242cac0d7e66 {
  margin-top: 50px;
margin-left: 0px;
margin-bottom: 60px;
margin-right: 0px;
min-height: 50px;
background-color: rgba(0, 0, 0, 0);
}
@media (min-width: 1200px){#s-d912fb2b-9730-4d11-b89f-242cac0d7e66 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-d912fb2b-9730-4d11-b89f-242cac0d7e66 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-d912fb2b-9730-4d11-b89f-242cac0d7e66 {
  
}
}@media (max-width: 767px){#s-d912fb2b-9730-4d11-b89f-242cac0d7e66 {
  
}
}







#s-d912fb2b-9730-4d11-b89f-242cac0d7e66 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d912fb2b-9730-4d11-b89f-242cac0d7e66.shg-box.shg-c {
  justify-content: flex-start;
}

#s-f14289c2-cc47-4c47-a03d-6ffcc9eebdfc {
  margin-top: 0px;
margin-bottom: 100px;
padding-left: 2%;
padding-right: 2%;
min-height: 100px;
}
@media (max-width: 767px){#s-f14289c2-cc47-4c47-a03d-6ffcc9eebdfc {
  margin-top: -40px;
margin-bottom: 40px;
min-height: 100px;
}
}







#s-f14289c2-cc47-4c47-a03d-6ffcc9eebdfc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f14289c2-cc47-4c47-a03d-6ffcc9eebdfc.shg-box.shg-c {
  justify-content: flex-start;
}

#s-311418c1-fe0a-497c-86c1-81f94d02d3b6 {
  margin-top: 0px;
margin-left: 30%;
margin-bottom: 0px;
margin-right: 30%;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-311418c1-fe0a-497c-86c1-81f94d02d3b6 {
  margin-left: 15%;
margin-right: 15%;
}
}@media (max-width: 767px){#s-311418c1-fe0a-497c-86c1-81f94d02d3b6 {
  margin-top: 0px;
margin-left: 7%;
margin-bottom: 0px;
margin-right: 7%;
padding-top: 0px;
padding-bottom: 0px;
}
}
#s-311418c1-fe0a-497c-86c1-81f94d02d3b6 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  
  letter-spacing: 0px;
  
}



#s-7b6cb889-a1bb-4328-a427-aee7ac1caad0 {
  border-style: solid;
margin-top: 0px;
margin-left: 25%;
margin-bottom: 0px;
margin-right: 25%;
padding-top: 20px;
padding-bottom: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0.2);
text-align: center;
}
@media (min-width: 1200px){#s-7b6cb889-a1bb-4328-a427-aee7ac1caad0 {
  display: none;
}
#s-7b6cb889-a1bb-4328-a427-aee7ac1caad0, #wrap-s-7b6cb889-a1bb-4328-a427-aee7ac1caad0 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7b6cb889-a1bb-4328-a427-aee7ac1caad0 {
  display: none;
}
#s-7b6cb889-a1bb-4328-a427-aee7ac1caad0, #wrap-s-7b6cb889-a1bb-4328-a427-aee7ac1caad0 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7b6cb889-a1bb-4328-a427-aee7ac1caad0 {
  margin-left: 10%;
margin-right: 10%;
display: none;
}
#s-7b6cb889-a1bb-4328-a427-aee7ac1caad0, #wrap-s-7b6cb889-a1bb-4328-a427-aee7ac1caad0 { display: none !important; }}@media (max-width: 767px){#s-7b6cb889-a1bb-4328-a427-aee7ac1caad0 {
  margin-left: 7%;
margin-right: 7%;
display: none;
}
#s-7b6cb889-a1bb-4328-a427-aee7ac1caad0, #wrap-s-7b6cb889-a1bb-4328-a427-aee7ac1caad0 { display: none !important; }}
#s-7b6cb889-a1bb-4328-a427-aee7ac1caad0 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-5ff980c5-1953-497e-981f-3003294ac5eb {
  margin-top: 40px;
margin-left: 0px;
margin-right: 0px;
min-height: 50px;
background-color: rgba(0, 0, 0, 0);
}
@media (min-width: 1200px){#s-5ff980c5-1953-497e-981f-3003294ac5eb {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-5ff980c5-1953-497e-981f-3003294ac5eb {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-5ff980c5-1953-497e-981f-3003294ac5eb {
  
}
}@media (max-width: 767px){#s-5ff980c5-1953-497e-981f-3003294ac5eb {
  display: none;
}
#s-5ff980c5-1953-497e-981f-3003294ac5eb, #wrap-s-5ff980c5-1953-497e-981f-3003294ac5eb { display: none !important; }}







#s-5ff980c5-1953-497e-981f-3003294ac5eb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5ff980c5-1953-497e-981f-3003294ac5eb.shg-box.shg-c {
  justify-content: flex-start;
}

@media (max-width: 767px){#s-64f69eb0-44f2-4b0b-8bea-ae78185bdfb2 {
  margin-top: 3px;
margin-bottom: 3px;
}
}
@media (min-width: 0px) {
[id="s-64f69eb0-44f2-4b0b-8bea-ae78185bdfb2"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-64f69eb0-44f2-4b0b-8bea-ae78185bdfb2"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-64f69eb0-44f2-4b0b-8bea-ae78185bdfb2"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-64f69eb0-44f2-4b0b-8bea-ae78185bdfb2"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-bfd3d05b-513f-4986-8437-c91957106866 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(0, 0, 0, 1);
}

#s-bfd3d05b-513f-4986-8437-c91957106866 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-852c03df-c132-446c-8f90-6ac5c4b9da09 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(0, 0, 0, 1);
}

#s-852c03df-c132-446c-8f90-6ac5c4b9da09 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-324ffa90-7fc2-4059-814d-eee3accaca3b {
  margin-top: 0px;
margin-bottom: 0px;
}
@media (max-width: 767px){#s-324ffa90-7fc2-4059-814d-eee3accaca3b {
  margin-top: 26px;
margin-bottom: 26px;
}
}
#s-d8d8c1b9-d6a8-412c-b340-43644acef3a9 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(0, 0, 0, 1);
}
@media (max-width: 767px){#s-d8d8c1b9-d6a8-412c-b340-43644acef3a9 {
  margin-top: -29px;
margin-bottom: -29px;
padding-top: 11px;
padding-bottom: 11px;
}
}
#s-d8d8c1b9-d6a8-412c-b340-43644acef3a9 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



@media (max-width: 767px){#s-2d174eaa-56df-4357-9ce0-22db4df7f64d {
  margin-top: 26px;
margin-bottom: 26px;
}
}
#s-6f7fc904-7df5-4840-bff4-0d9552dd35b7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(0, 0, 0, 1);
}
@media (max-width: 767px){#s-6f7fc904-7df5-4840-bff4-0d9552dd35b7 {
  margin-top: -29px;
margin-bottom: -29px;
}
}
#s-6f7fc904-7df5-4840-bff4-0d9552dd35b7 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-956867f5-ada4-4feb-97d8-605854762c74 {
  margin-top: 50px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
min-height: 50px;
background-color: rgba(0, 0, 0, 0);
}
@media (min-width: 1200px){#s-956867f5-ada4-4feb-97d8-605854762c74 {
  display: none;
}
#s-956867f5-ada4-4feb-97d8-605854762c74, #wrap-s-956867f5-ada4-4feb-97d8-605854762c74 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-956867f5-ada4-4feb-97d8-605854762c74 {
  display: none;
}
#s-956867f5-ada4-4feb-97d8-605854762c74, #wrap-s-956867f5-ada4-4feb-97d8-605854762c74 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-956867f5-ada4-4feb-97d8-605854762c74 {
  display: none;
}
#s-956867f5-ada4-4feb-97d8-605854762c74, #wrap-s-956867f5-ada4-4feb-97d8-605854762c74 { display: none !important; }}@media (max-width: 767px){#s-956867f5-ada4-4feb-97d8-605854762c74 {
  min-height: 50px;
}
}







#s-956867f5-ada4-4feb-97d8-605854762c74 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-956867f5-ada4-4feb-97d8-605854762c74.shg-box.shg-c {
  justify-content: flex-start;
}

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

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

.shg-sld-slides-padded {
  padding: 0 35px;
}

.shg-sld-nav-button {
  cursor: pointer;
  position: absolute;
  z-index: 10;
  top: 0;
  width: 35px;
  min-height: 35px;
  height: 100%;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.shg-sld-nav-button > svg {
  height: 100%;
  width: 100%;
}

.shg-sld-nav-button.shg-sld-left {
  left: 0;
}

.shg-sld-nav-button.shg-sld-left-over-content {
  left: 2%;
}

.shg-sld-nav-button.shg-sld-right {
  right: 0;
}

.shg-sld-nav-button.shg-sld-right-over-content {
  right: 2%;
}

.shg-sld-nav-button.shg-sld-disabled {
  cursor: default;
  opacity: 0.2;
}

.shg-sld-item {
  display: none;
}

.shg-sld-item.shg-sld-active {
  display: block;
}

.shg-sld-dots {
  margin-top: 10px;
  text-align: center;
  z-index: 1;
  position: relative;
}

.shg-sld-dots-on-top {
  margin-top: -30px !important;
}

.shg-sld-dot {
  cursor: pointer;
  display: inline-block !important;
  height: 14px;
  width: 14px;
  border-radius: 100%;
  margin-left: 5px;
  opacity: 0.5;
}

.shg-sld-dot:first-child {
  margin-left: 0px;
}

.shg-sld-dot.shg-sld-active {
  opacity: 1;
}

@keyframes shg-sld-fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

#s-b8796ed5-4755-4aa5-a7af-e71df82f8b32 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-b8796ed5-4755-4aa5-a7af-e71df82f8b32 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-b8796ed5-4755-4aa5-a7af-e71df82f8b32 .shg-sld-nav-button.shg-sld-left,
#s-b8796ed5-4755-4aa5-a7af-e71df82f8b32 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-5e9e1837-d85d-4d56-ac50-bbbc61eecac6 {
  margin-top: 0px;
margin-bottom: 0px;
}

#s-bc66886a-a0ed-4ef7-8ee5-a714c627404a {
  margin-top: 0px;
margin-bottom: 0px;
}

#s-f6b5b95a-87e8-4386-9a5a-bb40853c9fed {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
min-height: 0px;
text-align: center;
background-color: rgba(0, 0, 0, 1);
}

#s-f6b5b95a-87e8-4386-9a5a-bb40853c9fed .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



#s-33ad7fd6-f556-4765-9e80-1c22730b9224 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(0, 0, 0, 1);
}

#s-33ad7fd6-f556-4765-9e80-1c22730b9224 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



#s-f2918ed9-4916-4409-8b93-a10099dc1a66 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(0, 0, 0, 1);
}

#s-f2918ed9-4916-4409-8b93-a10099dc1a66 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



#s-f3039ced-93e3-4ead-8749-0a912e6c76c2 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(0, 0, 0, 1);
}
@media (max-width: 767px){#s-f3039ced-93e3-4ead-8749-0a912e6c76c2 {
  padding-top: 11px;
padding-bottom: 11px;
}
}
#s-f3039ced-93e3-4ead-8749-0a912e6c76c2 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



#s-b52d5654-cc29-463d-86be-50467adb585c {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-b52d5654-cc29-463d-86be-50467adb585c {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b52d5654-cc29-463d-86be-50467adb585c {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-b52d5654-cc29-463d-86be-50467adb585c {
  
}
}@media (max-width: 767px){#s-b52d5654-cc29-463d-86be-50467adb585c {
  padding-left: 7%;
padding-right: 7%;
}
}
#s-b52d5654-cc29-463d-86be-50467adb585c .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  
  letter-spacing: 0px;
  
}



#s-6eaeaa47-d311-43f7-aff2-541dfcb62671 {
  margin-top: 40px;
margin-left: 6%;
margin-bottom: 40px;
margin-right: 6%;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-6eaeaa47-d311-43f7-aff2-541dfcb62671 {
  display: none;
}
#s-6eaeaa47-d311-43f7-aff2-541dfcb62671, #wrap-s-6eaeaa47-d311-43f7-aff2-541dfcb62671 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6eaeaa47-d311-43f7-aff2-541dfcb62671 {
  display: none;
}
#s-6eaeaa47-d311-43f7-aff2-541dfcb62671, #wrap-s-6eaeaa47-d311-43f7-aff2-541dfcb62671 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-6eaeaa47-d311-43f7-aff2-541dfcb62671 {
  display: none;
}
#s-6eaeaa47-d311-43f7-aff2-541dfcb62671, #wrap-s-6eaeaa47-d311-43f7-aff2-541dfcb62671 { display: none !important; }}@media (max-width: 767px){#s-6eaeaa47-d311-43f7-aff2-541dfcb62671 {
  padding-left: 8%;
padding-right: 8%;
display: none;
}
#s-6eaeaa47-d311-43f7-aff2-541dfcb62671, #wrap-s-6eaeaa47-d311-43f7-aff2-541dfcb62671 { display: none !important; }}







#s-6eaeaa47-d311-43f7-aff2-541dfcb62671 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6eaeaa47-d311-43f7-aff2-541dfcb62671.shg-box.shg-c {
  justify-content: center;
}

#s-daa1058d-05b0-4752-a7f3-650af7729c83 {
  margin-left: 2%;
margin-right: 2%;
min-height: 50px;
background-color: rgba(0, 0, 0, 0);
}
@media (min-width: 1200px){#s-daa1058d-05b0-4752-a7f3-650af7729c83 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-daa1058d-05b0-4752-a7f3-650af7729c83 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-daa1058d-05b0-4752-a7f3-650af7729c83 {
  
}
}@media (max-width: 767px){#s-daa1058d-05b0-4752-a7f3-650af7729c83 {
  margin-left: 0%;
margin-right: 0%;
}
}







#s-daa1058d-05b0-4752-a7f3-650af7729c83 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-daa1058d-05b0-4752-a7f3-650af7729c83.shg-box.shg-c {
  justify-content: flex-start;
}

#s-78490b11-a3df-4d5f-9aca-6592f8c1fcaf {
  margin-top: 0px;
}
@media (max-width: 767px){#s-78490b11-a3df-4d5f-9aca-6592f8c1fcaf {
  margin-top: 0px;
margin-left: -9%;
margin-bottom: 0px;
margin-right: -9%;
padding-top: 0px;
padding-bottom: 0px;
display: none;
}
#s-78490b11-a3df-4d5f-9aca-6592f8c1fcaf, #wrap-s-78490b11-a3df-4d5f-9aca-6592f8c1fcaf { display: none !important; }}
@media (min-width: 0px) {
[id="s-78490b11-a3df-4d5f-9aca-6592f8c1fcaf"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-78490b11-a3df-4d5f-9aca-6592f8c1fcaf"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-78490b11-a3df-4d5f-9aca-6592f8c1fcaf"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-78490b11-a3df-4d5f-9aca-6592f8c1fcaf"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-23c1bd29-758d-4216-a4f6-00e82cc2ca77 {
  max-width: 700px;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}







  #s-23c1bd29-758d-4216-a4f6-00e82cc2ca77 img.shogun-image {
    

    
    
    
  }


#s-23c1bd29-758d-4216-a4f6-00e82cc2ca77 .shogun-image-content {
  
    align-items: center;
  
}

#s-c6901aa8-20e7-480a-96c8-b7c158d2f938 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-3f135845-9ebc-4219-b255-5f9e9a797f5d {
  border-style: solid;
margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-top: 15px;
padding-left: 0px;
padding-bottom: 15px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-radius: 0px;
background-color: rgba(255, 229, 0, 1);
text-align: center;
text-decoration: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-3f135845-9ebc-4219-b255-5f9e9a797f5d:hover {background-color: rgba(255, 229, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-3f135845-9ebc-4219-b255-5f9e9a797f5d:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-3f135845-9ebc-4219-b255-5f9e9a797f5d-root {
    text-align: center;
  }


#s-3f135845-9ebc-4219-b255-5f9e9a797f5d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-3f135845-9ebc-4219-b255-5f9e9a797f5d-root {
    text-align: center;
  }


#s-3f135845-9ebc-4219-b255-5f9e9a797f5d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-3f135845-9ebc-4219-b255-5f9e9a797f5d-root {
    text-align: center;
  }


#s-3f135845-9ebc-4219-b255-5f9e9a797f5d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-3f135845-9ebc-4219-b255-5f9e9a797f5d-root {
    text-align: center;
  }


#s-3f135845-9ebc-4219-b255-5f9e9a797f5d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-3f135845-9ebc-4219-b255-5f9e9a797f5d-root {
    text-align: center;
  }


#s-3f135845-9ebc-4219-b255-5f9e9a797f5d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
}
  #s-3f135845-9ebc-4219-b255-5f9e9a797f5d-root {
    text-align: center;
  }


#s-3f135845-9ebc-4219-b255-5f9e9a797f5d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}

#s-0cdec0f8-aa88-4980-90c1-445153f41dc3 {
  max-width: 700px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-0cdec0f8-aa88-4980-90c1-445153f41dc3 img.shogun-image,
  #s-0cdec0f8-aa88-4980-90c1-445153f41dc3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0cdec0f8-aa88-4980-90c1-445153f41dc3 {
    width: 100%;
    height: auto;
  }



  #s-0cdec0f8-aa88-4980-90c1-445153f41dc3 img.shogun-image {
    

    
    
    
  }


#s-0cdec0f8-aa88-4980-90c1-445153f41dc3 .shogun-image-content {
  
    align-items: center;
  
}

#s-1b903529-9643-430a-a49b-d7467c652fda {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-8adda157-0907-4c07-bd72-fc10d4f28138 {
  border-style: solid;
margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-top: 15px;
padding-left: 0px;
padding-bottom: 15px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-radius: 0px;
background-color: rgba(255, 229, 0, 1);
text-align: center;
text-decoration: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-8adda157-0907-4c07-bd72-fc10d4f28138:hover {background-color: rgba(255, 229, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-8adda157-0907-4c07-bd72-fc10d4f28138:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-8adda157-0907-4c07-bd72-fc10d4f28138-root {
    text-align: center;
  }


#s-8adda157-0907-4c07-bd72-fc10d4f28138.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-8adda157-0907-4c07-bd72-fc10d4f28138-root {
    text-align: center;
  }


#s-8adda157-0907-4c07-bd72-fc10d4f28138.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-8adda157-0907-4c07-bd72-fc10d4f28138-root {
    text-align: center;
  }


#s-8adda157-0907-4c07-bd72-fc10d4f28138.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-8adda157-0907-4c07-bd72-fc10d4f28138-root {
    text-align: center;
  }


#s-8adda157-0907-4c07-bd72-fc10d4f28138.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-8adda157-0907-4c07-bd72-fc10d4f28138-root {
    text-align: center;
  }


#s-8adda157-0907-4c07-bd72-fc10d4f28138.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
}
  #s-8adda157-0907-4c07-bd72-fc10d4f28138-root {
    text-align: center;
  }


#s-8adda157-0907-4c07-bd72-fc10d4f28138.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}

#s-8641be83-ff86-406d-92f2-5658be7d2f88 {
  max-width: 1000px;
text-align: center;
}







  #s-8641be83-ff86-406d-92f2-5658be7d2f88 img.shogun-image {
    

    
    
    
  }


#s-8641be83-ff86-406d-92f2-5658be7d2f88 .shogun-image-content {
  
    align-items: center;
  
}

#s-cd6c9977-cbcf-4f02-9925-75065fdb1e7b {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-cb575ed6-e765-46b0-bb53-acbed0846f4f {
  border-style: solid;
margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-top: 15px;
padding-left: 0px;
padding-bottom: 15px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-radius: 0px;
background-color: rgba(255, 229, 0, 1);
text-align: center;
text-decoration: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-cb575ed6-e765-46b0-bb53-acbed0846f4f:hover {background-color: rgba(255, 229, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-cb575ed6-e765-46b0-bb53-acbed0846f4f:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-cb575ed6-e765-46b0-bb53-acbed0846f4f-root {
    text-align: center;
  }


#s-cb575ed6-e765-46b0-bb53-acbed0846f4f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-cb575ed6-e765-46b0-bb53-acbed0846f4f-root {
    text-align: center;
  }


#s-cb575ed6-e765-46b0-bb53-acbed0846f4f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-cb575ed6-e765-46b0-bb53-acbed0846f4f-root {
    text-align: center;
  }


#s-cb575ed6-e765-46b0-bb53-acbed0846f4f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-cb575ed6-e765-46b0-bb53-acbed0846f4f-root {
    text-align: center;
  }


#s-cb575ed6-e765-46b0-bb53-acbed0846f4f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-cb575ed6-e765-46b0-bb53-acbed0846f4f-root {
    text-align: center;
  }


#s-cb575ed6-e765-46b0-bb53-acbed0846f4f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
}
  #s-cb575ed6-e765-46b0-bb53-acbed0846f4f-root {
    text-align: center;
  }


#s-cb575ed6-e765-46b0-bb53-acbed0846f4f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}

#s-3e812de2-962b-4779-b07a-8cadbd752c26 {
  max-width: 700px;
text-align: center;
}







  #s-3e812de2-962b-4779-b07a-8cadbd752c26 img.shogun-image {
    

    
    
    
  }


#s-3e812de2-962b-4779-b07a-8cadbd752c26 .shogun-image-content {
  
    align-items: center;
  
}

#s-503e5788-0cc6-416f-831f-7348ef82ad3d {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-be26a1c5-2c70-41b0-9200-2be5a03c323a {
  border-style: solid;
margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-top: 15px;
padding-left: 0px;
padding-bottom: 15px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-radius: 0px;
background-color: rgba(255, 229, 0, 1);
text-align: center;
text-decoration: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-be26a1c5-2c70-41b0-9200-2be5a03c323a:hover {background-color: rgba(255, 229, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-be26a1c5-2c70-41b0-9200-2be5a03c323a:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-be26a1c5-2c70-41b0-9200-2be5a03c323a-root {
    text-align: center;
  }


#s-be26a1c5-2c70-41b0-9200-2be5a03c323a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-be26a1c5-2c70-41b0-9200-2be5a03c323a-root {
    text-align: center;
  }


#s-be26a1c5-2c70-41b0-9200-2be5a03c323a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-be26a1c5-2c70-41b0-9200-2be5a03c323a-root {
    text-align: center;
  }


#s-be26a1c5-2c70-41b0-9200-2be5a03c323a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-be26a1c5-2c70-41b0-9200-2be5a03c323a-root {
    text-align: center;
  }


#s-be26a1c5-2c70-41b0-9200-2be5a03c323a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-be26a1c5-2c70-41b0-9200-2be5a03c323a-root {
    text-align: center;
  }


#s-be26a1c5-2c70-41b0-9200-2be5a03c323a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
}
  #s-be26a1c5-2c70-41b0-9200-2be5a03c323a-root {
    text-align: center;
  }


#s-be26a1c5-2c70-41b0-9200-2be5a03c323a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}

#s-c5a9f856-e39c-4e79-98c6-14309c7633e3 {
  margin-top: 0px;
margin-bottom: 15px;
}
@media (min-width: 1200px){#s-c5a9f856-e39c-4e79-98c6-14309c7633e3 {
  display: none;
}
#s-c5a9f856-e39c-4e79-98c6-14309c7633e3, #wrap-s-c5a9f856-e39c-4e79-98c6-14309c7633e3 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c5a9f856-e39c-4e79-98c6-14309c7633e3 {
  display: none;
}
#s-c5a9f856-e39c-4e79-98c6-14309c7633e3, #wrap-s-c5a9f856-e39c-4e79-98c6-14309c7633e3 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c5a9f856-e39c-4e79-98c6-14309c7633e3 {
  display: none;
}
#s-c5a9f856-e39c-4e79-98c6-14309c7633e3, #wrap-s-c5a9f856-e39c-4e79-98c6-14309c7633e3 { display: none !important; }}@media (max-width: 767px){#s-c5a9f856-e39c-4e79-98c6-14309c7633e3 {
  margin-top: 0px;
margin-left: -9%;
margin-right: -9%;
padding-top: 0px;
padding-bottom: 0px;
}
}
@media (min-width: 0px) {
[id="s-c5a9f856-e39c-4e79-98c6-14309c7633e3"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-c5a9f856-e39c-4e79-98c6-14309c7633e3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c5a9f856-e39c-4e79-98c6-14309c7633e3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c5a9f856-e39c-4e79-98c6-14309c7633e3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-c072fb16-6ddd-4044-a44d-65dff1bc5c4e {
  max-width: 700px;
text-align: center;
}







  #s-c072fb16-6ddd-4044-a44d-65dff1bc5c4e img.shogun-image {
    

    
    
    
  }


#s-c072fb16-6ddd-4044-a44d-65dff1bc5c4e .shogun-image-content {
  
    align-items: center;
  
}

#s-0f287a87-1ea5-4f4b-8d72-9a29d5253450 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-54e73b47-28f1-445a-9421-20186880e56a {
  border-style: solid;
margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-top: 15px;
padding-left: 0px;
padding-bottom: 15px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-radius: 0px;
background-color: rgba(255, 229, 0, 1);
text-align: center;
text-decoration: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-54e73b47-28f1-445a-9421-20186880e56a:hover {background-color: rgba(255, 229, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-54e73b47-28f1-445a-9421-20186880e56a:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-54e73b47-28f1-445a-9421-20186880e56a-root {
    text-align: center;
  }


#s-54e73b47-28f1-445a-9421-20186880e56a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-54e73b47-28f1-445a-9421-20186880e56a-root {
    text-align: center;
  }


#s-54e73b47-28f1-445a-9421-20186880e56a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-54e73b47-28f1-445a-9421-20186880e56a-root {
    text-align: center;
  }


#s-54e73b47-28f1-445a-9421-20186880e56a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-54e73b47-28f1-445a-9421-20186880e56a-root {
    text-align: center;
  }


#s-54e73b47-28f1-445a-9421-20186880e56a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-54e73b47-28f1-445a-9421-20186880e56a-root {
    text-align: center;
  }


#s-54e73b47-28f1-445a-9421-20186880e56a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
}
  #s-54e73b47-28f1-445a-9421-20186880e56a-root {
    text-align: center;
  }


#s-54e73b47-28f1-445a-9421-20186880e56a.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}

#s-d4db6f00-7e69-4100-bb10-72c9a5a78aaf {
  max-width: 700px;
text-align: center;
}







  #s-d4db6f00-7e69-4100-bb10-72c9a5a78aaf img.shogun-image {
    

    
    
    
  }


#s-d4db6f00-7e69-4100-bb10-72c9a5a78aaf .shogun-image-content {
  
    align-items: center;
  
}

#s-55f081ca-bf4d-40ed-a9d7-ff520d05bea1 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-c9572df0-44c6-43a2-a4d1-e4f21472e29b {
  border-style: solid;
margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-top: 15px;
padding-left: 0px;
padding-bottom: 15px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-radius: 0px;
background-color: rgba(255, 229, 0, 1);
text-align: center;
text-decoration: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-c9572df0-44c6-43a2-a4d1-e4f21472e29b:hover {background-color: rgba(255, 229, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-c9572df0-44c6-43a2-a4d1-e4f21472e29b:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-c9572df0-44c6-43a2-a4d1-e4f21472e29b-root {
    text-align: center;
  }


#s-c9572df0-44c6-43a2-a4d1-e4f21472e29b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-c9572df0-44c6-43a2-a4d1-e4f21472e29b-root {
    text-align: center;
  }


#s-c9572df0-44c6-43a2-a4d1-e4f21472e29b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c9572df0-44c6-43a2-a4d1-e4f21472e29b-root {
    text-align: center;
  }


#s-c9572df0-44c6-43a2-a4d1-e4f21472e29b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c9572df0-44c6-43a2-a4d1-e4f21472e29b-root {
    text-align: center;
  }


#s-c9572df0-44c6-43a2-a4d1-e4f21472e29b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-c9572df0-44c6-43a2-a4d1-e4f21472e29b-root {
    text-align: center;
  }


#s-c9572df0-44c6-43a2-a4d1-e4f21472e29b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
}
  #s-c9572df0-44c6-43a2-a4d1-e4f21472e29b-root {
    text-align: center;
  }


#s-c9572df0-44c6-43a2-a4d1-e4f21472e29b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}

#s-7a6ca7a3-7599-4d75-afe7-c09cc33d9384 {
  margin-top: 0px;
}
@media (min-width: 1200px){#s-7a6ca7a3-7599-4d75-afe7-c09cc33d9384 {
  display: none;
}
#s-7a6ca7a3-7599-4d75-afe7-c09cc33d9384, #wrap-s-7a6ca7a3-7599-4d75-afe7-c09cc33d9384 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7a6ca7a3-7599-4d75-afe7-c09cc33d9384 {
  display: none;
}
#s-7a6ca7a3-7599-4d75-afe7-c09cc33d9384, #wrap-s-7a6ca7a3-7599-4d75-afe7-c09cc33d9384 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7a6ca7a3-7599-4d75-afe7-c09cc33d9384 {
  display: none;
}
#s-7a6ca7a3-7599-4d75-afe7-c09cc33d9384, #wrap-s-7a6ca7a3-7599-4d75-afe7-c09cc33d9384 { display: none !important; }}@media (max-width: 767px){#s-7a6ca7a3-7599-4d75-afe7-c09cc33d9384 {
  margin-top: 0px;
margin-left: -9%;
margin-bottom: 0px;
margin-right: -9%;
padding-top: 0px;
padding-bottom: 0px;
}
}
@media (min-width: 0px) {
[id="s-7a6ca7a3-7599-4d75-afe7-c09cc33d9384"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-7a6ca7a3-7599-4d75-afe7-c09cc33d9384"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7a6ca7a3-7599-4d75-afe7-c09cc33d9384"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7a6ca7a3-7599-4d75-afe7-c09cc33d9384"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-3c16fd1d-f609-425f-9529-23a2660d3fee {
  max-width: 1000px;
text-align: center;
}







  #s-3c16fd1d-f609-425f-9529-23a2660d3fee img.shogun-image {
    

    
    
    
  }


#s-3c16fd1d-f609-425f-9529-23a2660d3fee .shogun-image-content {
  
    align-items: center;
  
}

#s-e9dcb87b-305f-493f-9446-5b0c119bb3b8 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-b487b4f3-e59d-47d0-b2f4-623a5e8c9f20 {
  border-style: solid;
margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-top: 15px;
padding-left: 0px;
padding-bottom: 15px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-radius: 0px;
background-color: rgba(255, 229, 0, 1);
text-align: center;
text-decoration: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-b487b4f3-e59d-47d0-b2f4-623a5e8c9f20:hover {background-color: rgba(255, 229, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-b487b4f3-e59d-47d0-b2f4-623a5e8c9f20:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-b487b4f3-e59d-47d0-b2f4-623a5e8c9f20-root {
    text-align: center;
  }


#s-b487b4f3-e59d-47d0-b2f4-623a5e8c9f20.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-b487b4f3-e59d-47d0-b2f4-623a5e8c9f20-root {
    text-align: center;
  }


#s-b487b4f3-e59d-47d0-b2f4-623a5e8c9f20.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b487b4f3-e59d-47d0-b2f4-623a5e8c9f20-root {
    text-align: center;
  }


#s-b487b4f3-e59d-47d0-b2f4-623a5e8c9f20.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b487b4f3-e59d-47d0-b2f4-623a5e8c9f20-root {
    text-align: center;
  }


#s-b487b4f3-e59d-47d0-b2f4-623a5e8c9f20.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-b487b4f3-e59d-47d0-b2f4-623a5e8c9f20-root {
    text-align: center;
  }


#s-b487b4f3-e59d-47d0-b2f4-623a5e8c9f20.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
}
  #s-b487b4f3-e59d-47d0-b2f4-623a5e8c9f20-root {
    text-align: center;
  }


#s-b487b4f3-e59d-47d0-b2f4-623a5e8c9f20.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}

#s-3677d578-7174-4e72-b198-ae415506eb7a {
  max-width: 700px;
text-align: center;
}







  #s-3677d578-7174-4e72-b198-ae415506eb7a img.shogun-image {
    

    
    
    
  }


#s-3677d578-7174-4e72-b198-ae415506eb7a .shogun-image-content {
  
    align-items: center;
  
}

#s-29629b21-21c4-4864-af05-945d9b804e71 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-5a8a9960-449b-4ed7-9553-4538f381758e {
  border-style: solid;
margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-top: 15px;
padding-left: 0px;
padding-bottom: 15px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-radius: 0px;
background-color: rgba(255, 229, 0, 1);
text-align: center;
text-decoration: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-5a8a9960-449b-4ed7-9553-4538f381758e:hover {background-color: rgba(255, 229, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-5a8a9960-449b-4ed7-9553-4538f381758e:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-5a8a9960-449b-4ed7-9553-4538f381758e-root {
    text-align: center;
  }


#s-5a8a9960-449b-4ed7-9553-4538f381758e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-5a8a9960-449b-4ed7-9553-4538f381758e-root {
    text-align: center;
  }


#s-5a8a9960-449b-4ed7-9553-4538f381758e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-5a8a9960-449b-4ed7-9553-4538f381758e-root {
    text-align: center;
  }


#s-5a8a9960-449b-4ed7-9553-4538f381758e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-5a8a9960-449b-4ed7-9553-4538f381758e-root {
    text-align: center;
  }


#s-5a8a9960-449b-4ed7-9553-4538f381758e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-5a8a9960-449b-4ed7-9553-4538f381758e-root {
    text-align: center;
  }


#s-5a8a9960-449b-4ed7-9553-4538f381758e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}
}
  #s-5a8a9960-449b-4ed7-9553-4538f381758e-root {
    text-align: center;
  }


#s-5a8a9960-449b-4ed7-9553-4538f381758e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  block ;
}

#s-d5999086-49fc-4edd-bee7-57de3b46c700 {
  margin-top: 50px;
margin-left: 2%;
margin-bottom: 50px;
margin-right: 2%;
padding-left: 1%;
padding-right: 1%;
min-height: 50px;
}
@media (min-width: 1200px){#s-d5999086-49fc-4edd-bee7-57de3b46c700 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-d5999086-49fc-4edd-bee7-57de3b46c700 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-d5999086-49fc-4edd-bee7-57de3b46c700 {
  
}
}@media (max-width: 767px){#s-d5999086-49fc-4edd-bee7-57de3b46c700 {
  margin-top: 5px;
margin-bottom: 5px;
}
}







#s-d5999086-49fc-4edd-bee7-57de3b46c700 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d5999086-49fc-4edd-bee7-57de3b46c700.shg-box.shg-c {
  justify-content: center;
}

#s-2d6c9ef5-6e63-4043-adcd-7da37340136a {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 0px;
}
@media (max-width: 767px){#s-2d6c9ef5-6e63-4043-adcd-7da37340136a {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-left: 1%;
padding-bottom: 0px;
padding-right: 1%;
display: none;
}
#s-2d6c9ef5-6e63-4043-adcd-7da37340136a, #wrap-s-2d6c9ef5-6e63-4043-adcd-7da37340136a { display: none !important; }}
@media (min-width: 0px) {
[id="s-2d6c9ef5-6e63-4043-adcd-7da37340136a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 7.0px);
}

}

@media (min-width: 768px) {
[id="s-2d6c9ef5-6e63-4043-adcd-7da37340136a"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 10.5px);
}

}

@media (min-width: 992px) {
[id="s-2d6c9ef5-6e63-4043-adcd-7da37340136a"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 10.5px);
}

}

@media (min-width: 1200px) {
[id="s-2d6c9ef5-6e63-4043-adcd-7da37340136a"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 10.5px);
}

}

#s-b85b604f-206c-4aed-99f3-be47e7f5e528 {
  padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
text-align: center;
}
@media (max-width: 767px){#s-b85b604f-206c-4aed-99f3-be47e7f5e528 {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
}
}






  #s-b85b604f-206c-4aed-99f3-be47e7f5e528 img.shogun-image {
    

    
    
    
  }


#s-b85b604f-206c-4aed-99f3-be47e7f5e528 .shogun-image-content {
  
    align-items: center;
  
}

#s-23269f0b-3a4e-4702-afe9-0ca8bd48f73c {
  padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
max-width: 1003px;
aspect-ratio: 1/1;
text-align: center;
}
@media (max-width: 767px){#s-23269f0b-3a4e-4702-afe9-0ca8bd48f73c {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
}
}




  #s-23269f0b-3a4e-4702-afe9-0ca8bd48f73c img.shogun-image,
  #s-23269f0b-3a4e-4702-afe9-0ca8bd48f73c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-23269f0b-3a4e-4702-afe9-0ca8bd48f73c {
    width: 100%;
    height: auto;
  }



  #s-23269f0b-3a4e-4702-afe9-0ca8bd48f73c img.shogun-image {
    

    
    
    
  }


#s-23269f0b-3a4e-4702-afe9-0ca8bd48f73c .shogun-image-content {
  
    align-items: center;
  
}

#s-40fd9253-2df4-4e3b-a9cd-c202e92b9a76 {
  padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
text-align: center;
}
@media (max-width: 767px){#s-40fd9253-2df4-4e3b-a9cd-c202e92b9a76 {
  margin-top: 0px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}
}






  #s-40fd9253-2df4-4e3b-a9cd-c202e92b9a76 img.shogun-image {
    

    
    
    
  }


#s-40fd9253-2df4-4e3b-a9cd-c202e92b9a76 .shogun-image-content {
  
    align-items: center;
  
}

#s-4772ca6c-ff4d-414b-8bae-06211d83cc91 {
  padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
text-align: center;
}
@media (max-width: 767px){#s-4772ca6c-ff4d-414b-8bae-06211d83cc91 {
  margin-top: 0px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}
}






  #s-4772ca6c-ff4d-414b-8bae-06211d83cc91 img.shogun-image {
    

    
    
    
  }


#s-4772ca6c-ff4d-414b-8bae-06211d83cc91 .shogun-image-content {
  
    align-items: center;
  
}

#s-04798d29-225e-4680-a211-cdd1d045e348 {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 0px;
}
@media (min-width: 1200px){#s-04798d29-225e-4680-a211-cdd1d045e348 {
  display: none;
}
#s-04798d29-225e-4680-a211-cdd1d045e348, #wrap-s-04798d29-225e-4680-a211-cdd1d045e348 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-04798d29-225e-4680-a211-cdd1d045e348 {
  display: none;
}
#s-04798d29-225e-4680-a211-cdd1d045e348, #wrap-s-04798d29-225e-4680-a211-cdd1d045e348 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-04798d29-225e-4680-a211-cdd1d045e348 {
  display: none;
}
#s-04798d29-225e-4680-a211-cdd1d045e348, #wrap-s-04798d29-225e-4680-a211-cdd1d045e348 { display: none !important; }}@media (max-width: 767px){#s-04798d29-225e-4680-a211-cdd1d045e348 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-left: 1%;
padding-bottom: 0px;
padding-right: 1%;
}
}
@media (min-width: 0px) {
[id="s-04798d29-225e-4680-a211-cdd1d045e348"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-04798d29-225e-4680-a211-cdd1d045e348"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-04798d29-225e-4680-a211-cdd1d045e348"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-04798d29-225e-4680-a211-cdd1d045e348"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-303ff7d1-e693-4326-afbe-2de19564fb3d {
  padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
text-align: center;
}
@media (max-width: 767px){#s-303ff7d1-e693-4326-afbe-2de19564fb3d {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
}
}






  #s-303ff7d1-e693-4326-afbe-2de19564fb3d img.shogun-image {
    

    
    
    
  }


#s-303ff7d1-e693-4326-afbe-2de19564fb3d .shogun-image-content {
  
    align-items: center;
  
}

#s-c4e28bdb-7019-4035-a4de-2efbeea87a05 {
  padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
text-align: center;
}
@media (max-width: 767px){#s-c4e28bdb-7019-4035-a4de-2efbeea87a05 {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
}
}






  #s-c4e28bdb-7019-4035-a4de-2efbeea87a05 img.shogun-image {
    

    
    
    
  }


#s-c4e28bdb-7019-4035-a4de-2efbeea87a05 .shogun-image-content {
  
    align-items: center;
  
}

#s-d2df1883-cc17-43e0-b98d-4697fbd3880e {
  padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
text-align: center;
}
@media (max-width: 767px){#s-d2df1883-cc17-43e0-b98d-4697fbd3880e {
  margin-top: 0px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}
}






  #s-d2df1883-cc17-43e0-b98d-4697fbd3880e img.shogun-image {
    

    
    
    
  }


#s-d2df1883-cc17-43e0-b98d-4697fbd3880e .shogun-image-content {
  
    align-items: center;
  
}

#s-df511c81-9838-403b-bb82-27b4e821d4ac {
  padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
text-align: center;
}
@media (max-width: 767px){#s-df511c81-9838-403b-bb82-27b4e821d4ac {
  margin-top: 0px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}
}






  #s-df511c81-9838-403b-bb82-27b4e821d4ac img.shogun-image {
    

    
    
    
  }


#s-df511c81-9838-403b-bb82-27b4e821d4ac .shogun-image-content {
  
    align-items: center;
  
}

#s-365fa5d8-2376-4b55-8727-374f232466f9 {
  margin-top: 100px;
margin-bottom: 30px;
min-height: 400px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-365fa5d8-2376-4b55-8727-374f232466f9 {
  margin-bottom: 0px;
}
}







#s-365fa5d8-2376-4b55-8727-374f232466f9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-365fa5d8-2376-4b55-8727-374f232466f9.shg-box.shg-c {
  justify-content: center;
}

#s-d0c62071-bf4e-45c3-bead-fec5d1b44975 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (max-width: 767px){#s-d0c62071-bf4e-45c3-bead-fec5d1b44975 {
  margin-left: 7%;
margin-right: 7%;
}
}
#s-d0c62071-bf4e-45c3-bead-fec5d1b44975 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  
  letter-spacing: 0px;
  
}



#s-8943d980-e1ee-45e8-b4a7-d3a3099e481f {
  margin-left: 25%;
margin-right: 25%;
padding-top: 20px;
max-width: 70%;
}
@media (max-width: 767px){#s-8943d980-e1ee-45e8-b4a7-d3a3099e481f {
  margin-left: 7%;
margin-right: 7%;
max-width: 100%;
}
}
#s-e07b6c18-1610-4bec-b2e0-9c7da34cfa0c {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
max-width: 80%;
}

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

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

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

.shogun-root iframe {
  display: initial;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* <-- User Content Animations */

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

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

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

@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{animation-duration:1s;animation-duration:var(--animate-duration);animation-fill-mode:both}.animate__animated.animate__infinite{animation-iteration-count:infinite}.animate__animated.animate__repeat-1{animation-iteration-count:1;animation-iteration-count:var(--animate-repeat)}.animate__animated.animate__repeat-2{animation-iteration-count:2;animation-iteration-count:calc(var(--animate-repeat)*2)}.animate__animated.animate__repeat-3{animation-iteration-count:3;animation-iteration-count:calc(var(--animate-repeat)*3)}.animate__animated.animate__delay-1s{animation-delay:1s;animation-delay:var(--animate-delay)}.animate__animated.animate__delay-2s{animation-delay:2s;animation-delay:calc(var(--animate-delay)*2)}.animate__animated.animate__delay-3s{animation-delay:3s;animation-delay:calc(var(--animate-delay)*3)}.animate__animated.animate__delay-4s{animation-delay:4s;animation-delay:calc(var(--animate-delay)*4)}.animate__animated.animate__delay-5s{animation-delay:5s;animation-delay:calc(var(--animate-delay)*5)}.animate__animated.animate__faster{animation-duration:.5s;animation-duration:calc(var(--animate-duration)/2)}.animate__animated.animate__fast{animation-duration:.8s;animation-duration:calc(var(--animate-duration)*0.8)}.animate__animated.animate__slow{animation-duration:2s;animation-duration:calc(var(--animate-duration)*2)}.animate__animated.animate__slower{animation-duration:3s;animation-duration:calc(var(--animate-duration)*3)}@media (prefers-reduced-motion:reduce),print{.animate__animated{animation-duration:1ms!important;transition-duration:1ms!important;animation-iteration-count:1!important}.animate__animated[class*=Out]{opacity:0}}@keyframes bounce{0%,20%,53%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1);transform:translateZ(0)}40%,43%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-30px,0) scaleY(1.1)}70%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-15px,0) scaleY(1.05)}80%{transition-timing-function:cubic-bezier(.215,.61,.355,1);transform:translateZ(0) scaleY(.95)}90%{transform:translate3d(0,-4px,0) scaleY(1.02)}}.animate__bounce{animation-name:bounce;transform-origin:center bottom}@keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}.animate__flash{animation-name:flash}@keyframes pulse{0%{transform:scaleX(1)}50%{transform:scale3d(1.05,1.05,1.05)}to{transform:scaleX(1)}}.animate__pulse{animation-name:pulse;animation-timing-function:ease-in-out}@keyframes rubberBand{0%{transform:scaleX(1)}30%{transform:scale3d(1.25,.75,1)}40%{transform:scale3d(.75,1.25,1)}50%{transform:scale3d(1.15,.85,1)}65%{transform:scale3d(.95,1.05,1)}75%{transform:scale3d(1.05,.95,1)}to{transform:scaleX(1)}}.animate__rubberBand{animation-name:rubberBand}@keyframes shakeX{0%,to{transform:translateZ(0)}10%,30%,50%,70%,90%{transform:translate3d(-10px,0,0)}20%,40%,60%,80%{transform:translate3d(10px,0,0)}}.animate__shakeX{animation-name:shakeX}@keyframes shakeY{0%,to{transform:translateZ(0)}10%,30%,50%,70%,90%{transform:translate3d(0,-10px,0)}20%,40%,60%,80%{transform:translate3d(0,10px,0)}}.animate__shakeY{animation-name:shakeY}@keyframes headShake{0%{transform:translateX(0)}6.5%{transform:translateX(-6px) rotateY(-9deg)}18.5%{transform:translateX(5px) rotateY(7deg)}31.5%{transform:translateX(-3px) rotateY(-5deg)}43.5%{transform:translateX(2px) rotateY(3deg)}50%{transform:translateX(0)}}.animate__headShake{animation-timing-function:ease-in-out;animation-name:headShake}@keyframes swing{20%{transform:rotate(15deg)}40%{transform:rotate(-10deg)}60%{transform:rotate(5deg)}80%{transform:rotate(-5deg)}to{transform:rotate(0deg)}}.animate__swing{transform-origin:top center;animation-name:swing}@keyframes tada{0%{transform:scaleX(1)}10%,20%{transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{transform:scaleX(1)}}.animate__tada{animation-name:tada}@keyframes wobble{0%{transform:translateZ(0)}15%{transform:translate3d(-25%,0,0) rotate(-5deg)}30%{transform:translate3d(20%,0,0) rotate(3deg)}45%{transform:translate3d(-15%,0,0) rotate(-3deg)}60%{transform:translate3d(10%,0,0) rotate(2deg)}75%{transform:translate3d(-5%,0,0) rotate(-1deg)}to{transform:translateZ(0)}}.animate__wobble{animation-name:wobble}@keyframes jello{0%,11.1%,to{transform:translateZ(0)}22.2%{transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{transform:skewX(6.25deg) skewY(6.25deg)}44.4%{transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{transform:skewX(.390625deg) skewY(.390625deg)}88.8%{transform:skewX(-.1953125deg) skewY(-.1953125deg)}}.animate__jello{animation-name:jello;transform-origin:center}@keyframes heartBeat{0%{transform:scale(1)}14%{transform:scale(1.3)}28%{transform:scale(1)}42%{transform:scale(1.3)}70%{transform:scale(1)}}.animate__heartBeat{animation-name:heartBeat;animation-duration:1.3s;animation-duration:calc(var(--animate-duration)*1.3);animation-timing-function:ease-in-out}@keyframes backInDown{0%{transform:translateY(-1200px) scale(.7);opacity:.7}80%{transform:translateY(0) scale(.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInDown{animation-name:backInDown}@keyframes backInLeft{0%{transform:translateX(-2000px) scale(.7);opacity:.7}80%{transform:translateX(0) scale(.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInLeft{animation-name:backInLeft}@keyframes backInRight{0%{transform:translateX(2000px) scale(.7);opacity:.7}80%{transform:translateX(0) scale(.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInRight{animation-name:backInRight}@keyframes backInUp{0%{transform:translateY(1200px) scale(.7);opacity:.7}80%{transform:translateY(0) scale(.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInUp{animation-name:backInUp}@keyframes backOutDown{0%{transform:scale(1);opacity:1}20%{transform:translateY(0) scale(.7);opacity:.7}to{transform:translateY(700px) scale(.7);opacity:.7}}.animate__backOutDown{animation-name:backOutDown}@keyframes backOutLeft{0%{transform:scale(1);opacity:1}20%{transform:translateX(0) scale(.7);opacity:.7}to{transform:translateX(-2000px) scale(.7);opacity:.7}}.animate__backOutLeft{animation-name:backOutLeft}@keyframes backOutRight{0%{transform:scale(1);opacity:1}20%{transform:translateX(0) scale(.7);opacity:.7}to{transform:translateX(2000px) scale(.7);opacity:.7}}.animate__backOutRight{animation-name:backOutRight}@keyframes backOutUp{0%{transform:scale(1);opacity:1}20%{transform:translateY(0) scale(.7);opacity:.7}to{transform:translateY(-700px) scale(.7);opacity:.7}}.animate__backOutUp{animation-name:backOutUp}@keyframes bounceIn{0%,20%,40%,60%,80%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:scale3d(.3,.3,.3)}20%{transform:scale3d(1.1,1.1,1.1)}40%{transform:scale3d(.9,.9,.9)}60%{opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{transform:scale3d(.97,.97,.97)}to{opacity:1;transform:scaleX(1)}}.animate__bounceIn{animation-duration:.75s;animation-duration:calc(var(--animate-duration)*0.75);animation-name:bounceIn}@keyframes bounceInDown{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;transform:translate3d(0,25px,0) scaleY(.9)}75%{transform:translate3d(0,-10px,0) scaleY(.95)}90%{transform:translate3d(0,5px,0) scaleY(.985)}to{transform:translateZ(0)}}.animate__bounceInDown{animation-name:bounceInDown}@keyframes bounceInLeft{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;transform:translate3d(25px,0,0) scaleX(1)}75%{transform:translate3d(-10px,0,0) scaleX(.98)}90%{transform:translate3d(5px,0,0) scaleX(.995)}to{transform:translateZ(0)}}.animate__bounceInLeft{animation-name:bounceInLeft}@keyframes bounceInRight{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;transform:translate3d(-25px,0,0) scaleX(1)}75%{transform:translate3d(10px,0,0) scaleX(.98)}90%{transform:translate3d(-5px,0,0) scaleX(.995)}to{transform:translateZ(0)}}.animate__bounceInRight{animation-name:bounceInRight}@keyframes bounceInUp{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;transform:translate3d(0,-20px,0) scaleY(.9)}75%{transform:translate3d(0,10px,0) scaleY(.95)}90%{transform:translate3d(0,-5px,0) scaleY(.985)}to{transform:translateZ(0)}}.animate__bounceInUp{animation-name:bounceInUp}@keyframes bounceOut{20%{transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;transform:scale3d(1.1,1.1,1.1)}to{opacity:0;transform:scale3d(.3,.3,.3)}}.animate__bounceOut{animation-duration:.75s;animation-duration:calc(var(--animate-duration)*0.75);animation-name:bounceOut}@keyframes bounceOutDown{20%{transform:translate3d(0,10px,0) scaleY(.985)}40%,45%{opacity:1;transform:translate3d(0,-20px,0) scaleY(.9)}to{opacity:0;transform:translate3d(0,2000px,0) scaleY(3)}}.animate__bounceOutDown{animation-name:bounceOutDown}@keyframes bounceOutLeft{20%{opacity:1;transform:translate3d(20px,0,0) scaleX(.9)}to{opacity:0;transform:translate3d(-2000px,0,0) scaleX(2)}}.animate__bounceOutLeft{animation-name:bounceOutLeft}@keyframes bounceOutRight{20%{opacity:1;transform:translate3d(-20px,0,0) scaleX(.9)}to{opacity:0;transform:translate3d(2000px,0,0) scaleX(2)}}.animate__bounceOutRight{animation-name:bounceOutRight}@keyframes bounceOutUp{20%{transform:translate3d(0,-10px,0) scaleY(.985)}40%,45%{opacity:1;transform:translate3d(0,20px,0) scaleY(.9)}to{opacity:0;transform:translate3d(0,-2000px,0) scaleY(3)}}.animate__bounceOutUp{animation-name:bounceOutUp}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.animate__fadeIn{animation-name:fadeIn}@keyframes fadeInDown{0%{opacity:0;transform:translate3d(0,-100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInDown{animation-name:fadeInDown}@keyframes fadeInDownBig{0%{opacity:0;transform:translate3d(0,-2000px,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInDownBig{animation-name:fadeInDownBig}@keyframes fadeInLeft{0%{opacity:0;transform:translate3d(-100%,0,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInLeft{animation-name:fadeInLeft}@keyframes fadeInLeftBig{0%{opacity:0;transform:translate3d(-2000px,0,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInLeftBig{animation-name:fadeInLeftBig}@keyframes fadeInRight{0%{opacity:0;transform:translate3d(100%,0,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInRight{animation-name:fadeInRight}@keyframes fadeInRightBig{0%{opacity:0;transform:translate3d(2000px,0,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInRightBig{animation-name:fadeInRightBig}@keyframes fadeInUp{0%{opacity:0;transform:translate3d(0,100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInUp{animation-name:fadeInUp}@keyframes fadeInUpBig{0%{opacity:0;transform:translate3d(0,2000px,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInUpBig{animation-name:fadeInUpBig}@keyframes fadeInTopLeft{0%{opacity:0;transform:translate3d(-100%,-100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInTopLeft{animation-name:fadeInTopLeft}@keyframes fadeInTopRight{0%{opacity:0;transform:translate3d(100%,-100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInTopRight{animation-name:fadeInTopRight}@keyframes fadeInBottomLeft{0%{opacity:0;transform:translate3d(-100%,100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInBottomLeft{animation-name:fadeInBottomLeft}@keyframes fadeInBottomRight{0%{opacity:0;transform:translate3d(100%,100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInBottomRight{animation-name:fadeInBottomRight}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.animate__fadeOut{animation-name:fadeOut}@keyframes fadeOutDown{0%{opacity:1}to{opacity:0;transform:translate3d(0,100%,0)}}.animate__fadeOutDown{animation-name:fadeOutDown}@keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;transform:translate3d(0,2000px,0)}}.animate__fadeOutDownBig{animation-name:fadeOutDownBig}@keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;transform:translate3d(-100%,0,0)}}.animate__fadeOutLeft{animation-name:fadeOutLeft}@keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;transform:translate3d(-2000px,0,0)}}.animate__fadeOutLeftBig{animation-name:fadeOutLeftBig}@keyframes fadeOutRight{0%{opacity:1}to{opacity:0;transform:translate3d(100%,0,0)}}.animate__fadeOutRight{animation-name:fadeOutRight}@keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;transform:translate3d(2000px,0,0)}}.animate__fadeOutRightBig{animation-name:fadeOutRightBig}@keyframes fadeOutUp{0%{opacity:1}to{opacity:0;transform:translate3d(0,-100%,0)}}.animate__fadeOutUp{animation-name:fadeOutUp}@keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;transform:translate3d(0,-2000px,0)}}.animate__fadeOutUpBig{animation-name:fadeOutUpBig}@keyframes fadeOutTopLeft{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(-100%,-100%,0)}}.animate__fadeOutTopLeft{animation-name:fadeOutTopLeft}@keyframes fadeOutTopRight{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(100%,-100%,0)}}.animate__fadeOutTopRight{animation-name:fadeOutTopRight}@keyframes fadeOutBottomRight{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(100%,100%,0)}}.animate__fadeOutBottomRight{animation-name:fadeOutBottomRight}@keyframes fadeOutBottomLeft{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(-100%,100%,0)}}.animate__fadeOutBottomLeft{animation-name:fadeOutBottomLeft}@keyframes flip{0%{transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);animation-timing-function:ease-out}40%{transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);animation-timing-function:ease-out}50%{transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);animation-timing-function:ease-in}80%{transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);animation-timing-function:ease-in}to{transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);animation-timing-function:ease-in}}.animate__animated.animate__flip{backface-visibility:visible;animation-name:flip}@keyframes flipInX{0%{transform:perspective(400px) rotateX(90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateX(-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotateX(10deg);opacity:1}80%{transform:perspective(400px) rotateX(-5deg)}to{transform:perspective(400px)}}.animate__flipInX{backface-visibility:visible!important;animation-name:flipInX}@keyframes flipInY{0%{transform:perspective(400px) rotateY(90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateY(-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotateY(10deg);opacity:1}80%{transform:perspective(400px) rotateY(-5deg)}to{transform:perspective(400px)}}.animate__flipInY{backface-visibility:visible!important;animation-name:flipInY}@keyframes flipOutX{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateX(-20deg);opacity:1}to{transform:perspective(400px) rotateX(90deg);opacity:0}}.animate__flipOutX{animation-duration:.75s;animation-duration:calc(var(--animate-duration)*0.75);animation-name:flipOutX;backface-visibility:visible!important}@keyframes flipOutY{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateY(-15deg);opacity:1}to{transform:perspective(400px) rotateY(90deg);opacity:0}}.animate__flipOutY{animation-duration:.75s;animation-duration:calc(var(--animate-duration)*0.75);backface-visibility:visible!important;animation-name:flipOutY}@keyframes lightSpeedInRight{0%{transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{transform:skewX(20deg);opacity:1}80%{transform:skewX(-5deg)}to{transform:translateZ(0)}}.animate__lightSpeedInRight{animation-name:lightSpeedInRight;animation-timing-function:ease-out}@keyframes lightSpeedInLeft{0%{transform:translate3d(-100%,0,0) skewX(30deg);opacity:0}60%{transform:skewX(-20deg);opacity:1}80%{transform:skewX(5deg)}to{transform:translateZ(0)}}.animate__lightSpeedInLeft{animation-name:lightSpeedInLeft;animation-timing-function:ease-out}@keyframes lightSpeedOutRight{0%{opacity:1}to{transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.animate__lightSpeedOutRight{animation-name:lightSpeedOutRight;animation-timing-function:ease-in}@keyframes lightSpeedOutLeft{0%{opacity:1}to{transform:translate3d(-100%,0,0) skewX(-30deg);opacity:0}}.animate__lightSpeedOutLeft{animation-name:lightSpeedOutLeft;animation-timing-function:ease-in}@keyframes rotateIn{0%{transform:rotate(-200deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateIn{animation-name:rotateIn;transform-origin:center}@keyframes rotateInDownLeft{0%{transform:rotate(-45deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateInDownLeft{animation-name:rotateInDownLeft;transform-origin:left bottom}@keyframes rotateInDownRight{0%{transform:rotate(45deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateInDownRight{animation-name:rotateInDownRight;transform-origin:right bottom}@keyframes rotateInUpLeft{0%{transform:rotate(45deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateInUpLeft{animation-name:rotateInUpLeft;transform-origin:left bottom}@keyframes rotateInUpRight{0%{transform:rotate(-90deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateInUpRight{animation-name:rotateInUpRight;transform-origin:right bottom}@keyframes rotateOut{0%{opacity:1}to{transform:rotate(200deg);opacity:0}}.animate__rotateOut{animation-name:rotateOut;transform-origin:center}@keyframes rotateOutDownLeft{0%{opacity:1}to{transform:rotate(45deg);opacity:0}}.animate__rotateOutDownLeft{animation-name:rotateOutDownLeft;transform-origin:left bottom}@keyframes rotateOutDownRight{0%{opacity:1}to{transform:rotate(-45deg);opacity:0}}.animate__rotateOutDownRight{animation-name:rotateOutDownRight;transform-origin:right bottom}@keyframes rotateOutUpLeft{0%{opacity:1}to{transform:rotate(-45deg);opacity:0}}.animate__rotateOutUpLeft{animation-name:rotateOutUpLeft;transform-origin:left bottom}@keyframes rotateOutUpRight{0%{opacity:1}to{transform:rotate(90deg);opacity:0}}.animate__rotateOutUpRight{animation-name:rotateOutUpRight;transform-origin:right bottom}@keyframes hinge{0%{animation-timing-function:ease-in-out}20%,60%{transform:rotate(80deg);animation-timing-function:ease-in-out}40%,80%{transform:rotate(60deg);animation-timing-function:ease-in-out;opacity:1}to{transform:translate3d(0,700px,0);opacity:0}}.animate__hinge{animation-duration:2s;animation-duration:calc(var(--animate-duration)*2);animation-name:hinge;transform-origin:top left}@keyframes jackInTheBox{0%{opacity:0;transform:scale(.1) rotate(30deg);transform-origin:center bottom}50%{transform:rotate(-10deg)}70%{transform:rotate(3deg)}to{opacity:1;transform:scale(1)}}.animate__jackInTheBox{animation-name:jackInTheBox}@keyframes rollIn{0%{opacity:0;transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;transform:translateZ(0)}}.animate__rollIn{animation-name:rollIn}@keyframes rollOut{0%{opacity:1}to{opacity:0;transform:translate3d(100%,0,0) rotate(120deg)}}.animate__rollOut{animation-name:rollOut}@keyframes zoomIn{0%{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}.animate__zoomIn{animation-name:zoomIn}@keyframes zoomInDown{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInDown{animation-name:zoomInDown}@keyframes zoomInLeft{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInLeft{animation-name:zoomInLeft}@keyframes zoomInRight{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInRight{animation-name:zoomInRight}@keyframes zoomInUp{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInUp{animation-name:zoomInUp}@keyframes zoomOut{0%{opacity:1}50%{opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:0}}.animate__zoomOut{animation-name:zoomOut}@keyframes zoomOutDown{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutDown{animation-name:zoomOutDown;transform-origin:center bottom}@keyframes zoomOutLeft{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;transform:scale(.1) translate3d(-2000px,0,0)}}.animate__zoomOutLeft{animation-name:zoomOutLeft;transform-origin:left center}@keyframes zoomOutRight{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;transform:scale(.1) translate3d(2000px,0,0)}}.animate__zoomOutRight{animation-name:zoomOutRight;transform-origin:right center}@keyframes zoomOutUp{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutUp{animation-name:zoomOutUp;transform-origin:center bottom}@keyframes slideInDown{0%{transform:translate3d(0,-100%,0);visibility:visible}to{transform:translateZ(0)}}.animate__slideInDown{animation-name:slideInDown}@keyframes slideInLeft{0%{transform:translate3d(-100%,0,0);visibility:visible}to{transform:translateZ(0)}}.animate__slideInLeft{animation-name:slideInLeft}@keyframes slideInRight{0%{transform:translate3d(100%,0,0);visibility:visible}to{transform:translateZ(0)}}.animate__slideInRight{animation-name:slideInRight}@keyframes slideInUp{0%{transform:translate3d(0,100%,0);visibility:visible}to{transform:translateZ(0)}}.animate__slideInUp{animation-name:slideInUp}@keyframes slideOutDown{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0,100%,0)}}.animate__slideOutDown{animation-name:slideOutDown}@keyframes slideOutLeft{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(-100%,0,0)}}.animate__slideOutLeft{animation-name:slideOutLeft}@keyframes slideOutRight{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(100%,0,0)}}.animate__slideOutRight{animation-name:slideOutRight}@keyframes slideOutUp{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0,-100%,0)}}.animate__slideOutUp{animation-name:slideOutUp}
@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;
  }
}
