.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-a1f01957-3ceb-40c1-bc3a-8a0e01f47bfb {
  min-height: 50px;
}








#s-a1f01957-3ceb-40c1-bc3a-8a0e01f47bfb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a1f01957-3ceb-40c1-bc3a-8a0e01f47bfb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.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-22d8fe0f-80b0-476d-9711-62cf1cfdc592 {
  padding-top: 0px;
padding-bottom: 0px;
min-height: 6px;
}
@media (min-width: 1200px){#s-22d8fe0f-80b0-476d-9711-62cf1cfdc592 {
  padding-top: 3px;
padding-bottom: 3px;
}
}
#s-22d8fe0f-80b0-476d-9711-62cf1cfdc592 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-22d8fe0f-80b0-476d-9711-62cf1cfdc592 .shg-sld-nav-button.shg-sld-left,
#s-22d8fe0f-80b0-476d-9711-62cf1cfdc592 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

.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-dfd989a2-61a3-407b-b417-3217ccffef36 {
  margin-top: 15px;
margin-bottom: 15px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(0, 176, 146, 1);
border-style: solid;
min-height: 450px;
opacity: 1;
background-color: rgba(255, 255, 255, 0);
}
@media (min-width: 1200px){#s-dfd989a2-61a3-407b-b417-3217ccffef36 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-dfd989a2-61a3-407b-b417-3217ccffef36 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-dfd989a2-61a3-407b-b417-3217ccffef36 {
  
}
}@media (max-width: 767px){#s-dfd989a2-61a3-407b-b417-3217ccffef36 {
  
}
}
@media (min-width: 0px) {
[id="s-dfd989a2-61a3-407b-b417-3217ccffef36"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-dfd989a2-61a3-407b-b417-3217ccffef36"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-dfd989a2-61a3-407b-b417-3217ccffef36"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-dfd989a2-61a3-407b-b417-3217ccffef36"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-dfd989a2-61a3-407b-b417-3217ccffef36"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-dfd989a2-61a3-407b-b417-3217ccffef36"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-dfd989a2-61a3-407b-b417-3217ccffef36"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-d9980a7e-e597-49a1-9af6-c084f3004616 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(30, 0, 255, 1);
border-style: solid;
min-height: 50px;
background-color: rgba(50, 0, 226, 1);
}








#s-d9980a7e-e597-49a1-9af6-c084f3004616 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d9980a7e-e597-49a1-9af6-c084f3004616.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-dea1e706-a6c5-4205-ad45-91f650899cd8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-dea1e706-a6c5-4205-ad45-91f650899cd8 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 26px;
  line-height: 1.5em;
  
  
}



#s-ea91b55d-0588-4f56-973e-b96922252f4e {
  min-height: 50px;
}








#s-ea91b55d-0588-4f56-973e-b96922252f4e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ea91b55d-0588-4f56-973e-b96922252f4e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-e2824157-787e-487c-b0d7-90b3db9b7f32 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-e2824157-787e-487c-b0d7-90b3db9b7f32 img.shogun-image {
    

    
    
    
  }


#s-e2824157-787e-487c-b0d7-90b3db9b7f32 .shogun-image-content {
  
    align-items: center;
  
}

.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-edbbe78f-9143-4c96-83ff-42ed45cd3902 {
  box-shadow:5px 0px 0px 0px rgba(0, 0, 0, 0);
padding-top: 25px;
padding-left: 25px;
padding-bottom: 5px;
padding-right: 25px;
background-color: rgba(255, 255, 255, 0);
}
@media (min-width: 768px) and (max-width: 991px){#s-edbbe78f-9143-4c96-83ff-42ed45cd3902 {
  
}
}@media (max-width: 767px){#s-edbbe78f-9143-4c96-83ff-42ed45cd3902 {
  
}
}
.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-85573d79-7ccd-435d-bedd-352bb72300bf {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(200, 3, 3, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-85573d79-7ccd-435d-bedd-352bb72300bf:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-85573d79-7ccd-435d-bedd-352bb72300bf:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-85573d79-7ccd-435d-bedd-352bb72300bf-root {
    text-align: center;
  }


#s-85573d79-7ccd-435d-bedd-352bb72300bf.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-85573d79-7ccd-435d-bedd-352bb72300bf-root {
    text-align: center;
  }


#s-85573d79-7ccd-435d-bedd-352bb72300bf.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-85573d79-7ccd-435d-bedd-352bb72300bf-root {
    text-align: center;
  }


#s-85573d79-7ccd-435d-bedd-352bb72300bf.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-85573d79-7ccd-435d-bedd-352bb72300bf-root {
    text-align: center;
  }


#s-85573d79-7ccd-435d-bedd-352bb72300bf.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-85573d79-7ccd-435d-bedd-352bb72300bf-root {
    text-align: center;
  }


#s-85573d79-7ccd-435d-bedd-352bb72300bf.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}
#s-5bb0e7fb-beb9-4187-8ab6-064b4fd78999 {
  min-height: 450px;
background-color: rgba(0, 168, 69, 0.92);
}








#s-5bb0e7fb-beb9-4187-8ab6-064b4fd78999 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5bb0e7fb-beb9-4187-8ab6-064b4fd78999.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-90135c31-d0ec-4277-bf12-0e736c694f2c {
  text-align: center;
}

#s-90135c31-d0ec-4277-bf12-0e736c694f2c .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 33px;
  line-height: 1.5em;
  
  
}



#s-1c456214-fb3f-4936-93aa-4c92930245ff {
  min-height: 50px;
}








#s-1c456214-fb3f-4936-93aa-4c92930245ff > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1c456214-fb3f-4936-93aa-4c92930245ff.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-22f291fe-f65c-4d51-b197-ed2e3f0c095e {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-22f291fe-f65c-4d51-b197-ed2e3f0c095e img.shogun-image {
    

    
    
    
  }


#s-22f291fe-f65c-4d51-b197-ed2e3f0c095e .shogun-image-content {
  
    align-items: center;
  
}

#s-d8a5246b-e5c3-419b-b327-59b34e66bf8d {
  margin-top: 10px;
margin-left: 50px;
margin-bottom: 10px;
margin-right: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-d8a5246b-e5c3-419b-b327-59b34e66bf8d {
  display: none;
}
#s-d8a5246b-e5c3-419b-b327-59b34e66bf8d, #wrap-s-d8a5246b-e5c3-419b-b327-59b34e66bf8d { display: none !important; }}@media (max-width: 767px){#s-d8a5246b-e5c3-419b-b327-59b34e66bf8d {
  display: none;
}
#s-d8a5246b-e5c3-419b-b327-59b34e66bf8d, #wrap-s-d8a5246b-e5c3-419b-b327-59b34e66bf8d { display: none !important; }}
@media (min-width: 1200px){#s-1553b8ba-2c96-4ec6-825f-0d28ba283404 {
  display: none;
}
#s-1553b8ba-2c96-4ec6-825f-0d28ba283404, #wrap-s-1553b8ba-2c96-4ec6-825f-0d28ba283404 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1553b8ba-2c96-4ec6-825f-0d28ba283404 {
  display: none;
}
#s-1553b8ba-2c96-4ec6-825f-0d28ba283404, #wrap-s-1553b8ba-2c96-4ec6-825f-0d28ba283404 { display: none !important; }}
#s-cfa0108a-b844-4e9a-b9cd-f81258fcf85f {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(30, 0, 255, 1);
border-style: solid;
min-height: 50px;
background-color: rgba(36, 0, 226, 1);
}








#s-cfa0108a-b844-4e9a-b9cd-f81258fcf85f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cfa0108a-b844-4e9a-b9cd-f81258fcf85f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8c663c6b-c9bb-4c5b-a871-8e11ddbdaa08 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8c663c6b-c9bb-4c5b-a871-8e11ddbdaa08 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 26px;
  
  
  
}



#s-9dd92b02-30e3-43a2-b957-2980911c6fa3 {
  min-height: 50px;
}








#s-9dd92b02-30e3-43a2-b957-2980911c6fa3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9dd92b02-30e3-43a2-b957-2980911c6fa3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c305f6ec-b4b0-42b8-a21d-ea135bf15ce3 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-c305f6ec-b4b0-42b8-a21d-ea135bf15ce3 img.shogun-image {
    

    
    
    
  }


#s-c305f6ec-b4b0-42b8-a21d-ea135bf15ce3 .shogun-image-content {
  
    align-items: center;
  
}

#s-79587515-4dc9-48bf-8fc4-97c4953d11b6 {
  box-shadow:5px 0px 0px 0px rgba(0, 0, 0, 0);
padding-top: 25px;
padding-left: 25px;
padding-bottom: 5px;
padding-right: 25px;
background-color: rgba(255, 255, 255, 0);
}
@media (min-width: 768px) and (max-width: 991px){#s-79587515-4dc9-48bf-8fc4-97c4953d11b6 {
  
}
}@media (max-width: 767px){#s-79587515-4dc9-48bf-8fc4-97c4953d11b6 {
  
}
}
#s-3906dc95-f164-4d6e-b18e-4b50102c6abd {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(200, 3, 3, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-3906dc95-f164-4d6e-b18e-4b50102c6abd:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-3906dc95-f164-4d6e-b18e-4b50102c6abd:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-3906dc95-f164-4d6e-b18e-4b50102c6abd-root {
    text-align: center;
  }


#s-3906dc95-f164-4d6e-b18e-4b50102c6abd.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-3906dc95-f164-4d6e-b18e-4b50102c6abd-root {
    text-align: center;
  }


