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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-c7514d94-a1c7-4828-9899-94a132b89c64 {
  min-height: 420px;
text-align: center;
}
@media (max-width: 767px){#s-c7514d94-a1c7-4828-9899-94a132b89c64 {
  display: none;
}
#s-c7514d94-a1c7-4828-9899-94a132b89c64, #wrap-s-c7514d94-a1c7-4828-9899-94a132b89c64 { display: none !important; }}







#s-c7514d94-a1c7-4828-9899-94a132b89c64 .shogun-image-content {
  
    align-items: center;
  
}

.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-257af677-a328-4fa9-8577-2aa1aa983f02 {
  margin-top: 25px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-left: 25px;
padding-right: 25px;
min-height: 50px;
max-width: 1330px;
}








#s-257af677-a328-4fa9-8577-2aa1aa983f02 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-257af677-a328-4fa9-8577-2aa1aa983f02.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

@media (min-width: 0px) {
[id="s-ef98fe4b-01a0-4d15-b568-975bc8fad26d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ef98fe4b-01a0-4d15-b568-975bc8fad26d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-ef98fe4b-01a0-4d15-b568-975bc8fad26d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-ef98fe4b-01a0-4d15-b568-975bc8fad26d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-02924ef9-5976-4a22-a979-7552e0608b99 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 360px;
}








#s-02924ef9-5976-4a22-a979-7552e0608b99 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-02924ef9-5976-4a22-a979-7552e0608b99.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shogun-heading-component h1,
.shogun-heading-component h2,
.shogun-heading-component h3,
.shogun-heading-component h4,
.shogun-heading-component h5,
.shogun-heading-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  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-12fec9a6-7465-497c-8c3e-25cdaf35abe0 {
  padding-top: 0px;
padding-bottom: 10px;
text-align: left;
}

#s-12fec9a6-7465-497c-8c3e-25cdaf35abe0 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 28px;
  
  
  text-align: left;
}



.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-ed1cc97f-33c2-496b-bdc3-6ba481db3eca {
  margin-bottom: 20px;
}

.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-a58ec592-fc6d-4703-9ced-c7823f14732e {
  margin-top: 20px;
padding-top: 18px;
padding-left: 32px;
padding-bottom: 18px;
padding-right: 32px;
text-align: left;
background-color: rgba(255, 255, 255, 1);
text-decoration: none;
letter-spacing: 1px;
background-image: none;
hover-type: color;
color: rgba(223, 17, 17, 1);
}
#s-a58ec592-fc6d-4703-9ced-c7823f14732e:hover {background-color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-a58ec592-fc6d-4703-9ced-c7823f14732e:active {background-color: rgba(79, 178, 255, 1) !important;
text-decoration: none !important;}@media (max-width: 767px){#s-a58ec592-fc6d-4703-9ced-c7823f14732e {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
}
}

  #s-a58ec592-fc6d-4703-9ced-c7823f14732e-root {
    text-align: left;
  }


#s-a58ec592-fc6d-4703-9ced-c7823f14732e.shg-btn {
  color: rgba(223, 17, 17, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-a58ec592-fc6d-4703-9ced-c7823f14732e-root {
    text-align: left;
  }


#s-a58ec592-fc6d-4703-9ced-c7823f14732e.shg-btn {
  color: rgba(223, 17, 17, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a58ec592-fc6d-4703-9ced-c7823f14732e-root {
    text-align: left;
  }


#s-a58ec592-fc6d-4703-9ced-c7823f14732e.shg-btn {
  color: rgba(223, 17, 17, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a58ec592-fc6d-4703-9ced-c7823f14732e-root {
    text-align: left;
  }


#s-a58ec592-fc6d-4703-9ced-c7823f14732e.shg-btn {
  color: rgba(223, 17, 17, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-a58ec592-fc6d-4703-9ced-c7823f14732e-root {
    text-align: left;
  }


#s-a58ec592-fc6d-4703-9ced-c7823f14732e.shg-btn {
  color: rgba(223, 17, 17, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}
#s-df06ae48-108a-4bec-9caf-7a0af2c91741 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
min-height: 50px;
}








#s-df06ae48-108a-4bec-9caf-7a0af2c91741 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-df06ae48-108a-4bec-9caf-7a0af2c91741.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fc80e130-b3ee-41b9-8361-a9bf60ad1b44 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 640px;
background-position: right center;
}
@media (min-width: 1200px){#s-fc80e130-b3ee-41b9-8361-a9bf60ad1b44 {
  display: none;
}
#s-fc80e130-b3ee-41b9-8361-a9bf60ad1b44, #wrap-s-fc80e130-b3ee-41b9-8361-a9bf60ad1b44 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-fc80e130-b3ee-41b9-8361-a9bf60ad1b44 {
  display: none;
}
#s-fc80e130-b3ee-41b9-8361-a9bf60ad1b44, #wrap-s-fc80e130-b3ee-41b9-8361-a9bf60ad1b44 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-fc80e130-b3ee-41b9-8361-a9bf60ad1b44 {
  display: none;
}
#s-fc80e130-b3ee-41b9-8361-a9bf60ad1b44, #wrap-s-fc80e130-b3ee-41b9-8361-a9bf60ad1b44 { display: none !important; }}
#s-fc80e130-b3ee-41b9-8361-a9bf60ad1b44 {
  background-image: url(https://i.shgcdn.com/37a870de-bfbd-45db-abab-f60fed87e368/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-fc80e130-b3ee-41b9-8361-a9bf60ad1b44 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fc80e130-b3ee-41b9-8361-a9bf60ad1b44.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-265b5ea5-940b-4b1e-bdf6-9a7897974d17 {
  margin-top: 40px;
margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 10px;
padding-right: 25px;
max-width: 380px;
text-align: center;
}

#s-265b5ea5-940b-4b1e-bdf6-9a7897974d17 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 28px;
  
  
  text-align: center;
}



#s-53c5e758-1cc3-4fa5-b8d5-eed4235ed950 {
  margin-top: -160px;
min-height: 100px;
}
@media (min-width: 1200px){#s-53c5e758-1cc3-4fa5-b8d5-eed4235ed950 {
  display: none;
}
#s-53c5e758-1cc3-4fa5-b8d5-eed4235ed950, #wrap-s-53c5e758-1cc3-4fa5-b8d5-eed4235ed950 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-53c5e758-1cc3-4fa5-b8d5-eed4235ed950 {
  display: none;
}
#s-53c5e758-1cc3-4fa5-b8d5-eed4235ed950, #wrap-s-53c5e758-1cc3-4fa5-b8d5-eed4235ed950 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-53c5e758-1cc3-4fa5-b8d5-eed4235ed950 {
  display: none;
}
#s-53c5e758-1cc3-4fa5-b8d5-eed4235ed950, #wrap-s-53c5e758-1cc3-4fa5-b8d5-eed4235ed950 { display: none !important; }}







#s-53c5e758-1cc3-4fa5-b8d5-eed4235ed950 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-53c5e758-1cc3-4fa5-b8d5-eed4235ed950.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-442a7bf1-5b25-4066-9428-edb6c0739e24 {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-left: 25px;
padding-bottom: 20px;
padding-right: 25px;
min-height: 50px;
max-width: 300px;
}








#s-442a7bf1-5b25-4066-9428-edb6c0739e24 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-442a7bf1-5b25-4066-9428-edb6c0739e24.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-947da7a3-4331-4794-9e1b-3451901f1843 {
  margin-bottom: 20px;
}

#s-5a52c887-cc42-4123-9aea-dadf3bd86945 {
  margin-top: 0px;
padding-top: 18px;
padding-left: 32px;
padding-bottom: 18px;
padding-right: 32px;
text-align: center;
background-color: rgba(255, 255, 255, 1);
text-decoration: none;
letter-spacing: 1px;
background-image: none;
hover-type: color;
color: rgba(223, 17, 17, 1);
}
#s-5a52c887-cc42-4123-9aea-dadf3bd86945:hover {background-color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-5a52c887-cc42-4123-9aea-dadf3bd86945:active {background-color: rgba(79, 178, 255, 1) !important;
text-decoration: none !important;}

  #s-5a52c887-cc42-4123-9aea-dadf3bd86945-root {
    text-align: center;
  }


