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

.shg-box > .shg-box-content {
  z-index: 4;
  position: relative;
  /**
   * This is part of an IE11 fallback to avoid flex introducing
   * huge amount of weird space on the bottom on the section element.
   */
  min-height: 1px;
}

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

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

.shg-box-vertical-align-center, .shg-box-vertical-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-box-vertical-align-bottom {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.shg-box-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  pointer-events: none;
}

.shg-box-video-wrapper {
  /*
    It's very important we don't create a new containing block for shg-box-video-wrapper
    Jarallax uses transforms + position: fixed to achieve it's parallaxing effect

    https://developer.mozilla.org/en-US/docs/Web/CSS/position

    position: fixed
    The element is removed from the normal document flow, and no space is created for the element in the page layout. 
    It is positioned relative to the initial containing block established by the viewport, 

    *
      except when one of its ancestors has a transform, perspective, or filter property set to something other than none 
      (see the CSS Transforms Spec), or the will-change property is set to transform, 
      in which case that ancestor behaves as the containing block. 
    *
  */

  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

#s-9560f757-8d04-434d-8f91-9c0763018e89 {
  min-height: 50px;
}








#s-9560f757-8d04-434d-8f91-9c0763018e89 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9560f757-8d04-434d-8f91-9c0763018e89.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bb3fc54f-ee90-477f-a234-48d7c58355fe {
  min-height: 50px;
}
@media (min-width: 1200px){#s-bb3fc54f-ee90-477f-a234-48d7c58355fe {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-bb3fc54f-ee90-477f-a234-48d7c58355fe {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-bb3fc54f-ee90-477f-a234-48d7c58355fe {
  
}
}@media (max-width: 767px){#s-bb3fc54f-ee90-477f-a234-48d7c58355fe {
  
}
}







#s-bb3fc54f-ee90-477f-a234-48d7c58355fe > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bb3fc54f-ee90-477f-a234-48d7c58355fe.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-024b15e9-4435-4ab9-b459-7bc3fdd0aabf {
  margin-left: 0px;
margin-right: 0px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
min-height: 0px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-024b15e9-4435-4ab9-b459-7bc3fdd0aabf {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-024b15e9-4435-4ab9-b459-7bc3fdd0aabf {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-024b15e9-4435-4ab9-b459-7bc3fdd0aabf {
  
}
}@media (max-width: 767px){#s-024b15e9-4435-4ab9-b459-7bc3fdd0aabf {
  
}
}







#s-024b15e9-4435-4ab9-b459-7bc3fdd0aabf > .shg-box-overlay {
  background-color: rgba(222, 247, 250, 1);
  opacity: 0;
}#s-024b15e9-4435-4ab9-b459-7bc3fdd0aabf.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

@media (min-width: 0px) {
[id="s-a9694bdf-6d88-42aa-9629-e6f4b32b99a3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a9694bdf-6d88-42aa-9629-e6f4b32b99a3"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-a9694bdf-6d88-42aa-9629-e6f4b32b99a3"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-a9694bdf-6d88-42aa-9629-e6f4b32b99a3"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-a9694bdf-6d88-42aa-9629-e6f4b32b99a3"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-a9694bdf-6d88-42aa-9629-e6f4b32b99a3"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-a9694bdf-6d88-42aa-9629-e6f4b32b99a3"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

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

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

#s-ebd78ab6-731e-406f-b6fb-5413f4e9adcd {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ebd78ab6-731e-406f-b6fb-5413f4e9adcd .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-1e3ddc12-3412-440d-8f1f-45e0ca219e4c {
  padding-top: 0px;
padding-left: 10px;
padding-bottom: 0px;
padding-right: 10px;
}
@media (max-width: 767px){#s-1e3ddc12-3412-440d-8f1f-45e0ca219e4c {
  
}
}
#s-38f32659-4f88-47e2-a224-46d09eb58878 {
  min-height: 50px;
}








#s-38f32659-4f88-47e2-a224-46d09eb58878 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-38f32659-4f88-47e2-a224-46d09eb58878.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2d1cabaf-a116-4f6e-889f-795af3bae4f4 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
padding-left: 20px;
padding-right: 20px;
min-height: 50px;
}








#s-2d1cabaf-a116-4f6e-889f-795af3bae4f4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2d1cabaf-a116-4f6e-889f-795af3bae4f4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shogun-tabs {
  margin: 0 !important;
  list-style: none !important;
  padding: 0 0 0 0;
  overflow: visible;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

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

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

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

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


  #s-56194c83-013c-417d-b23f-02fcc95af993 .shogun-tabs > li > .shogun-tab-box {
    background: rgba(255, 247, 247, 1);
    border: 1px solid #DDDDDD;
  }
  #s-56194c83-013c-417d-b23f-02fcc95af993 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: #F4F4F4;
    border: 1px solid rgba(231, 133, 150, 1);
  }
#s-56194c83-013c-417d-b23f-02fcc95af993 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(231, 133, 150, 1);
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: ;
}

#s-56194c83-013c-417d-b23f-02fcc95af993 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: #555;
}

#s-56194c83-013c-417d-b23f-02fcc95af993 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: #F4F4F4;
}

#s-56194c83-013c-417d-b23f-02fcc95af993 .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid rgba(231, 133, 150, 1);
}

#s-4e3eb065-693f-4e75-8baf-0b5d90361521 {
  margin-top: 10px;
margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-4e3eb065-693f-4e75-8baf-0b5d90361521"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-4e3eb065-693f-4e75-8baf-0b5d90361521"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-4e3eb065-693f-4e75-8baf-0b5d90361521"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-4e3eb065-693f-4e75-8baf-0b5d90361521"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-80ee52fa-ad34-4631-912d-870df2703a99 {
  display: none;
}
.shg-product-image-wrapper img.shogun-image,
.shogun-component img.shogun-image {
  display: inline-block;
  vertical-align: middle;
}

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

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

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

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

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

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

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

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

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

#s-65af3e68-2125-404b-85c3-1925a84e8ada {
  text-align: left;
}



.shg-c#s-65af3e68-2125-404b-85c3-1925a84e8ada .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-65af3e68-2125-404b-85c3-1925a84e8ada img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-65af3e68-2125-404b-85c3-1925a84e8ada .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-65af3e68-2125-404b-85c3-1925a84e8ada img.shogun-image {
  width: 100%;
}



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

.shg-c#s-65af3e68-2125-404b-85c3-1925a84e8ada .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-65af3e68-2125-404b-85c3-1925a84e8ada img.shogun-image {
  width: 100%;
}



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

.shg-c#s-65af3e68-2125-404b-85c3-1925a84e8ada .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-65af3e68-2125-404b-85c3-1925a84e8ada img.shogun-image {
  width: 100%;
}



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

.shg-c#s-65af3e68-2125-404b-85c3-1925a84e8ada .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-65af3e68-2125-404b-85c3-1925a84e8ada img.shogun-image {
  width: 100%;
}



}
#s-7d3368d9-446d-4fda-af5f-c86e467c013f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7d3368d9-446d-4fda-af5f-c86e467c013f .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-ff440040-f4ec-42ea-8cee-0e808a8852c5 {
  display: none;
}
#s-e9e1662e-cf35-4846-89c2-d09c0ce402d5 {
  text-align: left;
}



.shg-c#s-e9e1662e-cf35-4846-89c2-d09c0ce402d5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e9e1662e-cf35-4846-89c2-d09c0ce402d5 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-e9e1662e-cf35-4846-89c2-d09c0ce402d5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e9e1662e-cf35-4846-89c2-d09c0ce402d5 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e9e1662e-cf35-4846-89c2-d09c0ce402d5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e9e1662e-cf35-4846-89c2-d09c0ce402d5 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e9e1662e-cf35-4846-89c2-d09c0ce402d5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e9e1662e-cf35-4846-89c2-d09c0ce402d5 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e9e1662e-cf35-4846-89c2-d09c0ce402d5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e9e1662e-cf35-4846-89c2-d09c0ce402d5 img.shogun-image {
  width: 100%;
}



}
#s-ff326e8d-4ab7-4258-bccc-792c71688953 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ff326e8d-4ab7-4258-bccc-792c71688953 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-385223f5-6600-4966-b1ba-4a4f338b1626 {
  display: none;
}
#s-510da8c6-1e5d-4596-b39d-3ced9cdcd37d {
  text-align: left;
}



.shg-c#s-510da8c6-1e5d-4596-b39d-3ced9cdcd37d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-510da8c6-1e5d-4596-b39d-3ced9cdcd37d img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-510da8c6-1e5d-4596-b39d-3ced9cdcd37d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-510da8c6-1e5d-4596-b39d-3ced9cdcd37d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-510da8c6-1e5d-4596-b39d-3ced9cdcd37d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-510da8c6-1e5d-4596-b39d-3ced9cdcd37d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-510da8c6-1e5d-4596-b39d-3ced9cdcd37d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-510da8c6-1e5d-4596-b39d-3ced9cdcd37d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-510da8c6-1e5d-4596-b39d-3ced9cdcd37d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-510da8c6-1e5d-4596-b39d-3ced9cdcd37d img.shogun-image {
  width: 100%;
}



}
#s-59477b82-a7b3-4933-9b9b-e8c65d60db17 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-59477b82-a7b3-4933-9b9b-e8c65d60db17 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-576783bd-9c16-48d9-b74a-db3f64d6d7f1 {
  display: none;
}
#s-162f11b1-a98f-4214-87fc-b88cc02435bb {
  text-align: left;
}



.shg-c#s-162f11b1-a98f-4214-87fc-b88cc02435bb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-162f11b1-a98f-4214-87fc-b88cc02435bb img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-162f11b1-a98f-4214-87fc-b88cc02435bb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-162f11b1-a98f-4214-87fc-b88cc02435bb img.shogun-image {
  width: 100%;
}



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

.shg-c#s-162f11b1-a98f-4214-87fc-b88cc02435bb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-162f11b1-a98f-4214-87fc-b88cc02435bb img.shogun-image {
  width: 100%;
}



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

.shg-c#s-162f11b1-a98f-4214-87fc-b88cc02435bb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-162f11b1-a98f-4214-87fc-b88cc02435bb img.shogun-image {
  width: 100%;
}



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

.shg-c#s-162f11b1-a98f-4214-87fc-b88cc02435bb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-162f11b1-a98f-4214-87fc-b88cc02435bb img.shogun-image {
  width: 100%;
}



}
#s-72edf942-f351-4217-a053-120157ed47fa {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-72edf942-f351-4217-a053-120157ed47fa .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-4b21076d-b4f7-438a-b22e-b036ce8b7d79 {
  margin-top: 10px;
margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-4b21076d-b4f7-438a-b22e-b036ce8b7d79"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-4b21076d-b4f7-438a-b22e-b036ce8b7d79"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-4b21076d-b4f7-438a-b22e-b036ce8b7d79"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-4b21076d-b4f7-438a-b22e-b036ce8b7d79"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-755b9026-0fd4-40c1-b1dd-22eb6587514c {
  display: none;
}
#s-38f9caa1-0047-4dde-85f4-554f30d0dc38 {
  text-align: left;
}



.shg-c#s-38f9caa1-0047-4dde-85f4-554f30d0dc38 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-38f9caa1-0047-4dde-85f4-554f30d0dc38 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-38f9caa1-0047-4dde-85f4-554f30d0dc38 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-38f9caa1-0047-4dde-85f4-554f30d0dc38 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-38f9caa1-0047-4dde-85f4-554f30d0dc38 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-38f9caa1-0047-4dde-85f4-554f30d0dc38 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-38f9caa1-0047-4dde-85f4-554f30d0dc38 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-38f9caa1-0047-4dde-85f4-554f30d0dc38 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-38f9caa1-0047-4dde-85f4-554f30d0dc38 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-38f9caa1-0047-4dde-85f4-554f30d0dc38 img.shogun-image {
  width: 100%;
}



}
#s-69507fbb-0718-4c75-984c-b71aaf15fff4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-69507fbb-0718-4c75-984c-b71aaf15fff4 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-99012998-1451-45bc-bbef-19bd885acef7 {
  display: none;
}
#s-d5732fa8-4331-4c92-9dd4-fe6c9fa7117c {
  text-align: left;
}



.shg-c#s-d5732fa8-4331-4c92-9dd4-fe6c9fa7117c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d5732fa8-4331-4c92-9dd4-fe6c9fa7117c img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-d5732fa8-4331-4c92-9dd4-fe6c9fa7117c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d5732fa8-4331-4c92-9dd4-fe6c9fa7117c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d5732fa8-4331-4c92-9dd4-fe6c9fa7117c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d5732fa8-4331-4c92-9dd4-fe6c9fa7117c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d5732fa8-4331-4c92-9dd4-fe6c9fa7117c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d5732fa8-4331-4c92-9dd4-fe6c9fa7117c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d5732fa8-4331-4c92-9dd4-fe6c9fa7117c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d5732fa8-4331-4c92-9dd4-fe6c9fa7117c img.shogun-image {
  width: 100%;
}



}
#s-7e88d11d-8a8f-4922-bd67-250c299829e4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7e88d11d-8a8f-4922-bd67-250c299829e4 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-d6d2ddc3-9063-467e-bd6e-def3bcb5563a {
  display: none;
}
#s-c8ea3679-d168-43b6-858d-1185dc7f3cb0 {
  text-align: left;
}



.shg-c#s-c8ea3679-d168-43b6-858d-1185dc7f3cb0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c8ea3679-d168-43b6-858d-1185dc7f3cb0 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-c8ea3679-d168-43b6-858d-1185dc7f3cb0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c8ea3679-d168-43b6-858d-1185dc7f3cb0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c8ea3679-d168-43b6-858d-1185dc7f3cb0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c8ea3679-d168-43b6-858d-1185dc7f3cb0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c8ea3679-d168-43b6-858d-1185dc7f3cb0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c8ea3679-d168-43b6-858d-1185dc7f3cb0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c8ea3679-d168-43b6-858d-1185dc7f3cb0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c8ea3679-d168-43b6-858d-1185dc7f3cb0 img.shogun-image {
  width: 100%;
}



}
#s-94c728e6-d3c9-4829-b04d-61c7e21bb39a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-94c728e6-d3c9-4829-b04d-61c7e21bb39a .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-97849539-721c-465a-bb4b-8a0ed1538bdd {
  display: none;
}
#s-04168287-a246-4ed2-84a8-445cc393e0f5 {
  text-align: left;
}



.shg-c#s-04168287-a246-4ed2-84a8-445cc393e0f5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-04168287-a246-4ed2-84a8-445cc393e0f5 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-04168287-a246-4ed2-84a8-445cc393e0f5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-04168287-a246-4ed2-84a8-445cc393e0f5 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-04168287-a246-4ed2-84a8-445cc393e0f5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-04168287-a246-4ed2-84a8-445cc393e0f5 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-04168287-a246-4ed2-84a8-445cc393e0f5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-04168287-a246-4ed2-84a8-445cc393e0f5 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-04168287-a246-4ed2-84a8-445cc393e0f5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-04168287-a246-4ed2-84a8-445cc393e0f5 img.shogun-image {
  width: 100%;
}



}
#s-33d5a870-0f17-4ba0-b669-8ca3813bf64e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-33d5a870-0f17-4ba0-b669-8ca3813bf64e .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-3682aa6c-07bd-420f-8142-978c8fa9dc53 {
  margin-top: 10px;
margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-3682aa6c-07bd-420f-8142-978c8fa9dc53"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-3682aa6c-07bd-420f-8142-978c8fa9dc53"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-3682aa6c-07bd-420f-8142-978c8fa9dc53"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-3682aa6c-07bd-420f-8142-978c8fa9dc53"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-3f201c9d-7822-4897-8581-5f624557e136 {
  display: none;
}
#s-d26aae88-19a6-412f-a301-c8bc837299bd {
  text-align: left;
}



.shg-c#s-d26aae88-19a6-412f-a301-c8bc837299bd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d26aae88-19a6-412f-a301-c8bc837299bd img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-d26aae88-19a6-412f-a301-c8bc837299bd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d26aae88-19a6-412f-a301-c8bc837299bd img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d26aae88-19a6-412f-a301-c8bc837299bd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d26aae88-19a6-412f-a301-c8bc837299bd img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d26aae88-19a6-412f-a301-c8bc837299bd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d26aae88-19a6-412f-a301-c8bc837299bd img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d26aae88-19a6-412f-a301-c8bc837299bd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d26aae88-19a6-412f-a301-c8bc837299bd img.shogun-image {
  width: 100%;
}



}
#s-f649aa3e-97db-4ed8-b304-87bd1be0118f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f649aa3e-97db-4ed8-b304-87bd1be0118f .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-e0adf308-d005-413e-bf4a-4386b0a93c2a {
  display: none;
}
#s-e6d6de3b-b601-4b7b-b2e5-e24b5e9e3f70 {
  text-align: left;
}



.shg-c#s-e6d6de3b-b601-4b7b-b2e5-e24b5e9e3f70 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e6d6de3b-b601-4b7b-b2e5-e24b5e9e3f70 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-e6d6de3b-b601-4b7b-b2e5-e24b5e9e3f70 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e6d6de3b-b601-4b7b-b2e5-e24b5e9e3f70 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e6d6de3b-b601-4b7b-b2e5-e24b5e9e3f70 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e6d6de3b-b601-4b7b-b2e5-e24b5e9e3f70 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e6d6de3b-b601-4b7b-b2e5-e24b5e9e3f70 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e6d6de3b-b601-4b7b-b2e5-e24b5e9e3f70 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e6d6de3b-b601-4b7b-b2e5-e24b5e9e3f70 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e6d6de3b-b601-4b7b-b2e5-e24b5e9e3f70 img.shogun-image {
  width: 100%;
}



}
#s-65015f53-e93b-46e8-84c3-eba655c819eb {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-65015f53-e93b-46e8-84c3-eba655c819eb .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-5018d7f3-e525-4ec4-b621-0cdaf7f4b48e {
  display: none;
}
#s-520c606b-486a-4f78-bbbc-5bb664c7d362 {
  text-align: left;
}



.shg-c#s-520c606b-486a-4f78-bbbc-5bb664c7d362 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-520c606b-486a-4f78-bbbc-5bb664c7d362 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-520c606b-486a-4f78-bbbc-5bb664c7d362 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-520c606b-486a-4f78-bbbc-5bb664c7d362 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-520c606b-486a-4f78-bbbc-5bb664c7d362 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-520c606b-486a-4f78-bbbc-5bb664c7d362 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-520c606b-486a-4f78-bbbc-5bb664c7d362 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-520c606b-486a-4f78-bbbc-5bb664c7d362 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-520c606b-486a-4f78-bbbc-5bb664c7d362 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-520c606b-486a-4f78-bbbc-5bb664c7d362 img.shogun-image {
  width: 100%;
}



}
#s-4aca39f6-e855-4ef4-81d7-4334860793bb {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4aca39f6-e855-4ef4-81d7-4334860793bb .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-f3e83084-42d6-4097-a3a8-2ee1fb5e7913 {
  display: none;
}
#s-aa349b1f-2918-475f-944d-2d2191b876c2 {
  text-align: left;
}



.shg-c#s-aa349b1f-2918-475f-944d-2d2191b876c2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-aa349b1f-2918-475f-944d-2d2191b876c2 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-aa349b1f-2918-475f-944d-2d2191b876c2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-aa349b1f-2918-475f-944d-2d2191b876c2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-aa349b1f-2918-475f-944d-2d2191b876c2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-aa349b1f-2918-475f-944d-2d2191b876c2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-aa349b1f-2918-475f-944d-2d2191b876c2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-aa349b1f-2918-475f-944d-2d2191b876c2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-aa349b1f-2918-475f-944d-2d2191b876c2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-aa349b1f-2918-475f-944d-2d2191b876c2 img.shogun-image {
  width: 100%;
}



}
#s-675b0a1d-adff-42ad-bbb9-bfe5dfc9ca91 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-675b0a1d-adff-42ad-bbb9-bfe5dfc9ca91 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-526dbab9-9ea8-4959-8963-f27f1e5d888d {
  margin-top: 10px;
margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-526dbab9-9ea8-4959-8963-f27f1e5d888d"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-526dbab9-9ea8-4959-8963-f27f1e5d888d"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-526dbab9-9ea8-4959-8963-f27f1e5d888d"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-526dbab9-9ea8-4959-8963-f27f1e5d888d"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-b31cd54b-c11b-417b-bfe1-99f3107db3a6 {
  display: none;
}
#s-ba035741-c4d1-4f3e-940c-155e90cbde2f {
  text-align: left;
}



.shg-c#s-ba035741-c4d1-4f3e-940c-155e90cbde2f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ba035741-c4d1-4f3e-940c-155e90cbde2f img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-ba035741-c4d1-4f3e-940c-155e90cbde2f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ba035741-c4d1-4f3e-940c-155e90cbde2f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ba035741-c4d1-4f3e-940c-155e90cbde2f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ba035741-c4d1-4f3e-940c-155e90cbde2f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ba035741-c4d1-4f3e-940c-155e90cbde2f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ba035741-c4d1-4f3e-940c-155e90cbde2f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ba035741-c4d1-4f3e-940c-155e90cbde2f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ba035741-c4d1-4f3e-940c-155e90cbde2f img.shogun-image {
  width: 100%;
}



}
#s-fda6f083-48bd-480a-b761-2b76bd82a8e0 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-fda6f083-48bd-480a-b761-2b76bd82a8e0 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-fda6f083-48bd-480a-b761-2b76bd82a8e0 .shogun-heading-component h3 a {
  color: #000;
}


#s-f211b858-45fe-40ac-8d80-e15336240345 {
  display: none;
}
#s-2b98f08f-8907-4add-b149-52e9b3d762d8 {
  text-align: left;
}



.shg-c#s-2b98f08f-8907-4add-b149-52e9b3d762d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2b98f08f-8907-4add-b149-52e9b3d762d8 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-2b98f08f-8907-4add-b149-52e9b3d762d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2b98f08f-8907-4add-b149-52e9b3d762d8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-2b98f08f-8907-4add-b149-52e9b3d762d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2b98f08f-8907-4add-b149-52e9b3d762d8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-2b98f08f-8907-4add-b149-52e9b3d762d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2b98f08f-8907-4add-b149-52e9b3d762d8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-2b98f08f-8907-4add-b149-52e9b3d762d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2b98f08f-8907-4add-b149-52e9b3d762d8 img.shogun-image {
  width: 100%;
}



}
#s-561ce954-ff65-41bf-95f1-bba6cdf310b4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-561ce954-ff65-41bf-95f1-bba6cdf310b4 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-561ce954-ff65-41bf-95f1-bba6cdf310b4 .shogun-heading-component h3 a {
  color: #000;
}


#s-7dd6137c-7238-4d6c-9b1d-0a129cef9be3 {
  display: none;
}
#s-594a7497-2d22-4ad8-9a96-dd94a3da3595 {
  text-align: left;
}



.shg-c#s-594a7497-2d22-4ad8-9a96-dd94a3da3595 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-594a7497-2d22-4ad8-9a96-dd94a3da3595 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-594a7497-2d22-4ad8-9a96-dd94a3da3595 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-594a7497-2d22-4ad8-9a96-dd94a3da3595 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-594a7497-2d22-4ad8-9a96-dd94a3da3595 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-594a7497-2d22-4ad8-9a96-dd94a3da3595 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-594a7497-2d22-4ad8-9a96-dd94a3da3595 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-594a7497-2d22-4ad8-9a96-dd94a3da3595 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-594a7497-2d22-4ad8-9a96-dd94a3da3595 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-594a7497-2d22-4ad8-9a96-dd94a3da3595 img.shogun-image {
  width: 100%;
}



}
#s-5c56faf9-9430-4637-8ed5-8018b8bfbd94 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5c56faf9-9430-4637-8ed5-8018b8bfbd94 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-5c56faf9-9430-4637-8ed5-8018b8bfbd94 .shogun-heading-component h3 a {
  color: #000;
}


#s-ee76ece9-4c44-4e12-b370-510475007544 {
  display: none;
}
#s-cc46b507-991b-4c47-9a92-6fe1f3cead39 {
  text-align: left;
}



.shg-c#s-cc46b507-991b-4c47-9a92-6fe1f3cead39 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cc46b507-991b-4c47-9a92-6fe1f3cead39 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-cc46b507-991b-4c47-9a92-6fe1f3cead39 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cc46b507-991b-4c47-9a92-6fe1f3cead39 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-cc46b507-991b-4c47-9a92-6fe1f3cead39 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cc46b507-991b-4c47-9a92-6fe1f3cead39 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-cc46b507-991b-4c47-9a92-6fe1f3cead39 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cc46b507-991b-4c47-9a92-6fe1f3cead39 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-cc46b507-991b-4c47-9a92-6fe1f3cead39 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cc46b507-991b-4c47-9a92-6fe1f3cead39 img.shogun-image {
  width: 100%;
}



}
#s-914048bc-3ba4-4565-8c3a-5934e478314c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-914048bc-3ba4-4565-8c3a-5934e478314c .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-914048bc-3ba4-4565-8c3a-5934e478314c .shogun-heading-component h3 a {
  color: #000;
}


#s-1a4e082c-1762-4033-9fd7-7df9df720ebb {
  margin-top: 10px;
margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-1a4e082c-1762-4033-9fd7-7df9df720ebb"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-1a4e082c-1762-4033-9fd7-7df9df720ebb"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-1a4e082c-1762-4033-9fd7-7df9df720ebb"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-1a4e082c-1762-4033-9fd7-7df9df720ebb"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-0055b0d0-0dfe-40a7-a1cc-7be905b7eac8 {
  display: none;
}
#s-8a6e12a9-08c2-4676-83e2-236e62f49c8a {
  text-align: left;
}



.shg-c#s-8a6e12a9-08c2-4676-83e2-236e62f49c8a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8a6e12a9-08c2-4676-83e2-236e62f49c8a img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-8a6e12a9-08c2-4676-83e2-236e62f49c8a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8a6e12a9-08c2-4676-83e2-236e62f49c8a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8a6e12a9-08c2-4676-83e2-236e62f49c8a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8a6e12a9-08c2-4676-83e2-236e62f49c8a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8a6e12a9-08c2-4676-83e2-236e62f49c8a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8a6e12a9-08c2-4676-83e2-236e62f49c8a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8a6e12a9-08c2-4676-83e2-236e62f49c8a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8a6e12a9-08c2-4676-83e2-236e62f49c8a img.shogun-image {
  width: 100%;
}



}
#s-c43fc9a7-74c6-43fb-bd1e-2263a3ac3810 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c43fc9a7-74c6-43fb-bd1e-2263a3ac3810 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-e41062ad-acb5-4725-8082-75889b4cbabf {
  display: none;
}
#s-77bbd304-9d3f-43d9-b513-df7a1936a521 {
  text-align: left;
}



.shg-c#s-77bbd304-9d3f-43d9-b513-df7a1936a521 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-77bbd304-9d3f-43d9-b513-df7a1936a521 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-77bbd304-9d3f-43d9-b513-df7a1936a521 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-77bbd304-9d3f-43d9-b513-df7a1936a521 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-77bbd304-9d3f-43d9-b513-df7a1936a521 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-77bbd304-9d3f-43d9-b513-df7a1936a521 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-77bbd304-9d3f-43d9-b513-df7a1936a521 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-77bbd304-9d3f-43d9-b513-df7a1936a521 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-77bbd304-9d3f-43d9-b513-df7a1936a521 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-77bbd304-9d3f-43d9-b513-df7a1936a521 img.shogun-image {
  width: 100%;
}



}
#s-d14c09db-7929-4769-84a7-4a029b32c353 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d14c09db-7929-4769-84a7-4a029b32c353 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-7e1fc1ed-42cc-4f45-8a4c-8620f52b3319 {
  display: none;
}
#s-97e6b936-73b4-4d1c-b502-260f3066a222 {
  text-align: left;
}



.shg-c#s-97e6b936-73b4-4d1c-b502-260f3066a222 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-97e6b936-73b4-4d1c-b502-260f3066a222 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-97e6b936-73b4-4d1c-b502-260f3066a222 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-97e6b936-73b4-4d1c-b502-260f3066a222 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-97e6b936-73b4-4d1c-b502-260f3066a222 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-97e6b936-73b4-4d1c-b502-260f3066a222 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-97e6b936-73b4-4d1c-b502-260f3066a222 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-97e6b936-73b4-4d1c-b502-260f3066a222 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-97e6b936-73b4-4d1c-b502-260f3066a222 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-97e6b936-73b4-4d1c-b502-260f3066a222 img.shogun-image {
  width: 100%;
}



}
#s-9383a589-41f1-4b85-b016-7f2c5078de16 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9383a589-41f1-4b85-b016-7f2c5078de16 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-4cee2719-10d7-457f-a152-d79ba7c34721 {
  display: none;
}
#s-7e6235eb-dbb8-4a02-906a-07f21e0813dc {
  text-align: left;
}



.shg-c#s-7e6235eb-dbb8-4a02-906a-07f21e0813dc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7e6235eb-dbb8-4a02-906a-07f21e0813dc img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-7e6235eb-dbb8-4a02-906a-07f21e0813dc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7e6235eb-dbb8-4a02-906a-07f21e0813dc img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7e6235eb-dbb8-4a02-906a-07f21e0813dc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7e6235eb-dbb8-4a02-906a-07f21e0813dc img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7e6235eb-dbb8-4a02-906a-07f21e0813dc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7e6235eb-dbb8-4a02-906a-07f21e0813dc img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7e6235eb-dbb8-4a02-906a-07f21e0813dc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7e6235eb-dbb8-4a02-906a-07f21e0813dc img.shogun-image {
  width: 100%;
}



}
#s-a5bc0898-0d03-46d3-806e-7a88de324649 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a5bc0898-0d03-46d3-806e-7a88de324649 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-e2d00e22-b985-40e5-ad7c-da79bae55a10 {
  margin-top: 10px;
margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-e2d00e22-b985-40e5-ad7c-da79bae55a10"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-e2d00e22-b985-40e5-ad7c-da79bae55a10"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-e2d00e22-b985-40e5-ad7c-da79bae55a10"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-e2d00e22-b985-40e5-ad7c-da79bae55a10"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-205f8750-7c07-4253-b870-9c38bfb21dc6 {
  display: none;
}
#s-4946d997-e6a3-4240-945c-9885f03fdad5 {
  text-align: left;
}



.shg-c#s-4946d997-e6a3-4240-945c-9885f03fdad5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4946d997-e6a3-4240-945c-9885f03fdad5 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-4946d997-e6a3-4240-945c-9885f03fdad5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4946d997-e6a3-4240-945c-9885f03fdad5 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4946d997-e6a3-4240-945c-9885f03fdad5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4946d997-e6a3-4240-945c-9885f03fdad5 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4946d997-e6a3-4240-945c-9885f03fdad5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4946d997-e6a3-4240-945c-9885f03fdad5 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4946d997-e6a3-4240-945c-9885f03fdad5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4946d997-e6a3-4240-945c-9885f03fdad5 img.shogun-image {
  width: 100%;
}



}
#s-2aaedc19-7666-4ea1-af89-a5ec44e025a5 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2aaedc19-7666-4ea1-af89-a5ec44e025a5 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-d8aee94f-e881-41ea-b0b3-dfdbe1e7c25b {
  display: none;
}
#s-3ff97340-0344-4dbb-b7a1-316b6ebb82fb {
  text-align: left;
}



.shg-c#s-3ff97340-0344-4dbb-b7a1-316b6ebb82fb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3ff97340-0344-4dbb-b7a1-316b6ebb82fb img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-3ff97340-0344-4dbb-b7a1-316b6ebb82fb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3ff97340-0344-4dbb-b7a1-316b6ebb82fb img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3ff97340-0344-4dbb-b7a1-316b6ebb82fb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3ff97340-0344-4dbb-b7a1-316b6ebb82fb img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3ff97340-0344-4dbb-b7a1-316b6ebb82fb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3ff97340-0344-4dbb-b7a1-316b6ebb82fb img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3ff97340-0344-4dbb-b7a1-316b6ebb82fb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3ff97340-0344-4dbb-b7a1-316b6ebb82fb img.shogun-image {
  width: 100%;
}



}
#s-7e6651b6-4489-4045-bc2d-83d603a132f6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7e6651b6-4489-4045-bc2d-83d603a132f6 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-dcc23708-af80-4ded-936f-20829b075700 {
  display: none;
}
#s-c4e4880a-dc41-438b-a37a-e1d00a606628 {
  text-align: left;
}