#s-3906dc95-f164-4d6e-b18e-4b50102c6abd.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-3906dc95-f164-4d6e-b18e-4b50102c6abd-root {
    text-align: center;
  }


#s-3906dc95-f164-4d6e-b18e-4b50102c6abd.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-3906dc95-f164-4d6e-b18e-4b50102c6abd-root {
    text-align: center;
  }


#s-3906dc95-f164-4d6e-b18e-4b50102c6abd.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-3906dc95-f164-4d6e-b18e-4b50102c6abd-root {
    text-align: center;
  }


#s-3906dc95-f164-4d6e-b18e-4b50102c6abd.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
}
#s-bc26448a-a4e9-4826-b052-299725f11e48 {
  padding-top: 5px;
padding-bottom: 10px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(0, 176, 146, 1);
border-style: solid;
opacity: 1;
background-color: rgba(255, 255, 255, 0);
}
@media (min-width: 1200px){#s-bc26448a-a4e9-4826-b052-299725f11e48 {
  min-height: 400px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-bc26448a-a4e9-4826-b052-299725f11e48 {
  min-height: 400px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-bc26448a-a4e9-4826-b052-299725f11e48 {
  
}
}@media (max-width: 767px){#s-bc26448a-a4e9-4826-b052-299725f11e48 {
  
}
}
@media (min-width: 0px) {
[id="s-bc26448a-a4e9-4826-b052-299725f11e48"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bc26448a-a4e9-4826-b052-299725f11e48"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-bc26448a-a4e9-4826-b052-299725f11e48"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-bc26448a-a4e9-4826-b052-299725f11e48"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-bc26448a-a4e9-4826-b052-299725f11e48"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-bc26448a-a4e9-4826-b052-299725f11e48"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-bc26448a-a4e9-4826-b052-299725f11e48"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

#s-38df2ee1-5eb6-48d1-a59c-aff7508fec7d {
  min-height: 50px;
}








#s-38df2ee1-5eb6-48d1-a59c-aff7508fec7d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-38df2ee1-5eb6-48d1-a59c-aff7508fec7d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f7ca7289-cd29-4f6d-8fb7-28a49a3681a2 {
  text-align: center;
}







  #s-f7ca7289-cd29-4f6d-8fb7-28a49a3681a2 img.shogun-image {
    

    
    
    
  }


#s-f7ca7289-cd29-4f6d-8fb7-28a49a3681a2 .shogun-image-content {
  
    align-items: center;
  
}

#s-694a573c-b141-4bb9-a568-9fb775d7ede6 {
  box-shadow:1px 1px 1px 1px rgba(192, 187, 187, 1);
margin-bottom: 0px;
padding-top: 13px;
padding-left: 20px;
padding-bottom: 13px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(0, 176, 146, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-694a573c-b141-4bb9-a568-9fb775d7ede6:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-694a573c-b141-4bb9-a568-9fb775d7ede6:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-694a573c-b141-4bb9-a568-9fb775d7ede6-root {
    text-align: center;
  }


#s-694a573c-b141-4bb9-a568-9fb775d7ede6.shg-btn {
  color: #ffffff;
  
  font-weight: 500;
  
  font-family: Montserrat;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-694a573c-b141-4bb9-a568-9fb775d7ede6-root {
    text-align: center;
  }


#s-694a573c-b141-4bb9-a568-9fb775d7ede6.shg-btn {
  color: #ffffff;
  
  font-weight: 500;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-694a573c-b141-4bb9-a568-9fb775d7ede6-root {
    text-align: center;
  }


#s-694a573c-b141-4bb9-a568-9fb775d7ede6.shg-btn {
  color: #ffffff;
  
  font-weight: 500;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-694a573c-b141-4bb9-a568-9fb775d7ede6-root {
    text-align: center;
  }


#s-694a573c-b141-4bb9-a568-9fb775d7ede6.shg-btn {
  color: #ffffff;
  
  font-weight: 500;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-694a573c-b141-4bb9-a568-9fb775d7ede6-root {
    text-align: center;
  }


#s-694a573c-b141-4bb9-a568-9fb775d7ede6.shg-btn {
  color: #ffffff;
  
  font-weight: 500;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}
#s-4227835c-e26c-471d-9f11-f2996d9385b3 {
  background-image: url(https://i.shgcdn.com/10c44741-799b-43d0-b5c8-814feec5a063/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
padding-top: 30px;
padding-bottom: 30px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(0, 176, 146, 1);
border-style: solid;
opacity: 1;
background-color: rgba(255, 255, 255, 0);
background-position: center center;
}
@media (min-width: 1200px){#s-4227835c-e26c-471d-9f11-f2996d9385b3 {
  min-height: 400px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-4227835c-e26c-471d-9f11-f2996d9385b3 {
  min-height: 400px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-4227835c-e26c-471d-9f11-f2996d9385b3 {
  
}
}@media (max-width: 767px){#s-4227835c-e26c-471d-9f11-f2996d9385b3 {
  
}
}
@media (min-width: 0px) {
[id="s-4227835c-e26c-471d-9f11-f2996d9385b3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4227835c-e26c-471d-9f11-f2996d9385b3"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-4227835c-e26c-471d-9f11-f2996d9385b3"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-4227835c-e26c-471d-9f11-f2996d9385b3"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-4227835c-e26c-471d-9f11-f2996d9385b3"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-4227835c-e26c-471d-9f11-f2996d9385b3"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-4227835c-e26c-471d-9f11-f2996d9385b3"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

#s-7360e74f-f7c8-4ec0-a2bd-9d6576b1d827 {
  min-height: 400px;
}








#s-7360e74f-f7c8-4ec0-a2bd-9d6576b1d827 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7360e74f-f7c8-4ec0-a2bd-9d6576b1d827.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7af18628-4170-47d5-a711-2093d66f29a2 {
  margin-top: 15px;
margin-left: 300px;
margin-bottom: 15px;
margin-right: 300px;
padding-top: 25px;
padding-bottom: 25px;
min-height: 50px;
background-color: rgba(255, 255, 255, 0.9);
}
@media (min-width: 768px) and (max-width: 991px){#s-7af18628-4170-47d5-a711-2093d66f29a2 {
  margin-top: 0px;
margin-left: 100px;
margin-bottom: 0px;
margin-right: 100px;
}
}@media (max-width: 767px){#s-7af18628-4170-47d5-a711-2093d66f29a2 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}
}







#s-7af18628-4170-47d5-a711-2093d66f29a2 > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-7af18628-4170-47d5-a711-2093d66f29a2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4e5d140c-ad76-4346-89ac-6c729f97437e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(255, 255, 255, 0);
}

#s-4e5d140c-ad76-4346-89ac-6c729f97437e .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-32889bc3-4311-4938-bb6b-8a7317547b3d {
  min-height: 50px;
}








#s-32889bc3-4311-4938-bb6b-8a7317547b3d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-32889bc3-4311-4938-bb6b-8a7317547b3d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1adaf28e-d8ff-4b70-9fac-bec11a351e57 {
  margin-top: 50px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(200, 3, 3, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-1adaf28e-d8ff-4b70-9fac-bec11a351e57:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-1adaf28e-d8ff-4b70-9fac-bec11a351e57:active {border-style: solid !important;
border-top-width: 0px !important;
border-left-width: 0px !important;
border-bottom-width: 0px !important;
border-right-width: 0px !important;
border-color: #2C2A34 !important;
border-radius: 11px !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-1adaf28e-d8ff-4b70-9fac-bec11a351e57-root {
    text-align: center;
  }


#s-1adaf28e-d8ff-4b70-9fac-bec11a351e57.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-1adaf28e-d8ff-4b70-9fac-bec11a351e57-root {
    text-align: center;
  }


#s-1adaf28e-d8ff-4b70-9fac-bec11a351e57.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-1adaf28e-d8ff-4b70-9fac-bec11a351e57-root {
    text-align: center;
  }


#s-1adaf28e-d8ff-4b70-9fac-bec11a351e57.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-1adaf28e-d8ff-4b70-9fac-bec11a351e57-root {
    text-align: center;
  }


#s-1adaf28e-d8ff-4b70-9fac-bec11a351e57.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-1adaf28e-d8ff-4b70-9fac-bec11a351e57-root {
    text-align: center;
  }


#s-1adaf28e-d8ff-4b70-9fac-bec11a351e57.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}
#s-c4af00e9-e92c-48e3-922f-308cf83ca9e1 {
  background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
min-height: 50px;
background-position: center center;
}

