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

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

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

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

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

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

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

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

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

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

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

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

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







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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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







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

    
    
    
  }


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

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

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

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

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

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

}

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

}

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

}

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

}

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

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

#s-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:   ;
  
  font-style:   ;
  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: ;
  font-family: ;
}

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

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

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

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

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

#s-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-btn-wrapper {
    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-btn-wrapper {
    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-btn-wrapper {
    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-btn-wrapper {
    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-btn-wrapper {
    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-btn-wrapper {
    text-align: center;
  }


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

#s-60a863f6-87b0-48a1-a940-b1285ac589ae {
  margin-top: -60px;
margin-bottom: 0px;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-60a863f6-87b0-48a1-a940-b1285ac589ae {
  display: none;
}
#s-60a863f6-87b0-48a1-a940-b1285ac589ae, #wrap-s-60a863f6-87b0-48a1-a940-b1285ac589ae { display:none !important; }}@media (max-width: 767px){#s-60a863f6-87b0-48a1-a940-b1285ac589ae {
  display: none;
}
#s-60a863f6-87b0-48a1-a940-b1285ac589ae, #wrap-s-60a863f6-87b0-48a1-a940-b1285ac589ae { display:none !important; }}







#s-60a863f6-87b0-48a1-a940-b1285ac589ae > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-60a863f6-87b0-48a1-a940-b1285ac589ae.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-16189f40-5c4a-46dc-9a5b-49e72c2034f0 {
  text-align: center;
}







  #s-16189f40-5c4a-46dc-9a5b-49e72c2034f0 img.shogun-image {
    

    
    
    
  }


#s-16189f40-5c4a-46dc-9a5b-49e72c2034f0 .shogun-image-content {
  
    align-items: center;
  
}

#s-1653dfb3-6df0-4771-abe4-bd47294a5dd1 {
  margin-top: 2%;
margin-bottom: 15px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1653dfb3-6df0-4771-abe4-bd47294a5dd1 .shogun-heading-component h1 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 35px;
  line-height: ;
  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: ;
  font-family: ;
  font-weight: ;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-a11d3e8b-9d89-493a-b95c-ca649f1be0b6 {
  margin-left: 20%;
margin-right: 20%;
}

#s-c29f5b8a-d3ad-4a2d-aa17-e54bd188f23c {
  margin-left: 0%;
margin-right: 0%;
}
@media (min-width: 768px) and (max-width: 991px){#s-c29f5b8a-d3ad-4a2d-aa17-e54bd188f23c {
  display: none;
}
#s-c29f5b8a-d3ad-4a2d-aa17-e54bd188f23c, #wrap-s-c29f5b8a-d3ad-4a2d-aa17-e54bd188f23c { display:none !important; }}@media (max-width: 767px){#s-c29f5b8a-d3ad-4a2d-aa17-e54bd188f23c {
  display: none;
}
#s-c29f5b8a-d3ad-4a2d-aa17-e54bd188f23c, #wrap-s-c29f5b8a-d3ad-4a2d-aa17-e54bd188f23c { display:none !important; }}
@media (min-width: 0px) {
[id="s-c29f5b8a-d3ad-4a2d-aa17-e54bd188f23c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.5px);
}

}

@media (min-width: 768px) {
[id="s-c29f5b8a-d3ad-4a2d-aa17-e54bd188f23c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.75px);
}

}

@media (min-width: 992px) {
[id="s-c29f5b8a-d3ad-4a2d-aa17-e54bd188f23c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.75px);
}

}

@media (min-width: 1200px) {
[id="s-c29f5b8a-d3ad-4a2d-aa17-e54bd188f23c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.75px);
}

}

#s-2b615153-d0a6-4e27-8b3c-86310ef9fce7 {
  min-height: 50px;
}








#s-2b615153-d0a6-4e27-8b3c-86310ef9fce7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2b615153-d0a6-4e27-8b3c-86310ef9fce7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-efe3d1bc-87db-4ce3-8c22-eb7524bd830a {
  margin-top: 25px;
}

#s-54115689-63c0-4841-a273-3b895a94a66f {
  margin-top: -30px;
}

#s-9d454697-bf05-4e8c-bf80-280ad20a8314 {
  margin-left: 32px;
margin-right: 32px;
}
@media (min-width: 768px) and (max-width: 991px){#s-9d454697-bf05-4e8c-bf80-280ad20a8314 {
  display: none;
}
#s-9d454697-bf05-4e8c-bf80-280ad20a8314, #wrap-s-9d454697-bf05-4e8c-bf80-280ad20a8314 { display:none !important; }}@media (max-width: 767px){#s-9d454697-bf05-4e8c-bf80-280ad20a8314 {
  display: none;
}
#s-9d454697-bf05-4e8c-bf80-280ad20a8314, #wrap-s-9d454697-bf05-4e8c-bf80-280ad20a8314 { display:none !important; }}
#s-2fb7ad57-b3f0-4476-bfe1-8c4f717a3ec2 {
  margin-top: 6%;
margin-left: auto;
margin-bottom: 0%;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-radius: 2px;
max-width: 70%;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
}
#s-2fb7ad57-b3f0-4476-bfe1-8c4f717a3ec2:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-2fb7ad57-b3f0-4476-bfe1-8c4f717a3ec2:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-2fb7ad57-b3f0-4476-bfe1-8c4f717a3ec2-btn-wrapper {
    text-align: center;
  }


#s-2fb7ad57-b3f0-4476-bfe1-8c4f717a3ec2.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-2fb7ad57-b3f0-4476-bfe1-8c4f717a3ec2-btn-wrapper {
    text-align: center;
  }


#s-2fb7ad57-b3f0-4476-bfe1-8c4f717a3ec2.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-2fb7ad57-b3f0-4476-bfe1-8c4f717a3ec2-btn-wrapper {
    text-align: center;
  }


#s-2fb7ad57-b3f0-4476-bfe1-8c4f717a3ec2.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-2fb7ad57-b3f0-4476-bfe1-8c4f717a3ec2-btn-wrapper {
    text-align: center;
  }


#s-2fb7ad57-b3f0-4476-bfe1-8c4f717a3ec2.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-2fb7ad57-b3f0-4476-bfe1-8c4f717a3ec2-btn-wrapper {
    text-align: center;
  }


#s-2fb7ad57-b3f0-4476-bfe1-8c4f717a3ec2.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-2fb7ad57-b3f0-4476-bfe1-8c4f717a3ec2-btn-wrapper {
    text-align: center;
  }


#s-2fb7ad57-b3f0-4476-bfe1-8c4f717a3ec2.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-5874d1eb-8ef4-4a9c-a4af-36e210844bbc {
  border-style: solid;
margin-top: 15px;
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: 600px;
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-5874d1eb-8ef4-4a9c-a4af-36e210844bbc: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-5874d1eb-8ef4-4a9c-a4af-36e210844bbc: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;}@media (min-width: 992px) and (max-width: 1199px){#s-5874d1eb-8ef4-4a9c-a4af-36e210844bbc {
  display: none;
}
#s-5874d1eb-8ef4-4a9c-a4af-36e210844bbc, #wrap-s-5874d1eb-8ef4-4a9c-a4af-36e210844bbc { display:none !important; }}

  #s-5874d1eb-8ef4-4a9c-a4af-36e210844bbc-btn-wrapper {
    text-align: center;
  }


#s-5874d1eb-8ef4-4a9c-a4af-36e210844bbc.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-5874d1eb-8ef4-4a9c-a4af-36e210844bbc-btn-wrapper {
    text-align: center;
  }


#s-5874d1eb-8ef4-4a9c-a4af-36e210844bbc.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-5874d1eb-8ef4-4a9c-a4af-36e210844bbc-btn-wrapper {
    text-align: center;
  }


#s-5874d1eb-8ef4-4a9c-a4af-36e210844bbc.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-5874d1eb-8ef4-4a9c-a4af-36e210844bbc-btn-wrapper {
    text-align: center;
  }


#s-5874d1eb-8ef4-4a9c-a4af-36e210844bbc.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-5874d1eb-8ef4-4a9c-a4af-36e210844bbc-btn-wrapper {
    text-align: center;
  }


#s-5874d1eb-8ef4-4a9c-a4af-36e210844bbc.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}
  #s-5874d1eb-8ef4-4a9c-a4af-36e210844bbc-btn-wrapper {
    text-align: center;
  }


#s-5874d1eb-8ef4-4a9c-a4af-36e210844bbc.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}

#s-af4ca653-46c5-4b57-9694-8a18ed2573d6 {
  border-style: solid;
margin-top: 15px;
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: 400px;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-af4ca653-46c5-4b57-9694-8a18ed2573d6: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-af4ca653-46c5-4b57-9694-8a18ed2573d6: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;}@media (min-width: 1200px){#s-af4ca653-46c5-4b57-9694-8a18ed2573d6 {
  display: none;
}
#s-af4ca653-46c5-4b57-9694-8a18ed2573d6, #wrap-s-af4ca653-46c5-4b57-9694-8a18ed2573d6 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-af4ca653-46c5-4b57-9694-8a18ed2573d6 {
  display: none;
}
#s-af4ca653-46c5-4b57-9694-8a18ed2573d6, #wrap-s-af4ca653-46c5-4b57-9694-8a18ed2573d6 { display:none !important; }}@media (max-width: 767px){#s-af4ca653-46c5-4b57-9694-8a18ed2573d6 {
  display: none;
}
#s-af4ca653-46c5-4b57-9694-8a18ed2573d6, #wrap-s-af4ca653-46c5-4b57-9694-8a18ed2573d6 { display:none !important; }}

  #s-af4ca653-46c5-4b57-9694-8a18ed2573d6-btn-wrapper {
    text-align: center;
  }


#s-af4ca653-46c5-4b57-9694-8a18ed2573d6.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-af4ca653-46c5-4b57-9694-8a18ed2573d6-btn-wrapper {
    text-align: center;
  }


#s-af4ca653-46c5-4b57-9694-8a18ed2573d6.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-af4ca653-46c5-4b57-9694-8a18ed2573d6-btn-wrapper {
    text-align: center;
  }


#s-af4ca653-46c5-4b57-9694-8a18ed2573d6.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-af4ca653-46c5-4b57-9694-8a18ed2573d6-btn-wrapper {
    text-align: center;
  }


#s-af4ca653-46c5-4b57-9694-8a18ed2573d6.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-af4ca653-46c5-4b57-9694-8a18ed2573d6-btn-wrapper {
    text-align: center;
  }


#s-af4ca653-46c5-4b57-9694-8a18ed2573d6.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}
  #s-af4ca653-46c5-4b57-9694-8a18ed2573d6-btn-wrapper {
    text-align: center;
  }


#s-af4ca653-46c5-4b57-9694-8a18ed2573d6.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}

#s-6657f19d-c1cf-47e6-8b26-da7feb736a03 {
  min-height: 50px;
}








#s-6657f19d-c1cf-47e6-8b26-da7feb736a03 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6657f19d-c1cf-47e6-8b26-da7feb736a03.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1f2ea3c3-6886-40fd-a6d0-20e024981255 {
  margin-top: 25px;
}

#s-a66bc032-ee7a-4048-a957-c68e7033b575 {
  margin-top: -30px;
}

#s-f0f5b2d1-ac45-4e6d-94ac-3eec68b8bd90 {
  margin-left: 32px;
margin-right: 32px;
}
@media (min-width: 768px) and (max-width: 991px){#s-f0f5b2d1-ac45-4e6d-94ac-3eec68b8bd90 {
  display: none;
}
#s-f0f5b2d1-ac45-4e6d-94ac-3eec68b8bd90, #wrap-s-f0f5b2d1-ac45-4e6d-94ac-3eec68b8bd90 { display:none !important; }}@media (max-width: 767px){#s-f0f5b2d1-ac45-4e6d-94ac-3eec68b8bd90 {
  display: none;
}
#s-f0f5b2d1-ac45-4e6d-94ac-3eec68b8bd90, #wrap-s-f0f5b2d1-ac45-4e6d-94ac-3eec68b8bd90 { display:none !important; }}
#s-c2a54149-b90e-4bc4-abf0-4c57454dab90 {
  margin-top: 6%;
margin-left: auto;
margin-bottom: 0%;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-radius: 2px;
max-width: 70%;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
}
#s-c2a54149-b90e-4bc4-abf0-4c57454dab90:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c2a54149-b90e-4bc4-abf0-4c57454dab90:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-c2a54149-b90e-4bc4-abf0-4c57454dab90-btn-wrapper {
    text-align: center;
  }


#s-c2a54149-b90e-4bc4-abf0-4c57454dab90.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-c2a54149-b90e-4bc4-abf0-4c57454dab90-btn-wrapper {
    text-align: center;
  }


#s-c2a54149-b90e-4bc4-abf0-4c57454dab90.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c2a54149-b90e-4bc4-abf0-4c57454dab90-btn-wrapper {
    text-align: center;
  }


#s-c2a54149-b90e-4bc4-abf0-4c57454dab90.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c2a54149-b90e-4bc4-abf0-4c57454dab90-btn-wrapper {
    text-align: center;
  }


#s-c2a54149-b90e-4bc4-abf0-4c57454dab90.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-c2a54149-b90e-4bc4-abf0-4c57454dab90-btn-wrapper {
    text-align: center;
  }


#s-c2a54149-b90e-4bc4-abf0-4c57454dab90.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-c2a54149-b90e-4bc4-abf0-4c57454dab90-btn-wrapper {
    text-align: center;
  }


#s-c2a54149-b90e-4bc4-abf0-4c57454dab90.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-5d0a574d-4b41-4371-8625-3a3f1ff6a183 {
  border-style: solid;
margin-top: 15px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 600px;
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-5d0a574d-4b41-4371-8625-3a3f1ff6a183: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-5d0a574d-4b41-4371-8625-3a3f1ff6a183: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;}@media (min-width: 992px) and (max-width: 1199px){#s-5d0a574d-4b41-4371-8625-3a3f1ff6a183 {
  display: none;
}
#s-5d0a574d-4b41-4371-8625-3a3f1ff6a183, #wrap-s-5d0a574d-4b41-4371-8625-3a3f1ff6a183 { display:none !important; }}

  #s-5d0a574d-4b41-4371-8625-3a3f1ff6a183-btn-wrapper {
    text-align: center;
  }


#s-5d0a574d-4b41-4371-8625-3a3f1ff6a183.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-5d0a574d-4b41-4371-8625-3a3f1ff6a183-btn-wrapper {
    text-align: center;
  }


#s-5d0a574d-4b41-4371-8625-3a3f1ff6a183.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-5d0a574d-4b41-4371-8625-3a3f1ff6a183-btn-wrapper {
    text-align: center;
  }


#s-5d0a574d-4b41-4371-8625-3a3f1ff6a183.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-5d0a574d-4b41-4371-8625-3a3f1ff6a183-btn-wrapper {
    text-align: center;
  }


#s-5d0a574d-4b41-4371-8625-3a3f1ff6a183.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-5d0a574d-4b41-4371-8625-3a3f1ff6a183-btn-wrapper {
    text-align: center;
  }


#s-5d0a574d-4b41-4371-8625-3a3f1ff6a183.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}
  #s-5d0a574d-4b41-4371-8625-3a3f1ff6a183-btn-wrapper {
    text-align: center;
  }


#s-5d0a574d-4b41-4371-8625-3a3f1ff6a183.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}

#s-6696f3ee-6a53-4221-819d-6f0eeea7a349 {
  border-style: solid;
margin-top: 15px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 400px;
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-6696f3ee-6a53-4221-819d-6f0eeea7a349: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-6696f3ee-6a53-4221-819d-6f0eeea7a349: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;}@media (min-width: 1200px){#s-6696f3ee-6a53-4221-819d-6f0eeea7a349 {
  display: none;
}
#s-6696f3ee-6a53-4221-819d-6f0eeea7a349, #wrap-s-6696f3ee-6a53-4221-819d-6f0eeea7a349 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-6696f3ee-6a53-4221-819d-6f0eeea7a349 {
  display: none;
}
#s-6696f3ee-6a53-4221-819d-6f0eeea7a349, #wrap-s-6696f3ee-6a53-4221-819d-6f0eeea7a349 { display:none !important; }}@media (max-width: 767px){#s-6696f3ee-6a53-4221-819d-6f0eeea7a349 {
  display: none;
}
#s-6696f3ee-6a53-4221-819d-6f0eeea7a349, #wrap-s-6696f3ee-6a53-4221-819d-6f0eeea7a349 { display:none !important; }}

  #s-6696f3ee-6a53-4221-819d-6f0eeea7a349-btn-wrapper {
    text-align: center;
  }


#s-6696f3ee-6a53-4221-819d-6f0eeea7a349.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-6696f3ee-6a53-4221-819d-6f0eeea7a349-btn-wrapper {
    text-align: center;
  }


#s-6696f3ee-6a53-4221-819d-6f0eeea7a349.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6696f3ee-6a53-4221-819d-6f0eeea7a349-btn-wrapper {
    text-align: center;
  }


#s-6696f3ee-6a53-4221-819d-6f0eeea7a349.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6696f3ee-6a53-4221-819d-6f0eeea7a349-btn-wrapper {
    text-align: center;
  }


#s-6696f3ee-6a53-4221-819d-6f0eeea7a349.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-6696f3ee-6a53-4221-819d-6f0eeea7a349-btn-wrapper {
    text-align: center;
  }


#s-6696f3ee-6a53-4221-819d-6f0eeea7a349.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}
  #s-6696f3ee-6a53-4221-819d-6f0eeea7a349-btn-wrapper {
    text-align: center;
  }


#s-6696f3ee-6a53-4221-819d-6f0eeea7a349.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}

#s-063973d7-6e84-46d9-974f-eda97a34e85a {
  min-height: 50px;
}








#s-063973d7-6e84-46d9-974f-eda97a34e85a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-063973d7-6e84-46d9-974f-eda97a34e85a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-87b79426-5679-4d28-b669-6eef888d198e {
  margin-top: 25px;
}

#s-b7f302b6-ebbf-4dbc-890e-2a6aca4d8234 {
  margin-top: -30px;
}

#s-0b9f6562-7701-466f-9830-0fb79035cb8b {
  margin-left: 32px;
margin-right: 32px;
}
@media (min-width: 768px) and (max-width: 991px){#s-0b9f6562-7701-466f-9830-0fb79035cb8b {
  display: none;
}
#s-0b9f6562-7701-466f-9830-0fb79035cb8b, #wrap-s-0b9f6562-7701-466f-9830-0fb79035cb8b { display:none !important; }}@media (max-width: 767px){#s-0b9f6562-7701-466f-9830-0fb79035cb8b {
  display: none;
}
#s-0b9f6562-7701-466f-9830-0fb79035cb8b, #wrap-s-0b9f6562-7701-466f-9830-0fb79035cb8b { display:none !important; }}
#s-6416bb12-2e26-4b05-98e6-c361cf5b485e {
  margin-top: 6%;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-radius: 2px;
max-width: 70%;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
}
#s-6416bb12-2e26-4b05-98e6-c361cf5b485e:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-6416bb12-2e26-4b05-98e6-c361cf5b485e:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-6416bb12-2e26-4b05-98e6-c361cf5b485e-btn-wrapper {
    text-align: center;
  }


#s-6416bb12-2e26-4b05-98e6-c361cf5b485e.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-6416bb12-2e26-4b05-98e6-c361cf5b485e-btn-wrapper {
    text-align: center;
  }


#s-6416bb12-2e26-4b05-98e6-c361cf5b485e.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6416bb12-2e26-4b05-98e6-c361cf5b485e-btn-wrapper {
    text-align: center;
  }


#s-6416bb12-2e26-4b05-98e6-c361cf5b485e.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6416bb12-2e26-4b05-98e6-c361cf5b485e-btn-wrapper {
    text-align: center;
  }


#s-6416bb12-2e26-4b05-98e6-c361cf5b485e.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-6416bb12-2e26-4b05-98e6-c361cf5b485e-btn-wrapper {
    text-align: center;
  }


#s-6416bb12-2e26-4b05-98e6-c361cf5b485e.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-6416bb12-2e26-4b05-98e6-c361cf5b485e-btn-wrapper {
    text-align: center;
  }


#s-6416bb12-2e26-4b05-98e6-c361cf5b485e.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-53b4ad24-d071-4a98-9490-8d97b865f8cc {
  border-style: solid;
margin-top: 15px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 600px;
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-53b4ad24-d071-4a98-9490-8d97b865f8cc: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-53b4ad24-d071-4a98-9490-8d97b865f8cc: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;}@media (min-width: 992px) and (max-width: 1199px){#s-53b4ad24-d071-4a98-9490-8d97b865f8cc {
  display: none;
}
#s-53b4ad24-d071-4a98-9490-8d97b865f8cc, #wrap-s-53b4ad24-d071-4a98-9490-8d97b865f8cc { display:none !important; }}

  #s-53b4ad24-d071-4a98-9490-8d97b865f8cc-btn-wrapper {
    text-align: center;
  }


#s-53b4ad24-d071-4a98-9490-8d97b865f8cc.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-53b4ad24-d071-4a98-9490-8d97b865f8cc-btn-wrapper {
    text-align: center;
  }


#s-53b4ad24-d071-4a98-9490-8d97b865f8cc.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-53b4ad24-d071-4a98-9490-8d97b865f8cc-btn-wrapper {
    text-align: center;
  }


#s-53b4ad24-d071-4a98-9490-8d97b865f8cc.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-53b4ad24-d071-4a98-9490-8d97b865f8cc-btn-wrapper {
    text-align: center;
  }


#s-53b4ad24-d071-4a98-9490-8d97b865f8cc.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-53b4ad24-d071-4a98-9490-8d97b865f8cc-btn-wrapper {
    text-align: center;
  }


#s-53b4ad24-d071-4a98-9490-8d97b865f8cc.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}
  #s-53b4ad24-d071-4a98-9490-8d97b865f8cc-btn-wrapper {
    text-align: center;
  }


#s-53b4ad24-d071-4a98-9490-8d97b865f8cc.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}

#s-20cab5b6-14e1-4595-a894-9951f55caa63 {
  border-style: solid;