.shg-c#s-c4e4880a-dc41-438b-a37a-e1d00a606628 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c4e4880a-dc41-438b-a37a-e1d00a606628 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-c4e4880a-dc41-438b-a37a-e1d00a606628 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c4e4880a-dc41-438b-a37a-e1d00a606628 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c4e4880a-dc41-438b-a37a-e1d00a606628 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c4e4880a-dc41-438b-a37a-e1d00a606628 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c4e4880a-dc41-438b-a37a-e1d00a606628 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c4e4880a-dc41-438b-a37a-e1d00a606628 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c4e4880a-dc41-438b-a37a-e1d00a606628 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c4e4880a-dc41-438b-a37a-e1d00a606628 img.shogun-image {
  width: 100%;
}



}
#s-5257c741-b5fb-4300-8709-f350c3c47e4e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5257c741-b5fb-4300-8709-f350c3c47e4e .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-9ac9ed27-433f-4c9d-bf0e-e696769711de {
  display: none;
}
#s-f44c2e52-d6f9-4d42-bd63-e3152a8231f0 {
  text-align: left;
}



.shg-c#s-f44c2e52-d6f9-4d42-bd63-e3152a8231f0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f44c2e52-d6f9-4d42-bd63-e3152a8231f0 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-f44c2e52-d6f9-4d42-bd63-e3152a8231f0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f44c2e52-d6f9-4d42-bd63-e3152a8231f0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f44c2e52-d6f9-4d42-bd63-e3152a8231f0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f44c2e52-d6f9-4d42-bd63-e3152a8231f0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f44c2e52-d6f9-4d42-bd63-e3152a8231f0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f44c2e52-d6f9-4d42-bd63-e3152a8231f0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f44c2e52-d6f9-4d42-bd63-e3152a8231f0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f44c2e52-d6f9-4d42-bd63-e3152a8231f0 img.shogun-image {
  width: 100%;
}



}
#s-6939ba4b-ae77-40f0-b96c-8a8a48a64f66 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6939ba4b-ae77-40f0-b96c-8a8a48a64f66 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-b634401f-8bae-4ec6-83ff-402ff8a596aa {
  margin-top: 10px;
margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-b634401f-8bae-4ec6-83ff-402ff8a596aa"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-b634401f-8bae-4ec6-83ff-402ff8a596aa"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-b634401f-8bae-4ec6-83ff-402ff8a596aa"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-b634401f-8bae-4ec6-83ff-402ff8a596aa"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-44ec4155-4c17-45d1-b9c8-07d20c2705dc {
  display: none;
}
#s-55967f5f-3559-4bbb-ba0a-a6a7acd8e772 {
  text-align: left;
}



.shg-c#s-55967f5f-3559-4bbb-ba0a-a6a7acd8e772 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-55967f5f-3559-4bbb-ba0a-a6a7acd8e772 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-55967f5f-3559-4bbb-ba0a-a6a7acd8e772 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-55967f5f-3559-4bbb-ba0a-a6a7acd8e772 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-55967f5f-3559-4bbb-ba0a-a6a7acd8e772 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-55967f5f-3559-4bbb-ba0a-a6a7acd8e772 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-55967f5f-3559-4bbb-ba0a-a6a7acd8e772 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-55967f5f-3559-4bbb-ba0a-a6a7acd8e772 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-55967f5f-3559-4bbb-ba0a-a6a7acd8e772 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-55967f5f-3559-4bbb-ba0a-a6a7acd8e772 img.shogun-image {
  width: 100%;
}



}
#s-9836ee5b-6849-4765-8a35-3a2f26a56c69 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9836ee5b-6849-4765-8a35-3a2f26a56c69 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-9836ee5b-6849-4765-8a35-3a2f26a56c69 .shogun-heading-component h3 a {
  color: #000;
}


#s-f9da4c5b-8703-4a0d-b5d9-65ac55c6f5f3 {
  display: none;
}
#s-0e2da86f-66e2-4fa8-a0ef-04819ba778b4 {
  text-align: left;
}



.shg-c#s-0e2da86f-66e2-4fa8-a0ef-04819ba778b4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0e2da86f-66e2-4fa8-a0ef-04819ba778b4 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-0e2da86f-66e2-4fa8-a0ef-04819ba778b4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0e2da86f-66e2-4fa8-a0ef-04819ba778b4 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0e2da86f-66e2-4fa8-a0ef-04819ba778b4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0e2da86f-66e2-4fa8-a0ef-04819ba778b4 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0e2da86f-66e2-4fa8-a0ef-04819ba778b4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0e2da86f-66e2-4fa8-a0ef-04819ba778b4 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0e2da86f-66e2-4fa8-a0ef-04819ba778b4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0e2da86f-66e2-4fa8-a0ef-04819ba778b4 img.shogun-image {
  width: 100%;
}



}
#s-69c5a188-2a35-4859-80b0-69bfa6a08d3b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-69c5a188-2a35-4859-80b0-69bfa6a08d3b .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-69c5a188-2a35-4859-80b0-69bfa6a08d3b .shogun-heading-component h3 a {
  color: #000;
}


#s-24665776-840a-48a5-bed1-6a159ce6c38a {
  display: none;
}
#s-42e7ccf3-7b8e-4c71-b7a3-bd682dfa6ad4 {
  text-align: left;
}



.shg-c#s-42e7ccf3-7b8e-4c71-b7a3-bd682dfa6ad4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-42e7ccf3-7b8e-4c71-b7a3-bd682dfa6ad4 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-42e7ccf3-7b8e-4c71-b7a3-bd682dfa6ad4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-42e7ccf3-7b8e-4c71-b7a3-bd682dfa6ad4 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-42e7ccf3-7b8e-4c71-b7a3-bd682dfa6ad4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-42e7ccf3-7b8e-4c71-b7a3-bd682dfa6ad4 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-42e7ccf3-7b8e-4c71-b7a3-bd682dfa6ad4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-42e7ccf3-7b8e-4c71-b7a3-bd682dfa6ad4 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-42e7ccf3-7b8e-4c71-b7a3-bd682dfa6ad4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-42e7ccf3-7b8e-4c71-b7a3-bd682dfa6ad4 img.shogun-image {
  width: 100%;
}



}
#s-740104c4-ade7-4fdf-a175-1991ef042856 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-740104c4-ade7-4fdf-a175-1991ef042856 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-740104c4-ade7-4fdf-a175-1991ef042856 .shogun-heading-component h3 a {
  color: #000;
}


#s-828e17e4-c826-4318-bb4e-ede62f33ef73 {
  display: none;
}
#s-a07e0e20-49ef-4ede-9281-1d66da684084 {
  text-align: left;
}



.shg-c#s-a07e0e20-49ef-4ede-9281-1d66da684084 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a07e0e20-49ef-4ede-9281-1d66da684084 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-a07e0e20-49ef-4ede-9281-1d66da684084 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a07e0e20-49ef-4ede-9281-1d66da684084 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a07e0e20-49ef-4ede-9281-1d66da684084 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a07e0e20-49ef-4ede-9281-1d66da684084 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a07e0e20-49ef-4ede-9281-1d66da684084 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a07e0e20-49ef-4ede-9281-1d66da684084 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a07e0e20-49ef-4ede-9281-1d66da684084 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a07e0e20-49ef-4ede-9281-1d66da684084 img.shogun-image {
  width: 100%;
}



}
#s-b76ecd15-e0de-41f2-a5b5-22fdd7dcd591 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b76ecd15-e0de-41f2-a5b5-22fdd7dcd591 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-b76ecd15-e0de-41f2-a5b5-22fdd7dcd591 .shogun-heading-component h3 a {
  color: #000;
}


#s-6cea233d-4a48-4417-ad3a-cedb0b5689fe {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-6cea233d-4a48-4417-ad3a-cedb0b5689fe"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-6cea233d-4a48-4417-ad3a-cedb0b5689fe"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-6cea233d-4a48-4417-ad3a-cedb0b5689fe"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-6cea233d-4a48-4417-ad3a-cedb0b5689fe"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-7739b7ba-5849-4fd7-a541-78251071498d {
  display: none;
}
#s-898b2bb0-c288-4b6a-b63d-a8f63f5f0753 {
  text-align: left;
}



.shg-c#s-898b2bb0-c288-4b6a-b63d-a8f63f5f0753 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-898b2bb0-c288-4b6a-b63d-a8f63f5f0753 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-898b2bb0-c288-4b6a-b63d-a8f63f5f0753 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-898b2bb0-c288-4b6a-b63d-a8f63f5f0753 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-898b2bb0-c288-4b6a-b63d-a8f63f5f0753 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-898b2bb0-c288-4b6a-b63d-a8f63f5f0753 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-898b2bb0-c288-4b6a-b63d-a8f63f5f0753 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-898b2bb0-c288-4b6a-b63d-a8f63f5f0753 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-898b2bb0-c288-4b6a-b63d-a8f63f5f0753 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-898b2bb0-c288-4b6a-b63d-a8f63f5f0753 img.shogun-image {
  width: 100%;
}



}
#s-9fd51778-436f-40f4-8f2b-30d6ee413c85 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9fd51778-436f-40f4-8f2b-30d6ee413c85 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-9fd51778-436f-40f4-8f2b-30d6ee413c85 .shogun-heading-component h3 a {
  color: #000;
}


#s-142a782c-6abf-48e8-8efb-3c67c773c55b {
  display: none;
}
#s-31f62026-f8e7-422a-8b79-b68dc569f3aa {
  text-align: left;
}



.shg-c#s-31f62026-f8e7-422a-8b79-b68dc569f3aa .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-31f62026-f8e7-422a-8b79-b68dc569f3aa img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-31f62026-f8e7-422a-8b79-b68dc569f3aa .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-31f62026-f8e7-422a-8b79-b68dc569f3aa img.shogun-image {
  width: 100%;
}



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

.shg-c#s-31f62026-f8e7-422a-8b79-b68dc569f3aa .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-31f62026-f8e7-422a-8b79-b68dc569f3aa img.shogun-image {
  width: 100%;
}



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

.shg-c#s-31f62026-f8e7-422a-8b79-b68dc569f3aa .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-31f62026-f8e7-422a-8b79-b68dc569f3aa img.shogun-image {
  width: 100%;
}



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

.shg-c#s-31f62026-f8e7-422a-8b79-b68dc569f3aa .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-31f62026-f8e7-422a-8b79-b68dc569f3aa img.shogun-image {
  width: 100%;
}



}
#s-338ecc7c-b8b1-4c58-adda-59d9b078b777 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-338ecc7c-b8b1-4c58-adda-59d9b078b777 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-338ecc7c-b8b1-4c58-adda-59d9b078b777 .shogun-heading-component h3 a {
  color: #000;
}


#s-48b8072d-4477-448a-9c4b-de5f0cbea584 {
  display: none;
}
#s-6444ab2c-5793-4dd5-84e4-2dfbb712998b {
  text-align: left;
}



.shg-c#s-6444ab2c-5793-4dd5-84e4-2dfbb712998b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6444ab2c-5793-4dd5-84e4-2dfbb712998b img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-6444ab2c-5793-4dd5-84e4-2dfbb712998b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6444ab2c-5793-4dd5-84e4-2dfbb712998b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6444ab2c-5793-4dd5-84e4-2dfbb712998b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6444ab2c-5793-4dd5-84e4-2dfbb712998b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6444ab2c-5793-4dd5-84e4-2dfbb712998b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6444ab2c-5793-4dd5-84e4-2dfbb712998b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6444ab2c-5793-4dd5-84e4-2dfbb712998b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6444ab2c-5793-4dd5-84e4-2dfbb712998b img.shogun-image {
  width: 100%;
}



}
#s-5cab94fc-c39a-48f6-9c94-a887a490ed67 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5cab94fc-c39a-48f6-9c94-a887a490ed67 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-5cab94fc-c39a-48f6-9c94-a887a490ed67 .shogun-heading-component h3 a {
  color: #000;
}


#s-cc49d10f-fecd-454b-8b30-86c5a7c27054 {
  display: none;
}
#s-0d58005f-a7c4-4d86-bb96-24016f630210 {
  text-align: left;
}



.shg-c#s-0d58005f-a7c4-4d86-bb96-24016f630210 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0d58005f-a7c4-4d86-bb96-24016f630210 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-0d58005f-a7c4-4d86-bb96-24016f630210 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0d58005f-a7c4-4d86-bb96-24016f630210 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0d58005f-a7c4-4d86-bb96-24016f630210 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0d58005f-a7c4-4d86-bb96-24016f630210 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0d58005f-a7c4-4d86-bb96-24016f630210 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0d58005f-a7c4-4d86-bb96-24016f630210 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0d58005f-a7c4-4d86-bb96-24016f630210 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0d58005f-a7c4-4d86-bb96-24016f630210 img.shogun-image {
  width: 100%;
}



}
#s-5f3a5ab5-1368-446b-a20f-b93dbb167431 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5f3a5ab5-1368-446b-a20f-b93dbb167431 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-5f3a5ab5-1368-446b-a20f-b93dbb167431 .shogun-heading-component h3 a {
  color: #000;
}


#s-318ecba0-2c52-4f55-8c0f-eb34b28e775e {
  display: none;
}
#s-b06d1c64-9f08-4e07-add9-19244ef53f20 {
  text-align: left;
}



.shg-c#s-b06d1c64-9f08-4e07-add9-19244ef53f20 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b06d1c64-9f08-4e07-add9-19244ef53f20 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-b06d1c64-9f08-4e07-add9-19244ef53f20 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b06d1c64-9f08-4e07-add9-19244ef53f20 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b06d1c64-9f08-4e07-add9-19244ef53f20 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b06d1c64-9f08-4e07-add9-19244ef53f20 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b06d1c64-9f08-4e07-add9-19244ef53f20 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b06d1c64-9f08-4e07-add9-19244ef53f20 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b06d1c64-9f08-4e07-add9-19244ef53f20 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b06d1c64-9f08-4e07-add9-19244ef53f20 img.shogun-image {
  width: 100%;
}



}
#s-e8c2f027-b534-47b4-852e-6e864142913d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e8c2f027-b534-47b4-852e-6e864142913d .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-e8c2f027-b534-47b4-852e-6e864142913d .shogun-heading-component h3 a {
  color: #000;
}


#s-ac5d4a29-a086-48b5-bef3-ac0504c038ae {
  display: none;
}
#s-3d88f638-7818-4180-816a-2d51e403336a {
  text-align: left;
}



.shg-c#s-3d88f638-7818-4180-816a-2d51e403336a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3d88f638-7818-4180-816a-2d51e403336a img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-3d88f638-7818-4180-816a-2d51e403336a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3d88f638-7818-4180-816a-2d51e403336a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3d88f638-7818-4180-816a-2d51e403336a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3d88f638-7818-4180-816a-2d51e403336a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3d88f638-7818-4180-816a-2d51e403336a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3d88f638-7818-4180-816a-2d51e403336a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3d88f638-7818-4180-816a-2d51e403336a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3d88f638-7818-4180-816a-2d51e403336a img.shogun-image {
  width: 100%;
}



}
#s-aea8cdb8-bf7d-43b5-a9ad-5c7af3e0239a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-aea8cdb8-bf7d-43b5-a9ad-5c7af3e0239a .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-aea8cdb8-bf7d-43b5-a9ad-5c7af3e0239a .shogun-heading-component h3 a {
  color: #000;
}


#s-1a8c7b90-89c3-435d-bde5-b927dd63bc9d {
  margin-top: 10px;
margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-1a8c7b90-89c3-435d-bde5-b927dd63bc9d"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-1a8c7b90-89c3-435d-bde5-b927dd63bc9d"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-1a8c7b90-89c3-435d-bde5-b927dd63bc9d"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-1a8c7b90-89c3-435d-bde5-b927dd63bc9d"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-89dc0beb-12ac-411b-a180-9d01e4d10dc7 {
  display: none;
}
#s-a27d9848-6e5a-4e54-b7eb-3b32033d93be {
  text-align: left;
}



.shg-c#s-a27d9848-6e5a-4e54-b7eb-3b32033d93be .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a27d9848-6e5a-4e54-b7eb-3b32033d93be img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-a27d9848-6e5a-4e54-b7eb-3b32033d93be .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a27d9848-6e5a-4e54-b7eb-3b32033d93be img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a27d9848-6e5a-4e54-b7eb-3b32033d93be .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a27d9848-6e5a-4e54-b7eb-3b32033d93be img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a27d9848-6e5a-4e54-b7eb-3b32033d93be .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a27d9848-6e5a-4e54-b7eb-3b32033d93be img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a27d9848-6e5a-4e54-b7eb-3b32033d93be .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a27d9848-6e5a-4e54-b7eb-3b32033d93be img.shogun-image {
  width: 100%;
}



}
#s-59dd2c31-b4f6-446b-b320-64360edb2a10 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-59dd2c31-b4f6-446b-b320-64360edb2a10 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-f6a7e27a-9bf7-4c6d-ac9c-f8582b966d9c {
  display: none;
}
#s-f20bd7b5-510b-46d7-9ea4-a2b152e41091 {
  text-align: left;
}



.shg-c#s-f20bd7b5-510b-46d7-9ea4-a2b152e41091 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f20bd7b5-510b-46d7-9ea4-a2b152e41091 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-f20bd7b5-510b-46d7-9ea4-a2b152e41091 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f20bd7b5-510b-46d7-9ea4-a2b152e41091 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f20bd7b5-510b-46d7-9ea4-a2b152e41091 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f20bd7b5-510b-46d7-9ea4-a2b152e41091 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f20bd7b5-510b-46d7-9ea4-a2b152e41091 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f20bd7b5-510b-46d7-9ea4-a2b152e41091 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f20bd7b5-510b-46d7-9ea4-a2b152e41091 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f20bd7b5-510b-46d7-9ea4-a2b152e41091 img.shogun-image {
  width: 100%;
}



}
#s-9ef6c85f-96fd-4b00-b535-ccbe67df668a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9ef6c85f-96fd-4b00-b535-ccbe67df668a .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-706ebd0c-90a0-4bb0-8fe2-08f2a6c604b1 {
  display: none;
}
#s-82db8656-81b6-4f89-925c-9c482014392e {
  text-align: left;
}



.shg-c#s-82db8656-81b6-4f89-925c-9c482014392e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-82db8656-81b6-4f89-925c-9c482014392e img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-82db8656-81b6-4f89-925c-9c482014392e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-82db8656-81b6-4f89-925c-9c482014392e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-82db8656-81b6-4f89-925c-9c482014392e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-82db8656-81b6-4f89-925c-9c482014392e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-82db8656-81b6-4f89-925c-9c482014392e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-82db8656-81b6-4f89-925c-9c482014392e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-82db8656-81b6-4f89-925c-9c482014392e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-82db8656-81b6-4f89-925c-9c482014392e img.shogun-image {
  width: 100%;
}



}
#s-696c1bf0-b0ad-4e4e-bdd5-f4b331103611 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-696c1bf0-b0ad-4e4e-bdd5-f4b331103611 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-eef751a2-e0e9-42f4-af3a-96cc79105f54 {
  display: none;
}
#s-92942efe-bc9b-43e0-8a05-2b46e4379338 {
  text-align: left;
}



.shg-c#s-92942efe-bc9b-43e0-8a05-2b46e4379338 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-92942efe-bc9b-43e0-8a05-2b46e4379338 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-92942efe-bc9b-43e0-8a05-2b46e4379338 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-92942efe-bc9b-43e0-8a05-2b46e4379338 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-92942efe-bc9b-43e0-8a05-2b46e4379338 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-92942efe-bc9b-43e0-8a05-2b46e4379338 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-92942efe-bc9b-43e0-8a05-2b46e4379338 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-92942efe-bc9b-43e0-8a05-2b46e4379338 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-92942efe-bc9b-43e0-8a05-2b46e4379338 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-92942efe-bc9b-43e0-8a05-2b46e4379338 img.shogun-image {
  width: 100%;
}



}
#s-8c2d13aa-cfe0-4514-9e4d-d4916d32a532 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8c2d13aa-cfe0-4514-9e4d-d4916d32a532 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-7a456f5c-ad9e-497c-a476-c9e698fbec0d {
  margin-top: 10px;
margin-left: -2%;
margin-bottom: 10px;
margin-right: -2%;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-7a456f5c-ad9e-497c-a476-c9e698fbec0d"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-7a456f5c-ad9e-497c-a476-c9e698fbec0d"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-7a456f5c-ad9e-497c-a476-c9e698fbec0d"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-7a456f5c-ad9e-497c-a476-c9e698fbec0d"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-bff52429-73d9-4289-9c63-dd3fe174aacd {
  display: none;
}
#s-0f4704a7-156f-4ee4-a5cd-d0d375e74baf {
  text-align: left;
}



.shg-c#s-0f4704a7-156f-4ee4-a5cd-d0d375e74baf .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0f4704a7-156f-4ee4-a5cd-d0d375e74baf img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-0f4704a7-156f-4ee4-a5cd-d0d375e74baf .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0f4704a7-156f-4ee4-a5cd-d0d375e74baf img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0f4704a7-156f-4ee4-a5cd-d0d375e74baf .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0f4704a7-156f-4ee4-a5cd-d0d375e74baf img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0f4704a7-156f-4ee4-a5cd-d0d375e74baf .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0f4704a7-156f-4ee4-a5cd-d0d375e74baf img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0f4704a7-156f-4ee4-a5cd-d0d375e74baf .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0f4704a7-156f-4ee4-a5cd-d0d375e74baf img.shogun-image {
  width: 100%;
}



}
#s-ac707f23-0f27-4789-941e-7e40edf910a1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ac707f23-0f27-4789-941e-7e40edf910a1 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-7c6aff88-d3ec-4142-980e-b7e62e3b5778 {
  display: none;
}
#s-84d72c2d-a774-4af5-a2a7-57023e6140fd {
  text-align: left;
}



.shg-c#s-84d72c2d-a774-4af5-a2a7-57023e6140fd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-84d72c2d-a774-4af5-a2a7-57023e6140fd img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-84d72c2d-a774-4af5-a2a7-57023e6140fd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-84d72c2d-a774-4af5-a2a7-57023e6140fd img.shogun-image {
  width: 100%;
}



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

.shg-c#s-84d72c2d-a774-4af5-a2a7-57023e6140fd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-84d72c2d-a774-4af5-a2a7-57023e6140fd img.shogun-image {
  width: 100%;
}



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

.shg-c#s-84d72c2d-a774-4af5-a2a7-57023e6140fd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-84d72c2d-a774-4af5-a2a7-57023e6140fd img.shogun-image {
  width: 100%;
}



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

.shg-c#s-84d72c2d-a774-4af5-a2a7-57023e6140fd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-84d72c2d-a774-4af5-a2a7-57023e6140fd img.shogun-image {
  width: 100%;
}



}
#s-b3f88313-60ec-4510-8364-b606ff95d247 {
  display: none;
}
#s-5c37e4f8-cf39-4577-a274-cf4aed54ec48 {
  text-align: left;
}



.shg-c#s-5c37e4f8-cf39-4577-a274-cf4aed54ec48 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5c37e4f8-cf39-4577-a274-cf4aed54ec48 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-5c37e4f8-cf39-4577-a274-cf4aed54ec48 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5c37e4f8-cf39-4577-a274-cf4aed54ec48 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5c37e4f8-cf39-4577-a274-cf4aed54ec48 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5c37e4f8-cf39-4577-a274-cf4aed54ec48 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5c37e4f8-cf39-4577-a274-cf4aed54ec48 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5c37e4f8-cf39-4577-a274-cf4aed54ec48 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5c37e4f8-cf39-4577-a274-cf4aed54ec48 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5c37e4f8-cf39-4577-a274-cf4aed54ec48 img.shogun-image {
  width: 100%;
}



}
#s-43c7064e-22aa-439d-ac53-cee29a376cd1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-43c7064e-22aa-439d-ac53-cee29a376cd1 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-6cf24595-3247-4a9a-8d0c-1273ae75f79d {
  display: none;
}
#s-d46689c0-9e07-4dc3-ba4c-894f7be26dbd {
  text-align: left;
}



.shg-c#s-d46689c0-9e07-4dc3-ba4c-894f7be26dbd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d46689c0-9e07-4dc3-ba4c-894f7be26dbd img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-d46689c0-9e07-4dc3-ba4c-894f7be26dbd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d46689c0-9e07-4dc3-ba4c-894f7be26dbd img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d46689c0-9e07-4dc3-ba4c-894f7be26dbd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d46689c0-9e07-4dc3-ba4c-894f7be26dbd img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d46689c0-9e07-4dc3-ba4c-894f7be26dbd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d46689c0-9e07-4dc3-ba4c-894f7be26dbd img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d46689c0-9e07-4dc3-ba4c-894f7be26dbd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d46689c0-9e07-4dc3-ba4c-894f7be26dbd img.shogun-image {
  width: 100%;
}



}
#s-0751d276-004e-43b0-bd45-529d0407fcf2 {
  display: none;
}
#s-08454412-3bd2-4390-b7b4-e05eec910c7d {
  text-align: left;
}



.shg-c#s-08454412-3bd2-4390-b7b4-e05eec910c7d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-08454412-3bd2-4390-b7b4-e05eec910c7d img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-08454412-3bd2-4390-b7b4-e05eec910c7d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-08454412-3bd2-4390-b7b4-e05eec910c7d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-08454412-3bd2-4390-b7b4-e05eec910c7d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-08454412-3bd2-4390-b7b4-e05eec910c7d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-08454412-3bd2-4390-b7b4-e05eec910c7d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-08454412-3bd2-4390-b7b4-e05eec910c7d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-08454412-3bd2-4390-b7b4-e05eec910c7d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-08454412-3bd2-4390-b7b4-e05eec910c7d img.shogun-image {
  width: 100%;
}



}
#s-1fb40d13-07b5-485f-924a-a176c7f3dbc8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1fb40d13-07b5-485f-924a-a176c7f3dbc8 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-3ea324ba-12c8-4976-8a9b-ed230024df6f {
  display: none;
}
#s-7b6db109-c788-4aef-8840-ae305510fb07 {
  text-align: left;
}



.shg-c#s-7b6db109-c788-4aef-8840-ae305510fb07 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7b6db109-c788-4aef-8840-ae305510fb07 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-7b6db109-c788-4aef-8840-ae305510fb07 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7b6db109-c788-4aef-8840-ae305510fb07 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7b6db109-c788-4aef-8840-ae305510fb07 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7b6db109-c788-4aef-8840-ae305510fb07 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7b6db109-c788-4aef-8840-ae305510fb07 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7b6db109-c788-4aef-8840-ae305510fb07 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7b6db109-c788-4aef-8840-ae305510fb07 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7b6db109-c788-4aef-8840-ae305510fb07 img.shogun-image {
  width: 100%;
}



}
#s-0e623f46-3d4c-456d-abe9-ecdea9eb7b4f {
  display: none;
}
#s-1ae949d6-b813-4dea-aa1a-5b469b92d4e2 {
  text-align: left;
}



.shg-c#s-1ae949d6-b813-4dea-aa1a-5b469b92d4e2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1ae949d6-b813-4dea-aa1a-5b469b92d4e2 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-1ae949d6-b813-4dea-aa1a-5b469b92d4e2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1ae949d6-b813-4dea-aa1a-5b469b92d4e2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1ae949d6-b813-4dea-aa1a-5b469b92d4e2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1ae949d6-b813-4dea-aa1a-5b469b92d4e2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1ae949d6-b813-4dea-aa1a-5b469b92d4e2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1ae949d6-b813-4dea-aa1a-5b469b92d4e2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1ae949d6-b813-4dea-aa1a-5b469b92d4e2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1ae949d6-b813-4dea-aa1a-5b469b92d4e2 img.shogun-image {
  width: 100%;
}



}
#s-c59723f9-b3a2-4944-8b63-7e355db45233 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c59723f9-b3a2-4944-8b63-7e355db45233 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-974f8c69-79c3-4db7-b568-d99c62e335b3 {
  display: none;
}
#s-d16b10f9-5427-4374-bd67-7acacd553afd {
  text-align: left;
}



.shg-c#s-d16b10f9-5427-4374-bd67-7acacd553afd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d16b10f9-5427-4374-bd67-7acacd553afd img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-d16b10f9-5427-4374-bd67-7acacd553afd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d16b10f9-5427-4374-bd67-7acacd553afd img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d16b10f9-5427-4374-bd67-7acacd553afd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d16b10f9-5427-4374-bd67-7acacd553afd img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d16b10f9-5427-4374-bd67-7acacd553afd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d16b10f9-5427-4374-bd67-7acacd553afd img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d16b10f9-5427-4374-bd67-7acacd553afd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d16b10f9-5427-4374-bd67-7acacd553afd img.shogun-image {
  width: 100%;
}



}
#s-0497bc29-3b01-4451-b823-e406a7385a8a {
  margin-top: 10px;
margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-0497bc29-3b01-4451-b823-e406a7385a8a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-0497bc29-3b01-4451-b823-e406a7385a8a"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-0497bc29-3b01-4451-b823-e406a7385a8a"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-0497bc29-3b01-4451-b823-e406a7385a8a"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-a1f01e9b-2104-445c-8a05-dde3d92c9708 {
  display: none;
}
#s-38796f7f-ca60-4a69-9495-d0da363302be {
  text-align: left;
}



.shg-c#s-38796f7f-ca60-4a69-9495-d0da363302be .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-38796f7f-ca60-4a69-9495-d0da363302be img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-38796f7f-ca60-4a69-9495-d0da363302be .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-38796f7f-ca60-4a69-9495-d0da363302be img.shogun-image {
  width: 100%;
}



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

.shg-c#s-38796f7f-ca60-4a69-9495-d0da363302be .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-38796f7f-ca60-4a69-9495-d0da363302be img.shogun-image {
  width: 100%;
}



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

.shg-c#s-38796f7f-ca60-4a69-9495-d0da363302be .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-38796f7f-ca60-4a69-9495-d0da363302be img.shogun-image {
  width: 100%;
}



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

.shg-c#s-38796f7f-ca60-4a69-9495-d0da363302be .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-38796f7f-ca60-4a69-9495-d0da363302be img.shogun-image {
  width: 100%;
}



}
#s-bf998867-cbd3-4b17-9c3c-c8ddca535176 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-bf998867-cbd3-4b17-9c3c-c8ddca535176 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-93010d03-bfbb-41a1-8444-a138a2436052 {
  display: none;
}
#s-aaf87fd5-0ff4-4765-8cbd-a2685abae585 {
  text-align: left;
}



.shg-c#s-aaf87fd5-0ff4-4765-8cbd-a2685abae585 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-aaf87fd5-0ff4-4765-8cbd-a2685abae585 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-aaf87fd5-0ff4-4765-8cbd-a2685abae585 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-aaf87fd5-0ff4-4765-8cbd-a2685abae585 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-aaf87fd5-0ff4-4765-8cbd-a2685abae585 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-aaf87fd5-0ff4-4765-8cbd-a2685abae585 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-aaf87fd5-0ff4-4765-8cbd-a2685abae585 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-aaf87fd5-0ff4-4765-8cbd-a2685abae585 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-aaf87fd5-0ff4-4765-8cbd-a2685abae585 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-aaf87fd5-0ff4-4765-8cbd-a2685abae585 img.shogun-image {
  width: 100%;
}



}
#s-e946487c-d441-445c-a0c9-942b08bb7abf {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e946487c-d441-445c-a0c9-942b08bb7abf .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-672a55cb-9475-4043-b6c8-6e5e27eb447e {
  display: none;
}
#s-26d68d8b-0f03-4a47-ba6b-7eac0ca21a8b {
  text-align: left;
}



.shg-c#s-26d68d8b-0f03-4a47-ba6b-7eac0ca21a8b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-26d68d8b-0f03-4a47-ba6b-7eac0ca21a8b img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-26d68d8b-0f03-4a47-ba6b-7eac0ca21a8b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-26d68d8b-0f03-4a47-ba6b-7eac0ca21a8b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-26d68d8b-0f03-4a47-ba6b-7eac0ca21a8b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-26d68d8b-0f03-4a47-ba6b-7eac0ca21a8b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-26d68d8b-0f03-4a47-ba6b-7eac0ca21a8b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-26d68d8b-0f03-4a47-ba6b-7eac0ca21a8b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-26d68d8b-0f03-4a47-ba6b-7eac0ca21a8b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-26d68d8b-0f03-4a47-ba6b-7eac0ca21a8b img.shogun-image {
  width: 100%;
}



}
#s-4992c4b2-e313-4db6-917e-615bd14f1a09 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4992c4b2-e313-4db6-917e-615bd14f1a09 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-cc66a8d1-6aca-4ba5-afa5-60799bd8e317 {
  display: none;
}
#s-b5404fb2-cd4d-46aa-b8fc-9deefee07a45 {
  text-align: left;
}