#s-c4af00e9-e92c-48e3-922f-308cf83ca9e1 {
  background-image: url(https://i.shgcdn.com/98bd737c-089e-4ebc-909c-626f1feb7ae5/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-c4af00e9-e92c-48e3-922f-308cf83ca9e1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c4af00e9-e92c-48e3-922f-308cf83ca9e1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-138e0d3a-deca-42e5-87b2-6a5692b738ca {
  padding-top: 30px;
padding-bottom: 30px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(0, 176, 146, 1);
border-style: solid;
opacity: 1;
background-color: rgba(255, 255, 255, 0);
}
@media (min-width: 1200px){#s-138e0d3a-deca-42e5-87b2-6a5692b738ca {
  min-height: 400px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-138e0d3a-deca-42e5-87b2-6a5692b738ca {
  min-height: 400px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-138e0d3a-deca-42e5-87b2-6a5692b738ca {
  
}
}@media (max-width: 767px){#s-138e0d3a-deca-42e5-87b2-6a5692b738ca {
  
}
}
@media (min-width: 0px) {
[id="s-138e0d3a-deca-42e5-87b2-6a5692b738ca"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-138e0d3a-deca-42e5-87b2-6a5692b738ca"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-138e0d3a-deca-42e5-87b2-6a5692b738ca"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-138e0d3a-deca-42e5-87b2-6a5692b738ca"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-138e0d3a-deca-42e5-87b2-6a5692b738ca"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-138e0d3a-deca-42e5-87b2-6a5692b738ca"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-138e0d3a-deca-42e5-87b2-6a5692b738ca"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

#s-885d067e-8176-4259-a673-769d2cdc6bd7 {
  margin-top: 2px;
margin-bottom: 2px;
padding-top: 25px;
padding-left: 25px;
padding-bottom: 25px;
padding-right: 25px;
background-color: rgba(255, 255, 255, 0.95);
}

#s-adbacc55-e28c-4c82-97ef-c34aa2f7d659 {
  box-shadow:1px 1px 1px 1px rgba(192, 187, 187, 1);
margin-top: 15px;
margin-bottom: 0px;
padding-top: 13px;
padding-left: 20px;
padding-bottom: 13px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(0, 176, 146, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-adbacc55-e28c-4c82-97ef-c34aa2f7d659:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-adbacc55-e28c-4c82-97ef-c34aa2f7d659:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-adbacc55-e28c-4c82-97ef-c34aa2f7d659-root {
    text-align: center;
  }


#s-adbacc55-e28c-4c82-97ef-c34aa2f7d659.shg-btn {
  color: #ffffff;
  
  font-weight: 500;
  
  font-family: Montserrat;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-adbacc55-e28c-4c82-97ef-c34aa2f7d659-root {
    text-align: center;
  }


#s-adbacc55-e28c-4c82-97ef-c34aa2f7d659.shg-btn {
  color: #ffffff;
  
  font-weight: 500;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-adbacc55-e28c-4c82-97ef-c34aa2f7d659-root {
    text-align: center;
  }


#s-adbacc55-e28c-4c82-97ef-c34aa2f7d659.shg-btn {
  color: #ffffff;
  
  font-weight: 500;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-adbacc55-e28c-4c82-97ef-c34aa2f7d659-root {
    text-align: center;
  }


#s-adbacc55-e28c-4c82-97ef-c34aa2f7d659.shg-btn {
  color: #ffffff;
  
  font-weight: 500;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-adbacc55-e28c-4c82-97ef-c34aa2f7d659-root {
    text-align: center;
  }


#s-adbacc55-e28c-4c82-97ef-c34aa2f7d659.shg-btn {
  color: #ffffff;
  
  font-weight: 500;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}
#s-10d6d11a-bef8-4740-b2c1-3642e6afc5a2 {
  min-height: 50px;
}








#s-10d6d11a-bef8-4740-b2c1-3642e6afc5a2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-10d6d11a-bef8-4740-b2c1-3642e6afc5a2.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-8623e3d0-7c41-4963-91e2-141ed26dcd36 {
  box-shadow:2px 2px 5px 2px rgba(255, 255, 255, 1);
margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 11px;
background-color: rgba(255, 255, 255, 1);
}








#s-8623e3d0-7c41-4963-91e2-141ed26dcd36 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8623e3d0-7c41-4963-91e2-141ed26dcd36.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-16ad510a-3b84-4ee9-8b19-a14a83ea8f95 {
  box-shadow:2px 2px 5px 2px rgba(184, 181, 181, 1);
margin-top: 25px;
margin-left: 25px;
margin-bottom: 25px;
margin-right: 25px;
padding-top: 25px;
padding-left: 25px;
padding-bottom: 25px;
padding-right: 25px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(209, 67, 67, 1);
border-style: solid;
border-radius: 11px;
}

@media (min-width: 0px) {
[id="s-16ad510a-3b84-4ee9-8b19-a14a83ea8f95"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-16ad510a-3b84-4ee9-8b19-a14a83ea8f95"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-16ad510a-3b84-4ee9-8b19-a14a83ea8f95"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-16ad510a-3b84-4ee9-8b19-a14a83ea8f95"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-34d6ec4a-1c1a-48e3-82f3-48aab312ff7a {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-34d6ec4a-1c1a-48e3-82f3-48aab312ff7a .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-34d6ec4a-1c1a-48e3-82f3-48aab312ff7a .shg-sld-nav-button.shg-sld-left,
#s-34d6ec4a-1c1a-48e3-82f3-48aab312ff7a .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-3bb6425d-0ec4-4509-b3b5-f210332d856c {
  min-height: 50px;
max-width: 500px;
text-align: center;
}







  #s-3bb6425d-0ec4-4509-b3b5-f210332d856c img.shogun-image {
    

    
    
    
  }


#s-3bb6425d-0ec4-4509-b3b5-f210332d856c .shogun-image-content {
  
    align-items: center;
  
}

#s-0f64bffc-bf43-4c05-898a-6d98c6374d2b {
  min-height: 500px;
max-width: 500px;
text-align: center;
}
@media (max-width: 767px){#s-0f64bffc-bf43-4c05-898a-6d98c6374d2b {
  min-height: 50px;
}
}






  #s-0f64bffc-bf43-4c05-898a-6d98c6374d2b img.shogun-image {
    

    
    
    
  }


#s-0f64bffc-bf43-4c05-898a-6d98c6374d2b .shogun-image-content {
  
    align-items: center;
  
}

#s-7a1a6209-6986-42e7-9135-3828af1af1ba {
  border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
min-height: 400px;
}








#s-7a1a6209-6986-42e7-9135-3828af1af1ba > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7a1a6209-6986-42e7-9135-3828af1af1ba.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5c567777-1fdd-42fa-9e13-228fc45d2831 {
  margin-left: 50px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5c567777-1fdd-42fa-9e13-228fc45d2831 .shogun-heading-component h1 {
  color: rgba(5, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



.shg-hr-wrapper {
  padding: 30px 0;
}

.shg-hr-wrapper hr {
  margin: 0;
  border: 0;
  width: 100%;
}

#s-bdbf2066-7fa3-432c-8903-11a980e974a5 {
  margin-left: 50px;
margin-right: 50px;
}

#s-bdbf2066-7fa3-432c-8903-11a980e974a5 hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-42d02b46-1ece-4e54-911b-3e18918decde {
  margin-left: 50px;
margin-right: 50px;
}

#s-f583e5b3-3b7e-400b-89d2-4a7927cf04e3 {
  border-style: solid;
margin-top: 10px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 154, 154, 1);
border-radius: 2px;
background-color: rgba(200, 3, 3, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-f583e5b3-3b7e-400b-89d2-4a7927cf04e3:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-f583e5b3-3b7e-400b-89d2-4a7927cf04e3:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-f583e5b3-3b7e-400b-89d2-4a7927cf04e3-root {
    text-align: center;
  }


#s-f583e5b3-3b7e-400b-89d2-4a7927cf04e3.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-f583e5b3-3b7e-400b-89d2-4a7927cf04e3-root {
    text-align: center;
  }


#s-f583e5b3-3b7e-400b-89d2-4a7927cf04e3.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f583e5b3-3b7e-400b-89d2-4a7927cf04e3-root {
    text-align: center;
  }


#s-f583e5b3-3b7e-400b-89d2-4a7927cf04e3.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f583e5b3-3b7e-400b-89d2-4a7927cf04e3-root {
    text-align: center;
  }


#s-f583e5b3-3b7e-400b-89d2-4a7927cf04e3.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-f583e5b3-3b7e-400b-89d2-4a7927cf04e3-root {
    text-align: center;
  }


#s-f583e5b3-3b7e-400b-89d2-4a7927cf04e3.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  inline-block ;
}
}
#s-c8e92cf7-0f06-4dea-a4e3-099c5b460603 {
  background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
min-height: 50px;
background-position: center center;
}
@media (min-width: 1200px){#s-c8e92cf7-0f06-4dea-a4e3-099c5b460603 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c8e92cf7-0f06-4dea-a4e3-099c5b460603 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-c8e92cf7-0f06-4dea-a4e3-099c5b460603 {
  
}
}@media (max-width: 767px){#s-c8e92cf7-0f06-4dea-a4e3-099c5b460603 {
  
}
}







#s-c8e92cf7-0f06-4dea-a4e3-099c5b460603 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c8e92cf7-0f06-4dea-a4e3-099c5b460603.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-1f503b8a-7e4e-463a-b873-20ac25e5cb54 {
  border-style: solid;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(236, 236, 236, 1);
border-radius: 0px;
min-height: 0px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-1f503b8a-7e4e-463a-b873-20ac25e5cb54 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-1f503b8a-7e4e-463a-b873-20ac25e5cb54 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-1f503b8a-7e4e-463a-b873-20ac25e5cb54 {
  
}
}@media (max-width: 767px){#s-1f503b8a-7e4e-463a-b873-20ac25e5cb54 {
  
}
}







#s-1f503b8a-7e4e-463a-b873-20ac25e5cb54 > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0;
}#s-1f503b8a-7e4e-463a-b873-20ac25e5cb54.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ce9d30fc-e32e-468d-aa20-d96816ddafea {
  box-shadow:2px 2px 5px 1px rgba(184, 181, 181, 1);
margin-top: 25px;
margin-left: 25px;
margin-bottom: 25px;
margin-right: 25px;
padding-top: 25px;
padding-left: 25px;
padding-bottom: 25px;
padding-right: 25px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 11px;
background-color: rgba(245, 245, 245, 1);
}

