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

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

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

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

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

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

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

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

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

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

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

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

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







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

.shogun-image-container {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-c97e5000-8a1b-4fc6-936d-4d2c5a1f1416 {
  text-align: center;
}







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

    
    
    
  }


#s-c97e5000-8a1b-4fc6-936d-4d2c5a1f1416 .shogun-image-content {
  
    align-items: center;
  
}

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

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

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

#s-b1d1c613-f166-40de-a0bf-b6391fc6409f {
  margin-left: 2%;
margin-right: 2%;
}

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

}

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

}

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

}

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

}

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

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

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

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



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

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

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

.shg-btn.shg-btn-stretch {
  display: block;
}

.shg-btn:not(.shg-btn-stretch) {
  display: inline-block;
}

.shg-btn-wrapper.shg-align-left {
  text-align: left;
}

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

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

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

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


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


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


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


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


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


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

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







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

#s-4880a349-db17-4558-87a5-0ea2abd656ff {
  margin-left: 1%;
margin-right: 1%;
}

@media (min-width: 0px) {
[id="s-4880a349-db17-4558-87a5-0ea2abd656ff"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-4880a349-db17-4558-87a5-0ea2abd656ff"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 992px) {
[id="s-4880a349-db17-4558-87a5-0ea2abd656ff"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 1200px) {
[id="s-4880a349-db17-4558-87a5-0ea2abd656ff"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 24.0px);
}

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image.hover ~ * {
  z-index: 1;
}

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

#s-71133a93-ac69-401f-b4ca-4873e3db899b {
  text-align: center;
}







  img.s-71133a93-ac69-401f-b4ca-4873e3db899b.shogun-image {
    
    
  }


.s-71133a93-ac69-401f-b4ca-4873e3db899b .shogun-image-content {
  
    align-items: center;
  
}

.s-71133a93-ac69-401f-b4ca-4873e3db899b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-71133a93-ac69-401f-b4ca-4873e3db899b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-71133a93-ac69-401f-b4ca-4873e3db899b.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-71133a93-ac69-401f-b4ca-4873e3db899b.shogun-image {
    
    
  }


.s-71133a93-ac69-401f-b4ca-4873e3db899b .shogun-image-content {
  
    align-items: center;
  
}

.s-71133a93-ac69-401f-b4ca-4873e3db899b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-71133a93-ac69-401f-b4ca-4873e3db899b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-71133a93-ac69-401f-b4ca-4873e3db899b.shogun-image {
  box-sizing: border-box;
}

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





  img.s-71133a93-ac69-401f-b4ca-4873e3db899b.shogun-image {
    
    
  }


.s-71133a93-ac69-401f-b4ca-4873e3db899b .shogun-image-content {
  
    align-items: center;
  
}

.s-71133a93-ac69-401f-b4ca-4873e3db899b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-71133a93-ac69-401f-b4ca-4873e3db899b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-71133a93-ac69-401f-b4ca-4873e3db899b.shogun-image {
  box-sizing: border-box;
}

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





  img.s-71133a93-ac69-401f-b4ca-4873e3db899b.shogun-image {
    
    
  }


.s-71133a93-ac69-401f-b4ca-4873e3db899b .shogun-image-content {
  
    align-items: center;
  
}

.s-71133a93-ac69-401f-b4ca-4873e3db899b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-71133a93-ac69-401f-b4ca-4873e3db899b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-71133a93-ac69-401f-b4ca-4873e3db899b.shogun-image {
  box-sizing: border-box;
}

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





  img.s-71133a93-ac69-401f-b4ca-4873e3db899b.shogun-image {
    
    
  }


.s-71133a93-ac69-401f-b4ca-4873e3db899b .shogun-image-content {
  
    align-items: center;
  
}

.s-71133a93-ac69-401f-b4ca-4873e3db899b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-71133a93-ac69-401f-b4ca-4873e3db899b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-71133a93-ac69-401f-b4ca-4873e3db899b.shogun-image {
  box-sizing: border-box;
}

}
#s-07a13ca9-807d-4a56-a5ec-3b46cfa4a105 {
  min-height: 50px;
background-color: rgba(29, 29, 29, 1);
}








#s-07a13ca9-807d-4a56-a5ec-3b46cfa4a105 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-07a13ca9-807d-4a56-a5ec-3b46cfa4a105.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5cc5d2df-67a6-4ed8-a39b-4fdf1b8180c3 {
  margin-top: 1px;
margin-left: 1px;
margin-bottom: 1px;
margin-right: 1px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-5cc5d2df-67a6-4ed8-a39b-4fdf1b8180c3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5cc5d2df-67a6-4ed8-a39b-4fdf1b8180c3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3c00d072-e5b8-4f49-ba91-4dcfb1d146d4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3c00d072-e5b8-4f49-ba91-4dcfb1d146d4 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 1px;
  
}



#s-55e16c58-0900-4d8e-88c7-99d38f2b3815 {
  text-align: center;
}







  img.s-55e16c58-0900-4d8e-88c7-99d38f2b3815.shogun-image {
    
    
  }


.s-55e16c58-0900-4d8e-88c7-99d38f2b3815 .shogun-image-content {
  
    align-items: center;
  
}

.s-55e16c58-0900-4d8e-88c7-99d38f2b3815.shg-align-container {
  display: flex;
  justify-content: center
}

.s-55e16c58-0900-4d8e-88c7-99d38f2b3815.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-55e16c58-0900-4d8e-88c7-99d38f2b3815.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-55e16c58-0900-4d8e-88c7-99d38f2b3815.shogun-image {
    
    
  }


.s-55e16c58-0900-4d8e-88c7-99d38f2b3815 .shogun-image-content {
  
    align-items: center;
  
}

.s-55e16c58-0900-4d8e-88c7-99d38f2b3815.shg-align-container {
  display: flex;
  justify-content: center
}

.s-55e16c58-0900-4d8e-88c7-99d38f2b3815.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-55e16c58-0900-4d8e-88c7-99d38f2b3815.shogun-image {
  box-sizing: border-box;
}

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





  img.s-55e16c58-0900-4d8e-88c7-99d38f2b3815.shogun-image {
    
    
  }


.s-55e16c58-0900-4d8e-88c7-99d38f2b3815 .shogun-image-content {
  
    align-items: center;
  
}

.s-55e16c58-0900-4d8e-88c7-99d38f2b3815.shg-align-container {
  display: flex;
  justify-content: center
}

.s-55e16c58-0900-4d8e-88c7-99d38f2b3815.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-55e16c58-0900-4d8e-88c7-99d38f2b3815.shogun-image {
  box-sizing: border-box;
}

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





  img.s-55e16c58-0900-4d8e-88c7-99d38f2b3815.shogun-image {
    
    
  }


.s-55e16c58-0900-4d8e-88c7-99d38f2b3815 .shogun-image-content {
  
    align-items: center;
  
}

.s-55e16c58-0900-4d8e-88c7-99d38f2b3815.shg-align-container {
  display: flex;
  justify-content: center
}

.s-55e16c58-0900-4d8e-88c7-99d38f2b3815.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-55e16c58-0900-4d8e-88c7-99d38f2b3815.shogun-image {
  box-sizing: border-box;
}

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





  img.s-55e16c58-0900-4d8e-88c7-99d38f2b3815.shogun-image {
    
    
  }


.s-55e16c58-0900-4d8e-88c7-99d38f2b3815 .shogun-image-content {
  
    align-items: center;
  
}

.s-55e16c58-0900-4d8e-88c7-99d38f2b3815.shg-align-container {
  display: flex;
  justify-content: center
}

.s-55e16c58-0900-4d8e-88c7-99d38f2b3815.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-55e16c58-0900-4d8e-88c7-99d38f2b3815.shogun-image {
  box-sizing: border-box;
}

}
#s-32c378f5-08b4-4249-84e1-5bc235eeb536 {
  min-height: 50px;
background-color: rgba(29, 29, 29, 1);
}








#s-32c378f5-08b4-4249-84e1-5bc235eeb536 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-32c378f5-08b4-4249-84e1-5bc235eeb536.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0c5f0b01-e7f0-4a40-b3a0-aaa6ad29e860 {
  margin-top: 1px;
margin-left: 1px;
margin-bottom: 1px;
margin-right: 1px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-0c5f0b01-e7f0-4a40-b3a0-aaa6ad29e860 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0c5f0b01-e7f0-4a40-b3a0-aaa6ad29e860.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c5c24a39-1348-4b99-af2e-9ab8d6257a8e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c5c24a39-1348-4b99-af2e-9ab8d6257a8e .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 1px;
  
}



#s-cd05d7f6-d255-42e2-8e53-0890e7f6be26 {
  text-align: center;
}







  img.s-cd05d7f6-d255-42e2-8e53-0890e7f6be26.shogun-image {
    
    
  }


.s-cd05d7f6-d255-42e2-8e53-0890e7f6be26 .shogun-image-content {
  
    align-items: center;
  
}

.s-cd05d7f6-d255-42e2-8e53-0890e7f6be26.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cd05d7f6-d255-42e2-8e53-0890e7f6be26.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cd05d7f6-d255-42e2-8e53-0890e7f6be26.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-cd05d7f6-d255-42e2-8e53-0890e7f6be26.shogun-image {
    
    
  }


.s-cd05d7f6-d255-42e2-8e53-0890e7f6be26 .shogun-image-content {
  
    align-items: center;
  
}

.s-cd05d7f6-d255-42e2-8e53-0890e7f6be26.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cd05d7f6-d255-42e2-8e53-0890e7f6be26.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cd05d7f6-d255-42e2-8e53-0890e7f6be26.shogun-image {
  box-sizing: border-box;
}

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





  img.s-cd05d7f6-d255-42e2-8e53-0890e7f6be26.shogun-image {
    
    
  }


.s-cd05d7f6-d255-42e2-8e53-0890e7f6be26 .shogun-image-content {
  
    align-items: center;
  
}

.s-cd05d7f6-d255-42e2-8e53-0890e7f6be26.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cd05d7f6-d255-42e2-8e53-0890e7f6be26.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cd05d7f6-d255-42e2-8e53-0890e7f6be26.shogun-image {
  box-sizing: border-box;
}

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





  img.s-cd05d7f6-d255-42e2-8e53-0890e7f6be26.shogun-image {
    
    
  }


.s-cd05d7f6-d255-42e2-8e53-0890e7f6be26 .shogun-image-content {
  
    align-items: center;
  
}

.s-cd05d7f6-d255-42e2-8e53-0890e7f6be26.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cd05d7f6-d255-42e2-8e53-0890e7f6be26.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cd05d7f6-d255-42e2-8e53-0890e7f6be26.shogun-image {
  box-sizing: border-box;
}

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





  img.s-cd05d7f6-d255-42e2-8e53-0890e7f6be26.shogun-image {
    
    
  }


.s-cd05d7f6-d255-42e2-8e53-0890e7f6be26 .shogun-image-content {
  
    align-items: center;
  
}

.s-cd05d7f6-d255-42e2-8e53-0890e7f6be26.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cd05d7f6-d255-42e2-8e53-0890e7f6be26.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cd05d7f6-d255-42e2-8e53-0890e7f6be26.shogun-image {
  box-sizing: border-box;
}

}
#s-bc34c20b-1e9d-4ddc-b626-a5d253a97195 {
  min-height: 50px;
background-color: rgba(29, 29, 29, 1);
}








#s-bc34c20b-1e9d-4ddc-b626-a5d253a97195 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bc34c20b-1e9d-4ddc-b626-a5d253a97195.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-af476629-0907-4839-aeb7-06c175933bc7 {
  margin-top: 1px;
margin-left: 1px;
margin-bottom: 1px;
margin-right: 1px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-af476629-0907-4839-aeb7-06c175933bc7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-af476629-0907-4839-aeb7-06c175933bc7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e1360712-a360-4a8c-9b0a-6af06439db05 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e1360712-a360-4a8c-9b0a-6af06439db05 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 1px;
  
}



#s-e87e36b3-a331-4db7-ae7d-cc70b87b917f {
  text-align: center;
}







  img.s-e87e36b3-a331-4db7-ae7d-cc70b87b917f.shogun-image {
    
    
  }


.s-e87e36b3-a331-4db7-ae7d-cc70b87b917f .shogun-image-content {
  
    align-items: center;
  
}

.s-e87e36b3-a331-4db7-ae7d-cc70b87b917f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e87e36b3-a331-4db7-ae7d-cc70b87b917f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e87e36b3-a331-4db7-ae7d-cc70b87b917f.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-e87e36b3-a331-4db7-ae7d-cc70b87b917f.shogun-image {
    
    
  }


.s-e87e36b3-a331-4db7-ae7d-cc70b87b917f .shogun-image-content {
  
    align-items: center;
  
}

.s-e87e36b3-a331-4db7-ae7d-cc70b87b917f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e87e36b3-a331-4db7-ae7d-cc70b87b917f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e87e36b3-a331-4db7-ae7d-cc70b87b917f.shogun-image {
  box-sizing: border-box;
}

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





  img.s-e87e36b3-a331-4db7-ae7d-cc70b87b917f.shogun-image {
    
    
  }


.s-e87e36b3-a331-4db7-ae7d-cc70b87b917f .shogun-image-content {
  
    align-items: center;
  
}

.s-e87e36b3-a331-4db7-ae7d-cc70b87b917f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e87e36b3-a331-4db7-ae7d-cc70b87b917f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e87e36b3-a331-4db7-ae7d-cc70b87b917f.shogun-image {
  box-sizing: border-box;
}

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





  img.s-e87e36b3-a331-4db7-ae7d-cc70b87b917f.shogun-image {
    
    
  }


.s-e87e36b3-a331-4db7-ae7d-cc70b87b917f .shogun-image-content {
  
    align-items: center;
  
}

.s-e87e36b3-a331-4db7-ae7d-cc70b87b917f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e87e36b3-a331-4db7-ae7d-cc70b87b917f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e87e36b3-a331-4db7-ae7d-cc70b87b917f.shogun-image {
  box-sizing: border-box;
}

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





  img.s-e87e36b3-a331-4db7-ae7d-cc70b87b917f.shogun-image {
    
    
  }


.s-e87e36b3-a331-4db7-ae7d-cc70b87b917f .shogun-image-content {
  
    align-items: center;
  
}

.s-e87e36b3-a331-4db7-ae7d-cc70b87b917f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e87e36b3-a331-4db7-ae7d-cc70b87b917f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e87e36b3-a331-4db7-ae7d-cc70b87b917f.shogun-image {
  box-sizing: border-box;
}

}
#s-5a77f876-ae3e-4572-b593-16f8d81b87a5 {
  min-height: 50px;
background-color: rgba(29, 29, 29, 1);
}








#s-5a77f876-ae3e-4572-b593-16f8d81b87a5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5a77f876-ae3e-4572-b593-16f8d81b87a5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-468cc938-bf90-4823-b22a-ccdd5bf71267 {
  margin-top: 1px;
margin-left: 1px;
margin-bottom: 1px;
margin-right: 1px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-468cc938-bf90-4823-b22a-ccdd5bf71267 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-468cc938-bf90-4823-b22a-ccdd5bf71267.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-012bfaa8-65c7-4e2c-9707-0d5f4aa8065a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-012bfaa8-65c7-4e2c-9707-0d5f4aa8065a .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 1px;
  
}



#s-8be7b44b-9d7e-41c5-9d81-24a6f3b992a4 {
  text-align: center;
}







  img.s-8be7b44b-9d7e-41c5-9d81-24a6f3b992a4.shogun-image {
    
    
  }


.s-8be7b44b-9d7e-41c5-9d81-24a6f3b992a4 .shogun-image-content {
  
    align-items: center;
  
}

.s-8be7b44b-9d7e-41c5-9d81-24a6f3b992a4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8be7b44b-9d7e-41c5-9d81-24a6f3b992a4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8be7b44b-9d7e-41c5-9d81-24a6f3b992a4.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-8be7b44b-9d7e-41c5-9d81-24a6f3b992a4.shogun-image {
    
    
  }


.s-8be7b44b-9d7e-41c5-9d81-24a6f3b992a4 .shogun-image-content {
  
    align-items: center;
  
}

.s-8be7b44b-9d7e-41c5-9d81-24a6f3b992a4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8be7b44b-9d7e-41c5-9d81-24a6f3b992a4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8be7b44b-9d7e-41c5-9d81-24a6f3b992a4.shogun-image {
  box-sizing: border-box;
}

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





  img.s-8be7b44b-9d7e-41c5-9d81-24a6f3b992a4.shogun-image {
    
    
  }


.s-8be7b44b-9d7e-41c5-9d81-24a6f3b992a4 .shogun-image-content {
  
    align-items: center;
  
}

.s-8be7b44b-9d7e-41c5-9d81-24a6f3b992a4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8be7b44b-9d7e-41c5-9d81-24a6f3b992a4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8be7b44b-9d7e-41c5-9d81-24a6f3b992a4.shogun-image {
  box-sizing: border-box;
}

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





  img.s-8be7b44b-9d7e-41c5-9d81-24a6f3b992a4.shogun-image {
    
    
  }


.s-8be7b44b-9d7e-41c5-9d81-24a6f3b992a4 .shogun-image-content {
  
    align-items: center;
  
}

.s-8be7b44b-9d7e-41c5-9d81-24a6f3b992a4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8be7b44b-9d7e-41c5-9d81-24a6f3b992a4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8be7b44b-9d7e-41c5-9d81-24a6f3b992a4.shogun-image {
  box-sizing: border-box;
}

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





  img.s-8be7b44b-9d7e-41c5-9d81-24a6f3b992a4.shogun-image {
    
    
  }


.s-8be7b44b-9d7e-41c5-9d81-24a6f3b992a4 .shogun-image-content {
  
    align-items: center;
  
}

.s-8be7b44b-9d7e-41c5-9d81-24a6f3b992a4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8be7b44b-9d7e-41c5-9d81-24a6f3b992a4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8be7b44b-9d7e-41c5-9d81-24a6f3b992a4.shogun-image {
  box-sizing: border-box;
}

}
#s-a218ee3e-fe3c-4299-bc1e-1fa0d2ba90d8 {
  min-height: 50px;
background-color: rgba(29, 29, 29, 1);
}








#s-a218ee3e-fe3c-4299-bc1e-1fa0d2ba90d8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a218ee3e-fe3c-4299-bc1e-1fa0d2ba90d8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-10a17c2f-a151-4bcd-889f-372c551704a9 {
  margin-top: 1px;
margin-left: 1px;
margin-bottom: 1px;
margin-right: 1px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-10a17c2f-a151-4bcd-889f-372c551704a9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-10a17c2f-a151-4bcd-889f-372c551704a9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-78463318-177a-4326-8595-d762da0e3ec2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-78463318-177a-4326-8595-d762da0e3ec2 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 1px;
  
}



#s-35e50ef6-0bbb-43b9-aeac-57d7c81cbd99 {
  margin-top: -5%;
min-height: 50px;
}
@media (min-width: 1200px){#s-35e50ef6-0bbb-43b9-aeac-57d7c81cbd99 {
  display: none;
}
#s-35e50ef6-0bbb-43b9-aeac-57d7c81cbd99, #wrap-s-35e50ef6-0bbb-43b9-aeac-57d7c81cbd99 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-35e50ef6-0bbb-43b9-aeac-57d7c81cbd99 {
  display: none;
}
#s-35e50ef6-0bbb-43b9-aeac-57d7c81cbd99, #wrap-s-35e50ef6-0bbb-43b9-aeac-57d7c81cbd99 { display:none !important; }}







#s-35e50ef6-0bbb-43b9-aeac-57d7c81cbd99 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-35e50ef6-0bbb-43b9-aeac-57d7c81cbd99.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c64b8e44-10f4-4cc8-bd43-4871e5f46673 {
  margin-top: 0%;
margin-bottom: 0%;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-c64b8e44-10f4-4cc8-bd43-4871e5f46673 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 35px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-8899f2fe-609f-4fd3-bfe4-1ab4e0c17295 {
  margin-top: 1%;
margin-bottom: 3%;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-8899f2fe-609f-4fd3-bfe4-1ab4e0c17295 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  letter-spacing: 4px;
  
}



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-a6fe23b5-5103-44c1-af45-0763d126aba2 {
  margin-left: 2%;
margin-right: 2%;
}

#s-623fd96e-6907-4a20-ae88-3fddbd24ca4a {
  margin-top: 2%;
margin-left: 4%;
margin-bottom: 0%;
margin-right: 4%;
}

@media (min-width: 0px) {
[id="s-623fd96e-6907-4a20-ae88-3fddbd24ca4a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-623fd96e-6907-4a20-ae88-3fddbd24ca4a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-623fd96e-6907-4a20-ae88-3fddbd24ca4a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-623fd96e-6907-4a20-ae88-3fddbd24ca4a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-167a6768-1d33-415d-89e9-996e0a96729c {
  text-align: center;
}







  img.s-167a6768-1d33-415d-89e9-996e0a96729c.shogun-image {
    
    
  }


.s-167a6768-1d33-415d-89e9-996e0a96729c .shogun-image-content {
  
    align-items: center;
  
}

.s-167a6768-1d33-415d-89e9-996e0a96729c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-167a6768-1d33-415d-89e9-996e0a96729c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-167a6768-1d33-415d-89e9-996e0a96729c.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-167a6768-1d33-415d-89e9-996e0a96729c.shogun-image {
    
    
  }


.s-167a6768-1d33-415d-89e9-996e0a96729c .shogun-image-content {
  
    align-items: center;
  
}

.s-167a6768-1d33-415d-89e9-996e0a96729c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-167a6768-1d33-415d-89e9-996e0a96729c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-167a6768-1d33-415d-89e9-996e0a96729c.shogun-image {
  box-sizing: border-box;
}

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





  img.s-167a6768-1d33-415d-89e9-996e0a96729c.shogun-image {
    
    
  }


.s-167a6768-1d33-415d-89e9-996e0a96729c .shogun-image-content {
  
    align-items: center;
  
}

.s-167a6768-1d33-415d-89e9-996e0a96729c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-167a6768-1d33-415d-89e9-996e0a96729c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-167a6768-1d33-415d-89e9-996e0a96729c.shogun-image {
  box-sizing: border-box;
}

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





  img.s-167a6768-1d33-415d-89e9-996e0a96729c.shogun-image {
    
    
  }


.s-167a6768-1d33-415d-89e9-996e0a96729c .shogun-image-content {
  
    align-items: center;
  
}

.s-167a6768-1d33-415d-89e9-996e0a96729c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-167a6768-1d33-415d-89e9-996e0a96729c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-167a6768-1d33-415d-89e9-996e0a96729c.shogun-image {
  box-sizing: border-box;
}

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





  img.s-167a6768-1d33-415d-89e9-996e0a96729c.shogun-image {
    
    
  }


.s-167a6768-1d33-415d-89e9-996e0a96729c .shogun-image-content {
  
    align-items: center;
  
}

.s-167a6768-1d33-415d-89e9-996e0a96729c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-167a6768-1d33-415d-89e9-996e0a96729c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-167a6768-1d33-415d-89e9-996e0a96729c.shogun-image {
  box-sizing: border-box;
}

}
#s-98ae25c0-0087-43d8-918f-310b99e740bf {
  min-height: 50px;
background-color: rgba(29, 29, 29, 1);
}








#s-98ae25c0-0087-43d8-918f-310b99e740bf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-98ae25c0-0087-43d8-918f-310b99e740bf.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e2df00a9-b957-4c62-b7f6-5b8349ab615c {
  margin-top: 1px;
margin-left: 1px;
margin-bottom: 1px;
margin-right: 1px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-e2df00a9-b957-4c62-b7f6-5b8349ab615c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e2df00a9-b957-4c62-b7f6-5b8349ab615c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-423ed9fd-8933-42da-8fcb-2f729bb7fcdc {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-423ed9fd-8933-42da-8fcb-2f729bb7fcdc .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 1px;
  
}



#s-4a7fd460-75b6-4c53-9ce8-e375e34440fc {
  text-align: center;
}







  img.s-4a7fd460-75b6-4c53-9ce8-e375e34440fc.shogun-image {
    
    
  }


.s-4a7fd460-75b6-4c53-9ce8-e375e34440fc .shogun-image-content {
  
    align-items: center;
  
}

.s-4a7fd460-75b6-4c53-9ce8-e375e34440fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4a7fd460-75b6-4c53-9ce8-e375e34440fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4a7fd460-75b6-4c53-9ce8-e375e34440fc.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-4a7fd460-75b6-4c53-9ce8-e375e34440fc.shogun-image {
    
    
  }


.s-4a7fd460-75b6-4c53-9ce8-e375e34440fc .shogun-image-content {
  
    align-items: center;
  
}

.s-4a7fd460-75b6-4c53-9ce8-e375e34440fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4a7fd460-75b6-4c53-9ce8-e375e34440fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4a7fd460-75b6-4c53-9ce8-e375e34440fc.shogun-image {
  box-sizing: border-box;
}

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





  img.s-4a7fd460-75b6-4c53-9ce8-e375e34440fc.shogun-image {
    
    
  }


.s-4a7fd460-75b6-4c53-9ce8-e375e34440fc .shogun-image-content {
  
    align-items: center;
  
}

.s-4a7fd460-75b6-4c53-9ce8-e375e34440fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4a7fd460-75b6-4c53-9ce8-e375e34440fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4a7fd460-75b6-4c53-9ce8-e375e34440fc.shogun-image {
  box-sizing: border-box;
}

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





  img.s-4a7fd460-75b6-4c53-9ce8-e375e34440fc.shogun-image {
    
    
  }


.s-4a7fd460-75b6-4c53-9ce8-e375e34440fc .shogun-image-content {
  
    align-items: center;
  
}

.s-4a7fd460-75b6-4c53-9ce8-e375e34440fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4a7fd460-75b6-4c53-9ce8-e375e34440fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4a7fd460-75b6-4c53-9ce8-e375e34440fc.shogun-image {
  box-sizing: border-box;
}

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





  img.s-4a7fd460-75b6-4c53-9ce8-e375e34440fc.shogun-image {
    
    
  }


.s-4a7fd460-75b6-4c53-9ce8-e375e34440fc .shogun-image-content {
  
    align-items: center;
  
}

.s-4a7fd460-75b6-4c53-9ce8-e375e34440fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4a7fd460-75b6-4c53-9ce8-e375e34440fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4a7fd460-75b6-4c53-9ce8-e375e34440fc.shogun-image {
  box-sizing: border-box;
}

}
#s-aafefdd4-d919-4ebc-9c0f-c4cc12167a8a {
  min-height: 50px;
background-color: rgba(29, 29, 29, 1);
}








#s-aafefdd4-d919-4ebc-9c0f-c4cc12167a8a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-aafefdd4-d919-4ebc-9c0f-c4cc12167a8a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-661b19d5-857e-4403-878a-539ab0a118f9 {
  margin-top: 1px;
margin-left: 1px;
margin-bottom: 1px;
margin-right: 1px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-661b19d5-857e-4403-878a-539ab0a118f9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-661b19d5-857e-4403-878a-539ab0a118f9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-807f5b28-dd22-43bb-89ce-338ed76ca357 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-807f5b28-dd22-43bb-89ce-338ed76ca357 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 1px;
  
}



#s-10c2633b-67dc-4bbe-935f-623e0cc5117f {
  margin-top: 5%;
margin-left: 4%;
margin-bottom: 5%;
margin-right: 4%;
}