margin-top: 15px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 200%;
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-20cab5b6-14e1-4595-a894-9951f55caa63: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-20cab5b6-14e1-4595-a894-9951f55caa63: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;}@media (min-width: 1200px){#s-20cab5b6-14e1-4595-a894-9951f55caa63 {
  display: none;
}
#s-20cab5b6-14e1-4595-a894-9951f55caa63, #wrap-s-20cab5b6-14e1-4595-a894-9951f55caa63 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-20cab5b6-14e1-4595-a894-9951f55caa63 {
  display: none;
}
#s-20cab5b6-14e1-4595-a894-9951f55caa63, #wrap-s-20cab5b6-14e1-4595-a894-9951f55caa63 { display:none !important; }}@media (max-width: 767px){#s-20cab5b6-14e1-4595-a894-9951f55caa63 {
  display: none;
}
#s-20cab5b6-14e1-4595-a894-9951f55caa63, #wrap-s-20cab5b6-14e1-4595-a894-9951f55caa63 { display:none !important; }}

  #s-20cab5b6-14e1-4595-a894-9951f55caa63-btn-wrapper {
    text-align: center;
  }


#s-20cab5b6-14e1-4595-a894-9951f55caa63.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-20cab5b6-14e1-4595-a894-9951f55caa63-btn-wrapper {
    text-align: center;
  }


#s-20cab5b6-14e1-4595-a894-9951f55caa63.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-20cab5b6-14e1-4595-a894-9951f55caa63-btn-wrapper {
    text-align: center;
  }


#s-20cab5b6-14e1-4595-a894-9951f55caa63.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-20cab5b6-14e1-4595-a894-9951f55caa63-btn-wrapper {
    text-align: center;
  }


#s-20cab5b6-14e1-4595-a894-9951f55caa63.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-20cab5b6-14e1-4595-a894-9951f55caa63-btn-wrapper {
    text-align: center;
  }


#s-20cab5b6-14e1-4595-a894-9951f55caa63.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}
  #s-20cab5b6-14e1-4595-a894-9951f55caa63-btn-wrapper {
    text-align: center;
  }


#s-20cab5b6-14e1-4595-a894-9951f55caa63.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}

#s-643e2ccb-4b3b-48af-90f5-8c73844ea14f {
  min-height: 50px;
}








#s-643e2ccb-4b3b-48af-90f5-8c73844ea14f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-643e2ccb-4b3b-48af-90f5-8c73844ea14f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3381d182-9c5e-4b3d-a002-43191962cdff {
  margin-top: 25px;
}

#s-6d1e9801-affc-436b-9653-df7e302ff448 {
  margin-top: -30px;
}

#s-027ed872-5549-4620-910a-9a7cd353d3d1 {
  margin-left: 32px;
margin-right: 32px;
}
@media (min-width: 768px) and (max-width: 991px){#s-027ed872-5549-4620-910a-9a7cd353d3d1 {
  display: none;
}
#s-027ed872-5549-4620-910a-9a7cd353d3d1, #wrap-s-027ed872-5549-4620-910a-9a7cd353d3d1 { display:none !important; }}@media (max-width: 767px){#s-027ed872-5549-4620-910a-9a7cd353d3d1 {
  display: none;
}
#s-027ed872-5549-4620-910a-9a7cd353d3d1, #wrap-s-027ed872-5549-4620-910a-9a7cd353d3d1 { display:none !important; }}
#s-7ce69df8-fb12-4ce1-8cc9-5671892e8917 {
  margin-top: 3%;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-radius: 2px;
max-width: 70%;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
}
#s-7ce69df8-fb12-4ce1-8cc9-5671892e8917:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-7ce69df8-fb12-4ce1-8cc9-5671892e8917:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-7ce69df8-fb12-4ce1-8cc9-5671892e8917-btn-wrapper {
    text-align: center;
  }


#s-7ce69df8-fb12-4ce1-8cc9-5671892e8917.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-7ce69df8-fb12-4ce1-8cc9-5671892e8917-btn-wrapper {
    text-align: center;
  }


#s-7ce69df8-fb12-4ce1-8cc9-5671892e8917.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7ce69df8-fb12-4ce1-8cc9-5671892e8917-btn-wrapper {
    text-align: center;
  }


#s-7ce69df8-fb12-4ce1-8cc9-5671892e8917.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7ce69df8-fb12-4ce1-8cc9-5671892e8917-btn-wrapper {
    text-align: center;
  }


#s-7ce69df8-fb12-4ce1-8cc9-5671892e8917.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-7ce69df8-fb12-4ce1-8cc9-5671892e8917-btn-wrapper {
    text-align: center;
  }


#s-7ce69df8-fb12-4ce1-8cc9-5671892e8917.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-7ce69df8-fb12-4ce1-8cc9-5671892e8917-btn-wrapper {
    text-align: center;
  }


#s-7ce69df8-fb12-4ce1-8cc9-5671892e8917.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-78f03bdf-33fc-44cc-a5ef-23537deb66c0 {
  border-style: solid;
margin-top: 15px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 600px;
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-78f03bdf-33fc-44cc-a5ef-23537deb66c0: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-78f03bdf-33fc-44cc-a5ef-23537deb66c0: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;}@media (min-width: 992px) and (max-width: 1199px){#s-78f03bdf-33fc-44cc-a5ef-23537deb66c0 {
  display: none;
}
#s-78f03bdf-33fc-44cc-a5ef-23537deb66c0, #wrap-s-78f03bdf-33fc-44cc-a5ef-23537deb66c0 { display:none !important; }}

  #s-78f03bdf-33fc-44cc-a5ef-23537deb66c0-btn-wrapper {
    text-align: center;
  }


#s-78f03bdf-33fc-44cc-a5ef-23537deb66c0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-78f03bdf-33fc-44cc-a5ef-23537deb66c0-btn-wrapper {
    text-align: center;
  }


#s-78f03bdf-33fc-44cc-a5ef-23537deb66c0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-78f03bdf-33fc-44cc-a5ef-23537deb66c0-btn-wrapper {
    text-align: center;
  }


#s-78f03bdf-33fc-44cc-a5ef-23537deb66c0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-78f03bdf-33fc-44cc-a5ef-23537deb66c0-btn-wrapper {
    text-align: center;
  }


#s-78f03bdf-33fc-44cc-a5ef-23537deb66c0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-78f03bdf-33fc-44cc-a5ef-23537deb66c0-btn-wrapper {
    text-align: center;
  }


#s-78f03bdf-33fc-44cc-a5ef-23537deb66c0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}
  #s-78f03bdf-33fc-44cc-a5ef-23537deb66c0-btn-wrapper {
    text-align: center;
  }


#s-78f03bdf-33fc-44cc-a5ef-23537deb66c0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}

#s-cdfc6b4f-a8a9-4b89-bc43-bb160c1122ad {
  border-style: solid;
margin-top: 15px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 200%;
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-cdfc6b4f-a8a9-4b89-bc43-bb160c1122ad: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-cdfc6b4f-a8a9-4b89-bc43-bb160c1122ad: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;}@media (min-width: 1200px){#s-cdfc6b4f-a8a9-4b89-bc43-bb160c1122ad {
  display: none;
}
#s-cdfc6b4f-a8a9-4b89-bc43-bb160c1122ad, #wrap-s-cdfc6b4f-a8a9-4b89-bc43-bb160c1122ad { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-cdfc6b4f-a8a9-4b89-bc43-bb160c1122ad {
  display: none;
}
#s-cdfc6b4f-a8a9-4b89-bc43-bb160c1122ad, #wrap-s-cdfc6b4f-a8a9-4b89-bc43-bb160c1122ad { display:none !important; }}@media (max-width: 767px){#s-cdfc6b4f-a8a9-4b89-bc43-bb160c1122ad {
  display: none;
}
#s-cdfc6b4f-a8a9-4b89-bc43-bb160c1122ad, #wrap-s-cdfc6b4f-a8a9-4b89-bc43-bb160c1122ad { display:none !important; }}

  #s-cdfc6b4f-a8a9-4b89-bc43-bb160c1122ad-btn-wrapper {
    text-align: center;
  }


#s-cdfc6b4f-a8a9-4b89-bc43-bb160c1122ad.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-cdfc6b4f-a8a9-4b89-bc43-bb160c1122ad-btn-wrapper {
    text-align: center;
  }


#s-cdfc6b4f-a8a9-4b89-bc43-bb160c1122ad.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-cdfc6b4f-a8a9-4b89-bc43-bb160c1122ad-btn-wrapper {
    text-align: center;
  }


#s-cdfc6b4f-a8a9-4b89-bc43-bb160c1122ad.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-cdfc6b4f-a8a9-4b89-bc43-bb160c1122ad-btn-wrapper {
    text-align: center;
  }


#s-cdfc6b4f-a8a9-4b89-bc43-bb160c1122ad.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-cdfc6b4f-a8a9-4b89-bc43-bb160c1122ad-btn-wrapper {
    text-align: center;
  }


#s-cdfc6b4f-a8a9-4b89-bc43-bb160c1122ad.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}
  #s-cdfc6b4f-a8a9-4b89-bc43-bb160c1122ad-btn-wrapper {
    text-align: center;
  }


#s-cdfc6b4f-a8a9-4b89-bc43-bb160c1122ad.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}

#s-0cd5dcb9-009a-4025-a352-0260f3edc06e {
  margin-top: -50px;
margin-bottom: 0px;
min-height: 50px;
}
@media (min-width: 1200px){#s-0cd5dcb9-009a-4025-a352-0260f3edc06e {
  display: none;
}
#s-0cd5dcb9-009a-4025-a352-0260f3edc06e, #wrap-s-0cd5dcb9-009a-4025-a352-0260f3edc06e { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-0cd5dcb9-009a-4025-a352-0260f3edc06e {
  display: none;
}
#s-0cd5dcb9-009a-4025-a352-0260f3edc06e, #wrap-s-0cd5dcb9-009a-4025-a352-0260f3edc06e { display:none !important; }}







#s-0cd5dcb9-009a-4025-a352-0260f3edc06e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0cd5dcb9-009a-4025-a352-0260f3edc06e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4046d5cc-84d6-4a30-99c1-a10b2d75ad0e {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-4046d5cc-84d6-4a30-99c1-a10b2d75ad0e {
  
}
}@media (max-width: 767px){#s-4046d5cc-84d6-4a30-99c1-a10b2d75ad0e {
  margin-top: 5px;
margin-bottom: 5px;
}
}






  #s-4046d5cc-84d6-4a30-99c1-a10b2d75ad0e img.shogun-image {
    

    
    
    
  }


#s-4046d5cc-84d6-4a30-99c1-a10b2d75ad0e .shogun-image-content {
  
    align-items: center;
  
}

#s-8a4431db-4847-4ff3-9a0a-e1a2f07bd00f {
  margin-top: 2%;
margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8a4431db-4847-4ff3-9a0a-e1a2f07bd00f .shogun-heading-component h1 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 25px;
  line-height: ;
  letter-spacing: 3px;
  
}



#s-70f60407-9447-449c-a15f-c1d75a5a74ab {
  margin-left: 5%;
margin-right: 5%;
}

#s-e13997ff-a0b5-4762-b682-a719154f9243 {
  margin-left: 0px;
margin-right: 0px;
min-height: 50px;
}
@media (min-width: 1200px){#s-e13997ff-a0b5-4762-b682-a719154f9243 {
  display: none;
}
#s-e13997ff-a0b5-4762-b682-a719154f9243, #wrap-s-e13997ff-a0b5-4762-b682-a719154f9243 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e13997ff-a0b5-4762-b682-a719154f9243 {
  display: none;
}
#s-e13997ff-a0b5-4762-b682-a719154f9243, #wrap-s-e13997ff-a0b5-4762-b682-a719154f9243 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e13997ff-a0b5-4762-b682-a719154f9243 {
  
}
}@media (max-width: 767px){#s-e13997ff-a0b5-4762-b682-a719154f9243 {
  
}
}







#s-e13997ff-a0b5-4762-b682-a719154f9243 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e13997ff-a0b5-4762-b682-a719154f9243.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-840d299b-ae4a-4e36-a509-176c25a59b91 {
  margin-left: 0%;
margin-right: 0%;
}
@media (min-width: 768px) and (max-width: 991px){#s-840d299b-ae4a-4e36-a509-176c25a59b91 {
  display: none;
}
#s-840d299b-ae4a-4e36-a509-176c25a59b91, #wrap-s-840d299b-ae4a-4e36-a509-176c25a59b91 { display:none !important; }}@media (max-width: 767px){#s-840d299b-ae4a-4e36-a509-176c25a59b91 {
  display: none;
}
#s-840d299b-ae4a-4e36-a509-176c25a59b91, #wrap-s-840d299b-ae4a-4e36-a509-176c25a59b91 { display:none !important; }}
@media (min-width: 0px) {
[id="s-840d299b-ae4a-4e36-a509-176c25a59b91"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.5px);
}

}

@media (min-width: 768px) {
[id="s-840d299b-ae4a-4e36-a509-176c25a59b91"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.75px);
}

}

@media (min-width: 992px) {
[id="s-840d299b-ae4a-4e36-a509-176c25a59b91"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.75px);
}

}

@media (min-width: 1200px) {
[id="s-840d299b-ae4a-4e36-a509-176c25a59b91"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.75px);
}

}

#s-56d548c4-83ef-4517-8629-fa8b69c12c75 {
  min-height: 50px;
}








#s-56d548c4-83ef-4517-8629-fa8b69c12c75 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-56d548c4-83ef-4517-8629-fa8b69c12c75.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bf69a54f-5da8-4c4a-9196-4ba47c2c1a5a {
  margin-top: 25px;
}

#s-c6fcf351-d215-4e98-ba94-8c9587502c4c {
  margin-top: -30px;
}

#s-cd877184-1e7b-4b32-8147-fb610d7cb1cb {
  margin-left: 32px;
margin-right: 32px;
}
@media (min-width: 768px) and (max-width: 991px){#s-cd877184-1e7b-4b32-8147-fb610d7cb1cb {
  display: none;
}
#s-cd877184-1e7b-4b32-8147-fb610d7cb1cb, #wrap-s-cd877184-1e7b-4b32-8147-fb610d7cb1cb { display:none !important; }}@media (max-width: 767px){#s-cd877184-1e7b-4b32-8147-fb610d7cb1cb {
  display: none;
}
#s-cd877184-1e7b-4b32-8147-fb610d7cb1cb, #wrap-s-cd877184-1e7b-4b32-8147-fb610d7cb1cb { display:none !important; }}
#s-51a3dd26-4d4a-40fc-a9cd-b96050a0f906 {
  margin-top: 3%;
margin-left: auto;
margin-bottom: 0%;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-radius: 2px;
max-width: 70%;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
}
#s-51a3dd26-4d4a-40fc-a9cd-b96050a0f906:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-51a3dd26-4d4a-40fc-a9cd-b96050a0f906:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-51a3dd26-4d4a-40fc-a9cd-b96050a0f906-btn-wrapper {
    text-align: center;
  }


#s-51a3dd26-4d4a-40fc-a9cd-b96050a0f906.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-51a3dd26-4d4a-40fc-a9cd-b96050a0f906-btn-wrapper {
    text-align: center;
  }


#s-51a3dd26-4d4a-40fc-a9cd-b96050a0f906.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-51a3dd26-4d4a-40fc-a9cd-b96050a0f906-btn-wrapper {
    text-align: center;
  }


#s-51a3dd26-4d4a-40fc-a9cd-b96050a0f906.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-51a3dd26-4d4a-40fc-a9cd-b96050a0f906-btn-wrapper {
    text-align: center;
  }


#s-51a3dd26-4d4a-40fc-a9cd-b96050a0f906.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-51a3dd26-4d4a-40fc-a9cd-b96050a0f906-btn-wrapper {
    text-align: center;
  }


#s-51a3dd26-4d4a-40fc-a9cd-b96050a0f906.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-51a3dd26-4d4a-40fc-a9cd-b96050a0f906-btn-wrapper {
    text-align: center;
  }


#s-51a3dd26-4d4a-40fc-a9cd-b96050a0f906.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-4583d374-4a1d-4c29-839f-df85749d71e9 {
  border-style: solid;
margin-top: 15px;
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: 600px;
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-4583d374-4a1d-4c29-839f-df85749d71e9: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-4583d374-4a1d-4c29-839f-df85749d71e9: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;}@media (min-width: 992px) and (max-width: 1199px){#s-4583d374-4a1d-4c29-839f-df85749d71e9 {
  display: none;
}
#s-4583d374-4a1d-4c29-839f-df85749d71e9, #wrap-s-4583d374-4a1d-4c29-839f-df85749d71e9 { display:none !important; }}

  #s-4583d374-4a1d-4c29-839f-df85749d71e9-btn-wrapper {
    text-align: center;
  }


#s-4583d374-4a1d-4c29-839f-df85749d71e9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-4583d374-4a1d-4c29-839f-df85749d71e9-btn-wrapper {
    text-align: center;
  }


#s-4583d374-4a1d-4c29-839f-df85749d71e9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4583d374-4a1d-4c29-839f-df85749d71e9-btn-wrapper {
    text-align: center;
  }


#s-4583d374-4a1d-4c29-839f-df85749d71e9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4583d374-4a1d-4c29-839f-df85749d71e9-btn-wrapper {
    text-align: center;
  }


#s-4583d374-4a1d-4c29-839f-df85749d71e9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-4583d374-4a1d-4c29-839f-df85749d71e9-btn-wrapper {
    text-align: center;
  }


#s-4583d374-4a1d-4c29-839f-df85749d71e9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}
  #s-4583d374-4a1d-4c29-839f-df85749d71e9-btn-wrapper {
    text-align: center;
  }


#s-4583d374-4a1d-4c29-839f-df85749d71e9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}

#s-05b730c3-2c32-4247-b8ab-31bfc17b473b {
  border-style: solid;
margin-top: 15px;
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: 400px;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-05b730c3-2c32-4247-b8ab-31bfc17b473b: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-05b730c3-2c32-4247-b8ab-31bfc17b473b: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;}@media (min-width: 1200px){#s-05b730c3-2c32-4247-b8ab-31bfc17b473b {
  display: none;
}
#s-05b730c3-2c32-4247-b8ab-31bfc17b473b, #wrap-s-05b730c3-2c32-4247-b8ab-31bfc17b473b { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-05b730c3-2c32-4247-b8ab-31bfc17b473b {
  display: none;
}
#s-05b730c3-2c32-4247-b8ab-31bfc17b473b, #wrap-s-05b730c3-2c32-4247-b8ab-31bfc17b473b { display:none !important; }}@media (max-width: 767px){#s-05b730c3-2c32-4247-b8ab-31bfc17b473b {
  display: none;
}
#s-05b730c3-2c32-4247-b8ab-31bfc17b473b, #wrap-s-05b730c3-2c32-4247-b8ab-31bfc17b473b { display:none !important; }}

  #s-05b730c3-2c32-4247-b8ab-31bfc17b473b-btn-wrapper {
    text-align: center;
  }


#s-05b730c3-2c32-4247-b8ab-31bfc17b473b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-05b730c3-2c32-4247-b8ab-31bfc17b473b-btn-wrapper {
    text-align: center;
  }


#s-05b730c3-2c32-4247-b8ab-31bfc17b473b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-05b730c3-2c32-4247-b8ab-31bfc17b473b-btn-wrapper {
    text-align: center;
  }


#s-05b730c3-2c32-4247-b8ab-31bfc17b473b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-05b730c3-2c32-4247-b8ab-31bfc17b473b-btn-wrapper {
    text-align: center;
  }


#s-05b730c3-2c32-4247-b8ab-31bfc17b473b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-05b730c3-2c32-4247-b8ab-31bfc17b473b-btn-wrapper {
    text-align: center;
  }


#s-05b730c3-2c32-4247-b8ab-31bfc17b473b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}
  #s-05b730c3-2c32-4247-b8ab-31bfc17b473b-btn-wrapper {
    text-align: center;
  }


#s-05b730c3-2c32-4247-b8ab-31bfc17b473b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}

#s-4ce852d7-cca1-436d-8935-a33c7339db66 {
  min-height: 50px;
}








#s-4ce852d7-cca1-436d-8935-a33c7339db66 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4ce852d7-cca1-436d-8935-a33c7339db66.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0d8fefce-879b-4c52-b6fd-1e62f15ac76b {
  margin-top: 25px;
}

#s-dc8f754c-bcd3-4aaa-9327-86199a258767 {
  margin-top: -30px;
}

#s-cfd6379f-b5e5-4f26-b4a0-d439fcffcd78 {
  margin-left: 32px;
margin-right: 32px;
}
@media (min-width: 768px) and (max-width: 991px){#s-cfd6379f-b5e5-4f26-b4a0-d439fcffcd78 {
  display: none;
}
#s-cfd6379f-b5e5-4f26-b4a0-d439fcffcd78, #wrap-s-cfd6379f-b5e5-4f26-b4a0-d439fcffcd78 { display:none !important; }}@media (max-width: 767px){#s-cfd6379f-b5e5-4f26-b4a0-d439fcffcd78 {
  display: none;
}
#s-cfd6379f-b5e5-4f26-b4a0-d439fcffcd78, #wrap-s-cfd6379f-b5e5-4f26-b4a0-d439fcffcd78 { display:none !important; }}
#s-23b8b4c2-ebba-4fb1-85f4-27e0cd6518b2 {
  margin-top: 3%;
margin-left: auto;
margin-bottom: 0%;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-radius: 2px;
max-width: 70%;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
}
#s-23b8b4c2-ebba-4fb1-85f4-27e0cd6518b2:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-23b8b4c2-ebba-4fb1-85f4-27e0cd6518b2:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-23b8b4c2-ebba-4fb1-85f4-27e0cd6518b2-btn-wrapper {
    text-align: center;
  }


#s-23b8b4c2-ebba-4fb1-85f4-27e0cd6518b2.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-23b8b4c2-ebba-4fb1-85f4-27e0cd6518b2-btn-wrapper {
    text-align: center;
  }


#s-23b8b4c2-ebba-4fb1-85f4-27e0cd6518b2.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-23b8b4c2-ebba-4fb1-85f4-27e0cd6518b2-btn-wrapper {
    text-align: center;
  }


#s-23b8b4c2-ebba-4fb1-85f4-27e0cd6518b2.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-23b8b4c2-ebba-4fb1-85f4-27e0cd6518b2-btn-wrapper {
    text-align: center;
  }


#s-23b8b4c2-ebba-4fb1-85f4-27e0cd6518b2.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-23b8b4c2-ebba-4fb1-85f4-27e0cd6518b2-btn-wrapper {
    text-align: center;
  }


#s-23b8b4c2-ebba-4fb1-85f4-27e0cd6518b2.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-23b8b4c2-ebba-4fb1-85f4-27e0cd6518b2-btn-wrapper {
    text-align: center;
  }