#s-5a52c887-cc42-4123-9aea-dadf3bd86945.shg-btn {
  color: rgba(223, 17, 17, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-5a52c887-cc42-4123-9aea-dadf3bd86945-root {
    text-align: center;
  }


#s-5a52c887-cc42-4123-9aea-dadf3bd86945.shg-btn {
  color: rgba(223, 17, 17, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-5a52c887-cc42-4123-9aea-dadf3bd86945-root {
    text-align: center;
  }


#s-5a52c887-cc42-4123-9aea-dadf3bd86945.shg-btn {
  color: rgba(223, 17, 17, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-5a52c887-cc42-4123-9aea-dadf3bd86945-root {
    text-align: center;
  }


#s-5a52c887-cc42-4123-9aea-dadf3bd86945.shg-btn {
  color: rgba(223, 17, 17, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-5a52c887-cc42-4123-9aea-dadf3bd86945-root {
    text-align: center;
  }


#s-5a52c887-cc42-4123-9aea-dadf3bd86945.shg-btn {
  color: rgba(223, 17, 17, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}
#s-9fe57274-f35f-4c76-8f3b-4155103ede1f {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 400px;
text-align: center;
}
@media (max-width: 767px){#s-9fe57274-f35f-4c76-8f3b-4155103ede1f {
  display: none;
}
#s-9fe57274-f35f-4c76-8f3b-4155103ede1f, #wrap-s-9fe57274-f35f-4c76-8f3b-4155103ede1f { display: none !important; }}







#s-9fe57274-f35f-4c76-8f3b-4155103ede1f .shogun-image-content {
  
    align-items: center;
  
}

#s-254f5900-022d-4e0d-919f-58f7e8f712ab {
  margin-top: 25px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 20px;
padding-left: 25px;
padding-bottom: 20px;
padding-right: 25px;
min-height: 50px;
max-width: 1330px;
}








#s-254f5900-022d-4e0d-919f-58f7e8f712ab > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-254f5900-022d-4e0d-919f-58f7e8f712ab.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-647401aa-8df7-4b28-a226-da836dc937c0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-647401aa-8df7-4b28-a226-da836dc937c0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-647401aa-8df7-4b28-a226-da836dc937c0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-647401aa-8df7-4b28-a226-da836dc937c0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-cc86f69a-3a06-490d-8c25-1b4a382bd6f9 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 360px;
}
@media (min-width: 768px) and (max-width: 991px){#s-cc86f69a-3a06-490d-8c25-1b4a382bd6f9 {
  max-width: 320px;
}
}







#s-cc86f69a-3a06-490d-8c25-1b4a382bd6f9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cc86f69a-3a06-490d-8c25-1b4a382bd6f9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cafa47a6-0cbf-413a-a818-e2ee7cdab09f {
  padding-top: 0px;
padding-bottom: 20px;
text-align: left;
}

#s-cafa47a6-0cbf-413a-a818-e2ee7cdab09f .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 28px;
  
  
  text-align: left;
}



#s-eaa14b25-7467-4deb-8a92-e9dc81dcb7b4 {
  margin-bottom: 0px;
}

#s-a0e69c24-8566-421d-842c-c824aa8c014d {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 10px;
min-height: 670px;
background-position: center bottom;
}
@media (min-width: 1200px){#s-a0e69c24-8566-421d-842c-c824aa8c014d {
  display: none;
}
#s-a0e69c24-8566-421d-842c-c824aa8c014d, #wrap-s-a0e69c24-8566-421d-842c-c824aa8c014d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a0e69c24-8566-421d-842c-c824aa8c014d {
  display: none;
}
#s-a0e69c24-8566-421d-842c-c824aa8c014d, #wrap-s-a0e69c24-8566-421d-842c-c824aa8c014d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a0e69c24-8566-421d-842c-c824aa8c014d {
  display: none;
}
#s-a0e69c24-8566-421d-842c-c824aa8c014d, #wrap-s-a0e69c24-8566-421d-842c-c824aa8c014d { display: none !important; }}







#s-a0e69c24-8566-421d-842c-c824aa8c014d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a0e69c24-8566-421d-842c-c824aa8c014d.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-2a1314a5-abd0-436b-84e0-42f7d255fbc5 {
  margin-top: 40px;
margin-left: auto;
margin-right: auto;
padding-left: 25px;
padding-right: 25px;
min-height: 50px;
max-width: 480px;
}








#s-2a1314a5-abd0-436b-84e0-42f7d255fbc5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2a1314a5-abd0-436b-84e0-42f7d255fbc5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8e2c08fa-465f-41f5-abdd-cf3374a2dcdf {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 10px;
padding-right: 25px;
max-width: 380px;
text-align: center;
}

#s-8e2c08fa-465f-41f5-abdd-cf3374a2dcdf .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 28px;
  
  
  text-align: center;
}



#s-d5a30625-e059-4f7b-85bd-846006954e63 {
  margin-top: 10px;
margin-bottom: 0px;
}

#s-2ce7fc01-660b-4050-a0e6-7123a6874c68 {
  margin-top: 60px;
margin-left: auto;
margin-bottom: 60px;
margin-right: auto;
min-height: 50px;
max-width: 1330px;
}
@media (max-width: 767px){#s-2ce7fc01-660b-4050-a0e6-7123a6874c68 {
  margin-top: 40px;
margin-bottom: 40px;
}
}







#s-2ce7fc01-660b-4050-a0e6-7123a6874c68 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2ce7fc01-660b-4050-a0e6-7123a6874c68.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2e8e4940-aaaf-4512-9c2a-b24f2f65c25c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2e8e4940-aaaf-4512-9c2a-b24f2f65c25c .shogun-heading-component h2 {
  color: rgba(255, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-10f2c0ae-7a42-456f-bb5f-0738c06cecce {
  margin-top: 40px;
}
@media (max-width: 767px){#s-10f2c0ae-7a42-456f-bb5f-0738c06cecce {
  margin-top: 20px;
margin-left: auto;
margin-right: auto;
max-width: 520px;
}
}
@media (min-width: 0px) {
[id="s-10f2c0ae-7a42-456f-bb5f-0738c06cecce"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-10f2c0ae-7a42-456f-bb5f-0738c06cecce"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-10f2c0ae-7a42-456f-bb5f-0738c06cecce"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-10f2c0ae-7a42-456f-bb5f-0738c06cecce"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-01712429-b842-481d-9433-c6098e79a2a1 {
  margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
padding-top: 22px;
padding-left: 22px;
padding-bottom: 22px;
padding-right: 22px;
min-height: 50px;
}
@media (max-width: 767px){#s-01712429-b842-481d-9433-c6098e79a2a1 {
  margin-bottom: 0px;
padding-left: 0px;
padding-right: 0px;
}
}







#s-01712429-b842-481d-9433-c6098e79a2a1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-01712429-b842-481d-9433-c6098e79a2a1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e4dc6b8b-75d6-4341-999b-eb1fd1986a18 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}







  #s-e4dc6b8b-75d6-4341-999b-eb1fd1986a18 img.shogun-image {
    

    
    
    
  }


#s-e4dc6b8b-75d6-4341-999b-eb1fd1986a18 .shogun-image-content {
  
    align-items: center;
  
}

#s-d78c289b-c922-4cd5-b43a-c7fb4925d803 {
  padding-top: 10px;
min-height: 50px;
}








#s-d78c289b-c922-4cd5-b43a-c7fb4925d803 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d78c289b-c922-4cd5-b43a-c7fb4925d803.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5a5cee2f-9a61-41ac-9827-e1db46d7dfb8 {
  padding-bottom: 10px;
text-align: center;
}

#s-5a5cee2f-9a61-41ac-9827-e1db46d7dfb8 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-1dc222d5-050f-4f6e-a034-352a26b8447f {
  margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