@media (min-width: 0px) {
[id="s-10c2633b-67dc-4bbe-935f-623e0cc5117f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-10c2633b-67dc-4bbe-935f-623e0cc5117f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-10c2633b-67dc-4bbe-935f-623e0cc5117f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-10c2633b-67dc-4bbe-935f-623e0cc5117f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-69b27d8b-0baa-473a-9e69-ccc829df9a40 {
  text-align: center;
}







  img.s-69b27d8b-0baa-473a-9e69-ccc829df9a40.shogun-image {
    
    
  }


.s-69b27d8b-0baa-473a-9e69-ccc829df9a40 .shogun-image-content {
  
    align-items: center;
  
}

.s-69b27d8b-0baa-473a-9e69-ccc829df9a40.shg-align-container {
  display: flex;
  justify-content: center
}

.s-69b27d8b-0baa-473a-9e69-ccc829df9a40.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-69b27d8b-0baa-473a-9e69-ccc829df9a40.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-69b27d8b-0baa-473a-9e69-ccc829df9a40.shogun-image {
    
    
  }


.s-69b27d8b-0baa-473a-9e69-ccc829df9a40 .shogun-image-content {
  
    align-items: center;
  
}

.s-69b27d8b-0baa-473a-9e69-ccc829df9a40.shg-align-container {
  display: flex;
  justify-content: center
}

.s-69b27d8b-0baa-473a-9e69-ccc829df9a40.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-69b27d8b-0baa-473a-9e69-ccc829df9a40.shogun-image {
  box-sizing: border-box;
}

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





  img.s-69b27d8b-0baa-473a-9e69-ccc829df9a40.shogun-image {
    
    
  }


.s-69b27d8b-0baa-473a-9e69-ccc829df9a40 .shogun-image-content {
  
    align-items: center;
  
}

.s-69b27d8b-0baa-473a-9e69-ccc829df9a40.shg-align-container {
  display: flex;
  justify-content: center
}

.s-69b27d8b-0baa-473a-9e69-ccc829df9a40.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-69b27d8b-0baa-473a-9e69-ccc829df9a40.shogun-image {
  box-sizing: border-box;
}

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





  img.s-69b27d8b-0baa-473a-9e69-ccc829df9a40.shogun-image {
    
    
  }


.s-69b27d8b-0baa-473a-9e69-ccc829df9a40 .shogun-image-content {
  
    align-items: center;
  
}

.s-69b27d8b-0baa-473a-9e69-ccc829df9a40.shg-align-container {
  display: flex;
  justify-content: center
}

.s-69b27d8b-0baa-473a-9e69-ccc829df9a40.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-69b27d8b-0baa-473a-9e69-ccc829df9a40.shogun-image {
  box-sizing: border-box;
}

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





  img.s-69b27d8b-0baa-473a-9e69-ccc829df9a40.shogun-image {
    
    
  }


.s-69b27d8b-0baa-473a-9e69-ccc829df9a40 .shogun-image-content {
  
    align-items: center;
  
}

.s-69b27d8b-0baa-473a-9e69-ccc829df9a40.shg-align-container {
  display: flex;
  justify-content: center
}

.s-69b27d8b-0baa-473a-9e69-ccc829df9a40.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-69b27d8b-0baa-473a-9e69-ccc829df9a40.shogun-image {
  box-sizing: border-box;
}

}
#s-3c6f834f-b951-440c-97f0-e5dd3447b4ef {
  min-height: 50px;
background-color: rgba(29, 29, 29, 1);
}








#s-3c6f834f-b951-440c-97f0-e5dd3447b4ef > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3c6f834f-b951-440c-97f0-e5dd3447b4ef.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f757e8d7-6ed2-41d9-aff2-f6fdbae6515d {
  margin-top: 1px;
margin-left: 1px;
margin-bottom: 1px;
margin-right: 1px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-f757e8d7-6ed2-41d9-aff2-f6fdbae6515d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f757e8d7-6ed2-41d9-aff2-f6fdbae6515d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1d373157-ad73-4364-95e7-0c87658afdac {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1d373157-ad73-4364-95e7-0c87658afdac .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 1px;
  
}



#s-c20014b7-58bf-46f5-8eb7-3441ba8d967a {
  text-align: center;
}







  img.s-c20014b7-58bf-46f5-8eb7-3441ba8d967a.shogun-image {
    
    
  }


.s-c20014b7-58bf-46f5-8eb7-3441ba8d967a .shogun-image-content {
  
    align-items: center;
  
}

.s-c20014b7-58bf-46f5-8eb7-3441ba8d967a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c20014b7-58bf-46f5-8eb7-3441ba8d967a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c20014b7-58bf-46f5-8eb7-3441ba8d967a.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-c20014b7-58bf-46f5-8eb7-3441ba8d967a.shogun-image {
    
    
  }


.s-c20014b7-58bf-46f5-8eb7-3441ba8d967a .shogun-image-content {
  
    align-items: center;
  
}

.s-c20014b7-58bf-46f5-8eb7-3441ba8d967a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c20014b7-58bf-46f5-8eb7-3441ba8d967a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c20014b7-58bf-46f5-8eb7-3441ba8d967a.shogun-image {
  box-sizing: border-box;
}

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





  img.s-c20014b7-58bf-46f5-8eb7-3441ba8d967a.shogun-image {
    
    
  }


.s-c20014b7-58bf-46f5-8eb7-3441ba8d967a .shogun-image-content {
  
    align-items: center;
  
}

.s-c20014b7-58bf-46f5-8eb7-3441ba8d967a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c20014b7-58bf-46f5-8eb7-3441ba8d967a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c20014b7-58bf-46f5-8eb7-3441ba8d967a.shogun-image {
  box-sizing: border-box;
}

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





  img.s-c20014b7-58bf-46f5-8eb7-3441ba8d967a.shogun-image {
    
    
  }


.s-c20014b7-58bf-46f5-8eb7-3441ba8d967a .shogun-image-content {
  
    align-items: center;
  
}

.s-c20014b7-58bf-46f5-8eb7-3441ba8d967a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c20014b7-58bf-46f5-8eb7-3441ba8d967a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c20014b7-58bf-46f5-8eb7-3441ba8d967a.shogun-image {
  box-sizing: border-box;
}

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





  img.s-c20014b7-58bf-46f5-8eb7-3441ba8d967a.shogun-image {
    
    
  }


.s-c20014b7-58bf-46f5-8eb7-3441ba8d967a .shogun-image-content {
  
    align-items: center;
  
}

.s-c20014b7-58bf-46f5-8eb7-3441ba8d967a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c20014b7-58bf-46f5-8eb7-3441ba8d967a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c20014b7-58bf-46f5-8eb7-3441ba8d967a.shogun-image {
  box-sizing: border-box;
}

}
#s-e4d1f7d7-a2fa-4a20-9d98-8dd9ec13e27f {
  min-height: 50px;
background-color: rgba(29, 29, 29, 1);
}








#s-e4d1f7d7-a2fa-4a20-9d98-8dd9ec13e27f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e4d1f7d7-a2fa-4a20-9d98-8dd9ec13e27f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-75c2a6f3-d66e-445d-8605-548b2b335b2e {
  margin-top: 1px;
margin-left: 1px;
margin-bottom: 1px;
margin-right: 1px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-75c2a6f3-d66e-445d-8605-548b2b335b2e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-75c2a6f3-d66e-445d-8605-548b2b335b2e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-beeb9cf1-7d83-4c81-b940-ba88023cfc71 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-beeb9cf1-7d83-4c81-b940-ba88023cfc71 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 1px;
  
}



#s-31316cda-55b8-47c4-933f-585a39a72fe1 {
  margin-left: 27%;
margin-right: 27%;
text-align: center;
}







  img.s-31316cda-55b8-47c4-933f-585a39a72fe1.shogun-image {
    
    
  }


.s-31316cda-55b8-47c4-933f-585a39a72fe1 .shogun-image-content {
  
    align-items: center;
  
}

.s-31316cda-55b8-47c4-933f-585a39a72fe1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-31316cda-55b8-47c4-933f-585a39a72fe1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-31316cda-55b8-47c4-933f-585a39a72fe1.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-31316cda-55b8-47c4-933f-585a39a72fe1.shogun-image {
    
    
  }


.s-31316cda-55b8-47c4-933f-585a39a72fe1 .shogun-image-content {
  
    align-items: center;
  
}

.s-31316cda-55b8-47c4-933f-585a39a72fe1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-31316cda-55b8-47c4-933f-585a39a72fe1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-31316cda-55b8-47c4-933f-585a39a72fe1.shogun-image {
  box-sizing: border-box;
}

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





  img.s-31316cda-55b8-47c4-933f-585a39a72fe1.shogun-image {
    
    
  }


.s-31316cda-55b8-47c4-933f-585a39a72fe1 .shogun-image-content {
  
    align-items: center;
  
}

.s-31316cda-55b8-47c4-933f-585a39a72fe1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-31316cda-55b8-47c4-933f-585a39a72fe1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-31316cda-55b8-47c4-933f-585a39a72fe1.shogun-image {
  box-sizing: border-box;
}

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





  img.s-31316cda-55b8-47c4-933f-585a39a72fe1.shogun-image {
    
    
  }


.s-31316cda-55b8-47c4-933f-585a39a72fe1 .shogun-image-content {
  
    align-items: center;
  
}

.s-31316cda-55b8-47c4-933f-585a39a72fe1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-31316cda-55b8-47c4-933f-585a39a72fe1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-31316cda-55b8-47c4-933f-585a39a72fe1.shogun-image {
  box-sizing: border-box;
}

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





  img.s-31316cda-55b8-47c4-933f-585a39a72fe1.shogun-image {
    
    
  }


.s-31316cda-55b8-47c4-933f-585a39a72fe1 .shogun-image-content {
  
    align-items: center;
  
}

.s-31316cda-55b8-47c4-933f-585a39a72fe1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-31316cda-55b8-47c4-933f-585a39a72fe1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-31316cda-55b8-47c4-933f-585a39a72fe1.shogun-image {
  box-sizing: border-box;
}

}
#s-67fb6699-3af9-406f-a967-b588a8b3684f {
  margin-left: 22%;
margin-right: 22%;
min-height: 50px;
background-color: rgba(29, 29, 29, 1);
}








#s-67fb6699-3af9-406f-a967-b588a8b3684f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-67fb6699-3af9-406f-a967-b588a8b3684f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-917dbf90-e276-491d-9aa6-197438f5c182 {
  margin-top: 1px;
margin-left: 1px;
margin-bottom: 1px;
margin-right: 1px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-917dbf90-e276-491d-9aa6-197438f5c182 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-917dbf90-e276-491d-9aa6-197438f5c182.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-555d926b-471e-488d-97c6-a7a8d7d7b5d5 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-555d926b-471e-488d-97c6-a7a8d7d7b5d5 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 1px;
  
}



#s-65837e31-7120-42b3-bc8a-ac456995d501 {
  margin-top: 8%;
margin-bottom: 5%;
min-height: 50px;
}
@media (min-width: 1200px){#s-65837e31-7120-42b3-bc8a-ac456995d501 {
  display: none;
}
#s-65837e31-7120-42b3-bc8a-ac456995d501, #wrap-s-65837e31-7120-42b3-bc8a-ac456995d501 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-65837e31-7120-42b3-bc8a-ac456995d501 {
  display: none;
}
#s-65837e31-7120-42b3-bc8a-ac456995d501, #wrap-s-65837e31-7120-42b3-bc8a-ac456995d501 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-65837e31-7120-42b3-bc8a-ac456995d501 {
  
}
}@media (max-width: 767px){#s-65837e31-7120-42b3-bc8a-ac456995d501 {
  
}
}







#s-65837e31-7120-42b3-bc8a-ac456995d501 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-65837e31-7120-42b3-bc8a-ac456995d501.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4dc026c2-e813-41d9-ae16-c5e561327d86 {
  margin-top: 5%;
margin-left: 4%;
margin-bottom: 5%;
margin-right: 4%;
min-height: 50px;
background-color: rgba(29, 29, 29, 1);
}








#s-4dc026c2-e813-41d9-ae16-c5e561327d86 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4dc026c2-e813-41d9-ae16-c5e561327d86.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-43113a75-922f-458f-b8ff-fc75f19bc773 {
  margin-top: 1px;
margin-left: 1px;
margin-bottom: 1px;
margin-right: 1px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-43113a75-922f-458f-b8ff-fc75f19bc773 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-43113a75-922f-458f-b8ff-fc75f19bc773.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bd4148f8-2a55-4594-926e-5fbf62080bc2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-bd4148f8-2a55-4594-926e-5fbf62080bc2 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-15576d10-9f09-4a99-b926-739955c251f4 {
  text-align: left;
}

#s-20e41d39-e7d1-4a83-93e6-df2f21cbfbcb {
  margin-top: 2%;
margin-left: 0%;
margin-right: 4%;
}

@media (min-width: 0px) {
[id="s-20e41d39-e7d1-4a83-93e6-df2f21cbfbcb"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-20e41d39-e7d1-4a83-93e6-df2f21cbfbcb"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-20e41d39-e7d1-4a83-93e6-df2f21cbfbcb"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-20e41d39-e7d1-4a83-93e6-df2f21cbfbcb"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

#s-1701f20e-d801-4b75-b6c9-6efe4ed58977 {
  text-align: center;
}







  img.s-1701f20e-d801-4b75-b6c9-6efe4ed58977.shogun-image {
    
    
  }


.s-1701f20e-d801-4b75-b6c9-6efe4ed58977 .shogun-image-content {
  
    align-items: center;
  
}

.s-1701f20e-d801-4b75-b6c9-6efe4ed58977.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1701f20e-d801-4b75-b6c9-6efe4ed58977.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1701f20e-d801-4b75-b6c9-6efe4ed58977.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-1701f20e-d801-4b75-b6c9-6efe4ed58977.shogun-image {
    
    
  }


.s-1701f20e-d801-4b75-b6c9-6efe4ed58977 .shogun-image-content {
  
    align-items: center;
  
}

.s-1701f20e-d801-4b75-b6c9-6efe4ed58977.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1701f20e-d801-4b75-b6c9-6efe4ed58977.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1701f20e-d801-4b75-b6c9-6efe4ed58977.shogun-image {
  box-sizing: border-box;
}

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





  img.s-1701f20e-d801-4b75-b6c9-6efe4ed58977.shogun-image {
    
    
  }


.s-1701f20e-d801-4b75-b6c9-6efe4ed58977 .shogun-image-content {
  
    align-items: center;
  
}

.s-1701f20e-d801-4b75-b6c9-6efe4ed58977.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1701f20e-d801-4b75-b6c9-6efe4ed58977.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1701f20e-d801-4b75-b6c9-6efe4ed58977.shogun-image {
  box-sizing: border-box;
}

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





  img.s-1701f20e-d801-4b75-b6c9-6efe4ed58977.shogun-image {
    
    
  }


.s-1701f20e-d801-4b75-b6c9-6efe4ed58977 .shogun-image-content {
  
    align-items: center;
  
}

.s-1701f20e-d801-4b75-b6c9-6efe4ed58977.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1701f20e-d801-4b75-b6c9-6efe4ed58977.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1701f20e-d801-4b75-b6c9-6efe4ed58977.shogun-image {
  box-sizing: border-box;
}

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





  img.s-1701f20e-d801-4b75-b6c9-6efe4ed58977.shogun-image {
    
    
  }


.s-1701f20e-d801-4b75-b6c9-6efe4ed58977 .shogun-image-content {
  
    align-items: center;
  
}

.s-1701f20e-d801-4b75-b6c9-6efe4ed58977.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1701f20e-d801-4b75-b6c9-6efe4ed58977.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1701f20e-d801-4b75-b6c9-6efe4ed58977.shogun-image {
  box-sizing: border-box;
}

}
#s-72e290f7-b964-45ec-8509-696530d198af {
  text-align: center;
}







  img.s-72e290f7-b964-45ec-8509-696530d198af.shogun-image {
    
    
  }


.s-72e290f7-b964-45ec-8509-696530d198af .shogun-image-content {
  
    align-items: center;
  
}

.s-72e290f7-b964-45ec-8509-696530d198af.shg-align-container {
  display: flex;
  justify-content: center
}

.s-72e290f7-b964-45ec-8509-696530d198af.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-72e290f7-b964-45ec-8509-696530d198af.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-72e290f7-b964-45ec-8509-696530d198af.shogun-image {
    
    
  }


.s-72e290f7-b964-45ec-8509-696530d198af .shogun-image-content {
  
    align-items: center;
  
}

.s-72e290f7-b964-45ec-8509-696530d198af.shg-align-container {
  display: flex;
  justify-content: center
}

.s-72e290f7-b964-45ec-8509-696530d198af.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-72e290f7-b964-45ec-8509-696530d198af.shogun-image {
  box-sizing: border-box;
}

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





  img.s-72e290f7-b964-45ec-8509-696530d198af.shogun-image {
    
    
  }


.s-72e290f7-b964-45ec-8509-696530d198af .shogun-image-content {
  
    align-items: center;
  
}

.s-72e290f7-b964-45ec-8509-696530d198af.shg-align-container {
  display: flex;
  justify-content: center
}

.s-72e290f7-b964-45ec-8509-696530d198af.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-72e290f7-b964-45ec-8509-696530d198af.shogun-image {
  box-sizing: border-box;
}

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





  img.s-72e290f7-b964-45ec-8509-696530d198af.shogun-image {
    
    
  }


.s-72e290f7-b964-45ec-8509-696530d198af .shogun-image-content {
  
    align-items: center;
  
}

.s-72e290f7-b964-45ec-8509-696530d198af.shg-align-container {
  display: flex;
  justify-content: center
}

.s-72e290f7-b964-45ec-8509-696530d198af.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-72e290f7-b964-45ec-8509-696530d198af.shogun-image {
  box-sizing: border-box;
}

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





  img.s-72e290f7-b964-45ec-8509-696530d198af.shogun-image {
    
    
  }


.s-72e290f7-b964-45ec-8509-696530d198af .shogun-image-content {
  
    align-items: center;
  
}

.s-72e290f7-b964-45ec-8509-696530d198af.shg-align-container {
  display: flex;
  justify-content: center
}

.s-72e290f7-b964-45ec-8509-696530d198af.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-72e290f7-b964-45ec-8509-696530d198af.shogun-image {
  box-sizing: border-box;
}

}
#s-471d2e7f-11b1-43ea-94d9-768e76d0830c {
  margin-left: 1%;
margin-right: 1%;
text-align: center;
}







  img.s-471d2e7f-11b1-43ea-94d9-768e76d0830c.shogun-image {
    
    
  }


.s-471d2e7f-11b1-43ea-94d9-768e76d0830c .shogun-image-content {
  
    align-items: center;
  
}

.s-471d2e7f-11b1-43ea-94d9-768e76d0830c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-471d2e7f-11b1-43ea-94d9-768e76d0830c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-471d2e7f-11b1-43ea-94d9-768e76d0830c.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-471d2e7f-11b1-43ea-94d9-768e76d0830c.shogun-image {
    
    
  }


.s-471d2e7f-11b1-43ea-94d9-768e76d0830c .shogun-image-content {
  
    align-items: center;
  
}

.s-471d2e7f-11b1-43ea-94d9-768e76d0830c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-471d2e7f-11b1-43ea-94d9-768e76d0830c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-471d2e7f-11b1-43ea-94d9-768e76d0830c.shogun-image {
  box-sizing: border-box;
}

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





  img.s-471d2e7f-11b1-43ea-94d9-768e76d0830c.shogun-image {
    
    
  }


.s-471d2e7f-11b1-43ea-94d9-768e76d0830c .shogun-image-content {
  
    align-items: center;
  
}

.s-471d2e7f-11b1-43ea-94d9-768e76d0830c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-471d2e7f-11b1-43ea-94d9-768e76d0830c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-471d2e7f-11b1-43ea-94d9-768e76d0830c.shogun-image {
  box-sizing: border-box;
}

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





  img.s-471d2e7f-11b1-43ea-94d9-768e76d0830c.shogun-image {
    
    
  }


.s-471d2e7f-11b1-43ea-94d9-768e76d0830c .shogun-image-content {
  
    align-items: center;
  
}

.s-471d2e7f-11b1-43ea-94d9-768e76d0830c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-471d2e7f-11b1-43ea-94d9-768e76d0830c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-471d2e7f-11b1-43ea-94d9-768e76d0830c.shogun-image {
  box-sizing: border-box;
}

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





  img.s-471d2e7f-11b1-43ea-94d9-768e76d0830c.shogun-image {
    
    
  }


.s-471d2e7f-11b1-43ea-94d9-768e76d0830c .shogun-image-content {
  
    align-items: center;
  
}

.s-471d2e7f-11b1-43ea-94d9-768e76d0830c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-471d2e7f-11b1-43ea-94d9-768e76d0830c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-471d2e7f-11b1-43ea-94d9-768e76d0830c.shogun-image {
  box-sizing: border-box;
}

}
#s-0724a861-1d7f-4a76-8c6e-129b86bdd92a {
  margin-left: 2%;
margin-right: 2%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0724a861-1d7f-4a76-8c6e-129b86bdd92a .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  
  letter-spacing: 2px;
  text-align: center;
}



#s-12ee023b-2d56-481c-b8ce-6b3ccece4b3c {
  margin-left: 5%;
margin-right: 5%;
}

#s-43bc5216-ac99-4d03-a7e1-d19ea6483368 {
  margin-left: 5%;
margin-right: 5%;
min-height: 50px;
}








#s-43bc5216-ac99-4d03-a7e1-d19ea6483368 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-43bc5216-ac99-4d03-a7e1-d19ea6483368.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c0ca1614-4c4d-4b5d-9bdf-18d10163c807 {
  border-style: solid;
margin-top: 0px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-c0ca1614-4c4d-4b5d-9bdf-18d10163c807:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-c0ca1614-4c4d-4b5d-9bdf-18d10163c807:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-c0ca1614-4c4d-4b5d-9bdf-18d10163c807-root {
    text-align: center;
  }


#s-c0ca1614-4c4d-4b5d-9bdf-18d10163c807.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-c0ca1614-4c4d-4b5d-9bdf-18d10163c807-root {
    text-align: center;
  }


#s-c0ca1614-4c4d-4b5d-9bdf-18d10163c807.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c0ca1614-4c4d-4b5d-9bdf-18d10163c807-root {
    text-align: center;
  }


#s-c0ca1614-4c4d-4b5d-9bdf-18d10163c807.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c0ca1614-4c4d-4b5d-9bdf-18d10163c807-root {
    text-align: center;
  }


#s-c0ca1614-4c4d-4b5d-9bdf-18d10163c807.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-c0ca1614-4c4d-4b5d-9bdf-18d10163c807-root {
    text-align: center;
  }


#s-c0ca1614-4c4d-4b5d-9bdf-18d10163c807.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-c0ca1614-4c4d-4b5d-9bdf-18d10163c807-root {
    text-align: center;
  }


#s-c0ca1614-4c4d-4b5d-9bdf-18d10163c807.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-22dd4647-ae87-4c05-a5ca-8d9cb7938fec {
  text-align: left;
}

#s-dae3cef8-68b2-4cb6-b006-e86ec4643539 {
  margin-top: 2%;
margin-left: 17%;
margin-right: 17%;
}

@media (min-width: 0px) {
[id="s-dae3cef8-68b2-4cb6-b006-e86ec4643539"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 768px) {
[id="s-dae3cef8-68b2-4cb6-b006-e86ec4643539"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-dae3cef8-68b2-4cb6-b006-e86ec4643539"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-dae3cef8-68b2-4cb6-b006-e86ec4643539"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 7.5px);
}

}

#s-c867749e-c52f-404b-9582-cc120cefec16 {
  text-align: center;
}







  img.s-c867749e-c52f-404b-9582-cc120cefec16.shogun-image {
    
    
  }


.s-c867749e-c52f-404b-9582-cc120cefec16 .shogun-image-content {
  
    align-items: center;
  
}

.s-c867749e-c52f-404b-9582-cc120cefec16.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c867749e-c52f-404b-9582-cc120cefec16.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c867749e-c52f-404b-9582-cc120cefec16.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-c867749e-c52f-404b-9582-cc120cefec16.shogun-image {
    
    
  }


.s-c867749e-c52f-404b-9582-cc120cefec16 .shogun-image-content {
  
    align-items: center;
  
}

.s-c867749e-c52f-404b-9582-cc120cefec16.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c867749e-c52f-404b-9582-cc120cefec16.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c867749e-c52f-404b-9582-cc120cefec16.shogun-image {
  box-sizing: border-box;
}

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





  img.s-c867749e-c52f-404b-9582-cc120cefec16.shogun-image {
    
    
  }


.s-c867749e-c52f-404b-9582-cc120cefec16 .shogun-image-content {
  
    align-items: center;
  
}

.s-c867749e-c52f-404b-9582-cc120cefec16.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c867749e-c52f-404b-9582-cc120cefec16.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c867749e-c52f-404b-9582-cc120cefec16.shogun-image {
  box-sizing: border-box;
}

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





  img.s-c867749e-c52f-404b-9582-cc120cefec16.shogun-image {
    
    
  }


.s-c867749e-c52f-404b-9582-cc120cefec16 .shogun-image-content {
  
    align-items: center;
  
}

.s-c867749e-c52f-404b-9582-cc120cefec16.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c867749e-c52f-404b-9582-cc120cefec16.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c867749e-c52f-404b-9582-cc120cefec16.shogun-image {
  box-sizing: border-box;
}

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





  img.s-c867749e-c52f-404b-9582-cc120cefec16.shogun-image {
    
    
  }


.s-c867749e-c52f-404b-9582-cc120cefec16 .shogun-image-content {
  
    align-items: center;
  
}

.s-c867749e-c52f-404b-9582-cc120cefec16.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c867749e-c52f-404b-9582-cc120cefec16.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c867749e-c52f-404b-9582-cc120cefec16.shogun-image {
  box-sizing: border-box;
}

}
#s-d4545288-9a26-429d-b319-14b7a9754a24 {
  text-align: center;
}







  img.s-d4545288-9a26-429d-b319-14b7a9754a24.shogun-image {
    
    
  }


.s-d4545288-9a26-429d-b319-14b7a9754a24 .shogun-image-content {
  
    align-items: center;
  
}

.s-d4545288-9a26-429d-b319-14b7a9754a24.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d4545288-9a26-429d-b319-14b7a9754a24.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d4545288-9a26-429d-b319-14b7a9754a24.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-d4545288-9a26-429d-b319-14b7a9754a24.shogun-image {
    
    
  }


.s-d4545288-9a26-429d-b319-14b7a9754a24 .shogun-image-content {
  
    align-items: center;
  
}

.s-d4545288-9a26-429d-b319-14b7a9754a24.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d4545288-9a26-429d-b319-14b7a9754a24.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d4545288-9a26-429d-b319-14b7a9754a24.shogun-image {
  box-sizing: border-box;
}

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





  img.s-d4545288-9a26-429d-b319-14b7a9754a24.shogun-image {
    
    
  }


.s-d4545288-9a26-429d-b319-14b7a9754a24 .shogun-image-content {
  
    align-items: center;
  
}

.s-d4545288-9a26-429d-b319-14b7a9754a24.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d4545288-9a26-429d-b319-14b7a9754a24.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d4545288-9a26-429d-b319-14b7a9754a24.shogun-image {
  box-sizing: border-box;
}

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





  img.s-d4545288-9a26-429d-b319-14b7a9754a24.shogun-image {
    
    
  }


.s-d4545288-9a26-429d-b319-14b7a9754a24 .shogun-image-content {
  
    align-items: center;
  
}

.s-d4545288-9a26-429d-b319-14b7a9754a24.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d4545288-9a26-429d-b319-14b7a9754a24.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d4545288-9a26-429d-b319-14b7a9754a24.shogun-image {
  box-sizing: border-box;
}

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





  img.s-d4545288-9a26-429d-b319-14b7a9754a24.shogun-image {
    
    
  }


.s-d4545288-9a26-429d-b319-14b7a9754a24 .shogun-image-content {
  
    align-items: center;
  
}

.s-d4545288-9a26-429d-b319-14b7a9754a24.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d4545288-9a26-429d-b319-14b7a9754a24.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d4545288-9a26-429d-b319-14b7a9754a24.shogun-image {
  box-sizing: border-box;
}

}
#s-4a602016-8152-48f4-93a6-d7953130cea5 {
  margin-left: 2%;
margin-right: 2%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4a602016-8152-48f4-93a6-d7953130cea5 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  
  letter-spacing: 2px;
  text-align: center;
}



#s-23c08982-759c-46b7-80a0-521e6f1464bc {
  margin-left: 5%;
margin-right: 5%;
}

#s-4211a652-15a5-401a-8107-d5fa1bcec240 {
  margin-left: 5%;
margin-right: 5%;
min-height: 50px;
}








#s-4211a652-15a5-401a-8107-d5fa1bcec240 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4211a652-15a5-401a-8107-d5fa1bcec240.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6d554008-25fa-4562-afab-4057418be055 {
  border-style: solid;
margin-top: 0px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-6d554008-25fa-4562-afab-4057418be055:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-6d554008-25fa-4562-afab-4057418be055:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-6d554008-25fa-4562-afab-4057418be055-root {
    text-align: center;
  }