@media (min-width: 0px) {
[id="s-ce9d30fc-e32e-468d-aa20-d96816ddafea"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ce9d30fc-e32e-468d-aa20-d96816ddafea"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ce9d30fc-e32e-468d-aa20-d96816ddafea"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ce9d30fc-e32e-468d-aa20-d96816ddafea"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-ce9d30fc-e32e-468d-aa20-d96816ddafea"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-74e72e63-a4d4-4431-b516-56e81f2e26a6 {
  border-style: solid;
margin-top: 25px;
margin-bottom: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
min-height: 400px;
}








#s-74e72e63-a4d4-4431-b516-56e81f2e26a6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-74e72e63-a4d4-4431-b516-56e81f2e26a6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-16904239-d1c7-490b-ae8d-459eda50504d {
  margin-left: 50px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-16904239-d1c7-490b-ae8d-459eda50504d .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-44ef31df-4c9d-4e5a-aba5-27a9e0bde7f9 {
  margin-left: 50px;
margin-right: 50px;
}

#s-44ef31df-4c9d-4e5a-aba5-27a9e0bde7f9 hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-7544b9f2-be0b-43e5-804e-a8e6cb47c28f {
  margin-left: 50px;
margin-right: 50px;
}

#s-1ff8f3e5-6836-499c-91bd-e9dfc384efa6 {
  margin-top: 10px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(200, 3, 3, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-1ff8f3e5-6836-499c-91bd-e9dfc384efa6:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-1ff8f3e5-6836-499c-91bd-e9dfc384efa6:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-1ff8f3e5-6836-499c-91bd-e9dfc384efa6-root {
    text-align: center;
  }


#s-1ff8f3e5-6836-499c-91bd-e9dfc384efa6.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-1ff8f3e5-6836-499c-91bd-e9dfc384efa6-root {
    text-align: center;
  }


#s-1ff8f3e5-6836-499c-91bd-e9dfc384efa6.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-1ff8f3e5-6836-499c-91bd-e9dfc384efa6-root {
    text-align: center;
  }


#s-1ff8f3e5-6836-499c-91bd-e9dfc384efa6.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-1ff8f3e5-6836-499c-91bd-e9dfc384efa6-root {
    text-align: center;
  }


#s-1ff8f3e5-6836-499c-91bd-e9dfc384efa6.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-1ff8f3e5-6836-499c-91bd-e9dfc384efa6-root {
    text-align: center;
  }


#s-1ff8f3e5-6836-499c-91bd-e9dfc384efa6.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  inline-block ;
}
}
#s-e7202923-144b-421e-a5af-e358c8bd5f51 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-e7202923-144b-421e-a5af-e358c8bd5f51 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-e7202923-144b-421e-a5af-e358c8bd5f51 .shg-sld-nav-button.shg-sld-left,
#s-e7202923-144b-421e-a5af-e358c8bd5f51 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-27360b1d-780e-44f1-9ec3-07a8d61da1f9 {
  text-align: center;
}







  #s-27360b1d-780e-44f1-9ec3-07a8d61da1f9 img.shogun-image {
    

    
    
    
  }


#s-27360b1d-780e-44f1-9ec3-07a8d61da1f9 .shogun-image-content {
  
    align-items: center;
  
}

#s-16be506c-0d7a-438c-9666-c80162cb1e2f {
  min-height: 500px;
max-width: 500px;
text-align: center;
}







  #s-16be506c-0d7a-438c-9666-c80162cb1e2f img.shogun-image {
    

    
    
    
  }


#s-16be506c-0d7a-438c-9666-c80162cb1e2f .shogun-image-content {
  
    align-items: center;
  
}

#s-56ad23b9-2785-4f8e-9808-e6cca8549814 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-56ad23b9-2785-4f8e-9808-e6cca8549814 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-56ad23b9-2785-4f8e-9808-e6cca8549814.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a28e6fe2-38c3-4a67-8c2c-56dad2d77095 {
  box-shadow:2px 2px 5px 1px rgba(184, 181, 181, 1);
margin-top: 25px;
margin-left: 25px;
margin-bottom: 25px;
margin-right: 25px;
padding-top: 25px;
padding-left: 25px;
padding-bottom: 25px;
padding-right: 25px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(209, 67, 67, 1);
border-style: solid;
border-radius: 11px;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-a28e6fe2-38c3-4a67-8c2c-56dad2d77095"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a28e6fe2-38c3-4a67-8c2c-56dad2d77095"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a28e6fe2-38c3-4a67-8c2c-56dad2d77095"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a28e6fe2-38c3-4a67-8c2c-56dad2d77095"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-9c9a5641-ab7a-48c9-9c35-f1d330366dce {
  text-align: center;
background-color: rgba(252, 252, 252, 1);
opacity: 1;
}
@media (min-width: 768px) and (max-width: 991px){#s-9c9a5641-ab7a-48c9-9c35-f1d330366dce {
  margin-top: 25px;
margin-bottom: 25px;
}
}






  #s-9c9a5641-ab7a-48c9-9c35-f1d330366dce img.shogun-image {
    

    
    
    
  }


#s-9c9a5641-ab7a-48c9-9c35-f1d330366dce .shogun-image-content {
  
    align-items: center;
  
}

#s-7a8335af-ea95-4515-8f8c-d14419d1c400 {
  border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
min-height: 400px;
}








#s-7a8335af-ea95-4515-8f8c-d14419d1c400 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7a8335af-ea95-4515-8f8c-d14419d1c400.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3b30ffc3-1a72-4555-80b1-64e5e7a7ebc2 {
  margin-left: 50px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3b30ffc3-1a72-4555-80b1-64e5e7a7ebc2 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-a6026c69-c172-44d7-866d-188d4079ed22 {
  margin-left: 50px;
margin-right: 50px;
}

#s-a6026c69-c172-44d7-866d-188d4079ed22 hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-865db92e-12d8-4fd4-99d7-1e85d114e72a {
  margin-left: 50px;
margin-right: 50px;
}

#s-6dd4336f-f48e-4b68-8214-8f31640bef2d {
  margin-top: 10px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 2px;
background-color: rgba(200, 3, 3, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-6dd4336f-f48e-4b68-8214-8f31640bef2d:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-6dd4336f-f48e-4b68-8214-8f31640bef2d:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-6dd4336f-f48e-4b68-8214-8f31640bef2d-root {
    text-align: center;
  }


#s-6dd4336f-f48e-4b68-8214-8f31640bef2d.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-6dd4336f-f48e-4b68-8214-8f31640bef2d-root {
    text-align: center;
  }


#s-6dd4336f-f48e-4b68-8214-8f31640bef2d.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6dd4336f-f48e-4b68-8214-8f31640bef2d-root {
    text-align: center;
  }


#s-6dd4336f-f48e-4b68-8214-8f31640bef2d.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6dd4336f-f48e-4b68-8214-8f31640bef2d-root {
    text-align: center;
  }


#s-6dd4336f-f48e-4b68-8214-8f31640bef2d.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-6dd4336f-f48e-4b68-8214-8f31640bef2d-root {
    text-align: center;
  }


#s-6dd4336f-f48e-4b68-8214-8f31640bef2d.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  inline-block ;
}
}
#s-9b92d398-8876-453d-a136-410eabf177a2 {
  margin-top: 0px;
padding-top: 13px;
padding-bottom: 13px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-9b92d398-8876-453d-a136-410eabf177a2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9b92d398-8876-453d-a136-410eabf177a2.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-26a8a197-dc03-4036-acdb-2b3350c59b76 {
  box-shadow:0px 0px 0px 0px rgba(255, 255, 255, 1);
min-height: 50px;
}








#s-26a8a197-dc03-4036-acdb-2b3350c59b76 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-26a8a197-dc03-4036-acdb-2b3350c59b76.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d21aa8a0-97a4-43d7-b760-18ea8c246a6d {
  box-shadow:5px 1px 1px 2px rgba(245, 245, 245, 1);
margin-top: 15px;
margin-left: 25px;
margin-bottom: 15px;
margin-right: 25px;
border-top-width: 5px;
border-left-width: 5px;
border-bottom-width: 5px;
border-right-width: 5px;
border-color: rgba(0, 176, 146, 1);
border-style: solid;
border-radius: 11px;
min-height: 450px;
opacity: 1;
background-color: rgba(255, 255, 255, 0);
}
@media (min-width: 1200px){#s-d21aa8a0-97a4-43d7-b760-18ea8c246a6d {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-d21aa8a0-97a4-43d7-b760-18ea8c246a6d {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-d21aa8a0-97a4-43d7-b760-18ea8c246a6d {
  
}
}@media (max-width: 767px){#s-d21aa8a0-97a4-43d7-b760-18ea8c246a6d {
  
}
}
@media (min-width: 0px) {
[id="s-d21aa8a0-97a4-43d7-b760-18ea8c246a6d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d21aa8a0-97a4-43d7-b760-18ea8c246a6d"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-d21aa8a0-97a4-43d7-b760-18ea8c246a6d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-d21aa8a0-97a4-43d7-b760-18ea8c246a6d"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-d21aa8a0-97a4-43d7-b760-18ea8c246a6d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-d21aa8a0-97a4-43d7-b760-18ea8c246a6d"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-d21aa8a0-97a4-43d7-b760-18ea8c246a6d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-0803e37d-3f8f-426a-93ca-f8527fea8848 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(30, 0, 255, 1);
border-style: solid;
min-height: 50px;
background-color: rgba(50, 0, 226, 1);
}








#s-0803e37d-3f8f-426a-93ca-f8527fea8848 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0803e37d-3f8f-426a-93ca-f8527fea8848.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-166ec071-4031-457c-a491-5988f8986230 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-166ec071-4031-457c-a491-5988f8986230 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 26px;
  line-height: 1.5em;
  
  
}