#s-23b8b4c2-ebba-4fb1-85f4-27e0cd6518b2.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-b857df4f-0460-4095-82e5-4d178922ba9d {
  border-style: solid;
margin-top: 15px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 600px;
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-b857df4f-0460-4095-82e5-4d178922ba9d: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-b857df4f-0460-4095-82e5-4d178922ba9d: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;}@media (min-width: 992px) and (max-width: 1199px){#s-b857df4f-0460-4095-82e5-4d178922ba9d {
  display: none;
}
#s-b857df4f-0460-4095-82e5-4d178922ba9d, #wrap-s-b857df4f-0460-4095-82e5-4d178922ba9d { display:none !important; }}

  #s-b857df4f-0460-4095-82e5-4d178922ba9d-btn-wrapper {
    text-align: center;
  }


#s-b857df4f-0460-4095-82e5-4d178922ba9d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-b857df4f-0460-4095-82e5-4d178922ba9d-btn-wrapper {
    text-align: center;
  }


#s-b857df4f-0460-4095-82e5-4d178922ba9d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b857df4f-0460-4095-82e5-4d178922ba9d-btn-wrapper {
    text-align: center;
  }


#s-b857df4f-0460-4095-82e5-4d178922ba9d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b857df4f-0460-4095-82e5-4d178922ba9d-btn-wrapper {
    text-align: center;
  }


#s-b857df4f-0460-4095-82e5-4d178922ba9d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-b857df4f-0460-4095-82e5-4d178922ba9d-btn-wrapper {
    text-align: center;
  }


#s-b857df4f-0460-4095-82e5-4d178922ba9d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}
  #s-b857df4f-0460-4095-82e5-4d178922ba9d-btn-wrapper {
    text-align: center;
  }


#s-b857df4f-0460-4095-82e5-4d178922ba9d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}

#s-193bf5c2-5786-4ec1-8452-ae445f3e5882 {
  border-style: solid;
margin-top: 15px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 400px;
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-193bf5c2-5786-4ec1-8452-ae445f3e5882: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-193bf5c2-5786-4ec1-8452-ae445f3e5882: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;}@media (min-width: 1200px){#s-193bf5c2-5786-4ec1-8452-ae445f3e5882 {
  display: none;
}
#s-193bf5c2-5786-4ec1-8452-ae445f3e5882, #wrap-s-193bf5c2-5786-4ec1-8452-ae445f3e5882 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-193bf5c2-5786-4ec1-8452-ae445f3e5882 {
  display: none;
}
#s-193bf5c2-5786-4ec1-8452-ae445f3e5882, #wrap-s-193bf5c2-5786-4ec1-8452-ae445f3e5882 { display:none !important; }}@media (max-width: 767px){#s-193bf5c2-5786-4ec1-8452-ae445f3e5882 {
  display: none;
}
#s-193bf5c2-5786-4ec1-8452-ae445f3e5882, #wrap-s-193bf5c2-5786-4ec1-8452-ae445f3e5882 { display:none !important; }}

  #s-193bf5c2-5786-4ec1-8452-ae445f3e5882-btn-wrapper {
    text-align: center;
  }


#s-193bf5c2-5786-4ec1-8452-ae445f3e5882.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-193bf5c2-5786-4ec1-8452-ae445f3e5882-btn-wrapper {
    text-align: center;
  }


#s-193bf5c2-5786-4ec1-8452-ae445f3e5882.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-193bf5c2-5786-4ec1-8452-ae445f3e5882-btn-wrapper {
    text-align: center;
  }


#s-193bf5c2-5786-4ec1-8452-ae445f3e5882.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-193bf5c2-5786-4ec1-8452-ae445f3e5882-btn-wrapper {
    text-align: center;
  }


#s-193bf5c2-5786-4ec1-8452-ae445f3e5882.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-193bf5c2-5786-4ec1-8452-ae445f3e5882-btn-wrapper {
    text-align: center;
  }


#s-193bf5c2-5786-4ec1-8452-ae445f3e5882.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}
  #s-193bf5c2-5786-4ec1-8452-ae445f3e5882-btn-wrapper {
    text-align: center;
  }


#s-193bf5c2-5786-4ec1-8452-ae445f3e5882.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}

#s-4c29892e-8bb9-4019-b818-d36104124e99 {
  min-height: 50px;
}








#s-4c29892e-8bb9-4019-b818-d36104124e99 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4c29892e-8bb9-4019-b818-d36104124e99.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-40864154-156d-4410-9a7f-c530cef74887 {
  margin-top: 25px;
}

#s-eec6e8ae-81da-46a4-b80d-3ea672e1123d {
  margin-top: -30px;
}

#s-51e4b865-e6aa-48d4-97b7-2a63af2f7c91 {
  margin-left: 32px;
margin-right: 32px;
}
@media (min-width: 768px) and (max-width: 991px){#s-51e4b865-e6aa-48d4-97b7-2a63af2f7c91 {
  display: none;
}
#s-51e4b865-e6aa-48d4-97b7-2a63af2f7c91, #wrap-s-51e4b865-e6aa-48d4-97b7-2a63af2f7c91 { display:none !important; }}@media (max-width: 767px){#s-51e4b865-e6aa-48d4-97b7-2a63af2f7c91 {
  display: none;
}
#s-51e4b865-e6aa-48d4-97b7-2a63af2f7c91, #wrap-s-51e4b865-e6aa-48d4-97b7-2a63af2f7c91 { display:none !important; }}
#s-9d5a40d6-10e9-4c73-b519-4a6f76e245a3 {
  margin-top: 3%;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-radius: 2px;
max-width: 70%;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
}
#s-9d5a40d6-10e9-4c73-b519-4a6f76e245a3:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-9d5a40d6-10e9-4c73-b519-4a6f76e245a3:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-9d5a40d6-10e9-4c73-b519-4a6f76e245a3-btn-wrapper {
    text-align: center;
  }


#s-9d5a40d6-10e9-4c73-b519-4a6f76e245a3.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-9d5a40d6-10e9-4c73-b519-4a6f76e245a3-btn-wrapper {
    text-align: center;
  }


#s-9d5a40d6-10e9-4c73-b519-4a6f76e245a3.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9d5a40d6-10e9-4c73-b519-4a6f76e245a3-btn-wrapper {
    text-align: center;
  }


#s-9d5a40d6-10e9-4c73-b519-4a6f76e245a3.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9d5a40d6-10e9-4c73-b519-4a6f76e245a3-btn-wrapper {
    text-align: center;
  }


#s-9d5a40d6-10e9-4c73-b519-4a6f76e245a3.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-9d5a40d6-10e9-4c73-b519-4a6f76e245a3-btn-wrapper {
    text-align: center;
  }


#s-9d5a40d6-10e9-4c73-b519-4a6f76e245a3.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-9d5a40d6-10e9-4c73-b519-4a6f76e245a3-btn-wrapper {
    text-align: center;
  }


#s-9d5a40d6-10e9-4c73-b519-4a6f76e245a3.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-ef68a994-fcd4-4958-8cc4-74978f6057f2 {
  border-style: solid;
margin-top: 15px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 600px;
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-ef68a994-fcd4-4958-8cc4-74978f6057f2: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-ef68a994-fcd4-4958-8cc4-74978f6057f2: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;}@media (min-width: 992px) and (max-width: 1199px){#s-ef68a994-fcd4-4958-8cc4-74978f6057f2 {
  display: none;
}
#s-ef68a994-fcd4-4958-8cc4-74978f6057f2, #wrap-s-ef68a994-fcd4-4958-8cc4-74978f6057f2 { display:none !important; }}

  #s-ef68a994-fcd4-4958-8cc4-74978f6057f2-btn-wrapper {
    text-align: center;
  }


#s-ef68a994-fcd4-4958-8cc4-74978f6057f2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-ef68a994-fcd4-4958-8cc4-74978f6057f2-btn-wrapper {
    text-align: center;
  }


#s-ef68a994-fcd4-4958-8cc4-74978f6057f2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ef68a994-fcd4-4958-8cc4-74978f6057f2-btn-wrapper {
    text-align: center;
  }


#s-ef68a994-fcd4-4958-8cc4-74978f6057f2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ef68a994-fcd4-4958-8cc4-74978f6057f2-btn-wrapper {
    text-align: center;
  }


#s-ef68a994-fcd4-4958-8cc4-74978f6057f2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-ef68a994-fcd4-4958-8cc4-74978f6057f2-btn-wrapper {
    text-align: center;
  }


#s-ef68a994-fcd4-4958-8cc4-74978f6057f2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}
  #s-ef68a994-fcd4-4958-8cc4-74978f6057f2-btn-wrapper {
    text-align: center;
  }


#s-ef68a994-fcd4-4958-8cc4-74978f6057f2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}

#s-bbd25ebd-bae8-4b43-82e9-c24d7e1a08ff {
  border-style: solid;
margin-top: 15px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 200%;
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-bbd25ebd-bae8-4b43-82e9-c24d7e1a08ff: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-bbd25ebd-bae8-4b43-82e9-c24d7e1a08ff: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;}@media (min-width: 1200px){#s-bbd25ebd-bae8-4b43-82e9-c24d7e1a08ff {
  display: none;
}
#s-bbd25ebd-bae8-4b43-82e9-c24d7e1a08ff, #wrap-s-bbd25ebd-bae8-4b43-82e9-c24d7e1a08ff { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-bbd25ebd-bae8-4b43-82e9-c24d7e1a08ff {
  display: none;
}
#s-bbd25ebd-bae8-4b43-82e9-c24d7e1a08ff, #wrap-s-bbd25ebd-bae8-4b43-82e9-c24d7e1a08ff { display:none !important; }}@media (max-width: 767px){#s-bbd25ebd-bae8-4b43-82e9-c24d7e1a08ff {
  display: none;
}
#s-bbd25ebd-bae8-4b43-82e9-c24d7e1a08ff, #wrap-s-bbd25ebd-bae8-4b43-82e9-c24d7e1a08ff { display:none !important; }}

  #s-bbd25ebd-bae8-4b43-82e9-c24d7e1a08ff-btn-wrapper {
    text-align: center;
  }


#s-bbd25ebd-bae8-4b43-82e9-c24d7e1a08ff.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-bbd25ebd-bae8-4b43-82e9-c24d7e1a08ff-btn-wrapper {
    text-align: center;
  }


#s-bbd25ebd-bae8-4b43-82e9-c24d7e1a08ff.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-bbd25ebd-bae8-4b43-82e9-c24d7e1a08ff-btn-wrapper {
    text-align: center;
  }


#s-bbd25ebd-bae8-4b43-82e9-c24d7e1a08ff.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-bbd25ebd-bae8-4b43-82e9-c24d7e1a08ff-btn-wrapper {
    text-align: center;
  }


#s-bbd25ebd-bae8-4b43-82e9-c24d7e1a08ff.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-bbd25ebd-bae8-4b43-82e9-c24d7e1a08ff-btn-wrapper {
    text-align: center;
  }


#s-bbd25ebd-bae8-4b43-82e9-c24d7e1a08ff.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}
  #s-bbd25ebd-bae8-4b43-82e9-c24d7e1a08ff-btn-wrapper {
    text-align: center;
  }


#s-bbd25ebd-bae8-4b43-82e9-c24d7e1a08ff.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}

#s-e947557d-e272-481c-9841-9584f9d76bce {
  min-height: 50px;
}








#s-e947557d-e272-481c-9841-9584f9d76bce > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e947557d-e272-481c-9841-9584f9d76bce.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1b5c3d21-ac85-4de9-8543-d622234a070e {
  margin-top: 25px;
}

#s-cd158b47-0db5-439b-83f4-4fe104318716 {
  margin-top: -30px;
}

#s-d26f965e-664b-4464-b9a4-f48fae685578 {
  margin-left: 32px;
margin-right: 32px;
}
@media (min-width: 768px) and (max-width: 991px){#s-d26f965e-664b-4464-b9a4-f48fae685578 {
  display: none;
}
#s-d26f965e-664b-4464-b9a4-f48fae685578, #wrap-s-d26f965e-664b-4464-b9a4-f48fae685578 { display:none !important; }}@media (max-width: 767px){#s-d26f965e-664b-4464-b9a4-f48fae685578 {
  display: none;
}
#s-d26f965e-664b-4464-b9a4-f48fae685578, #wrap-s-d26f965e-664b-4464-b9a4-f48fae685578 { display:none !important; }}
#s-0e0e6489-068c-4464-a32a-da413958980c {
  margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-radius: 2px;
max-width: 70%;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
}
#s-0e0e6489-068c-4464-a32a-da413958980c:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-0e0e6489-068c-4464-a32a-da413958980c:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-0e0e6489-068c-4464-a32a-da413958980c-btn-wrapper {
    text-align: center;
  }


#s-0e0e6489-068c-4464-a32a-da413958980c.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-0e0e6489-068c-4464-a32a-da413958980c-btn-wrapper {
    text-align: center;
  }


#s-0e0e6489-068c-4464-a32a-da413958980c.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-0e0e6489-068c-4464-a32a-da413958980c-btn-wrapper {
    text-align: center;
  }


#s-0e0e6489-068c-4464-a32a-da413958980c.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-0e0e6489-068c-4464-a32a-da413958980c-btn-wrapper {
    text-align: center;
  }


#s-0e0e6489-068c-4464-a32a-da413958980c.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-0e0e6489-068c-4464-a32a-da413958980c-btn-wrapper {
    text-align: center;
  }


#s-0e0e6489-068c-4464-a32a-da413958980c.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-0e0e6489-068c-4464-a32a-da413958980c-btn-wrapper {
    text-align: center;
  }


#s-0e0e6489-068c-4464-a32a-da413958980c.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-488560e0-28ba-429b-92cc-2cf8da81e467 {
  border-style: solid;
margin-top: 15px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 600px;
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-488560e0-28ba-429b-92cc-2cf8da81e467: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-488560e0-28ba-429b-92cc-2cf8da81e467: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;}@media (min-width: 992px) and (max-width: 1199px){#s-488560e0-28ba-429b-92cc-2cf8da81e467 {
  display: none;
}
#s-488560e0-28ba-429b-92cc-2cf8da81e467, #wrap-s-488560e0-28ba-429b-92cc-2cf8da81e467 { display:none !important; }}

  #s-488560e0-28ba-429b-92cc-2cf8da81e467-btn-wrapper {
    text-align: center;
  }


#s-488560e0-28ba-429b-92cc-2cf8da81e467.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-488560e0-28ba-429b-92cc-2cf8da81e467-btn-wrapper {
    text-align: center;
  }


#s-488560e0-28ba-429b-92cc-2cf8da81e467.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-488560e0-28ba-429b-92cc-2cf8da81e467-btn-wrapper {
    text-align: center;
  }


#s-488560e0-28ba-429b-92cc-2cf8da81e467.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-488560e0-28ba-429b-92cc-2cf8da81e467-btn-wrapper {
    text-align: center;
  }


#s-488560e0-28ba-429b-92cc-2cf8da81e467.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-488560e0-28ba-429b-92cc-2cf8da81e467-btn-wrapper {
    text-align: center;
  }


#s-488560e0-28ba-429b-92cc-2cf8da81e467.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}
  #s-488560e0-28ba-429b-92cc-2cf8da81e467-btn-wrapper {
    text-align: center;
  }


#s-488560e0-28ba-429b-92cc-2cf8da81e467.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}

#s-fea8dbf0-303b-4be2-9fa4-86f88484b6bc {
  border-style: solid;
margin-top: 15px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 200%;
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-fea8dbf0-303b-4be2-9fa4-86f88484b6bc: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-fea8dbf0-303b-4be2-9fa4-86f88484b6bc: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;}@media (min-width: 1200px){#s-fea8dbf0-303b-4be2-9fa4-86f88484b6bc {
  display: none;
}
#s-fea8dbf0-303b-4be2-9fa4-86f88484b6bc, #wrap-s-fea8dbf0-303b-4be2-9fa4-86f88484b6bc { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-fea8dbf0-303b-4be2-9fa4-86f88484b6bc {
  display: none;
}
#s-fea8dbf0-303b-4be2-9fa4-86f88484b6bc, #wrap-s-fea8dbf0-303b-4be2-9fa4-86f88484b6bc { display:none !important; }}@media (max-width: 767px){#s-fea8dbf0-303b-4be2-9fa4-86f88484b6bc {
  display: none;
}
#s-fea8dbf0-303b-4be2-9fa4-86f88484b6bc, #wrap-s-fea8dbf0-303b-4be2-9fa4-86f88484b6bc { display:none !important; }}

  #s-fea8dbf0-303b-4be2-9fa4-86f88484b6bc-btn-wrapper {
    text-align: center;
  }


#s-fea8dbf0-303b-4be2-9fa4-86f88484b6bc.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-fea8dbf0-303b-4be2-9fa4-86f88484b6bc-btn-wrapper {
    text-align: center;
  }


#s-fea8dbf0-303b-4be2-9fa4-86f88484b6bc.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-fea8dbf0-303b-4be2-9fa4-86f88484b6bc-btn-wrapper {
    text-align: center;
  }


#s-fea8dbf0-303b-4be2-9fa4-86f88484b6bc.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-fea8dbf0-303b-4be2-9fa4-86f88484b6bc-btn-wrapper {
    text-align: center;
  }


#s-fea8dbf0-303b-4be2-9fa4-86f88484b6bc.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-fea8dbf0-303b-4be2-9fa4-86f88484b6bc-btn-wrapper {
    text-align: center;
  }


#s-fea8dbf0-303b-4be2-9fa4-86f88484b6bc.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}
  #s-fea8dbf0-303b-4be2-9fa4-86f88484b6bc-btn-wrapper {
    text-align: center;
  }


#s-fea8dbf0-303b-4be2-9fa4-86f88484b6bc.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}

.shg-sld-content {
  width: 100%;
  position: relative;
  z-index: 1;
}

.shg-sld-slides {
  word-break: break-word;
  position: relative;
}

.shg-sld-slides-padded {
  padding: 0 35px;
}

.shg-sld-nav-button {
  cursor: pointer;
  position: absolute;
  z-index: 10;
  top: 0;
  width: 35px;
  min-height: 35px;
  height: 100%;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.shg-sld-nav-button > svg {
  height: 100%;
  width: 100%;
}

.shg-sld-nav-button.shg-sld-left {
  left: 0;
}

.shg-sld-nav-button.shg-sld-left-over-content {
  left: 2%;
}

.shg-sld-nav-button.shg-sld-right {
  right: 0;
}

.shg-sld-nav-button.shg-sld-right-over-content {
  right: 2%;
}

.shg-sld-nav-button.shg-sld-disabled {
  cursor: default;
  opacity: 0.2;
}

.shg-sld-item {
  display: none;
}

.shg-sld-item.shg-sld-active {
  display: block;
}

.shg-sld-dots {
  margin-top: 10px;
  text-align: center;
  z-index: 1;
  position: relative;
}

.shg-sld-dots-on-top {
  margin-top: -30px !important;
}

.shg-sld-dot {
  cursor: pointer;
  display: inline-block !important;
  height: 14px;
  width: 14px;
  border-radius: 100%;
  margin-left: 5px;
  opacity: 0.5;
}

.shg-sld-dot:first-child {
  margin-left: 0px;
}

.shg-sld-dot.shg-sld-active {
  opacity: 1;
}

@keyframes shg-sld-fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

#s-2aef3d06-1d1b-4280-b50a-f6fce4f7ba3c {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-2aef3d06-1d1b-4280-b50a-f6fce4f7ba3c {
  display: none;
}
#s-2aef3d06-1d1b-4280-b50a-f6fce4f7ba3c, #wrap-s-2aef3d06-1d1b-4280-b50a-f6fce4f7ba3c { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2aef3d06-1d1b-4280-b50a-f6fce4f7ba3c {
  display: none;
}
#s-2aef3d06-1d1b-4280-b50a-f6fce4f7ba3c, #wrap-s-2aef3d06-1d1b-4280-b50a-f6fce4f7ba3c { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2aef3d06-1d1b-4280-b50a-f6fce4f7ba3c {
  margin-left: 25%;
margin-right: 25%;
}
}@media (max-width: 767px){#s-2aef3d06-1d1b-4280-b50a-f6fce4f7ba3c {
  margin-left: 5%;
margin-right: 5%;
}
}
#s-2aef3d06-1d1b-4280-b50a-f6fce4f7ba3c .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-2aef3d06-1d1b-4280-b50a-f6fce4f7ba3c .shg-sld-nav-button.shg-sld-left,
#s-2aef3d06-1d1b-4280-b50a-f6fce4f7ba3c .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-31e19994-d1af-4128-9b35-d2c1c85bb763 {
  min-height: 50px;
}








#s-31e19994-d1af-4128-9b35-d2c1c85bb763 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-31e19994-d1af-4128-9b35-d2c1c85bb763.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fa87a55e-f7e0-4be1-b1de-91edb9f36ed5 {
  text-align: center;
}







  #s-fa87a55e-f7e0-4be1-b1de-91edb9f36ed5 img.shogun-image {
    

    
    
    
  }


#s-fa87a55e-f7e0-4be1-b1de-91edb9f36ed5 .shogun-image-content {
  
    align-items: center;
  
}

#s-dc86e9dc-a25e-45d8-ba99-d5c9cb99cf44 {
  margin-top: 20px;
margin-bottom: -40px;
}

#s-71e8bea1-4a0a-429b-9e24-b46a35a511b8 {
  margin-bottom: 0px;
}

#s-288d2703-f8b2-4830-84c3-39194d2e5f9a {
  margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-radius: 2px;
max-width: 80%;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
}
#s-288d2703-f8b2-4830-84c3-39194d2e5f9a:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-288d2703-f8b2-4830-84c3-39194d2e5f9a:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-288d2703-f8b2-4830-84c3-39194d2e5f9a-btn-wrapper {
    text-align: center;
  }


#s-288d2703-f8b2-4830-84c3-39194d2e5f9a.shg-btn {
  color: #ffffff;
  font-size: 11px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-288d2703-f8b2-4830-84c3-39194d2e5f9a-btn-wrapper {
    text-align: center;
  }


#s-288d2703-f8b2-4830-84c3-39194d2e5f9a.shg-btn {
  color: #ffffff;
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-288d2703-f8b2-4830-84c3-39194d2e5f9a-btn-wrapper {
    text-align: center;
  }


#s-288d2703-f8b2-4830-84c3-39194d2e5f9a.shg-btn {
  color: #ffffff;
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-288d2703-f8b2-4830-84c3-39194d2e5f9a-btn-wrapper {
    text-align: center;
  }