padding-top: 22px;
padding-left: 22px;
padding-bottom: 22px;
padding-right: 22px;
min-height: 50px;
}
@media (max-width: 767px){#s-1dc222d5-050f-4f6e-a034-352a26b8447f {
  margin-bottom: 0px;
padding-left: 0px;
padding-right: 0px;
}
}







#s-1dc222d5-050f-4f6e-a034-352a26b8447f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1dc222d5-050f-4f6e-a034-352a26b8447f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fa5c70ad-102e-4050-a4ed-0f67c7068c90 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}







  #s-fa5c70ad-102e-4050-a4ed-0f67c7068c90 img.shogun-image {
    

    
    
    
  }


#s-fa5c70ad-102e-4050-a4ed-0f67c7068c90 .shogun-image-content {
  
    align-items: center;
  
}

#s-33869956-e7ce-4f37-a6fe-a6a786e5c74e {
  padding-top: 10px;
min-height: 50px;
}








#s-33869956-e7ce-4f37-a6fe-a6a786e5c74e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-33869956-e7ce-4f37-a6fe-a6a786e5c74e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-373c65e8-56d2-4069-9993-d4ce1f7cca3f {
  padding-bottom: 10px;
text-align: center;
}

#s-373c65e8-56d2-4069-9993-d4ce1f7cca3f .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-e3371277-9752-45e8-ba5e-f57da633eb5f {
  margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
padding-top: 22px;
padding-left: 22px;
padding-bottom: 22px;
padding-right: 22px;
min-height: 50px;
}
@media (max-width: 767px){#s-e3371277-9752-45e8-ba5e-f57da633eb5f {
  margin-bottom: 0px;
padding-left: 0px;
padding-right: 0px;
}
}







#s-e3371277-9752-45e8-ba5e-f57da633eb5f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e3371277-9752-45e8-ba5e-f57da633eb5f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5393dd5d-8f8e-4894-b812-1996f5d53bf6 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}







  #s-5393dd5d-8f8e-4894-b812-1996f5d53bf6 img.shogun-image {
    

    
    
    
  }


#s-5393dd5d-8f8e-4894-b812-1996f5d53bf6 .shogun-image-content {
  
    align-items: center;
  
}

#s-efffad6a-5fe8-412b-afe7-4bffe27ba337 {
  padding-top: 10px;
min-height: 50px;
}








#s-efffad6a-5fe8-412b-afe7-4bffe27ba337 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-efffad6a-5fe8-412b-afe7-4bffe27ba337.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a8cb93d3-c2af-42b6-8589-44255db3cbdb {
  padding-bottom: 10px;
text-align: center;
}

#s-a8cb93d3-c2af-42b6-8589-44255db3cbdb .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-be658da6-020b-4434-bcdd-ab77d1d7e167 {
  margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
padding-top: 22px;
padding-left: 22px;
padding-bottom: 22px;
padding-right: 22px;
min-height: 50px;
}
@media (max-width: 767px){#s-be658da6-020b-4434-bcdd-ab77d1d7e167 {
  margin-bottom: 0px;
padding-left: 0px;
padding-right: 0px;
}
}







#s-be658da6-020b-4434-bcdd-ab77d1d7e167 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-be658da6-020b-4434-bcdd-ab77d1d7e167.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b83e58ee-9ff3-41e3-9439-4777e298d5f0 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}







  #s-b83e58ee-9ff3-41e3-9439-4777e298d5f0 img.shogun-image {
    

    
    
    
  }


#s-b83e58ee-9ff3-41e3-9439-4777e298d5f0 .shogun-image-content {
  
    align-items: center;
  
}

#s-a1be230b-fa20-4f7b-90f7-0896f982cde8 {
  padding-top: 10px;
min-height: 50px;
}








#s-a1be230b-fa20-4f7b-90f7-0896f982cde8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a1be230b-fa20-4f7b-90f7-0896f982cde8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-59993c46-cd8d-4995-94ea-bd839ddcd634 {
  padding-bottom: 10px;
text-align: center;
}

#s-59993c46-cd8d-4995-94ea-bd839ddcd634 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



@media (max-width: 767px){#s-e48b64e0-fa98-4566-b5f6-c51379f85d90 {
  margin-left: auto;
margin-right: auto;
max-width: 520px;
}
}
@media (min-width: 0px) {
[id="s-e48b64e0-fa98-4566-b5f6-c51379f85d90"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-e48b64e0-fa98-4566-b5f6-c51379f85d90"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-e48b64e0-fa98-4566-b5f6-c51379f85d90"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-e48b64e0-fa98-4566-b5f6-c51379f85d90"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-22977390-346c-4d82-b9ac-6ac2eb3b4418 {
  margin-left: auto;
margin-right: auto;
padding-top: 22px;
padding-left: 22px;
padding-bottom: 22px;
padding-right: 22px;
min-height: 50px;
}
@media (max-width: 767px){#s-22977390-346c-4d82-b9ac-6ac2eb3b4418 {
  padding-left: 0px;
padding-right: 0px;
}
}







#s-22977390-346c-4d82-b9ac-6ac2eb3b4418 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-22977390-346c-4d82-b9ac-6ac2eb3b4418.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-65fb6f4c-d500-4314-9106-478226143b21 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}







  #s-65fb6f4c-d500-4314-9106-478226143b21 img.shogun-image {
    

    
    
    
  }


#s-65fb6f4c-d500-4314-9106-478226143b21 .shogun-image-content {
  
    align-items: center;
  
}

#s-97ecc8a9-7f02-48b3-85ad-ff7adb820ab5 {
  padding-top: 10px;
min-height: 50px;
}








#s-97ecc8a9-7f02-48b3-85ad-ff7adb820ab5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-97ecc8a9-7f02-48b3-85ad-ff7adb820ab5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2476b3e7-21bf-4b42-a07a-789105e2e859 {
  padding-bottom: 10px;
text-align: center;
}

#s-2476b3e7-21bf-4b42-a07a-789105e2e859 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-e2ba820a-3059-45b3-b101-12af90ddabed {
  margin-left: auto;
margin-right: auto;
padding-top: 22px;
padding-left: 22px;
padding-bottom: 22px;
padding-right: 22px;
min-height: 50px;
}
@media (max-width: 767px){#s-e2ba820a-3059-45b3-b101-12af90ddabed {
  padding-left: 0px;
padding-right: 0px;
}
}







#s-e2ba820a-3059-45b3-b101-12af90ddabed > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e2ba820a-3059-45b3-b101-12af90ddabed.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3c7ffc8e-b368-4175-bb89-3d6984145100 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}







  #s-3c7ffc8e-b368-4175-bb89-3d6984145100 img.shogun-image {
    

    
    
    
  }


#s-3c7ffc8e-b368-4175-bb89-3d6984145100 .shogun-image-content {
  
    align-items: center;
  
}

#s-68b5b882-f0e8-447a-8362-beb16cf9c573 {
  padding-top: 10px;
min-height: 50px;
}








#s-68b5b882-f0e8-447a-8362-beb16cf9c573 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-68b5b882-f0e8-447a-8362-beb16cf9c573.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-53792be1-e21c-4989-8ae7-6163df16bb0e {
  padding-bottom: 10px;
text-align: center;
}

#s-53792be1-e21c-4989-8ae7-6163df16bb0e .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-ae565efc-75c2-4042-9da5-513a82080b37 {
  margin-left: auto;
margin-right: auto;
padding-top: 22px;
padding-left: 22px;
padding-bottom: 22px;
padding-right: 22px;
min-height: 50px;
}
@media (max-width: 767px){#s-ae565efc-75c2-4042-9da5-513a82080b37 {
  padding-left: 0px;
padding-right: 0px;
}
}







#s-ae565efc-75c2-4042-9da5-513a82080b37 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ae565efc-75c2-4042-9da5-513a82080b37.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dd455c09-a162-4b02-9797-c9ed3326c7a1 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}







  #s-dd455c09-a162-4b02-9797-c9ed3326c7a1 img.shogun-image {
    

    
    
    
  }


#s-dd455c09-a162-4b02-9797-c9ed3326c7a1 .shogun-image-content {
  
    align-items: center;
  
}

#s-e39f8e3d-3a22-4fc6-85f5-c20880155089 {
  padding-top: 10px;