#s-c1a060c3-cde0-40c5-99cf-e1d8c47438e8 {
  min-height: 50px;
}








#s-c1a060c3-cde0-40c5-99cf-e1d8c47438e8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c1a060c3-cde0-40c5-99cf-e1d8c47438e8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-531218d2-bf60-4b58-a08c-f0173c87b88d {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-531218d2-bf60-4b58-a08c-f0173c87b88d img.shogun-image {
    

    
    
    
  }


#s-531218d2-bf60-4b58-a08c-f0173c87b88d .shogun-image-content {
  
    align-items: center;
  
}

#s-6fcf26c3-7b8f-4ebe-abd4-c4851db389e2 {
  box-shadow:5px 0px 0px 0px rgba(0, 0, 0, 0);
padding-top: 25px;
padding-left: 25px;
padding-bottom: 5px;
padding-right: 25px;
background-color: rgba(255, 255, 255, 0);
}
@media (min-width: 768px) and (max-width: 991px){#s-6fcf26c3-7b8f-4ebe-abd4-c4851db389e2 {
  
}
}@media (max-width: 767px){#s-6fcf26c3-7b8f-4ebe-abd4-c4851db389e2 {
  
}
}
#s-a7126322-bf5d-45fa-9024-d298677bd4d4 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(200, 3, 3, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-a7126322-bf5d-45fa-9024-d298677bd4d4:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-a7126322-bf5d-45fa-9024-d298677bd4d4:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-a7126322-bf5d-45fa-9024-d298677bd4d4-root {
    text-align: center;
  }


#s-a7126322-bf5d-45fa-9024-d298677bd4d4.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-a7126322-bf5d-45fa-9024-d298677bd4d4-root {
    text-align: center;
  }


#s-a7126322-bf5d-45fa-9024-d298677bd4d4.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a7126322-bf5d-45fa-9024-d298677bd4d4-root {
    text-align: center;
  }


#s-a7126322-bf5d-45fa-9024-d298677bd4d4.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a7126322-bf5d-45fa-9024-d298677bd4d4-root {
    text-align: center;
  }


#s-a7126322-bf5d-45fa-9024-d298677bd4d4.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-a7126322-bf5d-45fa-9024-d298677bd4d4-root {
    text-align: center;
  }


#s-a7126322-bf5d-45fa-9024-d298677bd4d4.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}
#s-dc55585c-dca2-4cff-8167-dc77c41df2d1 {
  min-height: 450px;
background-color: rgba(0, 168, 69, 0.92);
}








#s-dc55585c-dca2-4cff-8167-dc77c41df2d1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dc55585c-dca2-4cff-8167-dc77c41df2d1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e9c6aaf6-d639-4661-af65-8d622b94c656 {
  text-align: center;
}

#s-e9c6aaf6-d639-4661-af65-8d622b94c656 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 33px;
  line-height: 1.5em;
  
  
}



#s-9be4d8e2-33d9-4925-a4e4-fd9c258af5b8 {
  min-height: 50px;
}








#s-9be4d8e2-33d9-4925-a4e4-fd9c258af5b8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9be4d8e2-33d9-4925-a4e4-fd9c258af5b8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3c61bf48-cd87-4ed0-8e9b-3ef16feb14d1 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-3c61bf48-cd87-4ed0-8e9b-3ef16feb14d1 img.shogun-image {
    

    
    
    
  }


#s-3c61bf48-cd87-4ed0-8e9b-3ef16feb14d1 .shogun-image-content {
  
    align-items: center;
  
}

#s-f20b3496-d2d7-4e55-8de1-9bdabb9a8924 {
  margin-top: 10px;
margin-left: 50px;
margin-bottom: 10px;
margin-right: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-f20b3496-d2d7-4e55-8de1-9bdabb9a8924 {
  display: none;
}
#s-f20b3496-d2d7-4e55-8de1-9bdabb9a8924, #wrap-s-f20b3496-d2d7-4e55-8de1-9bdabb9a8924 { display: none !important; }}@media (max-width: 767px){#s-f20b3496-d2d7-4e55-8de1-9bdabb9a8924 {
  display: none;
}
#s-f20b3496-d2d7-4e55-8de1-9bdabb9a8924, #wrap-s-f20b3496-d2d7-4e55-8de1-9bdabb9a8924 { display: none !important; }}
@media (min-width: 1200px){#s-302360a5-a1dc-4281-a9c7-75599050d283 {
  display: none;
}
#s-302360a5-a1dc-4281-a9c7-75599050d283, #wrap-s-302360a5-a1dc-4281-a9c7-75599050d283 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-302360a5-a1dc-4281-a9c7-75599050d283 {
  display: none;
}
#s-302360a5-a1dc-4281-a9c7-75599050d283, #wrap-s-302360a5-a1dc-4281-a9c7-75599050d283 { display: none !important; }}
#s-cc5ae6d7-0b0e-4ee0-a9f9-a1f7eee9a989 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(30, 0, 255, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(36, 0, 226, 1);
}








#s-cc5ae6d7-0b0e-4ee0-a9f9-a1f7eee9a989 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cc5ae6d7-0b0e-4ee0-a9f9-a1f7eee9a989.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-90bf9eed-6cde-4f79-98ea-037dfe32f885 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-90bf9eed-6cde-4f79-98ea-037dfe32f885 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 26px;
  
  
  
}



#s-e98d6a1d-0af1-4556-a487-34f546724da3 {
  min-height: 50px;
}








#s-e98d6a1d-0af1-4556-a487-34f546724da3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e98d6a1d-0af1-4556-a487-34f546724da3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0a69317d-1673-4b1e-b7ae-ae0375a24dc9 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-0a69317d-1673-4b1e-b7ae-ae0375a24dc9 img.shogun-image {
    

    
    
    
  }


#s-0a69317d-1673-4b1e-b7ae-ae0375a24dc9 .shogun-image-content {
  
    align-items: center;
  
}

#s-4e10bad2-4028-4002-88c8-e28b914af6e0 {
  box-shadow:5px 0px 0px 0px rgba(0, 0, 0, 0);
padding-top: 25px;
padding-left: 25px;
padding-bottom: 5px;
padding-right: 25px;
background-color: rgba(255, 255, 255, 0);
}
@media (min-width: 768px) and (max-width: 991px){#s-4e10bad2-4028-4002-88c8-e28b914af6e0 {
  
}
}@media (max-width: 767px){#s-4e10bad2-4028-4002-88c8-e28b914af6e0 {
  
}
}
#s-1255ca5d-0b43-4100-b77a-3d9a3041bf65 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(200, 3, 3, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-1255ca5d-0b43-4100-b77a-3d9a3041bf65:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-1255ca5d-0b43-4100-b77a-3d9a3041bf65:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-1255ca5d-0b43-4100-b77a-3d9a3041bf65-root {
    text-align: center;
  }


#s-1255ca5d-0b43-4100-b77a-3d9a3041bf65.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-1255ca5d-0b43-4100-b77a-3d9a3041bf65-root {
    text-align: center;
  }


#s-1255ca5d-0b43-4100-b77a-3d9a3041bf65.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-1255ca5d-0b43-4100-b77a-3d9a3041bf65-root {
    text-align: center;
  }


#s-1255ca5d-0b43-4100-b77a-3d9a3041bf65.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-1255ca5d-0b43-4100-b77a-3d9a3041bf65-root {
    text-align: center;
  }


#s-1255ca5d-0b43-4100-b77a-3d9a3041bf65.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-1255ca5d-0b43-4100-b77a-3d9a3041bf65-root {
    text-align: center;
  }


#s-1255ca5d-0b43-4100-b77a-3d9a3041bf65.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
}
#s-fa012f95-d91a-4bb4-ae5f-b0088cc35600 {
  margin-top: 50px;
margin-left: 50px;
margin-bottom: 50px;
margin-right: 50px;
}

@media (min-width: 0px) {
[id="s-fa012f95-d91a-4bb4-ae5f-b0088cc35600"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fa012f95-d91a-4bb4-ae5f-b0088cc35600"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-fa012f95-d91a-4bb4-ae5f-b0088cc35600"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-fa012f95-d91a-4bb4-ae5f-b0088cc35600"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-754bb7d7-280e-4aa0-b270-fe31547ea966 {
  box-shadow:2px 2px 5px 1px rgba(184, 181, 181, 1);
margin-bottom: 12px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 11px;
background-color: rgba(239, 239, 239, 1);
}








#s-754bb7d7-280e-4aa0-b270-fe31547ea966 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-754bb7d7-280e-4aa0-b270-fe31547ea966.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-57fb3d78-1ff1-45c8-aa20-83cb06f1d74c {
  margin-top: 25px;
}
@media (min-width: 1200px){#s-57fb3d78-1ff1-45c8-aa20-83cb06f1d74c {
  padding-top: 100px;
}
}
#s-57fb3d78-1ff1-45c8-aa20-83cb06f1d74c .shogun-icon-wrapper {
  text-align: center;
}


#s-57fb3d78-1ff1-45c8-aa20-83cb06f1d74c .shogun-icon-wrapper > .shogun-icon {

  font-size: 42px !important;
  color: rgba(200, 3, 3, 1);
}

#s-e6bcfdf1-3f4b-4d37-8fa0-11e3db6bd641 {
  margin-top: 12px;
margin-left: 25px;
margin-bottom: 25px;
margin-right: 25px;
background-color: rgba(239, 239, 239, 0);
}