#s-288d2703-f8b2-4830-84c3-39194d2e5f9a.shg-btn {
  color: #ffffff;
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-288d2703-f8b2-4830-84c3-39194d2e5f9a-btn-wrapper {
    text-align: center;
  }


#s-288d2703-f8b2-4830-84c3-39194d2e5f9a.shg-btn {
  color: #ffffff;
  font-size: 11px;
  
  
  
  display:  block ;
}
}
  #s-288d2703-f8b2-4830-84c3-39194d2e5f9a-btn-wrapper {
    text-align: center;
  }


#s-288d2703-f8b2-4830-84c3-39194d2e5f9a.shg-btn {
  color: #ffffff;
  font-size: 11px;
  
  
  
  display:  block ;
}

#s-202d4400-98a1-4188-b959-dfee9ada335b {
  border-style: solid;
margin-top: 10px;
margin-bottom: 0px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 200%;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-202d4400-98a1-4188-b959-dfee9ada335b: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-202d4400-98a1-4188-b959-dfee9ada335b: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;}@media (max-width: 767px){#s-202d4400-98a1-4188-b959-dfee9ada335b {
  margin-left: auto;
margin-right: auto;
}
}

  #s-202d4400-98a1-4188-b959-dfee9ada335b-btn-wrapper {
    text-align: center;
  }


#s-202d4400-98a1-4188-b959-dfee9ada335b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-202d4400-98a1-4188-b959-dfee9ada335b-btn-wrapper {
    text-align: center;
  }


#s-202d4400-98a1-4188-b959-dfee9ada335b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-202d4400-98a1-4188-b959-dfee9ada335b-btn-wrapper {
    text-align: center;
  }


#s-202d4400-98a1-4188-b959-dfee9ada335b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-202d4400-98a1-4188-b959-dfee9ada335b-btn-wrapper {
    text-align: center;
  }


#s-202d4400-98a1-4188-b959-dfee9ada335b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-202d4400-98a1-4188-b959-dfee9ada335b-btn-wrapper {
    text-align: center;
  }


#s-202d4400-98a1-4188-b959-dfee9ada335b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}
  #s-202d4400-98a1-4188-b959-dfee9ada335b-btn-wrapper {
    text-align: center;
  }


#s-202d4400-98a1-4188-b959-dfee9ada335b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}

#s-fb970774-8cb6-4d6b-b4c2-4f548055f17b {
  min-height: 50px;
}








#s-fb970774-8cb6-4d6b-b4c2-4f548055f17b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fb970774-8cb6-4d6b-b4c2-4f548055f17b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-71ff3204-bcb9-4500-b6d7-d21ada47ea16 {
  text-align: center;
}







  #s-71ff3204-bcb9-4500-b6d7-d21ada47ea16 img.shogun-image {
    

    
    
    
  }


#s-71ff3204-bcb9-4500-b6d7-d21ada47ea16 .shogun-image-content {
  
    align-items: center;
  
}

#s-b61d081f-0de5-4035-835d-c5040e55c08b {
  margin-top: 20px;
margin-bottom: -40px;
}

#s-c683d93b-ac74-418a-a43d-f22865394214 {
  margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-radius: 2px;
max-width: 80%;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
}
#s-c683d93b-ac74-418a-a43d-f22865394214:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c683d93b-ac74-418a-a43d-f22865394214:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-c683d93b-ac74-418a-a43d-f22865394214-btn-wrapper {
    text-align: center;
  }


#s-c683d93b-ac74-418a-a43d-f22865394214.shg-btn {
  color: #ffffff;
  font-size: 11px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-c683d93b-ac74-418a-a43d-f22865394214-btn-wrapper {
    text-align: center;
  }


#s-c683d93b-ac74-418a-a43d-f22865394214.shg-btn {
  color: #ffffff;
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c683d93b-ac74-418a-a43d-f22865394214-btn-wrapper {
    text-align: center;
  }


#s-c683d93b-ac74-418a-a43d-f22865394214.shg-btn {
  color: #ffffff;
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c683d93b-ac74-418a-a43d-f22865394214-btn-wrapper {
    text-align: center;
  }


#s-c683d93b-ac74-418a-a43d-f22865394214.shg-btn {
  color: #ffffff;
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-c683d93b-ac74-418a-a43d-f22865394214-btn-wrapper {
    text-align: center;
  }


#s-c683d93b-ac74-418a-a43d-f22865394214.shg-btn {
  color: #ffffff;
  font-size: 11px;
  
  
  
  display:  block ;
}
}
  #s-c683d93b-ac74-418a-a43d-f22865394214-btn-wrapper {
    text-align: center;
  }


#s-c683d93b-ac74-418a-a43d-f22865394214.shg-btn {
  color: #ffffff;
  font-size: 11px;
  
  
  
  display:  block ;
}

#s-6689ded6-3ad1-453d-87d6-b6ee6501b069 {
  border-style: solid;
margin-top: 10px;
margin-bottom: 0px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 200%;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-6689ded6-3ad1-453d-87d6-b6ee6501b069: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-6689ded6-3ad1-453d-87d6-b6ee6501b069: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;}@media (max-width: 767px){#s-6689ded6-3ad1-453d-87d6-b6ee6501b069 {
  margin-left: auto;
margin-right: auto;
}
}

  #s-6689ded6-3ad1-453d-87d6-b6ee6501b069-btn-wrapper {
    text-align: center;
  }


#s-6689ded6-3ad1-453d-87d6-b6ee6501b069.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-6689ded6-3ad1-453d-87d6-b6ee6501b069-btn-wrapper {
    text-align: center;
  }


#s-6689ded6-3ad1-453d-87d6-b6ee6501b069.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6689ded6-3ad1-453d-87d6-b6ee6501b069-btn-wrapper {
    text-align: center;
  }


#s-6689ded6-3ad1-453d-87d6-b6ee6501b069.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6689ded6-3ad1-453d-87d6-b6ee6501b069-btn-wrapper {
    text-align: center;
  }


#s-6689ded6-3ad1-453d-87d6-b6ee6501b069.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-6689ded6-3ad1-453d-87d6-b6ee6501b069-btn-wrapper {
    text-align: center;
  }


#s-6689ded6-3ad1-453d-87d6-b6ee6501b069.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}
  #s-6689ded6-3ad1-453d-87d6-b6ee6501b069-btn-wrapper {
    text-align: center;
  }


#s-6689ded6-3ad1-453d-87d6-b6ee6501b069.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}

#s-63752805-c5f8-4b81-b250-659eb5d2174a {
  min-height: 50px;
}








#s-63752805-c5f8-4b81-b250-659eb5d2174a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-63752805-c5f8-4b81-b250-659eb5d2174a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-94409b0e-c26a-4bd9-ada2-9f5c2585f6be {
  text-align: center;
}







  #s-94409b0e-c26a-4bd9-ada2-9f5c2585f6be img.shogun-image {
    

    
    
    
  }


#s-94409b0e-c26a-4bd9-ada2-9f5c2585f6be .shogun-image-content {
  
    align-items: center;
  
}

#s-3fce8240-a055-439c-acf1-870cec1959c9 {
  margin-top: 20px;
margin-bottom: -40px;
}

#s-8dc7c1e4-f20e-4e02-aa73-f5abf81248b8 {
  margin-bottom: 0px;
}

#s-8d1b3d85-77ba-4f34-8de7-d2b18782f641 {
  margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-radius: 2px;
max-width: 80%;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
}
#s-8d1b3d85-77ba-4f34-8de7-d2b18782f641:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-8d1b3d85-77ba-4f34-8de7-d2b18782f641:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-8d1b3d85-77ba-4f34-8de7-d2b18782f641-btn-wrapper {
    text-align: center;
  }


#s-8d1b3d85-77ba-4f34-8de7-d2b18782f641.shg-btn {
  color: #ffffff;
  font-size: 11px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-8d1b3d85-77ba-4f34-8de7-d2b18782f641-btn-wrapper {
    text-align: center;
  }


#s-8d1b3d85-77ba-4f34-8de7-d2b18782f641.shg-btn {
  color: #ffffff;
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-8d1b3d85-77ba-4f34-8de7-d2b18782f641-btn-wrapper {
    text-align: center;
  }


#s-8d1b3d85-77ba-4f34-8de7-d2b18782f641.shg-btn {
  color: #ffffff;
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-8d1b3d85-77ba-4f34-8de7-d2b18782f641-btn-wrapper {
    text-align: center;
  }


#s-8d1b3d85-77ba-4f34-8de7-d2b18782f641.shg-btn {
  color: #ffffff;
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-8d1b3d85-77ba-4f34-8de7-d2b18782f641-btn-wrapper {
    text-align: center;
  }


#s-8d1b3d85-77ba-4f34-8de7-d2b18782f641.shg-btn {
  color: #ffffff;
  font-size: 11px;
  
  
  
  display:  block ;
}
}
  #s-8d1b3d85-77ba-4f34-8de7-d2b18782f641-btn-wrapper {
    text-align: center;
  }


#s-8d1b3d85-77ba-4f34-8de7-d2b18782f641.shg-btn {
  color: #ffffff;
  font-size: 11px;
  
  
  
  display:  block ;
}

#s-b35442f2-8513-490c-9946-b55433fd1b12 {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-right: auto;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 300%;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-b35442f2-8513-490c-9946-b55433fd1b12: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-b35442f2-8513-490c-9946-b55433fd1b12: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-b35442f2-8513-490c-9946-b55433fd1b12-btn-wrapper {
    text-align: center;
  }


#s-b35442f2-8513-490c-9946-b55433fd1b12.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-b35442f2-8513-490c-9946-b55433fd1b12-btn-wrapper {
    text-align: center;
  }


#s-b35442f2-8513-490c-9946-b55433fd1b12.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b35442f2-8513-490c-9946-b55433fd1b12-btn-wrapper {
    text-align: center;
  }


#s-b35442f2-8513-490c-9946-b55433fd1b12.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b35442f2-8513-490c-9946-b55433fd1b12-btn-wrapper {
    text-align: center;
  }


#s-b35442f2-8513-490c-9946-b55433fd1b12.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-b35442f2-8513-490c-9946-b55433fd1b12-btn-wrapper {
    text-align: center;
  }


#s-b35442f2-8513-490c-9946-b55433fd1b12.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}
  #s-b35442f2-8513-490c-9946-b55433fd1b12-btn-wrapper {
    text-align: center;
  }


#s-b35442f2-8513-490c-9946-b55433fd1b12.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}

#s-8c770b33-eac0-4692-b6a2-330b7bc9befa {
  min-height: 50px;
}








#s-8c770b33-eac0-4692-b6a2-330b7bc9befa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8c770b33-eac0-4692-b6a2-330b7bc9befa.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1c52a740-aa2a-4e35-a864-1fe1b3915b6e {
  text-align: center;
}







  #s-1c52a740-aa2a-4e35-a864-1fe1b3915b6e img.shogun-image {
    

    
    
    
  }


#s-1c52a740-aa2a-4e35-a864-1fe1b3915b6e .shogun-image-content {
  
    align-items: center;
  
}

#s-d09fa38a-4864-4d7a-a200-0686143b0066 {
  margin-top: 20px;
margin-bottom: -40px;
}

#s-0555e177-7e71-49f6-b26f-f22168ceca40 {
  margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-radius: 2px;
max-width: 80%;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
}
#s-0555e177-7e71-49f6-b26f-f22168ceca40:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-0555e177-7e71-49f6-b26f-f22168ceca40:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-0555e177-7e71-49f6-b26f-f22168ceca40-btn-wrapper {
    text-align: center;
  }


#s-0555e177-7e71-49f6-b26f-f22168ceca40.shg-btn {
  color: #ffffff;
  font-size: 11px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-0555e177-7e71-49f6-b26f-f22168ceca40-btn-wrapper {
    text-align: center;
  }


#s-0555e177-7e71-49f6-b26f-f22168ceca40.shg-btn {
  color: #ffffff;
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-0555e177-7e71-49f6-b26f-f22168ceca40-btn-wrapper {
    text-align: center;
  }


#s-0555e177-7e71-49f6-b26f-f22168ceca40.shg-btn {
  color: #ffffff;
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-0555e177-7e71-49f6-b26f-f22168ceca40-btn-wrapper {
    text-align: center;
  }


#s-0555e177-7e71-49f6-b26f-f22168ceca40.shg-btn {
  color: #ffffff;
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-0555e177-7e71-49f6-b26f-f22168ceca40-btn-wrapper {
    text-align: center;
  }


#s-0555e177-7e71-49f6-b26f-f22168ceca40.shg-btn {
  color: #ffffff;
  font-size: 11px;
  
  
  
  display:  block ;
}
}
  #s-0555e177-7e71-49f6-b26f-f22168ceca40-btn-wrapper {
    text-align: center;
  }


#s-0555e177-7e71-49f6-b26f-f22168ceca40.shg-btn {
  color: #ffffff;
  font-size: 11px;
  
  
  
  display:  block ;
}

#s-979260bd-41f1-4a1b-ab68-199fa198b975 {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-right: auto;
padding-left: 20%;
padding-right: 20%;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 300%;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-979260bd-41f1-4a1b-ab68-199fa198b975: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-979260bd-41f1-4a1b-ab68-199fa198b975: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-979260bd-41f1-4a1b-ab68-199fa198b975-btn-wrapper {
    text-align: center;
  }


#s-979260bd-41f1-4a1b-ab68-199fa198b975.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-979260bd-41f1-4a1b-ab68-199fa198b975-btn-wrapper {
    text-align: center;
  }


#s-979260bd-41f1-4a1b-ab68-199fa198b975.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-979260bd-41f1-4a1b-ab68-199fa198b975-btn-wrapper {
    text-align: center;
  }


#s-979260bd-41f1-4a1b-ab68-199fa198b975.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-979260bd-41f1-4a1b-ab68-199fa198b975-btn-wrapper {
    text-align: center;
  }


#s-979260bd-41f1-4a1b-ab68-199fa198b975.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-979260bd-41f1-4a1b-ab68-199fa198b975-btn-wrapper {
    text-align: center;
  }


#s-979260bd-41f1-4a1b-ab68-199fa198b975.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}
}
  #s-979260bd-41f1-4a1b-ab68-199fa198b975-btn-wrapper {
    text-align: center;
  }


#s-979260bd-41f1-4a1b-ab68-199fa198b975.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 11px;
  
  
  
  display:  block ;
}

#s-f164282f-ad72-449e-8cd7-185dd7850a28 {
  margin-left: 10%;
margin-right: 10%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-f164282f-ad72-449e-8cd7-185dd7850a28 {
  margin-left: 5%;
margin-right: 5%;
}
}@media (max-width: 767px){#s-f164282f-ad72-449e-8cd7-185dd7850a28 {
  display: none;
}
#s-f164282f-ad72-449e-8cd7-185dd7850a28, #wrap-s-f164282f-ad72-449e-8cd7-185dd7850a28 { display:none !important; }}







#s-f164282f-ad72-449e-8cd7-185dd7850a28 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f164282f-ad72-449e-8cd7-185dd7850a28.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-76918183-506a-4bd9-b01a-1a7bc1a7d7be {
  margin-top: 50px;
margin-bottom: 32px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-76918183-506a-4bd9-b01a-1a7bc1a7d7be {
  margin-top: 70px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-76918183-506a-4bd9-b01a-1a7bc1a7d7be {
  margin-top: 70px;
}
}
#s-76918183-506a-4bd9-b01a-1a7bc1a7d7be .shogun-heading-component h2 {
  color: rgba(51, 51, 51, 1);
  font-weight:   ;
  
  font-style:   ;
  font-size: 25px;
  line-height: ;
  letter-spacing: 4px;
  
}


@media (min-width: 768px) and (max-width: 991px){#s-76918183-506a-4bd9-b01a-1a7bc1a7d7be .shogun-heading-component h2 {
  color: rgba(51, 51, 51, 1);
  font-weight:   ;
  
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: 2px;
  
}


}@media (max-width: 767px){#s-76918183-506a-4bd9-b01a-1a7bc1a7d7be .shogun-heading-component h2 {
  color: rgba(51, 51, 51, 1);
  font-weight:   ;
  
  font-style:   ;
  font-size: 22px;
  line-height: ;
  letter-spacing: 2px;
  
}


}
#s-a2267728-51af-4f79-8e6a-b174972d9e96 {
  margin-top: 0px;
margin-bottom: 32px;
}
@media (min-width: 768px) and (max-width: 991px){#s-a2267728-51af-4f79-8e6a-b174972d9e96 {
  margin-left: 2%;
margin-right: 2%;
}
}@media (max-width: 767px){#s-a2267728-51af-4f79-8e6a-b174972d9e96 {
  
}
}
@media (min-width: 0px) {
[id="s-a2267728-51af-4f79-8e6a-b174972d9e96"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-a2267728-51af-4f79-8e6a-b174972d9e96"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-a2267728-51af-4f79-8e6a-b174972d9e96"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-a2267728-51af-4f79-8e6a-b174972d9e96"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

#s-a071f3fc-5b1c-45a1-ba0e-6cf67520c886 {
  text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-a071f3fc-5b1c-45a1-ba0e-6cf67520c886 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-a071f3fc-5b1c-45a1-ba0e-6cf67520c886 {
  
}
}@media (max-width: 767px){#s-a071f3fc-5b1c-45a1-ba0e-6cf67520c886 {
  
}
}






  #s-a071f3fc-5b1c-45a1-ba0e-6cf67520c886 img.shogun-image {
    

    
    
    
  }


#s-a071f3fc-5b1c-45a1-ba0e-6cf67520c886 .shogun-image-content {
  
    align-items: center;
  
}

#s-b8a926e3-413d-46d0-ab0d-3c19e7514d43 {
  margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b8a926e3-413d-46d0-ab0d-3c19e7514d43 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
  
}


@media (min-width: 768px) and (max-width: 991px){#s-b8a926e3-413d-46d0-ab0d-3c19e7514d43 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: 2px;
  
}


}@media (max-width: 767px){#s-b8a926e3-413d-46d0-ab0d-3c19e7514d43 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 12px;
  line-height: ;
  letter-spacing: 2px;
  
}


}
#s-758e335e-1f0d-4ef9-8198-060f473cdb9a {
  text-align: center;
}
@media (min-width: 1200px){#s-758e335e-1f0d-4ef9-8198-060f473cdb9a {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-758e335e-1f0d-4ef9-8198-060f473cdb9a {
  
}
}@media (max-width: 767px){#s-758e335e-1f0d-4ef9-8198-060f473cdb9a {
  
}
}






  #s-758e335e-1f0d-4ef9-8198-060f473cdb9a img.shogun-image {
    

    
    
    
  }


#s-758e335e-1f0d-4ef9-8198-060f473cdb9a .shogun-image-content {
  
    align-items: center;
  
}

#s-0463dd66-ef4d-4af6-9a3a-2cc22d49e452 {
  margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0463dd66-ef4d-4af6-9a3a-2cc22d49e452 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
  
}


@media (min-width: 768px) and (max-width: 991px){#s-0463dd66-ef4d-4af6-9a3a-2cc22d49e452 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: 2px;
  
}


}@media (max-width: 767px){#s-0463dd66-ef4d-4af6-9a3a-2cc22d49e452 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 12px;
  line-height: ;
  letter-spacing: 2px;
  
}


}
#s-8feaae9b-b03f-4111-b44e-c4ce4402c8de {
  text-align: center;
}
@media (min-width: 1200px){#s-8feaae9b-b03f-4111-b44e-c4ce4402c8de {
  
}
}@media (max-width: 767px){#s-8feaae9b-b03f-4111-b44e-c4ce4402c8de {
  
}
}






  #s-8feaae9b-b03f-4111-b44e-c4ce4402c8de img.shogun-image {
    

    
    
    
  }


#s-8feaae9b-b03f-4111-b44e-c4ce4402c8de .shogun-image-content {
  
    align-items: center;
  
}

#s-c2255c0f-4c60-4c69-9543-4aac52a68d48 {
  margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c2255c0f-4c60-4c69-9543-4aac52a68d48 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
  
}


@media (min-width: 768px) and (max-width: 991px){#s-c2255c0f-4c60-4c69-9543-4aac52a68d48 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: 2px;
  
}


}@media (max-width: 767px){#s-c2255c0f-4c60-4c69-9543-4aac52a68d48 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 12px;
  line-height: ;
  letter-spacing: 2px;
  
}


}
#s-c1aeeab3-0f65-4b0e-b1a4-7fa530d556cb {
  margin-bottom: 32px;
}
@media (min-width: 768px) and (max-width: 991px){#s-c1aeeab3-0f65-4b0e-b1a4-7fa530d556cb {
  margin-left: 2%;
margin-right: 2%;
}
}@media (max-width: 767px){#s-c1aeeab3-0f65-4b0e-b1a4-7fa530d556cb {
  
}
}
@media (min-width: 0px) {
[id="s-c1aeeab3-0f65-4b0e-b1a4-7fa530d556cb"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-c1aeeab3-0f65-4b0e-b1a4-7fa530d556cb"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-c1aeeab3-0f65-4b0e-b1a4-7fa530d556cb"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-c1aeeab3-0f65-4b0e-b1a4-7fa530d556cb"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

#s-17c42925-fe11-4a80-bdf7-38ddc2c0594b {
  text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-17c42925-fe11-4a80-bdf7-38ddc2c0594b {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-17c42925-fe11-4a80-bdf7-38ddc2c0594b {
  
}
}@media (max-width: 767px){#s-17c42925-fe11-4a80-bdf7-38ddc2c0594b {
  
}
}






  #s-17c42925-fe11-4a80-bdf7-38ddc2c0594b img.shogun-image {
    

    
    
    
  }


#s-17c42925-fe11-4a80-bdf7-38ddc2c0594b .shogun-image-content {
  
    align-items: center;
  
}

#s-682e3992-d47a-4f11-9be2-c67733f6b162 {
  margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-682e3992-d47a-4f11-9be2-c67733f6b162 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
  
}


@media (min-width: 768px) and (max-width: 991px){#s-682e3992-d47a-4f11-9be2-c67733f6b162 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: 2px;
  
}


}@media (max-width: 767px){#s-682e3992-d47a-4f11-9be2-c67733f6b162 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 12px;
  line-height: ;
  letter-spacing: 2px;
  
}


}
#s-9697bd2b-4f83-46ca-bcf9-b2409f7baa81 {
  text-align: center;
}
@media (min-width: 1200px){#s-9697bd2b-4f83-46ca-bcf9-b2409f7baa81 {
  
}
}@media (max-width: 767px){#s-9697bd2b-4f83-46ca-bcf9-b2409f7baa81 {
  
}
}






  #s-9697bd2b-4f83-46ca-bcf9-b2409f7baa81 img.shogun-image {
    

    
    
    
  }