#s-6d554008-25fa-4562-afab-4057418be055.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-6d554008-25fa-4562-afab-4057418be055-root {
    text-align: center;
  }


#s-6d554008-25fa-4562-afab-4057418be055.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6d554008-25fa-4562-afab-4057418be055-root {
    text-align: center;
  }


#s-6d554008-25fa-4562-afab-4057418be055.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6d554008-25fa-4562-afab-4057418be055-root {
    text-align: center;
  }


#s-6d554008-25fa-4562-afab-4057418be055.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-6d554008-25fa-4562-afab-4057418be055-root {
    text-align: center;
  }


#s-6d554008-25fa-4562-afab-4057418be055.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-6d554008-25fa-4562-afab-4057418be055-root {
    text-align: center;
  }


#s-6d554008-25fa-4562-afab-4057418be055.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-1693b115-20ce-4072-99af-6fa9d8c51342 {
  margin-top: 0%;
margin-bottom: 0%;
min-height: 50px;
}
@media (min-width: 1200px){#s-1693b115-20ce-4072-99af-6fa9d8c51342 {
  display: none;
}
#s-1693b115-20ce-4072-99af-6fa9d8c51342, #wrap-s-1693b115-20ce-4072-99af-6fa9d8c51342 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1693b115-20ce-4072-99af-6fa9d8c51342 {
  display: none;
}
#s-1693b115-20ce-4072-99af-6fa9d8c51342, #wrap-s-1693b115-20ce-4072-99af-6fa9d8c51342 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1693b115-20ce-4072-99af-6fa9d8c51342 {
  
}
}@media (max-width: 767px){#s-1693b115-20ce-4072-99af-6fa9d8c51342 {
  
}
}







#s-1693b115-20ce-4072-99af-6fa9d8c51342 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1693b115-20ce-4072-99af-6fa9d8c51342.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4b24ecbb-5b77-4ba2-998b-4086f2d08696 {
  margin-top: 5%;
margin-left: 4%;
margin-bottom: 5%;
margin-right: 4%;
min-height: 50px;
background-color: rgba(29, 29, 29, 1);
}








#s-4b24ecbb-5b77-4ba2-998b-4086f2d08696 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4b24ecbb-5b77-4ba2-998b-4086f2d08696.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9e2152fd-94c0-4036-8e70-804528b6b0a5 {
  margin-top: 1px;
margin-left: 1px;
margin-bottom: 1px;
margin-right: 1px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-9e2152fd-94c0-4036-8e70-804528b6b0a5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9e2152fd-94c0-4036-8e70-804528b6b0a5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bb2b8049-432b-4202-ac8c-7bc123097d31 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-bb2b8049-432b-4202-ac8c-7bc123097d31 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-f3f2a64f-a9c8-4920-bdb8-013614ee1d3a {
  text-align: left;
}

#s-e9b4964b-aefd-447f-9531-d1751ecb976f {
  margin-top: 2%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 3%;
}

@media (min-width: 0px) {
[id="s-e9b4964b-aefd-447f-9531-d1751ecb976f"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-e9b4964b-aefd-447f-9531-d1751ecb976f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-e9b4964b-aefd-447f-9531-d1751ecb976f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-e9b4964b-aefd-447f-9531-d1751ecb976f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

#s-58353168-e2a5-483c-9289-3a096800153e {
  text-align: center;
}







  img.s-58353168-e2a5-483c-9289-3a096800153e.shogun-image {
    
    
  }


.s-58353168-e2a5-483c-9289-3a096800153e .shogun-image-content {
  
    align-items: center;
  
}

.s-58353168-e2a5-483c-9289-3a096800153e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-58353168-e2a5-483c-9289-3a096800153e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-58353168-e2a5-483c-9289-3a096800153e.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-58353168-e2a5-483c-9289-3a096800153e.shogun-image {
    
    
  }


.s-58353168-e2a5-483c-9289-3a096800153e .shogun-image-content {
  
    align-items: center;
  
}

.s-58353168-e2a5-483c-9289-3a096800153e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-58353168-e2a5-483c-9289-3a096800153e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-58353168-e2a5-483c-9289-3a096800153e.shogun-image {
  box-sizing: border-box;
}

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





  img.s-58353168-e2a5-483c-9289-3a096800153e.shogun-image {
    
    
  }


.s-58353168-e2a5-483c-9289-3a096800153e .shogun-image-content {
  
    align-items: center;
  
}

.s-58353168-e2a5-483c-9289-3a096800153e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-58353168-e2a5-483c-9289-3a096800153e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-58353168-e2a5-483c-9289-3a096800153e.shogun-image {
  box-sizing: border-box;
}

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





  img.s-58353168-e2a5-483c-9289-3a096800153e.shogun-image {
    
    
  }


.s-58353168-e2a5-483c-9289-3a096800153e .shogun-image-content {
  
    align-items: center;
  
}

.s-58353168-e2a5-483c-9289-3a096800153e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-58353168-e2a5-483c-9289-3a096800153e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-58353168-e2a5-483c-9289-3a096800153e.shogun-image {
  box-sizing: border-box;
}

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





  img.s-58353168-e2a5-483c-9289-3a096800153e.shogun-image {
    
    
  }


.s-58353168-e2a5-483c-9289-3a096800153e .shogun-image-content {
  
    align-items: center;
  
}

.s-58353168-e2a5-483c-9289-3a096800153e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-58353168-e2a5-483c-9289-3a096800153e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-58353168-e2a5-483c-9289-3a096800153e.shogun-image {
  box-sizing: border-box;
}

}
#s-0b7ce1fc-afe1-4820-a238-264d7d8d8eb0 {
  text-align: center;
}







  img.s-0b7ce1fc-afe1-4820-a238-264d7d8d8eb0.shogun-image {
    
    
  }


.s-0b7ce1fc-afe1-4820-a238-264d7d8d8eb0 .shogun-image-content {
  
    align-items: center;
  
}

.s-0b7ce1fc-afe1-4820-a238-264d7d8d8eb0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0b7ce1fc-afe1-4820-a238-264d7d8d8eb0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0b7ce1fc-afe1-4820-a238-264d7d8d8eb0.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-0b7ce1fc-afe1-4820-a238-264d7d8d8eb0.shogun-image {
    
    
  }


.s-0b7ce1fc-afe1-4820-a238-264d7d8d8eb0 .shogun-image-content {
  
    align-items: center;
  
}

.s-0b7ce1fc-afe1-4820-a238-264d7d8d8eb0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0b7ce1fc-afe1-4820-a238-264d7d8d8eb0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0b7ce1fc-afe1-4820-a238-264d7d8d8eb0.shogun-image {
  box-sizing: border-box;
}

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





  img.s-0b7ce1fc-afe1-4820-a238-264d7d8d8eb0.shogun-image {
    
    
  }


.s-0b7ce1fc-afe1-4820-a238-264d7d8d8eb0 .shogun-image-content {
  
    align-items: center;
  
}

.s-0b7ce1fc-afe1-4820-a238-264d7d8d8eb0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0b7ce1fc-afe1-4820-a238-264d7d8d8eb0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0b7ce1fc-afe1-4820-a238-264d7d8d8eb0.shogun-image {
  box-sizing: border-box;
}

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





  img.s-0b7ce1fc-afe1-4820-a238-264d7d8d8eb0.shogun-image {
    
    
  }


.s-0b7ce1fc-afe1-4820-a238-264d7d8d8eb0 .shogun-image-content {
  
    align-items: center;
  
}

.s-0b7ce1fc-afe1-4820-a238-264d7d8d8eb0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0b7ce1fc-afe1-4820-a238-264d7d8d8eb0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0b7ce1fc-afe1-4820-a238-264d7d8d8eb0.shogun-image {
  box-sizing: border-box;
}

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





  img.s-0b7ce1fc-afe1-4820-a238-264d7d8d8eb0.shogun-image {
    
    
  }


.s-0b7ce1fc-afe1-4820-a238-264d7d8d8eb0 .shogun-image-content {
  
    align-items: center;
  
}

.s-0b7ce1fc-afe1-4820-a238-264d7d8d8eb0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0b7ce1fc-afe1-4820-a238-264d7d8d8eb0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0b7ce1fc-afe1-4820-a238-264d7d8d8eb0.shogun-image {
  box-sizing: border-box;
}

}
#s-97103ad2-8fd9-4e6c-9472-8044a7e48926 {
  text-align: center;
}







  img.s-97103ad2-8fd9-4e6c-9472-8044a7e48926.shogun-image {
    
    
  }


.s-97103ad2-8fd9-4e6c-9472-8044a7e48926 .shogun-image-content {
  
    align-items: center;
  
}

.s-97103ad2-8fd9-4e6c-9472-8044a7e48926.shg-align-container {
  display: flex;
  justify-content: center
}

.s-97103ad2-8fd9-4e6c-9472-8044a7e48926.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97103ad2-8fd9-4e6c-9472-8044a7e48926.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-97103ad2-8fd9-4e6c-9472-8044a7e48926.shogun-image {
    
    
  }


.s-97103ad2-8fd9-4e6c-9472-8044a7e48926 .shogun-image-content {
  
    align-items: center;
  
}

.s-97103ad2-8fd9-4e6c-9472-8044a7e48926.shg-align-container {
  display: flex;
  justify-content: center
}

.s-97103ad2-8fd9-4e6c-9472-8044a7e48926.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97103ad2-8fd9-4e6c-9472-8044a7e48926.shogun-image {
  box-sizing: border-box;
}

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





  img.s-97103ad2-8fd9-4e6c-9472-8044a7e48926.shogun-image {
    
    
  }


.s-97103ad2-8fd9-4e6c-9472-8044a7e48926 .shogun-image-content {
  
    align-items: center;
  
}

.s-97103ad2-8fd9-4e6c-9472-8044a7e48926.shg-align-container {
  display: flex;
  justify-content: center
}

.s-97103ad2-8fd9-4e6c-9472-8044a7e48926.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97103ad2-8fd9-4e6c-9472-8044a7e48926.shogun-image {
  box-sizing: border-box;
}

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





  img.s-97103ad2-8fd9-4e6c-9472-8044a7e48926.shogun-image {
    
    
  }


.s-97103ad2-8fd9-4e6c-9472-8044a7e48926 .shogun-image-content {
  
    align-items: center;
  
}

.s-97103ad2-8fd9-4e6c-9472-8044a7e48926.shg-align-container {
  display: flex;
  justify-content: center
}

.s-97103ad2-8fd9-4e6c-9472-8044a7e48926.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97103ad2-8fd9-4e6c-9472-8044a7e48926.shogun-image {
  box-sizing: border-box;
}

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





  img.s-97103ad2-8fd9-4e6c-9472-8044a7e48926.shogun-image {
    
    
  }


.s-97103ad2-8fd9-4e6c-9472-8044a7e48926 .shogun-image-content {
  
    align-items: center;
  
}

.s-97103ad2-8fd9-4e6c-9472-8044a7e48926.shg-align-container {
  display: flex;
  justify-content: center
}

.s-97103ad2-8fd9-4e6c-9472-8044a7e48926.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97103ad2-8fd9-4e6c-9472-8044a7e48926.shogun-image {
  box-sizing: border-box;
}

}
#s-71398201-173d-48bd-8cc8-e0a74fe8821f {
  margin-left: 2%;
margin-right: 2%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-71398201-173d-48bd-8cc8-e0a74fe8821f .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  
  letter-spacing: 2px;
  text-align: center;
}



#s-5cf9e577-32cc-4ac1-a752-d09ff0b45969 {
  margin-left: 5%;
margin-right: 5%;
}

#s-6b6ed280-4c09-44d8-a869-79abf66fd554 {
  margin-left: 5%;
margin-right: 5%;
min-height: 50px;
}








#s-6b6ed280-4c09-44d8-a869-79abf66fd554 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6b6ed280-4c09-44d8-a869-79abf66fd554.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-09cae535-ee4e-4858-948d-f2082ee181e8 {
  border-style: solid;
margin-top: 0px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-09cae535-ee4e-4858-948d-f2082ee181e8:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-09cae535-ee4e-4858-948d-f2082ee181e8:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-09cae535-ee4e-4858-948d-f2082ee181e8-root {
    text-align: center;
  }


#s-09cae535-ee4e-4858-948d-f2082ee181e8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-09cae535-ee4e-4858-948d-f2082ee181e8-root {
    text-align: center;
  }


#s-09cae535-ee4e-4858-948d-f2082ee181e8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-09cae535-ee4e-4858-948d-f2082ee181e8-root {
    text-align: center;
  }


#s-09cae535-ee4e-4858-948d-f2082ee181e8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-09cae535-ee4e-4858-948d-f2082ee181e8-root {
    text-align: center;
  }


#s-09cae535-ee4e-4858-948d-f2082ee181e8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-09cae535-ee4e-4858-948d-f2082ee181e8-root {
    text-align: center;
  }


#s-09cae535-ee4e-4858-948d-f2082ee181e8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-09cae535-ee4e-4858-948d-f2082ee181e8-root {
    text-align: center;
  }


#s-09cae535-ee4e-4858-948d-f2082ee181e8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-23512be6-f84a-40c6-a905-6fd657fe397a {
  text-align: left;
}

#s-eff5733f-83ed-46fb-918e-d33dd05cce80 {
  margin-top: 2%;
margin-left: 0%;
margin-right: 2%;
}

@media (min-width: 0px) {
[id="s-eff5733f-83ed-46fb-918e-d33dd05cce80"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-eff5733f-83ed-46fb-918e-d33dd05cce80"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-eff5733f-83ed-46fb-918e-d33dd05cce80"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-eff5733f-83ed-46fb-918e-d33dd05cce80"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

#s-54659646-61ec-4e00-9681-648a7692cea0 {
  text-align: center;
}







  img.s-54659646-61ec-4e00-9681-648a7692cea0.shogun-image {
    
    
  }


.s-54659646-61ec-4e00-9681-648a7692cea0 .shogun-image-content {
  
    align-items: center;
  
}

.s-54659646-61ec-4e00-9681-648a7692cea0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-54659646-61ec-4e00-9681-648a7692cea0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-54659646-61ec-4e00-9681-648a7692cea0.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-54659646-61ec-4e00-9681-648a7692cea0.shogun-image {
    
    
  }


.s-54659646-61ec-4e00-9681-648a7692cea0 .shogun-image-content {
  
    align-items: center;
  
}

.s-54659646-61ec-4e00-9681-648a7692cea0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-54659646-61ec-4e00-9681-648a7692cea0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-54659646-61ec-4e00-9681-648a7692cea0.shogun-image {
  box-sizing: border-box;
}

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





  img.s-54659646-61ec-4e00-9681-648a7692cea0.shogun-image {
    
    
  }


.s-54659646-61ec-4e00-9681-648a7692cea0 .shogun-image-content {
  
    align-items: center;
  
}

.s-54659646-61ec-4e00-9681-648a7692cea0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-54659646-61ec-4e00-9681-648a7692cea0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-54659646-61ec-4e00-9681-648a7692cea0.shogun-image {
  box-sizing: border-box;
}

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





  img.s-54659646-61ec-4e00-9681-648a7692cea0.shogun-image {
    
    
  }


.s-54659646-61ec-4e00-9681-648a7692cea0 .shogun-image-content {
  
    align-items: center;
  
}

.s-54659646-61ec-4e00-9681-648a7692cea0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-54659646-61ec-4e00-9681-648a7692cea0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-54659646-61ec-4e00-9681-648a7692cea0.shogun-image {
  box-sizing: border-box;
}

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





  img.s-54659646-61ec-4e00-9681-648a7692cea0.shogun-image {
    
    
  }


.s-54659646-61ec-4e00-9681-648a7692cea0 .shogun-image-content {
  
    align-items: center;
  
}

.s-54659646-61ec-4e00-9681-648a7692cea0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-54659646-61ec-4e00-9681-648a7692cea0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-54659646-61ec-4e00-9681-648a7692cea0.shogun-image {
  box-sizing: border-box;
}

}
#s-2d47585d-a388-465a-8b77-f81746516283 {
  margin-left: 0%;
margin-right: 0%;
text-align: center;
}







  img.s-2d47585d-a388-465a-8b77-f81746516283.shogun-image {
    
    
  }


.s-2d47585d-a388-465a-8b77-f81746516283 .shogun-image-content {
  
    align-items: center;
  
}

.s-2d47585d-a388-465a-8b77-f81746516283.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2d47585d-a388-465a-8b77-f81746516283.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2d47585d-a388-465a-8b77-f81746516283.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-2d47585d-a388-465a-8b77-f81746516283.shogun-image {
    
    
  }


.s-2d47585d-a388-465a-8b77-f81746516283 .shogun-image-content {
  
    align-items: center;
  
}

.s-2d47585d-a388-465a-8b77-f81746516283.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2d47585d-a388-465a-8b77-f81746516283.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2d47585d-a388-465a-8b77-f81746516283.shogun-image {
  box-sizing: border-box;
}

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





  img.s-2d47585d-a388-465a-8b77-f81746516283.shogun-image {
    
    
  }


.s-2d47585d-a388-465a-8b77-f81746516283 .shogun-image-content {
  
    align-items: center;
  
}

.s-2d47585d-a388-465a-8b77-f81746516283.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2d47585d-a388-465a-8b77-f81746516283.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2d47585d-a388-465a-8b77-f81746516283.shogun-image {
  box-sizing: border-box;
}

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





  img.s-2d47585d-a388-465a-8b77-f81746516283.shogun-image {
    
    
  }


.s-2d47585d-a388-465a-8b77-f81746516283 .shogun-image-content {
  
    align-items: center;
  
}

.s-2d47585d-a388-465a-8b77-f81746516283.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2d47585d-a388-465a-8b77-f81746516283.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2d47585d-a388-465a-8b77-f81746516283.shogun-image {
  box-sizing: border-box;
}

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





  img.s-2d47585d-a388-465a-8b77-f81746516283.shogun-image {
    
    
  }


.s-2d47585d-a388-465a-8b77-f81746516283 .shogun-image-content {
  
    align-items: center;
  
}

.s-2d47585d-a388-465a-8b77-f81746516283.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2d47585d-a388-465a-8b77-f81746516283.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2d47585d-a388-465a-8b77-f81746516283.shogun-image {
  box-sizing: border-box;
}

}
#s-a3378f27-8a8e-43ab-8c2b-40df6dbc9d98 {
  text-align: center;
}







  img.s-a3378f27-8a8e-43ab-8c2b-40df6dbc9d98.shogun-image {
    
    
  }


.s-a3378f27-8a8e-43ab-8c2b-40df6dbc9d98 .shogun-image-content {
  
    align-items: center;
  
}

.s-a3378f27-8a8e-43ab-8c2b-40df6dbc9d98.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a3378f27-8a8e-43ab-8c2b-40df6dbc9d98.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a3378f27-8a8e-43ab-8c2b-40df6dbc9d98.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-a3378f27-8a8e-43ab-8c2b-40df6dbc9d98.shogun-image {
    
    
  }


.s-a3378f27-8a8e-43ab-8c2b-40df6dbc9d98 .shogun-image-content {
  
    align-items: center;
  
}

.s-a3378f27-8a8e-43ab-8c2b-40df6dbc9d98.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a3378f27-8a8e-43ab-8c2b-40df6dbc9d98.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a3378f27-8a8e-43ab-8c2b-40df6dbc9d98.shogun-image {
  box-sizing: border-box;
}

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





  img.s-a3378f27-8a8e-43ab-8c2b-40df6dbc9d98.shogun-image {
    
    
  }


.s-a3378f27-8a8e-43ab-8c2b-40df6dbc9d98 .shogun-image-content {
  
    align-items: center;
  
}

.s-a3378f27-8a8e-43ab-8c2b-40df6dbc9d98.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a3378f27-8a8e-43ab-8c2b-40df6dbc9d98.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a3378f27-8a8e-43ab-8c2b-40df6dbc9d98.shogun-image {
  box-sizing: border-box;
}

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





  img.s-a3378f27-8a8e-43ab-8c2b-40df6dbc9d98.shogun-image {
    
    
  }


.s-a3378f27-8a8e-43ab-8c2b-40df6dbc9d98 .shogun-image-content {
  
    align-items: center;
  
}

.s-a3378f27-8a8e-43ab-8c2b-40df6dbc9d98.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a3378f27-8a8e-43ab-8c2b-40df6dbc9d98.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a3378f27-8a8e-43ab-8c2b-40df6dbc9d98.shogun-image {
  box-sizing: border-box;
}

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





  img.s-a3378f27-8a8e-43ab-8c2b-40df6dbc9d98.shogun-image {
    
    
  }


.s-a3378f27-8a8e-43ab-8c2b-40df6dbc9d98 .shogun-image-content {
  
    align-items: center;
  
}

.s-a3378f27-8a8e-43ab-8c2b-40df6dbc9d98.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a3378f27-8a8e-43ab-8c2b-40df6dbc9d98.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a3378f27-8a8e-43ab-8c2b-40df6dbc9d98.shogun-image {
  box-sizing: border-box;
}

}
#s-0f3407db-fa35-42e4-abb4-9b8a1b6f904e {
  margin-left: 2%;
margin-right: 2%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0f3407db-fa35-42e4-abb4-9b8a1b6f904e .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  
  letter-spacing: 2px;
  text-align: center;
}



#s-cfd2f8d2-69fa-4f06-9b00-ac6545190074 {
  margin-left: 5%;
margin-right: 5%;
}

#s-54a7463c-9fa6-4da8-9d23-8fd65a309a76 {
  margin-left: 5%;
margin-right: 5%;
min-height: 50px;
}








#s-54a7463c-9fa6-4da8-9d23-8fd65a309a76 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-54a7463c-9fa6-4da8-9d23-8fd65a309a76.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-aaada315-ae4a-4832-b012-f4a09acdc269 {
  border-style: solid;
margin-top: 0px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-aaada315-ae4a-4832-b012-f4a09acdc269:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-aaada315-ae4a-4832-b012-f4a09acdc269:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-aaada315-ae4a-4832-b012-f4a09acdc269-root {
    text-align: center;
  }


#s-aaada315-ae4a-4832-b012-f4a09acdc269.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-aaada315-ae4a-4832-b012-f4a09acdc269-root {
    text-align: center;
  }


#s-aaada315-ae4a-4832-b012-f4a09acdc269.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-aaada315-ae4a-4832-b012-f4a09acdc269-root {
    text-align: center;
  }


#s-aaada315-ae4a-4832-b012-f4a09acdc269.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-aaada315-ae4a-4832-b012-f4a09acdc269-root {
    text-align: center;
  }


#s-aaada315-ae4a-4832-b012-f4a09acdc269.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-aaada315-ae4a-4832-b012-f4a09acdc269-root {
    text-align: center;
  }


#s-aaada315-ae4a-4832-b012-f4a09acdc269.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-aaada315-ae4a-4832-b012-f4a09acdc269-root {
    text-align: center;
  }


#s-aaada315-ae4a-4832-b012-f4a09acdc269.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-84ec81e4-ed3a-405f-bceb-22281ed40666 {
  margin-top: 0%;
margin-bottom: 0%;
min-height: 50px;
}
@media (min-width: 1200px){#s-84ec81e4-ed3a-405f-bceb-22281ed40666 {
  display: none;
}
#s-84ec81e4-ed3a-405f-bceb-22281ed40666, #wrap-s-84ec81e4-ed3a-405f-bceb-22281ed40666 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-84ec81e4-ed3a-405f-bceb-22281ed40666 {
  display: none;
}
#s-84ec81e4-ed3a-405f-bceb-22281ed40666, #wrap-s-84ec81e4-ed3a-405f-bceb-22281ed40666 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-84ec81e4-ed3a-405f-bceb-22281ed40666 {
  
}
}@media (max-width: 767px){#s-84ec81e4-ed3a-405f-bceb-22281ed40666 {
  
}
}







#s-84ec81e4-ed3a-405f-bceb-22281ed40666 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-84ec81e4-ed3a-405f-bceb-22281ed40666.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-17f3350c-e422-49f8-a8c0-c48416ad31e2 {
  margin-top: 5%;
margin-left: 4%;
margin-bottom: 5%;
margin-right: 4%;
min-height: 50px;
background-color: rgba(29, 29, 29, 1);
}








#s-17f3350c-e422-49f8-a8c0-c48416ad31e2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-17f3350c-e422-49f8-a8c0-c48416ad31e2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fdcecea9-2700-4c90-a55e-1e5702310685 {
  margin-top: 1px;
margin-left: 1px;
margin-bottom: 1px;
margin-right: 1px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-fdcecea9-2700-4c90-a55e-1e5702310685 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fdcecea9-2700-4c90-a55e-1e5702310685.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7d583baa-3ff1-4e06-a647-f401611ad6f8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7d583baa-3ff1-4e06-a647-f401611ad6f8 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-e2a25c35-849d-4f1c-9b08-5119b6d31892 {
  text-align: left;
}

#s-467e6690-3fab-41e2-8801-e1a118c7129a {
  margin-top: 2%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 3%;
}

@media (min-width: 0px) {
[id="s-467e6690-3fab-41e2-8801-e1a118c7129a"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-467e6690-3fab-41e2-8801-e1a118c7129a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-467e6690-3fab-41e2-8801-e1a118c7129a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-467e6690-3fab-41e2-8801-e1a118c7129a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

#s-c4beb674-e033-4649-9cbb-0a6ddd7820b6 {
  text-align: center;
}







  img.s-c4beb674-e033-4649-9cbb-0a6ddd7820b6.shogun-image {
    
    
  }


.s-c4beb674-e033-4649-9cbb-0a6ddd7820b6 .shogun-image-content {
  
    align-items: center;
  
}

.s-c4beb674-e033-4649-9cbb-0a6ddd7820b6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c4beb674-e033-4649-9cbb-0a6ddd7820b6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c4beb674-e033-4649-9cbb-0a6ddd7820b6.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-c4beb674-e033-4649-9cbb-0a6ddd7820b6.shogun-image {
    
    
  }


.s-c4beb674-e033-4649-9cbb-0a6ddd7820b6 .shogun-image-content {
  
    align-items: center;
  
}

.s-c4beb674-e033-4649-9cbb-0a6ddd7820b6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c4beb674-e033-4649-9cbb-0a6ddd7820b6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c4beb674-e033-4649-9cbb-0a6ddd7820b6.shogun-image {
  box-sizing: border-box;
}

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





  img.s-c4beb674-e033-4649-9cbb-0a6ddd7820b6.shogun-image {
    
    
  }


.s-c4beb674-e033-4649-9cbb-0a6ddd7820b6 .shogun-image-content {
  
    align-items: center;
  
}

.s-c4beb674-e033-4649-9cbb-0a6ddd7820b6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c4beb674-e033-4649-9cbb-0a6ddd7820b6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c4beb674-e033-4649-9cbb-0a6ddd7820b6.shogun-image {
  box-sizing: border-box;
}

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





  img.s-c4beb674-e033-4649-9cbb-0a6ddd7820b6.shogun-image {
    
    
  }


.s-c4beb674-e033-4649-9cbb-0a6ddd7820b6 .shogun-image-content {
  
    align-items: center;
  
}

.s-c4beb674-e033-4649-9cbb-0a6ddd7820b6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c4beb674-e033-4649-9cbb-0a6ddd7820b6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c4beb674-e033-4649-9cbb-0a6ddd7820b6.shogun-image {
  box-sizing: border-box;
}

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





  img.s-c4beb674-e033-4649-9cbb-0a6ddd7820b6.shogun-image {
    
    
  }


.s-c4beb674-e033-4649-9cbb-0a6ddd7820b6 .shogun-image-content {
  
    align-items: center;
  
}

.s-c4beb674-e033-4649-9cbb-0a6ddd7820b6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c4beb674-e033-4649-9cbb-0a6ddd7820b6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c4beb674-e033-4649-9cbb-0a6ddd7820b6.shogun-image {
  box-sizing: border-box;
}

}
#s-e9fab417-cd6f-4fb9-8974-de27b8b65319 {
  text-align: center;
}







  img.s-e9fab417-cd6f-4fb9-8974-de27b8b65319.shogun-image {
    
    
  }


.s-e9fab417-cd6f-4fb9-8974-de27b8b65319 .shogun-image-content {
  
    align-items: center;
  
}