.shg-c#s-b5404fb2-cd4d-46aa-b8fc-9deefee07a45 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b5404fb2-cd4d-46aa-b8fc-9deefee07a45 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-b5404fb2-cd4d-46aa-b8fc-9deefee07a45 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b5404fb2-cd4d-46aa-b8fc-9deefee07a45 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b5404fb2-cd4d-46aa-b8fc-9deefee07a45 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b5404fb2-cd4d-46aa-b8fc-9deefee07a45 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b5404fb2-cd4d-46aa-b8fc-9deefee07a45 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b5404fb2-cd4d-46aa-b8fc-9deefee07a45 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b5404fb2-cd4d-46aa-b8fc-9deefee07a45 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b5404fb2-cd4d-46aa-b8fc-9deefee07a45 img.shogun-image {
  width: 100%;
}



}
#s-42df0a98-d080-42e9-895e-5ccb27516bb4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-42df0a98-d080-42e9-895e-5ccb27516bb4 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-39d6dfc8-02df-4104-9194-50d49dfedb0e {
  margin-top: 10px;
margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-39d6dfc8-02df-4104-9194-50d49dfedb0e"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-39d6dfc8-02df-4104-9194-50d49dfedb0e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-39d6dfc8-02df-4104-9194-50d49dfedb0e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-39d6dfc8-02df-4104-9194-50d49dfedb0e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-ef266d39-a8ac-4dcb-8a0a-8c099a1e0a87 {
  display: none;
}
#s-5e1f0cf8-0031-49b4-a9fc-bcf037e82a2d {
  text-align: left;
}



.shg-c#s-5e1f0cf8-0031-49b4-a9fc-bcf037e82a2d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5e1f0cf8-0031-49b4-a9fc-bcf037e82a2d img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-5e1f0cf8-0031-49b4-a9fc-bcf037e82a2d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5e1f0cf8-0031-49b4-a9fc-bcf037e82a2d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5e1f0cf8-0031-49b4-a9fc-bcf037e82a2d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5e1f0cf8-0031-49b4-a9fc-bcf037e82a2d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5e1f0cf8-0031-49b4-a9fc-bcf037e82a2d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5e1f0cf8-0031-49b4-a9fc-bcf037e82a2d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5e1f0cf8-0031-49b4-a9fc-bcf037e82a2d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5e1f0cf8-0031-49b4-a9fc-bcf037e82a2d img.shogun-image {
  width: 100%;
}



}
#s-f10f1330-e7ff-4b31-b2d5-fc21e7a6f5bf {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f10f1330-e7ff-4b31-b2d5-fc21e7a6f5bf .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-96a49961-55d0-4da9-90be-bf848ba0cc6b {
  display: none;
}
#s-c42fce73-4b55-4883-997c-c25a8d57ce65 {
  text-align: left;
}



.shg-c#s-c42fce73-4b55-4883-997c-c25a8d57ce65 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c42fce73-4b55-4883-997c-c25a8d57ce65 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-c42fce73-4b55-4883-997c-c25a8d57ce65 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c42fce73-4b55-4883-997c-c25a8d57ce65 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c42fce73-4b55-4883-997c-c25a8d57ce65 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c42fce73-4b55-4883-997c-c25a8d57ce65 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c42fce73-4b55-4883-997c-c25a8d57ce65 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c42fce73-4b55-4883-997c-c25a8d57ce65 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c42fce73-4b55-4883-997c-c25a8d57ce65 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c42fce73-4b55-4883-997c-c25a8d57ce65 img.shogun-image {
  width: 100%;
}



}
#s-eb0b3fb4-e3e5-4af3-8603-e5837a81c164 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-eb0b3fb4-e3e5-4af3-8603-e5837a81c164 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-e1b46748-34a9-4361-a1d6-da6680ae6445 {
  display: none;
}
#s-fd5a5fc5-21e5-4828-82d4-4f68c0eb666c {
  text-align: left;
}



.shg-c#s-fd5a5fc5-21e5-4828-82d4-4f68c0eb666c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fd5a5fc5-21e5-4828-82d4-4f68c0eb666c img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-fd5a5fc5-21e5-4828-82d4-4f68c0eb666c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fd5a5fc5-21e5-4828-82d4-4f68c0eb666c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-fd5a5fc5-21e5-4828-82d4-4f68c0eb666c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fd5a5fc5-21e5-4828-82d4-4f68c0eb666c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-fd5a5fc5-21e5-4828-82d4-4f68c0eb666c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fd5a5fc5-21e5-4828-82d4-4f68c0eb666c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-fd5a5fc5-21e5-4828-82d4-4f68c0eb666c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fd5a5fc5-21e5-4828-82d4-4f68c0eb666c img.shogun-image {
  width: 100%;
}



}
#s-b13fb53b-a2d1-4087-a827-e3c1c6d4dbb2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b13fb53b-a2d1-4087-a827-e3c1c6d4dbb2 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-e77a7c2b-f1bc-44aa-8a66-642fc2aa3252 {
  display: none;
}
#s-813d5751-a44f-4a2d-ac93-beac1849baba {
  text-align: left;
}



.shg-c#s-813d5751-a44f-4a2d-ac93-beac1849baba .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-813d5751-a44f-4a2d-ac93-beac1849baba img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-813d5751-a44f-4a2d-ac93-beac1849baba .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-813d5751-a44f-4a2d-ac93-beac1849baba img.shogun-image {
  width: 100%;
}



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

.shg-c#s-813d5751-a44f-4a2d-ac93-beac1849baba .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-813d5751-a44f-4a2d-ac93-beac1849baba img.shogun-image {
  width: 100%;
}



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

.shg-c#s-813d5751-a44f-4a2d-ac93-beac1849baba .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-813d5751-a44f-4a2d-ac93-beac1849baba img.shogun-image {
  width: 100%;
}



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

.shg-c#s-813d5751-a44f-4a2d-ac93-beac1849baba .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-813d5751-a44f-4a2d-ac93-beac1849baba img.shogun-image {
  width: 100%;
}



}
#s-154e718b-f6df-4a27-ae67-256225454efa {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-154e718b-f6df-4a27-ae67-256225454efa .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-47659f60-ae93-407b-83b3-9731d4afb784 {
  margin-top: 10px;
margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-47659f60-ae93-407b-83b3-9731d4afb784"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-47659f60-ae93-407b-83b3-9731d4afb784"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-47659f60-ae93-407b-83b3-9731d4afb784"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-47659f60-ae93-407b-83b3-9731d4afb784"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-69eac31d-27e7-4ab3-81be-186e3f92f3df {
  display: none;
}
#s-1e9d986e-74ec-4ffa-aa70-780ab00c4c3d {
  text-align: left;
}



.shg-c#s-1e9d986e-74ec-4ffa-aa70-780ab00c4c3d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1e9d986e-74ec-4ffa-aa70-780ab00c4c3d img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-1e9d986e-74ec-4ffa-aa70-780ab00c4c3d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1e9d986e-74ec-4ffa-aa70-780ab00c4c3d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1e9d986e-74ec-4ffa-aa70-780ab00c4c3d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1e9d986e-74ec-4ffa-aa70-780ab00c4c3d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1e9d986e-74ec-4ffa-aa70-780ab00c4c3d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1e9d986e-74ec-4ffa-aa70-780ab00c4c3d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1e9d986e-74ec-4ffa-aa70-780ab00c4c3d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1e9d986e-74ec-4ffa-aa70-780ab00c4c3d img.shogun-image {
  width: 100%;
}



}
#s-86b508b4-2a58-40aa-b97d-7a3588c77703 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-86b508b4-2a58-40aa-b97d-7a3588c77703 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-86b508b4-2a58-40aa-b97d-7a3588c77703 .shogun-heading-component h3 a {
  color: #000;
}


#s-cfc9edd1-fb94-4fda-8de6-064446d79524 {
  display: none;
}
#s-4885e25f-d52c-45dd-9c01-e83caaab4a54 {
  text-align: left;
}



.shg-c#s-4885e25f-d52c-45dd-9c01-e83caaab4a54 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4885e25f-d52c-45dd-9c01-e83caaab4a54 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-4885e25f-d52c-45dd-9c01-e83caaab4a54 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4885e25f-d52c-45dd-9c01-e83caaab4a54 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4885e25f-d52c-45dd-9c01-e83caaab4a54 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4885e25f-d52c-45dd-9c01-e83caaab4a54 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4885e25f-d52c-45dd-9c01-e83caaab4a54 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4885e25f-d52c-45dd-9c01-e83caaab4a54 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4885e25f-d52c-45dd-9c01-e83caaab4a54 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4885e25f-d52c-45dd-9c01-e83caaab4a54 img.shogun-image {
  width: 100%;
}



}
#s-306ffa67-88e4-4383-8403-5d5b87a71996 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-306ffa67-88e4-4383-8403-5d5b87a71996 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-306ffa67-88e4-4383-8403-5d5b87a71996 .shogun-heading-component h3 a {
  color: #000;
}


#s-f97fbe77-d71c-4d2c-8d22-1b5efc08403d {
  display: none;
}
#s-ec57d13d-9c78-4d8f-85a4-cd770df46a36 {
  text-align: left;
}



.shg-c#s-ec57d13d-9c78-4d8f-85a4-cd770df46a36 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ec57d13d-9c78-4d8f-85a4-cd770df46a36 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-ec57d13d-9c78-4d8f-85a4-cd770df46a36 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ec57d13d-9c78-4d8f-85a4-cd770df46a36 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ec57d13d-9c78-4d8f-85a4-cd770df46a36 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ec57d13d-9c78-4d8f-85a4-cd770df46a36 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ec57d13d-9c78-4d8f-85a4-cd770df46a36 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ec57d13d-9c78-4d8f-85a4-cd770df46a36 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ec57d13d-9c78-4d8f-85a4-cd770df46a36 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ec57d13d-9c78-4d8f-85a4-cd770df46a36 img.shogun-image {
  width: 100%;
}



}
#s-13a5cfce-cb53-4d33-8a7c-0bed3967efc7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-13a5cfce-cb53-4d33-8a7c-0bed3967efc7 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-13a5cfce-cb53-4d33-8a7c-0bed3967efc7 .shogun-heading-component h3 a {
  color: #000;
}


#s-5758b9f7-148c-4af2-8281-05fe3338924e {
  display: none;
}
#s-66afe122-5bdb-4c33-bb9b-d421320a7c6a {
  text-align: left;
}



.shg-c#s-66afe122-5bdb-4c33-bb9b-d421320a7c6a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-66afe122-5bdb-4c33-bb9b-d421320a7c6a img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-66afe122-5bdb-4c33-bb9b-d421320a7c6a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-66afe122-5bdb-4c33-bb9b-d421320a7c6a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-66afe122-5bdb-4c33-bb9b-d421320a7c6a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-66afe122-5bdb-4c33-bb9b-d421320a7c6a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-66afe122-5bdb-4c33-bb9b-d421320a7c6a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-66afe122-5bdb-4c33-bb9b-d421320a7c6a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-66afe122-5bdb-4c33-bb9b-d421320a7c6a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-66afe122-5bdb-4c33-bb9b-d421320a7c6a img.shogun-image {
  width: 100%;
}



}
#s-54881407-107b-47a9-a58c-2cd0239e5c7d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-54881407-107b-47a9-a58c-2cd0239e5c7d .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-54881407-107b-47a9-a58c-2cd0239e5c7d .shogun-heading-component h3 a {
  color: #000;
}


#s-be1a3e24-3112-4113-af0a-e09365e30f61 {
  margin-top: 10px;
margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-be1a3e24-3112-4113-af0a-e09365e30f61"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-be1a3e24-3112-4113-af0a-e09365e30f61"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-be1a3e24-3112-4113-af0a-e09365e30f61"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-be1a3e24-3112-4113-af0a-e09365e30f61"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-02d55831-4610-42db-be44-2e098c3a5c5c {
  display: none;
}
#s-16f08800-803a-4fe4-87f0-7cf0bf0f5d65 {
  text-align: left;
}



.shg-c#s-16f08800-803a-4fe4-87f0-7cf0bf0f5d65 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-16f08800-803a-4fe4-87f0-7cf0bf0f5d65 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-16f08800-803a-4fe4-87f0-7cf0bf0f5d65 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-16f08800-803a-4fe4-87f0-7cf0bf0f5d65 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-16f08800-803a-4fe4-87f0-7cf0bf0f5d65 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-16f08800-803a-4fe4-87f0-7cf0bf0f5d65 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-16f08800-803a-4fe4-87f0-7cf0bf0f5d65 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-16f08800-803a-4fe4-87f0-7cf0bf0f5d65 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-16f08800-803a-4fe4-87f0-7cf0bf0f5d65 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-16f08800-803a-4fe4-87f0-7cf0bf0f5d65 img.shogun-image {
  width: 100%;
}



}
#s-de100156-8756-4a50-915c-45e447e9aacf {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-de100156-8756-4a50-915c-45e447e9aacf .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-0765d9a0-4c5e-405b-8aa6-db32b8fc8079 {
  display: none;
}
#s-fbb5d346-c3eb-4fa9-baeb-c43c42d18474 {
  text-align: left;
}



.shg-c#s-fbb5d346-c3eb-4fa9-baeb-c43c42d18474 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fbb5d346-c3eb-4fa9-baeb-c43c42d18474 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-fbb5d346-c3eb-4fa9-baeb-c43c42d18474 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fbb5d346-c3eb-4fa9-baeb-c43c42d18474 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-fbb5d346-c3eb-4fa9-baeb-c43c42d18474 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fbb5d346-c3eb-4fa9-baeb-c43c42d18474 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-fbb5d346-c3eb-4fa9-baeb-c43c42d18474 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fbb5d346-c3eb-4fa9-baeb-c43c42d18474 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-fbb5d346-c3eb-4fa9-baeb-c43c42d18474 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fbb5d346-c3eb-4fa9-baeb-c43c42d18474 img.shogun-image {
  width: 100%;
}



}
#s-a1c27f11-abe2-4521-ab27-34f4c77c3b1c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a1c27f11-abe2-4521-ab27-34f4c77c3b1c .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-87c5c159-c804-4b6d-9f5e-f61e8a6976f9 {
  display: none;
}
#s-a7889dee-d86a-4864-9620-7ded8d5a7ed9 {
  text-align: left;
}



.shg-c#s-a7889dee-d86a-4864-9620-7ded8d5a7ed9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a7889dee-d86a-4864-9620-7ded8d5a7ed9 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-a7889dee-d86a-4864-9620-7ded8d5a7ed9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a7889dee-d86a-4864-9620-7ded8d5a7ed9 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a7889dee-d86a-4864-9620-7ded8d5a7ed9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a7889dee-d86a-4864-9620-7ded8d5a7ed9 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a7889dee-d86a-4864-9620-7ded8d5a7ed9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a7889dee-d86a-4864-9620-7ded8d5a7ed9 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a7889dee-d86a-4864-9620-7ded8d5a7ed9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a7889dee-d86a-4864-9620-7ded8d5a7ed9 img.shogun-image {
  width: 100%;
}



}
#s-202d4a2c-fccf-4957-b80c-e7863c709e59 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-202d4a2c-fccf-4957-b80c-e7863c709e59 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-c17f820a-1082-4469-8f39-1c52af4f9015 {
  display: none;
}
#s-9308f56b-2d47-4920-bb39-115faf74766d {
  text-align: left;
}



.shg-c#s-9308f56b-2d47-4920-bb39-115faf74766d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9308f56b-2d47-4920-bb39-115faf74766d img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-9308f56b-2d47-4920-bb39-115faf74766d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9308f56b-2d47-4920-bb39-115faf74766d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9308f56b-2d47-4920-bb39-115faf74766d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9308f56b-2d47-4920-bb39-115faf74766d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9308f56b-2d47-4920-bb39-115faf74766d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9308f56b-2d47-4920-bb39-115faf74766d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9308f56b-2d47-4920-bb39-115faf74766d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9308f56b-2d47-4920-bb39-115faf74766d img.shogun-image {
  width: 100%;
}



}
#s-bbeb72ab-6e44-4698-87b6-a4d741d5dc03 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-bbeb72ab-6e44-4698-87b6-a4d741d5dc03 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-543e8fa0-0785-4200-96a8-455bc9008147 {
  margin-top: 10px;
margin-left: -2%;
margin-bottom: 10px;
margin-right: -2%;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-543e8fa0-0785-4200-96a8-455bc9008147"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-543e8fa0-0785-4200-96a8-455bc9008147"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-543e8fa0-0785-4200-96a8-455bc9008147"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-543e8fa0-0785-4200-96a8-455bc9008147"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-5c64e693-640f-4803-b4de-6c41d0116ab9 {
  display: none;
}
#s-38292dc4-0e44-4356-9c63-37dc2ebfc60a {
  text-align: left;
}



.shg-c#s-38292dc4-0e44-4356-9c63-37dc2ebfc60a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-38292dc4-0e44-4356-9c63-37dc2ebfc60a img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-38292dc4-0e44-4356-9c63-37dc2ebfc60a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-38292dc4-0e44-4356-9c63-37dc2ebfc60a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-38292dc4-0e44-4356-9c63-37dc2ebfc60a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-38292dc4-0e44-4356-9c63-37dc2ebfc60a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-38292dc4-0e44-4356-9c63-37dc2ebfc60a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-38292dc4-0e44-4356-9c63-37dc2ebfc60a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-38292dc4-0e44-4356-9c63-37dc2ebfc60a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-38292dc4-0e44-4356-9c63-37dc2ebfc60a img.shogun-image {
  width: 100%;
}



}
#s-4073c746-f91c-4137-8fe0-b62e674c62a8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4073c746-f91c-4137-8fe0-b62e674c62a8 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-273e2bf2-5ce2-4dd3-9894-244adc9d5e20 {
  display: none;
}
#s-d4531726-7611-45b1-83de-ea6490039a38 {
  text-align: left;
}



.shg-c#s-d4531726-7611-45b1-83de-ea6490039a38 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d4531726-7611-45b1-83de-ea6490039a38 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-d4531726-7611-45b1-83de-ea6490039a38 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d4531726-7611-45b1-83de-ea6490039a38 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d4531726-7611-45b1-83de-ea6490039a38 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d4531726-7611-45b1-83de-ea6490039a38 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d4531726-7611-45b1-83de-ea6490039a38 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d4531726-7611-45b1-83de-ea6490039a38 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d4531726-7611-45b1-83de-ea6490039a38 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d4531726-7611-45b1-83de-ea6490039a38 img.shogun-image {
  width: 100%;
}



}
#s-145381ec-0916-4627-8c6e-437e84bf4c75 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-145381ec-0916-4627-8c6e-437e84bf4c75 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-c16dfa92-6c12-4c14-aa48-b38a964930e6 {
  display: none;
}
#s-c0ccac0c-ba04-4c6f-811a-9f0bbfe0a99a {
  text-align: left;
}



.shg-c#s-c0ccac0c-ba04-4c6f-811a-9f0bbfe0a99a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c0ccac0c-ba04-4c6f-811a-9f0bbfe0a99a img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-c0ccac0c-ba04-4c6f-811a-9f0bbfe0a99a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c0ccac0c-ba04-4c6f-811a-9f0bbfe0a99a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c0ccac0c-ba04-4c6f-811a-9f0bbfe0a99a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c0ccac0c-ba04-4c6f-811a-9f0bbfe0a99a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c0ccac0c-ba04-4c6f-811a-9f0bbfe0a99a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c0ccac0c-ba04-4c6f-811a-9f0bbfe0a99a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c0ccac0c-ba04-4c6f-811a-9f0bbfe0a99a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c0ccac0c-ba04-4c6f-811a-9f0bbfe0a99a img.shogun-image {
  width: 100%;
}



}
#s-d1d87d14-2367-4fd6-a66b-912c12d828e0 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d1d87d14-2367-4fd6-a66b-912c12d828e0 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-79cc38b4-e4d9-4005-8e75-165c679dd0f1 {
  display: none;
}
#s-cdbe4b60-daa5-4e03-bc9a-acbcabaea5d8 {
  text-align: left;
}



.shg-c#s-cdbe4b60-daa5-4e03-bc9a-acbcabaea5d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cdbe4b60-daa5-4e03-bc9a-acbcabaea5d8 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-cdbe4b60-daa5-4e03-bc9a-acbcabaea5d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cdbe4b60-daa5-4e03-bc9a-acbcabaea5d8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-cdbe4b60-daa5-4e03-bc9a-acbcabaea5d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cdbe4b60-daa5-4e03-bc9a-acbcabaea5d8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-cdbe4b60-daa5-4e03-bc9a-acbcabaea5d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cdbe4b60-daa5-4e03-bc9a-acbcabaea5d8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-cdbe4b60-daa5-4e03-bc9a-acbcabaea5d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cdbe4b60-daa5-4e03-bc9a-acbcabaea5d8 img.shogun-image {
  width: 100%;
}



}
#s-1846e524-b305-4df7-84d7-03ca8113ee0f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1846e524-b305-4df7-84d7-03ca8113ee0f .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-9f07859c-5017-4fe8-82f1-c1266397d939 {
  margin-top: 10px;
margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-9f07859c-5017-4fe8-82f1-c1266397d939"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-9f07859c-5017-4fe8-82f1-c1266397d939"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-9f07859c-5017-4fe8-82f1-c1266397d939"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-9f07859c-5017-4fe8-82f1-c1266397d939"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-f94440ce-6d2a-4c9a-b139-5548d340b498 {
  display: none;
}
#s-cd8d502a-6338-4114-b319-a484cb19bbce {
  text-align: left;
}



.shg-c#s-cd8d502a-6338-4114-b319-a484cb19bbce .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cd8d502a-6338-4114-b319-a484cb19bbce img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-cd8d502a-6338-4114-b319-a484cb19bbce .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cd8d502a-6338-4114-b319-a484cb19bbce img.shogun-image {
  width: 100%;
}



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

.shg-c#s-cd8d502a-6338-4114-b319-a484cb19bbce .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cd8d502a-6338-4114-b319-a484cb19bbce img.shogun-image {
  width: 100%;
}



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

.shg-c#s-cd8d502a-6338-4114-b319-a484cb19bbce .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cd8d502a-6338-4114-b319-a484cb19bbce img.shogun-image {
  width: 100%;
}



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

.shg-c#s-cd8d502a-6338-4114-b319-a484cb19bbce .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cd8d502a-6338-4114-b319-a484cb19bbce img.shogun-image {
  width: 100%;
}



}
#s-85db9218-dac5-4686-89f2-96137f28f24c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-85db9218-dac5-4686-89f2-96137f28f24c .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-85db9218-dac5-4686-89f2-96137f28f24c .shogun-heading-component h3 a {
  color: #000;
}


#s-47cccb24-920a-4e73-87fd-8501b8360127 {
  display: none;
}
#s-330fdb50-2a23-40cf-80e2-b939b34c47f9 {
  text-align: left;
}



.shg-c#s-330fdb50-2a23-40cf-80e2-b939b34c47f9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-330fdb50-2a23-40cf-80e2-b939b34c47f9 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-330fdb50-2a23-40cf-80e2-b939b34c47f9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-330fdb50-2a23-40cf-80e2-b939b34c47f9 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-330fdb50-2a23-40cf-80e2-b939b34c47f9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-330fdb50-2a23-40cf-80e2-b939b34c47f9 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-330fdb50-2a23-40cf-80e2-b939b34c47f9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-330fdb50-2a23-40cf-80e2-b939b34c47f9 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-330fdb50-2a23-40cf-80e2-b939b34c47f9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-330fdb50-2a23-40cf-80e2-b939b34c47f9 img.shogun-image {
  width: 100%;
}



}
#s-8e3a2e57-e358-42d0-8a93-3939bcdecc79 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8e3a2e57-e358-42d0-8a93-3939bcdecc79 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-8e3a2e57-e358-42d0-8a93-3939bcdecc79 .shogun-heading-component h3 a {
  color: #000;
}


#s-1f64b8a0-0658-4ea2-9d74-c32f8ff0f7cd {
  display: none;
}
#s-f689c52a-8593-4b26-9ad1-7fdd0effecb6 {
  text-align: left;
}



.shg-c#s-f689c52a-8593-4b26-9ad1-7fdd0effecb6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f689c52a-8593-4b26-9ad1-7fdd0effecb6 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-f689c52a-8593-4b26-9ad1-7fdd0effecb6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f689c52a-8593-4b26-9ad1-7fdd0effecb6 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f689c52a-8593-4b26-9ad1-7fdd0effecb6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f689c52a-8593-4b26-9ad1-7fdd0effecb6 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f689c52a-8593-4b26-9ad1-7fdd0effecb6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f689c52a-8593-4b26-9ad1-7fdd0effecb6 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f689c52a-8593-4b26-9ad1-7fdd0effecb6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f689c52a-8593-4b26-9ad1-7fdd0effecb6 img.shogun-image {
  width: 100%;
}



}
#s-ad084597-fe2b-465d-bd87-e88a9ffb7f61 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ad084597-fe2b-465d-bd87-e88a9ffb7f61 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-ad084597-fe2b-465d-bd87-e88a9ffb7f61 .shogun-heading-component h3 a {
  color: #000;
}


#s-c9558c0b-91ae-4d72-ae5f-393dbd162ab1 {
  display: none;
}
#s-c8e522bf-54d3-4ce0-b787-42862777617a {
  text-align: left;
}



.shg-c#s-c8e522bf-54d3-4ce0-b787-42862777617a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c8e522bf-54d3-4ce0-b787-42862777617a img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-c8e522bf-54d3-4ce0-b787-42862777617a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c8e522bf-54d3-4ce0-b787-42862777617a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c8e522bf-54d3-4ce0-b787-42862777617a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c8e522bf-54d3-4ce0-b787-42862777617a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c8e522bf-54d3-4ce0-b787-42862777617a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c8e522bf-54d3-4ce0-b787-42862777617a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c8e522bf-54d3-4ce0-b787-42862777617a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c8e522bf-54d3-4ce0-b787-42862777617a img.shogun-image {
  width: 100%;
}



}
#s-4f54f748-56a3-4c48-9bcc-700e5f55ddb3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4f54f748-56a3-4c48-9bcc-700e5f55ddb3 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-4f54f748-56a3-4c48-9bcc-700e5f55ddb3 .shogun-heading-component h3 a {
  color: #000;
}


#s-86f6d493-a9d8-4220-9b88-ed50c8c08a05 {
  min-height: 50px;
}








#s-86f6d493-a9d8-4220-9b88-ed50c8c08a05 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-86f6d493-a9d8-4220-9b88-ed50c8c08a05.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-78eba124-b4d1-4c4b-bb54-00517f9a0348 {
  margin-top: 10px;
margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 0%;
padding-right: 0%;
}

@media (min-width: 0px) {
[id="s-78eba124-b4d1-4c4b-bb54-00517f9a0348"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-78eba124-b4d1-4c4b-bb54-00517f9a0348"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-78eba124-b4d1-4c4b-bb54-00517f9a0348"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-78eba124-b4d1-4c4b-bb54-00517f9a0348"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-dd37fcba-a0b7-427d-9fc0-d6fd95716ecd {
  display: none;
}
#s-81a68986-6705-48a3-85c6-6689a5556435 {
  text-align: left;
}



.shg-c#s-81a68986-6705-48a3-85c6-6689a5556435 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-81a68986-6705-48a3-85c6-6689a5556435 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-81a68986-6705-48a3-85c6-6689a5556435 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-81a68986-6705-48a3-85c6-6689a5556435 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-81a68986-6705-48a3-85c6-6689a5556435 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-81a68986-6705-48a3-85c6-6689a5556435 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-81a68986-6705-48a3-85c6-6689a5556435 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-81a68986-6705-48a3-85c6-6689a5556435 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-81a68986-6705-48a3-85c6-6689a5556435 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-81a68986-6705-48a3-85c6-6689a5556435 img.shogun-image {
  width: 100%;
}



}
#s-bfd23603-6924-4356-8585-0fc70996db2f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-bfd23603-6924-4356-8585-0fc70996db2f .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-24a21415-1e2d-4316-98d8-a496f993921c {
  display: none;
}
#s-6c932af2-556b-4dec-a495-8e5f83f8a685 {
  text-align: left;
}



.shg-c#s-6c932af2-556b-4dec-a495-8e5f83f8a685 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6c932af2-556b-4dec-a495-8e5f83f8a685 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-6c932af2-556b-4dec-a495-8e5f83f8a685 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6c932af2-556b-4dec-a495-8e5f83f8a685 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6c932af2-556b-4dec-a495-8e5f83f8a685 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6c932af2-556b-4dec-a495-8e5f83f8a685 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6c932af2-556b-4dec-a495-8e5f83f8a685 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6c932af2-556b-4dec-a495-8e5f83f8a685 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6c932af2-556b-4dec-a495-8e5f83f8a685 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6c932af2-556b-4dec-a495-8e5f83f8a685 img.shogun-image {
  width: 100%;
}



}
#s-98a646b7-9d7d-41d6-8882-9092e3afe518 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-98a646b7-9d7d-41d6-8882-9092e3afe518 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-51019413-8adf-4a23-a797-51e5fa2c7dd3 {
  display: none;
}
#s-68c19230-2e56-4f8a-9b6a-d354f391327f {
  text-align: left;
}



.shg-c#s-68c19230-2e56-4f8a-9b6a-d354f391327f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-68c19230-2e56-4f8a-9b6a-d354f391327f img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-68c19230-2e56-4f8a-9b6a-d354f391327f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-68c19230-2e56-4f8a-9b6a-d354f391327f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-68c19230-2e56-4f8a-9b6a-d354f391327f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-68c19230-2e56-4f8a-9b6a-d354f391327f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-68c19230-2e56-4f8a-9b6a-d354f391327f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-68c19230-2e56-4f8a-9b6a-d354f391327f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-68c19230-2e56-4f8a-9b6a-d354f391327f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-68c19230-2e56-4f8a-9b6a-d354f391327f img.shogun-image {
  width: 100%;
}



}
#s-0dd3553b-ea2a-41f4-8234-92d19df740a7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0dd3553b-ea2a-41f4-8234-92d19df740a7 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-2fe9de21-adf6-4c8a-8d97-0106308dc181 {
  display: none;
}
#s-c8569f50-6a52-473a-a567-9193807cfbe3 {
  text-align: left;
}



.shg-c#s-c8569f50-6a52-473a-a567-9193807cfbe3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c8569f50-6a52-473a-a567-9193807cfbe3 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-c8569f50-6a52-473a-a567-9193807cfbe3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c8569f50-6a52-473a-a567-9193807cfbe3 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c8569f50-6a52-473a-a567-9193807cfbe3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c8569f50-6a52-473a-a567-9193807cfbe3 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c8569f50-6a52-473a-a567-9193807cfbe3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c8569f50-6a52-473a-a567-9193807cfbe3 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c8569f50-6a52-473a-a567-9193807cfbe3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c8569f50-6a52-473a-a567-9193807cfbe3 img.shogun-image {
  width: 100%;
}



}
#s-94cc564a-4d42-4305-add7-d2611ee5fe13 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-94cc564a-4d42-4305-add7-d2611ee5fe13 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-b61aaf30-fe87-496f-b1f8-db9a50dfa02f {
  display: none;
}
#s-77e22317-4cb6-4095-8c8b-56c23096c622 {
  text-align: left;
}



.shg-c#s-77e22317-4cb6-4095-8c8b-56c23096c622 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-77e22317-4cb6-4095-8c8b-56c23096c622 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-77e22317-4cb6-4095-8c8b-56c23096c622 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-77e22317-4cb6-4095-8c8b-56c23096c622 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-77e22317-4cb6-4095-8c8b-56c23096c622 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-77e22317-4cb6-4095-8c8b-56c23096c622 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-77e22317-4cb6-4095-8c8b-56c23096c622 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-77e22317-4cb6-4095-8c8b-56c23096c622 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-77e22317-4cb6-4095-8c8b-56c23096c622 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-77e22317-4cb6-4095-8c8b-56c23096c622 img.shogun-image {
  width: 100%;
}



}
#s-7bbb4703-d56c-4af4-95a1-2555b28fa977 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7bbb4703-d56c-4af4-95a1-2555b28fa977 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-688a7d15-d4b3-4c09-96cf-75a914241ec1 {
  display: none;
}
#s-3742e983-2390-4c40-b83e-99aa0a1d8ae8 {
  text-align: left;
}