#s-9697bd2b-4f83-46ca-bcf9-b2409f7baa81 .shogun-image-content {
  
    align-items: center;
  
}

#s-89a09b75-3653-497f-86b4-86f1ceece74c {
  margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-89a09b75-3653-497f-86b4-86f1ceece74c .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
  
}


@media (min-width: 768px) and (max-width: 991px){#s-89a09b75-3653-497f-86b4-86f1ceece74c .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: 2px;
  
}


}@media (max-width: 767px){#s-89a09b75-3653-497f-86b4-86f1ceece74c .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 12px;
  line-height: ;
  letter-spacing: 2px;
  
}


}
#s-d34660cd-96c0-4281-a694-b31be43af12c {
  text-align: center;
}
@media (min-width: 1200px){#s-d34660cd-96c0-4281-a694-b31be43af12c {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-d34660cd-96c0-4281-a694-b31be43af12c {
  
}
}@media (max-width: 767px){#s-d34660cd-96c0-4281-a694-b31be43af12c {
  
}
}






  #s-d34660cd-96c0-4281-a694-b31be43af12c img.shogun-image {
    

    
    
    
  }


#s-d34660cd-96c0-4281-a694-b31be43af12c .shogun-image-content {
  
    align-items: center;
  
}

#s-db77a6bc-edc0-48b9-83ee-07f17900e71d {
  margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-db77a6bc-edc0-48b9-83ee-07f17900e71d .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
  
}


@media (min-width: 768px) and (max-width: 991px){#s-db77a6bc-edc0-48b9-83ee-07f17900e71d .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: 2px;
  
}


}@media (max-width: 767px){#s-db77a6bc-edc0-48b9-83ee-07f17900e71d .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 12px;
  line-height: ;
  letter-spacing: 2px;
  
}


}
#s-7910fd91-5e0c-473d-980b-2a762ad0ab1e {
  margin-top: 0px;
margin-bottom: 32px;
}
@media (min-width: 768px) and (max-width: 991px){#s-7910fd91-5e0c-473d-980b-2a762ad0ab1e {
  margin-left: 2%;
margin-right: 2%;
}
}@media (max-width: 767px){#s-7910fd91-5e0c-473d-980b-2a762ad0ab1e {
  
}
}
@media (min-width: 0px) {
[id="s-7910fd91-5e0c-473d-980b-2a762ad0ab1e"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-7910fd91-5e0c-473d-980b-2a762ad0ab1e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-7910fd91-5e0c-473d-980b-2a762ad0ab1e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-7910fd91-5e0c-473d-980b-2a762ad0ab1e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

#s-3664850e-8496-499d-a14f-4c31b40aa550 {
  text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-3664850e-8496-499d-a14f-4c31b40aa550 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-3664850e-8496-499d-a14f-4c31b40aa550 {
  
}
}@media (max-width: 767px){#s-3664850e-8496-499d-a14f-4c31b40aa550 {
  
}
}






  #s-3664850e-8496-499d-a14f-4c31b40aa550 img.shogun-image {
    

    
    
    
  }


#s-3664850e-8496-499d-a14f-4c31b40aa550 .shogun-image-content {
  
    align-items: center;
  
}

#s-539dbd3d-df51-4a1f-b269-2d34c8933fb6 {
  margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-539dbd3d-df51-4a1f-b269-2d34c8933fb6 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
  
}


@media (min-width: 768px) and (max-width: 991px){#s-539dbd3d-df51-4a1f-b269-2d34c8933fb6 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: 2px;
  
}


}@media (max-width: 767px){#s-539dbd3d-df51-4a1f-b269-2d34c8933fb6 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 12px;
  line-height: ;
  letter-spacing: 2px;
  
}


}
#s-5ba4f1df-e69a-4651-8cd4-77b91daf7e0c {
  text-align: center;
}
@media (min-width: 1200px){#s-5ba4f1df-e69a-4651-8cd4-77b91daf7e0c {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-5ba4f1df-e69a-4651-8cd4-77b91daf7e0c {
  
}
}@media (max-width: 767px){#s-5ba4f1df-e69a-4651-8cd4-77b91daf7e0c {
  
}
}






  #s-5ba4f1df-e69a-4651-8cd4-77b91daf7e0c img.shogun-image {
    

    
    
    
  }


#s-5ba4f1df-e69a-4651-8cd4-77b91daf7e0c .shogun-image-content {
  
    align-items: center;
  
}

#s-f291f2b9-d5eb-4684-9d8c-8b25c0d3c8b0 {
  margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f291f2b9-d5eb-4684-9d8c-8b25c0d3c8b0 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
  
}


@media (min-width: 768px) and (max-width: 991px){#s-f291f2b9-d5eb-4684-9d8c-8b25c0d3c8b0 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: 2px;
  
}


}@media (max-width: 767px){#s-f291f2b9-d5eb-4684-9d8c-8b25c0d3c8b0 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 12px;
  line-height: ;
  letter-spacing: 2px;
  
}


}
#s-60083fec-ac89-46b0-a789-c646c56a28b5 {
  text-align: center;
}
@media (min-width: 1200px){#s-60083fec-ac89-46b0-a789-c646c56a28b5 {
  
}
}@media (max-width: 767px){#s-60083fec-ac89-46b0-a789-c646c56a28b5 {
  
}
}






  #s-60083fec-ac89-46b0-a789-c646c56a28b5 img.shogun-image {
    

    
    
    
  }


#s-60083fec-ac89-46b0-a789-c646c56a28b5 .shogun-image-content {
  
    align-items: center;
  
}

#s-3b482a31-7ab0-436c-8cee-198ea531006f {
  margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3b482a31-7ab0-436c-8cee-198ea531006f .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
  
}


@media (min-width: 768px) and (max-width: 991px){#s-3b482a31-7ab0-436c-8cee-198ea531006f .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: 2px;
  
}


}@media (max-width: 767px){#s-3b482a31-7ab0-436c-8cee-198ea531006f .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 12px;
  line-height: ;
  letter-spacing: 2px;
  
}


}
#s-82a04d4b-2332-4c40-8d36-c0808b660a91 {
  margin-top: 25px;
margin-left: 5%;
margin-right: 5%;
min-height: 50px;
}
@media (min-width: 1200px){#s-82a04d4b-2332-4c40-8d36-c0808b660a91 {
  display: none;
}
#s-82a04d4b-2332-4c40-8d36-c0808b660a91, #wrap-s-82a04d4b-2332-4c40-8d36-c0808b660a91 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-82a04d4b-2332-4c40-8d36-c0808b660a91 {
  display: none;
}
#s-82a04d4b-2332-4c40-8d36-c0808b660a91, #wrap-s-82a04d4b-2332-4c40-8d36-c0808b660a91 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-82a04d4b-2332-4c40-8d36-c0808b660a91 {
  display: none;
}
#s-82a04d4b-2332-4c40-8d36-c0808b660a91, #wrap-s-82a04d4b-2332-4c40-8d36-c0808b660a91 { display:none !important; }}







#s-82a04d4b-2332-4c40-8d36-c0808b660a91 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-82a04d4b-2332-4c40-8d36-c0808b660a91.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-35570679-bf7f-4cc2-a1ea-26f863530668 {
  margin-bottom: 15px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-35570679-bf7f-4cc2-a1ea-26f863530668 .shogun-heading-component h2 {
  color: rgba(51, 51, 51, 1);
  font-weight:   ;
  
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: 2px;
  
}



#s-037b2156-8eab-426c-be38-60b417d56724 {
  margin-top: 0px;
margin-bottom: 32px;
}
@media (min-width: 768px) and (max-width: 991px){#s-037b2156-8eab-426c-be38-60b417d56724 {
  margin-left: 2%;
margin-right: 2%;
}
}@media (max-width: 767px){#s-037b2156-8eab-426c-be38-60b417d56724 {
  
}
}
@media (min-width: 0px) {
[id="s-037b2156-8eab-426c-be38-60b417d56724"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-037b2156-8eab-426c-be38-60b417d56724"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-037b2156-8eab-426c-be38-60b417d56724"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-037b2156-8eab-426c-be38-60b417d56724"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-77422912-4a29-45fb-a5d3-41301e8ebd64 {
  text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-77422912-4a29-45fb-a5d3-41301e8ebd64 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-77422912-4a29-45fb-a5d3-41301e8ebd64 {
  
}
}@media (max-width: 767px){#s-77422912-4a29-45fb-a5d3-41301e8ebd64 {
  
}
}






  #s-77422912-4a29-45fb-a5d3-41301e8ebd64 img.shogun-image {
    

    
    
    
  }


#s-77422912-4a29-45fb-a5d3-41301e8ebd64 .shogun-image-content {
  
    align-items: center;
  
}

#s-783e35d6-149a-4279-b08d-a1a3fc55a6da {
  margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-783e35d6-149a-4279-b08d-a1a3fc55a6da .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
  
}


@media (min-width: 768px) and (max-width: 991px){#s-783e35d6-149a-4279-b08d-a1a3fc55a6da .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: 2px;
  
}


}@media (max-width: 767px){#s-783e35d6-149a-4279-b08d-a1a3fc55a6da .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 12px;
  line-height: ;
  letter-spacing: 2px;
  
}


}
#s-0080fdea-a779-4951-b02e-5373ebf35a5f {
  text-align: center;
}
@media (min-width: 1200px){#s-0080fdea-a779-4951-b02e-5373ebf35a5f {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0080fdea-a779-4951-b02e-5373ebf35a5f {
  
}
}@media (max-width: 767px){#s-0080fdea-a779-4951-b02e-5373ebf35a5f {
  
}
}






  #s-0080fdea-a779-4951-b02e-5373ebf35a5f img.shogun-image {
    

    
    
    
  }


#s-0080fdea-a779-4951-b02e-5373ebf35a5f .shogun-image-content {
  
    align-items: center;
  
}

#s-b2f402db-1d08-4c8e-b37a-77ff9ff69434 {
  margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b2f402db-1d08-4c8e-b37a-77ff9ff69434 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
  
}


@media (min-width: 768px) and (max-width: 991px){#s-b2f402db-1d08-4c8e-b37a-77ff9ff69434 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: 2px;
  
}


}@media (max-width: 767px){#s-b2f402db-1d08-4c8e-b37a-77ff9ff69434 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 12px;
  line-height: ;
  letter-spacing: 2px;
  
}


}
#s-9cdd9c36-efba-4a4e-acfd-8c18066f1403 {
  margin-top: 0px;
margin-bottom: 32px;
}
@media (min-width: 768px) and (max-width: 991px){#s-9cdd9c36-efba-4a4e-acfd-8c18066f1403 {
  margin-left: 2%;
margin-right: 2%;
}
}@media (max-width: 767px){#s-9cdd9c36-efba-4a4e-acfd-8c18066f1403 {
  
}
}
@media (min-width: 0px) {
[id="s-9cdd9c36-efba-4a4e-acfd-8c18066f1403"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-9cdd9c36-efba-4a4e-acfd-8c18066f1403"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-9cdd9c36-efba-4a4e-acfd-8c18066f1403"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-9cdd9c36-efba-4a4e-acfd-8c18066f1403"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-e1c3df16-e122-49ac-9f16-6b82e0a07af6 {
  text-align: center;
}
@media (min-width: 1200px){#s-e1c3df16-e122-49ac-9f16-6b82e0a07af6 {
  
}
}@media (max-width: 767px){#s-e1c3df16-e122-49ac-9f16-6b82e0a07af6 {
  
}
}






  #s-e1c3df16-e122-49ac-9f16-6b82e0a07af6 img.shogun-image {
    

    
    
    
  }


#s-e1c3df16-e122-49ac-9f16-6b82e0a07af6 .shogun-image-content {
  
    align-items: center;
  
}

#s-eb926afa-7dd5-4a61-816d-423dd42d157a {
  margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-eb926afa-7dd5-4a61-816d-423dd42d157a .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
  
}


@media (min-width: 768px) and (max-width: 991px){#s-eb926afa-7dd5-4a61-816d-423dd42d157a .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: 2px;
  
}


}@media (max-width: 767px){#s-eb926afa-7dd5-4a61-816d-423dd42d157a .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 12px;
  line-height: ;
  letter-spacing: 2px;
  
}


}
#s-c8336a91-1e70-4731-9724-eae099bb21b4 {
  text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-c8336a91-1e70-4731-9724-eae099bb21b4 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-c8336a91-1e70-4731-9724-eae099bb21b4 {
  
}
}@media (max-width: 767px){#s-c8336a91-1e70-4731-9724-eae099bb21b4 {
  
}
}






  #s-c8336a91-1e70-4731-9724-eae099bb21b4 img.shogun-image {
    

    
    
    
  }


#s-c8336a91-1e70-4731-9724-eae099bb21b4 .shogun-image-content {
  
    align-items: center;
  
}

#s-606db9f7-4c42-4057-b00f-e0cacaeb4c7b {
  margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-606db9f7-4c42-4057-b00f-e0cacaeb4c7b .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
  
}


@media (min-width: 768px) and (max-width: 991px){#s-606db9f7-4c42-4057-b00f-e0cacaeb4c7b .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: 2px;
  
}


}@media (max-width: 767px){#s-606db9f7-4c42-4057-b00f-e0cacaeb4c7b .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 12px;
  line-height: ;
  letter-spacing: 2px;
  
}


}
#s-0093603a-9746-448d-8407-5f292a58dd8a {
  margin-bottom: 32px;
}
@media (min-width: 768px) and (max-width: 991px){#s-0093603a-9746-448d-8407-5f292a58dd8a {
  margin-left: 2%;
margin-right: 2%;
}
}@media (max-width: 767px){#s-0093603a-9746-448d-8407-5f292a58dd8a {
  
}
}
@media (min-width: 0px) {
[id="s-0093603a-9746-448d-8407-5f292a58dd8a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-0093603a-9746-448d-8407-5f292a58dd8a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-0093603a-9746-448d-8407-5f292a58dd8a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-0093603a-9746-448d-8407-5f292a58dd8a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-05cbe67b-1e5e-437e-a831-38e973968be4 {
  text-align: center;
}
@media (min-width: 1200px){#s-05cbe67b-1e5e-437e-a831-38e973968be4 {
  
}
}@media (max-width: 767px){#s-05cbe67b-1e5e-437e-a831-38e973968be4 {
  
}
}






  #s-05cbe67b-1e5e-437e-a831-38e973968be4 img.shogun-image {
    

    
    
    
  }


#s-05cbe67b-1e5e-437e-a831-38e973968be4 .shogun-image-content {
  
    align-items: center;
  
}

#s-24cf1cce-527f-42bb-a47f-8a78a540e2a3 {
  margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-24cf1cce-527f-42bb-a47f-8a78a540e2a3 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
  
}


@media (min-width: 768px) and (max-width: 991px){#s-24cf1cce-527f-42bb-a47f-8a78a540e2a3 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: 2px;
  
}


}@media (max-width: 767px){#s-24cf1cce-527f-42bb-a47f-8a78a540e2a3 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 12px;
  line-height: ;
  letter-spacing: 2px;
  
}


}
#s-9ae4116c-f961-4508-b47b-2d093c89ed7f {
  text-align: center;
}
@media (min-width: 1200px){#s-9ae4116c-f961-4508-b47b-2d093c89ed7f {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-9ae4116c-f961-4508-b47b-2d093c89ed7f {
  
}
}@media (max-width: 767px){#s-9ae4116c-f961-4508-b47b-2d093c89ed7f {
  
}
}






  #s-9ae4116c-f961-4508-b47b-2d093c89ed7f img.shogun-image {
    

    
    
    
  }


#s-9ae4116c-f961-4508-b47b-2d093c89ed7f .shogun-image-content {
  
    align-items: center;
  
}

#s-89078a03-72e0-4ca7-8f24-38ce9b69a658 {
  margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-89078a03-72e0-4ca7-8f24-38ce9b69a658 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
  
}


@media (min-width: 768px) and (max-width: 991px){#s-89078a03-72e0-4ca7-8f24-38ce9b69a658 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: 2px;
  
}


}@media (max-width: 767px){#s-89078a03-72e0-4ca7-8f24-38ce9b69a658 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 12px;
  line-height: ;
  letter-spacing: 2px;
  
}


}
#s-7e2d0b71-2df5-48c8-8618-98cb02da31c8 {
  margin-bottom: 32px;
}
@media (min-width: 768px) and (max-width: 991px){#s-7e2d0b71-2df5-48c8-8618-98cb02da31c8 {
  margin-left: 2%;
margin-right: 2%;
}
}@media (max-width: 767px){#s-7e2d0b71-2df5-48c8-8618-98cb02da31c8 {
  
}
}
@media (min-width: 0px) {
[id="s-7e2d0b71-2df5-48c8-8618-98cb02da31c8"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-7e2d0b71-2df5-48c8-8618-98cb02da31c8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-7e2d0b71-2df5-48c8-8618-98cb02da31c8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-7e2d0b71-2df5-48c8-8618-98cb02da31c8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-64803e1b-00e8-48b2-b204-59ce3d68cab1 {
  text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-64803e1b-00e8-48b2-b204-59ce3d68cab1 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-64803e1b-00e8-48b2-b204-59ce3d68cab1 {
  
}
}@media (max-width: 767px){#s-64803e1b-00e8-48b2-b204-59ce3d68cab1 {
  
}
}






  #s-64803e1b-00e8-48b2-b204-59ce3d68cab1 img.shogun-image {
    

    
    
    
  }


#s-64803e1b-00e8-48b2-b204-59ce3d68cab1 .shogun-image-content {
  
    align-items: center;
  
}

#s-1c83cbca-0134-4d0e-bf01-51619d6eca7f {
  margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1c83cbca-0134-4d0e-bf01-51619d6eca7f .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
  
}


@media (min-width: 768px) and (max-width: 991px){#s-1c83cbca-0134-4d0e-bf01-51619d6eca7f .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: 2px;
  
}


}@media (max-width: 767px){#s-1c83cbca-0134-4d0e-bf01-51619d6eca7f .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 12px;
  line-height: ;
  letter-spacing: 2px;
  
}


}
#s-dfb433fb-03ff-4d65-9637-5466cf941d55 {
  text-align: center;
}
@media (min-width: 1200px){#s-dfb433fb-03ff-4d65-9637-5466cf941d55 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-dfb433fb-03ff-4d65-9637-5466cf941d55 {
  
}
}@media (max-width: 767px){#s-dfb433fb-03ff-4d65-9637-5466cf941d55 {
  
}
}






  #s-dfb433fb-03ff-4d65-9637-5466cf941d55 img.shogun-image {
    

    
    
    
  }


#s-dfb433fb-03ff-4d65-9637-5466cf941d55 .shogun-image-content {
  
    align-items: center;
  
}

#s-ba7b8a68-e021-4e48-8879-25faf3c38819 {
  margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ba7b8a68-e021-4e48-8879-25faf3c38819 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
  
}


@media (min-width: 768px) and (max-width: 991px){#s-ba7b8a68-e021-4e48-8879-25faf3c38819 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: 2px;
  
}


}@media (max-width: 767px){#s-ba7b8a68-e021-4e48-8879-25faf3c38819 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 12px;
  line-height: ;
  letter-spacing: 2px;
  
}


}
#s-f59cc417-c59a-4ac0-adf8-bc417cd73707 {
  margin-top: 0px;
margin-bottom: 32px;
}
@media (min-width: 768px) and (max-width: 991px){#s-f59cc417-c59a-4ac0-adf8-bc417cd73707 {
  margin-left: 2%;
margin-right: 2%;
}
}@media (max-width: 767px){#s-f59cc417-c59a-4ac0-adf8-bc417cd73707 {
  
}
}
@media (min-width: 0px) {
[id="s-f59cc417-c59a-4ac0-adf8-bc417cd73707"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-f59cc417-c59a-4ac0-adf8-bc417cd73707"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-f59cc417-c59a-4ac0-adf8-bc417cd73707"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-f59cc417-c59a-4ac0-adf8-bc417cd73707"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-14505928-50aa-4114-a547-5e532ba19fc7 {
  text-align: center;
}
@media (min-width: 1200px){#s-14505928-50aa-4114-a547-5e532ba19fc7 {
  
}
}@media (max-width: 767px){#s-14505928-50aa-4114-a547-5e532ba19fc7 {
  
}
}






  #s-14505928-50aa-4114-a547-5e532ba19fc7 img.shogun-image {
    

    
    
    
  }


#s-14505928-50aa-4114-a547-5e532ba19fc7 .shogun-image-content {
  
    align-items: center;
  
}

#s-684a3fbf-5fe1-4930-9151-e1b545bb9c9f {
  margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-684a3fbf-5fe1-4930-9151-e1b545bb9c9f .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
  
}


@media (min-width: 768px) and (max-width: 991px){#s-684a3fbf-5fe1-4930-9151-e1b545bb9c9f .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: 2px;
  
}


}@media (max-width: 767px){#s-684a3fbf-5fe1-4930-9151-e1b545bb9c9f .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 12px;
  line-height: ;
  letter-spacing: 2px;
  
}


}
#s-d0dc0a9e-7fa9-4443-8f60-8655c3e4a660 {
  text-align: center;
}
@media (min-width: 1200px){#s-d0dc0a9e-7fa9-4443-8f60-8655c3e4a660 {
  
}
}@media (max-width: 767px){#s-d0dc0a9e-7fa9-4443-8f60-8655c3e4a660 {
  
}
}






  #s-d0dc0a9e-7fa9-4443-8f60-8655c3e4a660 img.shogun-image {
    

    
    
    
  }


#s-d0dc0a9e-7fa9-4443-8f60-8655c3e4a660 .shogun-image-content {
  
    align-items: center;
  
}

#s-3c7db0fd-7de3-4c4e-98bc-1b22c3c5f55a {
  margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3c7db0fd-7de3-4c4e-98bc-1b22c3c5f55a .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
  
}


@media (min-width: 768px) and (max-width: 991px){#s-3c7db0fd-7de3-4c4e-98bc-1b22c3c5f55a .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: 2px;
  
}


}@media (max-width: 767px){#s-3c7db0fd-7de3-4c4e-98bc-1b22c3c5f55a .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 12px;
  line-height: ;
  letter-spacing: 2px;
  
}


}
#s-7f33b3ff-7137-4468-8ea2-bfb7d41a0993 {
  border-style: solid;