min-height: 50px;
}








#s-e39f8e3d-3a22-4fc6-85f5-c20880155089 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e39f8e3d-3a22-4fc6-85f5-c20880155089.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e57184a9-83b6-433a-933f-977c65b239ec {
  padding-bottom: 10px;
text-align: center;
}

#s-e57184a9-83b6-433a-933f-977c65b239ec .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-f2324447-cc1a-4435-a330-c96e1e1338f5 {
  margin-left: auto;
margin-right: auto;
padding-top: 22px;
padding-left: 22px;
padding-bottom: 22px;
padding-right: 22px;
min-height: 50px;
}
@media (max-width: 767px){#s-f2324447-cc1a-4435-a330-c96e1e1338f5 {
  padding-left: 0px;
padding-right: 0px;
}
}







#s-f2324447-cc1a-4435-a330-c96e1e1338f5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f2324447-cc1a-4435-a330-c96e1e1338f5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5a0a2df1-25de-489c-ad5a-7ca309e42cd0 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}







  #s-5a0a2df1-25de-489c-ad5a-7ca309e42cd0 img.shogun-image {
    

    
    
    
  }


#s-5a0a2df1-25de-489c-ad5a-7ca309e42cd0 .shogun-image-content {
  
    align-items: center;
  
}

#s-6b23fd0e-f041-44a1-82c3-8cbb3bc0ef0b {
  padding-top: 10px;
min-height: 50px;
}








#s-6b23fd0e-f041-44a1-82c3-8cbb3bc0ef0b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6b23fd0e-f041-44a1-82c3-8cbb3bc0ef0b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7befdac0-7596-4373-9b20-d9ffe6e0e067 {
  padding-bottom: 10px;
text-align: center;
}

#s-7befdac0-7596-4373-9b20-d9ffe6e0e067 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-9c564941-f575-4647-9140-2e24d67eff96 {
  padding-top: 10px;
padding-bottom: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-9c564941-f575-4647-9140-2e24d67eff96 {
  display: none;
}
#s-9c564941-f575-4647-9140-2e24d67eff96, #wrap-s-9c564941-f575-4647-9140-2e24d67eff96 { display: none !important; }}







#s-9c564941-f575-4647-9140-2e24d67eff96 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9c564941-f575-4647-9140-2e24d67eff96.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b8fbb19f-648e-463a-ab0c-65ed9a097a6c {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 20px;
margin-right: 0px;
}
@media (max-width: 767px){#s-b8fbb19f-648e-463a-ab0c-65ed9a097a6c {
  padding-left: 0px;
padding-right: 0px;
}
}
@media (min-width: 0px) {
[id="s-b8fbb19f-648e-463a-ab0c-65ed9a097a6c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b8fbb19f-648e-463a-ab0c-65ed9a097a6c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b8fbb19f-648e-463a-ab0c-65ed9a097a6c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b8fbb19f-648e-463a-ab0c-65ed9a097a6c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-b8fbb19f-648e-463a-ab0c-65ed9a097a6c"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-0062de43-0463-4976-ba69-8f7e39df457b {
  background-size: cover;
margin-left: 0px;
min-height: 300px;
max-width: 640px;
background-position: right center;
}
@media (min-width: 1200px){#s-0062de43-0463-4976-ba69-8f7e39df457b {
  margin-left: auto;
margin-right: 0px;
}
}@media (max-width: 767px){#s-0062de43-0463-4976-ba69-8f7e39df457b {
  display: none;
}
#s-0062de43-0463-4976-ba69-8f7e39df457b, #wrap-s-0062de43-0463-4976-ba69-8f7e39df457b { display: none !important; }}







#s-0062de43-0463-4976-ba69-8f7e39df457b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0062de43-0463-4976-ba69-8f7e39df457b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0bc1361a-f8e9-4655-9fb7-665f392f7501 {
  text-align: center;
}







  #s-0bc1361a-f8e9-4655-9fb7-665f392f7501 img.shogun-image {
    

    
    
    
  }


#s-0bc1361a-f8e9-4655-9fb7-665f392f7501 .shogun-image-content {
  
    align-items: center;
  
}

#s-dde4a499-10fe-4935-9a61-d1c6e9928dd3 {
  margin-right: auto;
padding-top: 40px;
padding-left: 25px;
padding-bottom: 40px;
padding-right: 25px;
min-height: 50px;
max-width: 480px;
}
@media (max-width: 767px){#s-dde4a499-10fe-4935-9a61-d1c6e9928dd3 {
  margin-left: auto;
padding-top: 40px;
padding-left: 25px;
padding-bottom: 20px;
padding-right: 25px;
max-width: 560px;
display: none;
}
#s-dde4a499-10fe-4935-9a61-d1c6e9928dd3, #wrap-s-dde4a499-10fe-4935-9a61-d1c6e9928dd3 { display: none !important; }}







#s-dde4a499-10fe-4935-9a61-d1c6e9928dd3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dde4a499-10fe-4935-9a61-d1c6e9928dd3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5886aee0-242f-49a1-843c-4a37ce58a944 {
  padding-top: 0px;
padding-bottom: 20px;
text-align: left;
}
@media (max-width: 767px){#s-5886aee0-242f-49a1-843c-4a37ce58a944 {
  padding-top: 0px;
text-align: center;
}
}
#s-5886aee0-242f-49a1-843c-4a37ce58a944 .shogun-heading-component h2 {
  color: rgba(255, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 28px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-5886aee0-242f-49a1-843c-4a37ce58a944 .shogun-heading-component h2 {
  color: rgba(255, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 28px;
  
  
  text-align: center;
}


}
#s-6676cb4d-147e-4370-8e61-501b68b2f7e8 {
  margin-bottom: 0px;
}

#s-0347a2f0-667c-4b08-ab75-dd6d8e02691a {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 400px;
text-align: center;
}
@media (max-width: 767px){#s-0347a2f0-667c-4b08-ab75-dd6d8e02691a {
  display: none;
}
#s-0347a2f0-667c-4b08-ab75-dd6d8e02691a, #wrap-s-0347a2f0-667c-4b08-ab75-dd6d8e02691a { display: none !important; }}







#s-0347a2f0-667c-4b08-ab75-dd6d8e02691a .shogun-image-content {
  
    align-items: center;
  
}

#s-d72815c3-50a1-433d-b39d-aab7587d2ed1 {
  margin-top: 25px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 20px;
padding-left: 25px;
padding-bottom: 20px;
padding-right: 25px;
min-height: 50px;
max-width: 1330px;
}








#s-d72815c3-50a1-433d-b39d-aab7587d2ed1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d72815c3-50a1-433d-b39d-aab7587d2ed1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-3b28728c-fa9a-43bf-bd1c-be3c0eb66d04"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3b28728c-fa9a-43bf-bd1c-be3c0eb66d04"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-3b28728c-fa9a-43bf-bd1c-be3c0eb66d04"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-3b28728c-fa9a-43bf-bd1c-be3c0eb66d04"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-ddc68a61-1993-46d7-8fd8-6b593f5b6569 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 400px;
}








#s-ddc68a61-1993-46d7-8fd8-6b593f5b6569 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ddc68a61-1993-46d7-8fd8-6b593f5b6569.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-92216d65-1d66-428b-99a2-08508ba8fb7d {
  padding-top: 0px;
padding-bottom: 10px;
text-align: left;
}

#s-92216d65-1d66-428b-99a2-08508ba8fb7d .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 28px;
  
  
  text-align: left;
}



#s-d868ffba-3197-4c45-a941-018c8bfebb0c {
  margin-bottom: 0px;
}

#s-d10b5f1a-fa5f-4b82-868b-9b6ef9131ebf {
  margin-left: auto;