.shg-c#s-3742e983-2390-4c40-b83e-99aa0a1d8ae8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3742e983-2390-4c40-b83e-99aa0a1d8ae8 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-3742e983-2390-4c40-b83e-99aa0a1d8ae8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3742e983-2390-4c40-b83e-99aa0a1d8ae8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3742e983-2390-4c40-b83e-99aa0a1d8ae8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3742e983-2390-4c40-b83e-99aa0a1d8ae8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3742e983-2390-4c40-b83e-99aa0a1d8ae8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3742e983-2390-4c40-b83e-99aa0a1d8ae8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3742e983-2390-4c40-b83e-99aa0a1d8ae8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3742e983-2390-4c40-b83e-99aa0a1d8ae8 img.shogun-image {
  width: 100%;
}



}
#s-1136fced-3d55-4f78-9b15-2ac675368f0e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1136fced-3d55-4f78-9b15-2ac675368f0e .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-d958d92e-1ec3-47b5-bdcd-cf29ad82b506 {
  display: none;
}
#s-6f01fdf9-dec3-4060-92c7-a4cf24f0766b {
  text-align: left;
}



.shg-c#s-6f01fdf9-dec3-4060-92c7-a4cf24f0766b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6f01fdf9-dec3-4060-92c7-a4cf24f0766b img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-6f01fdf9-dec3-4060-92c7-a4cf24f0766b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6f01fdf9-dec3-4060-92c7-a4cf24f0766b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6f01fdf9-dec3-4060-92c7-a4cf24f0766b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6f01fdf9-dec3-4060-92c7-a4cf24f0766b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6f01fdf9-dec3-4060-92c7-a4cf24f0766b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6f01fdf9-dec3-4060-92c7-a4cf24f0766b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6f01fdf9-dec3-4060-92c7-a4cf24f0766b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6f01fdf9-dec3-4060-92c7-a4cf24f0766b img.shogun-image {
  width: 100%;
}



}
#s-16fd5ffd-1d20-4425-85de-2bd3895fb9a6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-16fd5ffd-1d20-4425-85de-2bd3895fb9a6 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-663f878c-917f-45a3-84ce-5def7e44121b {
  display: none;
}
#s-17b05484-efb2-45de-94cf-4e8c954c4a3e {
  text-align: left;
}



.shg-c#s-17b05484-efb2-45de-94cf-4e8c954c4a3e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-17b05484-efb2-45de-94cf-4e8c954c4a3e img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-17b05484-efb2-45de-94cf-4e8c954c4a3e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-17b05484-efb2-45de-94cf-4e8c954c4a3e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-17b05484-efb2-45de-94cf-4e8c954c4a3e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-17b05484-efb2-45de-94cf-4e8c954c4a3e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-17b05484-efb2-45de-94cf-4e8c954c4a3e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-17b05484-efb2-45de-94cf-4e8c954c4a3e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-17b05484-efb2-45de-94cf-4e8c954c4a3e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-17b05484-efb2-45de-94cf-4e8c954c4a3e img.shogun-image {
  width: 100%;
}



}
#s-1ca115c1-d933-4743-a793-9531635c575d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1ca115c1-d933-4743-a793-9531635c575d .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-cf6c060e-3e81-45ea-9436-8e38e00f73c4 {
  display: none;
}
#s-d0689eb1-941b-482c-abc6-b1c391e85291 {
  text-align: left;
}



.shg-c#s-d0689eb1-941b-482c-abc6-b1c391e85291 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d0689eb1-941b-482c-abc6-b1c391e85291 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-d0689eb1-941b-482c-abc6-b1c391e85291 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d0689eb1-941b-482c-abc6-b1c391e85291 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d0689eb1-941b-482c-abc6-b1c391e85291 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d0689eb1-941b-482c-abc6-b1c391e85291 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d0689eb1-941b-482c-abc6-b1c391e85291 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d0689eb1-941b-482c-abc6-b1c391e85291 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d0689eb1-941b-482c-abc6-b1c391e85291 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d0689eb1-941b-482c-abc6-b1c391e85291 img.shogun-image {
  width: 100%;
}



}
#s-2ac6d805-e582-4f81-a999-fe5f6901bbdd {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2ac6d805-e582-4f81-a999-fe5f6901bbdd .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-1f56e228-e621-48af-960b-97e0447262f8 {
  display: none;
}
#s-9383244f-c8e3-4366-9cba-760a2cb7073d {
  text-align: left;
}



.shg-c#s-9383244f-c8e3-4366-9cba-760a2cb7073d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9383244f-c8e3-4366-9cba-760a2cb7073d img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-9383244f-c8e3-4366-9cba-760a2cb7073d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9383244f-c8e3-4366-9cba-760a2cb7073d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9383244f-c8e3-4366-9cba-760a2cb7073d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9383244f-c8e3-4366-9cba-760a2cb7073d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9383244f-c8e3-4366-9cba-760a2cb7073d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9383244f-c8e3-4366-9cba-760a2cb7073d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9383244f-c8e3-4366-9cba-760a2cb7073d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9383244f-c8e3-4366-9cba-760a2cb7073d img.shogun-image {
  width: 100%;
}



}
#s-9030be3c-4a62-4dc3-bd57-e8dab425b846 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9030be3c-4a62-4dc3-bd57-e8dab425b846 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-56d672ae-9539-4a06-9c6d-632badab3533 {
  display: none;
}
#s-ff0c2413-63ef-46c7-8535-c2092f0432fb {
  text-align: left;
}



.shg-c#s-ff0c2413-63ef-46c7-8535-c2092f0432fb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ff0c2413-63ef-46c7-8535-c2092f0432fb img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-ff0c2413-63ef-46c7-8535-c2092f0432fb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ff0c2413-63ef-46c7-8535-c2092f0432fb img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ff0c2413-63ef-46c7-8535-c2092f0432fb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ff0c2413-63ef-46c7-8535-c2092f0432fb img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ff0c2413-63ef-46c7-8535-c2092f0432fb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ff0c2413-63ef-46c7-8535-c2092f0432fb img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ff0c2413-63ef-46c7-8535-c2092f0432fb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ff0c2413-63ef-46c7-8535-c2092f0432fb img.shogun-image {
  width: 100%;
}



}
#s-34650101-eb2c-4c74-af25-54a82924ce6c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-34650101-eb2c-4c74-af25-54a82924ce6c .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-f5673f3c-63f6-4cce-bd18-dc23ceba0770 {
  display: none;
}
#s-f525cddb-35b9-4d80-98d7-4ecc93a28172 {
  text-align: left;
}



.shg-c#s-f525cddb-35b9-4d80-98d7-4ecc93a28172 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f525cddb-35b9-4d80-98d7-4ecc93a28172 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-f525cddb-35b9-4d80-98d7-4ecc93a28172 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f525cddb-35b9-4d80-98d7-4ecc93a28172 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f525cddb-35b9-4d80-98d7-4ecc93a28172 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f525cddb-35b9-4d80-98d7-4ecc93a28172 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f525cddb-35b9-4d80-98d7-4ecc93a28172 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f525cddb-35b9-4d80-98d7-4ecc93a28172 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f525cddb-35b9-4d80-98d7-4ecc93a28172 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f525cddb-35b9-4d80-98d7-4ecc93a28172 img.shogun-image {
  width: 100%;
}



}
#s-b93a653d-2ef9-449e-9129-6d9329becd6b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b93a653d-2ef9-449e-9129-6d9329becd6b .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-38633fb6-85f9-4480-a68c-feef3dc1d634 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
padding-left: 10px;
padding-right: 10px;
}

@media (min-width: 0px) {
[id="s-38633fb6-85f9-4480-a68c-feef3dc1d634"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-38633fb6-85f9-4480-a68c-feef3dc1d634"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-38633fb6-85f9-4480-a68c-feef3dc1d634"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-38633fb6-85f9-4480-a68c-feef3dc1d634"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-44d351b5-9df7-45d4-903f-227f992bb089 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-44d351b5-9df7-45d4-903f-227f992bb089 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-d6cf1cc5-2811-4878-a165-c0262f5a1675 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d6cf1cc5-2811-4878-a165-c0262f5a1675 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-b2abb198-8137-4fff-9a3e-3ebab91a2272 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b2abb198-8137-4fff-9a3e-3ebab91a2272 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-0c2f1103-e3d1-4314-a78d-7c89ab155bac {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0c2f1103-e3d1-4314-a78d-7c89ab155bac .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-2bb4dfe0-957e-45fb-a52a-770b21f6b256 {
  margin-top: 10px;
margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-2bb4dfe0-957e-45fb-a52a-770b21f6b256"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-2bb4dfe0-957e-45fb-a52a-770b21f6b256"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-2bb4dfe0-957e-45fb-a52a-770b21f6b256"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-2bb4dfe0-957e-45fb-a52a-770b21f6b256"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-ba1e9424-d990-4991-9d8b-63cbab505a81 {
  display: none;
}
#s-2fcfab77-bee2-41ca-a3ba-e0a49ab9235b {
  text-align: left;
}



.shg-c#s-2fcfab77-bee2-41ca-a3ba-e0a49ab9235b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2fcfab77-bee2-41ca-a3ba-e0a49ab9235b img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-2fcfab77-bee2-41ca-a3ba-e0a49ab9235b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2fcfab77-bee2-41ca-a3ba-e0a49ab9235b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-2fcfab77-bee2-41ca-a3ba-e0a49ab9235b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2fcfab77-bee2-41ca-a3ba-e0a49ab9235b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-2fcfab77-bee2-41ca-a3ba-e0a49ab9235b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2fcfab77-bee2-41ca-a3ba-e0a49ab9235b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-2fcfab77-bee2-41ca-a3ba-e0a49ab9235b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2fcfab77-bee2-41ca-a3ba-e0a49ab9235b img.shogun-image {
  width: 100%;
}



}
#s-71192259-35cd-43ce-9c23-5397aa97c253 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-71192259-35cd-43ce-9c23-5397aa97c253 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-8e5eb901-2f3d-462a-8d4a-fd5190ef0c8c {
  display: none;
}
#s-6e3ca6ca-340b-4537-b43a-547dc3f95030 {
  text-align: left;
}



.shg-c#s-6e3ca6ca-340b-4537-b43a-547dc3f95030 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6e3ca6ca-340b-4537-b43a-547dc3f95030 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-6e3ca6ca-340b-4537-b43a-547dc3f95030 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6e3ca6ca-340b-4537-b43a-547dc3f95030 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6e3ca6ca-340b-4537-b43a-547dc3f95030 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6e3ca6ca-340b-4537-b43a-547dc3f95030 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6e3ca6ca-340b-4537-b43a-547dc3f95030 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6e3ca6ca-340b-4537-b43a-547dc3f95030 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6e3ca6ca-340b-4537-b43a-547dc3f95030 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6e3ca6ca-340b-4537-b43a-547dc3f95030 img.shogun-image {
  width: 100%;
}



}
#s-0e78cb0b-c4d7-4dc1-86a3-36b59b607697 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0e78cb0b-c4d7-4dc1-86a3-36b59b607697 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-185009ad-67c2-4550-b541-3cae62c321bf {
  display: none;
}
#s-d14b2338-9644-42a3-93de-890908b4f4fd {
  text-align: left;
}



.shg-c#s-d14b2338-9644-42a3-93de-890908b4f4fd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d14b2338-9644-42a3-93de-890908b4f4fd img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-d14b2338-9644-42a3-93de-890908b4f4fd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d14b2338-9644-42a3-93de-890908b4f4fd img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d14b2338-9644-42a3-93de-890908b4f4fd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d14b2338-9644-42a3-93de-890908b4f4fd img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d14b2338-9644-42a3-93de-890908b4f4fd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d14b2338-9644-42a3-93de-890908b4f4fd img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d14b2338-9644-42a3-93de-890908b4f4fd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d14b2338-9644-42a3-93de-890908b4f4fd img.shogun-image {
  width: 100%;
}



}
#s-8b25ba5a-15f2-428e-a070-ae9224fc6820 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8b25ba5a-15f2-428e-a070-ae9224fc6820 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-ca2bc923-7c3b-4efb-b03e-d987d296360d {
  display: none;
}
#s-c7ce9333-1079-4238-ada7-db77880f5787 {
  text-align: left;
}



.shg-c#s-c7ce9333-1079-4238-ada7-db77880f5787 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c7ce9333-1079-4238-ada7-db77880f5787 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-c7ce9333-1079-4238-ada7-db77880f5787 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c7ce9333-1079-4238-ada7-db77880f5787 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c7ce9333-1079-4238-ada7-db77880f5787 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c7ce9333-1079-4238-ada7-db77880f5787 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c7ce9333-1079-4238-ada7-db77880f5787 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c7ce9333-1079-4238-ada7-db77880f5787 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c7ce9333-1079-4238-ada7-db77880f5787 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c7ce9333-1079-4238-ada7-db77880f5787 img.shogun-image {
  width: 100%;
}



}
#s-4aa1976f-0bee-4294-a3b6-01a653ec3b98 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4aa1976f-0bee-4294-a3b6-01a653ec3b98 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-c1145b25-241e-4524-9ddf-ca872f40a6ae {
  margin-top: 10px;
margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-c1145b25-241e-4524-9ddf-ca872f40a6ae"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-c1145b25-241e-4524-9ddf-ca872f40a6ae"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-c1145b25-241e-4524-9ddf-ca872f40a6ae"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-c1145b25-241e-4524-9ddf-ca872f40a6ae"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-180bf894-13c2-4bd1-b980-df141d41cbfb {
  display: none;
}
#s-b63e374a-01e7-45bc-91f3-09eba32206e1 {
  text-align: left;
}



.shg-c#s-b63e374a-01e7-45bc-91f3-09eba32206e1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b63e374a-01e7-45bc-91f3-09eba32206e1 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-b63e374a-01e7-45bc-91f3-09eba32206e1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b63e374a-01e7-45bc-91f3-09eba32206e1 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b63e374a-01e7-45bc-91f3-09eba32206e1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b63e374a-01e7-45bc-91f3-09eba32206e1 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b63e374a-01e7-45bc-91f3-09eba32206e1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b63e374a-01e7-45bc-91f3-09eba32206e1 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b63e374a-01e7-45bc-91f3-09eba32206e1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b63e374a-01e7-45bc-91f3-09eba32206e1 img.shogun-image {
  width: 100%;
}



}
#s-d14f0122-91dd-43f1-9b52-90341ff4a930 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d14f0122-91dd-43f1-9b52-90341ff4a930 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-611b66bb-7097-4332-9ee8-915fb2e4d661 {
  display: none;
}
#s-e4eb5537-efcd-40e8-8e04-3ea89fb4e4b9 {
  text-align: left;
}



.shg-c#s-e4eb5537-efcd-40e8-8e04-3ea89fb4e4b9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e4eb5537-efcd-40e8-8e04-3ea89fb4e4b9 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-e4eb5537-efcd-40e8-8e04-3ea89fb4e4b9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e4eb5537-efcd-40e8-8e04-3ea89fb4e4b9 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e4eb5537-efcd-40e8-8e04-3ea89fb4e4b9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e4eb5537-efcd-40e8-8e04-3ea89fb4e4b9 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e4eb5537-efcd-40e8-8e04-3ea89fb4e4b9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e4eb5537-efcd-40e8-8e04-3ea89fb4e4b9 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e4eb5537-efcd-40e8-8e04-3ea89fb4e4b9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e4eb5537-efcd-40e8-8e04-3ea89fb4e4b9 img.shogun-image {
  width: 100%;
}



}
#s-75f292f0-4c7f-4e8d-9e13-d3960e6f07a5 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-75f292f0-4c7f-4e8d-9e13-d3960e6f07a5 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-38c9f8d9-269a-4cec-9a7b-4498d48d89b7 {
  display: none;
}
#s-226bd49d-d3a0-4fb0-9447-ac21ee39f90f {
  text-align: left;
}



.shg-c#s-226bd49d-d3a0-4fb0-9447-ac21ee39f90f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-226bd49d-d3a0-4fb0-9447-ac21ee39f90f img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-226bd49d-d3a0-4fb0-9447-ac21ee39f90f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-226bd49d-d3a0-4fb0-9447-ac21ee39f90f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-226bd49d-d3a0-4fb0-9447-ac21ee39f90f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-226bd49d-d3a0-4fb0-9447-ac21ee39f90f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-226bd49d-d3a0-4fb0-9447-ac21ee39f90f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-226bd49d-d3a0-4fb0-9447-ac21ee39f90f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-226bd49d-d3a0-4fb0-9447-ac21ee39f90f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-226bd49d-d3a0-4fb0-9447-ac21ee39f90f img.shogun-image {
  width: 100%;
}



}
#s-f525fbd1-7f8a-45e3-bd30-75895ae72baf {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f525fbd1-7f8a-45e3-bd30-75895ae72baf .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-2229f795-9c13-46a5-b785-743f782411fc {
  display: none;
}
#s-03560ac1-93f6-48e9-86d2-98bc0b23a749 {
  text-align: left;
}



.shg-c#s-03560ac1-93f6-48e9-86d2-98bc0b23a749 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-03560ac1-93f6-48e9-86d2-98bc0b23a749 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-03560ac1-93f6-48e9-86d2-98bc0b23a749 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-03560ac1-93f6-48e9-86d2-98bc0b23a749 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-03560ac1-93f6-48e9-86d2-98bc0b23a749 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-03560ac1-93f6-48e9-86d2-98bc0b23a749 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-03560ac1-93f6-48e9-86d2-98bc0b23a749 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-03560ac1-93f6-48e9-86d2-98bc0b23a749 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-03560ac1-93f6-48e9-86d2-98bc0b23a749 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-03560ac1-93f6-48e9-86d2-98bc0b23a749 img.shogun-image {
  width: 100%;
}



}
#s-4e4ca60d-9bb1-4d96-968c-bb468d6907aa {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4e4ca60d-9bb1-4d96-968c-bb468d6907aa .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-e1787900-2470-4e5c-ae8c-0eadeb299670 {
  margin-top: 10px;
margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-e1787900-2470-4e5c-ae8c-0eadeb299670"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-e1787900-2470-4e5c-ae8c-0eadeb299670"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-e1787900-2470-4e5c-ae8c-0eadeb299670"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-e1787900-2470-4e5c-ae8c-0eadeb299670"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-c516e89f-30c7-4b66-8afd-09fd7eea1b27 {
  display: none;
}
#s-d3b64abd-fb48-45b5-a7c6-1797d9633c5e {
  text-align: left;
}



.shg-c#s-d3b64abd-fb48-45b5-a7c6-1797d9633c5e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d3b64abd-fb48-45b5-a7c6-1797d9633c5e img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-d3b64abd-fb48-45b5-a7c6-1797d9633c5e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d3b64abd-fb48-45b5-a7c6-1797d9633c5e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d3b64abd-fb48-45b5-a7c6-1797d9633c5e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d3b64abd-fb48-45b5-a7c6-1797d9633c5e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d3b64abd-fb48-45b5-a7c6-1797d9633c5e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d3b64abd-fb48-45b5-a7c6-1797d9633c5e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d3b64abd-fb48-45b5-a7c6-1797d9633c5e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d3b64abd-fb48-45b5-a7c6-1797d9633c5e img.shogun-image {
  width: 100%;
}



}
#s-33915848-fc49-4a70-8148-de5d1e24e4a2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-33915848-fc49-4a70-8148-de5d1e24e4a2 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-1e62d2c1-cfbd-47f3-816a-fa3d1d8f5e08 {
  display: none;
}
#s-f2503fb1-a9cd-4e50-9e87-bfe230828691 {
  text-align: left;
}



.shg-c#s-f2503fb1-a9cd-4e50-9e87-bfe230828691 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f2503fb1-a9cd-4e50-9e87-bfe230828691 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-f2503fb1-a9cd-4e50-9e87-bfe230828691 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f2503fb1-a9cd-4e50-9e87-bfe230828691 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f2503fb1-a9cd-4e50-9e87-bfe230828691 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f2503fb1-a9cd-4e50-9e87-bfe230828691 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f2503fb1-a9cd-4e50-9e87-bfe230828691 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f2503fb1-a9cd-4e50-9e87-bfe230828691 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f2503fb1-a9cd-4e50-9e87-bfe230828691 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f2503fb1-a9cd-4e50-9e87-bfe230828691 img.shogun-image {
  width: 100%;
}



}
#s-59ef70ea-dfba-43b4-b9ca-421e543ad1fa {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-59ef70ea-dfba-43b4-b9ca-421e543ad1fa .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-1761d54e-ddd0-4c57-877c-b26a2fcd9c02 {
  display: none;
}
#s-9573540f-cb7f-4d48-a440-35fdd026efb0 {
  text-align: left;
}



.shg-c#s-9573540f-cb7f-4d48-a440-35fdd026efb0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9573540f-cb7f-4d48-a440-35fdd026efb0 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-9573540f-cb7f-4d48-a440-35fdd026efb0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9573540f-cb7f-4d48-a440-35fdd026efb0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9573540f-cb7f-4d48-a440-35fdd026efb0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9573540f-cb7f-4d48-a440-35fdd026efb0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9573540f-cb7f-4d48-a440-35fdd026efb0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9573540f-cb7f-4d48-a440-35fdd026efb0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9573540f-cb7f-4d48-a440-35fdd026efb0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9573540f-cb7f-4d48-a440-35fdd026efb0 img.shogun-image {
  width: 100%;
}



}
#s-8a75ce8c-e43c-40bb-8c38-3b7dae9be003 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8a75ce8c-e43c-40bb-8c38-3b7dae9be003 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-420d7b9b-bbff-4ae3-9cb1-26d6fcfc250d {
  display: none;
}
#s-4fb68887-9c41-4292-82dc-1f2694697eb4 {
  text-align: left;
}



.shg-c#s-4fb68887-9c41-4292-82dc-1f2694697eb4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4fb68887-9c41-4292-82dc-1f2694697eb4 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-4fb68887-9c41-4292-82dc-1f2694697eb4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4fb68887-9c41-4292-82dc-1f2694697eb4 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4fb68887-9c41-4292-82dc-1f2694697eb4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4fb68887-9c41-4292-82dc-1f2694697eb4 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4fb68887-9c41-4292-82dc-1f2694697eb4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4fb68887-9c41-4292-82dc-1f2694697eb4 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4fb68887-9c41-4292-82dc-1f2694697eb4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4fb68887-9c41-4292-82dc-1f2694697eb4 img.shogun-image {
  width: 100%;
}



}
#s-d609e05a-2296-478f-af74-8a1803e444de {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d609e05a-2296-478f-af74-8a1803e444de .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-89d577e9-1eb3-4e61-ba11-1c510bba8588 {
  margin-top: 10px;
margin-left: -2%;
margin-bottom: 10px;
margin-right: -2%;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-89d577e9-1eb3-4e61-ba11-1c510bba8588"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-89d577e9-1eb3-4e61-ba11-1c510bba8588"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-89d577e9-1eb3-4e61-ba11-1c510bba8588"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-89d577e9-1eb3-4e61-ba11-1c510bba8588"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-a5075865-e566-44cb-bb24-1ed9d6b6d6a6 {
  display: none;
}
#s-cb409b86-a3f2-4c09-8d1e-3bcb60664196 {
  text-align: left;
}



.shg-c#s-cb409b86-a3f2-4c09-8d1e-3bcb60664196 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cb409b86-a3f2-4c09-8d1e-3bcb60664196 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-cb409b86-a3f2-4c09-8d1e-3bcb60664196 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cb409b86-a3f2-4c09-8d1e-3bcb60664196 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-cb409b86-a3f2-4c09-8d1e-3bcb60664196 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cb409b86-a3f2-4c09-8d1e-3bcb60664196 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-cb409b86-a3f2-4c09-8d1e-3bcb60664196 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cb409b86-a3f2-4c09-8d1e-3bcb60664196 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-cb409b86-a3f2-4c09-8d1e-3bcb60664196 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cb409b86-a3f2-4c09-8d1e-3bcb60664196 img.shogun-image {
  width: 100%;
}



}
#s-3ea9fb81-51b6-4846-9592-6e7a15e5ae2e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3ea9fb81-51b6-4846-9592-6e7a15e5ae2e .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-b3a2ea29-dd58-4f2c-afa4-9563bf6dadd1 {
  display: none;
}
#s-cd3f918b-cbe9-4904-82b8-3be872fab717 {
  text-align: left;
}



.shg-c#s-cd3f918b-cbe9-4904-82b8-3be872fab717 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cd3f918b-cbe9-4904-82b8-3be872fab717 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-cd3f918b-cbe9-4904-82b8-3be872fab717 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cd3f918b-cbe9-4904-82b8-3be872fab717 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-cd3f918b-cbe9-4904-82b8-3be872fab717 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cd3f918b-cbe9-4904-82b8-3be872fab717 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-cd3f918b-cbe9-4904-82b8-3be872fab717 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cd3f918b-cbe9-4904-82b8-3be872fab717 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-cd3f918b-cbe9-4904-82b8-3be872fab717 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cd3f918b-cbe9-4904-82b8-3be872fab717 img.shogun-image {
  width: 100%;
}



}
#s-eba56530-19ed-4a9f-a31f-227317e5f3b4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-eba56530-19ed-4a9f-a31f-227317e5f3b4 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-a70847f5-cf9e-4d56-8ec6-4a6ed85728a1 {
  display: none;
}
#s-5aa67f5d-ea4c-4bc4-aa41-f7c997227f54 {
  text-align: left;
}



.shg-c#s-5aa67f5d-ea4c-4bc4-aa41-f7c997227f54 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5aa67f5d-ea4c-4bc4-aa41-f7c997227f54 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-5aa67f5d-ea4c-4bc4-aa41-f7c997227f54 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5aa67f5d-ea4c-4bc4-aa41-f7c997227f54 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5aa67f5d-ea4c-4bc4-aa41-f7c997227f54 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5aa67f5d-ea4c-4bc4-aa41-f7c997227f54 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5aa67f5d-ea4c-4bc4-aa41-f7c997227f54 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5aa67f5d-ea4c-4bc4-aa41-f7c997227f54 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5aa67f5d-ea4c-4bc4-aa41-f7c997227f54 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5aa67f5d-ea4c-4bc4-aa41-f7c997227f54 img.shogun-image {
  width: 100%;
}



}
#s-8900a6a5-c088-4523-826f-3dd7923bd209 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8900a6a5-c088-4523-826f-3dd7923bd209 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-708aefe1-6831-4176-9d84-c0657f07f734 {
  display: none;
}
#s-c1948f32-a456-4be8-8bb1-1d5f4148c0c8 {
  text-align: left;
}



.shg-c#s-c1948f32-a456-4be8-8bb1-1d5f4148c0c8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c1948f32-a456-4be8-8bb1-1d5f4148c0c8 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-c1948f32-a456-4be8-8bb1-1d5f4148c0c8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c1948f32-a456-4be8-8bb1-1d5f4148c0c8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c1948f32-a456-4be8-8bb1-1d5f4148c0c8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c1948f32-a456-4be8-8bb1-1d5f4148c0c8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c1948f32-a456-4be8-8bb1-1d5f4148c0c8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c1948f32-a456-4be8-8bb1-1d5f4148c0c8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c1948f32-a456-4be8-8bb1-1d5f4148c0c8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c1948f32-a456-4be8-8bb1-1d5f4148c0c8 img.shogun-image {
  width: 100%;
}



}
#s-16bc41f9-07e9-4885-a6db-8bc129565096 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-16bc41f9-07e9-4885-a6db-8bc129565096 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-4a43aec3-dee9-4615-9fd3-5882023f866c {
  margin-top: 10px;
margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-4a43aec3-dee9-4615-9fd3-5882023f866c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-4a43aec3-dee9-4615-9fd3-5882023f866c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-4a43aec3-dee9-4615-9fd3-5882023f866c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-4a43aec3-dee9-4615-9fd3-5882023f866c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-05340466-4f21-4987-be92-a854ace7caa5 {
  display: none;
}
#s-7afbb4a3-9b66-4e85-84c5-abb9cc044c89 {
  text-align: left;
}



.shg-c#s-7afbb4a3-9b66-4e85-84c5-abb9cc044c89 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7afbb4a3-9b66-4e85-84c5-abb9cc044c89 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-7afbb4a3-9b66-4e85-84c5-abb9cc044c89 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7afbb4a3-9b66-4e85-84c5-abb9cc044c89 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7afbb4a3-9b66-4e85-84c5-abb9cc044c89 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7afbb4a3-9b66-4e85-84c5-abb9cc044c89 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7afbb4a3-9b66-4e85-84c5-abb9cc044c89 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7afbb4a3-9b66-4e85-84c5-abb9cc044c89 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7afbb4a3-9b66-4e85-84c5-abb9cc044c89 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7afbb4a3-9b66-4e85-84c5-abb9cc044c89 img.shogun-image {
  width: 100%;
}



}
#s-4c4a5757-3976-49c1-9d93-44d95fc72088 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4c4a5757-3976-49c1-9d93-44d95fc72088 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-4c4a5757-3976-49c1-9d93-44d95fc72088 .shogun-heading-component h3 a {
  color: #000;
}


#s-b77daef3-eee4-401a-ba87-e995185ceeee {
  display: none;
}
#s-6e30d63b-856c-4abd-b2eb-449419b66722 {
  text-align: left;
}



.shg-c#s-6e30d63b-856c-4abd-b2eb-449419b66722 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6e30d63b-856c-4abd-b2eb-449419b66722 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-6e30d63b-856c-4abd-b2eb-449419b66722 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6e30d63b-856c-4abd-b2eb-449419b66722 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6e30d63b-856c-4abd-b2eb-449419b66722 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6e30d63b-856c-4abd-b2eb-449419b66722 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6e30d63b-856c-4abd-b2eb-449419b66722 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6e30d63b-856c-4abd-b2eb-449419b66722 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6e30d63b-856c-4abd-b2eb-449419b66722 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6e30d63b-856c-4abd-b2eb-449419b66722 img.shogun-image {
  width: 100%;
}



}
#s-1e095bce-eeb8-4e6e-afff-cbfafcc4f800 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1e095bce-eeb8-4e6e-afff-cbfafcc4f800 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-1e095bce-eeb8-4e6e-afff-cbfafcc4f800 .shogun-heading-component h3 a {
  color: #000;
}


#s-efd792c4-75df-484d-b747-738fcf7c0f80 {
  display: none;
}
#s-a7991e4b-cba6-4488-bfc2-cfd214428bbd {
  text-align: left;
}



.shg-c#s-a7991e4b-cba6-4488-bfc2-cfd214428bbd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a7991e4b-cba6-4488-bfc2-cfd214428bbd img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-a7991e4b-cba6-4488-bfc2-cfd214428bbd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a7991e4b-cba6-4488-bfc2-cfd214428bbd img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a7991e4b-cba6-4488-bfc2-cfd214428bbd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a7991e4b-cba6-4488-bfc2-cfd214428bbd img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a7991e4b-cba6-4488-bfc2-cfd214428bbd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a7991e4b-cba6-4488-bfc2-cfd214428bbd img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a7991e4b-cba6-4488-bfc2-cfd214428bbd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a7991e4b-cba6-4488-bfc2-cfd214428bbd img.shogun-image {
  width: 100%;
}



}
#s-58463a11-bdbd-4cac-b51e-8b42606e4b3c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-58463a11-bdbd-4cac-b51e-8b42606e4b3c .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-58463a11-bdbd-4cac-b51e-8b42606e4b3c .shogun-heading-component h3 a {
  color: #000;
}


#s-4e0a6c93-7bb2-4043-8bf8-619844ea9f70 {
  display: none;
}
#s-2a609220-ec87-4e0d-9471-854931b1ca2a {
  text-align: left;
}



.shg-c#s-2a609220-ec87-4e0d-9471-854931b1ca2a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2a609220-ec87-4e0d-9471-854931b1ca2a img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-2a609220-ec87-4e0d-9471-854931b1ca2a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2a609220-ec87-4e0d-9471-854931b1ca2a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-2a609220-ec87-4e0d-9471-854931b1ca2a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2a609220-ec87-4e0d-9471-854931b1ca2a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-2a609220-ec87-4e0d-9471-854931b1ca2a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2a609220-ec87-4e0d-9471-854931b1ca2a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-2a609220-ec87-4e0d-9471-854931b1ca2a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2a609220-ec87-4e0d-9471-854931b1ca2a img.shogun-image {
  width: 100%;
}



}
#s-3953fc79-7fab-4b9e-b682-64b8a91a0346 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3953fc79-7fab-4b9e-b682-64b8a91a0346 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-3953fc79-7fab-4b9e-b682-64b8a91a0346 .shogun-heading-component h3 a {
  color: #000;
}


#s-10e330b9-ac4c-4b7c-b735-7bcd544ed16c {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-10e330b9-ac4c-4b7c-b735-7bcd544ed16c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-10e330b9-ac4c-4b7c-b735-7bcd544ed16c"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-10e330b9-ac4c-4b7c-b735-7bcd544ed16c"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-10e330b9-ac4c-4b7c-b735-7bcd544ed16c"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-4675340b-d508-4a4e-840f-2afda203473c {
  display: none;
}
#s-6751d395-4c65-496b-bd7d-d8e0babc5d63 {
  text-align: left;
}