margin-top: 25px;
margin-bottom: 50px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
min-height: 50px;
}
@media (min-width: 1200px){#s-7f33b3ff-7137-4468-8ea2-bfb7d41a0993 {
  margin-bottom: 80px;
}
}@media (max-width: 767px){#s-7f33b3ff-7137-4468-8ea2-bfb7d41a0993 {
  
}
}







#s-7f33b3ff-7137-4468-8ea2-bfb7d41a0993 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7f33b3ff-7137-4468-8ea2-bfb7d41a0993.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8d360c23-ad6c-437b-8393-a73790939da5 {
  margin-bottom: 15px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8d360c23-ad6c-437b-8393-a73790939da5 .shogun-heading-component h2 {
  color: rgba(51, 51, 51, 1);
  font-weight:   ;
  
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: 3px;
  
}


@media (min-width: 768px) and (max-width: 991px){#s-8d360c23-ad6c-437b-8393-a73790939da5 .shogun-heading-component h2 {
  color: rgba(51, 51, 51, 1);
  font-weight:   ;
  
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: 2px;
  
}


}@media (max-width: 767px){#s-8d360c23-ad6c-437b-8393-a73790939da5 .shogun-heading-component h2 {
  color: rgba(51, 51, 51, 1);
  font-weight:   ;
  
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: 2px;
  
}


}
#s-44af6125-f23e-468e-875d-0f68c91d7ccd {
  margin-left: 10%;
margin-bottom: 5px;
margin-right: 10%;
}
@media (min-width: 768px) and (max-width: 991px){#s-44af6125-f23e-468e-875d-0f68c91d7ccd {
  margin-left: 2%;
margin-right: 2%;
}
}@media (max-width: 767px){#s-44af6125-f23e-468e-875d-0f68c91d7ccd {
  display: none;
}
#s-44af6125-f23e-468e-875d-0f68c91d7ccd, #wrap-s-44af6125-f23e-468e-875d-0f68c91d7ccd { display:none !important; }}
@media (min-width: 0px) {
[id="s-44af6125-f23e-468e-875d-0f68c91d7ccd"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-44af6125-f23e-468e-875d-0f68c91d7ccd"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-44af6125-f23e-468e-875d-0f68c91d7ccd"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-44af6125-f23e-468e-875d-0f68c91d7ccd"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

}

#s-be884e8c-1a10-4d5d-939f-91a5a3172630 {
  text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-be884e8c-1a10-4d5d-939f-91a5a3172630 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-be884e8c-1a10-4d5d-939f-91a5a3172630 {
  
}
}@media (max-width: 767px){#s-be884e8c-1a10-4d5d-939f-91a5a3172630 {
  
}
}






  #s-be884e8c-1a10-4d5d-939f-91a5a3172630 img.shogun-image {
    

    
    
    
  }


#s-be884e8c-1a10-4d5d-939f-91a5a3172630 .shogun-image-content {
  
    align-items: center;
  
}

#s-225ca6c8-e0f1-4122-87bc-9bf1dee45b15 {
  text-align: center;
}
@media (min-width: 1200px){#s-225ca6c8-e0f1-4122-87bc-9bf1dee45b15 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-225ca6c8-e0f1-4122-87bc-9bf1dee45b15 {
  
}
}@media (max-width: 767px){#s-225ca6c8-e0f1-4122-87bc-9bf1dee45b15 {
  
}
}






  #s-225ca6c8-e0f1-4122-87bc-9bf1dee45b15 img.shogun-image {
    

    
    
    
  }


#s-225ca6c8-e0f1-4122-87bc-9bf1dee45b15 .shogun-image-content {
  
    align-items: center;
  
}

#s-a7798f03-5fca-4445-8628-8f1f1dc14db3 {
  text-align: center;
}
@media (min-width: 1200px){#s-a7798f03-5fca-4445-8628-8f1f1dc14db3 {
  
}
}@media (max-width: 767px){#s-a7798f03-5fca-4445-8628-8f1f1dc14db3 {
  
}
}






  #s-a7798f03-5fca-4445-8628-8f1f1dc14db3 img.shogun-image {
    

    
    
    
  }


#s-a7798f03-5fca-4445-8628-8f1f1dc14db3 .shogun-image-content {
  
    align-items: center;
  
}

#s-63a4bce3-a8f1-47c5-94a9-3cd3acee11ee {
  text-align: center;
}
@media (min-width: 1200px){#s-63a4bce3-a8f1-47c5-94a9-3cd3acee11ee {
  
}
}@media (max-width: 767px){#s-63a4bce3-a8f1-47c5-94a9-3cd3acee11ee {
  
}
}






  #s-63a4bce3-a8f1-47c5-94a9-3cd3acee11ee img.shogun-image {
    

    
    
    
  }


#s-63a4bce3-a8f1-47c5-94a9-3cd3acee11ee .shogun-image-content {
  
    align-items: center;
  
}

#s-595d11c4-419d-4002-8e99-ca236ea30d72 {
  margin-left: 5%;
margin-right: 5%;
}
@media (min-width: 1200px){#s-595d11c4-419d-4002-8e99-ca236ea30d72 {
  display: none;
}
#s-595d11c4-419d-4002-8e99-ca236ea30d72, #wrap-s-595d11c4-419d-4002-8e99-ca236ea30d72 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-595d11c4-419d-4002-8e99-ca236ea30d72 {
  display: none;
}
#s-595d11c4-419d-4002-8e99-ca236ea30d72, #wrap-s-595d11c4-419d-4002-8e99-ca236ea30d72 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-595d11c4-419d-4002-8e99-ca236ea30d72 {
  display: none;
}
#s-595d11c4-419d-4002-8e99-ca236ea30d72, #wrap-s-595d11c4-419d-4002-8e99-ca236ea30d72 { display:none !important; }}@media (max-width: 767px){#s-595d11c4-419d-4002-8e99-ca236ea30d72 {
  
}
}
@media (min-width: 0px) {
[id="s-595d11c4-419d-4002-8e99-ca236ea30d72"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-595d11c4-419d-4002-8e99-ca236ea30d72"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-595d11c4-419d-4002-8e99-ca236ea30d72"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-595d11c4-419d-4002-8e99-ca236ea30d72"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-723e1c6f-bf94-43dd-80f6-9831fe62568c {
  text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-723e1c6f-bf94-43dd-80f6-9831fe62568c {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-723e1c6f-bf94-43dd-80f6-9831fe62568c {
  
}
}@media (max-width: 767px){#s-723e1c6f-bf94-43dd-80f6-9831fe62568c {
  
}
}






  #s-723e1c6f-bf94-43dd-80f6-9831fe62568c img.shogun-image {
    

    
    
    
  }


#s-723e1c6f-bf94-43dd-80f6-9831fe62568c .shogun-image-content {
  
    align-items: center;
  
}

#s-edf6c619-3ab1-4fed-b3d1-9da618bb73e5 {
  text-align: center;
}
@media (min-width: 1200px){#s-edf6c619-3ab1-4fed-b3d1-9da618bb73e5 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-edf6c619-3ab1-4fed-b3d1-9da618bb73e5 {
  
}
}@media (max-width: 767px){#s-edf6c619-3ab1-4fed-b3d1-9da618bb73e5 {
  
}
}






  #s-edf6c619-3ab1-4fed-b3d1-9da618bb73e5 img.shogun-image {
    

    
    
    
  }


#s-edf6c619-3ab1-4fed-b3d1-9da618bb73e5 .shogun-image-content {
  
    align-items: center;
  
}

#s-ce65559e-cde8-490a-ab9b-b113c8d037db {
  margin-top: 3%;
margin-left: 5%;
margin-bottom: 3%;
margin-right: 5%;
}
@media (min-width: 1200px){#s-ce65559e-cde8-490a-ab9b-b113c8d037db {
  display: none;
}
#s-ce65559e-cde8-490a-ab9b-b113c8d037db, #wrap-s-ce65559e-cde8-490a-ab9b-b113c8d037db { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ce65559e-cde8-490a-ab9b-b113c8d037db {
  display: none;
}
#s-ce65559e-cde8-490a-ab9b-b113c8d037db, #wrap-s-ce65559e-cde8-490a-ab9b-b113c8d037db { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ce65559e-cde8-490a-ab9b-b113c8d037db {
  display: none;
}
#s-ce65559e-cde8-490a-ab9b-b113c8d037db, #wrap-s-ce65559e-cde8-490a-ab9b-b113c8d037db { display:none !important; }}@media (max-width: 767px){#s-ce65559e-cde8-490a-ab9b-b113c8d037db {
  
}
}
@media (min-width: 0px) {
[id="s-ce65559e-cde8-490a-ab9b-b113c8d037db"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-ce65559e-cde8-490a-ab9b-b113c8d037db"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-ce65559e-cde8-490a-ab9b-b113c8d037db"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-ce65559e-cde8-490a-ab9b-b113c8d037db"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-b9ebbca8-df49-468e-8e57-2ab3d153d523 {
  text-align: center;
}
@media (min-width: 1200px){#s-b9ebbca8-df49-468e-8e57-2ab3d153d523 {
  
}
}@media (max-width: 767px){#s-b9ebbca8-df49-468e-8e57-2ab3d153d523 {
  
}
}






  #s-b9ebbca8-df49-468e-8e57-2ab3d153d523 img.shogun-image {
    

    
    
    
  }


#s-b9ebbca8-df49-468e-8e57-2ab3d153d523 .shogun-image-content {
  
    align-items: center;
  
}

#s-9b4dbeb5-2b99-48ba-8fed-f5d8907695b0 {
  text-align: center;
}
@media (min-width: 1200px){#s-9b4dbeb5-2b99-48ba-8fed-f5d8907695b0 {
  
}
}@media (max-width: 767px){#s-9b4dbeb5-2b99-48ba-8fed-f5d8907695b0 {
  
}
}






  #s-9b4dbeb5-2b99-48ba-8fed-f5d8907695b0 img.shogun-image {
    

    
    
    
  }


#s-9b4dbeb5-2b99-48ba-8fed-f5d8907695b0 .shogun-image-content {
  
    align-items: center;
  
}

#s-42bb3843-ea12-45e5-aeb8-1643d8798c28 {
  margin-top: 20px;
margin-left: 10%;
margin-right: 10%;
}
@media (min-width: 768px) and (max-width: 991px){#s-42bb3843-ea12-45e5-aeb8-1643d8798c28 {
  margin-left: 2%;
margin-right: 2%;
}
}@media (max-width: 767px){#s-42bb3843-ea12-45e5-aeb8-1643d8798c28 {
  display: none;
}
#s-42bb3843-ea12-45e5-aeb8-1643d8798c28, #wrap-s-42bb3843-ea12-45e5-aeb8-1643d8798c28 { display:none !important; }}
@media (min-width: 0px) {
[id="s-42bb3843-ea12-45e5-aeb8-1643d8798c28"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-42bb3843-ea12-45e5-aeb8-1643d8798c28"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-42bb3843-ea12-45e5-aeb8-1643d8798c28"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-42bb3843-ea12-45e5-aeb8-1643d8798c28"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

}

#s-2edc27ae-96b7-4afc-a111-83be2c6329f6 {
  text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-2edc27ae-96b7-4afc-a111-83be2c6329f6 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-2edc27ae-96b7-4afc-a111-83be2c6329f6 {
  
}
}@media (max-width: 767px){#s-2edc27ae-96b7-4afc-a111-83be2c6329f6 {
  
}
}






  #s-2edc27ae-96b7-4afc-a111-83be2c6329f6 img.shogun-image {
    

    
    
    
  }


#s-2edc27ae-96b7-4afc-a111-83be2c6329f6 .shogun-image-content {
  
    align-items: center;
  
}

#s-380ffdef-97bf-430e-b82f-81f4676c36b2 {
  text-align: center;
}
@media (min-width: 1200px){#s-380ffdef-97bf-430e-b82f-81f4676c36b2 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-380ffdef-97bf-430e-b82f-81f4676c36b2 {
  
}
}@media (max-width: 767px){#s-380ffdef-97bf-430e-b82f-81f4676c36b2 {
  
}
}






  #s-380ffdef-97bf-430e-b82f-81f4676c36b2 img.shogun-image {
    

    
    
    
  }


#s-380ffdef-97bf-430e-b82f-81f4676c36b2 .shogun-image-content {
  
    align-items: center;
  
}

#s-3cbda2bb-228a-40c5-97cd-52e29bd01213 {
  text-align: center;
}
@media (min-width: 1200px){#s-3cbda2bb-228a-40c5-97cd-52e29bd01213 {
  
}
}@media (max-width: 767px){#s-3cbda2bb-228a-40c5-97cd-52e29bd01213 {
  
}
}






  #s-3cbda2bb-228a-40c5-97cd-52e29bd01213 img.shogun-image {
    

    
    
    
  }


#s-3cbda2bb-228a-40c5-97cd-52e29bd01213 .shogun-image-content {
  
    align-items: center;
  
}

#s-abba6d32-9744-4b62-aa6f-e141f4afbbdc {
  text-align: center;
}
@media (min-width: 1200px){#s-abba6d32-9744-4b62-aa6f-e141f4afbbdc {
  
}
}@media (max-width: 767px){#s-abba6d32-9744-4b62-aa6f-e141f4afbbdc {
  
}
}






  #s-abba6d32-9744-4b62-aa6f-e141f4afbbdc img.shogun-image {
    

    
    
    
  }


#s-abba6d32-9744-4b62-aa6f-e141f4afbbdc .shogun-image-content {
  
    align-items: center;
  
}

#s-a68413e3-46e3-48af-966b-532360772698 {
  margin-left: 5%;
margin-right: 5%;
}
@media (min-width: 1200px){#s-a68413e3-46e3-48af-966b-532360772698 {
  display: none;
}
#s-a68413e3-46e3-48af-966b-532360772698, #wrap-s-a68413e3-46e3-48af-966b-532360772698 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a68413e3-46e3-48af-966b-532360772698 {
  display: none;
}
#s-a68413e3-46e3-48af-966b-532360772698, #wrap-s-a68413e3-46e3-48af-966b-532360772698 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a68413e3-46e3-48af-966b-532360772698 {
  display: none;
}
#s-a68413e3-46e3-48af-966b-532360772698, #wrap-s-a68413e3-46e3-48af-966b-532360772698 { display:none !important; }}@media (max-width: 767px){#s-a68413e3-46e3-48af-966b-532360772698 {
  
}
}
@media (min-width: 0px) {
[id="s-a68413e3-46e3-48af-966b-532360772698"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-a68413e3-46e3-48af-966b-532360772698"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-a68413e3-46e3-48af-966b-532360772698"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-a68413e3-46e3-48af-966b-532360772698"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-cdd2ac16-48b3-49dc-a269-1167952e59e5 {
  text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-cdd2ac16-48b3-49dc-a269-1167952e59e5 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-cdd2ac16-48b3-49dc-a269-1167952e59e5 {
  
}
}@media (max-width: 767px){#s-cdd2ac16-48b3-49dc-a269-1167952e59e5 {
  
}
}






  #s-cdd2ac16-48b3-49dc-a269-1167952e59e5 img.shogun-image {
    

    
    
    
  }


#s-cdd2ac16-48b3-49dc-a269-1167952e59e5 .shogun-image-content {
  
    align-items: center;
  
}

#s-260d68a8-72a6-4578-a1ef-21095422a1f3 {
  text-align: center;
}
@media (min-width: 1200px){#s-260d68a8-72a6-4578-a1ef-21095422a1f3 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-260d68a8-72a6-4578-a1ef-21095422a1f3 {
  
}
}@media (max-width: 767px){#s-260d68a8-72a6-4578-a1ef-21095422a1f3 {
  
}
}






  #s-260d68a8-72a6-4578-a1ef-21095422a1f3 img.shogun-image {
    

    
    
    
  }


#s-260d68a8-72a6-4578-a1ef-21095422a1f3 .shogun-image-content {
  
    align-items: center;
  
}

#s-96feccfa-fd39-4582-81b6-54bd06629ee7 {
  margin-top: 3%;
margin-left: 5%;
margin-bottom: 3%;
margin-right: 5%;
}
@media (min-width: 1200px){#s-96feccfa-fd39-4582-81b6-54bd06629ee7 {
  display: none;
}
#s-96feccfa-fd39-4582-81b6-54bd06629ee7, #wrap-s-96feccfa-fd39-4582-81b6-54bd06629ee7 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-96feccfa-fd39-4582-81b6-54bd06629ee7 {
  display: none;
}
#s-96feccfa-fd39-4582-81b6-54bd06629ee7, #wrap-s-96feccfa-fd39-4582-81b6-54bd06629ee7 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-96feccfa-fd39-4582-81b6-54bd06629ee7 {
  display: none;
}
#s-96feccfa-fd39-4582-81b6-54bd06629ee7, #wrap-s-96feccfa-fd39-4582-81b6-54bd06629ee7 { display:none !important; }}@media (max-width: 767px){#s-96feccfa-fd39-4582-81b6-54bd06629ee7 {
  
}
}
@media (min-width: 0px) {
[id="s-96feccfa-fd39-4582-81b6-54bd06629ee7"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-96feccfa-fd39-4582-81b6-54bd06629ee7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-96feccfa-fd39-4582-81b6-54bd06629ee7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-96feccfa-fd39-4582-81b6-54bd06629ee7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-6cfeda8c-2d15-4362-9fa1-3bb34fed8a58 {
  text-align: center;
}
@media (min-width: 1200px){#s-6cfeda8c-2d15-4362-9fa1-3bb34fed8a58 {
  
}
}@media (max-width: 767px){#s-6cfeda8c-2d15-4362-9fa1-3bb34fed8a58 {
  
}
}






  #s-6cfeda8c-2d15-4362-9fa1-3bb34fed8a58 img.shogun-image {
    

    
    
    
  }


#s-6cfeda8c-2d15-4362-9fa1-3bb34fed8a58 .shogun-image-content {
  
    align-items: center;
  
}

#s-f1e6e343-ee09-402d-a903-79140de52fc7 {
  text-align: center;
}
@media (min-width: 1200px){#s-f1e6e343-ee09-402d-a903-79140de52fc7 {
  
}
}@media (max-width: 767px){#s-f1e6e343-ee09-402d-a903-79140de52fc7 {
  
}
}






  #s-f1e6e343-ee09-402d-a903-79140de52fc7 img.shogun-image {
    

    
    
    
  }


#s-f1e6e343-ee09-402d-a903-79140de52fc7 .shogun-image-content {
  
    align-items: center;
  
}

#s-00e5f3a9-8565-45fd-8502-e4f71f909169 {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
min-height: 50px;
}
@media (max-width: 767px){#s-00e5f3a9-8565-45fd-8502-e4f71f909169 {
  
}
}







#s-00e5f3a9-8565-45fd-8502-e4f71f909169 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-00e5f3a9-8565-45fd-8502-e4f71f909169.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bf867d17-0a8f-45b2-b1ad-ce23475ec83b {
  margin-bottom: 15px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-bf867d17-0a8f-45b2-b1ad-ce23475ec83b .shogun-heading-component h2 {
  color: rgba(51, 51, 51, 1);
  font-weight:   ;
  
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: 3px;
  
}


@media (min-width: 768px) and (max-width: 991px){#s-bf867d17-0a8f-45b2-b1ad-ce23475ec83b .shogun-heading-component h2 {
  color: rgba(51, 51, 51, 1);
  font-weight:   ;
  
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: 2px;
  
}


}@media (max-width: 767px){#s-bf867d17-0a8f-45b2-b1ad-ce23475ec83b .shogun-heading-component h2 {
  color: rgba(51, 51, 51, 1);
  font-weight:   ;
  
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: 2px;
  
}


}
#s-1e2b40c7-43ca-4bbe-b045-7325f805c254 {
  margin-top: 0px;
margin-left: 10%;
margin-bottom: 32px;
margin-right: 10%;
}
@media (min-width: 768px) and (max-width: 991px){#s-1e2b40c7-43ca-4bbe-b045-7325f805c254 {
  margin-left: 2%;
margin-right: 2%;
}
}@media (max-width: 767px){#s-1e2b40c7-43ca-4bbe-b045-7325f805c254 {
  display: none;
}
#s-1e2b40c7-43ca-4bbe-b045-7325f805c254, #wrap-s-1e2b40c7-43ca-4bbe-b045-7325f805c254 { display:none !important; }}
@media (min-width: 0px) {
[id="s-1e2b40c7-43ca-4bbe-b045-7325f805c254"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 4.166666666666667px);
}

}

@media (min-width: 768px) {
[id="s-1e2b40c7-43ca-4bbe-b045-7325f805c254"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 4.166666666666667px);
}

}

@media (min-width: 992px) {
[id="s-1e2b40c7-43ca-4bbe-b045-7325f805c254"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 4.166666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-1e2b40c7-43ca-4bbe-b045-7325f805c254"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 4.166666666666667px);
}

}

#s-b2284a21-71c6-45d3-a6f5-eae33d9411b2 {
  text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-b2284a21-71c6-45d3-a6f5-eae33d9411b2 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-b2284a21-71c6-45d3-a6f5-eae33d9411b2 {
  
}
}@media (max-width: 767px){#s-b2284a21-71c6-45d3-a6f5-eae33d9411b2 {
  
}
}






  #s-b2284a21-71c6-45d3-a6f5-eae33d9411b2 img.shogun-image {
    

    
    
    
  }


#s-b2284a21-71c6-45d3-a6f5-eae33d9411b2 .shogun-image-content {
  
    align-items: center;
  
}

#s-af82f058-72b4-4791-a0ac-31d5f0acd36b {
  margin-top: 10px;
margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-af82f058-72b4-4791-a0ac-31d5f0acd36b .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
  
}



#s-fc5690ec-8e9f-46ec-b9cb-ae2e45e3c01c {
  text-align: center;
}
@media (min-width: 1200px){#s-fc5690ec-8e9f-46ec-b9cb-ae2e45e3c01c {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-fc5690ec-8e9f-46ec-b9cb-ae2e45e3c01c {
  
}
}@media (max-width: 767px){#s-fc5690ec-8e9f-46ec-b9cb-ae2e45e3c01c {
  
}
}






  #s-fc5690ec-8e9f-46ec-b9cb-ae2e45e3c01c img.shogun-image {
    

    
    
    
  }