.s-e9fab417-cd6f-4fb9-8974-de27b8b65319.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e9fab417-cd6f-4fb9-8974-de27b8b65319.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e9fab417-cd6f-4fb9-8974-de27b8b65319.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-e9fab417-cd6f-4fb9-8974-de27b8b65319.shogun-image {
    
    
  }


.s-e9fab417-cd6f-4fb9-8974-de27b8b65319 .shogun-image-content {
  
    align-items: center;
  
}

.s-e9fab417-cd6f-4fb9-8974-de27b8b65319.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e9fab417-cd6f-4fb9-8974-de27b8b65319.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e9fab417-cd6f-4fb9-8974-de27b8b65319.shogun-image {
  box-sizing: border-box;
}

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





  img.s-e9fab417-cd6f-4fb9-8974-de27b8b65319.shogun-image {
    
    
  }


.s-e9fab417-cd6f-4fb9-8974-de27b8b65319 .shogun-image-content {
  
    align-items: center;
  
}

.s-e9fab417-cd6f-4fb9-8974-de27b8b65319.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e9fab417-cd6f-4fb9-8974-de27b8b65319.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e9fab417-cd6f-4fb9-8974-de27b8b65319.shogun-image {
  box-sizing: border-box;
}

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





  img.s-e9fab417-cd6f-4fb9-8974-de27b8b65319.shogun-image {
    
    
  }


.s-e9fab417-cd6f-4fb9-8974-de27b8b65319 .shogun-image-content {
  
    align-items: center;
  
}

.s-e9fab417-cd6f-4fb9-8974-de27b8b65319.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e9fab417-cd6f-4fb9-8974-de27b8b65319.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e9fab417-cd6f-4fb9-8974-de27b8b65319.shogun-image {
  box-sizing: border-box;
}

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





  img.s-e9fab417-cd6f-4fb9-8974-de27b8b65319.shogun-image {
    
    
  }


.s-e9fab417-cd6f-4fb9-8974-de27b8b65319 .shogun-image-content {
  
    align-items: center;
  
}

.s-e9fab417-cd6f-4fb9-8974-de27b8b65319.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e9fab417-cd6f-4fb9-8974-de27b8b65319.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e9fab417-cd6f-4fb9-8974-de27b8b65319.shogun-image {
  box-sizing: border-box;
}

}
#s-f3101c8a-ea5e-49c7-ba44-4d0d08923450 {
  text-align: center;
}







  img.s-f3101c8a-ea5e-49c7-ba44-4d0d08923450.shogun-image {
    
    
  }


.s-f3101c8a-ea5e-49c7-ba44-4d0d08923450 .shogun-image-content {
  
    align-items: center;
  
}

.s-f3101c8a-ea5e-49c7-ba44-4d0d08923450.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f3101c8a-ea5e-49c7-ba44-4d0d08923450.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f3101c8a-ea5e-49c7-ba44-4d0d08923450.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-f3101c8a-ea5e-49c7-ba44-4d0d08923450.shogun-image {
    
    
  }


.s-f3101c8a-ea5e-49c7-ba44-4d0d08923450 .shogun-image-content {
  
    align-items: center;
  
}

.s-f3101c8a-ea5e-49c7-ba44-4d0d08923450.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f3101c8a-ea5e-49c7-ba44-4d0d08923450.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f3101c8a-ea5e-49c7-ba44-4d0d08923450.shogun-image {
  box-sizing: border-box;
}

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





  img.s-f3101c8a-ea5e-49c7-ba44-4d0d08923450.shogun-image {
    
    
  }


.s-f3101c8a-ea5e-49c7-ba44-4d0d08923450 .shogun-image-content {
  
    align-items: center;
  
}

.s-f3101c8a-ea5e-49c7-ba44-4d0d08923450.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f3101c8a-ea5e-49c7-ba44-4d0d08923450.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f3101c8a-ea5e-49c7-ba44-4d0d08923450.shogun-image {
  box-sizing: border-box;
}

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





  img.s-f3101c8a-ea5e-49c7-ba44-4d0d08923450.shogun-image {
    
    
  }


.s-f3101c8a-ea5e-49c7-ba44-4d0d08923450 .shogun-image-content {
  
    align-items: center;
  
}

.s-f3101c8a-ea5e-49c7-ba44-4d0d08923450.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f3101c8a-ea5e-49c7-ba44-4d0d08923450.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f3101c8a-ea5e-49c7-ba44-4d0d08923450.shogun-image {
  box-sizing: border-box;
}

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





  img.s-f3101c8a-ea5e-49c7-ba44-4d0d08923450.shogun-image {
    
    
  }


.s-f3101c8a-ea5e-49c7-ba44-4d0d08923450 .shogun-image-content {
  
    align-items: center;
  
}

.s-f3101c8a-ea5e-49c7-ba44-4d0d08923450.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f3101c8a-ea5e-49c7-ba44-4d0d08923450.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f3101c8a-ea5e-49c7-ba44-4d0d08923450.shogun-image {
  box-sizing: border-box;
}

}
#s-c81bba33-9031-4a9e-bad0-4e75ccbbd62e {
  margin-left: 2%;
margin-right: 2%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c81bba33-9031-4a9e-bad0-4e75ccbbd62e .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  
  letter-spacing: 2px;
  text-align: center;
}



#s-0d773aeb-163e-40b2-85aa-38731fdbcd10 {
  margin-left: 5%;
margin-right: 5%;
}

#s-d9c6c027-dbe4-4e1e-bb56-f5af2867fb0b {
  margin-left: 5%;
margin-right: 5%;
min-height: 50px;
}








#s-d9c6c027-dbe4-4e1e-bb56-f5af2867fb0b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d9c6c027-dbe4-4e1e-bb56-f5af2867fb0b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0f7680a4-4e3f-4288-ab32-d946c958d9e8 {
  border-style: solid;
margin-top: 0px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-0f7680a4-4e3f-4288-ab32-d946c958d9e8:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-0f7680a4-4e3f-4288-ab32-d946c958d9e8:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-0f7680a4-4e3f-4288-ab32-d946c958d9e8-root {
    text-align: center;
  }


#s-0f7680a4-4e3f-4288-ab32-d946c958d9e8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-0f7680a4-4e3f-4288-ab32-d946c958d9e8-root {
    text-align: center;
  }


#s-0f7680a4-4e3f-4288-ab32-d946c958d9e8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-0f7680a4-4e3f-4288-ab32-d946c958d9e8-root {
    text-align: center;
  }


#s-0f7680a4-4e3f-4288-ab32-d946c958d9e8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-0f7680a4-4e3f-4288-ab32-d946c958d9e8-root {
    text-align: center;
  }


#s-0f7680a4-4e3f-4288-ab32-d946c958d9e8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-0f7680a4-4e3f-4288-ab32-d946c958d9e8-root {
    text-align: center;
  }


#s-0f7680a4-4e3f-4288-ab32-d946c958d9e8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-0f7680a4-4e3f-4288-ab32-d946c958d9e8-root {
    text-align: center;
  }


#s-0f7680a4-4e3f-4288-ab32-d946c958d9e8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-67df7485-5938-4ce6-8537-af81e0a2e575 {
  margin-top: 0%;
margin-bottom: 0%;
min-height: 50px;
}
@media (min-width: 1200px){#s-67df7485-5938-4ce6-8537-af81e0a2e575 {
  display: none;
}
#s-67df7485-5938-4ce6-8537-af81e0a2e575, #wrap-s-67df7485-5938-4ce6-8537-af81e0a2e575 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-67df7485-5938-4ce6-8537-af81e0a2e575 {
  display: none;
}
#s-67df7485-5938-4ce6-8537-af81e0a2e575, #wrap-s-67df7485-5938-4ce6-8537-af81e0a2e575 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-67df7485-5938-4ce6-8537-af81e0a2e575 {
  
}
}@media (max-width: 767px){#s-67df7485-5938-4ce6-8537-af81e0a2e575 {
  
}
}







#s-67df7485-5938-4ce6-8537-af81e0a2e575 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-67df7485-5938-4ce6-8537-af81e0a2e575.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9324fbef-0725-49a4-97da-df8bac490524 {
  margin-top: 5%;
margin-left: 4%;
margin-bottom: 5%;
margin-right: 4%;
min-height: 50px;
background-color: rgba(29, 29, 29, 1);
}








#s-9324fbef-0725-49a4-97da-df8bac490524 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9324fbef-0725-49a4-97da-df8bac490524.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-68071815-a60e-486c-8f97-3f4b1d4ae5fe {
  margin-top: 1px;
margin-left: 1px;
margin-bottom: 1px;
margin-right: 1px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-68071815-a60e-486c-8f97-3f4b1d4ae5fe > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-68071815-a60e-486c-8f97-3f4b1d4ae5fe.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-62162cd7-b877-4654-8489-22e0eee5b46d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-62162cd7-b877-4654-8489-22e0eee5b46d .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-ade75004-0cee-47e1-8042-e27d318bd5e4 {
  text-align: left;
}

#s-b09d2701-8fdf-4062-b73c-185d2475832c {
  margin-top: 2%;
margin-left: 17%;
margin-right: 17%;
}

@media (min-width: 0px) {
[id="s-b09d2701-8fdf-4062-b73c-185d2475832c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 768px) {
[id="s-b09d2701-8fdf-4062-b73c-185d2475832c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-b09d2701-8fdf-4062-b73c-185d2475832c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-b09d2701-8fdf-4062-b73c-185d2475832c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 7.5px);
}

}

#s-9b73df79-7b09-4fcc-afa5-c817402d5463 {
  text-align: center;
}







  img.s-9b73df79-7b09-4fcc-afa5-c817402d5463.shogun-image {
    
    
  }


.s-9b73df79-7b09-4fcc-afa5-c817402d5463 .shogun-image-content {
  
    align-items: center;
  
}

.s-9b73df79-7b09-4fcc-afa5-c817402d5463.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9b73df79-7b09-4fcc-afa5-c817402d5463.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b73df79-7b09-4fcc-afa5-c817402d5463.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-9b73df79-7b09-4fcc-afa5-c817402d5463.shogun-image {
    
    
  }


.s-9b73df79-7b09-4fcc-afa5-c817402d5463 .shogun-image-content {
  
    align-items: center;
  
}

.s-9b73df79-7b09-4fcc-afa5-c817402d5463.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9b73df79-7b09-4fcc-afa5-c817402d5463.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b73df79-7b09-4fcc-afa5-c817402d5463.shogun-image {
  box-sizing: border-box;
}

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





  img.s-9b73df79-7b09-4fcc-afa5-c817402d5463.shogun-image {
    
    
  }


.s-9b73df79-7b09-4fcc-afa5-c817402d5463 .shogun-image-content {
  
    align-items: center;
  
}

.s-9b73df79-7b09-4fcc-afa5-c817402d5463.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9b73df79-7b09-4fcc-afa5-c817402d5463.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b73df79-7b09-4fcc-afa5-c817402d5463.shogun-image {
  box-sizing: border-box;
}

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





  img.s-9b73df79-7b09-4fcc-afa5-c817402d5463.shogun-image {
    
    
  }


.s-9b73df79-7b09-4fcc-afa5-c817402d5463 .shogun-image-content {
  
    align-items: center;
  
}

.s-9b73df79-7b09-4fcc-afa5-c817402d5463.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9b73df79-7b09-4fcc-afa5-c817402d5463.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b73df79-7b09-4fcc-afa5-c817402d5463.shogun-image {
  box-sizing: border-box;
}

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





  img.s-9b73df79-7b09-4fcc-afa5-c817402d5463.shogun-image {
    
    
  }


.s-9b73df79-7b09-4fcc-afa5-c817402d5463 .shogun-image-content {
  
    align-items: center;
  
}

.s-9b73df79-7b09-4fcc-afa5-c817402d5463.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9b73df79-7b09-4fcc-afa5-c817402d5463.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b73df79-7b09-4fcc-afa5-c817402d5463.shogun-image {
  box-sizing: border-box;
}

}
#s-5c09d8d2-50f9-4611-b92d-27fa9b3c4d00 {
  text-align: center;
}







  img.s-5c09d8d2-50f9-4611-b92d-27fa9b3c4d00.shogun-image {
    
    
  }


.s-5c09d8d2-50f9-4611-b92d-27fa9b3c4d00 .shogun-image-content {
  
    align-items: center;
  
}

.s-5c09d8d2-50f9-4611-b92d-27fa9b3c4d00.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5c09d8d2-50f9-4611-b92d-27fa9b3c4d00.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5c09d8d2-50f9-4611-b92d-27fa9b3c4d00.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-5c09d8d2-50f9-4611-b92d-27fa9b3c4d00.shogun-image {
    
    
  }


.s-5c09d8d2-50f9-4611-b92d-27fa9b3c4d00 .shogun-image-content {
  
    align-items: center;
  
}

.s-5c09d8d2-50f9-4611-b92d-27fa9b3c4d00.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5c09d8d2-50f9-4611-b92d-27fa9b3c4d00.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5c09d8d2-50f9-4611-b92d-27fa9b3c4d00.shogun-image {
  box-sizing: border-box;
}

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





  img.s-5c09d8d2-50f9-4611-b92d-27fa9b3c4d00.shogun-image {
    
    
  }


.s-5c09d8d2-50f9-4611-b92d-27fa9b3c4d00 .shogun-image-content {
  
    align-items: center;
  
}

.s-5c09d8d2-50f9-4611-b92d-27fa9b3c4d00.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5c09d8d2-50f9-4611-b92d-27fa9b3c4d00.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5c09d8d2-50f9-4611-b92d-27fa9b3c4d00.shogun-image {
  box-sizing: border-box;
}

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





  img.s-5c09d8d2-50f9-4611-b92d-27fa9b3c4d00.shogun-image {
    
    
  }


.s-5c09d8d2-50f9-4611-b92d-27fa9b3c4d00 .shogun-image-content {
  
    align-items: center;
  
}

.s-5c09d8d2-50f9-4611-b92d-27fa9b3c4d00.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5c09d8d2-50f9-4611-b92d-27fa9b3c4d00.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5c09d8d2-50f9-4611-b92d-27fa9b3c4d00.shogun-image {
  box-sizing: border-box;
}

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





  img.s-5c09d8d2-50f9-4611-b92d-27fa9b3c4d00.shogun-image {
    
    
  }


.s-5c09d8d2-50f9-4611-b92d-27fa9b3c4d00 .shogun-image-content {
  
    align-items: center;
  
}

.s-5c09d8d2-50f9-4611-b92d-27fa9b3c4d00.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5c09d8d2-50f9-4611-b92d-27fa9b3c4d00.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5c09d8d2-50f9-4611-b92d-27fa9b3c4d00.shogun-image {
  box-sizing: border-box;
}

}
#s-a842c646-0c1b-49f4-b8a2-3e573d054e81 {
  margin-left: 2%;
margin-right: 2%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a842c646-0c1b-49f4-b8a2-3e573d054e81 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  
  letter-spacing: 2px;
  text-align: center;
}



#s-22ad53bf-4f77-4802-8f4a-93cea0a5d072 {
  margin-left: 5%;
margin-right: 5%;
}

#s-377ee1bf-94de-4b4b-9b84-89258de2bf62 {
  margin-left: 5%;
margin-right: 5%;
min-height: 50px;
}








#s-377ee1bf-94de-4b4b-9b84-89258de2bf62 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-377ee1bf-94de-4b4b-9b84-89258de2bf62.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8cff43fd-f5bf-4970-a4d1-2a775b2ae11c {
  border-style: solid;
margin-top: 0px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-8cff43fd-f5bf-4970-a4d1-2a775b2ae11c:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-8cff43fd-f5bf-4970-a4d1-2a775b2ae11c:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-8cff43fd-f5bf-4970-a4d1-2a775b2ae11c-root {
    text-align: center;
  }


#s-8cff43fd-f5bf-4970-a4d1-2a775b2ae11c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-8cff43fd-f5bf-4970-a4d1-2a775b2ae11c-root {
    text-align: center;
  }


#s-8cff43fd-f5bf-4970-a4d1-2a775b2ae11c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-8cff43fd-f5bf-4970-a4d1-2a775b2ae11c-root {
    text-align: center;
  }


#s-8cff43fd-f5bf-4970-a4d1-2a775b2ae11c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-8cff43fd-f5bf-4970-a4d1-2a775b2ae11c-root {
    text-align: center;
  }


#s-8cff43fd-f5bf-4970-a4d1-2a775b2ae11c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-8cff43fd-f5bf-4970-a4d1-2a775b2ae11c-root {
    text-align: center;
  }


#s-8cff43fd-f5bf-4970-a4d1-2a775b2ae11c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-8cff43fd-f5bf-4970-a4d1-2a775b2ae11c-root {
    text-align: center;
  }


#s-8cff43fd-f5bf-4970-a4d1-2a775b2ae11c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-9b8e5580-68a3-4823-b1eb-6d3639d2931d {
  text-align: left;
}

#s-1148c288-be6e-4e1c-be7c-3e92775ba39e {
  margin-top: 2%;
margin-left: 0%;
margin-right: 2%;
}

@media (min-width: 0px) {
[id="s-1148c288-be6e-4e1c-be7c-3e92775ba39e"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-1148c288-be6e-4e1c-be7c-3e92775ba39e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-1148c288-be6e-4e1c-be7c-3e92775ba39e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-1148c288-be6e-4e1c-be7c-3e92775ba39e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

#s-63a4c55d-3c1e-476f-b7ae-f2b06dfffb39 {
  text-align: center;
}







  img.s-63a4c55d-3c1e-476f-b7ae-f2b06dfffb39.shogun-image {
    
    
  }


.s-63a4c55d-3c1e-476f-b7ae-f2b06dfffb39 .shogun-image-content {
  
    align-items: center;
  
}

.s-63a4c55d-3c1e-476f-b7ae-f2b06dfffb39.shg-align-container {
  display: flex;
  justify-content: center
}

.s-63a4c55d-3c1e-476f-b7ae-f2b06dfffb39.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-63a4c55d-3c1e-476f-b7ae-f2b06dfffb39.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-63a4c55d-3c1e-476f-b7ae-f2b06dfffb39.shogun-image {
    
    
  }


.s-63a4c55d-3c1e-476f-b7ae-f2b06dfffb39 .shogun-image-content {
  
    align-items: center;
  
}

.s-63a4c55d-3c1e-476f-b7ae-f2b06dfffb39.shg-align-container {
  display: flex;
  justify-content: center
}

.s-63a4c55d-3c1e-476f-b7ae-f2b06dfffb39.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-63a4c55d-3c1e-476f-b7ae-f2b06dfffb39.shogun-image {
  box-sizing: border-box;
}

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





  img.s-63a4c55d-3c1e-476f-b7ae-f2b06dfffb39.shogun-image {
    
    
  }


.s-63a4c55d-3c1e-476f-b7ae-f2b06dfffb39 .shogun-image-content {
  
    align-items: center;
  
}

.s-63a4c55d-3c1e-476f-b7ae-f2b06dfffb39.shg-align-container {
  display: flex;
  justify-content: center
}

.s-63a4c55d-3c1e-476f-b7ae-f2b06dfffb39.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-63a4c55d-3c1e-476f-b7ae-f2b06dfffb39.shogun-image {
  box-sizing: border-box;
}

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





  img.s-63a4c55d-3c1e-476f-b7ae-f2b06dfffb39.shogun-image {
    
    
  }


.s-63a4c55d-3c1e-476f-b7ae-f2b06dfffb39 .shogun-image-content {
  
    align-items: center;
  
}

.s-63a4c55d-3c1e-476f-b7ae-f2b06dfffb39.shg-align-container {
  display: flex;
  justify-content: center
}

.s-63a4c55d-3c1e-476f-b7ae-f2b06dfffb39.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-63a4c55d-3c1e-476f-b7ae-f2b06dfffb39.shogun-image {
  box-sizing: border-box;
}

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





  img.s-63a4c55d-3c1e-476f-b7ae-f2b06dfffb39.shogun-image {
    
    
  }


.s-63a4c55d-3c1e-476f-b7ae-f2b06dfffb39 .shogun-image-content {
  
    align-items: center;
  
}

.s-63a4c55d-3c1e-476f-b7ae-f2b06dfffb39.shg-align-container {
  display: flex;
  justify-content: center
}

.s-63a4c55d-3c1e-476f-b7ae-f2b06dfffb39.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-63a4c55d-3c1e-476f-b7ae-f2b06dfffb39.shogun-image {
  box-sizing: border-box;
}

}
#s-bebcde4b-c9ab-46cd-8ac6-151fc4316a4b {
  margin-left: 1%;
margin-right: 1%;
text-align: center;
}







  img.s-bebcde4b-c9ab-46cd-8ac6-151fc4316a4b.shogun-image {
    
    
  }


.s-bebcde4b-c9ab-46cd-8ac6-151fc4316a4b .shogun-image-content {
  
    align-items: center;
  
}

.s-bebcde4b-c9ab-46cd-8ac6-151fc4316a4b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bebcde4b-c9ab-46cd-8ac6-151fc4316a4b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bebcde4b-c9ab-46cd-8ac6-151fc4316a4b.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-bebcde4b-c9ab-46cd-8ac6-151fc4316a4b.shogun-image {
    
    
  }


.s-bebcde4b-c9ab-46cd-8ac6-151fc4316a4b .shogun-image-content {
  
    align-items: center;
  
}

.s-bebcde4b-c9ab-46cd-8ac6-151fc4316a4b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bebcde4b-c9ab-46cd-8ac6-151fc4316a4b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bebcde4b-c9ab-46cd-8ac6-151fc4316a4b.shogun-image {
  box-sizing: border-box;
}

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





  img.s-bebcde4b-c9ab-46cd-8ac6-151fc4316a4b.shogun-image {
    
    
  }


.s-bebcde4b-c9ab-46cd-8ac6-151fc4316a4b .shogun-image-content {
  
    align-items: center;
  
}

.s-bebcde4b-c9ab-46cd-8ac6-151fc4316a4b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bebcde4b-c9ab-46cd-8ac6-151fc4316a4b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bebcde4b-c9ab-46cd-8ac6-151fc4316a4b.shogun-image {
  box-sizing: border-box;
}

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





  img.s-bebcde4b-c9ab-46cd-8ac6-151fc4316a4b.shogun-image {
    
    
  }


.s-bebcde4b-c9ab-46cd-8ac6-151fc4316a4b .shogun-image-content {
  
    align-items: center;
  
}

.s-bebcde4b-c9ab-46cd-8ac6-151fc4316a4b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bebcde4b-c9ab-46cd-8ac6-151fc4316a4b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bebcde4b-c9ab-46cd-8ac6-151fc4316a4b.shogun-image {
  box-sizing: border-box;
}

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





  img.s-bebcde4b-c9ab-46cd-8ac6-151fc4316a4b.shogun-image {
    
    
  }


.s-bebcde4b-c9ab-46cd-8ac6-151fc4316a4b .shogun-image-content {
  
    align-items: center;
  
}

.s-bebcde4b-c9ab-46cd-8ac6-151fc4316a4b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bebcde4b-c9ab-46cd-8ac6-151fc4316a4b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bebcde4b-c9ab-46cd-8ac6-151fc4316a4b.shogun-image {
  box-sizing: border-box;
}

}
#s-89917d27-40e3-4e00-8b13-0caef7831afa {
  text-align: center;
}







  img.s-89917d27-40e3-4e00-8b13-0caef7831afa.shogun-image {
    
    
  }


.s-89917d27-40e3-4e00-8b13-0caef7831afa .shogun-image-content {
  
    align-items: center;
  
}

.s-89917d27-40e3-4e00-8b13-0caef7831afa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89917d27-40e3-4e00-8b13-0caef7831afa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89917d27-40e3-4e00-8b13-0caef7831afa.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-89917d27-40e3-4e00-8b13-0caef7831afa.shogun-image {
    
    
  }


.s-89917d27-40e3-4e00-8b13-0caef7831afa .shogun-image-content {
  
    align-items: center;
  
}

.s-89917d27-40e3-4e00-8b13-0caef7831afa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89917d27-40e3-4e00-8b13-0caef7831afa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89917d27-40e3-4e00-8b13-0caef7831afa.shogun-image {
  box-sizing: border-box;
}

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





  img.s-89917d27-40e3-4e00-8b13-0caef7831afa.shogun-image {
    
    
  }


.s-89917d27-40e3-4e00-8b13-0caef7831afa .shogun-image-content {
  
    align-items: center;
  
}

.s-89917d27-40e3-4e00-8b13-0caef7831afa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89917d27-40e3-4e00-8b13-0caef7831afa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89917d27-40e3-4e00-8b13-0caef7831afa.shogun-image {
  box-sizing: border-box;
}

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





  img.s-89917d27-40e3-4e00-8b13-0caef7831afa.shogun-image {
    
    
  }


.s-89917d27-40e3-4e00-8b13-0caef7831afa .shogun-image-content {
  
    align-items: center;
  
}

.s-89917d27-40e3-4e00-8b13-0caef7831afa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89917d27-40e3-4e00-8b13-0caef7831afa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89917d27-40e3-4e00-8b13-0caef7831afa.shogun-image {
  box-sizing: border-box;
}

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





  img.s-89917d27-40e3-4e00-8b13-0caef7831afa.shogun-image {
    
    
  }


.s-89917d27-40e3-4e00-8b13-0caef7831afa .shogun-image-content {
  
    align-items: center;
  
}

.s-89917d27-40e3-4e00-8b13-0caef7831afa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89917d27-40e3-4e00-8b13-0caef7831afa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89917d27-40e3-4e00-8b13-0caef7831afa.shogun-image {
  box-sizing: border-box;
}

}
#s-8432b2ae-ef9a-46a5-89ad-2da6f9dfae11 {
  margin-left: 2%;
margin-right: 2%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8432b2ae-ef9a-46a5-89ad-2da6f9dfae11 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  
  letter-spacing: 2px;
  text-align: center;
}



#s-c2602c92-1440-4c5f-a23b-c2dd27900035 {
  margin-left: 5%;
margin-right: 5%;
}

#s-15d8d230-37cc-4328-98ca-75e39785d094 {
  margin-left: 5%;
margin-right: 5%;
min-height: 50px;
}








#s-15d8d230-37cc-4328-98ca-75e39785d094 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-15d8d230-37cc-4328-98ca-75e39785d094.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-53c7155e-7d79-4f89-80d5-827473313a0b {
  border-style: solid;
margin-top: 0px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-53c7155e-7d79-4f89-80d5-827473313a0b:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-53c7155e-7d79-4f89-80d5-827473313a0b:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-53c7155e-7d79-4f89-80d5-827473313a0b-root {
    text-align: center;
  }


#s-53c7155e-7d79-4f89-80d5-827473313a0b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-53c7155e-7d79-4f89-80d5-827473313a0b-root {
    text-align: center;
  }


#s-53c7155e-7d79-4f89-80d5-827473313a0b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-53c7155e-7d79-4f89-80d5-827473313a0b-root {
    text-align: center;
  }


#s-53c7155e-7d79-4f89-80d5-827473313a0b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-53c7155e-7d79-4f89-80d5-827473313a0b-root {
    text-align: center;
  }


#s-53c7155e-7d79-4f89-80d5-827473313a0b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-53c7155e-7d79-4f89-80d5-827473313a0b-root {
    text-align: center;
  }


#s-53c7155e-7d79-4f89-80d5-827473313a0b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-53c7155e-7d79-4f89-80d5-827473313a0b-root {
    text-align: center;
  }


#s-53c7155e-7d79-4f89-80d5-827473313a0b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-bc359303-b930-48f4-b3c0-d62100ccfa49 {
  margin-top: 0%;
margin-bottom: 0%;
min-height: 50px;
}
@media (min-width: 1200px){#s-bc359303-b930-48f4-b3c0-d62100ccfa49 {
  display: none;
}
#s-bc359303-b930-48f4-b3c0-d62100ccfa49, #wrap-s-bc359303-b930-48f4-b3c0-d62100ccfa49 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-bc359303-b930-48f4-b3c0-d62100ccfa49 {
  display: none;
}
#s-bc359303-b930-48f4-b3c0-d62100ccfa49, #wrap-s-bc359303-b930-48f4-b3c0-d62100ccfa49 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-bc359303-b930-48f4-b3c0-d62100ccfa49 {
  
}
}@media (max-width: 767px){#s-bc359303-b930-48f4-b3c0-d62100ccfa49 {
  
}
}