.shg-c#s-6751d395-4c65-496b-bd7d-d8e0babc5d63 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6751d395-4c65-496b-bd7d-d8e0babc5d63 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-6751d395-4c65-496b-bd7d-d8e0babc5d63 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6751d395-4c65-496b-bd7d-d8e0babc5d63 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6751d395-4c65-496b-bd7d-d8e0babc5d63 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6751d395-4c65-496b-bd7d-d8e0babc5d63 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6751d395-4c65-496b-bd7d-d8e0babc5d63 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6751d395-4c65-496b-bd7d-d8e0babc5d63 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6751d395-4c65-496b-bd7d-d8e0babc5d63 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6751d395-4c65-496b-bd7d-d8e0babc5d63 img.shogun-image {
  width: 100%;
}



}
#s-354978f7-ab8f-4379-a673-8288d506e70f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-354978f7-ab8f-4379-a673-8288d506e70f .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-354978f7-ab8f-4379-a673-8288d506e70f .shogun-heading-component h3 a {
  color: #000;
}


#s-ee0f71e0-7f5b-4303-bc76-85bd9001c2d5 {
  display: none;
}
#s-2191a0b3-2631-47d4-b8eb-1be2d53d80ae {
  text-align: left;
}



.shg-c#s-2191a0b3-2631-47d4-b8eb-1be2d53d80ae .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2191a0b3-2631-47d4-b8eb-1be2d53d80ae img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-2191a0b3-2631-47d4-b8eb-1be2d53d80ae .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2191a0b3-2631-47d4-b8eb-1be2d53d80ae img.shogun-image {
  width: 100%;
}



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

.shg-c#s-2191a0b3-2631-47d4-b8eb-1be2d53d80ae .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2191a0b3-2631-47d4-b8eb-1be2d53d80ae img.shogun-image {
  width: 100%;
}



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

.shg-c#s-2191a0b3-2631-47d4-b8eb-1be2d53d80ae .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2191a0b3-2631-47d4-b8eb-1be2d53d80ae img.shogun-image {
  width: 100%;
}



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

.shg-c#s-2191a0b3-2631-47d4-b8eb-1be2d53d80ae .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2191a0b3-2631-47d4-b8eb-1be2d53d80ae img.shogun-image {
  width: 100%;
}



}
#s-15358dd3-f281-4ce7-8ae7-07017172906e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-15358dd3-f281-4ce7-8ae7-07017172906e .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-15358dd3-f281-4ce7-8ae7-07017172906e .shogun-heading-component h3 a {
  color: #000;
}


#s-7c67726c-6163-4585-85ad-146ee0fd855d {
  display: none;
}
#s-e72f1322-2db1-484b-b0a5-8ca39dec4c97 {
  text-align: left;
}



.shg-c#s-e72f1322-2db1-484b-b0a5-8ca39dec4c97 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e72f1322-2db1-484b-b0a5-8ca39dec4c97 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-e72f1322-2db1-484b-b0a5-8ca39dec4c97 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e72f1322-2db1-484b-b0a5-8ca39dec4c97 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e72f1322-2db1-484b-b0a5-8ca39dec4c97 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e72f1322-2db1-484b-b0a5-8ca39dec4c97 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e72f1322-2db1-484b-b0a5-8ca39dec4c97 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e72f1322-2db1-484b-b0a5-8ca39dec4c97 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e72f1322-2db1-484b-b0a5-8ca39dec4c97 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e72f1322-2db1-484b-b0a5-8ca39dec4c97 img.shogun-image {
  width: 100%;
}



}
#s-b3684c63-d96b-4532-930e-b0ff7e984843 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b3684c63-d96b-4532-930e-b0ff7e984843 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-b3684c63-d96b-4532-930e-b0ff7e984843 .shogun-heading-component h3 a {
  color: #000;
}


#s-996a7ed7-4de3-47a8-84da-f8d8af2d177d {
  display: none;
}
#s-ee966b7b-35c8-44f2-b2f7-82602baf0a40 {
  text-align: left;
}



.shg-c#s-ee966b7b-35c8-44f2-b2f7-82602baf0a40 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ee966b7b-35c8-44f2-b2f7-82602baf0a40 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-ee966b7b-35c8-44f2-b2f7-82602baf0a40 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ee966b7b-35c8-44f2-b2f7-82602baf0a40 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ee966b7b-35c8-44f2-b2f7-82602baf0a40 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ee966b7b-35c8-44f2-b2f7-82602baf0a40 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ee966b7b-35c8-44f2-b2f7-82602baf0a40 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ee966b7b-35c8-44f2-b2f7-82602baf0a40 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ee966b7b-35c8-44f2-b2f7-82602baf0a40 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ee966b7b-35c8-44f2-b2f7-82602baf0a40 img.shogun-image {
  width: 100%;
}



}
#s-adc5f65b-14ee-47ed-a909-44d792292d21 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-adc5f65b-14ee-47ed-a909-44d792292d21 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-adc5f65b-14ee-47ed-a909-44d792292d21 .shogun-heading-component h3 a {
  color: #000;
}


#s-e2344cea-e3ca-42a0-874f-f7de135d3a0f {
  display: none;
}
#s-591acc76-209b-4ed4-ad30-49a168eb623b {
  text-align: left;
}



.shg-c#s-591acc76-209b-4ed4-ad30-49a168eb623b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-591acc76-209b-4ed4-ad30-49a168eb623b img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-591acc76-209b-4ed4-ad30-49a168eb623b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-591acc76-209b-4ed4-ad30-49a168eb623b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-591acc76-209b-4ed4-ad30-49a168eb623b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-591acc76-209b-4ed4-ad30-49a168eb623b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-591acc76-209b-4ed4-ad30-49a168eb623b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-591acc76-209b-4ed4-ad30-49a168eb623b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-591acc76-209b-4ed4-ad30-49a168eb623b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-591acc76-209b-4ed4-ad30-49a168eb623b img.shogun-image {
  width: 100%;
}



}
#s-cdd86c78-703d-4cc4-9058-b905c1269c22 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-cdd86c78-703d-4cc4-9058-b905c1269c22 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-cdd86c78-703d-4cc4-9058-b905c1269c22 .shogun-heading-component h3 a {
  color: #000;
}


#s-4014daad-e6cd-4c66-8c7a-5cc3a0bbb397 {
  display: none;
}
#s-443c46f0-022c-42f4-ae94-3a4f4f5b1210 {
  text-align: left;
}



.shg-c#s-443c46f0-022c-42f4-ae94-3a4f4f5b1210 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-443c46f0-022c-42f4-ae94-3a4f4f5b1210 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-443c46f0-022c-42f4-ae94-3a4f4f5b1210 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-443c46f0-022c-42f4-ae94-3a4f4f5b1210 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-443c46f0-022c-42f4-ae94-3a4f4f5b1210 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-443c46f0-022c-42f4-ae94-3a4f4f5b1210 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-443c46f0-022c-42f4-ae94-3a4f4f5b1210 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-443c46f0-022c-42f4-ae94-3a4f4f5b1210 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-443c46f0-022c-42f4-ae94-3a4f4f5b1210 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-443c46f0-022c-42f4-ae94-3a4f4f5b1210 img.shogun-image {
  width: 100%;
}



}
#s-e288b665-5a46-4a27-8b2e-ab56b55f594f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e288b665-5a46-4a27-8b2e-ab56b55f594f .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-e288b665-5a46-4a27-8b2e-ab56b55f594f .shogun-heading-component h3 a {
  color: #000;
}


#s-9cc16616-8fc6-4a97-9c4d-9f202849bb17 {
  margin-top: 10px;
margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-9cc16616-8fc6-4a97-9c4d-9f202849bb17"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-9cc16616-8fc6-4a97-9c4d-9f202849bb17"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-9cc16616-8fc6-4a97-9c4d-9f202849bb17"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-9cc16616-8fc6-4a97-9c4d-9f202849bb17"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-f33d0040-aa42-420e-9499-b5d910930403 {
  display: none;
}
#s-326c2162-18d6-46f0-810a-f5379ed49e5c {
  text-align: left;
}



.shg-c#s-326c2162-18d6-46f0-810a-f5379ed49e5c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-326c2162-18d6-46f0-810a-f5379ed49e5c img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-326c2162-18d6-46f0-810a-f5379ed49e5c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-326c2162-18d6-46f0-810a-f5379ed49e5c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-326c2162-18d6-46f0-810a-f5379ed49e5c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-326c2162-18d6-46f0-810a-f5379ed49e5c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-326c2162-18d6-46f0-810a-f5379ed49e5c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-326c2162-18d6-46f0-810a-f5379ed49e5c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-326c2162-18d6-46f0-810a-f5379ed49e5c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-326c2162-18d6-46f0-810a-f5379ed49e5c img.shogun-image {
  width: 100%;
}



}
#s-6ef238ea-884d-4752-aada-abf96c973bf5 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6ef238ea-884d-4752-aada-abf96c973bf5 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-e7987276-e869-4da6-b201-a9277fff9752 {
  display: none;
}
#s-3c251298-fd04-4436-a0af-724c83e7a247 {
  text-align: left;
}



.shg-c#s-3c251298-fd04-4436-a0af-724c83e7a247 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3c251298-fd04-4436-a0af-724c83e7a247 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-3c251298-fd04-4436-a0af-724c83e7a247 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3c251298-fd04-4436-a0af-724c83e7a247 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3c251298-fd04-4436-a0af-724c83e7a247 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3c251298-fd04-4436-a0af-724c83e7a247 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3c251298-fd04-4436-a0af-724c83e7a247 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3c251298-fd04-4436-a0af-724c83e7a247 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3c251298-fd04-4436-a0af-724c83e7a247 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3c251298-fd04-4436-a0af-724c83e7a247 img.shogun-image {
  width: 100%;
}



}
#s-54444563-a58f-4b2d-afdc-ef89f16483e5 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-54444563-a58f-4b2d-afdc-ef89f16483e5 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-c1f386c0-6cd6-4bca-a6ad-c38f92e96176 {
  display: none;
}
#s-53b9a6d1-bafa-47f0-9409-56e28982901c {
  text-align: left;
}



.shg-c#s-53b9a6d1-bafa-47f0-9409-56e28982901c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-53b9a6d1-bafa-47f0-9409-56e28982901c img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-53b9a6d1-bafa-47f0-9409-56e28982901c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-53b9a6d1-bafa-47f0-9409-56e28982901c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-53b9a6d1-bafa-47f0-9409-56e28982901c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-53b9a6d1-bafa-47f0-9409-56e28982901c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-53b9a6d1-bafa-47f0-9409-56e28982901c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-53b9a6d1-bafa-47f0-9409-56e28982901c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-53b9a6d1-bafa-47f0-9409-56e28982901c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-53b9a6d1-bafa-47f0-9409-56e28982901c img.shogun-image {
  width: 100%;
}



}
#s-b8c5b298-412e-4ec5-9a48-214ed5847413 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b8c5b298-412e-4ec5-9a48-214ed5847413 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-d86b2883-5fc7-4e67-8ff9-538a0226adcb {
  display: none;
}
#s-e46ddc72-04c2-44f0-831a-53c243d1091c {
  text-align: left;
}



.shg-c#s-e46ddc72-04c2-44f0-831a-53c243d1091c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e46ddc72-04c2-44f0-831a-53c243d1091c img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-e46ddc72-04c2-44f0-831a-53c243d1091c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e46ddc72-04c2-44f0-831a-53c243d1091c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e46ddc72-04c2-44f0-831a-53c243d1091c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e46ddc72-04c2-44f0-831a-53c243d1091c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e46ddc72-04c2-44f0-831a-53c243d1091c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e46ddc72-04c2-44f0-831a-53c243d1091c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e46ddc72-04c2-44f0-831a-53c243d1091c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e46ddc72-04c2-44f0-831a-53c243d1091c img.shogun-image {
  width: 100%;
}



}
#s-ba0ac73f-1c5d-4164-8bea-1d8ab643afa9 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ba0ac73f-1c5d-4164-8bea-1d8ab643afa9 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-77ebd098-6aa1-46ba-b6d0-0da0ea340cd1 {
  margin-top: 10px;
margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-77ebd098-6aa1-46ba-b6d0-0da0ea340cd1"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-77ebd098-6aa1-46ba-b6d0-0da0ea340cd1"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-77ebd098-6aa1-46ba-b6d0-0da0ea340cd1"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-77ebd098-6aa1-46ba-b6d0-0da0ea340cd1"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-baef58ec-b6f8-444e-8f45-903f3e199e82 {
  display: none;
}
#s-4d32c8c8-805a-4307-a531-de15b4ee39d8 {
  text-align: left;
}



.shg-c#s-4d32c8c8-805a-4307-a531-de15b4ee39d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4d32c8c8-805a-4307-a531-de15b4ee39d8 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-4d32c8c8-805a-4307-a531-de15b4ee39d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4d32c8c8-805a-4307-a531-de15b4ee39d8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4d32c8c8-805a-4307-a531-de15b4ee39d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4d32c8c8-805a-4307-a531-de15b4ee39d8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4d32c8c8-805a-4307-a531-de15b4ee39d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4d32c8c8-805a-4307-a531-de15b4ee39d8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4d32c8c8-805a-4307-a531-de15b4ee39d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4d32c8c8-805a-4307-a531-de15b4ee39d8 img.shogun-image {
  width: 100%;
}



}
#s-29d498b4-c320-432f-b605-868126061d6f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-29d498b4-c320-432f-b605-868126061d6f .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-b88d3566-9c2c-4fcb-bfa6-c9e02bf5c7da {
  display: none;
}
#s-60f14d19-245b-4a22-a044-ca8668e6da2e {
  text-align: left;
}



.shg-c#s-60f14d19-245b-4a22-a044-ca8668e6da2e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-60f14d19-245b-4a22-a044-ca8668e6da2e img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-60f14d19-245b-4a22-a044-ca8668e6da2e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-60f14d19-245b-4a22-a044-ca8668e6da2e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-60f14d19-245b-4a22-a044-ca8668e6da2e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-60f14d19-245b-4a22-a044-ca8668e6da2e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-60f14d19-245b-4a22-a044-ca8668e6da2e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-60f14d19-245b-4a22-a044-ca8668e6da2e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-60f14d19-245b-4a22-a044-ca8668e6da2e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-60f14d19-245b-4a22-a044-ca8668e6da2e img.shogun-image {
  width: 100%;
}



}
#s-ec047ea8-a743-4b1d-9bac-cf37b5fa2eb8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ec047ea8-a743-4b1d-9bac-cf37b5fa2eb8 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-25d664fb-b506-4f41-9ba1-2e2994009600 {
  margin-top: 10px;
margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-25d664fb-b506-4f41-9ba1-2e2994009600"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-25d664fb-b506-4f41-9ba1-2e2994009600"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-25d664fb-b506-4f41-9ba1-2e2994009600"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-25d664fb-b506-4f41-9ba1-2e2994009600"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-df131a87-d54b-4fcb-a877-d197b538133d {
  display: none;
}
#s-ec485f5a-9bd0-48d4-aa66-e0ce8dc19036 {
  text-align: left;
}



.shg-c#s-ec485f5a-9bd0-48d4-aa66-e0ce8dc19036 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ec485f5a-9bd0-48d4-aa66-e0ce8dc19036 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-ec485f5a-9bd0-48d4-aa66-e0ce8dc19036 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ec485f5a-9bd0-48d4-aa66-e0ce8dc19036 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ec485f5a-9bd0-48d4-aa66-e0ce8dc19036 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ec485f5a-9bd0-48d4-aa66-e0ce8dc19036 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ec485f5a-9bd0-48d4-aa66-e0ce8dc19036 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ec485f5a-9bd0-48d4-aa66-e0ce8dc19036 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ec485f5a-9bd0-48d4-aa66-e0ce8dc19036 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ec485f5a-9bd0-48d4-aa66-e0ce8dc19036 img.shogun-image {
  width: 100%;
}



}
#s-01c6c027-2283-4408-827f-8ffc2e544286 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-01c6c027-2283-4408-827f-8ffc2e544286 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-0eb2c730-6a11-4d6a-9c0f-e3b470c793cc {
  display: none;
}
#s-310351c8-669e-43c8-973c-6c26997ed579 {
  text-align: left;
}



.shg-c#s-310351c8-669e-43c8-973c-6c26997ed579 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-310351c8-669e-43c8-973c-6c26997ed579 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-310351c8-669e-43c8-973c-6c26997ed579 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-310351c8-669e-43c8-973c-6c26997ed579 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-310351c8-669e-43c8-973c-6c26997ed579 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-310351c8-669e-43c8-973c-6c26997ed579 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-310351c8-669e-43c8-973c-6c26997ed579 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-310351c8-669e-43c8-973c-6c26997ed579 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-310351c8-669e-43c8-973c-6c26997ed579 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-310351c8-669e-43c8-973c-6c26997ed579 img.shogun-image {
  width: 100%;
}



}
#s-e8630d29-b09b-4739-b4b6-92456ff73c50 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e8630d29-b09b-4739-b4b6-92456ff73c50 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-d05d840b-7923-4fee-b1ce-db780624c2af {
  display: none;
}
#s-15662104-69e4-484b-b6da-232cd78b1692 {
  text-align: left;
}



.shg-c#s-15662104-69e4-484b-b6da-232cd78b1692 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-15662104-69e4-484b-b6da-232cd78b1692 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-15662104-69e4-484b-b6da-232cd78b1692 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-15662104-69e4-484b-b6da-232cd78b1692 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-15662104-69e4-484b-b6da-232cd78b1692 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-15662104-69e4-484b-b6da-232cd78b1692 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-15662104-69e4-484b-b6da-232cd78b1692 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-15662104-69e4-484b-b6da-232cd78b1692 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-15662104-69e4-484b-b6da-232cd78b1692 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-15662104-69e4-484b-b6da-232cd78b1692 img.shogun-image {
  width: 100%;
}



}
#s-3edd5d7d-83bb-4e2e-89b4-d0bbf850fbf9 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3edd5d7d-83bb-4e2e-89b4-d0bbf850fbf9 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-65f570fd-cda5-44cc-b2bc-8ea5bcc2d456 {
  display: none;
}
#s-110ce9f0-ba08-4753-a9bd-7143a716e198 {
  text-align: left;
}



.shg-c#s-110ce9f0-ba08-4753-a9bd-7143a716e198 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-110ce9f0-ba08-4753-a9bd-7143a716e198 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-110ce9f0-ba08-4753-a9bd-7143a716e198 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-110ce9f0-ba08-4753-a9bd-7143a716e198 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-110ce9f0-ba08-4753-a9bd-7143a716e198 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-110ce9f0-ba08-4753-a9bd-7143a716e198 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-110ce9f0-ba08-4753-a9bd-7143a716e198 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-110ce9f0-ba08-4753-a9bd-7143a716e198 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-110ce9f0-ba08-4753-a9bd-7143a716e198 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-110ce9f0-ba08-4753-a9bd-7143a716e198 img.shogun-image {
  width: 100%;
}



}
#s-b25df586-c57f-4b54-a7b6-7ee1945668be {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b25df586-c57f-4b54-a7b6-7ee1945668be .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-8f419dc0-fa39-4780-9cce-15c27f41b8f1 {
  margin-top: 10px;
margin-left: -2%;
margin-bottom: 10px;
margin-right: -2%;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-8f419dc0-fa39-4780-9cce-15c27f41b8f1"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-8f419dc0-fa39-4780-9cce-15c27f41b8f1"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-8f419dc0-fa39-4780-9cce-15c27f41b8f1"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-8f419dc0-fa39-4780-9cce-15c27f41b8f1"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-bb0a80a3-c9a6-480f-b3d4-91752ce10620 {
  display: none;
}
#s-bc527fe6-9f86-4f5f-8bb4-7b2159b89d01 {
  text-align: left;
}



.shg-c#s-bc527fe6-9f86-4f5f-8bb4-7b2159b89d01 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bc527fe6-9f86-4f5f-8bb4-7b2159b89d01 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-bc527fe6-9f86-4f5f-8bb4-7b2159b89d01 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bc527fe6-9f86-4f5f-8bb4-7b2159b89d01 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-bc527fe6-9f86-4f5f-8bb4-7b2159b89d01 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bc527fe6-9f86-4f5f-8bb4-7b2159b89d01 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-bc527fe6-9f86-4f5f-8bb4-7b2159b89d01 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bc527fe6-9f86-4f5f-8bb4-7b2159b89d01 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-bc527fe6-9f86-4f5f-8bb4-7b2159b89d01 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bc527fe6-9f86-4f5f-8bb4-7b2159b89d01 img.shogun-image {
  width: 100%;
}



}
#s-e02235fe-0e0f-447e-b1d6-b0525f160109 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e02235fe-0e0f-447e-b1d6-b0525f160109 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-e02235fe-0e0f-447e-b1d6-b0525f160109 .shogun-heading-component h3 a {
  color: #000;
}


#s-9110620a-17fd-4c2e-a7e2-94a819b7cff8 {
  min-height: 50px;
}








#s-9110620a-17fd-4c2e-a7e2-94a819b7cff8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9110620a-17fd-4c2e-a7e2-94a819b7cff8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d9f8a76c-da56-4767-9046-f8dc6f49de8f {
  margin-top: 10px;
margin-left: -2%;
margin-bottom: 10px;
margin-right: -2%;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-d9f8a76c-da56-4767-9046-f8dc6f49de8f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-d9f8a76c-da56-4767-9046-f8dc6f49de8f"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-d9f8a76c-da56-4767-9046-f8dc6f49de8f"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-d9f8a76c-da56-4767-9046-f8dc6f49de8f"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-24575df3-6464-4911-a604-c194f1ee884b {
  display: none;
}
#s-4b6f0310-1a03-4f17-8584-3a210134f1d6 {
  text-align: left;
}



.shg-c#s-4b6f0310-1a03-4f17-8584-3a210134f1d6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4b6f0310-1a03-4f17-8584-3a210134f1d6 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-4b6f0310-1a03-4f17-8584-3a210134f1d6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4b6f0310-1a03-4f17-8584-3a210134f1d6 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4b6f0310-1a03-4f17-8584-3a210134f1d6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4b6f0310-1a03-4f17-8584-3a210134f1d6 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4b6f0310-1a03-4f17-8584-3a210134f1d6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4b6f0310-1a03-4f17-8584-3a210134f1d6 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4b6f0310-1a03-4f17-8584-3a210134f1d6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4b6f0310-1a03-4f17-8584-3a210134f1d6 img.shogun-image {
  width: 100%;
}



}
#s-0ef6a4b4-1946-4349-a4f6-2c3c696e87db {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0ef6a4b4-1946-4349-a4f6-2c3c696e87db .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-a8435510-31db-48bb-903d-227135fb4d5c {
  display: none;
}
#s-c9be1b41-1300-4f8d-801b-8030cceac2d5 {
  text-align: left;
}



.shg-c#s-c9be1b41-1300-4f8d-801b-8030cceac2d5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c9be1b41-1300-4f8d-801b-8030cceac2d5 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-c9be1b41-1300-4f8d-801b-8030cceac2d5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c9be1b41-1300-4f8d-801b-8030cceac2d5 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c9be1b41-1300-4f8d-801b-8030cceac2d5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c9be1b41-1300-4f8d-801b-8030cceac2d5 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c9be1b41-1300-4f8d-801b-8030cceac2d5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c9be1b41-1300-4f8d-801b-8030cceac2d5 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c9be1b41-1300-4f8d-801b-8030cceac2d5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c9be1b41-1300-4f8d-801b-8030cceac2d5 img.shogun-image {
  width: 100%;
}



}
#s-01afece9-e435-4bb4-8a39-eaaa608f4980 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-01afece9-e435-4bb4-8a39-eaaa608f4980 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-1088cf48-ed08-4bff-a4bc-8ad5a0dbfd51 {
  display: none;
}
#s-6723ed96-397a-406f-8ca3-0922868152da {
  text-align: left;
}



.shg-c#s-6723ed96-397a-406f-8ca3-0922868152da .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6723ed96-397a-406f-8ca3-0922868152da img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-6723ed96-397a-406f-8ca3-0922868152da .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6723ed96-397a-406f-8ca3-0922868152da img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6723ed96-397a-406f-8ca3-0922868152da .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6723ed96-397a-406f-8ca3-0922868152da img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6723ed96-397a-406f-8ca3-0922868152da .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6723ed96-397a-406f-8ca3-0922868152da img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6723ed96-397a-406f-8ca3-0922868152da .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6723ed96-397a-406f-8ca3-0922868152da img.shogun-image {
  width: 100%;
}



}
#s-fd48af2d-7245-48b7-a91e-195de3d1be30 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-fd48af2d-7245-48b7-a91e-195de3d1be30 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-98f25c19-bca8-49c3-a072-e1c49553f5bf {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-98f25c19-bca8-49c3-a072-e1c49553f5bf"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-98f25c19-bca8-49c3-a072-e1c49553f5bf"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-98f25c19-bca8-49c3-a072-e1c49553f5bf"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-98f25c19-bca8-49c3-a072-e1c49553f5bf"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-4160b02e-9c52-4237-9008-a601b28c1dbd {
  display: none;
}
#s-653c7c81-30e5-40be-8f7c-63354646c556 {
  text-align: left;
}



.shg-c#s-653c7c81-30e5-40be-8f7c-63354646c556 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-653c7c81-30e5-40be-8f7c-63354646c556 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-653c7c81-30e5-40be-8f7c-63354646c556 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-653c7c81-30e5-40be-8f7c-63354646c556 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-653c7c81-30e5-40be-8f7c-63354646c556 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-653c7c81-30e5-40be-8f7c-63354646c556 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-653c7c81-30e5-40be-8f7c-63354646c556 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-653c7c81-30e5-40be-8f7c-63354646c556 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-653c7c81-30e5-40be-8f7c-63354646c556 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-653c7c81-30e5-40be-8f7c-63354646c556 img.shogun-image {
  width: 100%;
}



}
#s-78c3173e-e8fb-4d44-8661-b20becea4d86 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-78c3173e-e8fb-4d44-8661-b20becea4d86 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-78c3173e-e8fb-4d44-8661-b20becea4d86 .shogun-heading-component h3 a {
  color: #000;
}


#s-7c350271-dad8-4cf5-951d-4273bd13c8dc {
  display: none;
}
#s-b3b6991e-ba8c-4f26-815f-94a70ae1858c {
  text-align: left;
}



.shg-c#s-b3b6991e-ba8c-4f26-815f-94a70ae1858c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b3b6991e-ba8c-4f26-815f-94a70ae1858c img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-b3b6991e-ba8c-4f26-815f-94a70ae1858c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b3b6991e-ba8c-4f26-815f-94a70ae1858c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b3b6991e-ba8c-4f26-815f-94a70ae1858c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b3b6991e-ba8c-4f26-815f-94a70ae1858c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b3b6991e-ba8c-4f26-815f-94a70ae1858c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b3b6991e-ba8c-4f26-815f-94a70ae1858c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b3b6991e-ba8c-4f26-815f-94a70ae1858c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b3b6991e-ba8c-4f26-815f-94a70ae1858c img.shogun-image {
  width: 100%;
}



}
#s-031943d1-a996-4734-b349-1b1c270c89f4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-031943d1-a996-4734-b349-1b1c270c89f4 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-031943d1-a996-4734-b349-1b1c270c89f4 .shogun-heading-component h3 a {
  color: #000;
}


#s-17bc27b6-b41f-441a-838f-d3c3f1c114e3 {
  display: none;
}
#s-8b114f58-a0e3-403a-a9b3-866f231a40c3 {
  text-align: left;
}



.shg-c#s-8b114f58-a0e3-403a-a9b3-866f231a40c3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8b114f58-a0e3-403a-a9b3-866f231a40c3 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-8b114f58-a0e3-403a-a9b3-866f231a40c3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8b114f58-a0e3-403a-a9b3-866f231a40c3 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8b114f58-a0e3-403a-a9b3-866f231a40c3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8b114f58-a0e3-403a-a9b3-866f231a40c3 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8b114f58-a0e3-403a-a9b3-866f231a40c3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8b114f58-a0e3-403a-a9b3-866f231a40c3 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8b114f58-a0e3-403a-a9b3-866f231a40c3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8b114f58-a0e3-403a-a9b3-866f231a40c3 img.shogun-image {
  width: 100%;
}



}
#s-bf15e963-a980-478c-b2cd-941b8027c3ec {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-bf15e963-a980-478c-b2cd-941b8027c3ec .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-bf15e963-a980-478c-b2cd-941b8027c3ec .shogun-heading-component h3 a {
  color: #000;
}


#s-191072a4-3772-4a0a-afea-920305ba1f66 {
  display: none;
}
#s-31094355-1e91-4614-8a9b-b18f0488c7be {
  text-align: left;
}



.shg-c#s-31094355-1e91-4614-8a9b-b18f0488c7be .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-31094355-1e91-4614-8a9b-b18f0488c7be img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-31094355-1e91-4614-8a9b-b18f0488c7be .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-31094355-1e91-4614-8a9b-b18f0488c7be img.shogun-image {
  width: 100%;
}



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

.shg-c#s-31094355-1e91-4614-8a9b-b18f0488c7be .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-31094355-1e91-4614-8a9b-b18f0488c7be img.shogun-image {
  width: 100%;
}



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

.shg-c#s-31094355-1e91-4614-8a9b-b18f0488c7be .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-31094355-1e91-4614-8a9b-b18f0488c7be img.shogun-image {
  width: 100%;
}



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

.shg-c#s-31094355-1e91-4614-8a9b-b18f0488c7be .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-31094355-1e91-4614-8a9b-b18f0488c7be img.shogun-image {
  width: 100%;
}



}
#s-322db7cf-4e49-4cdd-9377-4c45568760fa {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-322db7cf-4e49-4cdd-9377-4c45568760fa .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-322db7cf-4e49-4cdd-9377-4c45568760fa .shogun-heading-component h3 a {
  color: #000;
}


#s-2bd05d7f-178a-4305-9ac0-4774c8881fac {
  display: none;
}
#s-a2f77a6e-8cf4-47b1-9190-e438cf4b8e64 {
  text-align: left;
}



.shg-c#s-a2f77a6e-8cf4-47b1-9190-e438cf4b8e64 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a2f77a6e-8cf4-47b1-9190-e438cf4b8e64 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-a2f77a6e-8cf4-47b1-9190-e438cf4b8e64 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a2f77a6e-8cf4-47b1-9190-e438cf4b8e64 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a2f77a6e-8cf4-47b1-9190-e438cf4b8e64 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a2f77a6e-8cf4-47b1-9190-e438cf4b8e64 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a2f77a6e-8cf4-47b1-9190-e438cf4b8e64 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a2f77a6e-8cf4-47b1-9190-e438cf4b8e64 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a2f77a6e-8cf4-47b1-9190-e438cf4b8e64 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a2f77a6e-8cf4-47b1-9190-e438cf4b8e64 img.shogun-image {
  width: 100%;
}



}
#s-ae772d63-7c32-4dda-98c1-49d23005abde {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ae772d63-7c32-4dda-98c1-49d23005abde .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-ae772d63-7c32-4dda-98c1-49d23005abde .shogun-heading-component h3 a {
  color: #000;
}


#s-4b1106e2-028a-425a-8b0f-29b87ab6a297 {
  display: none;
}
#s-4b58accc-9223-4c2c-807f-321f699388d8 {
  text-align: left;
}



.shg-c#s-4b58accc-9223-4c2c-807f-321f699388d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4b58accc-9223-4c2c-807f-321f699388d8 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-4b58accc-9223-4c2c-807f-321f699388d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4b58accc-9223-4c2c-807f-321f699388d8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4b58accc-9223-4c2c-807f-321f699388d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4b58accc-9223-4c2c-807f-321f699388d8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4b58accc-9223-4c2c-807f-321f699388d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4b58accc-9223-4c2c-807f-321f699388d8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4b58accc-9223-4c2c-807f-321f699388d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4b58accc-9223-4c2c-807f-321f699388d8 img.shogun-image {
  width: 100%;
}



}
#s-332c20cb-f029-4378-b04e-54ac9be06709 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-332c20cb-f029-4378-b04e-54ac9be06709 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-332c20cb-f029-4378-b04e-54ac9be06709 .shogun-heading-component h3 a {
  color: #000;
}


#s-2a57d897-c397-4b0b-b943-5cef026179c7 {
  min-height: 50px;
}