#s-fc5690ec-8e9f-46ec-b9cb-ae2e45e3c01c .shogun-image-content {
  
    align-items: center;
  
}

#s-e256e27a-6f4d-4d38-b808-3e552335876a {
  margin-top: 10px;
margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e256e27a-6f4d-4d38-b808-3e552335876a .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
  
}



#s-d5d93011-e5c4-4043-9a6e-76fba78ff4d3 {
  text-align: center;
}
@media (min-width: 1200px){#s-d5d93011-e5c4-4043-9a6e-76fba78ff4d3 {
  
}
}@media (max-width: 767px){#s-d5d93011-e5c4-4043-9a6e-76fba78ff4d3 {
  
}
}






  #s-d5d93011-e5c4-4043-9a6e-76fba78ff4d3 img.shogun-image {
    

    
    
    
  }


#s-d5d93011-e5c4-4043-9a6e-76fba78ff4d3 .shogun-image-content {
  
    align-items: center;
  
}

#s-4f1c6722-0005-487f-b502-00f2fa90df12 {
  margin-top: 10px;
margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4f1c6722-0005-487f-b502-00f2fa90df12 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
  
}



#s-03e66d89-54ce-4a7b-be16-8dea9187a6ee {
  text-align: center;
}
@media (min-width: 1200px){#s-03e66d89-54ce-4a7b-be16-8dea9187a6ee {
  
}
}@media (max-width: 767px){#s-03e66d89-54ce-4a7b-be16-8dea9187a6ee {
  
}
}






  #s-03e66d89-54ce-4a7b-be16-8dea9187a6ee img.shogun-image {
    

    
    
    
  }


#s-03e66d89-54ce-4a7b-be16-8dea9187a6ee .shogun-image-content {
  
    align-items: center;
  
}

#s-2b1f15ce-bec4-4f5c-8d9e-be7bf32c6c34 {
  margin-top: 10px;
margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2b1f15ce-bec4-4f5c-8d9e-be7bf32c6c34 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
  
}



#s-43ff759d-3b77-4a01-80c5-9353ad331e09 {
  text-align: center;
}
@media (min-width: 1200px){#s-43ff759d-3b77-4a01-80c5-9353ad331e09 {
  
}
}@media (max-width: 767px){#s-43ff759d-3b77-4a01-80c5-9353ad331e09 {
  
}
}






  #s-43ff759d-3b77-4a01-80c5-9353ad331e09 img.shogun-image {
    

    
    
    
  }


#s-43ff759d-3b77-4a01-80c5-9353ad331e09 .shogun-image-content {
  
    align-items: center;
  
}

#s-ede2c2c3-152d-4694-be03-c71961aa8838 {
  margin-top: 10px;
margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ede2c2c3-152d-4694-be03-c71961aa8838 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
  
}



#s-6a9f6268-4ec0-404d-969b-6184c6def87d {
  text-align: center;
}
@media (min-width: 1200px){#s-6a9f6268-4ec0-404d-969b-6184c6def87d {
  
}
}@media (max-width: 767px){#s-6a9f6268-4ec0-404d-969b-6184c6def87d {
  
}
}






  #s-6a9f6268-4ec0-404d-969b-6184c6def87d img.shogun-image {
    

    
    
    
  }


#s-6a9f6268-4ec0-404d-969b-6184c6def87d .shogun-image-content {
  
    align-items: center;
  
}

#s-7edd07f8-0e84-4bdf-b440-b35e0d113806 {
  margin-top: 10px;
margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7edd07f8-0e84-4bdf-b440-b35e0d113806 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
  
}



#s-a3d6fafc-7f6f-41b5-b637-e2007513f6c4 {
  margin-top: 0px;
margin-left: 5%;
margin-bottom: 5px;
margin-right: 5%;
}
@media (min-width: 1200px){#s-a3d6fafc-7f6f-41b5-b637-e2007513f6c4 {
  display: none;
}
#s-a3d6fafc-7f6f-41b5-b637-e2007513f6c4, #wrap-s-a3d6fafc-7f6f-41b5-b637-e2007513f6c4 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a3d6fafc-7f6f-41b5-b637-e2007513f6c4 {
  display: none;
}
#s-a3d6fafc-7f6f-41b5-b637-e2007513f6c4, #wrap-s-a3d6fafc-7f6f-41b5-b637-e2007513f6c4 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a3d6fafc-7f6f-41b5-b637-e2007513f6c4 {
  display: none;
}
#s-a3d6fafc-7f6f-41b5-b637-e2007513f6c4, #wrap-s-a3d6fafc-7f6f-41b5-b637-e2007513f6c4 { display:none !important; }}@media (max-width: 767px){#s-a3d6fafc-7f6f-41b5-b637-e2007513f6c4 {
  
}
}
@media (min-width: 0px) {
[id="s-a3d6fafc-7f6f-41b5-b637-e2007513f6c4"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 768px) {
[id="s-a3d6fafc-7f6f-41b5-b637-e2007513f6c4"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 992px) {
[id="s-a3d6fafc-7f6f-41b5-b637-e2007513f6c4"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 1200px) {
[id="s-a3d6fafc-7f6f-41b5-b637-e2007513f6c4"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

#s-65ad6904-0b7d-4cbb-9091-4fdafa46e183 {
  text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-65ad6904-0b7d-4cbb-9091-4fdafa46e183 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-65ad6904-0b7d-4cbb-9091-4fdafa46e183 {
  
}
}@media (max-width: 767px){#s-65ad6904-0b7d-4cbb-9091-4fdafa46e183 {
  
}
}






  #s-65ad6904-0b7d-4cbb-9091-4fdafa46e183 img.shogun-image {
    

    
    
    
  }


#s-65ad6904-0b7d-4cbb-9091-4fdafa46e183 .shogun-image-content {
  
    align-items: center;
  
}

#s-cebe055e-1f3c-4473-b02d-1b89f3ed963a {
  margin-top: 10px;
text-align: center;
}

#s-cebe055e-1f3c-4473-b02d-1b89f3ed963a .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: 2px;
  
}



#s-b531da59-9e10-41bc-88ee-14bd91b0e663 {
  text-align: center;
}
@media (min-width: 1200px){#s-b531da59-9e10-41bc-88ee-14bd91b0e663 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b531da59-9e10-41bc-88ee-14bd91b0e663 {
  
}
}@media (max-width: 767px){#s-b531da59-9e10-41bc-88ee-14bd91b0e663 {
  
}
}






  #s-b531da59-9e10-41bc-88ee-14bd91b0e663 img.shogun-image {
    

    
    
    
  }


#s-b531da59-9e10-41bc-88ee-14bd91b0e663 .shogun-image-content {
  
    align-items: center;
  
}

#s-41e933c9-fec8-4f3e-8008-a62e4dd2efaf {
  margin-top: 10px;
text-align: center;
}

#s-41e933c9-fec8-4f3e-8008-a62e4dd2efaf .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: 2px;
  
}



#s-6ee72985-28cd-4cdc-803c-4a77dff56c11 {
  text-align: center;
}
@media (min-width: 1200px){#s-6ee72985-28cd-4cdc-803c-4a77dff56c11 {
  
}
}@media (max-width: 767px){#s-6ee72985-28cd-4cdc-803c-4a77dff56c11 {
  
}
}






  #s-6ee72985-28cd-4cdc-803c-4a77dff56c11 img.shogun-image {
    

    
    
    
  }


#s-6ee72985-28cd-4cdc-803c-4a77dff56c11 .shogun-image-content {
  
    align-items: center;
  
}

#s-b505e12e-13f7-42a5-b686-5922b287ea53 {
  margin-top: 10px;
text-align: center;
}

#s-b505e12e-13f7-42a5-b686-5922b287ea53 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: 2px;
  
}



#s-1bb311b3-9b16-4297-a89b-379bb149d4ce {
  margin-top: 5px;
margin-left: 5%;
margin-right: 5%;
}
@media (min-width: 1200px){#s-1bb311b3-9b16-4297-a89b-379bb149d4ce {
  display: none;
}
#s-1bb311b3-9b16-4297-a89b-379bb149d4ce, #wrap-s-1bb311b3-9b16-4297-a89b-379bb149d4ce { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1bb311b3-9b16-4297-a89b-379bb149d4ce {
  display: none;
}
#s-1bb311b3-9b16-4297-a89b-379bb149d4ce, #wrap-s-1bb311b3-9b16-4297-a89b-379bb149d4ce { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1bb311b3-9b16-4297-a89b-379bb149d4ce {
  display: none;
}
#s-1bb311b3-9b16-4297-a89b-379bb149d4ce, #wrap-s-1bb311b3-9b16-4297-a89b-379bb149d4ce { display:none !important; }}@media (max-width: 767px){#s-1bb311b3-9b16-4297-a89b-379bb149d4ce {
  
}
}
@media (min-width: 0px) {
[id="s-1bb311b3-9b16-4297-a89b-379bb149d4ce"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 768px) {
[id="s-1bb311b3-9b16-4297-a89b-379bb149d4ce"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 992px) {
[id="s-1bb311b3-9b16-4297-a89b-379bb149d4ce"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 1200px) {
[id="s-1bb311b3-9b16-4297-a89b-379bb149d4ce"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

#s-04d6beee-b600-4008-bfca-6b63672d714e {
  text-align: center;
}
@media (min-width: 1200px){#s-04d6beee-b600-4008-bfca-6b63672d714e {
  
}
}@media (max-width: 767px){#s-04d6beee-b600-4008-bfca-6b63672d714e {
  
}
}






  #s-04d6beee-b600-4008-bfca-6b63672d714e img.shogun-image {
    

    
    
    
  }


#s-04d6beee-b600-4008-bfca-6b63672d714e .shogun-image-content {
  
    align-items: center;
  
}

#s-19c496b7-2f20-4f80-bb9a-788c5b752887 {
  margin-top: 10px;
text-align: center;
}

#s-19c496b7-2f20-4f80-bb9a-788c5b752887 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: 2px;
  
}



#s-f964fce6-a059-475e-9f0f-c4f598ff471d {
  text-align: center;
}
@media (min-width: 1200px){#s-f964fce6-a059-475e-9f0f-c4f598ff471d {
  
}
}@media (max-width: 767px){#s-f964fce6-a059-475e-9f0f-c4f598ff471d {
  
}
}






  #s-f964fce6-a059-475e-9f0f-c4f598ff471d img.shogun-image {
    

    
    
    
  }


#s-f964fce6-a059-475e-9f0f-c4f598ff471d .shogun-image-content {
  
    align-items: center;
  
}

#s-d72d0677-64e3-4683-a2d2-0eb90c4a0613 {
  margin-top: 10px;
text-align: center;
}

#s-d72d0677-64e3-4683-a2d2-0eb90c4a0613 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: 2px;
  
}



#s-69d64769-b6c4-4471-9aa3-2686db5b0b4c {
  text-align: center;
}
@media (min-width: 1200px){#s-69d64769-b6c4-4471-9aa3-2686db5b0b4c {
  
}
}@media (max-width: 767px){#s-69d64769-b6c4-4471-9aa3-2686db5b0b4c {
  
}
}






  #s-69d64769-b6c4-4471-9aa3-2686db5b0b4c img.shogun-image {
    

    
    
    
  }


#s-69d64769-b6c4-4471-9aa3-2686db5b0b4c .shogun-image-content {
  
    align-items: center;
  
}

#s-35cb5500-0863-4e82-92f1-e3ce43a78b64 {
  margin-top: 10px;
text-align: center;
}

#s-35cb5500-0863-4e82-92f1-e3ce43a78b64 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: 2px;
  
}



#s-019e1964-c3e2-4002-888c-52fee6193d6e {
  margin-top: 50px;
margin-bottom: 0px;
min-height: 50px;
}
@media (min-width: 1200px){#s-019e1964-c3e2-4002-888c-52fee6193d6e {
  margin-top: 80px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-019e1964-c3e2-4002-888c-52fee6193d6e {
  margin-top: 50px;
}
}@media (max-width: 767px){#s-019e1964-c3e2-4002-888c-52fee6193d6e {
  margin-top: 25px;
}
}







#s-019e1964-c3e2-4002-888c-52fee6193d6e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-019e1964-c3e2-4002-888c-52fee6193d6e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8581b98a-e8ae-44e0-8467-08859828a6c4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8581b98a-e8ae-44e0-8467-08859828a6c4 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 25px;
  line-height: ;
  letter-spacing: 3px;
  
}



#s-efb5835d-e1c2-4c53-a2b8-c59e5d4ed162 {
  margin-left: 20%;
margin-bottom: 32px;
margin-right: 20%;
}
@media (min-width: 768px) and (max-width: 991px){#s-efb5835d-e1c2-4c53-a2b8-c59e5d4ed162 {
  margin-left: 5%;
margin-bottom: 15px;
margin-right: 5%;
}
}@media (max-width: 767px){#s-efb5835d-e1c2-4c53-a2b8-c59e5d4ed162 {
  margin-left: 20%;
margin-right: 20%;
display: none;
}
#s-efb5835d-e1c2-4c53-a2b8-c59e5d4ed162, #wrap-s-efb5835d-e1c2-4c53-a2b8-c59e5d4ed162 { display:none !important; }}
#s-09406ca5-fd1a-4cc2-9d3b-97f3f4d11cc6 {
  margin-left: 10%;
margin-bottom: 0px;
margin-right: 10%;
}
@media (min-width: 1200px){#s-09406ca5-fd1a-4cc2-9d3b-97f3f4d11cc6 {
  display: none;
}
#s-09406ca5-fd1a-4cc2-9d3b-97f3f4d11cc6, #wrap-s-09406ca5-fd1a-4cc2-9d3b-97f3f4d11cc6 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-09406ca5-fd1a-4cc2-9d3b-97f3f4d11cc6 {
  display: none;
}
#s-09406ca5-fd1a-4cc2-9d3b-97f3f4d11cc6, #wrap-s-09406ca5-fd1a-4cc2-9d3b-97f3f4d11cc6 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-09406ca5-fd1a-4cc2-9d3b-97f3f4d11cc6 {
  display: none;
}
#s-09406ca5-fd1a-4cc2-9d3b-97f3f4d11cc6, #wrap-s-09406ca5-fd1a-4cc2-9d3b-97f3f4d11cc6 { display:none !important; }}
#s-48203c16-c76f-4ef0-a837-f0777be2c905 {
  margin-left: 10%;
margin-bottom: 100px;
margin-right: 10%;
}
@media (min-width: 768px) and (max-width: 991px){#s-48203c16-c76f-4ef0-a837-f0777be2c905 {
  margin-left: 2%;
margin-right: 2%;
}
}@media (max-width: 767px){#s-48203c16-c76f-4ef0-a837-f0777be2c905 {
  margin-left: 5%;
margin-bottom: 25px;
margin-right: 5%;
}
}
@media (min-width: 0px) {
[id="s-48203c16-c76f-4ef0-a837-f0777be2c905"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 12.5px);
}

}

@media (min-width: 768px) {
[id="s-48203c16-c76f-4ef0-a837-f0777be2c905"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 18.75px);
}

}

@media (min-width: 992px) {
[id="s-48203c16-c76f-4ef0-a837-f0777be2c905"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 18.75px);
}

}

@media (min-width: 1200px) {
[id="s-48203c16-c76f-4ef0-a837-f0777be2c905"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 18.75px);
}

}

#s-cde39977-030a-4ab2-bc0d-0cd2f4c70124 {
  text-align: center;
}







  #s-cde39977-030a-4ab2-bc0d-0cd2f4c70124 img.shogun-image {
    

    
    
    
  }


#s-cde39977-030a-4ab2-bc0d-0cd2f4c70124 .shogun-image-content {
  
    align-items: center;
  
}

#s-2453bce2-0905-482c-a3cb-f79b2f0048d2 {
  margin-top: 10px;
margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2453bce2-0905-482c-a3cb-f79b2f0048d2 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
  
}



#s-f91b1c53-543d-4a99-a063-db754cfbaea0 {
  display: none;
}
.shg-btn.shg-cse, .shg-btn.shg-cse:hover, .shg-btn.shg-cse:focus {
  color: #FFF;
}

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

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

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

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

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

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

#s-a9c16b2a-dd54-4a21-8a15-f336b1d49f46 {
  margin-left: auto;
margin-right: auto;
padding-top: 12px;
padding-left: 20%;
padding-bottom: 12px;
padding-right: 20%;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-a9c16b2a-dd54-4a21-8a15-f336b1d49f46:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-a9c16b2a-dd54-4a21-8a15-f336b1d49f46:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-a9c16b2a-dd54-4a21-8a15-f336b1d49f46 {
  margin-top: 20px;
}
}@media (max-width: 767px){#s-a9c16b2a-dd54-4a21-8a15-f336b1d49f46 {
  margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
}
}


#s-a9c16b2a-dd54-4a21-8a15-f336b1d49f46 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-a9c16b2a-dd54-4a21-8a15-f336b1d49f46.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-a9c16b2a-dd54-4a21-8a15-f336b1d49f46.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-a9c16b2a-dd54-4a21-8a15-f336b1d49f46.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-fdfff121-f465-426f-be4e-b310a7789509 {
  text-align: center;
}







  #s-fdfff121-f465-426f-be4e-b310a7789509 img.shogun-image {
    

    
    
    
  }


#s-fdfff121-f465-426f-be4e-b310a7789509 .shogun-image-content {
  
    align-items: center;
  
}

#s-5b74b6b2-e40a-419f-90ed-ab5ef171ca07 {
  margin-top: 10px;
margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5b74b6b2-e40a-419f-90ed-ab5ef171ca07 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
  
}



#s-f6264748-0f0a-4039-aa63-169d8f92f564 {
  display: none;
}
#s-1b30eb61-4ef1-4112-b0d9-d5afbddaff84 {
  margin-left: auto;
margin-right: auto;
padding-top: 12px;
padding-left: 20%;
padding-bottom: 12px;
padding-right: 20%;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-1b30eb61-4ef1-4112-b0d9-d5afbddaff84:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-1b30eb61-4ef1-4112-b0d9-d5afbddaff84:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-1b30eb61-4ef1-4112-b0d9-d5afbddaff84 {
  margin-top: 20px;
}
}@media (max-width: 767px){#s-1b30eb61-4ef1-4112-b0d9-d5afbddaff84 {
  margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
}
}


#s-1b30eb61-4ef1-4112-b0d9-d5afbddaff84 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-1b30eb61-4ef1-4112-b0d9-d5afbddaff84.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-1b30eb61-4ef1-4112-b0d9-d5afbddaff84.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-1b30eb61-4ef1-4112-b0d9-d5afbddaff84.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-527e018b-3f9b-4486-9f79-8cd1e98e0464 {
  text-align: center;
}







  #s-527e018b-3f9b-4486-9f79-8cd1e98e0464 img.shogun-image {
    

    
    
    
  }


#s-527e018b-3f9b-4486-9f79-8cd1e98e0464 .shogun-image-content {
  
    align-items: center;
  
}

#s-d159a062-fc6f-4586-ae3f-4e64ea3ce4a0 {
  margin-top: 10px;
margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d159a062-fc6f-4586-ae3f-4e64ea3ce4a0 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
  
}



@media (min-width: 768px) and (max-width: 991px){#s-7a759570-5713-4014-bd29-af554e98422d {
  margin-top: 25px;
}
}
#s-7a759570-5713-4014-bd29-af554e98422d {
  display: none;
}
#s-87c2ecb7-64bc-4d5a-9606-8323e5d3b079 {
  margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 12px;
padding-left: 20%;
padding-bottom: 12px;
padding-right: 20%;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-87c2ecb7-64bc-4d5a-9606-8323e5d3b079:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-87c2ecb7-64bc-4d5a-9606-8323e5d3b079:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-87c2ecb7-64bc-4d5a-9606-8323e5d3b079 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-87c2ecb7-64bc-4d5a-9606-8323e5d3b079.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-87c2ecb7-64bc-4d5a-9606-8323e5d3b079.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-87c2ecb7-64bc-4d5a-9606-8323e5d3b079.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-48c0a1e8-f228-4827-900d-e6f7e8af86d2 {
  text-align: center;
}







  #s-48c0a1e8-f228-4827-900d-e6f7e8af86d2 img.shogun-image {
    

    
    
    
  }


#s-48c0a1e8-f228-4827-900d-e6f7e8af86d2 .shogun-image-content {
  
    align-items: center;
  
}

#s-4c95e240-36c7-473d-ac79-501cd3ff7bf3 {
  margin-top: 10px;
margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4c95e240-36c7-473d-ac79-501cd3ff7bf3 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: 2px;
  
}



@media (min-width: 768px) and (max-width: 991px){#s-cce2b138-e65e-4cae-b4ba-383ced81a4fc {
  margin-top: 25px;
}
}
#s-cce2b138-e65e-4cae-b4ba-383ced81a4fc {
  display: none;
}
#s-1bd32e48-be94-4b4c-94e8-6955f20364f6 {
  margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 12px;
padding-left: 20%;
padding-bottom: 12px;
padding-right: 20%;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-1bd32e48-be94-4b4c-94e8-6955f20364f6:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-1bd32e48-be94-4b4c-94e8-6955f20364f6:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-1bd32e48-be94-4b4c-94e8-6955f20364f6 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-1bd32e48-be94-4b4c-94e8-6955f20364f6.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-1bd32e48-be94-4b4c-94e8-6955f20364f6.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-1bd32e48-be94-4b4c-94e8-6955f20364f6.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-1c6302cc-7293-4813-b8fc-4bb9f9370fdc {
  margin-top: 0px;
margin-left: 10%;
margin-bottom: 0px;
margin-right: 10%;
padding-top: 0px;
padding-bottom: 0px;
min-height: 50px;
background-color: rgba(243, 243, 243, 1);
}
@media (min-width: 1200px){#s-1c6302cc-7293-4813-b8fc-4bb9f9370fdc {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-1c6302cc-7293-4813-b8fc-4bb9f9370fdc {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-1c6302cc-7293-4813-b8fc-4bb9f9370fdc {
  margin-left: 0%;
margin-right: 0%;
}
}@media (max-width: 767px){#s-1c6302cc-7293-4813-b8fc-4bb9f9370fdc {
  display: none;
}
#s-1c6302cc-7293-4813-b8fc-4bb9f9370fdc, #wrap-s-1c6302cc-7293-4813-b8fc-4bb9f9370fdc { display:none !important; }}







#s-1c6302cc-7293-4813-b8fc-4bb9f9370fdc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1c6302cc-7293-4813-b8fc-4bb9f9370fdc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e9365fc0-80d5-4b69-88ac-af39dc8812e4 {
  margin-top: 0px;