margin-right: auto;
padding-top: 40px;
padding-left: 25px;
padding-bottom: 40px;
padding-right: 25px;
min-height: 50px;
max-width: 480px;
}
@media (min-width: 1200px){#s-d10b5f1a-fa5f-4b82-868b-9b6ef9131ebf {
  display: none;
}
#s-d10b5f1a-fa5f-4b82-868b-9b6ef9131ebf, #wrap-s-d10b5f1a-fa5f-4b82-868b-9b6ef9131ebf { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d10b5f1a-fa5f-4b82-868b-9b6ef9131ebf {
  display: none;
}
#s-d10b5f1a-fa5f-4b82-868b-9b6ef9131ebf, #wrap-s-d10b5f1a-fa5f-4b82-868b-9b6ef9131ebf { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d10b5f1a-fa5f-4b82-868b-9b6ef9131ebf {
  display: none;
}
#s-d10b5f1a-fa5f-4b82-868b-9b6ef9131ebf, #wrap-s-d10b5f1a-fa5f-4b82-868b-9b6ef9131ebf { display: none !important; }}@media (max-width: 767px){#s-d10b5f1a-fa5f-4b82-868b-9b6ef9131ebf {
  padding-top: 40px;
padding-left: 25px;
padding-bottom: 20px;
padding-right: 25px;
max-width: 560px;
}
}







#s-d10b5f1a-fa5f-4b82-868b-9b6ef9131ebf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d10b5f1a-fa5f-4b82-868b-9b6ef9131ebf.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-883c8bf7-fd7f-44b5-b641-52d1b55484b3 {
  padding-top: 0px;
padding-bottom: 20px;
text-align: left;
}
@media (max-width: 767px){#s-883c8bf7-fd7f-44b5-b641-52d1b55484b3 {
  padding-top: 0px;
text-align: center;
}
}
#s-883c8bf7-fd7f-44b5-b641-52d1b55484b3 .shogun-heading-component h2 {
  color: rgba(255, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 28px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-883c8bf7-fd7f-44b5-b641-52d1b55484b3 .shogun-heading-component h2 {
  color: rgba(255, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 28px;
  
  
  text-align: center;
}


}
#s-ae44e9e0-d385-4fda-8aca-0c9dc5056733 {
  margin-bottom: 0px;
}

#s-799f4670-9b20-40ea-a2a5-d443516d409a {
  margin-left: auto;
margin-right: auto;
text-align: right;
}
@media (min-width: 1200px){#s-799f4670-9b20-40ea-a2a5-d443516d409a {
  display: none;
}
#s-799f4670-9b20-40ea-a2a5-d443516d409a, #wrap-s-799f4670-9b20-40ea-a2a5-d443516d409a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-799f4670-9b20-40ea-a2a5-d443516d409a {
  display: none;
}
#s-799f4670-9b20-40ea-a2a5-d443516d409a, #wrap-s-799f4670-9b20-40ea-a2a5-d443516d409a { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-799f4670-9b20-40ea-a2a5-d443516d409a {
  display: none;
}
#s-799f4670-9b20-40ea-a2a5-d443516d409a, #wrap-s-799f4670-9b20-40ea-a2a5-d443516d409a { display: none !important; }}@media (max-width: 767px){#s-799f4670-9b20-40ea-a2a5-d443516d409a {
  text-align: center;
}
}






  #s-799f4670-9b20-40ea-a2a5-d443516d409a img.shogun-image {
    

    
    
    
  }


#s-799f4670-9b20-40ea-a2a5-d443516d409a .shogun-image-content {
  
    align-items: center;
  
}

#s-6d5185ae-c256-455f-9c41-1e4dfc838187 {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-left: 25px;
padding-bottom: 40px;
padding-right: 25px;
min-height: 50px;
max-width: 480px;
}
@media (min-width: 1200px){#s-6d5185ae-c256-455f-9c41-1e4dfc838187 {
  display: none;
}
#s-6d5185ae-c256-455f-9c41-1e4dfc838187, #wrap-s-6d5185ae-c256-455f-9c41-1e4dfc838187 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6d5185ae-c256-455f-9c41-1e4dfc838187 {
  display: none;
}
#s-6d5185ae-c256-455f-9c41-1e4dfc838187, #wrap-s-6d5185ae-c256-455f-9c41-1e4dfc838187 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-6d5185ae-c256-455f-9c41-1e4dfc838187 {
  display: none;
}
#s-6d5185ae-c256-455f-9c41-1e4dfc838187, #wrap-s-6d5185ae-c256-455f-9c41-1e4dfc838187 { display: none !important; }}@media (max-width: 767px){#s-6d5185ae-c256-455f-9c41-1e4dfc838187 {
  padding-left: 25px;
padding-right: 25px;
max-width: 560px;
}
}







#s-6d5185ae-c256-455f-9c41-1e4dfc838187 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6d5185ae-c256-455f-9c41-1e4dfc838187.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ade47ddf-321a-48a6-88cf-c7378eac9f2d {
  padding-top: 0px;
padding-bottom: 20px;
text-align: left;
}
@media (max-width: 767px){#s-ade47ddf-321a-48a6-88cf-c7378eac9f2d {
  padding-top: 0px;
text-align: center;
}
}
#s-ade47ddf-321a-48a6-88cf-c7378eac9f2d .shogun-heading-component h2 {
  color: rgba(255, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 28px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-ade47ddf-321a-48a6-88cf-c7378eac9f2d .shogun-heading-component h2 {
  color: rgba(255, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 28px;
  
  
  text-align: center;
}


}
#s-8d923900-661f-4c29-81ef-69dc745ecb89 {
  margin-bottom: 0px;
}

#s-2b6b828b-772e-4825-a0c8-3b74fad12ee5 {
  min-height: 300px;
text-align: center;
}
@media (min-width: 1200px){#s-2b6b828b-772e-4825-a0c8-3b74fad12ee5 {
  display: none;
}
#s-2b6b828b-772e-4825-a0c8-3b74fad12ee5, #wrap-s-2b6b828b-772e-4825-a0c8-3b74fad12ee5 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2b6b828b-772e-4825-a0c8-3b74fad12ee5 {
  display: none;
}
#s-2b6b828b-772e-4825-a0c8-3b74fad12ee5, #wrap-s-2b6b828b-772e-4825-a0c8-3b74fad12ee5 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2b6b828b-772e-4825-a0c8-3b74fad12ee5 {
  display: none;
}
#s-2b6b828b-772e-4825-a0c8-3b74fad12ee5, #wrap-s-2b6b828b-772e-4825-a0c8-3b74fad12ee5 { display: none !important; }}







#s-2b6b828b-772e-4825-a0c8-3b74fad12ee5 .shogun-image-content {
  
    align-items: center;
  
}

#s-8c4b70ab-6d61-4b7d-aea8-a6279c0f00e5 {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 400px;
text-align: center;
}
@media (max-width: 767px){#s-8c4b70ab-6d61-4b7d-aea8-a6279c0f00e5 {
  display: none;
}
#s-8c4b70ab-6d61-4b7d-aea8-a6279c0f00e5, #wrap-s-8c4b70ab-6d61-4b7d-aea8-a6279c0f00e5 { display: none !important; }}







#s-8c4b70ab-6d61-4b7d-aea8-a6279c0f00e5 .shogun-image-content {
  
    align-items: center;
  
}

#s-219405f1-4f24-49e7-ad43-17776e36ac93 {
  margin-top: 25px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 20px;
padding-left: 25px;
padding-bottom: 20px;
padding-right: 25px;
min-height: 50px;
max-width: 1330px;
}








#s-219405f1-4f24-49e7-ad43-17776e36ac93 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-219405f1-4f24-49e7-ad43-17776e36ac93.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-0a9a6dd6-7711-40e5-b7c5-69d9e335d844"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0a9a6dd6-7711-40e5-b7c5-69d9e335d844"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-0a9a6dd6-7711-40e5-b7c5-69d9e335d844"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-0a9a6dd6-7711-40e5-b7c5-69d9e335d844"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-f6939b8a-6e58-4aba-a906-c72429b05d33 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 400px;
}








#s-f6939b8a-6e58-4aba-a906-c72429b05d33 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f6939b8a-6e58-4aba-a906-c72429b05d33.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-20b96cb5-9d0b-40f0-ba90-bba7028a213d {
  padding-top: 0px;
padding-bottom: 10px;
text-align: left;
}