#s-bc359303-b930-48f4-b3c0-d62100ccfa49 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bc359303-b930-48f4-b3c0-d62100ccfa49.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ba74f685-b601-4cf3-868a-a4c6bcc35d95 {
  margin-top: 5%;
margin-left: 4%;
margin-bottom: 5%;
margin-right: 4%;
min-height: 50px;
background-color: rgba(29, 29, 29, 1);
}








#s-ba74f685-b601-4cf3-868a-a4c6bcc35d95 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ba74f685-b601-4cf3-868a-a4c6bcc35d95.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-323db770-622e-4fa7-b4be-d3d7c614a647 {
  margin-top: 1px;
margin-left: 1px;
margin-bottom: 1px;
margin-right: 1px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-323db770-622e-4fa7-b4be-d3d7c614a647 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-323db770-622e-4fa7-b4be-d3d7c614a647.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0a37484e-f1f1-4426-98e3-b9fc1b23cc16 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0a37484e-f1f1-4426-98e3-b9fc1b23cc16 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  line-height: 1.5em;
  letter-spacing: 2px;
  
}



#s-d5cc4767-8879-4bab-ae1f-6b1baf7d1d6e {
  text-align: left;
}

#s-ac88470b-c6db-40ec-b8a8-8eb738f29bdf {
  margin-top: 2%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 3%;
}

@media (min-width: 0px) {
[id="s-ac88470b-c6db-40ec-b8a8-8eb738f29bdf"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-ac88470b-c6db-40ec-b8a8-8eb738f29bdf"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-ac88470b-c6db-40ec-b8a8-8eb738f29bdf"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-ac88470b-c6db-40ec-b8a8-8eb738f29bdf"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

#s-bce9466a-3dc2-403c-83e5-a697c2ca5a28 {
  text-align: center;
}







  img.s-bce9466a-3dc2-403c-83e5-a697c2ca5a28.shogun-image {
    
    
  }


.s-bce9466a-3dc2-403c-83e5-a697c2ca5a28 .shogun-image-content {
  
    align-items: center;
  
}

.s-bce9466a-3dc2-403c-83e5-a697c2ca5a28.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bce9466a-3dc2-403c-83e5-a697c2ca5a28.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bce9466a-3dc2-403c-83e5-a697c2ca5a28.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-bce9466a-3dc2-403c-83e5-a697c2ca5a28.shogun-image {
    
    
  }


.s-bce9466a-3dc2-403c-83e5-a697c2ca5a28 .shogun-image-content {
  
    align-items: center;
  
}

.s-bce9466a-3dc2-403c-83e5-a697c2ca5a28.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bce9466a-3dc2-403c-83e5-a697c2ca5a28.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bce9466a-3dc2-403c-83e5-a697c2ca5a28.shogun-image {
  box-sizing: border-box;
}

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





  img.s-bce9466a-3dc2-403c-83e5-a697c2ca5a28.shogun-image {
    
    
  }


.s-bce9466a-3dc2-403c-83e5-a697c2ca5a28 .shogun-image-content {
  
    align-items: center;
  
}

.s-bce9466a-3dc2-403c-83e5-a697c2ca5a28.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bce9466a-3dc2-403c-83e5-a697c2ca5a28.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bce9466a-3dc2-403c-83e5-a697c2ca5a28.shogun-image {
  box-sizing: border-box;
}

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





  img.s-bce9466a-3dc2-403c-83e5-a697c2ca5a28.shogun-image {
    
    
  }


.s-bce9466a-3dc2-403c-83e5-a697c2ca5a28 .shogun-image-content {
  
    align-items: center;
  
}

.s-bce9466a-3dc2-403c-83e5-a697c2ca5a28.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bce9466a-3dc2-403c-83e5-a697c2ca5a28.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bce9466a-3dc2-403c-83e5-a697c2ca5a28.shogun-image {
  box-sizing: border-box;
}

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





  img.s-bce9466a-3dc2-403c-83e5-a697c2ca5a28.shogun-image {
    
    
  }


.s-bce9466a-3dc2-403c-83e5-a697c2ca5a28 .shogun-image-content {
  
    align-items: center;
  
}

.s-bce9466a-3dc2-403c-83e5-a697c2ca5a28.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bce9466a-3dc2-403c-83e5-a697c2ca5a28.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bce9466a-3dc2-403c-83e5-a697c2ca5a28.shogun-image {
  box-sizing: border-box;
}

}
#s-f73b9702-b5a9-437f-b49a-2ac5472faf1a {
  margin-left: 1%;
margin-right: 1%;
text-align: center;
}







  img.s-f73b9702-b5a9-437f-b49a-2ac5472faf1a.shogun-image {
    
    
  }


.s-f73b9702-b5a9-437f-b49a-2ac5472faf1a .shogun-image-content {
  
    align-items: center;
  
}

.s-f73b9702-b5a9-437f-b49a-2ac5472faf1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f73b9702-b5a9-437f-b49a-2ac5472faf1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f73b9702-b5a9-437f-b49a-2ac5472faf1a.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-f73b9702-b5a9-437f-b49a-2ac5472faf1a.shogun-image {
    
    
  }


.s-f73b9702-b5a9-437f-b49a-2ac5472faf1a .shogun-image-content {
  
    align-items: center;
  
}

.s-f73b9702-b5a9-437f-b49a-2ac5472faf1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f73b9702-b5a9-437f-b49a-2ac5472faf1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f73b9702-b5a9-437f-b49a-2ac5472faf1a.shogun-image {
  box-sizing: border-box;
}

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





  img.s-f73b9702-b5a9-437f-b49a-2ac5472faf1a.shogun-image {
    
    
  }


.s-f73b9702-b5a9-437f-b49a-2ac5472faf1a .shogun-image-content {
  
    align-items: center;
  
}

.s-f73b9702-b5a9-437f-b49a-2ac5472faf1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f73b9702-b5a9-437f-b49a-2ac5472faf1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f73b9702-b5a9-437f-b49a-2ac5472faf1a.shogun-image {
  box-sizing: border-box;
}

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





  img.s-f73b9702-b5a9-437f-b49a-2ac5472faf1a.shogun-image {
    
    
  }


.s-f73b9702-b5a9-437f-b49a-2ac5472faf1a .shogun-image-content {
  
    align-items: center;
  
}

.s-f73b9702-b5a9-437f-b49a-2ac5472faf1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f73b9702-b5a9-437f-b49a-2ac5472faf1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f73b9702-b5a9-437f-b49a-2ac5472faf1a.shogun-image {
  box-sizing: border-box;
}

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





  img.s-f73b9702-b5a9-437f-b49a-2ac5472faf1a.shogun-image {
    
    
  }


.s-f73b9702-b5a9-437f-b49a-2ac5472faf1a .shogun-image-content {
  
    align-items: center;
  
}

.s-f73b9702-b5a9-437f-b49a-2ac5472faf1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f73b9702-b5a9-437f-b49a-2ac5472faf1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f73b9702-b5a9-437f-b49a-2ac5472faf1a.shogun-image {
  box-sizing: border-box;
}

}
#s-4c96e1a6-14a7-41ff-8e37-9247b523206e {
  text-align: center;
}







  img.s-4c96e1a6-14a7-41ff-8e37-9247b523206e.shogun-image {
    
    
  }


.s-4c96e1a6-14a7-41ff-8e37-9247b523206e .shogun-image-content {
  
    align-items: center;
  
}

.s-4c96e1a6-14a7-41ff-8e37-9247b523206e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4c96e1a6-14a7-41ff-8e37-9247b523206e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4c96e1a6-14a7-41ff-8e37-9247b523206e.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-4c96e1a6-14a7-41ff-8e37-9247b523206e.shogun-image {
    
    
  }


.s-4c96e1a6-14a7-41ff-8e37-9247b523206e .shogun-image-content {
  
    align-items: center;
  
}

.s-4c96e1a6-14a7-41ff-8e37-9247b523206e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4c96e1a6-14a7-41ff-8e37-9247b523206e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4c96e1a6-14a7-41ff-8e37-9247b523206e.shogun-image {
  box-sizing: border-box;
}

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





  img.s-4c96e1a6-14a7-41ff-8e37-9247b523206e.shogun-image {
    
    
  }


.s-4c96e1a6-14a7-41ff-8e37-9247b523206e .shogun-image-content {
  
    align-items: center;
  
}

.s-4c96e1a6-14a7-41ff-8e37-9247b523206e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4c96e1a6-14a7-41ff-8e37-9247b523206e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4c96e1a6-14a7-41ff-8e37-9247b523206e.shogun-image {
  box-sizing: border-box;
}

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





  img.s-4c96e1a6-14a7-41ff-8e37-9247b523206e.shogun-image {
    
    
  }


.s-4c96e1a6-14a7-41ff-8e37-9247b523206e .shogun-image-content {
  
    align-items: center;
  
}

.s-4c96e1a6-14a7-41ff-8e37-9247b523206e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4c96e1a6-14a7-41ff-8e37-9247b523206e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4c96e1a6-14a7-41ff-8e37-9247b523206e.shogun-image {
  box-sizing: border-box;
}

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





  img.s-4c96e1a6-14a7-41ff-8e37-9247b523206e.shogun-image {
    
    
  }


.s-4c96e1a6-14a7-41ff-8e37-9247b523206e .shogun-image-content {
  
    align-items: center;
  
}

.s-4c96e1a6-14a7-41ff-8e37-9247b523206e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4c96e1a6-14a7-41ff-8e37-9247b523206e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4c96e1a6-14a7-41ff-8e37-9247b523206e.shogun-image {
  box-sizing: border-box;
}

}
#s-9fbba202-bff4-410e-8268-c9b7553438d6 {
  margin-left: 2%;
margin-right: 2%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9fbba202-bff4-410e-8268-c9b7553438d6 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  
  letter-spacing: 2px;
  text-align: center;
}



#s-1a177d1b-aa43-4ad2-bf6f-d4d5c2d8c6dd {
  margin-left: 5%;
margin-right: 5%;
}

#s-d0077411-4b64-46ad-8390-307b8bcd50ed {
  margin-left: 5%;
margin-right: 5%;
min-height: 50px;
}








#s-d0077411-4b64-46ad-8390-307b8bcd50ed > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d0077411-4b64-46ad-8390-307b8bcd50ed.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dc80240e-5f6b-4580-b863-76d013c03d2e {
  border-style: solid;
margin-top: 0px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-dc80240e-5f6b-4580-b863-76d013c03d2e:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-dc80240e-5f6b-4580-b863-76d013c03d2e:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-dc80240e-5f6b-4580-b863-76d013c03d2e-root {
    text-align: center;
  }


#s-dc80240e-5f6b-4580-b863-76d013c03d2e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-dc80240e-5f6b-4580-b863-76d013c03d2e-root {
    text-align: center;
  }


#s-dc80240e-5f6b-4580-b863-76d013c03d2e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-dc80240e-5f6b-4580-b863-76d013c03d2e-root {
    text-align: center;
  }


#s-dc80240e-5f6b-4580-b863-76d013c03d2e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-dc80240e-5f6b-4580-b863-76d013c03d2e-root {
    text-align: center;
  }


#s-dc80240e-5f6b-4580-b863-76d013c03d2e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-dc80240e-5f6b-4580-b863-76d013c03d2e-root {
    text-align: center;
  }


#s-dc80240e-5f6b-4580-b863-76d013c03d2e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-dc80240e-5f6b-4580-b863-76d013c03d2e-root {
    text-align: center;
  }


#s-dc80240e-5f6b-4580-b863-76d013c03d2e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-1a425cdc-7fb5-4ef5-85a4-1dcdb730d36e {
  text-align: left;
}

#s-29297587-fe63-4ec8-8ea7-6871aea5d8ed {
  margin-top: 2%;
margin-left: 17%;
margin-right: 17%;
}

@media (min-width: 0px) {
[id="s-29297587-fe63-4ec8-8ea7-6871aea5d8ed"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 768px) {
[id="s-29297587-fe63-4ec8-8ea7-6871aea5d8ed"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-29297587-fe63-4ec8-8ea7-6871aea5d8ed"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-29297587-fe63-4ec8-8ea7-6871aea5d8ed"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 7.5px);
}

}

#s-5e0f37cb-e384-449b-8170-01fd8fab47de {
  text-align: center;
}







  img.s-5e0f37cb-e384-449b-8170-01fd8fab47de.shogun-image {
    
    
  }


.s-5e0f37cb-e384-449b-8170-01fd8fab47de .shogun-image-content {
  
    align-items: center;
  
}

.s-5e0f37cb-e384-449b-8170-01fd8fab47de.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e0f37cb-e384-449b-8170-01fd8fab47de.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e0f37cb-e384-449b-8170-01fd8fab47de.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-5e0f37cb-e384-449b-8170-01fd8fab47de.shogun-image {
    
    
  }


.s-5e0f37cb-e384-449b-8170-01fd8fab47de .shogun-image-content {
  
    align-items: center;
  
}

.s-5e0f37cb-e384-449b-8170-01fd8fab47de.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e0f37cb-e384-449b-8170-01fd8fab47de.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e0f37cb-e384-449b-8170-01fd8fab47de.shogun-image {
  box-sizing: border-box;
}

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





  img.s-5e0f37cb-e384-449b-8170-01fd8fab47de.shogun-image {
    
    
  }


.s-5e0f37cb-e384-449b-8170-01fd8fab47de .shogun-image-content {
  
    align-items: center;
  
}

.s-5e0f37cb-e384-449b-8170-01fd8fab47de.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e0f37cb-e384-449b-8170-01fd8fab47de.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e0f37cb-e384-449b-8170-01fd8fab47de.shogun-image {
  box-sizing: border-box;
}

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





  img.s-5e0f37cb-e384-449b-8170-01fd8fab47de.shogun-image {
    
    
  }


.s-5e0f37cb-e384-449b-8170-01fd8fab47de .shogun-image-content {
  
    align-items: center;
  
}

.s-5e0f37cb-e384-449b-8170-01fd8fab47de.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e0f37cb-e384-449b-8170-01fd8fab47de.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e0f37cb-e384-449b-8170-01fd8fab47de.shogun-image {
  box-sizing: border-box;
}

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





  img.s-5e0f37cb-e384-449b-8170-01fd8fab47de.shogun-image {
    
    
  }


.s-5e0f37cb-e384-449b-8170-01fd8fab47de .shogun-image-content {
  
    align-items: center;
  
}

.s-5e0f37cb-e384-449b-8170-01fd8fab47de.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e0f37cb-e384-449b-8170-01fd8fab47de.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e0f37cb-e384-449b-8170-01fd8fab47de.shogun-image {
  box-sizing: border-box;
}

}
#s-94296193-d16f-4021-91f7-f128dae5e3a0 {
  text-align: center;
}







  img.s-94296193-d16f-4021-91f7-f128dae5e3a0.shogun-image {
    
    
  }


.s-94296193-d16f-4021-91f7-f128dae5e3a0 .shogun-image-content {
  
    align-items: center;
  
}

.s-94296193-d16f-4021-91f7-f128dae5e3a0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-94296193-d16f-4021-91f7-f128dae5e3a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-94296193-d16f-4021-91f7-f128dae5e3a0.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-94296193-d16f-4021-91f7-f128dae5e3a0.shogun-image {
    
    
  }


.s-94296193-d16f-4021-91f7-f128dae5e3a0 .shogun-image-content {
  
    align-items: center;
  
}

.s-94296193-d16f-4021-91f7-f128dae5e3a0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-94296193-d16f-4021-91f7-f128dae5e3a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-94296193-d16f-4021-91f7-f128dae5e3a0.shogun-image {
  box-sizing: border-box;
}

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





  img.s-94296193-d16f-4021-91f7-f128dae5e3a0.shogun-image {
    
    
  }


.s-94296193-d16f-4021-91f7-f128dae5e3a0 .shogun-image-content {
  
    align-items: center;
  
}

.s-94296193-d16f-4021-91f7-f128dae5e3a0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-94296193-d16f-4021-91f7-f128dae5e3a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-94296193-d16f-4021-91f7-f128dae5e3a0.shogun-image {
  box-sizing: border-box;
}

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





  img.s-94296193-d16f-4021-91f7-f128dae5e3a0.shogun-image {
    
    
  }


.s-94296193-d16f-4021-91f7-f128dae5e3a0 .shogun-image-content {
  
    align-items: center;
  
}

.s-94296193-d16f-4021-91f7-f128dae5e3a0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-94296193-d16f-4021-91f7-f128dae5e3a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-94296193-d16f-4021-91f7-f128dae5e3a0.shogun-image {
  box-sizing: border-box;
}

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





  img.s-94296193-d16f-4021-91f7-f128dae5e3a0.shogun-image {
    
    
  }


.s-94296193-d16f-4021-91f7-f128dae5e3a0 .shogun-image-content {
  
    align-items: center;
  
}

.s-94296193-d16f-4021-91f7-f128dae5e3a0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-94296193-d16f-4021-91f7-f128dae5e3a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-94296193-d16f-4021-91f7-f128dae5e3a0.shogun-image {
  box-sizing: border-box;
}

}
#s-80eb1c0e-3fd2-442c-a0c7-b6dd93af5923 {
  margin-left: 2%;
margin-right: 2%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-80eb1c0e-3fd2-442c-a0c7-b6dd93af5923 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  
  letter-spacing: 2px;
  text-align: center;
}



#s-be61fa3d-d21a-4764-b047-c7aaecac13dd {
  margin-left: 5%;
margin-right: 5%;
}

#s-cf3333b8-c22a-4321-adf7-3456398f61fd {
  margin-left: 5%;
margin-right: 5%;
min-height: 50px;
}








#s-cf3333b8-c22a-4321-adf7-3456398f61fd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cf3333b8-c22a-4321-adf7-3456398f61fd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9a02e0fe-9de2-4458-8987-abd3932798fc {
  border-style: solid;
margin-top: 0px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-9a02e0fe-9de2-4458-8987-abd3932798fc:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-9a02e0fe-9de2-4458-8987-abd3932798fc:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-9a02e0fe-9de2-4458-8987-abd3932798fc-root {
    text-align: center;
  }


#s-9a02e0fe-9de2-4458-8987-abd3932798fc.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-9a02e0fe-9de2-4458-8987-abd3932798fc-root {
    text-align: center;
  }


#s-9a02e0fe-9de2-4458-8987-abd3932798fc.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9a02e0fe-9de2-4458-8987-abd3932798fc-root {
    text-align: center;
  }


#s-9a02e0fe-9de2-4458-8987-abd3932798fc.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9a02e0fe-9de2-4458-8987-abd3932798fc-root {
    text-align: center;
  }


#s-9a02e0fe-9de2-4458-8987-abd3932798fc.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-9a02e0fe-9de2-4458-8987-abd3932798fc-root {
    text-align: center;
  }


#s-9a02e0fe-9de2-4458-8987-abd3932798fc.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-9a02e0fe-9de2-4458-8987-abd3932798fc-root {
    text-align: center;
  }


#s-9a02e0fe-9de2-4458-8987-abd3932798fc.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-764f8e14-f155-407d-b31a-f3e693d85dc0 {
  margin-top: 3%;
margin-bottom: 5%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-764f8e14-f155-407d-b31a-f3e693d85dc0 {
  display: none;
}
#s-764f8e14-f155-407d-b31a-f3e693d85dc0, #wrap-s-764f8e14-f155-407d-b31a-f3e693d85dc0 { display:none !important; }}@media (max-width: 767px){#s-764f8e14-f155-407d-b31a-f3e693d85dc0 {
  display: none;
}
#s-764f8e14-f155-407d-b31a-f3e693d85dc0, #wrap-s-764f8e14-f155-407d-b31a-f3e693d85dc0 { display:none !important; }}







#s-764f8e14-f155-407d-b31a-f3e693d85dc0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-764f8e14-f155-407d-b31a-f3e693d85dc0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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



#s-0ca4fcfb-7a4e-48bb-8f13-e6ad9f275dc3 {
  margin-top: 0.5%;
margin-bottom: 2%;
}

#s-c1d5fb15-d2f0-45b6-bb0a-b45569cf6866 {
  margin-left: 20%;
margin-right: 20%;
min-height: 50px;
background-color: rgba(29, 29, 29, 1);
}








#s-c1d5fb15-d2f0-45b6-bb0a-b45569cf6866 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c1d5fb15-d2f0-45b6-bb0a-b45569cf6866.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-06d195b0-c59a-41b2-8fbe-a3b46b3ab576 {
  margin-top: 1px;
margin-left: 1px;
margin-bottom: 1px;
margin-right: 1px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-06d195b0-c59a-41b2-8fbe-a3b46b3ab576 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-06d195b0-c59a-41b2-8fbe-a3b46b3ab576.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0d551aec-b73f-4f01-b927-9ef321816b36 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0d551aec-b73f-4f01-b927-9ef321816b36 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  line-height: 1.5em;
  letter-spacing: 3px;
  
}



#s-db764c21-af53-43b3-8e2c-30b71d6021f8 {
  margin-top: 5%;
margin-left: 2%;
margin-bottom: 0%;
}

@media (min-width: 0px) {
[id="s-db764c21-af53-43b3-8e2c-30b71d6021f8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-db764c21-af53-43b3-8e2c-30b71d6021f8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-db764c21-af53-43b3-8e2c-30b71d6021f8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-db764c21-af53-43b3-8e2c-30b71d6021f8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-a00b5420-cd61-461a-8815-b7b25057edce {
  margin-left: 0%;
margin-right: 0%;
}
@media (min-width: 1200px){#s-a00b5420-cd61-461a-8815-b7b25057edce {
  margin-top: 0%;
}
}
@media (min-width: 0px) {
[id="s-a00b5420-cd61-461a-8815-b7b25057edce"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a00b5420-cd61-461a-8815-b7b25057edce"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-a00b5420-cd61-461a-8815-b7b25057edce"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-a00b5420-cd61-461a-8815-b7b25057edce"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-5004d6ce-f71b-4167-aa38-3b7093ec503b {
  text-align: center;
}







  img.s-5004d6ce-f71b-4167-aa38-3b7093ec503b.shogun-image {
    
    
  }


.s-5004d6ce-f71b-4167-aa38-3b7093ec503b .shogun-image-content {
  
    align-items: center;
  
}

.s-5004d6ce-f71b-4167-aa38-3b7093ec503b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5004d6ce-f71b-4167-aa38-3b7093ec503b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5004d6ce-f71b-4167-aa38-3b7093ec503b.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-5004d6ce-f71b-4167-aa38-3b7093ec503b.shogun-image {
    
    
  }


.s-5004d6ce-f71b-4167-aa38-3b7093ec503b .shogun-image-content {
  
    align-items: center;
  
}

.s-5004d6ce-f71b-4167-aa38-3b7093ec503b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5004d6ce-f71b-4167-aa38-3b7093ec503b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5004d6ce-f71b-4167-aa38-3b7093ec503b.shogun-image {
  box-sizing: border-box;
}

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





  img.s-5004d6ce-f71b-4167-aa38-3b7093ec503b.shogun-image {
    
    
  }


.s-5004d6ce-f71b-4167-aa38-3b7093ec503b .shogun-image-content {
  
    align-items: center;
  
}

.s-5004d6ce-f71b-4167-aa38-3b7093ec503b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5004d6ce-f71b-4167-aa38-3b7093ec503b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5004d6ce-f71b-4167-aa38-3b7093ec503b.shogun-image {
  box-sizing: border-box;
}

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





  img.s-5004d6ce-f71b-4167-aa38-3b7093ec503b.shogun-image {
    
    
  }


.s-5004d6ce-f71b-4167-aa38-3b7093ec503b .shogun-image-content {
  
    align-items: center;
  
}

.s-5004d6ce-f71b-4167-aa38-3b7093ec503b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5004d6ce-f71b-4167-aa38-3b7093ec503b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5004d6ce-f71b-4167-aa38-3b7093ec503b.shogun-image {
  box-sizing: border-box;
}

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





  img.s-5004d6ce-f71b-4167-aa38-3b7093ec503b.shogun-image {
    
    
  }


.s-5004d6ce-f71b-4167-aa38-3b7093ec503b .shogun-image-content {
  
    align-items: center;
  
}

.s-5004d6ce-f71b-4167-aa38-3b7093ec503b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5004d6ce-f71b-4167-aa38-3b7093ec503b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5004d6ce-f71b-4167-aa38-3b7093ec503b.shogun-image {
  box-sizing: border-box;
}

}
#s-73388f30-ae15-48e8-aaf5-7b91d5d1b91a {
  text-align: center;
}







  img.s-73388f30-ae15-48e8-aaf5-7b91d5d1b91a.shogun-image {
    
    
  }


.s-73388f30-ae15-48e8-aaf5-7b91d5d1b91a .shogun-image-content {
  
    align-items: center;
  
}

.s-73388f30-ae15-48e8-aaf5-7b91d5d1b91a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73388f30-ae15-48e8-aaf5-7b91d5d1b91a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73388f30-ae15-48e8-aaf5-7b91d5d1b91a.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-73388f30-ae15-48e8-aaf5-7b91d5d1b91a.shogun-image {
    
    
  }


.s-73388f30-ae15-48e8-aaf5-7b91d5d1b91a .shogun-image-content {
  
    align-items: center;
  
}

.s-73388f30-ae15-48e8-aaf5-7b91d5d1b91a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73388f30-ae15-48e8-aaf5-7b91d5d1b91a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73388f30-ae15-48e8-aaf5-7b91d5d1b91a.shogun-image {
  box-sizing: border-box;
}

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





  img.s-73388f30-ae15-48e8-aaf5-7b91d5d1b91a.shogun-image {
    
    
  }


.s-73388f30-ae15-48e8-aaf5-7b91d5d1b91a .shogun-image-content {
  
    align-items: center;
  
}

.s-73388f30-ae15-48e8-aaf5-7b91d5d1b91a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73388f30-ae15-48e8-aaf5-7b91d5d1b91a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73388f30-ae15-48e8-aaf5-7b91d5d1b91a.shogun-image {
  box-sizing: border-box;
}

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





  img.s-73388f30-ae15-48e8-aaf5-7b91d5d1b91a.shogun-image {
    
    
  }


.s-73388f30-ae15-48e8-aaf5-7b91d5d1b91a .shogun-image-content {
  
    align-items: center;
  
}

.s-73388f30-ae15-48e8-aaf5-7b91d5d1b91a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73388f30-ae15-48e8-aaf5-7b91d5d1b91a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73388f30-ae15-48e8-aaf5-7b91d5d1b91a.shogun-image {
  box-sizing: border-box;
}

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





  img.s-73388f30-ae15-48e8-aaf5-7b91d5d1b91a.shogun-image {
    
    
  }


.s-73388f30-ae15-48e8-aaf5-7b91d5d1b91a .shogun-image-content {
  
    align-items: center;
  
}

.s-73388f30-ae15-48e8-aaf5-7b91d5d1b91a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73388f30-ae15-48e8-aaf5-7b91d5d1b91a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73388f30-ae15-48e8-aaf5-7b91d5d1b91a.shogun-image {
  box-sizing: border-box;
}

}
#s-6b8cec3b-3afd-4b15-a52b-3fb0ea4dc2e5 {
  text-align: center;
}







  img.s-6b8cec3b-3afd-4b15-a52b-3fb0ea4dc2e5.shogun-image {
    
    
  }


.s-6b8cec3b-3afd-4b15-a52b-3fb0ea4dc2e5 .shogun-image-content {
  
    align-items: center;
  
}

.s-6b8cec3b-3afd-4b15-a52b-3fb0ea4dc2e5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6b8cec3b-3afd-4b15-a52b-3fb0ea4dc2e5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6b8cec3b-3afd-4b15-a52b-3fb0ea4dc2e5.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-6b8cec3b-3afd-4b15-a52b-3fb0ea4dc2e5.shogun-image {
    
    
  }


.s-6b8cec3b-3afd-4b15-a52b-3fb0ea4dc2e5 .shogun-image-content {
  
    align-items: center;
  
}

.s-6b8cec3b-3afd-4b15-a52b-3fb0ea4dc2e5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6b8cec3b-3afd-4b15-a52b-3fb0ea4dc2e5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6b8cec3b-3afd-4b15-a52b-3fb0ea4dc2e5.shogun-image {
  box-sizing: border-box;
}

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





  img.s-6b8cec3b-3afd-4b15-a52b-3fb0ea4dc2e5.shogun-image {
    
    
  }