#s-2a57d897-c397-4b0b-b943-5cef026179c7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2a57d897-c397-4b0b-b943-5cef026179c7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-72214274-7334-4156-b2c1-69b5e78c459f {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-72214274-7334-4156-b2c1-69b5e78c459f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-72214274-7334-4156-b2c1-69b5e78c459f"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-72214274-7334-4156-b2c1-69b5e78c459f"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-72214274-7334-4156-b2c1-69b5e78c459f"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-97a0a7e7-1322-44e7-8b7a-70f7c12c7cfb {
  display: none;
}
#s-0abb971c-8647-4549-b2f6-d8ba988cec4e {
  text-align: left;
}



.shg-c#s-0abb971c-8647-4549-b2f6-d8ba988cec4e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0abb971c-8647-4549-b2f6-d8ba988cec4e img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-0abb971c-8647-4549-b2f6-d8ba988cec4e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0abb971c-8647-4549-b2f6-d8ba988cec4e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0abb971c-8647-4549-b2f6-d8ba988cec4e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0abb971c-8647-4549-b2f6-d8ba988cec4e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0abb971c-8647-4549-b2f6-d8ba988cec4e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0abb971c-8647-4549-b2f6-d8ba988cec4e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0abb971c-8647-4549-b2f6-d8ba988cec4e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0abb971c-8647-4549-b2f6-d8ba988cec4e img.shogun-image {
  width: 100%;
}



}
#s-8c3eb40d-5c48-47dd-b0a3-b47db80b760f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8c3eb40d-5c48-47dd-b0a3-b47db80b760f .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-8c3eb40d-5c48-47dd-b0a3-b47db80b760f .shogun-heading-component h3 a {
  color: #000;
}


#s-f5b31fb9-1c55-4561-9208-b0220539a369 {
  display: none;
}
#s-afdbd930-bf04-4b53-83ee-a17c6586d544 {
  text-align: left;
}



.shg-c#s-afdbd930-bf04-4b53-83ee-a17c6586d544 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-afdbd930-bf04-4b53-83ee-a17c6586d544 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-afdbd930-bf04-4b53-83ee-a17c6586d544 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-afdbd930-bf04-4b53-83ee-a17c6586d544 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-afdbd930-bf04-4b53-83ee-a17c6586d544 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-afdbd930-bf04-4b53-83ee-a17c6586d544 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-afdbd930-bf04-4b53-83ee-a17c6586d544 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-afdbd930-bf04-4b53-83ee-a17c6586d544 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-afdbd930-bf04-4b53-83ee-a17c6586d544 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-afdbd930-bf04-4b53-83ee-a17c6586d544 img.shogun-image {
  width: 100%;
}



}
#s-ec03ce55-a5a7-4d9b-8569-362554439c3b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ec03ce55-a5a7-4d9b-8569-362554439c3b .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-ec03ce55-a5a7-4d9b-8569-362554439c3b .shogun-heading-component h3 a {
  color: #000;
}


#s-86675580-e475-4e7b-8671-019fcf296605 {
  display: none;
}
#s-0aafc13f-a2aa-43e3-8ab7-efc3adb21d69 {
  text-align: left;
}



.shg-c#s-0aafc13f-a2aa-43e3-8ab7-efc3adb21d69 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0aafc13f-a2aa-43e3-8ab7-efc3adb21d69 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-0aafc13f-a2aa-43e3-8ab7-efc3adb21d69 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0aafc13f-a2aa-43e3-8ab7-efc3adb21d69 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0aafc13f-a2aa-43e3-8ab7-efc3adb21d69 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0aafc13f-a2aa-43e3-8ab7-efc3adb21d69 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0aafc13f-a2aa-43e3-8ab7-efc3adb21d69 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0aafc13f-a2aa-43e3-8ab7-efc3adb21d69 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0aafc13f-a2aa-43e3-8ab7-efc3adb21d69 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0aafc13f-a2aa-43e3-8ab7-efc3adb21d69 img.shogun-image {
  width: 100%;
}



}
#s-922ae05a-a9ec-4bb8-94b6-9f61b8781972 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-922ae05a-a9ec-4bb8-94b6-9f61b8781972 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-922ae05a-a9ec-4bb8-94b6-9f61b8781972 .shogun-heading-component h3 a {
  color: #000;
}


#s-f2c51f52-0da4-415e-91a0-2e7f98b30064 {
  display: none;
}
#s-ebd3b030-38f1-4be4-b868-c2cf908aa247 {
  text-align: left;
}



.shg-c#s-ebd3b030-38f1-4be4-b868-c2cf908aa247 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ebd3b030-38f1-4be4-b868-c2cf908aa247 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-ebd3b030-38f1-4be4-b868-c2cf908aa247 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ebd3b030-38f1-4be4-b868-c2cf908aa247 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ebd3b030-38f1-4be4-b868-c2cf908aa247 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ebd3b030-38f1-4be4-b868-c2cf908aa247 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ebd3b030-38f1-4be4-b868-c2cf908aa247 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ebd3b030-38f1-4be4-b868-c2cf908aa247 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ebd3b030-38f1-4be4-b868-c2cf908aa247 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ebd3b030-38f1-4be4-b868-c2cf908aa247 img.shogun-image {
  width: 100%;
}



}
#s-cbfba809-9527-4cda-800c-2f3a270831c3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-cbfba809-9527-4cda-800c-2f3a270831c3 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-cbfba809-9527-4cda-800c-2f3a270831c3 .shogun-heading-component h3 a {
  color: #000;
}


#s-f8be5c68-0a48-4152-9583-f4bf416e0da6 {
  display: none;
}
#s-ea970dcb-56ec-4cb9-8e18-3067bd25d07d {
  text-align: left;
}



.shg-c#s-ea970dcb-56ec-4cb9-8e18-3067bd25d07d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ea970dcb-56ec-4cb9-8e18-3067bd25d07d img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-ea970dcb-56ec-4cb9-8e18-3067bd25d07d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ea970dcb-56ec-4cb9-8e18-3067bd25d07d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ea970dcb-56ec-4cb9-8e18-3067bd25d07d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ea970dcb-56ec-4cb9-8e18-3067bd25d07d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ea970dcb-56ec-4cb9-8e18-3067bd25d07d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ea970dcb-56ec-4cb9-8e18-3067bd25d07d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ea970dcb-56ec-4cb9-8e18-3067bd25d07d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ea970dcb-56ec-4cb9-8e18-3067bd25d07d img.shogun-image {
  width: 100%;
}



}
#s-1b75db9e-80a4-4f58-9032-43b2361d268d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1b75db9e-80a4-4f58-9032-43b2361d268d .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-1b75db9e-80a4-4f58-9032-43b2361d268d .shogun-heading-component h3 a {
  color: #000;
}


#s-1075f1b6-4030-421f-aeb4-790e439037c4 {
  display: none;
}
#s-8fa5d842-1fb1-4b2b-8836-d72b62ec4864 {
  text-align: left;
}



.shg-c#s-8fa5d842-1fb1-4b2b-8836-d72b62ec4864 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8fa5d842-1fb1-4b2b-8836-d72b62ec4864 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-8fa5d842-1fb1-4b2b-8836-d72b62ec4864 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8fa5d842-1fb1-4b2b-8836-d72b62ec4864 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8fa5d842-1fb1-4b2b-8836-d72b62ec4864 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8fa5d842-1fb1-4b2b-8836-d72b62ec4864 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8fa5d842-1fb1-4b2b-8836-d72b62ec4864 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8fa5d842-1fb1-4b2b-8836-d72b62ec4864 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8fa5d842-1fb1-4b2b-8836-d72b62ec4864 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8fa5d842-1fb1-4b2b-8836-d72b62ec4864 img.shogun-image {
  width: 100%;
}



}
#s-3c3a4d12-ab8d-441c-907b-f0b99077bb30 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3c3a4d12-ab8d-441c-907b-f0b99077bb30 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-3c3a4d12-ab8d-441c-907b-f0b99077bb30 .shogun-heading-component h3 a {
  color: #000;
}


#s-9dfe8c0e-76ee-4bb2-a64e-4f926adb7e49 {
  min-height: 50px;
}








#s-9dfe8c0e-76ee-4bb2-a64e-4f926adb7e49 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9dfe8c0e-76ee-4bb2-a64e-4f926adb7e49.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c2476ad5-c9af-47a0-9f7e-fc44592004c3 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-c2476ad5-c9af-47a0-9f7e-fc44592004c3"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-c2476ad5-c9af-47a0-9f7e-fc44592004c3"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-c2476ad5-c9af-47a0-9f7e-fc44592004c3"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-c2476ad5-c9af-47a0-9f7e-fc44592004c3"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-c4da8a54-35d8-4b30-9b20-4a9df242f952 {
  display: none;
}
#s-62a3b4c4-6464-4e32-b64c-bf564d1836a0 {
  text-align: left;
}



.shg-c#s-62a3b4c4-6464-4e32-b64c-bf564d1836a0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-62a3b4c4-6464-4e32-b64c-bf564d1836a0 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-62a3b4c4-6464-4e32-b64c-bf564d1836a0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-62a3b4c4-6464-4e32-b64c-bf564d1836a0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-62a3b4c4-6464-4e32-b64c-bf564d1836a0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-62a3b4c4-6464-4e32-b64c-bf564d1836a0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-62a3b4c4-6464-4e32-b64c-bf564d1836a0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-62a3b4c4-6464-4e32-b64c-bf564d1836a0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-62a3b4c4-6464-4e32-b64c-bf564d1836a0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-62a3b4c4-6464-4e32-b64c-bf564d1836a0 img.shogun-image {
  width: 100%;
}



}
#s-a09497e6-168b-4ba6-9c07-1a23f3e82d2f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a09497e6-168b-4ba6-9c07-1a23f3e82d2f .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-a09497e6-168b-4ba6-9c07-1a23f3e82d2f .shogun-heading-component h3 a {
  color: #000;
}


#s-1ce13639-969c-470e-9589-b3e953dfafbe {
  display: none;
}
#s-5b5c7ab5-9f33-4152-9599-0ced05c5b737 {
  text-align: left;
}



.shg-c#s-5b5c7ab5-9f33-4152-9599-0ced05c5b737 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5b5c7ab5-9f33-4152-9599-0ced05c5b737 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-5b5c7ab5-9f33-4152-9599-0ced05c5b737 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5b5c7ab5-9f33-4152-9599-0ced05c5b737 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5b5c7ab5-9f33-4152-9599-0ced05c5b737 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5b5c7ab5-9f33-4152-9599-0ced05c5b737 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5b5c7ab5-9f33-4152-9599-0ced05c5b737 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5b5c7ab5-9f33-4152-9599-0ced05c5b737 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5b5c7ab5-9f33-4152-9599-0ced05c5b737 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5b5c7ab5-9f33-4152-9599-0ced05c5b737 img.shogun-image {
  width: 100%;
}



}
#s-0c402272-416e-4dbb-8882-e7711822d702 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0c402272-416e-4dbb-8882-e7711822d702 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-0c402272-416e-4dbb-8882-e7711822d702 .shogun-heading-component h3 a {
  color: #000;
}


#s-50f8d4b7-b2fd-491f-89cb-3b1b2aaefcc2 {
  display: none;
}
#s-7111b58d-fb03-4bd9-89c0-ac8f5b316bed {
  text-align: left;
}



.shg-c#s-7111b58d-fb03-4bd9-89c0-ac8f5b316bed .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7111b58d-fb03-4bd9-89c0-ac8f5b316bed img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-7111b58d-fb03-4bd9-89c0-ac8f5b316bed .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7111b58d-fb03-4bd9-89c0-ac8f5b316bed img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7111b58d-fb03-4bd9-89c0-ac8f5b316bed .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7111b58d-fb03-4bd9-89c0-ac8f5b316bed img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7111b58d-fb03-4bd9-89c0-ac8f5b316bed .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7111b58d-fb03-4bd9-89c0-ac8f5b316bed img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7111b58d-fb03-4bd9-89c0-ac8f5b316bed .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7111b58d-fb03-4bd9-89c0-ac8f5b316bed img.shogun-image {
  width: 100%;
}



}
#s-2ce1e51b-de8f-49cb-b3f6-6e120dfb802f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2ce1e51b-de8f-49cb-b3f6-6e120dfb802f .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-2ce1e51b-de8f-49cb-b3f6-6e120dfb802f .shogun-heading-component h3 a {
  color: #000;
}


#s-ee2c94e7-dad6-4bc8-b7ac-539b5a03e567 {
  display: none;
}
#s-6c8f1929-f110-414e-b550-653b4d6774ba {
  text-align: left;
}



.shg-c#s-6c8f1929-f110-414e-b550-653b4d6774ba .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6c8f1929-f110-414e-b550-653b4d6774ba img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-6c8f1929-f110-414e-b550-653b4d6774ba .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6c8f1929-f110-414e-b550-653b4d6774ba img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6c8f1929-f110-414e-b550-653b4d6774ba .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6c8f1929-f110-414e-b550-653b4d6774ba img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6c8f1929-f110-414e-b550-653b4d6774ba .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6c8f1929-f110-414e-b550-653b4d6774ba img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6c8f1929-f110-414e-b550-653b4d6774ba .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6c8f1929-f110-414e-b550-653b4d6774ba img.shogun-image {
  width: 100%;
}



}
#s-cc3aaa08-5c38-442a-9f6b-ec61474a3a42 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-cc3aaa08-5c38-442a-9f6b-ec61474a3a42 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-cc3aaa08-5c38-442a-9f6b-ec61474a3a42 .shogun-heading-component h3 a {
  color: #000;
}


#s-0e04b949-caa2-4e20-9249-bda8b171354f {
  display: none;
}
#s-5cd50184-34fd-421d-af70-a2108389c85e {
  text-align: left;
}



.shg-c#s-5cd50184-34fd-421d-af70-a2108389c85e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5cd50184-34fd-421d-af70-a2108389c85e img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-5cd50184-34fd-421d-af70-a2108389c85e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5cd50184-34fd-421d-af70-a2108389c85e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5cd50184-34fd-421d-af70-a2108389c85e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5cd50184-34fd-421d-af70-a2108389c85e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5cd50184-34fd-421d-af70-a2108389c85e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5cd50184-34fd-421d-af70-a2108389c85e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5cd50184-34fd-421d-af70-a2108389c85e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5cd50184-34fd-421d-af70-a2108389c85e img.shogun-image {
  width: 100%;
}



}
#s-1d809768-81eb-4a77-9743-16529d823b05 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1d809768-81eb-4a77-9743-16529d823b05 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-1d809768-81eb-4a77-9743-16529d823b05 .shogun-heading-component h3 a {
  color: #000;
}


#s-160452fb-0bd9-49aa-994c-cb75f2ecff51 {
  display: none;
}
#s-2f13a7e8-4bde-4911-b139-631f2eadc953 {
  text-align: left;
}



.shg-c#s-2f13a7e8-4bde-4911-b139-631f2eadc953 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2f13a7e8-4bde-4911-b139-631f2eadc953 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-2f13a7e8-4bde-4911-b139-631f2eadc953 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2f13a7e8-4bde-4911-b139-631f2eadc953 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-2f13a7e8-4bde-4911-b139-631f2eadc953 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2f13a7e8-4bde-4911-b139-631f2eadc953 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-2f13a7e8-4bde-4911-b139-631f2eadc953 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2f13a7e8-4bde-4911-b139-631f2eadc953 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-2f13a7e8-4bde-4911-b139-631f2eadc953 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2f13a7e8-4bde-4911-b139-631f2eadc953 img.shogun-image {
  width: 100%;
}



}
#s-236ab9cc-8b13-4504-b640-28a080ac9aca {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-236ab9cc-8b13-4504-b640-28a080ac9aca .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-236ab9cc-8b13-4504-b640-28a080ac9aca .shogun-heading-component h3 a {
  color: #000;
}


#s-37b51352-6542-44d1-afa4-0ca5547a4b66 {
  min-height: 50px;
}








#s-37b51352-6542-44d1-afa4-0ca5547a4b66 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-37b51352-6542-44d1-afa4-0ca5547a4b66.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b8320d05-3aaf-4c9d-945e-d11b06d32c73 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-b8320d05-3aaf-4c9d-945e-d11b06d32c73"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-b8320d05-3aaf-4c9d-945e-d11b06d32c73"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-b8320d05-3aaf-4c9d-945e-d11b06d32c73"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-b8320d05-3aaf-4c9d-945e-d11b06d32c73"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-0d509ee8-ec4c-4550-af4e-fd089aeab6ed {
  display: none;
}
#s-cf8b7b0b-996b-409a-9e9f-a9688cc81350 {
  text-align: left;
}



.shg-c#s-cf8b7b0b-996b-409a-9e9f-a9688cc81350 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cf8b7b0b-996b-409a-9e9f-a9688cc81350 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-cf8b7b0b-996b-409a-9e9f-a9688cc81350 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cf8b7b0b-996b-409a-9e9f-a9688cc81350 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-cf8b7b0b-996b-409a-9e9f-a9688cc81350 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cf8b7b0b-996b-409a-9e9f-a9688cc81350 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-cf8b7b0b-996b-409a-9e9f-a9688cc81350 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cf8b7b0b-996b-409a-9e9f-a9688cc81350 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-cf8b7b0b-996b-409a-9e9f-a9688cc81350 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cf8b7b0b-996b-409a-9e9f-a9688cc81350 img.shogun-image {
  width: 100%;
}



}
#s-73912a5f-9018-4660-a4ba-7d3c1fa2a9c3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-73912a5f-9018-4660-a4ba-7d3c1fa2a9c3 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-73912a5f-9018-4660-a4ba-7d3c1fa2a9c3 .shogun-heading-component h3 a {
  color: #000;
}


#s-f895bc60-bdee-43af-b0a6-42d349eff480 {
  display: none;
}
#s-3df83ce1-2f25-49d8-ad01-928aeacf79ad {
  text-align: left;
}



.shg-c#s-3df83ce1-2f25-49d8-ad01-928aeacf79ad .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3df83ce1-2f25-49d8-ad01-928aeacf79ad img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-3df83ce1-2f25-49d8-ad01-928aeacf79ad .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3df83ce1-2f25-49d8-ad01-928aeacf79ad img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3df83ce1-2f25-49d8-ad01-928aeacf79ad .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3df83ce1-2f25-49d8-ad01-928aeacf79ad img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3df83ce1-2f25-49d8-ad01-928aeacf79ad .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3df83ce1-2f25-49d8-ad01-928aeacf79ad img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3df83ce1-2f25-49d8-ad01-928aeacf79ad .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3df83ce1-2f25-49d8-ad01-928aeacf79ad img.shogun-image {
  width: 100%;
}



}
#s-76d71db9-86b4-40bd-9a6a-69b19cc26fc6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-76d71db9-86b4-40bd-9a6a-69b19cc26fc6 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-76d71db9-86b4-40bd-9a6a-69b19cc26fc6 .shogun-heading-component h3 a {
  color: #000;
}


#s-b450c8e3-d582-4265-9e73-f79de4c9e4ed {
  display: none;
}
#s-195fb683-6a84-4461-ae78-7347777bb9c8 {
  text-align: left;
}



.shg-c#s-195fb683-6a84-4461-ae78-7347777bb9c8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-195fb683-6a84-4461-ae78-7347777bb9c8 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-195fb683-6a84-4461-ae78-7347777bb9c8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-195fb683-6a84-4461-ae78-7347777bb9c8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-195fb683-6a84-4461-ae78-7347777bb9c8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-195fb683-6a84-4461-ae78-7347777bb9c8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-195fb683-6a84-4461-ae78-7347777bb9c8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-195fb683-6a84-4461-ae78-7347777bb9c8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-195fb683-6a84-4461-ae78-7347777bb9c8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-195fb683-6a84-4461-ae78-7347777bb9c8 img.shogun-image {
  width: 100%;
}



}
#s-3a5c5b6f-b77f-4bb7-adde-499b9bf37322 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3a5c5b6f-b77f-4bb7-adde-499b9bf37322 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-3a5c5b6f-b77f-4bb7-adde-499b9bf37322 .shogun-heading-component h3 a {
  color: #000;
}


#s-b7c79174-7332-4544-9cee-76137e19a8aa {
  display: none;
}
#s-0337d95d-bd4d-4a28-ab45-907f63d0e2da {
  text-align: left;
}



.shg-c#s-0337d95d-bd4d-4a28-ab45-907f63d0e2da .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0337d95d-bd4d-4a28-ab45-907f63d0e2da img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-0337d95d-bd4d-4a28-ab45-907f63d0e2da .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0337d95d-bd4d-4a28-ab45-907f63d0e2da img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0337d95d-bd4d-4a28-ab45-907f63d0e2da .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0337d95d-bd4d-4a28-ab45-907f63d0e2da img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0337d95d-bd4d-4a28-ab45-907f63d0e2da .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0337d95d-bd4d-4a28-ab45-907f63d0e2da img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0337d95d-bd4d-4a28-ab45-907f63d0e2da .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0337d95d-bd4d-4a28-ab45-907f63d0e2da img.shogun-image {
  width: 100%;
}



}
#s-45027745-3473-4f3f-a3e2-c72c1f13901e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-45027745-3473-4f3f-a3e2-c72c1f13901e .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-45027745-3473-4f3f-a3e2-c72c1f13901e .shogun-heading-component h3 a {
  color: #000;
}


#s-b00a31fc-7ea7-40ea-9641-adec86017ef3 {
  display: none;
}
#s-c60ce2ba-41b4-442d-b8c0-a26efd9b8a38 {
  text-align: left;
}



.shg-c#s-c60ce2ba-41b4-442d-b8c0-a26efd9b8a38 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c60ce2ba-41b4-442d-b8c0-a26efd9b8a38 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-c60ce2ba-41b4-442d-b8c0-a26efd9b8a38 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c60ce2ba-41b4-442d-b8c0-a26efd9b8a38 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c60ce2ba-41b4-442d-b8c0-a26efd9b8a38 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c60ce2ba-41b4-442d-b8c0-a26efd9b8a38 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c60ce2ba-41b4-442d-b8c0-a26efd9b8a38 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c60ce2ba-41b4-442d-b8c0-a26efd9b8a38 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c60ce2ba-41b4-442d-b8c0-a26efd9b8a38 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c60ce2ba-41b4-442d-b8c0-a26efd9b8a38 img.shogun-image {
  width: 100%;
}



}
#s-44b46ddc-d5bc-4762-a01b-728a7b04787e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-44b46ddc-d5bc-4762-a01b-728a7b04787e .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-44b46ddc-d5bc-4762-a01b-728a7b04787e .shogun-heading-component h3 a {
  color: #000;
}


#s-f56de460-9456-4198-a291-098b6f773733 {
  display: none;
}
#s-441e8d45-48ed-487f-9d91-d3fd0134c125 {
  text-align: left;
}



.shg-c#s-441e8d45-48ed-487f-9d91-d3fd0134c125 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-441e8d45-48ed-487f-9d91-d3fd0134c125 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-441e8d45-48ed-487f-9d91-d3fd0134c125 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-441e8d45-48ed-487f-9d91-d3fd0134c125 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-441e8d45-48ed-487f-9d91-d3fd0134c125 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-441e8d45-48ed-487f-9d91-d3fd0134c125 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-441e8d45-48ed-487f-9d91-d3fd0134c125 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-441e8d45-48ed-487f-9d91-d3fd0134c125 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-441e8d45-48ed-487f-9d91-d3fd0134c125 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-441e8d45-48ed-487f-9d91-d3fd0134c125 img.shogun-image {
  width: 100%;
}



}
#s-37be2cf7-d31d-4e9e-b16f-4c58f1a1dc33 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-37be2cf7-d31d-4e9e-b16f-4c58f1a1dc33 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-37be2cf7-d31d-4e9e-b16f-4c58f1a1dc33 .shogun-heading-component h3 a {
  color: #000;
}


#s-48b9db31-696c-4cc5-b46c-29350770a4e1 {
  min-height: 50px;
}








#s-48b9db31-696c-4cc5-b46c-29350770a4e1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-48b9db31-696c-4cc5-b46c-29350770a4e1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-088b0de5-6081-454d-9256-0e139417c43b {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}

@media (min-width: 0px) {
[id="s-088b0de5-6081-454d-9256-0e139417c43b"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-088b0de5-6081-454d-9256-0e139417c43b"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-088b0de5-6081-454d-9256-0e139417c43b"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-088b0de5-6081-454d-9256-0e139417c43b"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-fff2b696-f63e-487c-814b-69b05594a3df {
  display: none;
}
#s-ee23b44e-1f24-4a5d-8690-a56b7f5ddd1b {
  text-align: left;
}



.shg-c#s-ee23b44e-1f24-4a5d-8690-a56b7f5ddd1b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ee23b44e-1f24-4a5d-8690-a56b7f5ddd1b img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-ee23b44e-1f24-4a5d-8690-a56b7f5ddd1b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ee23b44e-1f24-4a5d-8690-a56b7f5ddd1b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ee23b44e-1f24-4a5d-8690-a56b7f5ddd1b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ee23b44e-1f24-4a5d-8690-a56b7f5ddd1b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ee23b44e-1f24-4a5d-8690-a56b7f5ddd1b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ee23b44e-1f24-4a5d-8690-a56b7f5ddd1b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ee23b44e-1f24-4a5d-8690-a56b7f5ddd1b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ee23b44e-1f24-4a5d-8690-a56b7f5ddd1b img.shogun-image {
  width: 100%;
}



}
#s-a645f941-e803-4a7c-b99d-1ece4a6579d8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a645f941-e803-4a7c-b99d-1ece4a6579d8 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-a645f941-e803-4a7c-b99d-1ece4a6579d8 .shogun-heading-component h3 a {
  color: #000;
}


#s-951e4f56-aa48-4343-908d-226f894dbbdf {
  display: none;
}
#s-c1251dd5-3b47-41b5-ace6-35b2c104dd18 {
  text-align: left;
}



.shg-c#s-c1251dd5-3b47-41b5-ace6-35b2c104dd18 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c1251dd5-3b47-41b5-ace6-35b2c104dd18 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-c1251dd5-3b47-41b5-ace6-35b2c104dd18 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c1251dd5-3b47-41b5-ace6-35b2c104dd18 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c1251dd5-3b47-41b5-ace6-35b2c104dd18 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c1251dd5-3b47-41b5-ace6-35b2c104dd18 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c1251dd5-3b47-41b5-ace6-35b2c104dd18 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c1251dd5-3b47-41b5-ace6-35b2c104dd18 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c1251dd5-3b47-41b5-ace6-35b2c104dd18 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c1251dd5-3b47-41b5-ace6-35b2c104dd18 img.shogun-image {
  width: 100%;
}



}
#s-8cc43d4e-06d6-440e-94d2-2e3199815202 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8cc43d4e-06d6-440e-94d2-2e3199815202 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-8cc43d4e-06d6-440e-94d2-2e3199815202 .shogun-heading-component h3 a {
  color: #000;
}


#s-f6408cb9-d330-4c91-bf93-6860c7e47907 {
  display: none;
}
#s-927b3480-26b7-4813-baaf-b5044e70be8b {
  text-align: left;
}



.shg-c#s-927b3480-26b7-4813-baaf-b5044e70be8b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-927b3480-26b7-4813-baaf-b5044e70be8b img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-927b3480-26b7-4813-baaf-b5044e70be8b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-927b3480-26b7-4813-baaf-b5044e70be8b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-927b3480-26b7-4813-baaf-b5044e70be8b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-927b3480-26b7-4813-baaf-b5044e70be8b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-927b3480-26b7-4813-baaf-b5044e70be8b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-927b3480-26b7-4813-baaf-b5044e70be8b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-927b3480-26b7-4813-baaf-b5044e70be8b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-927b3480-26b7-4813-baaf-b5044e70be8b img.shogun-image {
  width: 100%;
}



}
#s-10ee582c-a798-4f97-be0d-c7c28f307985 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-10ee582c-a798-4f97-be0d-c7c28f307985 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-10ee582c-a798-4f97-be0d-c7c28f307985 .shogun-heading-component h3 a {
  color: #000;
}


#s-fe9cb3df-ff0f-4c51-bdd8-cbad0565df70 {
  display: none;
}
#s-141e85ba-db71-4103-ba5b-424eeb6deb2d {
  text-align: left;
}



.shg-c#s-141e85ba-db71-4103-ba5b-424eeb6deb2d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-141e85ba-db71-4103-ba5b-424eeb6deb2d img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-141e85ba-db71-4103-ba5b-424eeb6deb2d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-141e85ba-db71-4103-ba5b-424eeb6deb2d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-141e85ba-db71-4103-ba5b-424eeb6deb2d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-141e85ba-db71-4103-ba5b-424eeb6deb2d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-141e85ba-db71-4103-ba5b-424eeb6deb2d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-141e85ba-db71-4103-ba5b-424eeb6deb2d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-141e85ba-db71-4103-ba5b-424eeb6deb2d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-141e85ba-db71-4103-ba5b-424eeb6deb2d img.shogun-image {
  width: 100%;
}



}
#s-6847e160-c5c7-4459-9a78-f92cbbe87931 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6847e160-c5c7-4459-9a78-f92cbbe87931 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-6847e160-c5c7-4459-9a78-f92cbbe87931 .shogun-heading-component h3 a {
  color: #000;
}


#s-479b84d4-28ac-47be-92c0-afeeee988300 {
  display: none;
}
#s-eac165bb-1c0a-4b3d-b6f6-fb3ae9f4ebd4 {
  text-align: left;
}



.shg-c#s-eac165bb-1c0a-4b3d-b6f6-fb3ae9f4ebd4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-eac165bb-1c0a-4b3d-b6f6-fb3ae9f4ebd4 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-eac165bb-1c0a-4b3d-b6f6-fb3ae9f4ebd4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-eac165bb-1c0a-4b3d-b6f6-fb3ae9f4ebd4 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-eac165bb-1c0a-4b3d-b6f6-fb3ae9f4ebd4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-eac165bb-1c0a-4b3d-b6f6-fb3ae9f4ebd4 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-eac165bb-1c0a-4b3d-b6f6-fb3ae9f4ebd4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-eac165bb-1c0a-4b3d-b6f6-fb3ae9f4ebd4 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-eac165bb-1c0a-4b3d-b6f6-fb3ae9f4ebd4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-eac165bb-1c0a-4b3d-b6f6-fb3ae9f4ebd4 img.shogun-image {
  width: 100%;
}



}
#s-4ab23cb5-3afc-49fe-996c-92f389c22fb6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4ab23cb5-3afc-49fe-996c-92f389c22fb6 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-4ab23cb5-3afc-49fe-996c-92f389c22fb6 .shogun-heading-component h3 a {
  color: #000;
}


#s-eb0c5a5f-47d7-4143-886a-c8e218f8f1d4 {
  display: none;
}
#s-1b8dba41-aeff-4278-be51-c4363806b2c4 {
  text-align: left;
}



.shg-c#s-1b8dba41-aeff-4278-be51-c4363806b2c4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1b8dba41-aeff-4278-be51-c4363806b2c4 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-1b8dba41-aeff-4278-be51-c4363806b2c4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1b8dba41-aeff-4278-be51-c4363806b2c4 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1b8dba41-aeff-4278-be51-c4363806b2c4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1b8dba41-aeff-4278-be51-c4363806b2c4 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1b8dba41-aeff-4278-be51-c4363806b2c4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1b8dba41-aeff-4278-be51-c4363806b2c4 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1b8dba41-aeff-4278-be51-c4363806b2c4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1b8dba41-aeff-4278-be51-c4363806b2c4 img.shogun-image {
  width: 100%;
}



}
#s-0e1e792f-ca86-4f00-81d2-c69f6e45314e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0e1e792f-ca86-4f00-81d2-c69f6e45314e .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-0e1e792f-ca86-4f00-81d2-c69f6e45314e .shogun-heading-component h3 a {
  color: #000;
}


#s-a42710f7-77d9-461d-b288-9585a3a3aeb8 {
  min-height: 50px;
}








#s-a42710f7-77d9-461d-b288-9585a3a3aeb8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a42710f7-77d9-461d-b288-9585a3a3aeb8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e5adfd49-5d0f-4925-9ec8-841b8d9420b5 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-e5adfd49-5d0f-4925-9ec8-841b8d9420b5"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-e5adfd49-5d0f-4925-9ec8-841b8d9420b5"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-e5adfd49-5d0f-4925-9ec8-841b8d9420b5"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-e5adfd49-5d0f-4925-9ec8-841b8d9420b5"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-60b40d99-e2c5-49d9-b17d-bf251f34a786 {
  display: none;
}
#s-0edcb247-8df5-4f20-85ee-7619ca1d515f {
  text-align: left;
}