#s-495c779c-60c0-4be4-8646-bfdf295c1c99 {
  box-shadow:2px 2px 5px 1px rgba(184, 181, 181, 1);
margin-bottom: 12px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 11px;
min-height: 75px;
background-color: rgba(239, 239, 239, 1);
}
@media (min-width: 1200px){#s-495c779c-60c0-4be4-8646-bfdf295c1c99 {
  min-height: 500px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-495c779c-60c0-4be4-8646-bfdf295c1c99 {
  min-height: 500px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-495c779c-60c0-4be4-8646-bfdf295c1c99 {
  min-height: 550px;
}
}







#s-495c779c-60c0-4be4-8646-bfdf295c1c99 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-495c779c-60c0-4be4-8646-bfdf295c1c99.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-cd28cfc8-f862-44cd-856b-f0147654efff {
  margin-top: 25px;
}
@media (min-width: 1200px){#s-cd28cfc8-f862-44cd-856b-f0147654efff {
  padding-top: 100px;
padding-bottom: 0px;
}
}
#s-cd28cfc8-f862-44cd-856b-f0147654efff .shogun-icon-wrapper {
  text-align: center;
}


#s-cd28cfc8-f862-44cd-856b-f0147654efff .shogun-icon-wrapper > .shogun-icon {

  font-size: 40px !important;
  color: rgba(200, 3, 3, 1);
}

#s-6bee1367-07ef-40b3-ae37-c8cade5ca017 {
  margin-top: 12px;
margin-left: 25px;
margin-bottom: 25px;
margin-right: 25px;
background-color: rgba(239, 239, 239, 0);
}

#s-c484d2bd-7a93-4661-bfcd-a52b1485a263 {
  box-shadow:2px 2px 5px 1px rgba(184, 181, 181, 1);
margin-bottom: 12px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 11px;
min-height: 280px;
background-color: rgba(239, 239, 239, 1);
}
@media (min-width: 1200px){#s-c484d2bd-7a93-4661-bfcd-a52b1485a263 {
  margin-top: 2px;
min-height: 500px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c484d2bd-7a93-4661-bfcd-a52b1485a263 {
  min-height: 500px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-c484d2bd-7a93-4661-bfcd-a52b1485a263 {
  min-height: 550px;
}
}@media (max-width: 767px){#s-c484d2bd-7a93-4661-bfcd-a52b1485a263 {
  min-height: 75px;
}
}







#s-c484d2bd-7a93-4661-bfcd-a52b1485a263 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c484d2bd-7a93-4661-bfcd-a52b1485a263.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-d09e9213-3150-4813-a7f8-6301e4acdec5 {
  margin-top: 25px;
}
@media (min-width: 1200px){#s-d09e9213-3150-4813-a7f8-6301e4acdec5 {
  padding-top: 100px;
padding-bottom: 0px;
}
}
#s-d09e9213-3150-4813-a7f8-6301e4acdec5 .shogun-icon-wrapper {
  text-align: center;
}


#s-d09e9213-3150-4813-a7f8-6301e4acdec5 .shogun-icon-wrapper > .shogun-icon {

  font-size: 40px !important;
  color: rgba(200, 3, 3, 1);
}

#s-837c4677-b411-4510-ac6f-6707bf8cc896 {
  margin-top: 12px;
margin-left: 25px;
margin-bottom: 25px;
margin-right: 25px;
background-color: rgba(239, 239, 239, 0);
}

#s-67ac1dfa-2307-4279-909f-ef24d342cb61 {
  min-height: 50px;
}








#s-67ac1dfa-2307-4279-909f-ef24d342cb61 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-67ac1dfa-2307-4279-909f-ef24d342cb61.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-597d8fd4-d360-485a-b848-56dad25ca48c {
  box-shadow:2px 2px 5px 1px rgba(184, 181, 181, 1);
margin-top: 50px;
margin-left: 50px;
margin-bottom: 50px;
margin-right: 50px;
padding-top: 25px;
padding-left: 50px;
padding-bottom: 25px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 11px;
min-height: 50px;
background-color: rgba(245, 245, 245, 1);
}
@media (min-width: 1200px){#s-597d8fd4-d360-485a-b848-56dad25ca48c {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-597d8fd4-d360-485a-b848-56dad25ca48c {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-597d8fd4-d360-485a-b848-56dad25ca48c {
  
}
}@media (max-width: 767px){#s-597d8fd4-d360-485a-b848-56dad25ca48c {
  
}
}







#s-597d8fd4-d360-485a-b848-56dad25ca48c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-597d8fd4-d360-485a-b848-56dad25ca48c.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-21ac67e1-b850-4caa-8b75-197c771d4e56 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-21ac67e1-b850-4caa-8b75-197c771d4e56 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-56ac48de-5111-4341-82b3-5c9c13c0fafb {
  margin-top: 50px;
margin-left: 50px;
margin-bottom: 50px;
margin-right: 50px;
}

@media (min-width: 0px) {
[id="s-56ac48de-5111-4341-82b3-5c9c13c0fafb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-56ac48de-5111-4341-82b3-5c9c13c0fafb"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 25.0px);
}

[id="s-56ac48de-5111-4341-82b3-5c9c13c0fafb"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-56ac48de-5111-4341-82b3-5c9c13c0fafb"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 25.0px);
}

[id="s-56ac48de-5111-4341-82b3-5c9c13c0fafb"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-56ac48de-5111-4341-82b3-5c9c13c0fafb"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 25.0px);
}

[id="s-56ac48de-5111-4341-82b3-5c9c13c0fafb"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 25.0px);
}

}

#s-849c03f6-4314-4714-8f0e-dda943a1e4b2 {
  text-align: center;
}
@media (min-width: 1200px){#s-849c03f6-4314-4714-8f0e-dda943a1e4b2 {
  display: none;
}
#s-849c03f6-4314-4714-8f0e-dda943a1e4b2, #wrap-s-849c03f6-4314-4714-8f0e-dda943a1e4b2 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-849c03f6-4314-4714-8f0e-dda943a1e4b2 {
  display: none;
}
#s-849c03f6-4314-4714-8f0e-dda943a1e4b2, #wrap-s-849c03f6-4314-4714-8f0e-dda943a1e4b2 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-849c03f6-4314-4714-8f0e-dda943a1e4b2 {
  display: none;
}
#s-849c03f6-4314-4714-8f0e-dda943a1e4b2, #wrap-s-849c03f6-4314-4714-8f0e-dda943a1e4b2 { display: none !important; }}@media (max-width: 767px){#s-849c03f6-4314-4714-8f0e-dda943a1e4b2 {
  display: none;
}
#s-849c03f6-4314-4714-8f0e-dda943a1e4b2, #wrap-s-849c03f6-4314-4714-8f0e-dda943a1e4b2 { display: none !important; }}






  #s-849c03f6-4314-4714-8f0e-dda943a1e4b2 img.shogun-image {
    

    
    
    
  }


#s-849c03f6-4314-4714-8f0e-dda943a1e4b2 .shogun-image-content {
  
    align-items: center;
  
}

#s-a2372432-f733-466c-930f-5256761c0c3e {
  margin-right: 50px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-a2372432-f733-466c-930f-5256761c0c3e .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  900 ;
  font-family: "Coustard";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-45cc3583-90e0-4c1e-9e86-2e295ad8cf26 {
  margin-right: 50px;
}

#s-bd9bc98b-f15b-4ff8-83bb-c95a4e2affec {
  border-style: solid;
margin-top: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(227, 227, 227, 1);
}

@media (min-width: 0px) {
[id="s-bd9bc98b-f15b-4ff8-83bb-c95a4e2affec"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bd9bc98b-f15b-4ff8-83bb-c95a4e2affec"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-bd9bc98b-f15b-4ff8-83bb-c95a4e2affec"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-bd9bc98b-f15b-4ff8-83bb-c95a4e2affec"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-bd9bc98b-f15b-4ff8-83bb-c95a4e2affec"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-bd9bc98b-f15b-4ff8-83bb-c95a4e2affec"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-bd9bc98b-f15b-4ff8-83bb-c95a4e2affec"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

#s-f4c3f64c-bea7-49e5-b670-b925ea73ac86 {
  border-style: solid;
margin-bottom: 50px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(227, 227, 227, 1);
border-radius: 0px;
text-align: center;
background-color: rgba(200, 3, 3, 1);
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-f4c3f64c-bea7-49e5-b670-b925ea73ac86:hover {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: #000 !important;
opacity: 1 !important;
background-color: rgba(227, 227, 227, 1) !important;
text-decoration: none !important;}#s-f4c3f64c-bea7-49e5-b670-b925ea73ac86:active {background-color: rgba(220, 220, 220, 1) !important;
text-decoration: none !important;}

  #s-f4c3f64c-bea7-49e5-b670-b925ea73ac86-root {
    text-align: center;
  }


#s-f4c3f64c-bea7-49e5-b670-b925ea73ac86.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-f4c3f64c-bea7-49e5-b670-b925ea73ac86-root {
    text-align: center;
  }


#s-f4c3f64c-bea7-49e5-b670-b925ea73ac86.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f4c3f64c-bea7-49e5-b670-b925ea73ac86-root {
    text-align: center;
  }


#s-f4c3f64c-bea7-49e5-b670-b925ea73ac86.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f4c3f64c-bea7-49e5-b670-b925ea73ac86-root {
    text-align: center;
  }


#s-f4c3f64c-bea7-49e5-b670-b925ea73ac86.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-f4c3f64c-bea7-49e5-b670-b925ea73ac86-root {
    text-align: center;
  }