.s-6b8cec3b-3afd-4b15-a52b-3fb0ea4dc2e5 .shogun-image-content {
  
    align-items: center;
  
}

.s-6b8cec3b-3afd-4b15-a52b-3fb0ea4dc2e5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6b8cec3b-3afd-4b15-a52b-3fb0ea4dc2e5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6b8cec3b-3afd-4b15-a52b-3fb0ea4dc2e5.shogun-image {
  box-sizing: border-box;
}

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





  img.s-6b8cec3b-3afd-4b15-a52b-3fb0ea4dc2e5.shogun-image {
    
    
  }


.s-6b8cec3b-3afd-4b15-a52b-3fb0ea4dc2e5 .shogun-image-content {
  
    align-items: center;
  
}

.s-6b8cec3b-3afd-4b15-a52b-3fb0ea4dc2e5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6b8cec3b-3afd-4b15-a52b-3fb0ea4dc2e5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6b8cec3b-3afd-4b15-a52b-3fb0ea4dc2e5.shogun-image {
  box-sizing: border-box;
}

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





  img.s-6b8cec3b-3afd-4b15-a52b-3fb0ea4dc2e5.shogun-image {
    
    
  }


.s-6b8cec3b-3afd-4b15-a52b-3fb0ea4dc2e5 .shogun-image-content {
  
    align-items: center;
  
}

.s-6b8cec3b-3afd-4b15-a52b-3fb0ea4dc2e5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6b8cec3b-3afd-4b15-a52b-3fb0ea4dc2e5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6b8cec3b-3afd-4b15-a52b-3fb0ea4dc2e5.shogun-image {
  box-sizing: border-box;
}

}
#s-5e9d4e8c-826f-4d41-a534-abf557e2373a {
  margin-left: 0%;
margin-right: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-5e9d4e8c-826f-4d41-a534-abf557e2373a .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 31px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-0c0f97e4-ff61-442d-9d35-a66c6155df03 {
  margin-left: 0%;
margin-right: 0%;
}
@media (min-width: 1200px){#s-0c0f97e4-ff61-442d-9d35-a66c6155df03 {
  margin-right: 5%;
}
}
#s-7a2922ad-febc-4a59-a22b-15a6e388a601 {
  border-style: solid;
margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: left;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-7a2922ad-febc-4a59-a22b-15a6e388a601:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-7a2922ad-febc-4a59-a22b-15a6e388a601:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-7a2922ad-febc-4a59-a22b-15a6e388a601-root {
    text-align: left;
  }


#s-7a2922ad-febc-4a59-a22b-15a6e388a601.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-7a2922ad-febc-4a59-a22b-15a6e388a601-root {
    text-align: left;
  }


#s-7a2922ad-febc-4a59-a22b-15a6e388a601.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7a2922ad-febc-4a59-a22b-15a6e388a601-root {
    text-align: left;
  }


#s-7a2922ad-febc-4a59-a22b-15a6e388a601.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7a2922ad-febc-4a59-a22b-15a6e388a601-root {
    text-align: left;
  }


#s-7a2922ad-febc-4a59-a22b-15a6e388a601.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-7a2922ad-febc-4a59-a22b-15a6e388a601-root {
    text-align: left;
  }


#s-7a2922ad-febc-4a59-a22b-15a6e388a601.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-7a2922ad-febc-4a59-a22b-15a6e388a601-root {
    text-align: left;
  }


#s-7a2922ad-febc-4a59-a22b-15a6e388a601.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-11eb3283-0253-4466-b2b8-752daea94e39 {
  text-align: left;
}

#s-4a635205-751b-4caf-9684-556e188a66a8 {
  margin-top: 3%;
margin-left: 0%;
margin-bottom: 2%;
margin-right: 2%;
}

@media (min-width: 0px) {
[id="s-4a635205-751b-4caf-9684-556e188a66a8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4a635205-751b-4caf-9684-556e188a66a8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4a635205-751b-4caf-9684-556e188a66a8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4a635205-751b-4caf-9684-556e188a66a8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-920db3a5-9824-4710-bc37-8e95e7b783b0 {
  text-align: left;
}

#s-18fec5c9-455a-4a80-8579-05ea6accb2d6 {
  margin-left: 14%;
margin-right: 14%;
}

@media (min-width: 0px) {
[id="s-18fec5c9-455a-4a80-8579-05ea6accb2d6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-18fec5c9-455a-4a80-8579-05ea6accb2d6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-18fec5c9-455a-4a80-8579-05ea6accb2d6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-18fec5c9-455a-4a80-8579-05ea6accb2d6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-8ac4c94d-3d38-4d4c-9d78-3d8904ac728e {
  text-align: center;
}







  img.s-8ac4c94d-3d38-4d4c-9d78-3d8904ac728e.shogun-image {
    
    
  }


.s-8ac4c94d-3d38-4d4c-9d78-3d8904ac728e .shogun-image-content {
  
    align-items: center;
  
}

.s-8ac4c94d-3d38-4d4c-9d78-3d8904ac728e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8ac4c94d-3d38-4d4c-9d78-3d8904ac728e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ac4c94d-3d38-4d4c-9d78-3d8904ac728e.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-8ac4c94d-3d38-4d4c-9d78-3d8904ac728e.shogun-image {
    
    
  }


.s-8ac4c94d-3d38-4d4c-9d78-3d8904ac728e .shogun-image-content {
  
    align-items: center;
  
}

.s-8ac4c94d-3d38-4d4c-9d78-3d8904ac728e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8ac4c94d-3d38-4d4c-9d78-3d8904ac728e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ac4c94d-3d38-4d4c-9d78-3d8904ac728e.shogun-image {
  box-sizing: border-box;
}

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





  img.s-8ac4c94d-3d38-4d4c-9d78-3d8904ac728e.shogun-image {
    
    
  }


.s-8ac4c94d-3d38-4d4c-9d78-3d8904ac728e .shogun-image-content {
  
    align-items: center;
  
}

.s-8ac4c94d-3d38-4d4c-9d78-3d8904ac728e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8ac4c94d-3d38-4d4c-9d78-3d8904ac728e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ac4c94d-3d38-4d4c-9d78-3d8904ac728e.shogun-image {
  box-sizing: border-box;
}

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





  img.s-8ac4c94d-3d38-4d4c-9d78-3d8904ac728e.shogun-image {
    
    
  }


.s-8ac4c94d-3d38-4d4c-9d78-3d8904ac728e .shogun-image-content {
  
    align-items: center;
  
}

.s-8ac4c94d-3d38-4d4c-9d78-3d8904ac728e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8ac4c94d-3d38-4d4c-9d78-3d8904ac728e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ac4c94d-3d38-4d4c-9d78-3d8904ac728e.shogun-image {
  box-sizing: border-box;
}

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





  img.s-8ac4c94d-3d38-4d4c-9d78-3d8904ac728e.shogun-image {
    
    
  }


.s-8ac4c94d-3d38-4d4c-9d78-3d8904ac728e .shogun-image-content {
  
    align-items: center;
  
}

.s-8ac4c94d-3d38-4d4c-9d78-3d8904ac728e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8ac4c94d-3d38-4d4c-9d78-3d8904ac728e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ac4c94d-3d38-4d4c-9d78-3d8904ac728e.shogun-image {
  box-sizing: border-box;
}

}
#s-861b9f80-d388-41a7-91b5-2aed76d7bbaf {
  text-align: center;
}







  img.s-861b9f80-d388-41a7-91b5-2aed76d7bbaf.shogun-image {
    
    
  }


.s-861b9f80-d388-41a7-91b5-2aed76d7bbaf .shogun-image-content {
  
    align-items: center;
  
}

.s-861b9f80-d388-41a7-91b5-2aed76d7bbaf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-861b9f80-d388-41a7-91b5-2aed76d7bbaf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-861b9f80-d388-41a7-91b5-2aed76d7bbaf.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-861b9f80-d388-41a7-91b5-2aed76d7bbaf.shogun-image {
    
    
  }


.s-861b9f80-d388-41a7-91b5-2aed76d7bbaf .shogun-image-content {
  
    align-items: center;
  
}

.s-861b9f80-d388-41a7-91b5-2aed76d7bbaf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-861b9f80-d388-41a7-91b5-2aed76d7bbaf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-861b9f80-d388-41a7-91b5-2aed76d7bbaf.shogun-image {
  box-sizing: border-box;
}

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





  img.s-861b9f80-d388-41a7-91b5-2aed76d7bbaf.shogun-image {
    
    
  }


.s-861b9f80-d388-41a7-91b5-2aed76d7bbaf .shogun-image-content {
  
    align-items: center;
  
}

.s-861b9f80-d388-41a7-91b5-2aed76d7bbaf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-861b9f80-d388-41a7-91b5-2aed76d7bbaf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-861b9f80-d388-41a7-91b5-2aed76d7bbaf.shogun-image {
  box-sizing: border-box;
}

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





  img.s-861b9f80-d388-41a7-91b5-2aed76d7bbaf.shogun-image {
    
    
  }


.s-861b9f80-d388-41a7-91b5-2aed76d7bbaf .shogun-image-content {
  
    align-items: center;
  
}

.s-861b9f80-d388-41a7-91b5-2aed76d7bbaf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-861b9f80-d388-41a7-91b5-2aed76d7bbaf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-861b9f80-d388-41a7-91b5-2aed76d7bbaf.shogun-image {
  box-sizing: border-box;
}

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





  img.s-861b9f80-d388-41a7-91b5-2aed76d7bbaf.shogun-image {
    
    
  }


.s-861b9f80-d388-41a7-91b5-2aed76d7bbaf .shogun-image-content {
  
    align-items: center;
  
}

.s-861b9f80-d388-41a7-91b5-2aed76d7bbaf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-861b9f80-d388-41a7-91b5-2aed76d7bbaf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-861b9f80-d388-41a7-91b5-2aed76d7bbaf.shogun-image {
  box-sizing: border-box;
}

}
#s-d334f9c1-07c7-4c2d-8e6b-46e32825e9e0 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-d334f9c1-07c7-4c2d-8e6b-46e32825e9e0 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 31px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-3ae8785b-9f2f-41c6-9a4b-ee6be6a7ac56 {
  margin-left: 0%;
margin-right: 0%;
}
@media (min-width: 1200px){#s-3ae8785b-9f2f-41c6-9a4b-ee6be6a7ac56 {
  margin-right: 5%;
}
}
#s-dd5ef274-3137-4044-9956-371eb79ec57e {
  border-style: solid;
margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: left;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-dd5ef274-3137-4044-9956-371eb79ec57e:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-dd5ef274-3137-4044-9956-371eb79ec57e:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-dd5ef274-3137-4044-9956-371eb79ec57e-root {
    text-align: left;
  }


#s-dd5ef274-3137-4044-9956-371eb79ec57e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-dd5ef274-3137-4044-9956-371eb79ec57e-root {
    text-align: left;
  }


#s-dd5ef274-3137-4044-9956-371eb79ec57e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-dd5ef274-3137-4044-9956-371eb79ec57e-root {
    text-align: left;
  }


#s-dd5ef274-3137-4044-9956-371eb79ec57e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-dd5ef274-3137-4044-9956-371eb79ec57e-root {
    text-align: left;
  }


#s-dd5ef274-3137-4044-9956-371eb79ec57e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-dd5ef274-3137-4044-9956-371eb79ec57e-root {
    text-align: left;
  }


#s-dd5ef274-3137-4044-9956-371eb79ec57e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-dd5ef274-3137-4044-9956-371eb79ec57e-root {
    text-align: left;
  }


#s-dd5ef274-3137-4044-9956-371eb79ec57e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-85e76984-0c58-446a-bbeb-c4bf42c4eb7a {
  margin-top: 0%;
margin-bottom: 0%;
min-height: 50px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-85e76984-0c58-446a-bbeb-c4bf42c4eb7a {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-85e76984-0c58-446a-bbeb-c4bf42c4eb7a {
  display: none;
}
#s-85e76984-0c58-446a-bbeb-c4bf42c4eb7a, #wrap-s-85e76984-0c58-446a-bbeb-c4bf42c4eb7a { display:none !important; }}@media (max-width: 767px){#s-85e76984-0c58-446a-bbeb-c4bf42c4eb7a {
  display: none;
}
#s-85e76984-0c58-446a-bbeb-c4bf42c4eb7a, #wrap-s-85e76984-0c58-446a-bbeb-c4bf42c4eb7a { display:none !important; }}







#s-85e76984-0c58-446a-bbeb-c4bf42c4eb7a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-85e76984-0c58-446a-bbeb-c4bf42c4eb7a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-257ad175-0ac8-4c6a-b946-28b14020badb {
  margin-left: 20%;
margin-right: 20%;
min-height: 50px;
background-color: rgba(29, 29, 29, 1);
}








#s-257ad175-0ac8-4c6a-b946-28b14020badb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-257ad175-0ac8-4c6a-b946-28b14020badb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bf136d65-cfb3-4cc0-8c11-b1670e250f58 {
  margin-top: 1px;
margin-left: 1px;
margin-bottom: 1px;
margin-right: 1px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-bf136d65-cfb3-4cc0-8c11-b1670e250f58 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bf136d65-cfb3-4cc0-8c11-b1670e250f58.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1bb0817a-491d-4fd3-946d-01a626e08451 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1bb0817a-491d-4fd3-946d-01a626e08451 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  line-height: 1.5em;
  letter-spacing: 3px;
  
}



#s-5b486e0d-348f-4213-a650-497f934c1dcb {
  margin-top: 5%;
margin-left: 2%;
margin-bottom: 0%;
}

@media (min-width: 0px) {
[id="s-5b486e0d-348f-4213-a650-497f934c1dcb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5b486e0d-348f-4213-a650-497f934c1dcb"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5b486e0d-348f-4213-a650-497f934c1dcb"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5b486e0d-348f-4213-a650-497f934c1dcb"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-8b66819b-02ba-4909-92d0-7703628b1fee {
  margin-left: 0%;
margin-right: 0%;
}

@media (min-width: 0px) {
[id="s-8b66819b-02ba-4909-92d0-7703628b1fee"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-8b66819b-02ba-4909-92d0-7703628b1fee"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-8b66819b-02ba-4909-92d0-7703628b1fee"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-8b66819b-02ba-4909-92d0-7703628b1fee"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-fa8955df-808a-4a7b-8553-3b940b4720a7 {
  text-align: center;
}







  img.s-fa8955df-808a-4a7b-8553-3b940b4720a7.shogun-image {
    
    
  }


.s-fa8955df-808a-4a7b-8553-3b940b4720a7 .shogun-image-content {
  
    align-items: center;
  
}

.s-fa8955df-808a-4a7b-8553-3b940b4720a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fa8955df-808a-4a7b-8553-3b940b4720a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fa8955df-808a-4a7b-8553-3b940b4720a7.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-fa8955df-808a-4a7b-8553-3b940b4720a7.shogun-image {
    
    
  }


.s-fa8955df-808a-4a7b-8553-3b940b4720a7 .shogun-image-content {
  
    align-items: center;
  
}

.s-fa8955df-808a-4a7b-8553-3b940b4720a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fa8955df-808a-4a7b-8553-3b940b4720a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fa8955df-808a-4a7b-8553-3b940b4720a7.shogun-image {
  box-sizing: border-box;
}

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





  img.s-fa8955df-808a-4a7b-8553-3b940b4720a7.shogun-image {
    
    
  }


.s-fa8955df-808a-4a7b-8553-3b940b4720a7 .shogun-image-content {
  
    align-items: center;
  
}

.s-fa8955df-808a-4a7b-8553-3b940b4720a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fa8955df-808a-4a7b-8553-3b940b4720a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fa8955df-808a-4a7b-8553-3b940b4720a7.shogun-image {
  box-sizing: border-box;
}

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





  img.s-fa8955df-808a-4a7b-8553-3b940b4720a7.shogun-image {
    
    
  }


.s-fa8955df-808a-4a7b-8553-3b940b4720a7 .shogun-image-content {
  
    align-items: center;
  
}

.s-fa8955df-808a-4a7b-8553-3b940b4720a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fa8955df-808a-4a7b-8553-3b940b4720a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fa8955df-808a-4a7b-8553-3b940b4720a7.shogun-image {
  box-sizing: border-box;
}

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





  img.s-fa8955df-808a-4a7b-8553-3b940b4720a7.shogun-image {
    
    
  }


.s-fa8955df-808a-4a7b-8553-3b940b4720a7 .shogun-image-content {
  
    align-items: center;
  
}

.s-fa8955df-808a-4a7b-8553-3b940b4720a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fa8955df-808a-4a7b-8553-3b940b4720a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fa8955df-808a-4a7b-8553-3b940b4720a7.shogun-image {
  box-sizing: border-box;
}

}
#s-48e50673-20f0-4de5-88cb-a992abcc7859 {
  text-align: center;
}







  img.s-48e50673-20f0-4de5-88cb-a992abcc7859.shogun-image {
    
    
  }


.s-48e50673-20f0-4de5-88cb-a992abcc7859 .shogun-image-content {
  
    align-items: center;
  
}

.s-48e50673-20f0-4de5-88cb-a992abcc7859.shg-align-container {
  display: flex;
  justify-content: center
}

.s-48e50673-20f0-4de5-88cb-a992abcc7859.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-48e50673-20f0-4de5-88cb-a992abcc7859.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-48e50673-20f0-4de5-88cb-a992abcc7859.shogun-image {
    
    
  }


.s-48e50673-20f0-4de5-88cb-a992abcc7859 .shogun-image-content {
  
    align-items: center;
  
}

.s-48e50673-20f0-4de5-88cb-a992abcc7859.shg-align-container {
  display: flex;
  justify-content: center
}

.s-48e50673-20f0-4de5-88cb-a992abcc7859.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-48e50673-20f0-4de5-88cb-a992abcc7859.shogun-image {
  box-sizing: border-box;
}

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





  img.s-48e50673-20f0-4de5-88cb-a992abcc7859.shogun-image {
    
    
  }


.s-48e50673-20f0-4de5-88cb-a992abcc7859 .shogun-image-content {
  
    align-items: center;
  
}

.s-48e50673-20f0-4de5-88cb-a992abcc7859.shg-align-container {
  display: flex;
  justify-content: center
}

.s-48e50673-20f0-4de5-88cb-a992abcc7859.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-48e50673-20f0-4de5-88cb-a992abcc7859.shogun-image {
  box-sizing: border-box;
}

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





  img.s-48e50673-20f0-4de5-88cb-a992abcc7859.shogun-image {
    
    
  }


.s-48e50673-20f0-4de5-88cb-a992abcc7859 .shogun-image-content {
  
    align-items: center;
  
}

.s-48e50673-20f0-4de5-88cb-a992abcc7859.shg-align-container {
  display: flex;
  justify-content: center
}

.s-48e50673-20f0-4de5-88cb-a992abcc7859.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-48e50673-20f0-4de5-88cb-a992abcc7859.shogun-image {
  box-sizing: border-box;
}

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





  img.s-48e50673-20f0-4de5-88cb-a992abcc7859.shogun-image {
    
    
  }


.s-48e50673-20f0-4de5-88cb-a992abcc7859 .shogun-image-content {
  
    align-items: center;
  
}

.s-48e50673-20f0-4de5-88cb-a992abcc7859.shg-align-container {
  display: flex;
  justify-content: center
}

.s-48e50673-20f0-4de5-88cb-a992abcc7859.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-48e50673-20f0-4de5-88cb-a992abcc7859.shogun-image {
  box-sizing: border-box;
}

}
#s-9d6f28c0-cbf0-4253-8f70-778d41fa9506 {
  text-align: center;
}







  img.s-9d6f28c0-cbf0-4253-8f70-778d41fa9506.shogun-image {
    
    
  }


.s-9d6f28c0-cbf0-4253-8f70-778d41fa9506 .shogun-image-content {
  
    align-items: center;
  
}

.s-9d6f28c0-cbf0-4253-8f70-778d41fa9506.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d6f28c0-cbf0-4253-8f70-778d41fa9506.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d6f28c0-cbf0-4253-8f70-778d41fa9506.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-9d6f28c0-cbf0-4253-8f70-778d41fa9506.shogun-image {
    
    
  }


.s-9d6f28c0-cbf0-4253-8f70-778d41fa9506 .shogun-image-content {
  
    align-items: center;
  
}

.s-9d6f28c0-cbf0-4253-8f70-778d41fa9506.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d6f28c0-cbf0-4253-8f70-778d41fa9506.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d6f28c0-cbf0-4253-8f70-778d41fa9506.shogun-image {
  box-sizing: border-box;
}

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





  img.s-9d6f28c0-cbf0-4253-8f70-778d41fa9506.shogun-image {
    
    
  }


.s-9d6f28c0-cbf0-4253-8f70-778d41fa9506 .shogun-image-content {
  
    align-items: center;
  
}

.s-9d6f28c0-cbf0-4253-8f70-778d41fa9506.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d6f28c0-cbf0-4253-8f70-778d41fa9506.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d6f28c0-cbf0-4253-8f70-778d41fa9506.shogun-image {
  box-sizing: border-box;
}

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





  img.s-9d6f28c0-cbf0-4253-8f70-778d41fa9506.shogun-image {
    
    
  }


.s-9d6f28c0-cbf0-4253-8f70-778d41fa9506 .shogun-image-content {
  
    align-items: center;
  
}

.s-9d6f28c0-cbf0-4253-8f70-778d41fa9506.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d6f28c0-cbf0-4253-8f70-778d41fa9506.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d6f28c0-cbf0-4253-8f70-778d41fa9506.shogun-image {
  box-sizing: border-box;
}

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





  img.s-9d6f28c0-cbf0-4253-8f70-778d41fa9506.shogun-image {
    
    
  }


.s-9d6f28c0-cbf0-4253-8f70-778d41fa9506 .shogun-image-content {
  
    align-items: center;
  
}

.s-9d6f28c0-cbf0-4253-8f70-778d41fa9506.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d6f28c0-cbf0-4253-8f70-778d41fa9506.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d6f28c0-cbf0-4253-8f70-778d41fa9506.shogun-image {
  box-sizing: border-box;
}

}
#s-d2552b02-dde7-440b-92de-9fe4dbb89b83 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-d2552b02-dde7-440b-92de-9fe4dbb89b83 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 31px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-d9112268-029c-47f5-9e80-ff8768d8425e {
  margin-left: 0%;
margin-right: 0%;
}
@media (min-width: 1200px){#s-d9112268-029c-47f5-9e80-ff8768d8425e {
  margin-left: 0%;
margin-right: 5%;
}
}
#s-4af8c2bb-151a-43f7-aaf6-10053d3e1f28 {
  border-style: solid;
margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: left;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-4af8c2bb-151a-43f7-aaf6-10053d3e1f28:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-4af8c2bb-151a-43f7-aaf6-10053d3e1f28:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-4af8c2bb-151a-43f7-aaf6-10053d3e1f28-root {
    text-align: left;
  }


#s-4af8c2bb-151a-43f7-aaf6-10053d3e1f28.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-4af8c2bb-151a-43f7-aaf6-10053d3e1f28-root {
    text-align: left;
  }


#s-4af8c2bb-151a-43f7-aaf6-10053d3e1f28.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4af8c2bb-151a-43f7-aaf6-10053d3e1f28-root {
    text-align: left;
  }


#s-4af8c2bb-151a-43f7-aaf6-10053d3e1f28.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4af8c2bb-151a-43f7-aaf6-10053d3e1f28-root {
    text-align: left;
  }


#s-4af8c2bb-151a-43f7-aaf6-10053d3e1f28.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-4af8c2bb-151a-43f7-aaf6-10053d3e1f28-root {
    text-align: left;
  }


#s-4af8c2bb-151a-43f7-aaf6-10053d3e1f28.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-4af8c2bb-151a-43f7-aaf6-10053d3e1f28-root {
    text-align: left;
  }


#s-4af8c2bb-151a-43f7-aaf6-10053d3e1f28.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-60a43c31-a696-4235-91d3-de352ebaa826 {
  text-align: left;
}

#s-ffd1b533-ef9f-40ce-98d7-fa43c903ef5f {
  margin-top: 3%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 2%;
}

@media (min-width: 0px) {
[id="s-ffd1b533-ef9f-40ce-98d7-fa43c903ef5f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ffd1b533-ef9f-40ce-98d7-fa43c903ef5f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ffd1b533-ef9f-40ce-98d7-fa43c903ef5f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ffd1b533-ef9f-40ce-98d7-fa43c903ef5f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-7a1bc3ef-4554-4a2d-8101-ede20639b76c {
  text-align: left;
}

#s-1f8bdb12-72e9-4b76-b324-8d1d834ce626 {
  margin-left: 0%;
margin-right: 0%;
}

@media (min-width: 0px) {
[id="s-1f8bdb12-72e9-4b76-b324-8d1d834ce626"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-1f8bdb12-72e9-4b76-b324-8d1d834ce626"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-1f8bdb12-72e9-4b76-b324-8d1d834ce626"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-1f8bdb12-72e9-4b76-b324-8d1d834ce626"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-035312f4-b714-442f-add5-5f1c63f5197f {
  text-align: center;
}







  img.s-035312f4-b714-442f-add5-5f1c63f5197f.shogun-image {
    
    
  }


.s-035312f4-b714-442f-add5-5f1c63f5197f .shogun-image-content {
  
    align-items: center;
  
}

.s-035312f4-b714-442f-add5-5f1c63f5197f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-035312f4-b714-442f-add5-5f1c63f5197f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-035312f4-b714-442f-add5-5f1c63f5197f.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-035312f4-b714-442f-add5-5f1c63f5197f.shogun-image {
    
    
  }


.s-035312f4-b714-442f-add5-5f1c63f5197f .shogun-image-content {
  
    align-items: center;
  
}

.s-035312f4-b714-442f-add5-5f1c63f5197f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-035312f4-b714-442f-add5-5f1c63f5197f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-035312f4-b714-442f-add5-5f1c63f5197f.shogun-image {
  box-sizing: border-box;
}

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





  img.s-035312f4-b714-442f-add5-5f1c63f5197f.shogun-image {
    
    
  }


.s-035312f4-b714-442f-add5-5f1c63f5197f .shogun-image-content {
  
    align-items: center;
  
}

.s-035312f4-b714-442f-add5-5f1c63f5197f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-035312f4-b714-442f-add5-5f1c63f5197f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-035312f4-b714-442f-add5-5f1c63f5197f.shogun-image {
  box-sizing: border-box;
}

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





  img.s-035312f4-b714-442f-add5-5f1c63f5197f.shogun-image {
    
    
  }


.s-035312f4-b714-442f-add5-5f1c63f5197f .shogun-image-content {
  
    align-items: center;
  
}

.s-035312f4-b714-442f-add5-5f1c63f5197f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-035312f4-b714-442f-add5-5f1c63f5197f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-035312f4-b714-442f-add5-5f1c63f5197f.shogun-image {
  box-sizing: border-box;
}

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





  img.s-035312f4-b714-442f-add5-5f1c63f5197f.shogun-image {
    
    
  }


.s-035312f4-b714-442f-add5-5f1c63f5197f .shogun-image-content {
  
    align-items: center;
  
}

.s-035312f4-b714-442f-add5-5f1c63f5197f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-035312f4-b714-442f-add5-5f1c63f5197f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-035312f4-b714-442f-add5-5f1c63f5197f.shogun-image {
  box-sizing: border-box;
}

}
#s-984e5209-3cc9-4253-a502-fe25882b68c6 {
  text-align: center;
}







  img.s-984e5209-3cc9-4253-a502-fe25882b68c6.shogun-image {
    
    
  }


.s-984e5209-3cc9-4253-a502-fe25882b68c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-984e5209-3cc9-4253-a502-fe25882b68c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-984e5209-3cc9-4253-a502-fe25882b68c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-984e5209-3cc9-4253-a502-fe25882b68c6.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-984e5209-3cc9-4253-a502-fe25882b68c6.shogun-image {
    
    
  }


.s-984e5209-3cc9-4253-a502-fe25882b68c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-984e5209-3cc9-4253-a502-fe25882b68c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-984e5209-3cc9-4253-a502-fe25882b68c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-984e5209-3cc9-4253-a502-fe25882b68c6.shogun-image {
  box-sizing: border-box;
}

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





  img.s-984e5209-3cc9-4253-a502-fe25882b68c6.shogun-image {
    
    
  }