#s-20b96cb5-9d0b-40f0-ba90-bba7028a213d .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 28px;
  
  
  text-align: left;
}



#s-190ea0f9-e830-4db5-b1f8-182845707cc4 {
  margin-bottom: 0px;
}

#s-d4c506a5-5e6d-434f-85bc-425f70e09881 {
  margin-left: auto;
margin-right: auto;
padding-top: 40px;
padding-left: 25px;
padding-bottom: 40px;
padding-right: 25px;
min-height: 50px;
max-width: 480px;
}
@media (min-width: 1200px){#s-d4c506a5-5e6d-434f-85bc-425f70e09881 {
  display: none;
}
#s-d4c506a5-5e6d-434f-85bc-425f70e09881, #wrap-s-d4c506a5-5e6d-434f-85bc-425f70e09881 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d4c506a5-5e6d-434f-85bc-425f70e09881 {
  display: none;
}
#s-d4c506a5-5e6d-434f-85bc-425f70e09881, #wrap-s-d4c506a5-5e6d-434f-85bc-425f70e09881 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d4c506a5-5e6d-434f-85bc-425f70e09881 {
  display: none;
}
#s-d4c506a5-5e6d-434f-85bc-425f70e09881, #wrap-s-d4c506a5-5e6d-434f-85bc-425f70e09881 { display: none !important; }}@media (max-width: 767px){#s-d4c506a5-5e6d-434f-85bc-425f70e09881 {
  padding-left: 25px;
padding-right: 25px;
max-width: 560px;
}
}







#s-d4c506a5-5e6d-434f-85bc-425f70e09881 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d4c506a5-5e6d-434f-85bc-425f70e09881.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ab25a990-1e9b-42b8-9833-60d14eb80753 {
  padding-top: 0px;
padding-bottom: 20px;
text-align: left;
}
@media (max-width: 767px){#s-ab25a990-1e9b-42b8-9833-60d14eb80753 {
  padding-top: 0px;
text-align: center;
}
}
#s-ab25a990-1e9b-42b8-9833-60d14eb80753 .shogun-heading-component h2 {
  color: rgba(255, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 28px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-ab25a990-1e9b-42b8-9833-60d14eb80753 .shogun-heading-component h2 {
  color: rgba(255, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 28px;
  
  
  text-align: center;
}


}
#s-b54297d6-9de8-4e6b-b7f3-6eaafcb96276 {
  margin-bottom: 0px;
}

#s-f864bbb1-8708-4ead-a1e1-0ed47886333f {
  min-height: 300px;
text-align: center;
}
@media (min-width: 1200px){#s-f864bbb1-8708-4ead-a1e1-0ed47886333f {
  display: none;
}
#s-f864bbb1-8708-4ead-a1e1-0ed47886333f, #wrap-s-f864bbb1-8708-4ead-a1e1-0ed47886333f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f864bbb1-8708-4ead-a1e1-0ed47886333f {
  display: none;
}
#s-f864bbb1-8708-4ead-a1e1-0ed47886333f, #wrap-s-f864bbb1-8708-4ead-a1e1-0ed47886333f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f864bbb1-8708-4ead-a1e1-0ed47886333f {
  display: none;
}
#s-f864bbb1-8708-4ead-a1e1-0ed47886333f, #wrap-s-f864bbb1-8708-4ead-a1e1-0ed47886333f { display: none !important; }}







#s-f864bbb1-8708-4ead-a1e1-0ed47886333f .shogun-image-content {
  
    align-items: center;
  
}

#s-9df8b767-d6cc-4906-8b7f-5e7478b82b74 {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 400px;
text-align: center;
}
@media (max-width: 767px){#s-9df8b767-d6cc-4906-8b7f-5e7478b82b74 {
  display: none;
}
#s-9df8b767-d6cc-4906-8b7f-5e7478b82b74, #wrap-s-9df8b767-d6cc-4906-8b7f-5e7478b82b74 { display: none !important; }}







#s-9df8b767-d6cc-4906-8b7f-5e7478b82b74 .shogun-image-content {
  
    align-items: center;
  
}

#s-34166ace-92b2-44fe-b55f-6f399c6d6c45 {
  margin-top: 25px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 20px;
padding-left: 25px;
padding-bottom: 20px;
padding-right: 25px;
min-height: 50px;
max-width: 1330px;
}








#s-34166ace-92b2-44fe-b55f-6f399c6d6c45 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-34166ace-92b2-44fe-b55f-6f399c6d6c45.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-7a0b38a5-9f85-4a26-89bb-725969f5d874"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7a0b38a5-9f85-4a26-89bb-725969f5d874"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-7a0b38a5-9f85-4a26-89bb-725969f5d874"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-7a0b38a5-9f85-4a26-89bb-725969f5d874"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-be8f1e10-e6de-4374-ae9c-d224a0a8d4a4 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 400px;
}








#s-be8f1e10-e6de-4374-ae9c-d224a0a8d4a4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-be8f1e10-e6de-4374-ae9c-d224a0a8d4a4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fb50fe4d-27c1-4a51-b1b5-4a36e0ef5908 {
  padding-top: 0px;
padding-bottom: 10px;
text-align: left;
}

#s-fb50fe4d-27c1-4a51-b1b5-4a36e0ef5908 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 28px;
  
  
  text-align: left;
}



#s-9fc300ba-5f68-437c-a1e0-259935adce6f {
  margin-bottom: 0px;
}

#s-8cec3efd-2dfa-4035-b115-eef6ae3f9311 {
  margin-left: auto;
margin-right: auto;
padding-top: 40px;
padding-left: 25px;
padding-bottom: 40px;
padding-right: 25px;
min-height: 50px;
max-width: 480px;
}
@media (min-width: 1200px){#s-8cec3efd-2dfa-4035-b115-eef6ae3f9311 {
  display: none;
}
#s-8cec3efd-2dfa-4035-b115-eef6ae3f9311, #wrap-s-8cec3efd-2dfa-4035-b115-eef6ae3f9311 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8cec3efd-2dfa-4035-b115-eef6ae3f9311 {
  display: none;
}
#s-8cec3efd-2dfa-4035-b115-eef6ae3f9311, #wrap-s-8cec3efd-2dfa-4035-b115-eef6ae3f9311 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-8cec3efd-2dfa-4035-b115-eef6ae3f9311 {
  display: none;
}
#s-8cec3efd-2dfa-4035-b115-eef6ae3f9311, #wrap-s-8cec3efd-2dfa-4035-b115-eef6ae3f9311 { display: none !important; }}@media (max-width: 767px){#s-8cec3efd-2dfa-4035-b115-eef6ae3f9311 {
  padding-left: 25px;
padding-right: 25px;
max-width: 560px;
}
}







#s-8cec3efd-2dfa-4035-b115-eef6ae3f9311 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8cec3efd-2dfa-4035-b115-eef6ae3f9311.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b9957617-c3bb-4228-9d59-c28041ffbd27 {
  padding-top: 0px;
padding-bottom: 20px;
text-align: left;
}
@media (max-width: 767px){#s-b9957617-c3bb-4228-9d59-c28041ffbd27 {
  padding-top: 0px;
text-align: center;
}
}
#s-b9957617-c3bb-4228-9d59-c28041ffbd27 .shogun-heading-component h2 {
  color: rgba(255, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 28px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-b9957617-c3bb-4228-9d59-c28041ffbd27 .shogun-heading-component h2 {
  color: rgba(255, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 28px;
  
  
  text-align: center;
}


}
#s-59b33b94-2b62-4939-b8df-377e5c09b8f9 {
  margin-bottom: 0px;
}

#s-97e7dc7d-a22c-4d0d-a0f1-48f5c2f5f752 {
  min-height: 300px;