#s-f4c3f64c-bea7-49e5-b670-b925ea73ac86.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
}
#s-083b9d67-04ae-4bf7-97e7-e2b46ed4057f {
  margin-top: 50px;
margin-left: 50px;
margin-bottom: 50px;
margin-right: 50px;
}

@media (min-width: 0px) {
[id="s-083b9d67-04ae-4bf7-97e7-e2b46ed4057f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-083b9d67-04ae-4bf7-97e7-e2b46ed4057f"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 25.0px);
}

[id="s-083b9d67-04ae-4bf7-97e7-e2b46ed4057f"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-083b9d67-04ae-4bf7-97e7-e2b46ed4057f"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 25.0px);
}

[id="s-083b9d67-04ae-4bf7-97e7-e2b46ed4057f"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-083b9d67-04ae-4bf7-97e7-e2b46ed4057f"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 25.0px);
}

[id="s-083b9d67-04ae-4bf7-97e7-e2b46ed4057f"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 25.0px);
}

}

#s-7d0db771-76f0-477b-963a-701228c3190c {
  text-align: center;
}
@media (min-width: 1200px){#s-7d0db771-76f0-477b-963a-701228c3190c {
  display: none;
}
#s-7d0db771-76f0-477b-963a-701228c3190c, #wrap-s-7d0db771-76f0-477b-963a-701228c3190c { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7d0db771-76f0-477b-963a-701228c3190c {
  display: none;
}
#s-7d0db771-76f0-477b-963a-701228c3190c, #wrap-s-7d0db771-76f0-477b-963a-701228c3190c { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7d0db771-76f0-477b-963a-701228c3190c {
  display: none;
}
#s-7d0db771-76f0-477b-963a-701228c3190c, #wrap-s-7d0db771-76f0-477b-963a-701228c3190c { display: none !important; }}@media (max-width: 767px){#s-7d0db771-76f0-477b-963a-701228c3190c {
  display: none;
}
#s-7d0db771-76f0-477b-963a-701228c3190c, #wrap-s-7d0db771-76f0-477b-963a-701228c3190c { display: none !important; }}






  #s-7d0db771-76f0-477b-963a-701228c3190c img.shogun-image {
    

    
    
    
  }


#s-7d0db771-76f0-477b-963a-701228c3190c .shogun-image-content {
  
    align-items: center;
  
}

#s-2421a8af-715e-41a0-b03d-f65c20e205da {
  margin-right: 50px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-2421a8af-715e-41a0-b03d-f65c20e205da .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  900 ;
  font-family: "Coustard";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-876da984-70fa-4dc8-97d0-ed95ee73b2f1 {
  margin-right: 50px;
}

#s-87a01081-9a6a-44cf-8005-5d8db5b48f44 {
  border-style: solid;
margin-top: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(227, 227, 227, 1);
}

@media (min-width: 0px) {
[id="s-87a01081-9a6a-44cf-8005-5d8db5b48f44"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-87a01081-9a6a-44cf-8005-5d8db5b48f44"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-87a01081-9a6a-44cf-8005-5d8db5b48f44"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-87a01081-9a6a-44cf-8005-5d8db5b48f44"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-87a01081-9a6a-44cf-8005-5d8db5b48f44"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-87a01081-9a6a-44cf-8005-5d8db5b48f44"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-87a01081-9a6a-44cf-8005-5d8db5b48f44"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

#s-bdaf7ae4-90a7-492f-87be-44e0871bc030 {
  border-style: solid;
margin-bottom: 50px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(227, 227, 227, 1);
border-radius: 0px;
text-align: center;
background-color: rgba(200, 3, 3, 1);
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-bdaf7ae4-90a7-492f-87be-44e0871bc030:hover {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: #000 !important;
opacity: 1 !important;
background-color: rgba(227, 227, 227, 1) !important;
text-decoration: none !important;}#s-bdaf7ae4-90a7-492f-87be-44e0871bc030:active {background-color: rgba(220, 220, 220, 1) !important;
text-decoration: none !important;}

  #s-bdaf7ae4-90a7-492f-87be-44e0871bc030-root {
    text-align: center;
  }


#s-bdaf7ae4-90a7-492f-87be-44e0871bc030.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-bdaf7ae4-90a7-492f-87be-44e0871bc030-root {
    text-align: center;
  }


#s-bdaf7ae4-90a7-492f-87be-44e0871bc030.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-bdaf7ae4-90a7-492f-87be-44e0871bc030-root {
    text-align: center;
  }


#s-bdaf7ae4-90a7-492f-87be-44e0871bc030.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-bdaf7ae4-90a7-492f-87be-44e0871bc030-root {
    text-align: center;
  }


#s-bdaf7ae4-90a7-492f-87be-44e0871bc030.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-bdaf7ae4-90a7-492f-87be-44e0871bc030-root {
    text-align: center;
  }


#s-bdaf7ae4-90a7-492f-87be-44e0871bc030.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
}
#s-4437cfa3-ac29-49f6-bcde-087bab946834 {
  margin-top: 50px;
margin-left: 50px;
margin-bottom: 50px;
margin-right: 50px;
}

@media (min-width: 0px) {
[id="s-4437cfa3-ac29-49f6-bcde-087bab946834"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4437cfa3-ac29-49f6-bcde-087bab946834"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 25.0px);
}

[id="s-4437cfa3-ac29-49f6-bcde-087bab946834"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-4437cfa3-ac29-49f6-bcde-087bab946834"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 25.0px);
}

[id="s-4437cfa3-ac29-49f6-bcde-087bab946834"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-4437cfa3-ac29-49f6-bcde-087bab946834"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 25.0px);
}

[id="s-4437cfa3-ac29-49f6-bcde-087bab946834"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 25.0px);
}

}

#s-dfc2d453-46e8-474b-b7d1-94dbfe758fc9 {
  margin-top: 5px;
margin-bottom: 5px;
text-align: center;
}







  #s-dfc2d453-46e8-474b-b7d1-94dbfe758fc9 img.shogun-image {
    

    
    
    
  }


#s-dfc2d453-46e8-474b-b7d1-94dbfe758fc9 .shogun-image-content {
  
    align-items: center;
  
}

#s-223d7f04-df1d-4447-af29-1789d97b2520 {
  margin-right: 50px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-223d7f04-df1d-4447-af29-1789d97b2520 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  900 ;
  font-family: "Coustard";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-36b73aa2-a5e8-4244-981b-c8789769da05 {
  margin-right: 50px;
}

#s-9955dc93-eb2b-4f8b-b808-a05c9596894c {
  border-style: solid;
margin-top: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(227, 227, 227, 1);
}

@media (min-width: 0px) {
[id="s-9955dc93-eb2b-4f8b-b808-a05c9596894c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9955dc93-eb2b-4f8b-b808-a05c9596894c"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-9955dc93-eb2b-4f8b-b808-a05c9596894c"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-9955dc93-eb2b-4f8b-b808-a05c9596894c"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-9955dc93-eb2b-4f8b-b808-a05c9596894c"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-9955dc93-eb2b-4f8b-b808-a05c9596894c"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-9955dc93-eb2b-4f8b-b808-a05c9596894c"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

#s-ebe1d2fc-b847-4ed2-bc38-d57a2d06ed41 {
  border-style: solid;
margin-bottom: 50px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(227, 227, 227, 1);
border-radius: 0px;
text-align: center;
background-color: rgba(200, 3, 3, 1);
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-ebe1d2fc-b847-4ed2-bc38-d57a2d06ed41:hover {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: #000 !important;
opacity: 1 !important;
background-color: rgba(227, 227, 227, 1) !important;
text-decoration: none !important;}#s-ebe1d2fc-b847-4ed2-bc38-d57a2d06ed41:active {background-color: rgba(220, 220, 220, 1) !important;
text-decoration: none !important;}

  #s-ebe1d2fc-b847-4ed2-bc38-d57a2d06ed41-root {
    text-align: center;
  }


#s-ebe1d2fc-b847-4ed2-bc38-d57a2d06ed41.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-ebe1d2fc-b847-4ed2-bc38-d57a2d06ed41-root {
    text-align: center;
  }


#s-ebe1d2fc-b847-4ed2-bc38-d57a2d06ed41.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ebe1d2fc-b847-4ed2-bc38-d57a2d06ed41-root {
    text-align: center;
  }


#s-ebe1d2fc-b847-4ed2-bc38-d57a2d06ed41.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ebe1d2fc-b847-4ed2-bc38-d57a2d06ed41-root {
    text-align: center;
  }


#s-ebe1d2fc-b847-4ed2-bc38-d57a2d06ed41.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-ebe1d2fc-b847-4ed2-bc38-d57a2d06ed41-root {
    text-align: center;
  }


#s-ebe1d2fc-b847-4ed2-bc38-d57a2d06ed41.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
}
#s-70828be8-a764-4cdb-b12e-4d3cba42a184 {
  margin-top: 50px;
margin-left: 50px;
margin-bottom: 50px;
margin-right: 50px;
}

@media (min-width: 0px) {
[id="s-70828be8-a764-4cdb-b12e-4d3cba42a184"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-70828be8-a764-4cdb-b12e-4d3cba42a184"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 25.0px);
}

[id="s-70828be8-a764-4cdb-b12e-4d3cba42a184"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-70828be8-a764-4cdb-b12e-4d3cba42a184"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 25.0px);
}

[id="s-70828be8-a764-4cdb-b12e-4d3cba42a184"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-70828be8-a764-4cdb-b12e-4d3cba42a184"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 25.0px);
}

[id="s-70828be8-a764-4cdb-b12e-4d3cba42a184"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 25.0px);
}

}