.s-984e5209-3cc9-4253-a502-fe25882b68c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-984e5209-3cc9-4253-a502-fe25882b68c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-984e5209-3cc9-4253-a502-fe25882b68c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-984e5209-3cc9-4253-a502-fe25882b68c6.shogun-image {
  box-sizing: border-box;
}

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





  img.s-984e5209-3cc9-4253-a502-fe25882b68c6.shogun-image {
    
    
  }


.s-984e5209-3cc9-4253-a502-fe25882b68c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-984e5209-3cc9-4253-a502-fe25882b68c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-984e5209-3cc9-4253-a502-fe25882b68c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-984e5209-3cc9-4253-a502-fe25882b68c6.shogun-image {
  box-sizing: border-box;
}

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





  img.s-984e5209-3cc9-4253-a502-fe25882b68c6.shogun-image {
    
    
  }


.s-984e5209-3cc9-4253-a502-fe25882b68c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-984e5209-3cc9-4253-a502-fe25882b68c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-984e5209-3cc9-4253-a502-fe25882b68c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-984e5209-3cc9-4253-a502-fe25882b68c6.shogun-image {
  box-sizing: border-box;
}

}
#s-bc767e65-bd72-469a-9246-b9b2d172a6b3 {
  text-align: center;
}







  img.s-bc767e65-bd72-469a-9246-b9b2d172a6b3.shogun-image {
    
    
  }


.s-bc767e65-bd72-469a-9246-b9b2d172a6b3 .shogun-image-content {
  
    align-items: center;
  
}

.s-bc767e65-bd72-469a-9246-b9b2d172a6b3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bc767e65-bd72-469a-9246-b9b2d172a6b3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc767e65-bd72-469a-9246-b9b2d172a6b3.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-bc767e65-bd72-469a-9246-b9b2d172a6b3.shogun-image {
    
    
  }


.s-bc767e65-bd72-469a-9246-b9b2d172a6b3 .shogun-image-content {
  
    align-items: center;
  
}

.s-bc767e65-bd72-469a-9246-b9b2d172a6b3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bc767e65-bd72-469a-9246-b9b2d172a6b3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc767e65-bd72-469a-9246-b9b2d172a6b3.shogun-image {
  box-sizing: border-box;
}

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





  img.s-bc767e65-bd72-469a-9246-b9b2d172a6b3.shogun-image {
    
    
  }


.s-bc767e65-bd72-469a-9246-b9b2d172a6b3 .shogun-image-content {
  
    align-items: center;
  
}

.s-bc767e65-bd72-469a-9246-b9b2d172a6b3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bc767e65-bd72-469a-9246-b9b2d172a6b3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc767e65-bd72-469a-9246-b9b2d172a6b3.shogun-image {
  box-sizing: border-box;
}

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





  img.s-bc767e65-bd72-469a-9246-b9b2d172a6b3.shogun-image {
    
    
  }


.s-bc767e65-bd72-469a-9246-b9b2d172a6b3 .shogun-image-content {
  
    align-items: center;
  
}

.s-bc767e65-bd72-469a-9246-b9b2d172a6b3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bc767e65-bd72-469a-9246-b9b2d172a6b3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc767e65-bd72-469a-9246-b9b2d172a6b3.shogun-image {
  box-sizing: border-box;
}

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





  img.s-bc767e65-bd72-469a-9246-b9b2d172a6b3.shogun-image {
    
    
  }


.s-bc767e65-bd72-469a-9246-b9b2d172a6b3 .shogun-image-content {
  
    align-items: center;
  
}

.s-bc767e65-bd72-469a-9246-b9b2d172a6b3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bc767e65-bd72-469a-9246-b9b2d172a6b3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc767e65-bd72-469a-9246-b9b2d172a6b3.shogun-image {
  box-sizing: border-box;
}

}
#s-39a06b8e-edc6-459b-bd10-dc3e6d94b177 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-39a06b8e-edc6-459b-bd10-dc3e6d94b177 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 31px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-265c84f8-800f-486c-9d7f-9134493bc915 {
  margin-left: 0%;
margin-right: 0%;
}
@media (min-width: 1200px){#s-265c84f8-800f-486c-9d7f-9134493bc915 {
  margin-left: 0%;
margin-right: 5%;
}
}
#s-24840758-73cd-4158-bd4c-0a3098df4e32 {
  border-style: solid;
margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: left;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-24840758-73cd-4158-bd4c-0a3098df4e32:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-24840758-73cd-4158-bd4c-0a3098df4e32:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-24840758-73cd-4158-bd4c-0a3098df4e32-root {
    text-align: left;
  }


#s-24840758-73cd-4158-bd4c-0a3098df4e32.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-24840758-73cd-4158-bd4c-0a3098df4e32-root {
    text-align: left;
  }


#s-24840758-73cd-4158-bd4c-0a3098df4e32.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-24840758-73cd-4158-bd4c-0a3098df4e32-root {
    text-align: left;
  }


#s-24840758-73cd-4158-bd4c-0a3098df4e32.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-24840758-73cd-4158-bd4c-0a3098df4e32-root {
    text-align: left;
  }


#s-24840758-73cd-4158-bd4c-0a3098df4e32.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-24840758-73cd-4158-bd4c-0a3098df4e32-root {
    text-align: left;
  }


#s-24840758-73cd-4158-bd4c-0a3098df4e32.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-24840758-73cd-4158-bd4c-0a3098df4e32-root {
    text-align: left;
  }


#s-24840758-73cd-4158-bd4c-0a3098df4e32.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-e8a4271c-130d-4290-97d6-d0dd0cf589c0 {
  margin-top: 5%;
margin-bottom: 0%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-e8a4271c-130d-4290-97d6-d0dd0cf589c0 {
  display: none;
}
#s-e8a4271c-130d-4290-97d6-d0dd0cf589c0, #wrap-s-e8a4271c-130d-4290-97d6-d0dd0cf589c0 { display:none !important; }}@media (max-width: 767px){#s-e8a4271c-130d-4290-97d6-d0dd0cf589c0 {
  display: none;
}
#s-e8a4271c-130d-4290-97d6-d0dd0cf589c0, #wrap-s-e8a4271c-130d-4290-97d6-d0dd0cf589c0 { display:none !important; }}







#s-e8a4271c-130d-4290-97d6-d0dd0cf589c0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e8a4271c-130d-4290-97d6-d0dd0cf589c0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6f34688b-2054-4ed4-9756-1e10dfcdcf73 {
  margin-left: 20%;
margin-right: 20%;
min-height: 50px;
background-color: rgba(29, 29, 29, 1);
}








#s-6f34688b-2054-4ed4-9756-1e10dfcdcf73 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6f34688b-2054-4ed4-9756-1e10dfcdcf73.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dc988638-14b1-4b46-9c1e-da2923492ff5 {
  margin-top: 1px;
margin-left: 1px;
margin-bottom: 1px;
margin-right: 1px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-dc988638-14b1-4b46-9c1e-da2923492ff5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dc988638-14b1-4b46-9c1e-da2923492ff5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3a7dc34a-0f7e-4cca-b353-77732a72ab3f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3a7dc34a-0f7e-4cca-b353-77732a72ab3f .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  line-height: 1.5em;
  letter-spacing: 3px;
  
}



#s-53cca1ca-b1e0-4588-8bb1-4c00183b9786 {
  margin-top: 5%;
margin-left: 2%;
margin-bottom: 0%;
}

@media (min-width: 0px) {
[id="s-53cca1ca-b1e0-4588-8bb1-4c00183b9786"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-53cca1ca-b1e0-4588-8bb1-4c00183b9786"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-53cca1ca-b1e0-4588-8bb1-4c00183b9786"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-53cca1ca-b1e0-4588-8bb1-4c00183b9786"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-32357682-8783-4424-8cb1-ae32a29406de {
  margin-left: 0%;
margin-right: 0%;
}

@media (min-width: 0px) {
[id="s-32357682-8783-4424-8cb1-ae32a29406de"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-32357682-8783-4424-8cb1-ae32a29406de"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-32357682-8783-4424-8cb1-ae32a29406de"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-32357682-8783-4424-8cb1-ae32a29406de"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb {
  text-align: center;
}







  img.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shogun-image {
    
    
  }


.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb .shogun-image-content {
  
    align-items: center;
  
}

.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shogun-image {
    
    
  }


.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb .shogun-image-content {
  
    align-items: center;
  
}

.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shogun-image {
  box-sizing: border-box;
}

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





  img.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shogun-image {
    
    
  }


.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb .shogun-image-content {
  
    align-items: center;
  
}

.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shogun-image {
  box-sizing: border-box;
}

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





  img.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shogun-image {
    
    
  }


.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb .shogun-image-content {
  
    align-items: center;
  
}

.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shogun-image {
  box-sizing: border-box;
}

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





  img.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shogun-image {
    
    
  }


.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb .shogun-image-content {
  
    align-items: center;
  
}

.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4aa908c8-4ab8-4e5d-a333-5662a4a1befb.shogun-image {
  box-sizing: border-box;
}

}
#s-a329000f-16dc-47da-9f8c-c0159eb66e59 {
  text-align: center;
}







  img.s-a329000f-16dc-47da-9f8c-c0159eb66e59.shogun-image {
    
    
  }


.s-a329000f-16dc-47da-9f8c-c0159eb66e59 .shogun-image-content {
  
    align-items: center;
  
}

.s-a329000f-16dc-47da-9f8c-c0159eb66e59.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a329000f-16dc-47da-9f8c-c0159eb66e59.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a329000f-16dc-47da-9f8c-c0159eb66e59.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-a329000f-16dc-47da-9f8c-c0159eb66e59.shogun-image {
    
    
  }


.s-a329000f-16dc-47da-9f8c-c0159eb66e59 .shogun-image-content {
  
    align-items: center;
  
}

.s-a329000f-16dc-47da-9f8c-c0159eb66e59.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a329000f-16dc-47da-9f8c-c0159eb66e59.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a329000f-16dc-47da-9f8c-c0159eb66e59.shogun-image {
  box-sizing: border-box;
}

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





  img.s-a329000f-16dc-47da-9f8c-c0159eb66e59.shogun-image {
    
    
  }


.s-a329000f-16dc-47da-9f8c-c0159eb66e59 .shogun-image-content {
  
    align-items: center;
  
}

.s-a329000f-16dc-47da-9f8c-c0159eb66e59.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a329000f-16dc-47da-9f8c-c0159eb66e59.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a329000f-16dc-47da-9f8c-c0159eb66e59.shogun-image {
  box-sizing: border-box;
}

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





  img.s-a329000f-16dc-47da-9f8c-c0159eb66e59.shogun-image {
    
    
  }


.s-a329000f-16dc-47da-9f8c-c0159eb66e59 .shogun-image-content {
  
    align-items: center;
  
}

.s-a329000f-16dc-47da-9f8c-c0159eb66e59.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a329000f-16dc-47da-9f8c-c0159eb66e59.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a329000f-16dc-47da-9f8c-c0159eb66e59.shogun-image {
  box-sizing: border-box;
}

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





  img.s-a329000f-16dc-47da-9f8c-c0159eb66e59.shogun-image {
    
    
  }


.s-a329000f-16dc-47da-9f8c-c0159eb66e59 .shogun-image-content {
  
    align-items: center;
  
}

.s-a329000f-16dc-47da-9f8c-c0159eb66e59.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a329000f-16dc-47da-9f8c-c0159eb66e59.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a329000f-16dc-47da-9f8c-c0159eb66e59.shogun-image {
  box-sizing: border-box;
}

}
#s-156a3e2b-84ad-4522-b21f-ac6691337939 {
  text-align: center;
}







  img.s-156a3e2b-84ad-4522-b21f-ac6691337939.shogun-image {
    
    
  }


.s-156a3e2b-84ad-4522-b21f-ac6691337939 .shogun-image-content {
  
    align-items: center;
  
}

.s-156a3e2b-84ad-4522-b21f-ac6691337939.shg-align-container {
  display: flex;
  justify-content: center
}

.s-156a3e2b-84ad-4522-b21f-ac6691337939.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-156a3e2b-84ad-4522-b21f-ac6691337939.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-156a3e2b-84ad-4522-b21f-ac6691337939.shogun-image {
    
    
  }


.s-156a3e2b-84ad-4522-b21f-ac6691337939 .shogun-image-content {
  
    align-items: center;
  
}

.s-156a3e2b-84ad-4522-b21f-ac6691337939.shg-align-container {
  display: flex;
  justify-content: center
}

.s-156a3e2b-84ad-4522-b21f-ac6691337939.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-156a3e2b-84ad-4522-b21f-ac6691337939.shogun-image {
  box-sizing: border-box;
}

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





  img.s-156a3e2b-84ad-4522-b21f-ac6691337939.shogun-image {
    
    
  }


.s-156a3e2b-84ad-4522-b21f-ac6691337939 .shogun-image-content {
  
    align-items: center;
  
}

.s-156a3e2b-84ad-4522-b21f-ac6691337939.shg-align-container {
  display: flex;
  justify-content: center
}

.s-156a3e2b-84ad-4522-b21f-ac6691337939.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-156a3e2b-84ad-4522-b21f-ac6691337939.shogun-image {
  box-sizing: border-box;
}

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





  img.s-156a3e2b-84ad-4522-b21f-ac6691337939.shogun-image {
    
    
  }


.s-156a3e2b-84ad-4522-b21f-ac6691337939 .shogun-image-content {
  
    align-items: center;
  
}

.s-156a3e2b-84ad-4522-b21f-ac6691337939.shg-align-container {
  display: flex;
  justify-content: center
}

.s-156a3e2b-84ad-4522-b21f-ac6691337939.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-156a3e2b-84ad-4522-b21f-ac6691337939.shogun-image {
  box-sizing: border-box;
}

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





  img.s-156a3e2b-84ad-4522-b21f-ac6691337939.shogun-image {
    
    
  }


.s-156a3e2b-84ad-4522-b21f-ac6691337939 .shogun-image-content {
  
    align-items: center;
  
}

.s-156a3e2b-84ad-4522-b21f-ac6691337939.shg-align-container {
  display: flex;
  justify-content: center
}

.s-156a3e2b-84ad-4522-b21f-ac6691337939.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-156a3e2b-84ad-4522-b21f-ac6691337939.shogun-image {
  box-sizing: border-box;
}

}
#s-3a657ec5-12be-4f10-80b9-9121bb6200c2 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-3a657ec5-12be-4f10-80b9-9121bb6200c2 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 31px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-bb3fceef-ad61-467c-bb92-1248563e81cf {
  margin-left: 0%;
margin-right: 0%;
}
@media (min-width: 1200px){#s-bb3fceef-ad61-467c-bb92-1248563e81cf {
  margin-right: 5%;
}
}
#s-c51fc9d3-a5fd-41ed-982d-a6cd6c4f27bf {
  border-style: solid;
margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: left;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-c51fc9d3-a5fd-41ed-982d-a6cd6c4f27bf:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-c51fc9d3-a5fd-41ed-982d-a6cd6c4f27bf:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-c51fc9d3-a5fd-41ed-982d-a6cd6c4f27bf-root {
    text-align: left;
  }


#s-c51fc9d3-a5fd-41ed-982d-a6cd6c4f27bf.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-c51fc9d3-a5fd-41ed-982d-a6cd6c4f27bf-root {
    text-align: left;
  }


#s-c51fc9d3-a5fd-41ed-982d-a6cd6c4f27bf.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c51fc9d3-a5fd-41ed-982d-a6cd6c4f27bf-root {
    text-align: left;
  }


#s-c51fc9d3-a5fd-41ed-982d-a6cd6c4f27bf.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c51fc9d3-a5fd-41ed-982d-a6cd6c4f27bf-root {
    text-align: left;
  }


#s-c51fc9d3-a5fd-41ed-982d-a6cd6c4f27bf.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-c51fc9d3-a5fd-41ed-982d-a6cd6c4f27bf-root {
    text-align: left;
  }


#s-c51fc9d3-a5fd-41ed-982d-a6cd6c4f27bf.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-c51fc9d3-a5fd-41ed-982d-a6cd6c4f27bf-root {
    text-align: left;
  }


#s-c51fc9d3-a5fd-41ed-982d-a6cd6c4f27bf.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-d601976b-bfa3-4469-b3a1-08a341b27fd2 {
  text-align: left;
}

#s-0ec62be7-eab9-4661-84d8-e5868b79c204 {
  margin-top: 5%;
margin-bottom: 5%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-0ec62be7-eab9-4661-84d8-e5868b79c204 {
  display: none;
}
#s-0ec62be7-eab9-4661-84d8-e5868b79c204, #wrap-s-0ec62be7-eab9-4661-84d8-e5868b79c204 { display:none !important; }}@media (max-width: 767px){#s-0ec62be7-eab9-4661-84d8-e5868b79c204 {
  display: none;
}
#s-0ec62be7-eab9-4661-84d8-e5868b79c204, #wrap-s-0ec62be7-eab9-4661-84d8-e5868b79c204 { display:none !important; }}







#s-0ec62be7-eab9-4661-84d8-e5868b79c204 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0ec62be7-eab9-4661-84d8-e5868b79c204.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-07c22797-d5f7-4d81-b823-67bae703b445 {
  margin-left: 20%;
margin-right: 20%;
min-height: 50px;
background-color: rgba(29, 29, 29, 1);
}








#s-07c22797-d5f7-4d81-b823-67bae703b445 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-07c22797-d5f7-4d81-b823-67bae703b445.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c8ec682c-7273-4fd4-8334-ad4c8fbecd32 {
  margin-top: 1px;
margin-left: 1px;
margin-bottom: 1px;
margin-right: 1px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-c8ec682c-7273-4fd4-8334-ad4c8fbecd32 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c8ec682c-7273-4fd4-8334-ad4c8fbecd32.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b51a4b00-c490-4fd1-b291-4f898ccf1ba1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b51a4b00-c490-4fd1-b291-4f898ccf1ba1 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  line-height: 1.5em;
  letter-spacing: 3px;
  
}



#s-659bd7dc-9c37-451d-b988-cb2bb3a9bc10 {
  margin-top: 3%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 2%;
}

@media (min-width: 0px) {
[id="s-659bd7dc-9c37-451d-b988-cb2bb3a9bc10"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-659bd7dc-9c37-451d-b988-cb2bb3a9bc10"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-659bd7dc-9c37-451d-b988-cb2bb3a9bc10"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-659bd7dc-9c37-451d-b988-cb2bb3a9bc10"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-f42e36e2-1786-44e8-8fae-3628e1e42c2e {
  text-align: left;
}

#s-7bcfc652-6c70-4ed4-b035-3f42251c9ce2 {
  margin-left: 14%;
margin-right: 14%;
}

@media (min-width: 0px) {
[id="s-7bcfc652-6c70-4ed4-b035-3f42251c9ce2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7bcfc652-6c70-4ed4-b035-3f42251c9ce2"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7bcfc652-6c70-4ed4-b035-3f42251c9ce2"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7bcfc652-6c70-4ed4-b035-3f42251c9ce2"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-1389d48a-c217-40a1-a5a5-fc457d3516e6 {
  margin-left: 3%;
margin-right: 3%;
text-align: center;
}







  img.s-1389d48a-c217-40a1-a5a5-fc457d3516e6.shogun-image {
    
    
  }


.s-1389d48a-c217-40a1-a5a5-fc457d3516e6 .shogun-image-content {
  
    align-items: center;
  
}

.s-1389d48a-c217-40a1-a5a5-fc457d3516e6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1389d48a-c217-40a1-a5a5-fc457d3516e6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1389d48a-c217-40a1-a5a5-fc457d3516e6.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-1389d48a-c217-40a1-a5a5-fc457d3516e6.shogun-image {
    
    
  }


.s-1389d48a-c217-40a1-a5a5-fc457d3516e6 .shogun-image-content {
  
    align-items: center;
  
}

.s-1389d48a-c217-40a1-a5a5-fc457d3516e6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1389d48a-c217-40a1-a5a5-fc457d3516e6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1389d48a-c217-40a1-a5a5-fc457d3516e6.shogun-image {
  box-sizing: border-box;
}

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





  img.s-1389d48a-c217-40a1-a5a5-fc457d3516e6.shogun-image {
    
    
  }


.s-1389d48a-c217-40a1-a5a5-fc457d3516e6 .shogun-image-content {
  
    align-items: center;
  
}

.s-1389d48a-c217-40a1-a5a5-fc457d3516e6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1389d48a-c217-40a1-a5a5-fc457d3516e6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1389d48a-c217-40a1-a5a5-fc457d3516e6.shogun-image {
  box-sizing: border-box;
}

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





  img.s-1389d48a-c217-40a1-a5a5-fc457d3516e6.shogun-image {
    
    
  }


.s-1389d48a-c217-40a1-a5a5-fc457d3516e6 .shogun-image-content {
  
    align-items: center;
  
}

.s-1389d48a-c217-40a1-a5a5-fc457d3516e6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1389d48a-c217-40a1-a5a5-fc457d3516e6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1389d48a-c217-40a1-a5a5-fc457d3516e6.shogun-image {
  box-sizing: border-box;
}

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





  img.s-1389d48a-c217-40a1-a5a5-fc457d3516e6.shogun-image {
    
    
  }


.s-1389d48a-c217-40a1-a5a5-fc457d3516e6 .shogun-image-content {
  
    align-items: center;
  
}

.s-1389d48a-c217-40a1-a5a5-fc457d3516e6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1389d48a-c217-40a1-a5a5-fc457d3516e6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1389d48a-c217-40a1-a5a5-fc457d3516e6.shogun-image {
  box-sizing: border-box;
}

}
#s-89cb9936-a6d5-4958-ab9c-e51960070c30 {
  text-align: center;
}







  img.s-89cb9936-a6d5-4958-ab9c-e51960070c30.shogun-image {
    
    
  }


.s-89cb9936-a6d5-4958-ab9c-e51960070c30 .shogun-image-content {
  
    align-items: center;
  
}

.s-89cb9936-a6d5-4958-ab9c-e51960070c30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89cb9936-a6d5-4958-ab9c-e51960070c30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89cb9936-a6d5-4958-ab9c-e51960070c30.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-89cb9936-a6d5-4958-ab9c-e51960070c30.shogun-image {
    
    
  }


.s-89cb9936-a6d5-4958-ab9c-e51960070c30 .shogun-image-content {
  
    align-items: center;
  
}

.s-89cb9936-a6d5-4958-ab9c-e51960070c30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89cb9936-a6d5-4958-ab9c-e51960070c30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89cb9936-a6d5-4958-ab9c-e51960070c30.shogun-image {
  box-sizing: border-box;
}

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





  img.s-89cb9936-a6d5-4958-ab9c-e51960070c30.shogun-image {
    
    
  }


.s-89cb9936-a6d5-4958-ab9c-e51960070c30 .shogun-image-content {
  
    align-items: center;
  
}

.s-89cb9936-a6d5-4958-ab9c-e51960070c30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89cb9936-a6d5-4958-ab9c-e51960070c30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89cb9936-a6d5-4958-ab9c-e51960070c30.shogun-image {
  box-sizing: border-box;
}

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





  img.s-89cb9936-a6d5-4958-ab9c-e51960070c30.shogun-image {
    
    
  }


.s-89cb9936-a6d5-4958-ab9c-e51960070c30 .shogun-image-content {
  
    align-items: center;
  
}

.s-89cb9936-a6d5-4958-ab9c-e51960070c30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89cb9936-a6d5-4958-ab9c-e51960070c30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89cb9936-a6d5-4958-ab9c-e51960070c30.shogun-image {
  box-sizing: border-box;
}

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





  img.s-89cb9936-a6d5-4958-ab9c-e51960070c30.shogun-image {
    
    
  }


.s-89cb9936-a6d5-4958-ab9c-e51960070c30 .shogun-image-content {
  
    align-items: center;
  
}

.s-89cb9936-a6d5-4958-ab9c-e51960070c30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89cb9936-a6d5-4958-ab9c-e51960070c30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89cb9936-a6d5-4958-ab9c-e51960070c30.shogun-image {
  box-sizing: border-box;
}

}
#s-8f6ea7b1-c1b5-4ae1-b986-dd430339b95e {
  margin-left: 0%;
margin-right: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-8f6ea7b1-c1b5-4ae1-b986-dd430339b95e .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 31px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-5b2dbfd2-ab7b-4c92-91a1-3818fabfafaf {
  margin-left: 0%;
margin-right: 0%;
}
@media (min-width: 1200px){#s-5b2dbfd2-ab7b-4c92-91a1-3818fabfafaf {
  margin-right: 5%;
}
}
#s-31dd4bad-ba4f-48b8-8b4d-0b101c5b107e {
  border-style: solid;
margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: left;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-31dd4bad-ba4f-48b8-8b4d-0b101c5b107e:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-31dd4bad-ba4f-48b8-8b4d-0b101c5b107e:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-31dd4bad-ba4f-48b8-8b4d-0b101c5b107e-root {
    text-align: left;
  }


#s-31dd4bad-ba4f-48b8-8b4d-0b101c5b107e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-31dd4bad-ba4f-48b8-8b4d-0b101c5b107e-root {
    text-align: left;
  }


#s-31dd4bad-ba4f-48b8-8b4d-0b101c5b107e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-31dd4bad-ba4f-48b8-8b4d-0b101c5b107e-root {
    text-align: left;
  }


#s-31dd4bad-ba4f-48b8-8b4d-0b101c5b107e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-31dd4bad-ba4f-48b8-8b4d-0b101c5b107e-root {
    text-align: left;
  }


#s-31dd4bad-ba4f-48b8-8b4d-0b101c5b107e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-31dd4bad-ba4f-48b8-8b4d-0b101c5b107e-root {
    text-align: left;
  }


#s-31dd4bad-ba4f-48b8-8b4d-0b101c5b107e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-31dd4bad-ba4f-48b8-8b4d-0b101c5b107e-root {
    text-align: left;
  }


#s-31dd4bad-ba4f-48b8-8b4d-0b101c5b107e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-07a275c2-9440-4d9f-af66-d3646f6117df {
  margin-top: 5%;
margin-left: 2%;
margin-bottom: 0%;
}

@media (min-width: 0px) {
[id="s-07a275c2-9440-4d9f-af66-d3646f6117df"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-07a275c2-9440-4d9f-af66-d3646f6117df"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-07a275c2-9440-4d9f-af66-d3646f6117df"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-07a275c2-9440-4d9f-af66-d3646f6117df"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-5a074357-a8ee-4804-a925-9b4db797d83a {
  margin-left: 0%;
margin-right: 0%;
}

@media (min-width: 0px) {
[id="s-5a074357-a8ee-4804-a925-9b4db797d83a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5a074357-a8ee-4804-a925-9b4db797d83a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-5a074357-a8ee-4804-a925-9b4db797d83a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-5a074357-a8ee-4804-a925-9b4db797d83a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-1df9f935-a058-4752-a53e-5e36c68876c1 {
  text-align: center;
}







  img.s-1df9f935-a058-4752-a53e-5e36c68876c1.shogun-image {
    
    
  }


.s-1df9f935-a058-4752-a53e-5e36c68876c1 .shogun-image-content {
  
    align-items: center;
  
}

.s-1df9f935-a058-4752-a53e-5e36c68876c1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1df9f935-a058-4752-a53e-5e36c68876c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1df9f935-a058-4752-a53e-5e36c68876c1.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-1df9f935-a058-4752-a53e-5e36c68876c1.shogun-image {
    
    
  }


.s-1df9f935-a058-4752-a53e-5e36c68876c1 .shogun-image-content {
  
    align-items: center;
  
}

.s-1df9f935-a058-4752-a53e-5e36c68876c1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1df9f935-a058-4752-a53e-5e36c68876c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1df9f935-a058-4752-a53e-5e36c68876c1.shogun-image {
  box-sizing: border-box;
}

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





  img.s-1df9f935-a058-4752-a53e-5e36c68876c1.shogun-image {
    
    
  }


.s-1df9f935-a058-4752-a53e-5e36c68876c1 .shogun-image-content {
  
    align-items: center;
  
}

.s-1df9f935-a058-4752-a53e-5e36c68876c1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1df9f935-a058-4752-a53e-5e36c68876c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1df9f935-a058-4752-a53e-5e36c68876c1.shogun-image {
  box-sizing: border-box;
}

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





  img.s-1df9f935-a058-4752-a53e-5e36c68876c1.shogun-image {
    
    
  }


.s-1df9f935-a058-4752-a53e-5e36c68876c1 .shogun-image-content {
  
    align-items: center;
  
}

.s-1df9f935-a058-4752-a53e-5e36c68876c1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1df9f935-a058-4752-a53e-5e36c68876c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1df9f935-a058-4752-a53e-5e36c68876c1.shogun-image {
  box-sizing: border-box;
}

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





  img.s-1df9f935-a058-4752-a53e-5e36c68876c1.shogun-image {
    
    
  }


.s-1df9f935-a058-4752-a53e-5e36c68876c1 .shogun-image-content {
  
    align-items: center;
  
}

.s-1df9f935-a058-4752-a53e-5e36c68876c1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1df9f935-a058-4752-a53e-5e36c68876c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1df9f935-a058-4752-a53e-5e36c68876c1.shogun-image {
  box-sizing: border-box;
}

}
#s-5077c097-593a-41b7-b9b4-8e0f1a74e0c6 {
  text-align: center;
}







  img.s-5077c097-593a-41b7-b9b4-8e0f1a74e0c6.shogun-image {
    
    
  }