text-align: center;
}
@media (min-width: 1200px){#s-97e7dc7d-a22c-4d0d-a0f1-48f5c2f5f752 {
  display: none;
}
#s-97e7dc7d-a22c-4d0d-a0f1-48f5c2f5f752, #wrap-s-97e7dc7d-a22c-4d0d-a0f1-48f5c2f5f752 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-97e7dc7d-a22c-4d0d-a0f1-48f5c2f5f752 {
  display: none;
}
#s-97e7dc7d-a22c-4d0d-a0f1-48f5c2f5f752, #wrap-s-97e7dc7d-a22c-4d0d-a0f1-48f5c2f5f752 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-97e7dc7d-a22c-4d0d-a0f1-48f5c2f5f752 {
  display: none;
}
#s-97e7dc7d-a22c-4d0d-a0f1-48f5c2f5f752, #wrap-s-97e7dc7d-a22c-4d0d-a0f1-48f5c2f5f752 { display: none !important; }}







#s-97e7dc7d-a22c-4d0d-a0f1-48f5c2f5f752 .shogun-image-content {
  
    align-items: center;
  
}

#s-0f4b71a1-7710-40e5-8d80-15ced69f6a98 {
  background-repeat: no-repeat;
background-size: 300px;
border-style: solid;
padding-top: 60px;
padding-bottom: 70px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(244, 244, 244, 1);
min-height: 50px;
background-position: right bottom;
}
@media (max-width: 767px){#s-0f4b71a1-7710-40e5-8d80-15ced69f6a98 {
  padding-top: 40px;
padding-bottom: 40px;
}
}







#s-0f4b71a1-7710-40e5-8d80-15ced69f6a98 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0f4b71a1-7710-40e5-8d80-15ced69f6a98.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-d61cf43e-5d8b-41e7-9c62-727fb624bb1f {
  padding-top: 10px;
padding-left: 25px;
padding-bottom: 10px;
padding-right: 25px;
text-align: center;
}

#s-d61cf43e-5d8b-41e7-9c62-727fb624bb1f .shogun-heading-component h2 {
  color: rgba(255, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-d9f695d3-e44a-44aa-bfd0-0106808e6699 {
  margin-left: 30px;
margin-right: 30px;
}
@media (min-width: 768px) and (max-width: 991px){#s-d9f695d3-e44a-44aa-bfd0-0106808e6699 {
  
}
}@media (max-width: 767px){#s-d9f695d3-e44a-44aa-bfd0-0106808e6699 {
  
}
}
@media (min-width: 0px) {
[id="s-d9f695d3-e44a-44aa-bfd0-0106808e6699"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d9f695d3-e44a-44aa-bfd0-0106808e6699"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-d9f695d3-e44a-44aa-bfd0-0106808e6699"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-d9f695d3-e44a-44aa-bfd0-0106808e6699"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-5eb8127a-73f2-496d-af25-612ccaa48def {
  padding-top: 30px;
padding-left: 15px;
padding-bottom: 20px;
padding-right: 15px;
min-height: 50px;
}
@media (max-width: 767px){#s-5eb8127a-73f2-496d-af25-612ccaa48def {
  padding-left: 0px;
padding-right: 0px;
}
}







#s-5eb8127a-73f2-496d-af25-612ccaa48def > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5eb8127a-73f2-496d-af25-612ccaa48def.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-d0d9c047-39e4-40e2-b821-a366ca560125 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 120px;
text-align: center;
}







  #s-d0d9c047-39e4-40e2-b821-a366ca560125 img.shogun-image {
    

    
    
    
  }


#s-d0d9c047-39e4-40e2-b821-a366ca560125 .shogun-image-content {
  
    align-items: center;
  
}

#s-ee86208a-3d26-4b7f-a402-6bed06ff8d44 {
  padding-left: 0px;
padding-right: 0px;
}

#s-27c56392-3a94-49e6-84fe-0846ae0d1551 {
  padding-top: 30px;
padding-left: 15px;
padding-bottom: 20px;
padding-right: 15px;
min-height: 50px;
}
@media (max-width: 767px){#s-27c56392-3a94-49e6-84fe-0846ae0d1551 {
  padding-left: 0px;
padding-right: 0px;
display: none;
}
#s-27c56392-3a94-49e6-84fe-0846ae0d1551, #wrap-s-27c56392-3a94-49e6-84fe-0846ae0d1551 { display: none !important; }}







#s-27c56392-3a94-49e6-84fe-0846ae0d1551 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-27c56392-3a94-49e6-84fe-0846ae0d1551.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-7da73a91-8516-453f-8a17-9b2b9e111b56 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 120px;
text-align: center;
}







  #s-7da73a91-8516-453f-8a17-9b2b9e111b56 img.shogun-image {
    

    
    
    
  }


#s-7da73a91-8516-453f-8a17-9b2b9e111b56 .shogun-image-content {
  
    align-items: center;
  
}

#s-2b861580-cfc4-4d32-810a-2ec14c99e2fa {
  padding-left: 0px;
padding-right: 0px;
}

#s-8e70cb11-c676-4907-bd5f-930ac908495d {
  padding-top: 30px;
padding-left: 15px;
padding-bottom: 20px;
padding-right: 15px;
min-height: 50px;
}
@media (max-width: 767px){#s-8e70cb11-c676-4907-bd5f-930ac908495d {
  padding-left: 0px;
padding-right: 0px;
display: none;
}
#s-8e70cb11-c676-4907-bd5f-930ac908495d, #wrap-s-8e70cb11-c676-4907-bd5f-930ac908495d { display: none !important; }}







#s-8e70cb11-c676-4907-bd5f-930ac908495d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8e70cb11-c676-4907-bd5f-930ac908495d.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-92a5b633-3c61-4e7e-9846-8cf5198eda18 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 120px;
text-align: center;
}







  #s-92a5b633-3c61-4e7e-9846-8cf5198eda18 img.shogun-image {
    

    
    
    
  }


#s-92a5b633-3c61-4e7e-9846-8cf5198eda18 .shogun-image-content {
  
    align-items: center;
  
}

#s-32ccd118-def0-4044-846c-52925c6cfaa4 {
  padding-left: 0px;
padding-right: 0px;
}

#s-1ea23bb4-99a1-45e0-bc3a-c4abc0e0085f {
  margin-left: 0px;
text-align: center;
}
@media (max-width: 767px){#s-1ea23bb4-99a1-45e0-bc3a-c4abc0e0085f {
  min-height: 184px;
display: none;
}
#s-1ea23bb4-99a1-45e0-bc3a-c4abc0e0085f, #wrap-s-1ea23bb4-99a1-45e0-bc3a-c4abc0e0085f { display: none !important; }}






  #s-1ea23bb4-99a1-45e0-bc3a-c4abc0e0085f img.shogun-image {
    

    
    
    
  }


#s-1ea23bb4-99a1-45e0-bc3a-c4abc0e0085f .shogun-image-content {
  
    align-items: center;
  
}

#s-ad65bd7f-799b-4b94-b120-a876407d40ca {
  margin-left: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-ad65bd7f-799b-4b94-b120-a876407d40ca {
  display: none;
}
#s-ad65bd7f-799b-4b94-b120-a876407d40ca, #wrap-s-ad65bd7f-799b-4b94-b120-a876407d40ca { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ad65bd7f-799b-4b94-b120-a876407d40ca {
  display: none;
}
#s-ad65bd7f-799b-4b94-b120-a876407d40ca, #wrap-s-ad65bd7f-799b-4b94-b120-a876407d40ca { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ad65bd7f-799b-4b94-b120-a876407d40ca {
  display: none;
}
#s-ad65bd7f-799b-4b94-b120-a876407d40ca, #wrap-s-ad65bd7f-799b-4b94-b120-a876407d40ca { display: none !important; }}






  #s-ad65bd7f-799b-4b94-b120-a876407d40ca img.shogun-image {
    

    
    
    
  }


#s-ad65bd7f-799b-4b94-b120-a876407d40ca .shogun-image-content {
  
    align-items: center;
  
}

#s-ab5e90f7-fcc8-4c09-9755-28d332a8f6b4 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 5px;
min-height: 300px;
background-position: center center;
}
@media (max-width: 767px){#s-ab5e90f7-fcc8-4c09-9755-28d332a8f6b4 {
  display: none;
}
#s-ab5e90f7-fcc8-4c09-9755-28d332a8f6b4, #wrap-s-ab5e90f7-fcc8-4c09-9755-28d332a8f6b4 { display: none !important; }}