.shg-c#s-0edcb247-8df5-4f20-85ee-7619ca1d515f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0edcb247-8df5-4f20-85ee-7619ca1d515f img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-0edcb247-8df5-4f20-85ee-7619ca1d515f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0edcb247-8df5-4f20-85ee-7619ca1d515f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0edcb247-8df5-4f20-85ee-7619ca1d515f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0edcb247-8df5-4f20-85ee-7619ca1d515f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0edcb247-8df5-4f20-85ee-7619ca1d515f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0edcb247-8df5-4f20-85ee-7619ca1d515f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0edcb247-8df5-4f20-85ee-7619ca1d515f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0edcb247-8df5-4f20-85ee-7619ca1d515f img.shogun-image {
  width: 100%;
}



}
#s-ef73f714-d212-4342-bb10-b84b8fa50bb0 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ef73f714-d212-4342-bb10-b84b8fa50bb0 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-ef73f714-d212-4342-bb10-b84b8fa50bb0 .shogun-heading-component h3 a {
  color: #000;
}


#s-2c058d8e-e3ec-4c83-adf6-81ec3a9ba230 {
  display: none;
}
#s-038f0451-1358-4bba-895f-c9646e8024b8 {
  text-align: left;
}



.shg-c#s-038f0451-1358-4bba-895f-c9646e8024b8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-038f0451-1358-4bba-895f-c9646e8024b8 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-038f0451-1358-4bba-895f-c9646e8024b8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-038f0451-1358-4bba-895f-c9646e8024b8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-038f0451-1358-4bba-895f-c9646e8024b8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-038f0451-1358-4bba-895f-c9646e8024b8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-038f0451-1358-4bba-895f-c9646e8024b8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-038f0451-1358-4bba-895f-c9646e8024b8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-038f0451-1358-4bba-895f-c9646e8024b8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-038f0451-1358-4bba-895f-c9646e8024b8 img.shogun-image {
  width: 100%;
}



}
#s-caffccdb-fc40-4d10-ae73-a8163c2c5f1c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-caffccdb-fc40-4d10-ae73-a8163c2c5f1c .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-caffccdb-fc40-4d10-ae73-a8163c2c5f1c .shogun-heading-component h3 a {
  color: #000;
}


#s-1cb71ba8-34a8-487b-a1e3-6b060ff090e6 {
  display: none;
}
#s-5be459ca-c8cc-4dec-acec-30eb78319c7b {
  text-align: left;
}



.shg-c#s-5be459ca-c8cc-4dec-acec-30eb78319c7b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5be459ca-c8cc-4dec-acec-30eb78319c7b img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-5be459ca-c8cc-4dec-acec-30eb78319c7b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5be459ca-c8cc-4dec-acec-30eb78319c7b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5be459ca-c8cc-4dec-acec-30eb78319c7b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5be459ca-c8cc-4dec-acec-30eb78319c7b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5be459ca-c8cc-4dec-acec-30eb78319c7b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5be459ca-c8cc-4dec-acec-30eb78319c7b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5be459ca-c8cc-4dec-acec-30eb78319c7b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5be459ca-c8cc-4dec-acec-30eb78319c7b img.shogun-image {
  width: 100%;
}



}
#s-7902a3e3-b959-4084-a0b2-3256ddba142d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7902a3e3-b959-4084-a0b2-3256ddba142d .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-7902a3e3-b959-4084-a0b2-3256ddba142d .shogun-heading-component h3 a {
  color: #000;
}


#s-4779dab7-17a0-4cff-a95d-9017f2fe0863 {
  display: none;
}
#s-8934586a-4b9b-4f26-95be-a8232819684f {
  text-align: left;
}



.shg-c#s-8934586a-4b9b-4f26-95be-a8232819684f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8934586a-4b9b-4f26-95be-a8232819684f img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-8934586a-4b9b-4f26-95be-a8232819684f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8934586a-4b9b-4f26-95be-a8232819684f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8934586a-4b9b-4f26-95be-a8232819684f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8934586a-4b9b-4f26-95be-a8232819684f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8934586a-4b9b-4f26-95be-a8232819684f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8934586a-4b9b-4f26-95be-a8232819684f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8934586a-4b9b-4f26-95be-a8232819684f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8934586a-4b9b-4f26-95be-a8232819684f img.shogun-image {
  width: 100%;
}



}
#s-1ba23ef2-071c-4d0f-ba54-7aba02903f55 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1ba23ef2-071c-4d0f-ba54-7aba02903f55 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-1ba23ef2-071c-4d0f-ba54-7aba02903f55 .shogun-heading-component h3 a {
  color: #000;
}


#s-3253adf5-2a95-42ca-9a7f-21c4b0a5761b {
  display: none;
}
#s-957fe712-2fb1-4a35-995f-39a1acc748b9 {
  text-align: left;
}



.shg-c#s-957fe712-2fb1-4a35-995f-39a1acc748b9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-957fe712-2fb1-4a35-995f-39a1acc748b9 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-957fe712-2fb1-4a35-995f-39a1acc748b9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-957fe712-2fb1-4a35-995f-39a1acc748b9 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-957fe712-2fb1-4a35-995f-39a1acc748b9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-957fe712-2fb1-4a35-995f-39a1acc748b9 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-957fe712-2fb1-4a35-995f-39a1acc748b9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-957fe712-2fb1-4a35-995f-39a1acc748b9 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-957fe712-2fb1-4a35-995f-39a1acc748b9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-957fe712-2fb1-4a35-995f-39a1acc748b9 img.shogun-image {
  width: 100%;
}



}
#s-1498c6a3-afc3-4fdf-a9f4-fddf7c4aecbd {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1498c6a3-afc3-4fdf-a9f4-fddf7c4aecbd .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-1498c6a3-afc3-4fdf-a9f4-fddf7c4aecbd .shogun-heading-component h3 a {
  color: #000;
}


#s-0b50a95f-050b-440d-8e21-b86d00a6b1f6 {
  display: none;
}
#s-d7c9ff27-288d-4e2d-82e4-eb2516c4136b {
  text-align: left;
}



.shg-c#s-d7c9ff27-288d-4e2d-82e4-eb2516c4136b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d7c9ff27-288d-4e2d-82e4-eb2516c4136b img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-d7c9ff27-288d-4e2d-82e4-eb2516c4136b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d7c9ff27-288d-4e2d-82e4-eb2516c4136b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d7c9ff27-288d-4e2d-82e4-eb2516c4136b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d7c9ff27-288d-4e2d-82e4-eb2516c4136b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d7c9ff27-288d-4e2d-82e4-eb2516c4136b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d7c9ff27-288d-4e2d-82e4-eb2516c4136b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d7c9ff27-288d-4e2d-82e4-eb2516c4136b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d7c9ff27-288d-4e2d-82e4-eb2516c4136b img.shogun-image {
  width: 100%;
}



}
#s-132c5646-2f38-45e7-ba59-df97d914dce6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-132c5646-2f38-45e7-ba59-df97d914dce6 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-132c5646-2f38-45e7-ba59-df97d914dce6 .shogun-heading-component h3 a {
  color: #000;
}


#s-2d7d0b2d-64a2-44cb-9b68-07d4725c3d80 {
  min-height: 50px;
}








#s-2d7d0b2d-64a2-44cb-9b68-07d4725c3d80 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2d7d0b2d-64a2-44cb-9b68-07d4725c3d80.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b28da21f-5e31-415e-be1e-3e332a630c62 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-b28da21f-5e31-415e-be1e-3e332a630c62"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-b28da21f-5e31-415e-be1e-3e332a630c62"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-b28da21f-5e31-415e-be1e-3e332a630c62"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-b28da21f-5e31-415e-be1e-3e332a630c62"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-8e69a91e-1050-45e9-b245-b138f919fb25 {
  display: none;
}
#s-c2c22167-9a06-4303-8d22-ef61ede80670 {
  text-align: left;
}



.shg-c#s-c2c22167-9a06-4303-8d22-ef61ede80670 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c2c22167-9a06-4303-8d22-ef61ede80670 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-c2c22167-9a06-4303-8d22-ef61ede80670 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c2c22167-9a06-4303-8d22-ef61ede80670 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c2c22167-9a06-4303-8d22-ef61ede80670 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c2c22167-9a06-4303-8d22-ef61ede80670 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c2c22167-9a06-4303-8d22-ef61ede80670 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c2c22167-9a06-4303-8d22-ef61ede80670 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c2c22167-9a06-4303-8d22-ef61ede80670 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c2c22167-9a06-4303-8d22-ef61ede80670 img.shogun-image {
  width: 100%;
}



}
#s-5397f6ea-c8c3-46e7-bcf1-4f05e683a029 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5397f6ea-c8c3-46e7-bcf1-4f05e683a029 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-5397f6ea-c8c3-46e7-bcf1-4f05e683a029 .shogun-heading-component h3 a {
  color: #000;
}


#s-c26f29be-5817-4415-aee2-e3c4d4ceacff {
  display: none;
}
#s-6695aed0-94fb-4ec6-9ecf-fa78d2c67bbb {
  text-align: left;
}



.shg-c#s-6695aed0-94fb-4ec6-9ecf-fa78d2c67bbb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6695aed0-94fb-4ec6-9ecf-fa78d2c67bbb img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-6695aed0-94fb-4ec6-9ecf-fa78d2c67bbb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6695aed0-94fb-4ec6-9ecf-fa78d2c67bbb img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6695aed0-94fb-4ec6-9ecf-fa78d2c67bbb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6695aed0-94fb-4ec6-9ecf-fa78d2c67bbb img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6695aed0-94fb-4ec6-9ecf-fa78d2c67bbb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6695aed0-94fb-4ec6-9ecf-fa78d2c67bbb img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6695aed0-94fb-4ec6-9ecf-fa78d2c67bbb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6695aed0-94fb-4ec6-9ecf-fa78d2c67bbb img.shogun-image {
  width: 100%;
}



}
#s-0302b271-4346-4968-b32a-fe3d06b4d9b4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0302b271-4346-4968-b32a-fe3d06b4d9b4 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-0302b271-4346-4968-b32a-fe3d06b4d9b4 .shogun-heading-component h3 a {
  color: #000;
}


#s-f2505f50-60ef-4041-be5d-d4ec84901cb5 {
  display: none;
}
#s-9c15acb0-5112-4367-9406-a9096dafd08a {
  text-align: left;
}



.shg-c#s-9c15acb0-5112-4367-9406-a9096dafd08a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9c15acb0-5112-4367-9406-a9096dafd08a img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-9c15acb0-5112-4367-9406-a9096dafd08a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9c15acb0-5112-4367-9406-a9096dafd08a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9c15acb0-5112-4367-9406-a9096dafd08a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9c15acb0-5112-4367-9406-a9096dafd08a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9c15acb0-5112-4367-9406-a9096dafd08a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9c15acb0-5112-4367-9406-a9096dafd08a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9c15acb0-5112-4367-9406-a9096dafd08a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9c15acb0-5112-4367-9406-a9096dafd08a img.shogun-image {
  width: 100%;
}



}
#s-a2397398-d931-4acf-987c-e31ab3b98f84 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a2397398-d931-4acf-987c-e31ab3b98f84 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-a2397398-d931-4acf-987c-e31ab3b98f84 .shogun-heading-component h3 a {
  color: #000;
}


#s-3cb76cf3-17eb-4923-8521-f34959e7d675 {
  display: none;
}
#s-97ddad8e-93de-45ba-a477-d0df181141ae {
  text-align: left;
}



.shg-c#s-97ddad8e-93de-45ba-a477-d0df181141ae .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-97ddad8e-93de-45ba-a477-d0df181141ae img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-97ddad8e-93de-45ba-a477-d0df181141ae .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-97ddad8e-93de-45ba-a477-d0df181141ae img.shogun-image {
  width: 100%;
}



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

.shg-c#s-97ddad8e-93de-45ba-a477-d0df181141ae .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-97ddad8e-93de-45ba-a477-d0df181141ae img.shogun-image {
  width: 100%;
}



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

.shg-c#s-97ddad8e-93de-45ba-a477-d0df181141ae .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-97ddad8e-93de-45ba-a477-d0df181141ae img.shogun-image {
  width: 100%;
}



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

.shg-c#s-97ddad8e-93de-45ba-a477-d0df181141ae .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-97ddad8e-93de-45ba-a477-d0df181141ae img.shogun-image {
  width: 100%;
}



}
#s-39468ec0-db3b-41f3-a59d-81a09bccb1a8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-39468ec0-db3b-41f3-a59d-81a09bccb1a8 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-39468ec0-db3b-41f3-a59d-81a09bccb1a8 .shogun-heading-component h3 a {
  color: #000;
}


#s-a18e2477-9bd7-445b-86ca-098df82e53dd {
  display: none;
}
#s-6a8f1d1d-cf91-477b-b623-6c17f3b7f431 {
  text-align: left;
}



.shg-c#s-6a8f1d1d-cf91-477b-b623-6c17f3b7f431 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6a8f1d1d-cf91-477b-b623-6c17f3b7f431 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-6a8f1d1d-cf91-477b-b623-6c17f3b7f431 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6a8f1d1d-cf91-477b-b623-6c17f3b7f431 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6a8f1d1d-cf91-477b-b623-6c17f3b7f431 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6a8f1d1d-cf91-477b-b623-6c17f3b7f431 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6a8f1d1d-cf91-477b-b623-6c17f3b7f431 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6a8f1d1d-cf91-477b-b623-6c17f3b7f431 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6a8f1d1d-cf91-477b-b623-6c17f3b7f431 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6a8f1d1d-cf91-477b-b623-6c17f3b7f431 img.shogun-image {
  width: 100%;
}



}
#s-dd454c2c-2982-4bb4-88a3-53b5ded6ae4e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-dd454c2c-2982-4bb4-88a3-53b5ded6ae4e .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-dd454c2c-2982-4bb4-88a3-53b5ded6ae4e .shogun-heading-component h3 a {
  color: #000;
}


#s-550bf558-5648-4d4a-bc8f-46331422bb4b {
  display: none;
}
#s-ccc3f018-26e7-4eb1-a388-a7b70d2033e2 {
  text-align: left;
}



.shg-c#s-ccc3f018-26e7-4eb1-a388-a7b70d2033e2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ccc3f018-26e7-4eb1-a388-a7b70d2033e2 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-ccc3f018-26e7-4eb1-a388-a7b70d2033e2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ccc3f018-26e7-4eb1-a388-a7b70d2033e2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ccc3f018-26e7-4eb1-a388-a7b70d2033e2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ccc3f018-26e7-4eb1-a388-a7b70d2033e2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ccc3f018-26e7-4eb1-a388-a7b70d2033e2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ccc3f018-26e7-4eb1-a388-a7b70d2033e2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ccc3f018-26e7-4eb1-a388-a7b70d2033e2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ccc3f018-26e7-4eb1-a388-a7b70d2033e2 img.shogun-image {
  width: 100%;
}



}
#s-f95fea29-5ad2-4225-82dc-1b5b03929f67 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f95fea29-5ad2-4225-82dc-1b5b03929f67 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-f95fea29-5ad2-4225-82dc-1b5b03929f67 .shogun-heading-component h3 a {
  color: #000;
}


#s-c8b16e4a-b5c8-418b-a48e-1e7fcff04409 {
  min-height: 50px;
}








#s-c8b16e4a-b5c8-418b-a48e-1e7fcff04409 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c8b16e4a-b5c8-418b-a48e-1e7fcff04409.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a5a64e6d-3277-48d1-a75a-da2c29c00f84 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-a5a64e6d-3277-48d1-a75a-da2c29c00f84"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-a5a64e6d-3277-48d1-a75a-da2c29c00f84"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-a5a64e6d-3277-48d1-a75a-da2c29c00f84"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-a5a64e6d-3277-48d1-a75a-da2c29c00f84"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-58bf8238-b813-48c9-a405-361ea83dc93c {
  display: none;
}
#s-7c21db68-4014-4ae5-b280-4fbacdbc348f {
  text-align: left;
}



.shg-c#s-7c21db68-4014-4ae5-b280-4fbacdbc348f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7c21db68-4014-4ae5-b280-4fbacdbc348f img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-7c21db68-4014-4ae5-b280-4fbacdbc348f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7c21db68-4014-4ae5-b280-4fbacdbc348f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7c21db68-4014-4ae5-b280-4fbacdbc348f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7c21db68-4014-4ae5-b280-4fbacdbc348f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7c21db68-4014-4ae5-b280-4fbacdbc348f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7c21db68-4014-4ae5-b280-4fbacdbc348f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7c21db68-4014-4ae5-b280-4fbacdbc348f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7c21db68-4014-4ae5-b280-4fbacdbc348f img.shogun-image {
  width: 100%;
}



}
#s-9e09ea4a-0c18-486d-963b-3984fc05f2f0 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9e09ea4a-0c18-486d-963b-3984fc05f2f0 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-9e09ea4a-0c18-486d-963b-3984fc05f2f0 .shogun-heading-component h3 a {
  color: #000;
}


#s-c7b511b9-d7eb-4e17-8f62-232ea84dda3b {
  display: none;
}
#s-bb26a0c2-8aaf-4a63-9070-aa0b26a72f7f {
  text-align: left;
}



.shg-c#s-bb26a0c2-8aaf-4a63-9070-aa0b26a72f7f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bb26a0c2-8aaf-4a63-9070-aa0b26a72f7f img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-bb26a0c2-8aaf-4a63-9070-aa0b26a72f7f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bb26a0c2-8aaf-4a63-9070-aa0b26a72f7f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-bb26a0c2-8aaf-4a63-9070-aa0b26a72f7f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bb26a0c2-8aaf-4a63-9070-aa0b26a72f7f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-bb26a0c2-8aaf-4a63-9070-aa0b26a72f7f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bb26a0c2-8aaf-4a63-9070-aa0b26a72f7f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-bb26a0c2-8aaf-4a63-9070-aa0b26a72f7f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bb26a0c2-8aaf-4a63-9070-aa0b26a72f7f img.shogun-image {
  width: 100%;
}



}
#s-55960d34-45a1-4684-baff-fa64cb6cf4f2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-55960d34-45a1-4684-baff-fa64cb6cf4f2 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-55960d34-45a1-4684-baff-fa64cb6cf4f2 .shogun-heading-component h3 a {
  color: #000;
}


#s-95720aa3-15ef-46e7-a430-04aed9896ab1 {
  display: none;
}
#s-da339160-ee65-440d-bfd8-8239cb1b7854 {
  text-align: left;
}



.shg-c#s-da339160-ee65-440d-bfd8-8239cb1b7854 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-da339160-ee65-440d-bfd8-8239cb1b7854 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-da339160-ee65-440d-bfd8-8239cb1b7854 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-da339160-ee65-440d-bfd8-8239cb1b7854 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-da339160-ee65-440d-bfd8-8239cb1b7854 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-da339160-ee65-440d-bfd8-8239cb1b7854 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-da339160-ee65-440d-bfd8-8239cb1b7854 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-da339160-ee65-440d-bfd8-8239cb1b7854 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-da339160-ee65-440d-bfd8-8239cb1b7854 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-da339160-ee65-440d-bfd8-8239cb1b7854 img.shogun-image {
  width: 100%;
}



}
#s-8a77fcc4-e70d-4f45-ac74-83474e776698 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8a77fcc4-e70d-4f45-ac74-83474e776698 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-8a77fcc4-e70d-4f45-ac74-83474e776698 .shogun-heading-component h3 a {
  color: #000;
}


#s-56aebc70-85e2-4f70-97c1-2a8bc5827988 {
  display: none;
}
#s-f32d5841-0379-4088-bcc7-43419b00311c {
  text-align: left;
}



.shg-c#s-f32d5841-0379-4088-bcc7-43419b00311c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f32d5841-0379-4088-bcc7-43419b00311c img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-f32d5841-0379-4088-bcc7-43419b00311c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f32d5841-0379-4088-bcc7-43419b00311c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f32d5841-0379-4088-bcc7-43419b00311c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f32d5841-0379-4088-bcc7-43419b00311c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f32d5841-0379-4088-bcc7-43419b00311c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f32d5841-0379-4088-bcc7-43419b00311c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f32d5841-0379-4088-bcc7-43419b00311c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f32d5841-0379-4088-bcc7-43419b00311c img.shogun-image {
  width: 100%;
}



}
#s-2d24b1f8-4395-4ab9-b50f-8b1dab39925b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2d24b1f8-4395-4ab9-b50f-8b1dab39925b .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-2d24b1f8-4395-4ab9-b50f-8b1dab39925b .shogun-heading-component h3 a {
  color: #000;
}


#s-0cdf7fa2-761b-4403-8c5e-1d1f95831bab {
  display: none;
}
#s-d2cc10a5-7923-48d3-a27a-2736c4db01e1 {
  text-align: left;
}



.shg-c#s-d2cc10a5-7923-48d3-a27a-2736c4db01e1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d2cc10a5-7923-48d3-a27a-2736c4db01e1 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-d2cc10a5-7923-48d3-a27a-2736c4db01e1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d2cc10a5-7923-48d3-a27a-2736c4db01e1 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d2cc10a5-7923-48d3-a27a-2736c4db01e1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d2cc10a5-7923-48d3-a27a-2736c4db01e1 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d2cc10a5-7923-48d3-a27a-2736c4db01e1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d2cc10a5-7923-48d3-a27a-2736c4db01e1 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d2cc10a5-7923-48d3-a27a-2736c4db01e1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d2cc10a5-7923-48d3-a27a-2736c4db01e1 img.shogun-image {
  width: 100%;
}



}
#s-1f63bc20-b4ea-42cd-8c8e-7912738abd39 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1f63bc20-b4ea-42cd-8c8e-7912738abd39 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-1f63bc20-b4ea-42cd-8c8e-7912738abd39 .shogun-heading-component h3 a {
  color: #000;
}


#s-094dee78-b7a4-4cd6-8e1d-eebcba191c4d {
  display: none;
}
#s-5e6fd404-9ebe-4e66-992a-53a2839a1c2d {
  text-align: left;
}



.shg-c#s-5e6fd404-9ebe-4e66-992a-53a2839a1c2d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5e6fd404-9ebe-4e66-992a-53a2839a1c2d img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-5e6fd404-9ebe-4e66-992a-53a2839a1c2d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5e6fd404-9ebe-4e66-992a-53a2839a1c2d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5e6fd404-9ebe-4e66-992a-53a2839a1c2d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5e6fd404-9ebe-4e66-992a-53a2839a1c2d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5e6fd404-9ebe-4e66-992a-53a2839a1c2d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5e6fd404-9ebe-4e66-992a-53a2839a1c2d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5e6fd404-9ebe-4e66-992a-53a2839a1c2d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5e6fd404-9ebe-4e66-992a-53a2839a1c2d img.shogun-image {
  width: 100%;
}



}
#s-48e0056c-ff1c-4c70-bafa-a9605c0c462e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-48e0056c-ff1c-4c70-bafa-a9605c0c462e .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-48e0056c-ff1c-4c70-bafa-a9605c0c462e .shogun-heading-component h3 a {
  color: #000;
}


#s-27978ed0-04d4-4ff5-9f76-f966f8578745 {
  min-height: 50px;
}








#s-27978ed0-04d4-4ff5-9f76-f966f8578745 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-27978ed0-04d4-4ff5-9f76-f966f8578745.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e6ada1aa-fd8a-4407-984e-d07d8f802fa9 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-e6ada1aa-fd8a-4407-984e-d07d8f802fa9"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-e6ada1aa-fd8a-4407-984e-d07d8f802fa9"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-e6ada1aa-fd8a-4407-984e-d07d8f802fa9"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-e6ada1aa-fd8a-4407-984e-d07d8f802fa9"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-9a8c3977-c723-44d0-9903-5c5bae479d55 {
  display: none;
}
#s-deebb679-0fbf-428f-bf3a-1353ab81b39e {
  text-align: left;
}



.shg-c#s-deebb679-0fbf-428f-bf3a-1353ab81b39e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-deebb679-0fbf-428f-bf3a-1353ab81b39e img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-deebb679-0fbf-428f-bf3a-1353ab81b39e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-deebb679-0fbf-428f-bf3a-1353ab81b39e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-deebb679-0fbf-428f-bf3a-1353ab81b39e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-deebb679-0fbf-428f-bf3a-1353ab81b39e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-deebb679-0fbf-428f-bf3a-1353ab81b39e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-deebb679-0fbf-428f-bf3a-1353ab81b39e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-deebb679-0fbf-428f-bf3a-1353ab81b39e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-deebb679-0fbf-428f-bf3a-1353ab81b39e img.shogun-image {
  width: 100%;
}



}
#s-acaf369f-8bfe-4684-b9cc-606e4935ecea {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-acaf369f-8bfe-4684-b9cc-606e4935ecea .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-acaf369f-8bfe-4684-b9cc-606e4935ecea .shogun-heading-component h3 a {
  color: #000;
}


#s-2a175c7a-385d-4444-a856-894d7a7277e2 {
  display: none;
}
#s-83b5c1ea-c710-4bd2-aa3a-c4747bf6bbb7 {
  text-align: left;
}



.shg-c#s-83b5c1ea-c710-4bd2-aa3a-c4747bf6bbb7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-83b5c1ea-c710-4bd2-aa3a-c4747bf6bbb7 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-83b5c1ea-c710-4bd2-aa3a-c4747bf6bbb7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-83b5c1ea-c710-4bd2-aa3a-c4747bf6bbb7 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-83b5c1ea-c710-4bd2-aa3a-c4747bf6bbb7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-83b5c1ea-c710-4bd2-aa3a-c4747bf6bbb7 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-83b5c1ea-c710-4bd2-aa3a-c4747bf6bbb7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-83b5c1ea-c710-4bd2-aa3a-c4747bf6bbb7 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-83b5c1ea-c710-4bd2-aa3a-c4747bf6bbb7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-83b5c1ea-c710-4bd2-aa3a-c4747bf6bbb7 img.shogun-image {
  width: 100%;
}



}
#s-e25f49ae-43db-44a4-b6a8-074c3b8a0662 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e25f49ae-43db-44a4-b6a8-074c3b8a0662 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-e25f49ae-43db-44a4-b6a8-074c3b8a0662 .shogun-heading-component h3 a {
  color: #000;
}


#s-42781f42-db1d-475d-af86-c5bf396de2c8 {
  display: none;
}
#s-8ce3b3e2-e8bb-4a9f-9aab-ff6fba61dde1 {
  text-align: left;
}



.shg-c#s-8ce3b3e2-e8bb-4a9f-9aab-ff6fba61dde1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8ce3b3e2-e8bb-4a9f-9aab-ff6fba61dde1 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-8ce3b3e2-e8bb-4a9f-9aab-ff6fba61dde1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8ce3b3e2-e8bb-4a9f-9aab-ff6fba61dde1 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8ce3b3e2-e8bb-4a9f-9aab-ff6fba61dde1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8ce3b3e2-e8bb-4a9f-9aab-ff6fba61dde1 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8ce3b3e2-e8bb-4a9f-9aab-ff6fba61dde1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8ce3b3e2-e8bb-4a9f-9aab-ff6fba61dde1 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8ce3b3e2-e8bb-4a9f-9aab-ff6fba61dde1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8ce3b3e2-e8bb-4a9f-9aab-ff6fba61dde1 img.shogun-image {
  width: 100%;
}



}
#s-9fe79be3-79ca-4165-9960-e1c73b5b632d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9fe79be3-79ca-4165-9960-e1c73b5b632d .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-9fe79be3-79ca-4165-9960-e1c73b5b632d .shogun-heading-component h3 a {
  color: #000;
}


#s-f96e5dac-cf06-4f45-8d37-1cb3d5f7164a {
  display: none;
}
#s-e00436c1-7329-4ffb-be7c-f8c1f97e3d06 {
  text-align: left;
}



.shg-c#s-e00436c1-7329-4ffb-be7c-f8c1f97e3d06 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e00436c1-7329-4ffb-be7c-f8c1f97e3d06 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-e00436c1-7329-4ffb-be7c-f8c1f97e3d06 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e00436c1-7329-4ffb-be7c-f8c1f97e3d06 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e00436c1-7329-4ffb-be7c-f8c1f97e3d06 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e00436c1-7329-4ffb-be7c-f8c1f97e3d06 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e00436c1-7329-4ffb-be7c-f8c1f97e3d06 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e00436c1-7329-4ffb-be7c-f8c1f97e3d06 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e00436c1-7329-4ffb-be7c-f8c1f97e3d06 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e00436c1-7329-4ffb-be7c-f8c1f97e3d06 img.shogun-image {
  width: 100%;
}



}
#s-e44be0da-a0fe-4282-9fd0-87b086eba9f8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e44be0da-a0fe-4282-9fd0-87b086eba9f8 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-e44be0da-a0fe-4282-9fd0-87b086eba9f8 .shogun-heading-component h3 a {
  color: #000;
}


#s-eff5ad87-576a-4dc0-9c40-66eaabcd4f33 {
  display: none;
}
#s-f0df0d2b-fc5a-4771-8ed9-ada12323a0c7 {
  text-align: left;
}



.shg-c#s-f0df0d2b-fc5a-4771-8ed9-ada12323a0c7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f0df0d2b-fc5a-4771-8ed9-ada12323a0c7 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-f0df0d2b-fc5a-4771-8ed9-ada12323a0c7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f0df0d2b-fc5a-4771-8ed9-ada12323a0c7 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f0df0d2b-fc5a-4771-8ed9-ada12323a0c7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f0df0d2b-fc5a-4771-8ed9-ada12323a0c7 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f0df0d2b-fc5a-4771-8ed9-ada12323a0c7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f0df0d2b-fc5a-4771-8ed9-ada12323a0c7 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f0df0d2b-fc5a-4771-8ed9-ada12323a0c7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f0df0d2b-fc5a-4771-8ed9-ada12323a0c7 img.shogun-image {
  width: 100%;
}



}
#s-33423d47-3ec5-4e11-9b8d-5097c7d38d5b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-33423d47-3ec5-4e11-9b8d-5097c7d38d5b .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-33423d47-3ec5-4e11-9b8d-5097c7d38d5b .shogun-heading-component h3 a {
  color: #000;
}


#s-5fff15a9-b183-4d4e-9299-3f52aa487cc8 {
  display: none;
}
#s-a535c435-5c4c-4831-a7eb-0bb6f56c8a9d {
  text-align: left;
}



.shg-c#s-a535c435-5c4c-4831-a7eb-0bb6f56c8a9d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a535c435-5c4c-4831-a7eb-0bb6f56c8a9d img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-a535c435-5c4c-4831-a7eb-0bb6f56c8a9d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a535c435-5c4c-4831-a7eb-0bb6f56c8a9d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a535c435-5c4c-4831-a7eb-0bb6f56c8a9d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a535c435-5c4c-4831-a7eb-0bb6f56c8a9d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a535c435-5c4c-4831-a7eb-0bb6f56c8a9d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a535c435-5c4c-4831-a7eb-0bb6f56c8a9d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a535c435-5c4c-4831-a7eb-0bb6f56c8a9d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a535c435-5c4c-4831-a7eb-0bb6f56c8a9d img.shogun-image {
  width: 100%;
}



}
#s-cc85e7b2-0244-4d3c-82f1-b67e000d931a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-cc85e7b2-0244-4d3c-82f1-b67e000d931a .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-cc85e7b2-0244-4d3c-82f1-b67e000d931a .shogun-heading-component h3 a {
  color: #000;
}


#s-62d6ba4f-9cb3-40d1-bb49-d9aa01fe6f74 {
  min-height: 50px;
}








#s-62d6ba4f-9cb3-40d1-bb49-d9aa01fe6f74 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-62d6ba4f-9cb3-40d1-bb49-d9aa01fe6f74.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6753d32d-55b2-4f7d-a8f7-962ad711b7b6 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-6753d32d-55b2-4f7d-a8f7-962ad711b7b6"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-6753d32d-55b2-4f7d-a8f7-962ad711b7b6"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-6753d32d-55b2-4f7d-a8f7-962ad711b7b6"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-6753d32d-55b2-4f7d-a8f7-962ad711b7b6"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-f71ad4cc-4253-433c-8092-63be2d318eb4 {
  display: none;
}
#s-00a401c6-b8d5-4437-87f3-1a2d06551543 {
  text-align: left;
}



.shg-c#s-00a401c6-b8d5-4437-87f3-1a2d06551543 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-00a401c6-b8d5-4437-87f3-1a2d06551543 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-00a401c6-b8d5-4437-87f3-1a2d06551543 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-00a401c6-b8d5-4437-87f3-1a2d06551543 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-00a401c6-b8d5-4437-87f3-1a2d06551543 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-00a401c6-b8d5-4437-87f3-1a2d06551543 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-00a401c6-b8d5-4437-87f3-1a2d06551543 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-00a401c6-b8d5-4437-87f3-1a2d06551543 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-00a401c6-b8d5-4437-87f3-1a2d06551543 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-00a401c6-b8d5-4437-87f3-1a2d06551543 img.shogun-image {
  width: 100%;
}



}
#s-a6dd8154-b16c-4b2b-8bcf-accb843faa16 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a6dd8154-b16c-4b2b-8bcf-accb843faa16 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-a6dd8154-b16c-4b2b-8bcf-accb843faa16 .shogun-heading-component h3 a {
  color: #000;
}