.s-5077c097-593a-41b7-b9b4-8e0f1a74e0c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-5077c097-593a-41b7-b9b4-8e0f1a74e0c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5077c097-593a-41b7-b9b4-8e0f1a74e0c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5077c097-593a-41b7-b9b4-8e0f1a74e0c6.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-5077c097-593a-41b7-b9b4-8e0f1a74e0c6.shogun-image {
    
    
  }


.s-5077c097-593a-41b7-b9b4-8e0f1a74e0c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-5077c097-593a-41b7-b9b4-8e0f1a74e0c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5077c097-593a-41b7-b9b4-8e0f1a74e0c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5077c097-593a-41b7-b9b4-8e0f1a74e0c6.shogun-image {
  box-sizing: border-box;
}

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





  img.s-5077c097-593a-41b7-b9b4-8e0f1a74e0c6.shogun-image {
    
    
  }


.s-5077c097-593a-41b7-b9b4-8e0f1a74e0c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-5077c097-593a-41b7-b9b4-8e0f1a74e0c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5077c097-593a-41b7-b9b4-8e0f1a74e0c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5077c097-593a-41b7-b9b4-8e0f1a74e0c6.shogun-image {
  box-sizing: border-box;
}

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





  img.s-5077c097-593a-41b7-b9b4-8e0f1a74e0c6.shogun-image {
    
    
  }


.s-5077c097-593a-41b7-b9b4-8e0f1a74e0c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-5077c097-593a-41b7-b9b4-8e0f1a74e0c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5077c097-593a-41b7-b9b4-8e0f1a74e0c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5077c097-593a-41b7-b9b4-8e0f1a74e0c6.shogun-image {
  box-sizing: border-box;
}

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





  img.s-5077c097-593a-41b7-b9b4-8e0f1a74e0c6.shogun-image {
    
    
  }


.s-5077c097-593a-41b7-b9b4-8e0f1a74e0c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-5077c097-593a-41b7-b9b4-8e0f1a74e0c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5077c097-593a-41b7-b9b4-8e0f1a74e0c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5077c097-593a-41b7-b9b4-8e0f1a74e0c6.shogun-image {
  box-sizing: border-box;
}

}
#s-2399d137-857f-4352-bf87-6cef032d9d41 {
  text-align: center;
}







  img.s-2399d137-857f-4352-bf87-6cef032d9d41.shogun-image {
    
    
  }


.s-2399d137-857f-4352-bf87-6cef032d9d41 .shogun-image-content {
  
    align-items: center;
  
}

.s-2399d137-857f-4352-bf87-6cef032d9d41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2399d137-857f-4352-bf87-6cef032d9d41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2399d137-857f-4352-bf87-6cef032d9d41.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-2399d137-857f-4352-bf87-6cef032d9d41.shogun-image {
    
    
  }


.s-2399d137-857f-4352-bf87-6cef032d9d41 .shogun-image-content {
  
    align-items: center;
  
}

.s-2399d137-857f-4352-bf87-6cef032d9d41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2399d137-857f-4352-bf87-6cef032d9d41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2399d137-857f-4352-bf87-6cef032d9d41.shogun-image {
  box-sizing: border-box;
}

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





  img.s-2399d137-857f-4352-bf87-6cef032d9d41.shogun-image {
    
    
  }


.s-2399d137-857f-4352-bf87-6cef032d9d41 .shogun-image-content {
  
    align-items: center;
  
}

.s-2399d137-857f-4352-bf87-6cef032d9d41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2399d137-857f-4352-bf87-6cef032d9d41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2399d137-857f-4352-bf87-6cef032d9d41.shogun-image {
  box-sizing: border-box;
}

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





  img.s-2399d137-857f-4352-bf87-6cef032d9d41.shogun-image {
    
    
  }


.s-2399d137-857f-4352-bf87-6cef032d9d41 .shogun-image-content {
  
    align-items: center;
  
}

.s-2399d137-857f-4352-bf87-6cef032d9d41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2399d137-857f-4352-bf87-6cef032d9d41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2399d137-857f-4352-bf87-6cef032d9d41.shogun-image {
  box-sizing: border-box;
}

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





  img.s-2399d137-857f-4352-bf87-6cef032d9d41.shogun-image {
    
    
  }


.s-2399d137-857f-4352-bf87-6cef032d9d41 .shogun-image-content {
  
    align-items: center;
  
}

.s-2399d137-857f-4352-bf87-6cef032d9d41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2399d137-857f-4352-bf87-6cef032d9d41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2399d137-857f-4352-bf87-6cef032d9d41.shogun-image {
  box-sizing: border-box;
}

}
#s-84bd9a08-4aaa-4c80-98ac-1b0399a0b82e {
  margin-left: 0%;
margin-right: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-84bd9a08-4aaa-4c80-98ac-1b0399a0b82e .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 31px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-79e1dacf-f788-40c8-8671-280f5e9b4244 {
  margin-left: 0%;
margin-right: 0%;
}
@media (min-width: 1200px){#s-79e1dacf-f788-40c8-8671-280f5e9b4244 {
  margin-right: 5%;
}
}
#s-45a484a2-5bfb-4121-a95b-5d02334f3433 {
  border-style: solid;
margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: left;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-45a484a2-5bfb-4121-a95b-5d02334f3433:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-45a484a2-5bfb-4121-a95b-5d02334f3433:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-45a484a2-5bfb-4121-a95b-5d02334f3433-root {
    text-align: left;
  }


#s-45a484a2-5bfb-4121-a95b-5d02334f3433.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-45a484a2-5bfb-4121-a95b-5d02334f3433-root {
    text-align: left;
  }


#s-45a484a2-5bfb-4121-a95b-5d02334f3433.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-45a484a2-5bfb-4121-a95b-5d02334f3433-root {
    text-align: left;
  }


#s-45a484a2-5bfb-4121-a95b-5d02334f3433.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-45a484a2-5bfb-4121-a95b-5d02334f3433-root {
    text-align: left;
  }


#s-45a484a2-5bfb-4121-a95b-5d02334f3433.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-45a484a2-5bfb-4121-a95b-5d02334f3433-root {
    text-align: left;
  }


#s-45a484a2-5bfb-4121-a95b-5d02334f3433.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-45a484a2-5bfb-4121-a95b-5d02334f3433-root {
    text-align: left;
  }


#s-45a484a2-5bfb-4121-a95b-5d02334f3433.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-d9776454-18f1-49ab-aff4-bee3c492f886 {
  text-align: left;
}

#s-0a241fd9-007d-46a1-a4fc-019b0bbc5fa9 {
  margin-top: 5%;
margin-bottom: 5%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-0a241fd9-007d-46a1-a4fc-019b0bbc5fa9 {
  display: none;
}
#s-0a241fd9-007d-46a1-a4fc-019b0bbc5fa9, #wrap-s-0a241fd9-007d-46a1-a4fc-019b0bbc5fa9 { display:none !important; }}@media (max-width: 767px){#s-0a241fd9-007d-46a1-a4fc-019b0bbc5fa9 {
  display: none;
}
#s-0a241fd9-007d-46a1-a4fc-019b0bbc5fa9, #wrap-s-0a241fd9-007d-46a1-a4fc-019b0bbc5fa9 { display:none !important; }}







#s-0a241fd9-007d-46a1-a4fc-019b0bbc5fa9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0a241fd9-007d-46a1-a4fc-019b0bbc5fa9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2c5a0296-19db-4d01-863e-74e732e791f3 {
  margin-left: 20%;
margin-right: 20%;
min-height: 50px;
background-color: rgba(29, 29, 29, 1);
}








#s-2c5a0296-19db-4d01-863e-74e732e791f3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2c5a0296-19db-4d01-863e-74e732e791f3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ea4eaea3-b84f-44f9-a8a2-9dd67a353b78 {
  margin-top: 1px;
margin-left: 1px;
margin-bottom: 1px;
margin-right: 1px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-ea4eaea3-b84f-44f9-a8a2-9dd67a353b78 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ea4eaea3-b84f-44f9-a8a2-9dd67a353b78.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b94b87a8-dc83-4dd8-a915-ea5f445df9fe {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b94b87a8-dc83-4dd8-a915-ea5f445df9fe .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  line-height: 1.5em;
  letter-spacing: 3px;
  
}



#s-761b2344-e908-4bf5-9aed-1477a3509fd4 {
  margin-top: 5%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 2%;
}

@media (min-width: 0px) {
[id="s-761b2344-e908-4bf5-9aed-1477a3509fd4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-761b2344-e908-4bf5-9aed-1477a3509fd4"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-761b2344-e908-4bf5-9aed-1477a3509fd4"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-761b2344-e908-4bf5-9aed-1477a3509fd4"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-f1bd1af5-7983-4912-bf9b-c128b3c2204e {
  text-align: left;
}

#s-60c8fa81-a0e2-4bd7-9869-fa1559400f5c {
  margin-left: 0%;
margin-right: 0%;
}

@media (min-width: 0px) {
[id="s-60c8fa81-a0e2-4bd7-9869-fa1559400f5c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-60c8fa81-a0e2-4bd7-9869-fa1559400f5c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-60c8fa81-a0e2-4bd7-9869-fa1559400f5c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-60c8fa81-a0e2-4bd7-9869-fa1559400f5c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-3b871f93-9f89-44bc-b842-953532fae079 {
  text-align: center;
}







  img.s-3b871f93-9f89-44bc-b842-953532fae079.shogun-image {
    
    
  }


.s-3b871f93-9f89-44bc-b842-953532fae079 .shogun-image-content {
  
    align-items: center;
  
}

.s-3b871f93-9f89-44bc-b842-953532fae079.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3b871f93-9f89-44bc-b842-953532fae079.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3b871f93-9f89-44bc-b842-953532fae079.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-3b871f93-9f89-44bc-b842-953532fae079.shogun-image {
    
    
  }


.s-3b871f93-9f89-44bc-b842-953532fae079 .shogun-image-content {
  
    align-items: center;
  
}

.s-3b871f93-9f89-44bc-b842-953532fae079.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3b871f93-9f89-44bc-b842-953532fae079.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3b871f93-9f89-44bc-b842-953532fae079.shogun-image {
  box-sizing: border-box;
}

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





  img.s-3b871f93-9f89-44bc-b842-953532fae079.shogun-image {
    
    
  }


.s-3b871f93-9f89-44bc-b842-953532fae079 .shogun-image-content {
  
    align-items: center;
  
}

.s-3b871f93-9f89-44bc-b842-953532fae079.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3b871f93-9f89-44bc-b842-953532fae079.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3b871f93-9f89-44bc-b842-953532fae079.shogun-image {
  box-sizing: border-box;
}

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





  img.s-3b871f93-9f89-44bc-b842-953532fae079.shogun-image {
    
    
  }


.s-3b871f93-9f89-44bc-b842-953532fae079 .shogun-image-content {
  
    align-items: center;
  
}

.s-3b871f93-9f89-44bc-b842-953532fae079.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3b871f93-9f89-44bc-b842-953532fae079.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3b871f93-9f89-44bc-b842-953532fae079.shogun-image {
  box-sizing: border-box;
}

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





  img.s-3b871f93-9f89-44bc-b842-953532fae079.shogun-image {
    
    
  }


.s-3b871f93-9f89-44bc-b842-953532fae079 .shogun-image-content {
  
    align-items: center;
  
}

.s-3b871f93-9f89-44bc-b842-953532fae079.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3b871f93-9f89-44bc-b842-953532fae079.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3b871f93-9f89-44bc-b842-953532fae079.shogun-image {
  box-sizing: border-box;
}

}
#s-24a03b4a-9f2c-4c1b-91d2-38ca0e6ccce0 {
  text-align: center;
}







  img.s-24a03b4a-9f2c-4c1b-91d2-38ca0e6ccce0.shogun-image {
    
    
  }


.s-24a03b4a-9f2c-4c1b-91d2-38ca0e6ccce0 .shogun-image-content {
  
    align-items: center;
  
}

.s-24a03b4a-9f2c-4c1b-91d2-38ca0e6ccce0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24a03b4a-9f2c-4c1b-91d2-38ca0e6ccce0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24a03b4a-9f2c-4c1b-91d2-38ca0e6ccce0.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-24a03b4a-9f2c-4c1b-91d2-38ca0e6ccce0.shogun-image {
    
    
  }


.s-24a03b4a-9f2c-4c1b-91d2-38ca0e6ccce0 .shogun-image-content {
  
    align-items: center;
  
}

.s-24a03b4a-9f2c-4c1b-91d2-38ca0e6ccce0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24a03b4a-9f2c-4c1b-91d2-38ca0e6ccce0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24a03b4a-9f2c-4c1b-91d2-38ca0e6ccce0.shogun-image {
  box-sizing: border-box;
}

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





  img.s-24a03b4a-9f2c-4c1b-91d2-38ca0e6ccce0.shogun-image {
    
    
  }


.s-24a03b4a-9f2c-4c1b-91d2-38ca0e6ccce0 .shogun-image-content {
  
    align-items: center;
  
}

.s-24a03b4a-9f2c-4c1b-91d2-38ca0e6ccce0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24a03b4a-9f2c-4c1b-91d2-38ca0e6ccce0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24a03b4a-9f2c-4c1b-91d2-38ca0e6ccce0.shogun-image {
  box-sizing: border-box;
}

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





  img.s-24a03b4a-9f2c-4c1b-91d2-38ca0e6ccce0.shogun-image {
    
    
  }


.s-24a03b4a-9f2c-4c1b-91d2-38ca0e6ccce0 .shogun-image-content {
  
    align-items: center;
  
}

.s-24a03b4a-9f2c-4c1b-91d2-38ca0e6ccce0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24a03b4a-9f2c-4c1b-91d2-38ca0e6ccce0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24a03b4a-9f2c-4c1b-91d2-38ca0e6ccce0.shogun-image {
  box-sizing: border-box;
}

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





  img.s-24a03b4a-9f2c-4c1b-91d2-38ca0e6ccce0.shogun-image {
    
    
  }


.s-24a03b4a-9f2c-4c1b-91d2-38ca0e6ccce0 .shogun-image-content {
  
    align-items: center;
  
}

.s-24a03b4a-9f2c-4c1b-91d2-38ca0e6ccce0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24a03b4a-9f2c-4c1b-91d2-38ca0e6ccce0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24a03b4a-9f2c-4c1b-91d2-38ca0e6ccce0.shogun-image {
  box-sizing: border-box;
}

}
#s-ae0e3fc8-61b8-4b20-9f5b-4db41c85f575 {
  text-align: center;
}







  img.s-ae0e3fc8-61b8-4b20-9f5b-4db41c85f575.shogun-image {
    
    
  }


.s-ae0e3fc8-61b8-4b20-9f5b-4db41c85f575 .shogun-image-content {
  
    align-items: center;
  
}

.s-ae0e3fc8-61b8-4b20-9f5b-4db41c85f575.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ae0e3fc8-61b8-4b20-9f5b-4db41c85f575.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ae0e3fc8-61b8-4b20-9f5b-4db41c85f575.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-ae0e3fc8-61b8-4b20-9f5b-4db41c85f575.shogun-image {
    
    
  }


.s-ae0e3fc8-61b8-4b20-9f5b-4db41c85f575 .shogun-image-content {
  
    align-items: center;
  
}

.s-ae0e3fc8-61b8-4b20-9f5b-4db41c85f575.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ae0e3fc8-61b8-4b20-9f5b-4db41c85f575.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ae0e3fc8-61b8-4b20-9f5b-4db41c85f575.shogun-image {
  box-sizing: border-box;
}

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





  img.s-ae0e3fc8-61b8-4b20-9f5b-4db41c85f575.shogun-image {
    
    
  }


.s-ae0e3fc8-61b8-4b20-9f5b-4db41c85f575 .shogun-image-content {
  
    align-items: center;
  
}

.s-ae0e3fc8-61b8-4b20-9f5b-4db41c85f575.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ae0e3fc8-61b8-4b20-9f5b-4db41c85f575.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ae0e3fc8-61b8-4b20-9f5b-4db41c85f575.shogun-image {
  box-sizing: border-box;
}

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





  img.s-ae0e3fc8-61b8-4b20-9f5b-4db41c85f575.shogun-image {
    
    
  }


.s-ae0e3fc8-61b8-4b20-9f5b-4db41c85f575 .shogun-image-content {
  
    align-items: center;
  
}

.s-ae0e3fc8-61b8-4b20-9f5b-4db41c85f575.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ae0e3fc8-61b8-4b20-9f5b-4db41c85f575.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ae0e3fc8-61b8-4b20-9f5b-4db41c85f575.shogun-image {
  box-sizing: border-box;
}

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





  img.s-ae0e3fc8-61b8-4b20-9f5b-4db41c85f575.shogun-image {
    
    
  }


.s-ae0e3fc8-61b8-4b20-9f5b-4db41c85f575 .shogun-image-content {
  
    align-items: center;
  
}

.s-ae0e3fc8-61b8-4b20-9f5b-4db41c85f575.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ae0e3fc8-61b8-4b20-9f5b-4db41c85f575.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ae0e3fc8-61b8-4b20-9f5b-4db41c85f575.shogun-image {
  box-sizing: border-box;
}

}
#s-2c9c9a0a-ecee-4438-8b6f-58404f4d8ce3 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-2c9c9a0a-ecee-4438-8b6f-58404f4d8ce3 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 31px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-8ccad684-69cc-42b6-9fbd-203795e766a9 {
  margin-left: 0%;
margin-right: 0%;
}
@media (min-width: 1200px){#s-8ccad684-69cc-42b6-9fbd-203795e766a9 {
  margin-left: 0%;
margin-right: 5%;
}
}
#s-13c6d80d-07e5-4f8d-863f-641cfc36d4ba {
  border-style: solid;
margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: left;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-13c6d80d-07e5-4f8d-863f-641cfc36d4ba:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-13c6d80d-07e5-4f8d-863f-641cfc36d4ba:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-13c6d80d-07e5-4f8d-863f-641cfc36d4ba-root {
    text-align: left;
  }


#s-13c6d80d-07e5-4f8d-863f-641cfc36d4ba.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-13c6d80d-07e5-4f8d-863f-641cfc36d4ba-root {
    text-align: left;
  }


#s-13c6d80d-07e5-4f8d-863f-641cfc36d4ba.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-13c6d80d-07e5-4f8d-863f-641cfc36d4ba-root {
    text-align: left;
  }


#s-13c6d80d-07e5-4f8d-863f-641cfc36d4ba.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-13c6d80d-07e5-4f8d-863f-641cfc36d4ba-root {
    text-align: left;
  }


#s-13c6d80d-07e5-4f8d-863f-641cfc36d4ba.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-13c6d80d-07e5-4f8d-863f-641cfc36d4ba-root {
    text-align: left;
  }


#s-13c6d80d-07e5-4f8d-863f-641cfc36d4ba.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-13c6d80d-07e5-4f8d-863f-641cfc36d4ba-root {
    text-align: left;
  }


#s-13c6d80d-07e5-4f8d-863f-641cfc36d4ba.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-8159fdbd-7b2d-4891-a7f3-4c93b43df129 {
  margin-top: 3%;
margin-left: 2%;
margin-bottom: 0%;
margin-right: 0%;
}

@media (min-width: 0px) {
[id="s-8159fdbd-7b2d-4891-a7f3-4c93b43df129"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8159fdbd-7b2d-4891-a7f3-4c93b43df129"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8159fdbd-7b2d-4891-a7f3-4c93b43df129"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8159fdbd-7b2d-4891-a7f3-4c93b43df129"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-e8df1c77-6d2c-4de1-b5cc-f6f576897a56 {
  margin-left: 14%;
margin-right: 14%;
}

@media (min-width: 0px) {
[id="s-e8df1c77-6d2c-4de1-b5cc-f6f576897a56"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e8df1c77-6d2c-4de1-b5cc-f6f576897a56"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e8df1c77-6d2c-4de1-b5cc-f6f576897a56"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e8df1c77-6d2c-4de1-b5cc-f6f576897a56"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-16e69f51-4dc9-4092-bedb-1b14b7c02c5b {
  text-align: center;
}







  img.s-16e69f51-4dc9-4092-bedb-1b14b7c02c5b.shogun-image {
    
    
  }


.s-16e69f51-4dc9-4092-bedb-1b14b7c02c5b .shogun-image-content {
  
    align-items: center;
  
}

.s-16e69f51-4dc9-4092-bedb-1b14b7c02c5b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-16e69f51-4dc9-4092-bedb-1b14b7c02c5b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-16e69f51-4dc9-4092-bedb-1b14b7c02c5b.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-16e69f51-4dc9-4092-bedb-1b14b7c02c5b.shogun-image {
    
    
  }


.s-16e69f51-4dc9-4092-bedb-1b14b7c02c5b .shogun-image-content {
  
    align-items: center;
  
}

.s-16e69f51-4dc9-4092-bedb-1b14b7c02c5b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-16e69f51-4dc9-4092-bedb-1b14b7c02c5b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-16e69f51-4dc9-4092-bedb-1b14b7c02c5b.shogun-image {
  box-sizing: border-box;
}

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





  img.s-16e69f51-4dc9-4092-bedb-1b14b7c02c5b.shogun-image {
    
    
  }


.s-16e69f51-4dc9-4092-bedb-1b14b7c02c5b .shogun-image-content {
  
    align-items: center;
  
}

.s-16e69f51-4dc9-4092-bedb-1b14b7c02c5b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-16e69f51-4dc9-4092-bedb-1b14b7c02c5b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-16e69f51-4dc9-4092-bedb-1b14b7c02c5b.shogun-image {
  box-sizing: border-box;
}

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





  img.s-16e69f51-4dc9-4092-bedb-1b14b7c02c5b.shogun-image {
    
    
  }


.s-16e69f51-4dc9-4092-bedb-1b14b7c02c5b .shogun-image-content {
  
    align-items: center;
  
}

.s-16e69f51-4dc9-4092-bedb-1b14b7c02c5b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-16e69f51-4dc9-4092-bedb-1b14b7c02c5b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-16e69f51-4dc9-4092-bedb-1b14b7c02c5b.shogun-image {
  box-sizing: border-box;
}

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





  img.s-16e69f51-4dc9-4092-bedb-1b14b7c02c5b.shogun-image {
    
    
  }


.s-16e69f51-4dc9-4092-bedb-1b14b7c02c5b .shogun-image-content {
  
    align-items: center;
  
}

.s-16e69f51-4dc9-4092-bedb-1b14b7c02c5b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-16e69f51-4dc9-4092-bedb-1b14b7c02c5b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-16e69f51-4dc9-4092-bedb-1b14b7c02c5b.shogun-image {
  box-sizing: border-box;
}

}
#s-b06f7c77-0476-4046-96a4-2f502b18e5ba {
  text-align: center;
}







  img.s-b06f7c77-0476-4046-96a4-2f502b18e5ba.shogun-image {
    
    
  }


.s-b06f7c77-0476-4046-96a4-2f502b18e5ba .shogun-image-content {
  
    align-items: center;
  
}

.s-b06f7c77-0476-4046-96a4-2f502b18e5ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b06f7c77-0476-4046-96a4-2f502b18e5ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b06f7c77-0476-4046-96a4-2f502b18e5ba.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-b06f7c77-0476-4046-96a4-2f502b18e5ba.shogun-image {
    
    
  }


.s-b06f7c77-0476-4046-96a4-2f502b18e5ba .shogun-image-content {
  
    align-items: center;
  
}

.s-b06f7c77-0476-4046-96a4-2f502b18e5ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b06f7c77-0476-4046-96a4-2f502b18e5ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b06f7c77-0476-4046-96a4-2f502b18e5ba.shogun-image {
  box-sizing: border-box;
}

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





  img.s-b06f7c77-0476-4046-96a4-2f502b18e5ba.shogun-image {
    
    
  }


.s-b06f7c77-0476-4046-96a4-2f502b18e5ba .shogun-image-content {
  
    align-items: center;
  
}

.s-b06f7c77-0476-4046-96a4-2f502b18e5ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b06f7c77-0476-4046-96a4-2f502b18e5ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b06f7c77-0476-4046-96a4-2f502b18e5ba.shogun-image {
  box-sizing: border-box;
}

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





  img.s-b06f7c77-0476-4046-96a4-2f502b18e5ba.shogun-image {
    
    
  }


.s-b06f7c77-0476-4046-96a4-2f502b18e5ba .shogun-image-content {
  
    align-items: center;
  
}

.s-b06f7c77-0476-4046-96a4-2f502b18e5ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b06f7c77-0476-4046-96a4-2f502b18e5ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b06f7c77-0476-4046-96a4-2f502b18e5ba.shogun-image {
  box-sizing: border-box;
}

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





  img.s-b06f7c77-0476-4046-96a4-2f502b18e5ba.shogun-image {
    
    
  }


.s-b06f7c77-0476-4046-96a4-2f502b18e5ba .shogun-image-content {
  
    align-items: center;
  
}

.s-b06f7c77-0476-4046-96a4-2f502b18e5ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b06f7c77-0476-4046-96a4-2f502b18e5ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b06f7c77-0476-4046-96a4-2f502b18e5ba.shogun-image {
  box-sizing: border-box;
}

}
#s-ac763793-6735-43aa-9f1e-258905161434 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-ac763793-6735-43aa-9f1e-258905161434 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 31px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-5969d33c-ca8f-4b89-8c90-a8558bd9815a {
  margin-left: 0%;
margin-right: 0%;
}
@media (min-width: 1200px){#s-5969d33c-ca8f-4b89-8c90-a8558bd9815a {
  margin-left: 0%;
margin-right: 5%;
}
}
#s-1ced991e-c2cf-4e73-a398-02a1ad91f779 {
  border-style: solid;
margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: left;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-1ced991e-c2cf-4e73-a398-02a1ad91f779:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-1ced991e-c2cf-4e73-a398-02a1ad91f779:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-1ced991e-c2cf-4e73-a398-02a1ad91f779-root {
    text-align: left;
  }


#s-1ced991e-c2cf-4e73-a398-02a1ad91f779.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-1ced991e-c2cf-4e73-a398-02a1ad91f779-root {
    text-align: left;
  }


#s-1ced991e-c2cf-4e73-a398-02a1ad91f779.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-1ced991e-c2cf-4e73-a398-02a1ad91f779-root {
    text-align: left;
  }


#s-1ced991e-c2cf-4e73-a398-02a1ad91f779.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-1ced991e-c2cf-4e73-a398-02a1ad91f779-root {
    text-align: left;
  }


#s-1ced991e-c2cf-4e73-a398-02a1ad91f779.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-1ced991e-c2cf-4e73-a398-02a1ad91f779-root {
    text-align: left;
  }


#s-1ced991e-c2cf-4e73-a398-02a1ad91f779.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-1ced991e-c2cf-4e73-a398-02a1ad91f779-root {
    text-align: left;
  }


#s-1ced991e-c2cf-4e73-a398-02a1ad91f779.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-ff399908-9f0b-482b-99af-91726cacd8dd {
  text-align: left;
}

/*
  $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:after,.shg-c:before{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width:1024px){.shg-box,.shg-c{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,.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:focus,.shg-lightbox .shg-lightbox-close:hover{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 .3s}.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}