#s-ab5e90f7-fcc8-4c09-9755-28d332a8f6b4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ab5e90f7-fcc8-4c09-9755-28d332a8f6b4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fb27c6c8-9437-4e3b-a64b-51fe47f301c8 {
  margin-top: 25px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-left: 25px;
padding-right: 25px;
min-height: 50px;
max-width: 1330px;
}








#s-fb27c6c8-9437-4e3b-a64b-51fe47f301c8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fb27c6c8-9437-4e3b-a64b-51fe47f301c8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-2fca3643-b4ee-4eab-a866-bb086f3d9f0f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2fca3643-b4ee-4eab-a866-bb086f3d9f0f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-2fca3643-b4ee-4eab-a866-bb086f3d9f0f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-2fca3643-b4ee-4eab-a866-bb086f3d9f0f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-9774d6c0-870d-4af7-b3a2-26432289f66c {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 360px;
}








#s-9774d6c0-870d-4af7-b3a2-26432289f66c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9774d6c0-870d-4af7-b3a2-26432289f66c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3c3cdb20-553f-4aae-89e0-c657a658d674 {
  padding-top: 0px;
padding-bottom: 10px;
text-align: center;
}

#s-3c3cdb20-553f-4aae-89e0-c657a658d674 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 28px;
  
  
  text-align: center;
}



#s-fa1f7435-2ed4-495f-a47b-fc59856997dc {
  margin-bottom: 20px;
}

#s-27fbdc25-826a-4b58-bee5-2149fcba3525 {
  margin-top: 0px;
padding-top: 18px;
padding-left: 32px;
padding-bottom: 18px;
padding-right: 32px;
text-align: center;
background-color: rgba(255, 255, 255, 1);
text-decoration: none;
letter-spacing: 1px;
background-image: none;
hover-type: color;
color: rgba(223, 17, 17, 1);
}
#s-27fbdc25-826a-4b58-bee5-2149fcba3525:hover {background-color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-27fbdc25-826a-4b58-bee5-2149fcba3525:active {background-color: rgba(79, 178, 255, 1) !important;
text-decoration: none !important;}

  #s-27fbdc25-826a-4b58-bee5-2149fcba3525-root {
    text-align: center;
  }


#s-27fbdc25-826a-4b58-bee5-2149fcba3525.shg-btn {
  color: rgba(223, 17, 17, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-27fbdc25-826a-4b58-bee5-2149fcba3525-root {
    text-align: center;
  }


#s-27fbdc25-826a-4b58-bee5-2149fcba3525.shg-btn {
  color: rgba(223, 17, 17, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-27fbdc25-826a-4b58-bee5-2149fcba3525-root {
    text-align: center;
  }


#s-27fbdc25-826a-4b58-bee5-2149fcba3525.shg-btn {
  color: rgba(223, 17, 17, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-27fbdc25-826a-4b58-bee5-2149fcba3525-root {
    text-align: center;
  }


#s-27fbdc25-826a-4b58-bee5-2149fcba3525.shg-btn {
  color: rgba(223, 17, 17, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-27fbdc25-826a-4b58-bee5-2149fcba3525-root {
    text-align: center;
  }


#s-27fbdc25-826a-4b58-bee5-2149fcba3525.shg-btn {
  color: rgba(223, 17, 17, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}
#s-20b44546-e56b-462a-abc0-50c773417c93 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 10px;
min-height: 424px;
background-position: center center;
}
@media (min-width: 1200px){#s-20b44546-e56b-462a-abc0-50c773417c93 {
  display: none;
}
#s-20b44546-e56b-462a-abc0-50c773417c93, #wrap-s-20b44546-e56b-462a-abc0-50c773417c93 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-20b44546-e56b-462a-abc0-50c773417c93 {
  display: none;
}
#s-20b44546-e56b-462a-abc0-50c773417c93, #wrap-s-20b44546-e56b-462a-abc0-50c773417c93 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-20b44546-e56b-462a-abc0-50c773417c93 {
  display: none;
}
#s-20b44546-e56b-462a-abc0-50c773417c93, #wrap-s-20b44546-e56b-462a-abc0-50c773417c93 { display: none !important; }}







#s-20b44546-e56b-462a-abc0-50c773417c93 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-20b44546-e56b-462a-abc0-50c773417c93.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-88d79467-1439-4768-8a22-e380453e5ac1 {
  margin-top: 40px;
margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 10px;
padding-right: 25px;
max-width: 380px;
text-align: center;
}

#s-88d79467-1439-4768-8a22-e380453e5ac1 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 28px;
  
  
  text-align: center;
}



#s-b142d9b2-14f7-426b-b5da-a6fc559d739e {
  margin-left: auto;
margin-right: auto;
padding-left: 25px;
padding-right: 25px;
max-width: 220px;
}

#s-86a9b70e-2239-4c4f-a83c-64caf1c885f4 {
  margin-top: -160px;
min-height: 100px;
}
@media (min-width: 1200px){#s-86a9b70e-2239-4c4f-a83c-64caf1c885f4 {
  display: none;
}
#s-86a9b70e-2239-4c4f-a83c-64caf1c885f4, #wrap-s-86a9b70e-2239-4c4f-a83c-64caf1c885f4 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-86a9b70e-2239-4c4f-a83c-64caf1c885f4 {
  display: none;
}
#s-86a9b70e-2239-4c4f-a83c-64caf1c885f4, #wrap-s-86a9b70e-2239-4c4f-a83c-64caf1c885f4 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-86a9b70e-2239-4c4f-a83c-64caf1c885f4 {
  display: none;
}
#s-86a9b70e-2239-4c4f-a83c-64caf1c885f4, #wrap-s-86a9b70e-2239-4c4f-a83c-64caf1c885f4 { display: none !important; }}







#s-86a9b70e-2239-4c4f-a83c-64caf1c885f4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-86a9b70e-2239-4c4f-a83c-64caf1c885f4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a28b17e8-34d9-473c-8847-a13b27d66924 {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-left: 25px;
padding-bottom: 20px;
padding-right: 25px;
min-height: 50px;
max-width: 300px;
}








#s-a28b17e8-34d9-473c-8847-a13b27d66924 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a28b17e8-34d9-473c-8847-a13b27d66924.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c701f109-a724-4f6a-9d3d-b26661e8b0d7 {
  margin-top: 0px;
padding-top: 18px;
padding-left: 32px;
padding-bottom: 18px;
padding-right: 32px;
text-align: center;
background-color: rgba(255, 255, 255, 1);
text-decoration: none;
letter-spacing: 1px;
background-image: none;
hover-type: color;
color: rgba(223, 17, 17, 1);
}
#s-c701f109-a724-4f6a-9d3d-b26661e8b0d7:hover {background-color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-c701f109-a724-4f6a-9d3d-b26661e8b0d7:active {background-color: rgba(79, 178, 255, 1) !important;
text-decoration: none !important;}

  #s-c701f109-a724-4f6a-9d3d-b26661e8b0d7-root {
    text-align: center;
  }


#s-c701f109-a724-4f6a-9d3d-b26661e8b0d7.shg-btn {
  color: rgba(223, 17, 17, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c701f109-a724-4f6a-9d3d-b26661e8b0d7-root {
    text-align: center;
  }


#s-c701f109-a724-4f6a-9d3d-b26661e8b0d7.shg-btn {
  color: rgba(223, 17, 17, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c701f109-a724-4f6a-9d3d-b26661e8b0d7-root {
    text-align: center;
  }


#s-c701f109-a724-4f6a-9d3d-b26661e8b0d7.shg-btn {
  color: rgba(223, 17, 17, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c701f109-a724-4f6a-9d3d-b26661e8b0d7-root {
    text-align: center;
  }


#s-c701f109-a724-4f6a-9d3d-b26661e8b0d7.shg-btn {
  color: rgba(223, 17, 17, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c701f109-a724-4f6a-9d3d-b26661e8b0d7-root {
    text-align: center;
  }


#s-c701f109-a724-4f6a-9d3d-b26661e8b0d7.shg-btn {
  color: rgba(223, 17, 17, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Montserrat;
  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}