#s-6619f81c-8e39-4374-aa64-27ee0c08f86c {
  display: none;
}
#s-2cb3a277-b8d7-4956-90f0-a20a85479a1d {
  text-align: left;
}



.shg-c#s-2cb3a277-b8d7-4956-90f0-a20a85479a1d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2cb3a277-b8d7-4956-90f0-a20a85479a1d img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-2cb3a277-b8d7-4956-90f0-a20a85479a1d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2cb3a277-b8d7-4956-90f0-a20a85479a1d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-2cb3a277-b8d7-4956-90f0-a20a85479a1d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2cb3a277-b8d7-4956-90f0-a20a85479a1d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-2cb3a277-b8d7-4956-90f0-a20a85479a1d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2cb3a277-b8d7-4956-90f0-a20a85479a1d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-2cb3a277-b8d7-4956-90f0-a20a85479a1d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2cb3a277-b8d7-4956-90f0-a20a85479a1d img.shogun-image {
  width: 100%;
}



}
#s-0bacebc2-5486-4e1b-a30d-1c0c050d69c4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0bacebc2-5486-4e1b-a30d-1c0c050d69c4 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-0bacebc2-5486-4e1b-a30d-1c0c050d69c4 .shogun-heading-component h3 a {
  color: #000;
}


#s-811fec71-c961-4002-a9ea-a2ab3479e959 {
  display: none;
}
#s-5fd38901-d457-4b8a-bf7f-0d8d1d51ee37 {
  text-align: left;
}



.shg-c#s-5fd38901-d457-4b8a-bf7f-0d8d1d51ee37 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5fd38901-d457-4b8a-bf7f-0d8d1d51ee37 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-5fd38901-d457-4b8a-bf7f-0d8d1d51ee37 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5fd38901-d457-4b8a-bf7f-0d8d1d51ee37 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5fd38901-d457-4b8a-bf7f-0d8d1d51ee37 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5fd38901-d457-4b8a-bf7f-0d8d1d51ee37 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5fd38901-d457-4b8a-bf7f-0d8d1d51ee37 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5fd38901-d457-4b8a-bf7f-0d8d1d51ee37 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5fd38901-d457-4b8a-bf7f-0d8d1d51ee37 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5fd38901-d457-4b8a-bf7f-0d8d1d51ee37 img.shogun-image {
  width: 100%;
}



}
#s-f718b9bf-c8a0-4ae8-861f-b1ba0bf94c84 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f718b9bf-c8a0-4ae8-861f-b1ba0bf94c84 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-f718b9bf-c8a0-4ae8-861f-b1ba0bf94c84 .shogun-heading-component h3 a {
  color: #000;
}


#s-59e18030-f04b-452d-9a75-b0b9496d5545 {
  display: none;
}
#s-4353da13-bab3-471a-bd22-77aae27c631f {
  text-align: left;
}



.shg-c#s-4353da13-bab3-471a-bd22-77aae27c631f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4353da13-bab3-471a-bd22-77aae27c631f img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-4353da13-bab3-471a-bd22-77aae27c631f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4353da13-bab3-471a-bd22-77aae27c631f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4353da13-bab3-471a-bd22-77aae27c631f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4353da13-bab3-471a-bd22-77aae27c631f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4353da13-bab3-471a-bd22-77aae27c631f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4353da13-bab3-471a-bd22-77aae27c631f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4353da13-bab3-471a-bd22-77aae27c631f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4353da13-bab3-471a-bd22-77aae27c631f img.shogun-image {
  width: 100%;
}



}
#s-e7c3da78-9d3a-435c-9382-d1ee20328f48 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e7c3da78-9d3a-435c-9382-d1ee20328f48 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-e7c3da78-9d3a-435c-9382-d1ee20328f48 .shogun-heading-component h3 a {
  color: #000;
}


#s-b249e07d-2f02-490c-afdb-031f123bc6ab {
  display: none;
}
#s-88477a03-c484-4fd7-ad8e-c97d450d97bf {
  text-align: left;
}



.shg-c#s-88477a03-c484-4fd7-ad8e-c97d450d97bf .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-88477a03-c484-4fd7-ad8e-c97d450d97bf img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-88477a03-c484-4fd7-ad8e-c97d450d97bf .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-88477a03-c484-4fd7-ad8e-c97d450d97bf img.shogun-image {
  width: 100%;
}



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

.shg-c#s-88477a03-c484-4fd7-ad8e-c97d450d97bf .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-88477a03-c484-4fd7-ad8e-c97d450d97bf img.shogun-image {
  width: 100%;
}



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

.shg-c#s-88477a03-c484-4fd7-ad8e-c97d450d97bf .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-88477a03-c484-4fd7-ad8e-c97d450d97bf img.shogun-image {
  width: 100%;
}



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

.shg-c#s-88477a03-c484-4fd7-ad8e-c97d450d97bf .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-88477a03-c484-4fd7-ad8e-c97d450d97bf img.shogun-image {
  width: 100%;
}



}
#s-13245b69-f79e-4c76-90da-718ea1d02386 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-13245b69-f79e-4c76-90da-718ea1d02386 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-13245b69-f79e-4c76-90da-718ea1d02386 .shogun-heading-component h3 a {
  color: #000;
}


#s-697307b4-5770-432e-b336-0d4a91bce163 {
  display: none;
}
#s-63d3e5c3-8d32-4c4e-ad99-e02e71f25a3a {
  text-align: left;
}



.shg-c#s-63d3e5c3-8d32-4c4e-ad99-e02e71f25a3a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-63d3e5c3-8d32-4c4e-ad99-e02e71f25a3a img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-63d3e5c3-8d32-4c4e-ad99-e02e71f25a3a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-63d3e5c3-8d32-4c4e-ad99-e02e71f25a3a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-63d3e5c3-8d32-4c4e-ad99-e02e71f25a3a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-63d3e5c3-8d32-4c4e-ad99-e02e71f25a3a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-63d3e5c3-8d32-4c4e-ad99-e02e71f25a3a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-63d3e5c3-8d32-4c4e-ad99-e02e71f25a3a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-63d3e5c3-8d32-4c4e-ad99-e02e71f25a3a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-63d3e5c3-8d32-4c4e-ad99-e02e71f25a3a img.shogun-image {
  width: 100%;
}



}
#s-47b1605f-6b6b-4ceb-8099-83dcd6a3f419 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-47b1605f-6b6b-4ceb-8099-83dcd6a3f419 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-47b1605f-6b6b-4ceb-8099-83dcd6a3f419 .shogun-heading-component h3 a {
  color: #000;
}


#s-cf1540c8-5cb7-4318-8a81-a456e618080f {
  min-height: 50px;
}








#s-cf1540c8-5cb7-4318-8a81-a456e618080f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cf1540c8-5cb7-4318-8a81-a456e618080f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-33c20da3-3904-43f0-bfb3-84ee3b68ccfa {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-33c20da3-3904-43f0-bfb3-84ee3b68ccfa"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-33c20da3-3904-43f0-bfb3-84ee3b68ccfa"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-33c20da3-3904-43f0-bfb3-84ee3b68ccfa"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-33c20da3-3904-43f0-bfb3-84ee3b68ccfa"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-3133a9b1-1ee3-4c8e-a9ab-6f4082eec494 {
  display: none;
}
#s-0eccfb96-08a9-4736-85be-bd01562a392a {
  text-align: left;
}



.shg-c#s-0eccfb96-08a9-4736-85be-bd01562a392a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0eccfb96-08a9-4736-85be-bd01562a392a img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-0eccfb96-08a9-4736-85be-bd01562a392a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0eccfb96-08a9-4736-85be-bd01562a392a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0eccfb96-08a9-4736-85be-bd01562a392a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0eccfb96-08a9-4736-85be-bd01562a392a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0eccfb96-08a9-4736-85be-bd01562a392a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0eccfb96-08a9-4736-85be-bd01562a392a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0eccfb96-08a9-4736-85be-bd01562a392a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0eccfb96-08a9-4736-85be-bd01562a392a img.shogun-image {
  width: 100%;
}



}
#s-ff247bb5-e6ff-4dcb-8bf8-5e257f441fea {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ff247bb5-e6ff-4dcb-8bf8-5e257f441fea .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-ff247bb5-e6ff-4dcb-8bf8-5e257f441fea .shogun-heading-component h3 a {
  color: #000;
}


#s-da086fbc-cb4b-4ee9-a422-ba5df5bcde04 {
  display: none;
}
#s-efb54051-3923-48a6-aa31-eab734ff4d65 {
  text-align: left;
}



.shg-c#s-efb54051-3923-48a6-aa31-eab734ff4d65 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-efb54051-3923-48a6-aa31-eab734ff4d65 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-efb54051-3923-48a6-aa31-eab734ff4d65 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-efb54051-3923-48a6-aa31-eab734ff4d65 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-efb54051-3923-48a6-aa31-eab734ff4d65 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-efb54051-3923-48a6-aa31-eab734ff4d65 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-efb54051-3923-48a6-aa31-eab734ff4d65 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-efb54051-3923-48a6-aa31-eab734ff4d65 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-efb54051-3923-48a6-aa31-eab734ff4d65 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-efb54051-3923-48a6-aa31-eab734ff4d65 img.shogun-image {
  width: 100%;
}



}
#s-1084ce21-5cbc-4254-ae07-63ace44a632c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1084ce21-5cbc-4254-ae07-63ace44a632c .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-1084ce21-5cbc-4254-ae07-63ace44a632c .shogun-heading-component h3 a {
  color: #000;
}


#s-d4c21376-d8bc-4107-8cdf-71f316481909 {
  display: none;
}
#s-22e3a229-f314-40ed-864e-693da2edf1e7 {
  text-align: left;
}



.shg-c#s-22e3a229-f314-40ed-864e-693da2edf1e7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-22e3a229-f314-40ed-864e-693da2edf1e7 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-22e3a229-f314-40ed-864e-693da2edf1e7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-22e3a229-f314-40ed-864e-693da2edf1e7 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-22e3a229-f314-40ed-864e-693da2edf1e7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-22e3a229-f314-40ed-864e-693da2edf1e7 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-22e3a229-f314-40ed-864e-693da2edf1e7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-22e3a229-f314-40ed-864e-693da2edf1e7 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-22e3a229-f314-40ed-864e-693da2edf1e7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-22e3a229-f314-40ed-864e-693da2edf1e7 img.shogun-image {
  width: 100%;
}



}
#s-e8bf7014-a495-4aba-bf90-24ede7e821ce {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e8bf7014-a495-4aba-bf90-24ede7e821ce .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-e8bf7014-a495-4aba-bf90-24ede7e821ce .shogun-heading-component h3 a {
  color: #000;
}


#s-074944c5-0e3b-480f-bd81-697120981699 {
  display: none;
}
#s-d4e2821d-d043-478a-9c26-16189c5bfef2 {
  text-align: left;
}



.shg-c#s-d4e2821d-d043-478a-9c26-16189c5bfef2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d4e2821d-d043-478a-9c26-16189c5bfef2 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-d4e2821d-d043-478a-9c26-16189c5bfef2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d4e2821d-d043-478a-9c26-16189c5bfef2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d4e2821d-d043-478a-9c26-16189c5bfef2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d4e2821d-d043-478a-9c26-16189c5bfef2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d4e2821d-d043-478a-9c26-16189c5bfef2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d4e2821d-d043-478a-9c26-16189c5bfef2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d4e2821d-d043-478a-9c26-16189c5bfef2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d4e2821d-d043-478a-9c26-16189c5bfef2 img.shogun-image {
  width: 100%;
}



}
#s-99ef2a2c-dc54-4ee7-8568-ae6867633807 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-99ef2a2c-dc54-4ee7-8568-ae6867633807 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-99ef2a2c-dc54-4ee7-8568-ae6867633807 .shogun-heading-component h3 a {
  color: #000;
}


#s-00953b2b-5c97-4a16-a9b6-55337cc0a6fd {
  display: none;
}
#s-bf06158c-c675-4e9a-816c-06101e74be6b {
  text-align: left;
}



.shg-c#s-bf06158c-c675-4e9a-816c-06101e74be6b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bf06158c-c675-4e9a-816c-06101e74be6b img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-bf06158c-c675-4e9a-816c-06101e74be6b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bf06158c-c675-4e9a-816c-06101e74be6b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-bf06158c-c675-4e9a-816c-06101e74be6b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bf06158c-c675-4e9a-816c-06101e74be6b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-bf06158c-c675-4e9a-816c-06101e74be6b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bf06158c-c675-4e9a-816c-06101e74be6b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-bf06158c-c675-4e9a-816c-06101e74be6b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bf06158c-c675-4e9a-816c-06101e74be6b img.shogun-image {
  width: 100%;
}



}
#s-34746f07-68ab-4cdb-a575-52bc696bc8b3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-34746f07-68ab-4cdb-a575-52bc696bc8b3 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-34746f07-68ab-4cdb-a575-52bc696bc8b3 .shogun-heading-component h3 a {
  color: #000;
}


#s-ce4bde33-0efa-4e40-9c15-9f83ebc1a6a6 {
  display: none;
}
#s-7a59bd97-06ca-437f-9388-2f2bbfa30f73 {
  text-align: left;
}



.shg-c#s-7a59bd97-06ca-437f-9388-2f2bbfa30f73 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7a59bd97-06ca-437f-9388-2f2bbfa30f73 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-7a59bd97-06ca-437f-9388-2f2bbfa30f73 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7a59bd97-06ca-437f-9388-2f2bbfa30f73 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7a59bd97-06ca-437f-9388-2f2bbfa30f73 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7a59bd97-06ca-437f-9388-2f2bbfa30f73 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7a59bd97-06ca-437f-9388-2f2bbfa30f73 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7a59bd97-06ca-437f-9388-2f2bbfa30f73 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7a59bd97-06ca-437f-9388-2f2bbfa30f73 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7a59bd97-06ca-437f-9388-2f2bbfa30f73 img.shogun-image {
  width: 100%;
}



}
#s-18f9c1eb-db16-4adf-9ff2-81337276c213 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-18f9c1eb-db16-4adf-9ff2-81337276c213 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-18f9c1eb-db16-4adf-9ff2-81337276c213 .shogun-heading-component h3 a {
  color: #000;
}


#s-1cd98e87-0b2c-4b54-a2f1-653f05570f98 {
  min-height: 50px;
}








#s-1cd98e87-0b2c-4b54-a2f1-653f05570f98 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1cd98e87-0b2c-4b54-a2f1-653f05570f98.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-063a7376-1e21-44c9-8297-78fd3d88a81b {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-063a7376-1e21-44c9-8297-78fd3d88a81b"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-063a7376-1e21-44c9-8297-78fd3d88a81b"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-063a7376-1e21-44c9-8297-78fd3d88a81b"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-063a7376-1e21-44c9-8297-78fd3d88a81b"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-bb84b676-e0ec-4c62-9c36-6f43bfb7c11f {
  display: none;
}
#s-2e9c9647-1353-44e9-86e5-e66efc1ca8d6 {
  text-align: left;
}



.shg-c#s-2e9c9647-1353-44e9-86e5-e66efc1ca8d6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2e9c9647-1353-44e9-86e5-e66efc1ca8d6 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-2e9c9647-1353-44e9-86e5-e66efc1ca8d6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2e9c9647-1353-44e9-86e5-e66efc1ca8d6 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-2e9c9647-1353-44e9-86e5-e66efc1ca8d6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2e9c9647-1353-44e9-86e5-e66efc1ca8d6 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-2e9c9647-1353-44e9-86e5-e66efc1ca8d6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2e9c9647-1353-44e9-86e5-e66efc1ca8d6 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-2e9c9647-1353-44e9-86e5-e66efc1ca8d6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2e9c9647-1353-44e9-86e5-e66efc1ca8d6 img.shogun-image {
  width: 100%;
}



}
#s-6fd51b8e-d0f2-4fdc-896f-58f0a7b254c1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6fd51b8e-d0f2-4fdc-896f-58f0a7b254c1 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-6fd51b8e-d0f2-4fdc-896f-58f0a7b254c1 .shogun-heading-component h3 a {
  color: #000;
}


#s-c5a4a4b8-ea75-4055-b695-36aa7c569dd3 {
  display: none;
}
#s-65ac14bd-ee13-413e-8927-9657e0326130 {
  text-align: left;
}



.shg-c#s-65ac14bd-ee13-413e-8927-9657e0326130 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-65ac14bd-ee13-413e-8927-9657e0326130 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-65ac14bd-ee13-413e-8927-9657e0326130 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-65ac14bd-ee13-413e-8927-9657e0326130 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-65ac14bd-ee13-413e-8927-9657e0326130 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-65ac14bd-ee13-413e-8927-9657e0326130 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-65ac14bd-ee13-413e-8927-9657e0326130 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-65ac14bd-ee13-413e-8927-9657e0326130 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-65ac14bd-ee13-413e-8927-9657e0326130 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-65ac14bd-ee13-413e-8927-9657e0326130 img.shogun-image {
  width: 100%;
}



}
#s-b95ffdba-c909-4063-948f-3bdd85805fa1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b95ffdba-c909-4063-948f-3bdd85805fa1 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-b95ffdba-c909-4063-948f-3bdd85805fa1 .shogun-heading-component h3 a {
  color: #000;
}


#s-c32aac31-14c5-40e5-b709-bc19b7a73527 {
  display: none;
}
#s-03efe11b-5b17-4419-a373-303f8b1ce04d {
  text-align: left;
}



.shg-c#s-03efe11b-5b17-4419-a373-303f8b1ce04d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-03efe11b-5b17-4419-a373-303f8b1ce04d img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-03efe11b-5b17-4419-a373-303f8b1ce04d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-03efe11b-5b17-4419-a373-303f8b1ce04d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-03efe11b-5b17-4419-a373-303f8b1ce04d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-03efe11b-5b17-4419-a373-303f8b1ce04d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-03efe11b-5b17-4419-a373-303f8b1ce04d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-03efe11b-5b17-4419-a373-303f8b1ce04d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-03efe11b-5b17-4419-a373-303f8b1ce04d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-03efe11b-5b17-4419-a373-303f8b1ce04d img.shogun-image {
  width: 100%;
}



}
#s-efe2f868-f4bd-48bc-9d9f-aacc836605c3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-efe2f868-f4bd-48bc-9d9f-aacc836605c3 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-efe2f868-f4bd-48bc-9d9f-aacc836605c3 .shogun-heading-component h3 a {
  color: #000;
}


#s-d828e686-f1f3-4069-ae42-265a13b366f4 {
  display: none;
}
#s-8c1a6985-6907-4708-9885-78d1630981ff {
  text-align: left;
}



.shg-c#s-8c1a6985-6907-4708-9885-78d1630981ff .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8c1a6985-6907-4708-9885-78d1630981ff img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-8c1a6985-6907-4708-9885-78d1630981ff .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8c1a6985-6907-4708-9885-78d1630981ff img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8c1a6985-6907-4708-9885-78d1630981ff .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8c1a6985-6907-4708-9885-78d1630981ff img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8c1a6985-6907-4708-9885-78d1630981ff .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8c1a6985-6907-4708-9885-78d1630981ff img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8c1a6985-6907-4708-9885-78d1630981ff .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8c1a6985-6907-4708-9885-78d1630981ff img.shogun-image {
  width: 100%;
}



}
#s-80416f90-0696-4138-9bf9-61095ad61618 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-80416f90-0696-4138-9bf9-61095ad61618 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


#s-80416f90-0696-4138-9bf9-61095ad61618 .shogun-heading-component h3 a {
  color: #000;
}


#s-c96737e8-f876-4bfd-91f7-24739b3ca8d4 {
  display: none;
}
#s-b50559cd-1a88-4d2c-9e58-522358aec6cf {
  text-align: left;
}



.shg-c#s-b50559cd-1a88-4d2c-9e58-522358aec6cf .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b50559cd-1a88-4d2c-9e58-522358aec6cf img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-b50559cd-1a88-4d2c-9e58-522358aec6cf .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b50559cd-1a88-4d2c-9e58-522358aec6cf img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b50559cd-1a88-4d2c-9e58-522358aec6cf .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b50559cd-1a88-4d2c-9e58-522358aec6cf img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b50559cd-1a88-4d2c-9e58-522358aec6cf .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b50559cd-1a88-4d2c-9e58-522358aec6cf img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b50559cd-1a88-4d2c-9e58-522358aec6cf .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b50559cd-1a88-4d2c-9e58-522358aec6cf img.shogun-image {
  width: 100%;
}



}
#s-ebfebd84-4e73-48f7-8ab7-c9613f31eaca {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ebfebd84-4e73-48f7-8ab7-c9613f31eaca .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


#s-ebfebd84-4e73-48f7-8ab7-c9613f31eaca .shogun-heading-component h3 a {
  color: #000;
}


#s-3cd24fa4-386a-499c-aac6-155d40b6472c {
  display: none;
}
#s-a09a1c8b-ad62-415e-a490-eb345ba32e4c {
  text-align: left;
}



.shg-c#s-a09a1c8b-ad62-415e-a490-eb345ba32e4c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a09a1c8b-ad62-415e-a490-eb345ba32e4c img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-a09a1c8b-ad62-415e-a490-eb345ba32e4c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a09a1c8b-ad62-415e-a490-eb345ba32e4c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a09a1c8b-ad62-415e-a490-eb345ba32e4c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a09a1c8b-ad62-415e-a490-eb345ba32e4c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a09a1c8b-ad62-415e-a490-eb345ba32e4c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a09a1c8b-ad62-415e-a490-eb345ba32e4c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a09a1c8b-ad62-415e-a490-eb345ba32e4c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a09a1c8b-ad62-415e-a490-eb345ba32e4c img.shogun-image {
  width: 100%;
}



}
#s-881adc14-ab5b-4077-81b1-a39338491153 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-881adc14-ab5b-4077-81b1-a39338491153 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


#s-881adc14-ab5b-4077-81b1-a39338491153 .shogun-heading-component h3 a {
  color: #000;
}


#s-45789615-a04e-4a8c-b44a-c0ac24003d9b {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-45789615-a04e-4a8c-b44a-c0ac24003d9b"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-45789615-a04e-4a8c-b44a-c0ac24003d9b"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-45789615-a04e-4a8c-b44a-c0ac24003d9b"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-45789615-a04e-4a8c-b44a-c0ac24003d9b"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-27266ace-8942-4fb1-88cd-312aa29b1f70 {
  display: none;
}
#s-536729e1-b7d0-49ad-8999-bcaeac92e19c {
  text-align: left;
}



.shg-c#s-536729e1-b7d0-49ad-8999-bcaeac92e19c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-536729e1-b7d0-49ad-8999-bcaeac92e19c img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-536729e1-b7d0-49ad-8999-bcaeac92e19c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-536729e1-b7d0-49ad-8999-bcaeac92e19c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-536729e1-b7d0-49ad-8999-bcaeac92e19c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-536729e1-b7d0-49ad-8999-bcaeac92e19c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-536729e1-b7d0-49ad-8999-bcaeac92e19c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-536729e1-b7d0-49ad-8999-bcaeac92e19c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-536729e1-b7d0-49ad-8999-bcaeac92e19c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-536729e1-b7d0-49ad-8999-bcaeac92e19c img.shogun-image {
  width: 100%;
}



}
#s-b00d5cf8-10ac-489b-9501-77410ce98220 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b00d5cf8-10ac-489b-9501-77410ce98220 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-b00d5cf8-10ac-489b-9501-77410ce98220 .shogun-heading-component h3 a {
  color: #000;
}


#s-533f62ac-4fe9-44c5-9dd2-6f93de1595f8 {
  display: none;
}
#s-f6395f66-d9b3-426f-ad1b-4d76e0e6aaad {
  text-align: left;
}



.shg-c#s-f6395f66-d9b3-426f-ad1b-4d76e0e6aaad .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f6395f66-d9b3-426f-ad1b-4d76e0e6aaad img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-f6395f66-d9b3-426f-ad1b-4d76e0e6aaad .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f6395f66-d9b3-426f-ad1b-4d76e0e6aaad img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f6395f66-d9b3-426f-ad1b-4d76e0e6aaad .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f6395f66-d9b3-426f-ad1b-4d76e0e6aaad img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f6395f66-d9b3-426f-ad1b-4d76e0e6aaad .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f6395f66-d9b3-426f-ad1b-4d76e0e6aaad img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f6395f66-d9b3-426f-ad1b-4d76e0e6aaad .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f6395f66-d9b3-426f-ad1b-4d76e0e6aaad img.shogun-image {
  width: 100%;
}



}
#s-8dab452e-5548-4c78-8901-f24a534cde95 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8dab452e-5548-4c78-8901-f24a534cde95 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-8dab452e-5548-4c78-8901-f24a534cde95 .shogun-heading-component h3 a {
  color: #000;
}


#s-4159b565-ba4d-4e7e-8025-88a8523bf500 {
  display: none;
}
#s-d715faaf-f637-41bf-8d59-80861f31b7d7 {
  text-align: left;
}



.shg-c#s-d715faaf-f637-41bf-8d59-80861f31b7d7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d715faaf-f637-41bf-8d59-80861f31b7d7 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-d715faaf-f637-41bf-8d59-80861f31b7d7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d715faaf-f637-41bf-8d59-80861f31b7d7 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d715faaf-f637-41bf-8d59-80861f31b7d7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d715faaf-f637-41bf-8d59-80861f31b7d7 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d715faaf-f637-41bf-8d59-80861f31b7d7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d715faaf-f637-41bf-8d59-80861f31b7d7 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d715faaf-f637-41bf-8d59-80861f31b7d7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d715faaf-f637-41bf-8d59-80861f31b7d7 img.shogun-image {
  width: 100%;
}



}
#s-7d731cd6-5e98-410a-9f22-f4b0c23dbc06 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7d731cd6-5e98-410a-9f22-f4b0c23dbc06 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-7d731cd6-5e98-410a-9f22-f4b0c23dbc06 .shogun-heading-component h3 a {
  color: #000;
}


#s-22f47d38-d9e5-4baa-b43e-4fdac6422595 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-22f47d38-d9e5-4baa-b43e-4fdac6422595 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-22f47d38-d9e5-4baa-b43e-4fdac6422595.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3d5dcc69-c2f9-4b80-83ad-a2ab9d689736 {
  min-height: 50px;
}








#s-3d5dcc69-c2f9-4b80-83ad-a2ab9d689736 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3d5dcc69-c2f9-4b80-83ad-a2ab9d689736.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2287f834-3af5-446b-9e76-0f89e11554d5 {
  min-height: 50px;
}








#s-2287f834-3af5-446b-9e76-0f89e11554d5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2287f834-3af5-446b-9e76-0f89e11554d5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f9c511a3-b105-4a71-8fed-c71d01c1d9d6 {
  min-height: 50px;
}








#s-f9c511a3-b105-4a71-8fed-c71d01c1d9d6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f9c511a3-b105-4a71-8fed-c71d01c1d9d6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-578cbaa7-09f6-4ca0-850d-80bbb6b8c37d {
  margin-left: 25px;
margin-right: 25px;
padding-left: 25px;
padding-right: 25px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 1px;
min-height: 50px;
}








#s-578cbaa7-09f6-4ca0-850d-80bbb6b8c37d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-578cbaa7-09f6-4ca0-850d-80bbb6b8c37d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a194e013-e2fc-42a1-bf86-47e268cf4300 {
  padding-left: 25px;
padding-right: 25px;
}

#s-4e27f53d-5c0d-4932-a0bc-eac9dc788ea6 {
  min-height: 50px;
}








#s-4e27f53d-5c0d-4932-a0bc-eac9dc788ea6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4e27f53d-5c0d-4932-a0bc-eac9dc788ea6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-24f7ab39-fff9-45ed-969a-5bfe2bfb0262 {
  margin-left: 25px;
margin-right: 25px;
padding-left: 25px;
padding-right: 25px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 1px;
min-height: 50px;
}








#s-24f7ab39-fff9-45ed-969a-5bfe2bfb0262 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-24f7ab39-fff9-45ed-969a-5bfe2bfb0262.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f8c33844-4f19-48c5-9f0d-4d6893f82b59 {
  padding-left: 25px;
padding-right: 25px;
}

#s-6856d8eb-254d-4868-8ad3-789b88f93828 {
  min-height: 50px;
}








#s-6856d8eb-254d-4868-8ad3-789b88f93828 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6856d8eb-254d-4868-8ad3-789b88f93828.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5c55f711-bb69-4a28-9507-4352f7311d3f {
  margin-left: 25px;
margin-right: 25px;
padding-left: 25px;
padding-right: 25px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 1px;
min-height: 50px;
}








#s-5c55f711-bb69-4a28-9507-4352f7311d3f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5c55f711-bb69-4a28-9507-4352f7311d3f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-124c1002-9165-4a4d-ab5d-0f2bed5bd7a6 {
  padding-left: 25px;
padding-right: 25px;
}

#s-63ccbc60-6aee-4e31-bb83-b891f7216b9b {
  min-height: 50px;
}








#s-63ccbc60-6aee-4e31-bb83-b891f7216b9b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-63ccbc60-6aee-4e31-bb83-b891f7216b9b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8d3eab80-5861-4768-8e40-044062948680 {
  min-height: 50px;
}








#s-8d3eab80-5861-4768-8e40-044062948680 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8d3eab80-5861-4768-8e40-044062948680.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

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

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

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}
.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-lazyload-bg-image {
  display: none;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}
/* <-- User Content Animations */

.shogun-form-error-msg, .shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}

.shg-c:before,.shg-c:after{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width: 1024px){.shg-c,.shg-box{background-attachment:scroll !important}}@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape){.shg-box{background-attachment:scroll !important}}#mc_embed_signup .clear{width:auto !important;height:auto !important;visibility:visible !important}.shg-clearfix:after{content:"";display:block;clear:both}.shogun-image{max-width:100%;min-height:inherit;max-height:inherit;display:inline !important;border:0;vertical-align:middle}.shg-fw{margin-left:calc(50% - 50vw);width:100vw}.shg-fw .shg-fw{margin-left:auto;margin-right:auto;width:100%}div[data-shg-lightbox-switch]{cursor:pointer}.shg-lightbox{position:fixed;z-index:999999;left:0;top:0;width:100%;height:100%;overflow:hidden;background-color:#000;background-color:rgba(0,0,0,0.85)}.shg-lightbox.hidden{display:none !important}.shg-lightbox .shg-lightbox-content{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:100%;text-align:center}.shg-lightbox .shg-lightbox-close{position:absolute;right:0;padding:5px 0;color:#fff;font-size:45px;margin-right:10px;line-height:30px;user-select:none;cursor:pointer;z-index:1}.shg-lightbox .shg-lightbox-image-container{padding:25px}.shg-lightbox .shg-lightbox-image{margin:auto;max-height:90vh;max-width:100%}.shg-lightbox .shg-lightbox-close:hover,.shg-lightbox .shg-lightbox-close:focus{color:#a2a2a2;text-decoration:none;cursor:pointer}.shg-lightbox .shg-lightbox-nav{cursor:pointer;position:absolute;top:50%;width:35px;height:100px;background-size:contain;background-repeat:no-repeat;background-position:center;transform:translate(0%, -50%);z-index:1}.shg-lightbox .shg-lightbox-nav.hidden{display:none !important}.shg-lightbox .shg-lightbox-nav.shg-nav-left{left:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==)}.shg-lightbox .shg-lightbox-nav.shg-nav-right{right:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+)}@media screen and (min-width: 769px){.shg-lightbox .shg-lightbox-image-container{padding:50px}}.shogun-lazyload:not([src]),.shogun-lazyloading:not([src]){opacity:0}.shogun-lazyloaded{opacity:1;transition:opacity 300ms}.shogun-lazyload-bg-image{display:none}.shogun-root a:empty,.shogun-root article:empty,.shogun-root dl:empty,.shogun-root h1:empty,.shogun-root h2:empty,.shogun-root h3:empty,.shogun-root h4:empty,.shogun-root h5:empty,.shogun-root h6:empty,.shogun-root p:empty,.shogun-root section:empty,.shogun-root ul:empty{display:unset}.shogun-root div:empty{display:inline-block}[data-animations*="enterviewport"][data-animations*="fadeIn"],[data-animations*="enterviewport"][data-animations*="zoomIn"]{opacity:0}.shogun-form-error-msg,.shogun-form-field-error-msg{display:flex;align-items:center;color:#dc143c}.shogun-badge{margin-bottom:50px}.shogun-badge-container{position:fixed;right:0;bottom:0;margin-bottom:-10px}