#s-f5b55f92-89c7-4ed9-b822-a2e812570d97 {
  margin-top: 5px;
margin-bottom: 5px;
text-align: center;
}







  #s-f5b55f92-89c7-4ed9-b822-a2e812570d97 img.shogun-image {
    

    
    
    
  }


#s-f5b55f92-89c7-4ed9-b822-a2e812570d97 .shogun-image-content {
  
    align-items: center;
  
}

#s-a7663c3a-9d04-451c-9e1b-848e05dde2b3 {
  margin-right: 50px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-a7663c3a-9d04-451c-9e1b-848e05dde2b3 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  900 ;
  font-family: "Coustard";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-963b5af8-258f-40e9-9177-809bbe7ca6ec {
  margin-right: 50px;
}

#s-6342bba9-a4d4-41d6-a443-9df1d0d86cd2 {
  border-style: solid;
margin-top: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(227, 227, 227, 1);
}

@media (min-width: 0px) {
[id="s-6342bba9-a4d4-41d6-a443-9df1d0d86cd2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6342bba9-a4d4-41d6-a443-9df1d0d86cd2"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-6342bba9-a4d4-41d6-a443-9df1d0d86cd2"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-6342bba9-a4d4-41d6-a443-9df1d0d86cd2"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-6342bba9-a4d4-41d6-a443-9df1d0d86cd2"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-6342bba9-a4d4-41d6-a443-9df1d0d86cd2"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-6342bba9-a4d4-41d6-a443-9df1d0d86cd2"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

#s-2ce8625f-d539-4e7f-96fc-79ecc26d88eb {
  border-style: solid;
margin-bottom: 50px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(227, 227, 227, 1);
border-radius: 0px;
text-align: center;
background-color: rgba(200, 3, 3, 1);
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-2ce8625f-d539-4e7f-96fc-79ecc26d88eb:hover {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: #000 !important;
opacity: 1 !important;
background-color: rgba(227, 227, 227, 1) !important;
text-decoration: none !important;}#s-2ce8625f-d539-4e7f-96fc-79ecc26d88eb:active {background-color: rgba(220, 220, 220, 1) !important;
text-decoration: none !important;}

  #s-2ce8625f-d539-4e7f-96fc-79ecc26d88eb-root {
    text-align: center;
  }


#s-2ce8625f-d539-4e7f-96fc-79ecc26d88eb.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-2ce8625f-d539-4e7f-96fc-79ecc26d88eb-root {
    text-align: center;
  }


#s-2ce8625f-d539-4e7f-96fc-79ecc26d88eb.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-2ce8625f-d539-4e7f-96fc-79ecc26d88eb-root {
    text-align: center;
  }


#s-2ce8625f-d539-4e7f-96fc-79ecc26d88eb.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-2ce8625f-d539-4e7f-96fc-79ecc26d88eb-root {
    text-align: center;
  }


#s-2ce8625f-d539-4e7f-96fc-79ecc26d88eb.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-2ce8625f-d539-4e7f-96fc-79ecc26d88eb-root {
    text-align: center;
  }


#s-2ce8625f-d539-4e7f-96fc-79ecc26d88eb.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
}
#s-a19582ed-a622-4e73-a95a-bb85b58e1418 {
  margin-top: 50px;
margin-left: 50px;
margin-bottom: 50px;
margin-right: 50px;
}

@media (min-width: 0px) {
[id="s-a19582ed-a622-4e73-a95a-bb85b58e1418"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a19582ed-a622-4e73-a95a-bb85b58e1418"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 25.0px);
}

[id="s-a19582ed-a622-4e73-a95a-bb85b58e1418"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-a19582ed-a622-4e73-a95a-bb85b58e1418"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 25.0px);
}

[id="s-a19582ed-a622-4e73-a95a-bb85b58e1418"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-a19582ed-a622-4e73-a95a-bb85b58e1418"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 25.0px);
}

[id="s-a19582ed-a622-4e73-a95a-bb85b58e1418"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 25.0px);
}

}

#s-57db4691-2ce3-4d3d-8dda-2ccf70c21327 {
  margin-top: 5px;
margin-bottom: 5px;
text-align: center;
}







  #s-57db4691-2ce3-4d3d-8dda-2ccf70c21327 img.shogun-image {
    

    
    
    
  }


#s-57db4691-2ce3-4d3d-8dda-2ccf70c21327 .shogun-image-content {
  
    align-items: center;
  
}

#s-dbbab036-a7a8-42b7-a53c-0779696c660a {
  margin-right: 50px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-dbbab036-a7a8-42b7-a53c-0779696c660a .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  900 ;
  font-family: "Coustard";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-e48e98f9-59bb-4e61-bfac-d53c33696335 {
  margin-right: 50px;
}

#s-cd2c04b2-3682-4d57-b0f2-e9668a3c0163 {
  border-style: solid;
margin-top: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(227, 227, 227, 1);
}

@media (min-width: 0px) {
[id="s-cd2c04b2-3682-4d57-b0f2-e9668a3c0163"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cd2c04b2-3682-4d57-b0f2-e9668a3c0163"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-cd2c04b2-3682-4d57-b0f2-e9668a3c0163"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-cd2c04b2-3682-4d57-b0f2-e9668a3c0163"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-cd2c04b2-3682-4d57-b0f2-e9668a3c0163"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-cd2c04b2-3682-4d57-b0f2-e9668a3c0163"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-cd2c04b2-3682-4d57-b0f2-e9668a3c0163"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

#s-a53259fc-1dea-4ff9-8cc3-3eb0a4352155 {
  border-style: solid;
margin-bottom: 50px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(227, 227, 227, 1);
border-radius: 0px;
text-align: center;
background-color: rgba(200, 3, 3, 1);
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-a53259fc-1dea-4ff9-8cc3-3eb0a4352155:hover {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: #000 !important;
opacity: 1 !important;
background-color: rgba(227, 227, 227, 1) !important;
text-decoration: none !important;}#s-a53259fc-1dea-4ff9-8cc3-3eb0a4352155:active {background-color: rgba(220, 220, 220, 1) !important;
text-decoration: none !important;}

  #s-a53259fc-1dea-4ff9-8cc3-3eb0a4352155-root {
    text-align: center;
  }


#s-a53259fc-1dea-4ff9-8cc3-3eb0a4352155.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-a53259fc-1dea-4ff9-8cc3-3eb0a4352155-root {
    text-align: center;
  }


#s-a53259fc-1dea-4ff9-8cc3-3eb0a4352155.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a53259fc-1dea-4ff9-8cc3-3eb0a4352155-root {
    text-align: center;
  }


#s-a53259fc-1dea-4ff9-8cc3-3eb0a4352155.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a53259fc-1dea-4ff9-8cc3-3eb0a4352155-root {
    text-align: center;
  }


#s-a53259fc-1dea-4ff9-8cc3-3eb0a4352155.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-a53259fc-1dea-4ff9-8cc3-3eb0a4352155-root {
    text-align: center;
  }


#s-a53259fc-1dea-4ff9-8cc3-3eb0a4352155.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}
}
#s-b599f0a2-f62e-4bab-8719-99eb5c793a9b {
  margin-top: 10px;
min-height: 50px;
}








#s-b599f0a2-f62e-4bab-8719-99eb5c793a9b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b599f0a2-f62e-4bab-8719-99eb5c793a9b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d33b9891-ebd8-4ac7-8c2e-942fbfa2cc18 {
  padding-top: 13px;
padding-bottom: 13px;
text-align: center;
background-color: rgba(0, 0, 0, 0);
}







  #s-d33b9891-ebd8-4ac7-8c2e-942fbfa2cc18 img.shogun-image {
    

    
    
    
  }


#s-d33b9891-ebd8-4ac7-8c2e-942fbfa2cc18 .shogun-image-content {
  
    align-items: center;
  
}

#s-24a3ace8-cae5-403b-bc73-ce8b00139fdf {
  margin-top: 16px;
margin-left: 50px;
margin-bottom: 32px;
margin-right: 50px;
}

#s-ad8bcec3-bccf-4f6c-a5a6-9c48564b3955 {
  background-color: rgba(209, 67, 67, 1);
}

@media (min-width: 0px) {
[id="s-ad8bcec3-bccf-4f6c-a5a6-9c48564b3955"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ad8bcec3-bccf-4f6c-a5a6-9c48564b3955"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-ad8bcec3-bccf-4f6c-a5a6-9c48564b3955"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-ad8bcec3-bccf-4f6c-a5a6-9c48564b3955"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-ad8bcec3-bccf-4f6c-a5a6-9c48564b3955"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-ad8bcec3-bccf-4f6c-a5a6-9c48564b3955"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-ad8bcec3-bccf-4f6c-a5a6-9c48564b3955"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (max-width: 767px) {
  [id="s-ad8bcec3-bccf-4f6c-a5a6-9c48564b3955"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-836091ee-61b7-482f-954a-e18291c34879 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-836091ee-61b7-482f-954a-e18291c34879 .shogun-heading-component h1 {
  color: rgba(248, 248, 248, 1);
  font-weight:  normal ;
  font-family: "Damion";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



.shg-map-info-window-container {
  max-width: 200px;
  color: #000000;
}

.shg-map-container {
  height: 400px;
}

.shg-map {
  height: 100%;
}

.shg-map .gm-style-cc,
.shg-map .gm-style-cc + div {
  visibility: visible !important;
}

#s-27778640-f4bc-4cc8-bec9-c4b8dafd8c78 {
  padding-bottom: 20px;
min-height: 400px;
max-width: 1000px;
}

/*
  $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}