margin-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-e9365fc0-80d5-4b69-88ac-af39dc8812e4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e9365fc0-80d5-4b69-88ac-af39dc8812e4"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e9365fc0-80d5-4b69-88ac-af39dc8812e4"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e9365fc0-80d5-4b69-88ac-af39dc8812e4"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e9365fc0-80d5-4b69-88ac-af39dc8812e4"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e9365fc0-80d5-4b69-88ac-af39dc8812e4"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e9365fc0-80d5-4b69-88ac-af39dc8812e4"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

#s-d84344bc-91af-4993-8350-a86997cda734 {
  margin-left: 0%;
margin-right: 0%;
text-align: center;
}







  #s-d84344bc-91af-4993-8350-a86997cda734 img.shogun-image {
    

    
    
    
  }


#s-d84344bc-91af-4993-8350-a86997cda734 .shogun-image-content {
  
    align-items: center;
  
}

#s-4ee33eb4-5e39-4b45-ad3e-6b8c663c33f7 {
  margin-right: 5px;
min-height: 50px;
}








#s-4ee33eb4-5e39-4b45-ad3e-6b8c663c33f7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4ee33eb4-5e39-4b45-ad3e-6b8c663c33f7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5af59298-b7b6-40ba-bfcc-c7d93d5d0ac0 {
  margin-top: 60px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-5af59298-b7b6-40ba-bfcc-c7d93d5d0ac0 {
  margin-top: 25%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-5af59298-b7b6-40ba-bfcc-c7d93d5d0ac0 {
  margin-top: 10%;
}
}
#s-5af59298-b7b6-40ba-bfcc-c7d93d5d0ac0 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 25px;
  line-height: 2em;
  letter-spacing: 2px;
  
}



#s-07c36866-9ec5-45d5-8f07-befe063464c3 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 15px;
padding-left: 30%;
padding-bottom: 15px;
padding-right: 30%;
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
}
#s-07c36866-9ec5-45d5-8f07-befe063464c3:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-07c36866-9ec5-45d5-8f07-befe063464c3:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-07c36866-9ec5-45d5-8f07-befe063464c3-btn-wrapper {
    text-align: center;
  }


#s-07c36866-9ec5-45d5-8f07-befe063464c3.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-07c36866-9ec5-45d5-8f07-befe063464c3-btn-wrapper {
    text-align: center;
  }


#s-07c36866-9ec5-45d5-8f07-befe063464c3.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-07c36866-9ec5-45d5-8f07-befe063464c3-btn-wrapper {
    text-align: center;
  }


#s-07c36866-9ec5-45d5-8f07-befe063464c3.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-07c36866-9ec5-45d5-8f07-befe063464c3-btn-wrapper {
    text-align: center;
  }


#s-07c36866-9ec5-45d5-8f07-befe063464c3.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-07c36866-9ec5-45d5-8f07-befe063464c3-btn-wrapper {
    text-align: center;
  }


#s-07c36866-9ec5-45d5-8f07-befe063464c3.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}
  #s-07c36866-9ec5-45d5-8f07-befe063464c3-btn-wrapper {
    text-align: center;
  }


#s-07c36866-9ec5-45d5-8f07-befe063464c3.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}

#s-39d04a93-8e5c-45c9-8550-47bb4d6e039f {
  min-height: 50px;
}
@media (min-width: 1200px){#s-39d04a93-8e5c-45c9-8550-47bb4d6e039f {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-39d04a93-8e5c-45c9-8550-47bb4d6e039f {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-39d04a93-8e5c-45c9-8550-47bb4d6e039f {
  display: none;
}
#s-39d04a93-8e5c-45c9-8550-47bb4d6e039f, #wrap-s-39d04a93-8e5c-45c9-8550-47bb4d6e039f { display:none !important; }}@media (max-width: 767px){#s-39d04a93-8e5c-45c9-8550-47bb4d6e039f {
  display: none;
}
#s-39d04a93-8e5c-45c9-8550-47bb4d6e039f, #wrap-s-39d04a93-8e5c-45c9-8550-47bb4d6e039f { display:none !important; }}







#s-39d04a93-8e5c-45c9-8550-47bb4d6e039f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-39d04a93-8e5c-45c9-8550-47bb4d6e039f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a0ffca1b-f1f5-4f4b-baa5-936d457860dc {
  margin-top: 100px;
text-align: center;
}







  #s-a0ffca1b-f1f5-4f4b-baa5-936d457860dc img.shogun-image {
    

    
    
    
  }


#s-a0ffca1b-f1f5-4f4b-baa5-936d457860dc .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-6c8d6242-3e1e-4dec-a16d-44d177a148e2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6c8d6242-3e1e-4dec-a16d-44d177a148e2"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-6c8d6242-3e1e-4dec-a16d-44d177a148e2"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-6c8d6242-3e1e-4dec-a16d-44d177a148e2"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-6c8d6242-3e1e-4dec-a16d-44d177a148e2"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-6c8d6242-3e1e-4dec-a16d-44d177a148e2"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-6c8d6242-3e1e-4dec-a16d-44d177a148e2"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

#s-0378f1e3-47d3-4375-86a1-aeb0e74a3ad3 {
  margin-bottom: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0378f1e3-47d3-4375-86a1-aeb0e74a3ad3 .shogun-heading-component h6 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 12px;
  line-height: ;
  letter-spacing: 4px;
  
}



#s-64c46986-baca-4a97-8b12-0bf1958c3c37 {
  margin-top: 0px;
margin-bottom: 0px;
text-align: center;
}

#s-64c46986-baca-4a97-8b12-0bf1958c3c37 .shogun-heading-component h2 {
  color: rgba(51, 51, 51, 1);
  font-weight:   ;
  
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: 5px;
  
}



#s-360d7ba0-5929-433c-81ee-23ed4012d229 {
  margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 15px;
padding-left: 15%;
padding-bottom: 15px;
padding-right: 15%;
border-radius: 2px;
max-width: 60%;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
}
#s-360d7ba0-5929-433c-81ee-23ed4012d229:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-360d7ba0-5929-433c-81ee-23ed4012d229:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-360d7ba0-5929-433c-81ee-23ed4012d229-btn-wrapper {
    text-align: center;
  }


#s-360d7ba0-5929-433c-81ee-23ed4012d229.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-360d7ba0-5929-433c-81ee-23ed4012d229-btn-wrapper {
    text-align: center;
  }


#s-360d7ba0-5929-433c-81ee-23ed4012d229.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-360d7ba0-5929-433c-81ee-23ed4012d229-btn-wrapper {
    text-align: center;
  }


#s-360d7ba0-5929-433c-81ee-23ed4012d229.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-360d7ba0-5929-433c-81ee-23ed4012d229-btn-wrapper {
    text-align: center;
  }


#s-360d7ba0-5929-433c-81ee-23ed4012d229.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-360d7ba0-5929-433c-81ee-23ed4012d229-btn-wrapper {
    text-align: center;
  }


#s-360d7ba0-5929-433c-81ee-23ed4012d229.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}
  #s-360d7ba0-5929-433c-81ee-23ed4012d229-btn-wrapper {
    text-align: center;
  }


#s-360d7ba0-5929-433c-81ee-23ed4012d229.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}

#s-5cbefcb4-115b-4bc9-a6ae-0f0e5e9904dc {
  min-height: 50px;
}
@media (min-width: 1200px){#s-5cbefcb4-115b-4bc9-a6ae-0f0e5e9904dc {
  display: none;
}
#s-5cbefcb4-115b-4bc9-a6ae-0f0e5e9904dc, #wrap-s-5cbefcb4-115b-4bc9-a6ae-0f0e5e9904dc { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5cbefcb4-115b-4bc9-a6ae-0f0e5e9904dc {
  display: none;
}
#s-5cbefcb4-115b-4bc9-a6ae-0f0e5e9904dc, #wrap-s-5cbefcb4-115b-4bc9-a6ae-0f0e5e9904dc { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-5cbefcb4-115b-4bc9-a6ae-0f0e5e9904dc {
  display: none;
}
#s-5cbefcb4-115b-4bc9-a6ae-0f0e5e9904dc, #wrap-s-5cbefcb4-115b-4bc9-a6ae-0f0e5e9904dc { display:none !important; }}@media (max-width: 767px){#s-5cbefcb4-115b-4bc9-a6ae-0f0e5e9904dc {
  
}
}







#s-5cbefcb4-115b-4bc9-a6ae-0f0e5e9904dc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5cbefcb4-115b-4bc9-a6ae-0f0e5e9904dc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-96e4723c-b48c-4f78-847c-046016b8761a {
  margin-top: 25px;
margin-left: 0%;
margin-right: 0%;
text-align: center;
}
@media (min-width: 1200px){#s-96e4723c-b48c-4f78-847c-046016b8761a {
  display: none;
}
#s-96e4723c-b48c-4f78-847c-046016b8761a, #wrap-s-96e4723c-b48c-4f78-847c-046016b8761a { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-96e4723c-b48c-4f78-847c-046016b8761a {
  display: none;
}
#s-96e4723c-b48c-4f78-847c-046016b8761a, #wrap-s-96e4723c-b48c-4f78-847c-046016b8761a { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-96e4723c-b48c-4f78-847c-046016b8761a {
  display: none;
}
#s-96e4723c-b48c-4f78-847c-046016b8761a, #wrap-s-96e4723c-b48c-4f78-847c-046016b8761a { display:none !important; }}






  #s-96e4723c-b48c-4f78-847c-046016b8761a img.shogun-image {
    

    
    
    
  }


#s-96e4723c-b48c-4f78-847c-046016b8761a .shogun-image-content {
  
    align-items: center;
  
}

#s-cc7338c0-e56c-49a9-9cf4-317fa784fa14 {
  margin-top: 50px;
margin-left: 5%;
margin-right: 5%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-cc7338c0-e56c-49a9-9cf4-317fa784fa14 .shogun-heading-component h2 {
  color: rgba(20, 20, 20, 1);
  font-weight:   ;
  
  font-style:   ;
  font-size: 25px;
  line-height: 1.5em;
  letter-spacing: 3px;
  
}



@media (max-width: 767px){#s-1016419b-2e48-4024-b8a1-1b8a09fefd72 {
  margin-left: 10%;
margin-right: 10%;
}
}
#s-75bc736b-7d29-4966-bfe5-f7fa27be1572 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-left: 25%;
padding-bottom: 15px;
padding-right: 25%;
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
}
#s-75bc736b-7d29-4966-bfe5-f7fa27be1572:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-75bc736b-7d29-4966-bfe5-f7fa27be1572:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-75bc736b-7d29-4966-bfe5-f7fa27be1572-btn-wrapper {
    text-align: center;
  }


#s-75bc736b-7d29-4966-bfe5-f7fa27be1572.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-75bc736b-7d29-4966-bfe5-f7fa27be1572-btn-wrapper {
    text-align: center;
  }


#s-75bc736b-7d29-4966-bfe5-f7fa27be1572.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-75bc736b-7d29-4966-bfe5-f7fa27be1572-btn-wrapper {
    text-align: center;
  }


#s-75bc736b-7d29-4966-bfe5-f7fa27be1572.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-75bc736b-7d29-4966-bfe5-f7fa27be1572-btn-wrapper {
    text-align: center;
  }


#s-75bc736b-7d29-4966-bfe5-f7fa27be1572.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-75bc736b-7d29-4966-bfe5-f7fa27be1572-btn-wrapper {
    text-align: center;
  }


#s-75bc736b-7d29-4966-bfe5-f7fa27be1572.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}
  #s-75bc736b-7d29-4966-bfe5-f7fa27be1572-btn-wrapper {
    text-align: center;
  }


#s-75bc736b-7d29-4966-bfe5-f7fa27be1572.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}

#s-d6919842-2ad6-42f0-9594-cd2d8726969b {
  margin-top: 50px;
min-height: 50px;
}
@media (min-width: 1200px){#s-d6919842-2ad6-42f0-9594-cd2d8726969b {
  display: none;
}
#s-d6919842-2ad6-42f0-9594-cd2d8726969b, #wrap-s-d6919842-2ad6-42f0-9594-cd2d8726969b { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d6919842-2ad6-42f0-9594-cd2d8726969b {
  display: none;
}
#s-d6919842-2ad6-42f0-9594-cd2d8726969b, #wrap-s-d6919842-2ad6-42f0-9594-cd2d8726969b { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d6919842-2ad6-42f0-9594-cd2d8726969b {
  display: none;
}
#s-d6919842-2ad6-42f0-9594-cd2d8726969b, #wrap-s-d6919842-2ad6-42f0-9594-cd2d8726969b { display:none !important; }}







#s-d6919842-2ad6-42f0-9594-cd2d8726969b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d6919842-2ad6-42f0-9594-cd2d8726969b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d90b6e46-a494-4904-ba9c-5eaf5df3a2fa {
  text-align: center;
}







  #s-d90b6e46-a494-4904-ba9c-5eaf5df3a2fa img.shogun-image {
    

    
    
    
  }


#s-d90b6e46-a494-4904-ba9c-5eaf5df3a2fa .shogun-image-content {
  
    align-items: center;
  
}

#s-20db95bd-4b6f-4c8a-a0b5-64523276f929 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-20db95bd-4b6f-4c8a-a0b5-64523276f929 .shogun-heading-component h6 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 12px;
  line-height: ;
  letter-spacing: 2px;
  
}



#s-d8d94986-bd04-42ef-bd88-ac6d10dd3a45 {
  margin-top: -10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d8d94986-bd04-42ef-bd88-ac6d10dd3a45 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 25px;
  line-height: ;
  letter-spacing: 3px;
  
}



#s-83feba66-0433-44de-ae31-2600ea58ce40 {
  margin-top: 0px;
}

#s-62f80668-8108-4660-8365-c6f48d1dec84 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-left: 25%;
padding-bottom: 15px;
padding-right: 25%;
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
}
#s-62f80668-8108-4660-8365-c6f48d1dec84:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-62f80668-8108-4660-8365-c6f48d1dec84:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-62f80668-8108-4660-8365-c6f48d1dec84-btn-wrapper {
    text-align: center;
  }


#s-62f80668-8108-4660-8365-c6f48d1dec84.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-62f80668-8108-4660-8365-c6f48d1dec84-btn-wrapper {
    text-align: center;
  }


#s-62f80668-8108-4660-8365-c6f48d1dec84.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-62f80668-8108-4660-8365-c6f48d1dec84-btn-wrapper {
    text-align: center;
  }


#s-62f80668-8108-4660-8365-c6f48d1dec84.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-62f80668-8108-4660-8365-c6f48d1dec84-btn-wrapper {
    text-align: center;
  }


#s-62f80668-8108-4660-8365-c6f48d1dec84.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-62f80668-8108-4660-8365-c6f48d1dec84-btn-wrapper {
    text-align: center;
  }


#s-62f80668-8108-4660-8365-c6f48d1dec84.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}
  #s-62f80668-8108-4660-8365-c6f48d1dec84-btn-wrapper {
    text-align: center;
  }


#s-62f80668-8108-4660-8365-c6f48d1dec84.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}

#s-53c1b8de-f6cc-4c86-a1d6-dffbcb7c4000 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-53c1b8de-f6cc-4c86-a1d6-dffbcb7c4000 {
  display: none;
}
#s-53c1b8de-f6cc-4c86-a1d6-dffbcb7c4000, #wrap-s-53c1b8de-f6cc-4c86-a1d6-dffbcb7c4000 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-53c1b8de-f6cc-4c86-a1d6-dffbcb7c4000 {
  display: none;
}
#s-53c1b8de-f6cc-4c86-a1d6-dffbcb7c4000, #wrap-s-53c1b8de-f6cc-4c86-a1d6-dffbcb7c4000 { display:none !important; }}@media (max-width: 767px){#s-53c1b8de-f6cc-4c86-a1d6-dffbcb7c4000 {
  display: none;
}
#s-53c1b8de-f6cc-4c86-a1d6-dffbcb7c4000, #wrap-s-53c1b8de-f6cc-4c86-a1d6-dffbcb7c4000 { display:none !important; }}







#s-53c1b8de-f6cc-4c86-a1d6-dffbcb7c4000 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-53c1b8de-f6cc-4c86-a1d6-dffbcb7c4000.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c5b96422-607f-42a3-abc8-085220826539 {
  margin-top: 50px;
text-align: center;
}







  #s-c5b96422-607f-42a3-abc8-085220826539 img.shogun-image {
    

    
    
    
  }


#s-c5b96422-607f-42a3-abc8-085220826539 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-6ffe4e51-7e77-4ee9-842c-1cdd749cfc8c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6ffe4e51-7e77-4ee9-842c-1cdd749cfc8c"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-6ffe4e51-7e77-4ee9-842c-1cdd749cfc8c"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-6ffe4e51-7e77-4ee9-842c-1cdd749cfc8c"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-6ffe4e51-7e77-4ee9-842c-1cdd749cfc8c"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-6ffe4e51-7e77-4ee9-842c-1cdd749cfc8c"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-6ffe4e51-7e77-4ee9-842c-1cdd749cfc8c"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

#s-467e29e5-b3c3-4a46-b541-b92bc116155f {
  margin-bottom: -20px;
}

#s-06b6ca31-64c0-496b-a012-a0a719d3f341 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-06b6ca31-64c0-496b-a012-a0a719d3f341 {
  margin-top: 0px;
}
}
#s-06b6ca31-64c0-496b-a012-a0a719d3f341 .shogun-heading-component h2 {
  color: rgba(51, 51, 51, 1);
  font-weight:   ;
  
  font-style:   ;
  font-size: 26px;
  line-height: ;
  letter-spacing: 5px;
  
}



#s-9519f387-0e8d-49e1-90cc-f079d5436cd3 {
  margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
}
#s-9519f387-0e8d-49e1-90cc-f079d5436cd3:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-9519f387-0e8d-49e1-90cc-f079d5436cd3:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-9519f387-0e8d-49e1-90cc-f079d5436cd3-btn-wrapper {
    text-align: center;
  }


#s-9519f387-0e8d-49e1-90cc-f079d5436cd3.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-9519f387-0e8d-49e1-90cc-f079d5436cd3-btn-wrapper {
    text-align: center;
  }


#s-9519f387-0e8d-49e1-90cc-f079d5436cd3.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9519f387-0e8d-49e1-90cc-f079d5436cd3-btn-wrapper {
    text-align: center;
  }


#s-9519f387-0e8d-49e1-90cc-f079d5436cd3.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9519f387-0e8d-49e1-90cc-f079d5436cd3-btn-wrapper {
    text-align: center;
  }


#s-9519f387-0e8d-49e1-90cc-f079d5436cd3.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-9519f387-0e8d-49e1-90cc-f079d5436cd3-btn-wrapper {
    text-align: center;
  }


#s-9519f387-0e8d-49e1-90cc-f079d5436cd3.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}
  #s-9519f387-0e8d-49e1-90cc-f079d5436cd3-btn-wrapper {
    text-align: center;
  }


#s-9519f387-0e8d-49e1-90cc-f079d5436cd3.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}

/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

@media (max-width: 1024px) {
  .shg-c,
  .shg-box {
    background-attachment: scroll !important;
  }
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape) {
  .shg-box {
    background-attachment: scroll !important;
  }
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}
.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-lazyload-bg-image {
  display: none;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}
/* <-- User Content Animations */

.shogun-form-error-msg, .shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}

.shg-c:before,.shg-c:after{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width: 1024px){.shg-c,.shg-box{background-attachment:scroll !important}}@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape){.shg-box{background-attachment:scroll !important}}#mc_embed_signup .clear{width:auto !important;height:auto !important;visibility:visible !important}.shg-clearfix:after{content:"";display:block;clear:both}.shogun-image{max-width:100%;min-height:inherit;max-height:inherit;display:inline !important;border:0;vertical-align:middle}.shg-fw{margin-left:calc(50% - 50vw);width:100vw}.shg-fw .shg-fw{margin-left:auto;margin-right:auto;width:100%}div[data-shg-lightbox-switch]{cursor:pointer}.shg-lightbox{position:fixed;z-index:999999;left:0;top:0;width:100%;height:100%;overflow:hidden;background-color:#000;background-color:rgba(0,0,0,0.85)}.shg-lightbox.hidden{display:none !important}.shg-lightbox .shg-lightbox-content{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:100%;text-align:center}.shg-lightbox .shg-lightbox-close{position:absolute;right:0;padding:5px 0;color:#fff;font-size:45px;margin-right:10px;line-height:30px;user-select:none;cursor:pointer;z-index:1}.shg-lightbox .shg-lightbox-image-container{padding:25px}.shg-lightbox .shg-lightbox-image{margin:auto;max-height:90vh;max-width:100%}.shg-lightbox .shg-lightbox-close:hover,.shg-lightbox .shg-lightbox-close:focus{color:#a2a2a2;text-decoration:none;cursor:pointer}.shg-lightbox .shg-lightbox-nav{cursor:pointer;position:absolute;top:50%;width:35px;height:100px;background-size:contain;background-repeat:no-repeat;background-position:center;transform:translate(0%, -50%);z-index:1}.shg-lightbox .shg-lightbox-nav.hidden{display:none !important}.shg-lightbox .shg-lightbox-nav.shg-nav-left{left:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==)}.shg-lightbox .shg-lightbox-nav.shg-nav-right{right:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+)}@media screen and (min-width: 769px){.shg-lightbox .shg-lightbox-image-container{padding:50px}}.shogun-lazyload:not([src]),.shogun-lazyloading:not([src]){opacity:0}.shogun-lazyloaded{opacity:1;transition:opacity 300ms}.shogun-lazyload-bg-image{display:none}.shogun-root a:empty,.shogun-root article:empty,.shogun-root dl:empty,.shogun-root h1:empty,.shogun-root h2:empty,.shogun-root h3:empty,.shogun-root h4:empty,.shogun-root h5:empty,.shogun-root h6:empty,.shogun-root p:empty,.shogun-root section:empty,.shogun-root ul:empty{display:unset}.shogun-root div:empty{display:inline-block}[data-animations*="enterviewport"][data-animations*="fadeIn"],[data-animations*="enterviewport"][data-animations*="zoomIn"]{opacity:0}.shogun-form-error-msg,.shogun-form-field-error-msg{display:flex;align-items:center;color:#dc143c}.shogun-badge{margin-bottom:50px}.shogun-badge-container{position:fixed;right:0;bottom:0;margin-bottom:-10px}
