.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-c6d7789b-f71d-48db-83aa-80cb36bc0554 {
  margin-top: 44px;
margin-bottom: 50px;
min-height: 50px;
}
@media (min-width: 1200px){#s-c6d7789b-f71d-48db-83aa-80cb36bc0554 {
  margin-bottom: 200px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c6d7789b-f71d-48db-83aa-80cb36bc0554 {
  margin-bottom: 200px;
}
}@media (max-width: 767px){#s-c6d7789b-f71d-48db-83aa-80cb36bc0554 {
  margin-top: 22px;
min-height: 51px;
}
}







#s-c6d7789b-f71d-48db-83aa-80cb36bc0554 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c6d7789b-f71d-48db-83aa-80cb36bc0554.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9a54d8ef-2b80-4b99-b148-67421474ce79 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
}
@media (max-width: 767px){#s-9a54d8ef-2b80-4b99-b148-67421474ce79 {
  display: none;
}
#s-9a54d8ef-2b80-4b99-b148-67421474ce79, #wrap-s-9a54d8ef-2b80-4b99-b148-67421474ce79 { display:none !important; }}







#s-9a54d8ef-2b80-4b99-b148-67421474ce79 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9a54d8ef-2b80-4b99-b148-67421474ce79.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-content-bottom {
  align-items: flex-end;
}
#s-7df7bd5e-d0f0-4c9e-884b-603acc8cb8f4 {
  text-align: center;
}
@media (min-width: 1200px){#s-7df7bd5e-d0f0-4c9e-884b-603acc8cb8f4 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-7df7bd5e-d0f0-4c9e-884b-603acc8cb8f4 {
  
}
}@media (max-width: 767px){#s-7df7bd5e-d0f0-4c9e-884b-603acc8cb8f4 {
  
}
}






  #s-7df7bd5e-d0f0-4c9e-884b-603acc8cb8f4 img.shogun-image {
    

    
    
    
  }


#s-7df7bd5e-d0f0-4c9e-884b-603acc8cb8f4 .shogun-image-content {
  
    align-items: center;
  
}

#s-10941b68-b6e5-43a8-a8ed-8fc2f3dc1b99 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-10941b68-b6e5-43a8-a8ed-8fc2f3dc1b99 {
  display: none;
}
#s-10941b68-b6e5-43a8-a8ed-8fc2f3dc1b99, #wrap-s-10941b68-b6e5-43a8-a8ed-8fc2f3dc1b99 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-10941b68-b6e5-43a8-a8ed-8fc2f3dc1b99 {
  display: none;
}
#s-10941b68-b6e5-43a8-a8ed-8fc2f3dc1b99, #wrap-s-10941b68-b6e5-43a8-a8ed-8fc2f3dc1b99 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-10941b68-b6e5-43a8-a8ed-8fc2f3dc1b99 {
  display: none;
}
#s-10941b68-b6e5-43a8-a8ed-8fc2f3dc1b99, #wrap-s-10941b68-b6e5-43a8-a8ed-8fc2f3dc1b99 { display:none !important; }}







#s-10941b68-b6e5-43a8-a8ed-8fc2f3dc1b99 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-10941b68-b6e5-43a8-a8ed-8fc2f3dc1b99.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-123d0df0-16b4-400c-88f7-38f426670134 {
  text-align: center;
}







  #s-123d0df0-16b4-400c-88f7-38f426670134 img.shogun-image {
    

    
    
    
  }


#s-123d0df0-16b4-400c-88f7-38f426670134 .shogun-image-content {
  
    align-items: center;
  
}

#s-f4e485b4-2510-4aa7-87fb-39977354377a {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
min-height: 1px;
}








#s-f4e485b4-2510-4aa7-87fb-39977354377a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f4e485b4-2510-4aa7-87fb-39977354377a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: 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-03835ef2-8dc6-40b2-8f94-dafca1c03e4d {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 2px;
margin-right: 0px;
padding-left: 7%;
padding-right: 7%;
}
@media (max-width: 767px){#s-03835ef2-8dc6-40b2-8f94-dafca1c03e4d {
  min-height: 0px;
}
}
.shg-align-container {
  box-sizing: border-box;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-79c385c1-eb0a-440e-a1e7-d36f4f69e775 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-79c385c1-eb0a-440e-a1e7-d36f4f69e775 {
  display: none;
}
#s-79c385c1-eb0a-440e-a1e7-d36f4f69e775, #wrap-s-79c385c1-eb0a-440e-a1e7-d36f4f69e775 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-79c385c1-eb0a-440e-a1e7-d36f4f69e775 {
  display: none;
}
#s-79c385c1-eb0a-440e-a1e7-d36f4f69e775, #wrap-s-79c385c1-eb0a-440e-a1e7-d36f4f69e775 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-79c385c1-eb0a-440e-a1e7-d36f4f69e775 {
  display: none;
}
#s-79c385c1-eb0a-440e-a1e7-d36f4f69e775, #wrap-s-79c385c1-eb0a-440e-a1e7-d36f4f69e775 { display:none !important; }}






  img.s-79c385c1-eb0a-440e-a1e7-d36f4f69e775.shogun-image {
    
    
  }


.s-79c385c1-eb0a-440e-a1e7-d36f4f69e775 .shogun-image-content {
  
    align-items: center;
  
}

.s-79c385c1-eb0a-440e-a1e7-d36f4f69e775.shg-align-container {
  text-align: center
}

.s-79c385c1-eb0a-440e-a1e7-d36f4f69e775.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-79c385c1-eb0a-440e-a1e7-d36f4f69e775.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-79c385c1-eb0a-440e-a1e7-d36f4f69e775.shogun-image {
    
    
  }


.s-79c385c1-eb0a-440e-a1e7-d36f4f69e775 .shogun-image-content {
  
    align-items: center;
  
}

.s-79c385c1-eb0a-440e-a1e7-d36f4f69e775.shg-align-container {
  text-align: center
}

.s-79c385c1-eb0a-440e-a1e7-d36f4f69e775.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-79c385c1-eb0a-440e-a1e7-d36f4f69e775.shogun-image {
  box-sizing: border-box;
}


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





  img.s-79c385c1-eb0a-440e-a1e7-d36f4f69e775.shogun-image {
    
    
  }


.s-79c385c1-eb0a-440e-a1e7-d36f4f69e775 .shogun-image-content {
  
    align-items: center;
  
}

.s-79c385c1-eb0a-440e-a1e7-d36f4f69e775.shg-align-container {
  text-align: center
}

.s-79c385c1-eb0a-440e-a1e7-d36f4f69e775.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-79c385c1-eb0a-440e-a1e7-d36f4f69e775.shogun-image {
  box-sizing: border-box;
}


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





  img.s-79c385c1-eb0a-440e-a1e7-d36f4f69e775.shogun-image {
    
    
  }


.s-79c385c1-eb0a-440e-a1e7-d36f4f69e775 .shogun-image-content {
  
    align-items: center;
  
}

.s-79c385c1-eb0a-440e-a1e7-d36f4f69e775.shg-align-container {
  text-align: center
}

.s-79c385c1-eb0a-440e-a1e7-d36f4f69e775.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-79c385c1-eb0a-440e-a1e7-d36f4f69e775.shogun-image {
  box-sizing: border-box;
}


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





  img.s-79c385c1-eb0a-440e-a1e7-d36f4f69e775.shogun-image {
    
    
  }


.s-79c385c1-eb0a-440e-a1e7-d36f4f69e775 .shogun-image-content {
  
    align-items: center;
  
}

.s-79c385c1-eb0a-440e-a1e7-d36f4f69e775.shg-align-container {
  text-align: center
}

.s-79c385c1-eb0a-440e-a1e7-d36f4f69e775.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-79c385c1-eb0a-440e-a1e7-d36f4f69e775.shogun-image {
  box-sizing: border-box;
}


}
#s-0edafa20-703b-4c6f-9f5d-2f1b23f10615 {
  min-height: 50px;
}








#s-0edafa20-703b-4c6f-9f5d-2f1b23f10615 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0edafa20-703b-4c6f-9f5d-2f1b23f10615.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-faa14802-a849-4405-85f2-ebd24b0e42cf {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
text-align: center;
}
@media (max-width: 767px){#s-faa14802-a849-4405-85f2-ebd24b0e42cf {
  display: none;
}
#s-faa14802-a849-4405-85f2-ebd24b0e42cf, #wrap-s-faa14802-a849-4405-85f2-ebd24b0e42cf { display:none !important; }}






  #s-faa14802-a849-4405-85f2-ebd24b0e42cf img.shogun-image {
    

    
    
    
  }


#s-faa14802-a849-4405-85f2-ebd24b0e42cf .shogun-image-content {
  
    align-items: center;
  
}

.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-117c27c8-b2d2-454c-815a-fbe489a4bd5a {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(223, 223, 223, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(89, 89, 89, 1);
}
#s-117c27c8-b2d2-454c-815a-fbe489a4bd5a:hover {background-color: rgba(223, 223, 223, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-117c27c8-b2d2-454c-815a-fbe489a4bd5a:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-117c27c8-b2d2-454c-815a-fbe489a4bd5a-btn-wrapper {
    text-align: center;
  }


#s-117c27c8-b2d2-454c-815a-fbe489a4bd5a.shg-btn {
  color: rgba(89, 89, 89, 1);
  font-size: 20px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-117c27c8-b2d2-454c-815a-fbe489a4bd5a-btn-wrapper {
    text-align: center;
  }


#s-117c27c8-b2d2-454c-815a-fbe489a4bd5a.shg-btn {
  color: rgba(89, 89, 89, 1);
  font-size: 20px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-117c27c8-b2d2-454c-815a-fbe489a4bd5a-btn-wrapper {
    text-align: center;
  }


#s-117c27c8-b2d2-454c-815a-fbe489a4bd5a.shg-btn {
  color: rgba(89, 89, 89, 1);
  font-size: 20px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-117c27c8-b2d2-454c-815a-fbe489a4bd5a-btn-wrapper {
    text-align: center;
  }


#s-117c27c8-b2d2-454c-815a-fbe489a4bd5a.shg-btn {
  color: rgba(89, 89, 89, 1);
  font-size: 20px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-117c27c8-b2d2-454c-815a-fbe489a4bd5a-btn-wrapper {
    text-align: center;
  }


#s-117c27c8-b2d2-454c-815a-fbe489a4bd5a.shg-btn {
  color: rgba(89, 89, 89, 1);
  font-size: 20px;
  
  
  
  display:  inline-block ;
}
}
  #s-117c27c8-b2d2-454c-815a-fbe489a4bd5a-btn-wrapper {
    text-align: center;
  }


#s-117c27c8-b2d2-454c-815a-fbe489a4bd5a.shg-btn {
  color: rgba(89, 89, 89, 1);
  font-size: 20px;
  
  
  
  display:  inline-block ;
}

#s-7d821ae2-803e-4286-8cca-f668a14db0b3 {
  min-height: 100%;
}








#s-7d821ae2-803e-4286-8cca-f668a14db0b3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7d821ae2-803e-4286-8cca-f668a14db0b3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

#s-14023bee-f271-4277-b9ea-572e369261e5 {
  background-color: rgba(244, 244, 244, 1);
}

@media (min-width: 0px) {
[id="s-14023bee-f271-4277-b9ea-572e369261e5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-14023bee-f271-4277-b9ea-572e369261e5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-14023bee-f271-4277-b9ea-572e369261e5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-14023bee-f271-4277-b9ea-572e369261e5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-14023bee-f271-4277-b9ea-572e369261e5"] > .shg-row {
    flex-flow: column-reverse;
  }
}

.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-fff27f97-7d63-46b4-b0e1-a8af0852799a {
  margin-left: 0%;
padding-top: 10px;
padding-left: 15%;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-fff27f97-7d63-46b4-b0e1-a8af0852799a {
  display: none;
}
#s-fff27f97-7d63-46b4-b0e1-a8af0852799a, #wrap-s-fff27f97-7d63-46b4-b0e1-a8af0852799a { display:none !important; }}
#s-fff27f97-7d63-46b4-b0e1-a8af0852799a .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Playfair Display";
  font-style:  normal ;
  font-size: 54px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-c0b68bb4-a6ef-4a05-9f7c-cb44c39730d7 {
  padding-top: 10px;
padding-left: 5%;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 1200px){#s-c0b68bb4-a6ef-4a05-9f7c-cb44c39730d7 {
  display: none;
}
#s-c0b68bb4-a6ef-4a05-9f7c-cb44c39730d7, #wrap-s-c0b68bb4-a6ef-4a05-9f7c-cb44c39730d7 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c0b68bb4-a6ef-4a05-9f7c-cb44c39730d7 {
  display: none;
}
#s-c0b68bb4-a6ef-4a05-9f7c-cb44c39730d7, #wrap-s-c0b68bb4-a6ef-4a05-9f7c-cb44c39730d7 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c0b68bb4-a6ef-4a05-9f7c-cb44c39730d7 {
  display: none;
}
#s-c0b68bb4-a6ef-4a05-9f7c-cb44c39730d7, #wrap-s-c0b68bb4-a6ef-4a05-9f7c-cb44c39730d7 { display:none !important; }}
#s-c0b68bb4-a6ef-4a05-9f7c-cb44c39730d7 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Playfair Display";
  font-style:  normal ;
  font-size: 40px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-7d0d42e7-d8a8-40e2-817d-c5101aa78ecb {
  margin-left: 0%;
margin-bottom: 10px;
margin-right: 5%;
padding-left: 5%;
}
@media (min-width: 1200px){#s-7d0d42e7-d8a8-40e2-817d-c5101aa78ecb {
  display: none;
}
#s-7d0d42e7-d8a8-40e2-817d-c5101aa78ecb, #wrap-s-7d0d42e7-d8a8-40e2-817d-c5101aa78ecb { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7d0d42e7-d8a8-40e2-817d-c5101aa78ecb {
  display: none;
}
#s-7d0d42e7-d8a8-40e2-817d-c5101aa78ecb, #wrap-s-7d0d42e7-d8a8-40e2-817d-c5101aa78ecb { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7d0d42e7-d8a8-40e2-817d-c5101aa78ecb {
  display: none;
}
#s-7d0d42e7-d8a8-40e2-817d-c5101aa78ecb, #wrap-s-7d0d42e7-d8a8-40e2-817d-c5101aa78ecb { display:none !important; }}@media (max-width: 767px){#s-7d0d42e7-d8a8-40e2-817d-c5101aa78ecb {
  
}
}
#s-79296daf-1cae-4343-9060-67ab9b5c59fa {
  padding-left: 15%;
}
@media (max-width: 767px){#s-79296daf-1cae-4343-9060-67ab9b5c59fa {
  display: none;
}
#s-79296daf-1cae-4343-9060-67ab9b5c59fa, #wrap-s-79296daf-1cae-4343-9060-67ab9b5c59fa { display:none !important; }}
#s-7ec99f99-5c9d-4510-b03b-d98801878a09 {
  text-align: center;
}
@media (max-width: 767px){#s-7ec99f99-5c9d-4510-b03b-d98801878a09 {
  
}
}






  img.s-7ec99f99-5c9d-4510-b03b-d98801878a09.shogun-image {
    
    
  }


.s-7ec99f99-5c9d-4510-b03b-d98801878a09 .shogun-image-content {
  
    align-items: center;
  
}

.s-7ec99f99-5c9d-4510-b03b-d98801878a09.shg-align-container {
  text-align: center
}

.s-7ec99f99-5c9d-4510-b03b-d98801878a09.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7ec99f99-5c9d-4510-b03b-d98801878a09.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-7ec99f99-5c9d-4510-b03b-d98801878a09.shogun-image {
    
    
  }


.s-7ec99f99-5c9d-4510-b03b-d98801878a09 .shogun-image-content {
  
    align-items: center;
  
}

.s-7ec99f99-5c9d-4510-b03b-d98801878a09.shg-align-container {
  text-align: center
}

.s-7ec99f99-5c9d-4510-b03b-d98801878a09.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7ec99f99-5c9d-4510-b03b-d98801878a09.shogun-image {
  box-sizing: border-box;
}


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





  img.s-7ec99f99-5c9d-4510-b03b-d98801878a09.shogun-image {
    
    
  }


.s-7ec99f99-5c9d-4510-b03b-d98801878a09 .shogun-image-content {
  
    align-items: center;
  
}

.s-7ec99f99-5c9d-4510-b03b-d98801878a09.shg-align-container {
  text-align: center
}

.s-7ec99f99-5c9d-4510-b03b-d98801878a09.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7ec99f99-5c9d-4510-b03b-d98801878a09.shogun-image {
  box-sizing: border-box;
}


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





  img.s-7ec99f99-5c9d-4510-b03b-d98801878a09.shogun-image {
    
    
  }


.s-7ec99f99-5c9d-4510-b03b-d98801878a09 .shogun-image-content {
  
    align-items: center;
  
}

.s-7ec99f99-5c9d-4510-b03b-d98801878a09.shg-align-container {
  text-align: center
}

.s-7ec99f99-5c9d-4510-b03b-d98801878a09.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7ec99f99-5c9d-4510-b03b-d98801878a09.shogun-image {
  box-sizing: border-box;
}


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





  img.s-7ec99f99-5c9d-4510-b03b-d98801878a09.shogun-image {
    
    
  }


.s-7ec99f99-5c9d-4510-b03b-d98801878a09 .shogun-image-content {
  
    align-items: center;
  
}

.s-7ec99f99-5c9d-4510-b03b-d98801878a09.shg-align-container {
  text-align: center
}

.s-7ec99f99-5c9d-4510-b03b-d98801878a09.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7ec99f99-5c9d-4510-b03b-d98801878a09.shogun-image {
  box-sizing: border-box;
}


}
#s-8800abf6-41e0-4931-8007-494f51d77be5 {
  margin-top: 16px;
background-color: rgba(244, 244, 244, 1);
}

@media (min-width: 0px) {
[id="s-8800abf6-41e0-4931-8007-494f51d77be5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8800abf6-41e0-4931-8007-494f51d77be5"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-8800abf6-41e0-4931-8007-494f51d77be5"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8800abf6-41e0-4931-8007-494f51d77be5"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-8800abf6-41e0-4931-8007-494f51d77be5"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8800abf6-41e0-4931-8007-494f51d77be5"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-8800abf6-41e0-4931-8007-494f51d77be5"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

#s-0ad74c46-f458-439a-b599-b9200597479f {
  text-align: center;
}







  img.s-0ad74c46-f458-439a-b599-b9200597479f.shogun-image {
    
    
  }


.s-0ad74c46-f458-439a-b599-b9200597479f .shogun-image-content {
  
    align-items: center;
  
}

.s-0ad74c46-f458-439a-b599-b9200597479f.shg-align-container {
  text-align: center
}

.s-0ad74c46-f458-439a-b599-b9200597479f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0ad74c46-f458-439a-b599-b9200597479f.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-0ad74c46-f458-439a-b599-b9200597479f.shogun-image {
    
    
  }


.s-0ad74c46-f458-439a-b599-b9200597479f .shogun-image-content {
  
    align-items: center;
  
}

.s-0ad74c46-f458-439a-b599-b9200597479f.shg-align-container {
  text-align: center
}

.s-0ad74c46-f458-439a-b599-b9200597479f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0ad74c46-f458-439a-b599-b9200597479f.shogun-image {
  box-sizing: border-box;
}


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





  img.s-0ad74c46-f458-439a-b599-b9200597479f.shogun-image {
    
    
  }


.s-0ad74c46-f458-439a-b599-b9200597479f .shogun-image-content {
  
    align-items: center;
  
}

.s-0ad74c46-f458-439a-b599-b9200597479f.shg-align-container {
  text-align: center
}

.s-0ad74c46-f458-439a-b599-b9200597479f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0ad74c46-f458-439a-b599-b9200597479f.shogun-image {
  box-sizing: border-box;
}


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





  img.s-0ad74c46-f458-439a-b599-b9200597479f.shogun-image {
    
    
  }


.s-0ad74c46-f458-439a-b599-b9200597479f .shogun-image-content {
  
    align-items: center;
  
}

.s-0ad74c46-f458-439a-b599-b9200597479f.shg-align-container {
  text-align: center
}

.s-0ad74c46-f458-439a-b599-b9200597479f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0ad74c46-f458-439a-b599-b9200597479f.shogun-image {
  box-sizing: border-box;
}


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





  img.s-0ad74c46-f458-439a-b599-b9200597479f.shogun-image {
    
    
  }


.s-0ad74c46-f458-439a-b599-b9200597479f .shogun-image-content {
  
    align-items: center;
  
}

.s-0ad74c46-f458-439a-b599-b9200597479f.shg-align-container {
  text-align: center
}

.s-0ad74c46-f458-439a-b599-b9200597479f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0ad74c46-f458-439a-b599-b9200597479f.shogun-image {
  box-sizing: border-box;
}


}
#s-fb860d3f-190f-4ab9-a256-38708409f792 {
  padding-top: 10px;
padding-left: 5%;
padding-bottom: 10px;
padding-right: 5%;
text-align: left;
}
@media (max-width: 767px){#s-fb860d3f-190f-4ab9-a256-38708409f792 {
  display: none;
}
#s-fb860d3f-190f-4ab9-a256-38708409f792, #wrap-s-fb860d3f-190f-4ab9-a256-38708409f792 { display:none !important; }}
#s-fb860d3f-190f-4ab9-a256-38708409f792 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Playfair Display";
  font-style:  normal ;
  font-size: 54px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-bb3c699e-61b5-4ae4-90bf-b19513130736 {
  padding-top: 10px;
padding-left: 5%;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 1200px){#s-bb3c699e-61b5-4ae4-90bf-b19513130736 {
  display: none;
}
#s-bb3c699e-61b5-4ae4-90bf-b19513130736, #wrap-s-bb3c699e-61b5-4ae4-90bf-b19513130736 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-bb3c699e-61b5-4ae4-90bf-b19513130736 {
  display: none;
}
#s-bb3c699e-61b5-4ae4-90bf-b19513130736, #wrap-s-bb3c699e-61b5-4ae4-90bf-b19513130736 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-bb3c699e-61b5-4ae4-90bf-b19513130736 {
  display: none;
}
#s-bb3c699e-61b5-4ae4-90bf-b19513130736, #wrap-s-bb3c699e-61b5-4ae4-90bf-b19513130736 { display:none !important; }}
#s-bb3c699e-61b5-4ae4-90bf-b19513130736 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Playfair Display";
  font-style:  normal ;
  font-size: 40px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-211e931b-ebb9-4025-860c-6d3d13ae9c8e {
  padding-left: 5%;
padding-right: 5%;
}
@media (min-width: 1200px){#s-211e931b-ebb9-4025-860c-6d3d13ae9c8e {
  display: none;
}
#s-211e931b-ebb9-4025-860c-6d3d13ae9c8e, #wrap-s-211e931b-ebb9-4025-860c-6d3d13ae9c8e { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-211e931b-ebb9-4025-860c-6d3d13ae9c8e {
  display: none;
}
#s-211e931b-ebb9-4025-860c-6d3d13ae9c8e, #wrap-s-211e931b-ebb9-4025-860c-6d3d13ae9c8e { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-211e931b-ebb9-4025-860c-6d3d13ae9c8e {
  display: none;
}
#s-211e931b-ebb9-4025-860c-6d3d13ae9c8e, #wrap-s-211e931b-ebb9-4025-860c-6d3d13ae9c8e { display:none !important; }}
#s-d244a94a-8f1b-4bff-b461-e2d283bc1d72 {
  padding-left: 5%;
padding-right: 5%;
}
@media (max-width: 767px){#s-d244a94a-8f1b-4bff-b461-e2d283bc1d72 {
  display: none;
}
#s-d244a94a-8f1b-4bff-b461-e2d283bc1d72, #wrap-s-d244a94a-8f1b-4bff-b461-e2d283bc1d72 { display:none !important; }}
#s-9a92ecbd-08c1-47ae-aa16-d3e043890f83 {
  margin-left: 5%;
margin-right: 5%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(223, 223, 223, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(89, 89, 89, 1);
}
#s-9a92ecbd-08c1-47ae-aa16-d3e043890f83:hover {background-color: rgba(223, 223, 223, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(89, 89, 89, 1) !important;}#s-9a92ecbd-08c1-47ae-aa16-d3e043890f83:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-9a92ecbd-08c1-47ae-aa16-d3e043890f83-btn-wrapper {
    text-align: left;
  }


#s-9a92ecbd-08c1-47ae-aa16-d3e043890f83.shg-btn {
  color: rgba(89, 89, 89, 1);
  font-size: 20px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-9a92ecbd-08c1-47ae-aa16-d3e043890f83-btn-wrapper {
    text-align: left;
  }


#s-9a92ecbd-08c1-47ae-aa16-d3e043890f83.shg-btn {
  color: rgba(89, 89, 89, 1);
  font-size: 20px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9a92ecbd-08c1-47ae-aa16-d3e043890f83-btn-wrapper {
    text-align: left;
  }


#s-9a92ecbd-08c1-47ae-aa16-d3e043890f83.shg-btn {
  color: rgba(89, 89, 89, 1);
  font-size: 20px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9a92ecbd-08c1-47ae-aa16-d3e043890f83-btn-wrapper {
    text-align: left;
  }


#s-9a92ecbd-08c1-47ae-aa16-d3e043890f83.shg-btn {
  color: rgba(89, 89, 89, 1);
  font-size: 20px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-9a92ecbd-08c1-47ae-aa16-d3e043890f83-btn-wrapper {
    text-align: left;
  }


#s-9a92ecbd-08c1-47ae-aa16-d3e043890f83.shg-btn {
  color: rgba(89, 89, 89, 1);
  font-size: 20px;
  
  
  
  display:  inline-block ;
}
}
#s-99c2d4f5-ce18-4989-b337-fe01cd1ebf66 {
  min-height: 0px;
}








#s-99c2d4f5-ce18-4989-b337-fe01cd1ebf66 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-99c2d4f5-ce18-4989-b337-fe01cd1ebf66.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2f1c5746-bce7-4f8d-a048-3373deba41a2 {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 10px;
text-align: center;
}

#s-2f1c5746-bce7-4f8d-a048-3373deba41a2 .shogun-heading-component h2 {
  color: rgba(55, 58, 54, 1);
  font-weight:  normal ;
  font-family: "Playfair Display";
  font-style:  normal ;
  font-size: 40px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-dc3cd62d-daf2-4ff6-a956-3a3f0edd37eb {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 2px;
margin-right: auto;
padding-left: 10%;
padding-right: 10%;
}
@media (min-width: 1200px){#s-dc3cd62d-daf2-4ff6-a956-3a3f0edd37eb {
  display: none;
}
#s-dc3cd62d-daf2-4ff6-a956-3a3f0edd37eb, #wrap-s-dc3cd62d-daf2-4ff6-a956-3a3f0edd37eb { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-dc3cd62d-daf2-4ff6-a956-3a3f0edd37eb {
  display: none;
}
#s-dc3cd62d-daf2-4ff6-a956-3a3f0edd37eb, #wrap-s-dc3cd62d-daf2-4ff6-a956-3a3f0edd37eb { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-dc3cd62d-daf2-4ff6-a956-3a3f0edd37eb {
  display: none;
}
#s-dc3cd62d-daf2-4ff6-a956-3a3f0edd37eb, #wrap-s-dc3cd62d-daf2-4ff6-a956-3a3f0edd37eb { display:none !important; }}@media (max-width: 767px){#s-dc3cd62d-daf2-4ff6-a956-3a3f0edd37eb {
  min-height: 0px;
}
}
#s-81ae8ab3-a407-49b8-bd3b-16c4f5b208e7 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 2px;
margin-right: auto;
padding-left: 10%;
padding-right: 10%;
}
@media (min-width: 1200px){#s-81ae8ab3-a407-49b8-bd3b-16c4f5b208e7 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-81ae8ab3-a407-49b8-bd3b-16c4f5b208e7 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-81ae8ab3-a407-49b8-bd3b-16c4f5b208e7 {
  
}
}@media (max-width: 767px){#s-81ae8ab3-a407-49b8-bd3b-16c4f5b208e7 {
  min-height: 0px;
display: none;
}
#s-81ae8ab3-a407-49b8-bd3b-16c4f5b208e7, #wrap-s-81ae8ab3-a407-49b8-bd3b-16c4f5b208e7 { display:none !important; }}
#s-8fa0232f-b90a-4383-861e-adf6eff5f0c7 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 6px;
margin-right: auto;
}
@media (min-width: 768px) and (max-width: 991px){#s-8fa0232f-b90a-4383-861e-adf6eff5f0c7 {
  margin-bottom: 0px;
}
}@media (max-width: 767px){#s-8fa0232f-b90a-4383-861e-adf6eff5f0c7 {
  display: none;
}
#s-8fa0232f-b90a-4383-861e-adf6eff5f0c7, #wrap-s-8fa0232f-b90a-4383-861e-adf6eff5f0c7 { display:none !important; }}
@media (min-width: 0px) {
[id="s-8fa0232f-b90a-4383-861e-adf6eff5f0c7"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-8fa0232f-b90a-4383-861e-adf6eff5f0c7"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8fa0232f-b90a-4383-861e-adf6eff5f0c7"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8fa0232f-b90a-4383-861e-adf6eff5f0c7"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

}

#s-c0b8c4de-93f3-4164-9d8f-35615bf91500 {
  min-height: 100%;
background-color: rgba(247, 247, 247, 1);
}








#s-c0b8c4de-93f3-4164-9d8f-35615bf91500 > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-c0b8c4de-93f3-4164-9d8f-35615bf91500.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a46cbafd-3ba9-4a3f-b35e-5a8a7866d0fe {
  margin-top: 17px;
margin-left: 8%;
margin-bottom: 17px;
margin-right: 8%;
text-align: center;
}







  #s-a46cbafd-3ba9-4a3f-b35e-5a8a7866d0fe img.shogun-image {
    

    
    
    
  }


#s-a46cbafd-3ba9-4a3f-b35e-5a8a7866d0fe .shogun-image-content {
  
    align-items: center;
  
}

#s-47c11bea-5e7f-4b44-9b39-11cb4f4a2b9f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-47c11bea-5e7f-4b44-9b39-11cb4f4a2b9f .shogun-heading-component h2 {
  color: rgba(102, 102, 102, 1);
  font-weight:   ;
  font-family: "Playfair Display";
  font-style:   ;
  font-size: 45px;
  line-height: ;
  letter-spacing: ;
  
}



#s-697c21c4-7579-41a1-a6f4-631f059628b6 {
  margin-left: 7%;
margin-right: 7%;
}

#s-6b104dda-1a42-4832-852e-5a14bedf84e8 {
  min-height: 100%;
background-color: rgba(247, 247, 247, 1);
}








#s-6b104dda-1a42-4832-852e-5a14bedf84e8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6b104dda-1a42-4832-852e-5a14bedf84e8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8b3d5661-42de-4fd1-bbcd-4e4cd60742e8 {
  margin-top: 17px;
margin-left: 8%;
margin-bottom: 17px;
margin-right: 8%;
text-align: center;
}







  #s-8b3d5661-42de-4fd1-bbcd-4e4cd60742e8 img.shogun-image {
    

    
    
    
  }


#s-8b3d5661-42de-4fd1-bbcd-4e4cd60742e8 .shogun-image-content {
  
    align-items: center;
  
}

#s-2e8bfee3-635d-4705-82b6-2c63e22ba3d8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2e8bfee3-635d-4705-82b6-2c63e22ba3d8 .shogun-heading-component h2 {
  color: rgba(102, 102, 102, 1);
  font-weight:   ;
  font-family: "Playfair Display";
  font-style:   ;
  font-size: 45px;
  line-height: ;
  letter-spacing: ;
  
}



#s-371826a1-9e66-4c89-9841-e79cfd8ab42b {
  margin-left: 7%;
margin-right: 7%;
}

#s-6a2b58a9-a473-4e02-a0f4-f02f22d08c72 {
  min-height: 100%;
background-color: rgba(247, 247, 247, 1);
}








#s-6a2b58a9-a473-4e02-a0f4-f02f22d08c72 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6a2b58a9-a473-4e02-a0f4-f02f22d08c72.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ec09b101-fa3c-4921-b1ee-a29f8bb471b6 {
  margin-top: 17px;
margin-left: 8%;
margin-bottom: 17px;
margin-right: 8%;
text-align: center;
}







  #s-ec09b101-fa3c-4921-b1ee-a29f8bb471b6 img.shogun-image {
    

    
    
    
  }


#s-ec09b101-fa3c-4921-b1ee-a29f8bb471b6 .shogun-image-content {
  
    align-items: center;
  
}

#s-362be010-5125-406a-a015-e0280fa1f509 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-362be010-5125-406a-a015-e0280fa1f509 .shogun-heading-component h2 {
  color: rgba(102, 102, 102, 1);
  font-weight:   ;
  font-family: "Playfair Display";
  font-style:   ;
  font-size: 45px;
  line-height: ;
  letter-spacing: ;
  
}



#s-fff40981-aae8-4867-824e-ecf77c4952db {
  margin-left: 7%;
margin-right: 7%;
}

#s-431f9179-a8e9-4afd-a15f-09c2d20ddef6 {
  min-height: 100%;
background-color: rgba(247, 247, 247, 1);
}








#s-431f9179-a8e9-4afd-a15f-09c2d20ddef6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-431f9179-a8e9-4afd-a15f-09c2d20ddef6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f7fc6e7f-d8b0-4528-a3d6-a611a6d86a10 {
  margin-top: 17px;
margin-left: 8%;
margin-bottom: 17px;
margin-right: 8%;
text-align: center;
}







  #s-f7fc6e7f-d8b0-4528-a3d6-a611a6d86a10 img.shogun-image {
    

    
    
    
  }


#s-f7fc6e7f-d8b0-4528-a3d6-a611a6d86a10 .shogun-image-content {
  
    align-items: center;
  
}

#s-21674de7-5770-4de5-8f2a-3483e6184446 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-21674de7-5770-4de5-8f2a-3483e6184446 .shogun-heading-component h2 {
  color: rgba(102, 102, 102, 1);
  font-weight:   ;
  font-family: "Playfair Display";
  font-style:   ;
  font-size: 45px;
  line-height: ;
  letter-spacing: ;
  
}



#s-3474c51b-e194-4050-bb98-56559acf74f9 {
  margin-left: 7%;
margin-right: 7%;
}

#s-84283093-3d78-4b82-9f00-19f407a13c97 {
  min-height: 50px;
}








#s-84283093-3d78-4b82-9f00-19f407a13c97 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-84283093-3d78-4b82-9f00-19f407a13c97.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e5631404-6dc5-4972-868a-3e60d5cbf8c2 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(223, 223, 223, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(89, 89, 89, 1);
}
#s-e5631404-6dc5-4972-868a-3e60d5cbf8c2:hover {background-color: rgba(223, 223, 223, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-e5631404-6dc5-4972-868a-3e60d5cbf8c2:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-e5631404-6dc5-4972-868a-3e60d5cbf8c2-btn-wrapper {
    text-align: center;
  }


#s-e5631404-6dc5-4972-868a-3e60d5cbf8c2.shg-btn {
  color: rgba(89, 89, 89, 1);
  font-size: 20px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e5631404-6dc5-4972-868a-3e60d5cbf8c2-btn-wrapper {
    text-align: center;
  }


#s-e5631404-6dc5-4972-868a-3e60d5cbf8c2.shg-btn {
  color: rgba(89, 89, 89, 1);
  font-size: 20px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e5631404-6dc5-4972-868a-3e60d5cbf8c2-btn-wrapper {
    text-align: center;
  }


#s-e5631404-6dc5-4972-868a-3e60d5cbf8c2.shg-btn {
  color: rgba(89, 89, 89, 1);
  font-size: 20px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e5631404-6dc5-4972-868a-3e60d5cbf8c2-btn-wrapper {
    text-align: center;
  }


#s-e5631404-6dc5-4972-868a-3e60d5cbf8c2.shg-btn {
  color: rgba(89, 89, 89, 1);
  font-size: 20px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e5631404-6dc5-4972-868a-3e60d5cbf8c2-btn-wrapper {
    text-align: center;
  }


#s-e5631404-6dc5-4972-868a-3e60d5cbf8c2.shg-btn {
  color: rgba(89, 89, 89, 1);
  font-size: 20px;
  
  
  
  display:  inline-block ;
}
}
  #s-e5631404-6dc5-4972-868a-3e60d5cbf8c2-btn-wrapper {
    text-align: center;
  }


#s-e5631404-6dc5-4972-868a-3e60d5cbf8c2.shg-btn {
  color: rgba(89, 89, 89, 1);
  font-size: 20px;
  
  
  
  display:  inline-block ;
}

#s-2242b624-1a65-405d-9a8f-f33e24967aad {
  min-height: 0px;
}








#s-2242b624-1a65-405d-9a8f-f33e24967aad > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2242b624-1a65-405d-9a8f-f33e24967aad.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fa24973d-6045-4732-a9ba-e7408b4873f0 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
background-color: rgba(244, 244, 244, 1);
}
@media (max-width: 767px){#s-fa24973d-6045-4732-a9ba-e7408b4873f0 {
  display: none;
}
#s-fa24973d-6045-4732-a9ba-e7408b4873f0, #wrap-s-fa24973d-6045-4732-a9ba-e7408b4873f0 { display:none !important; }}
@media (min-width: 0px) {
[id="s-fa24973d-6045-4732-a9ba-e7408b4873f0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fa24973d-6045-4732-a9ba-e7408b4873f0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-fa24973d-6045-4732-a9ba-e7408b4873f0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-fa24973d-6045-4732-a9ba-e7408b4873f0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-16699107-4c59-44c9-9700-16163c8ef473 {
  padding-top: 0em;
padding-bottom: 0em;
}

#s-4a8e8a4a-5b4c-4edc-ae9b-3c3a5bc3b296 {
  margin-bottom: 0px;
padding-top: 1.5em;
padding-bottom: 1.5em;
}

#s-f8d01915-881c-4763-8f23-98046b3d84e0 {
  min-height: 50px;
}








#s-f8d01915-881c-4763-8f23-98046b3d84e0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f8d01915-881c-4763-8f23-98046b3d84e0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-633e8573-e8c4-4781-be80-6964b10b6bc8 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(89, 89, 89, 1);
}
#s-633e8573-e8c4-4781-be80-6964b10b6bc8:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-633e8573-e8c4-4781-be80-6964b10b6bc8:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-633e8573-e8c4-4781-be80-6964b10b6bc8-btn-wrapper {
    text-align: center;
  }


#s-633e8573-e8c4-4781-be80-6964b10b6bc8.shg-btn {
  color: rgba(89, 89, 89, 1);
  font-size: 20px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-633e8573-e8c4-4781-be80-6964b10b6bc8-btn-wrapper {
    text-align: center;
  }


#s-633e8573-e8c4-4781-be80-6964b10b6bc8.shg-btn {
  color: rgba(89, 89, 89, 1);
  font-size: 20px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-633e8573-e8c4-4781-be80-6964b10b6bc8-btn-wrapper {
    text-align: center;
  }


#s-633e8573-e8c4-4781-be80-6964b10b6bc8.shg-btn {
  color: rgba(89, 89, 89, 1);
  font-size: 20px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-633e8573-e8c4-4781-be80-6964b10b6bc8-btn-wrapper {
    text-align: center;
  }


#s-633e8573-e8c4-4781-be80-6964b10b6bc8.shg-btn {
  color: rgba(89, 89, 89, 1);
  font-size: 20px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-633e8573-e8c4-4781-be80-6964b10b6bc8-btn-wrapper {
    text-align: center;
  }


#s-633e8573-e8c4-4781-be80-6964b10b6bc8.shg-btn {
  color: rgba(89, 89, 89, 1);
  font-size: 20px;
  
  
  
  display:  inline-block ;
}
}
  #s-633e8573-e8c4-4781-be80-6964b10b6bc8-btn-wrapper {
    text-align: center;
  }


#s-633e8573-e8c4-4781-be80-6964b10b6bc8.shg-btn {
  color: rgba(89, 89, 89, 1);
  font-size: 20px;
  
  
  
  display:  inline-block ;
}

#s-9ffc5a1c-3992-41d3-9b3e-2ae5e69357b4 {
  text-align: right;
}







  #s-9ffc5a1c-3992-41d3-9b3e-2ae5e69357b4 img.shogun-image {
    

    
    
    
  }


#s-9ffc5a1c-3992-41d3-9b3e-2ae5e69357b4 .shogun-image-content {
  
    align-items: 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-ff87bdb6-d9fe-4206-9992-40c6c2f7c59a {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-ff87bdb6-d9fe-4206-9992-40c6c2f7c59a {
  display: none;
}
#s-ff87bdb6-d9fe-4206-9992-40c6c2f7c59a, #wrap-s-ff87bdb6-d9fe-4206-9992-40c6c2f7c59a { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ff87bdb6-d9fe-4206-9992-40c6c2f7c59a {
  display: none;
}
#s-ff87bdb6-d9fe-4206-9992-40c6c2f7c59a, #wrap-s-ff87bdb6-d9fe-4206-9992-40c6c2f7c59a { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ff87bdb6-d9fe-4206-9992-40c6c2f7c59a {
  display: none;
}
#s-ff87bdb6-d9fe-4206-9992-40c6c2f7c59a, #wrap-s-ff87bdb6-d9fe-4206-9992-40c6c2f7c59a { display:none !important; }}@media (max-width: 767px){#s-ff87bdb6-d9fe-4206-9992-40c6c2f7c59a {
  margin-bottom: 40px;
padding-top: 0px;
padding-bottom: 0px;
}
}
#s-ff87bdb6-d9fe-4206-9992-40c6c2f7c59a .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-ff87bdb6-d9fe-4206-9992-40c6c2f7c59a .shg-sld-nav-button.shg-sld-left,
#s-ff87bdb6-d9fe-4206-9992-40c6c2f7c59a .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-e3bb0f88-9dbc-4b82-a24e-4efcd74e7467 {
  margin-left: 12%;
margin-right: 12%;
min-height: 50px;
background-color: rgba(247, 247, 247, 1);
}








#s-e3bb0f88-9dbc-4b82-a24e-4efcd74e7467 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e3bb0f88-9dbc-4b82-a24e-4efcd74e7467.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-57009f56-adff-48c2-a1f9-421d13a90608 {
  margin-top: 17px;
margin-left: 11%;
margin-bottom: 17px;
margin-right: 11%;
text-align: center;
}







  #s-57009f56-adff-48c2-a1f9-421d13a90608 img.shogun-image {
    

    
    
    
  }


#s-57009f56-adff-48c2-a1f9-421d13a90608 .shogun-image-content {
  
    align-items: center;
  
}

#s-4655582b-b60a-4317-8161-9e963a51d67d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4655582b-b60a-4317-8161-9e963a51d67d .shogun-heading-component h2 {
  color: rgba(102, 102, 102, 1);
  font-weight:  normal ;
  font-family: "Playfair Display";
  font-style:  normal ;
  font-size: 30px;
  line-height: ;
  letter-spacing: ;
  
}



#s-8c07d305-5709-4a8d-b2ac-ccd23355400a {
  margin-left: 12%;
margin-right: 12%;
min-height: 50px;
background-color: rgba(247, 247, 247, 1);
}








#s-8c07d305-5709-4a8d-b2ac-ccd23355400a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8c07d305-5709-4a8d-b2ac-ccd23355400a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2b40ed84-08f5-405e-bf31-cf0bdfd90437 {
  margin-top: 17px;
margin-left: 11%;
margin-bottom: 17px;
margin-right: 11%;
text-align: center;
}







  #s-2b40ed84-08f5-405e-bf31-cf0bdfd90437 img.shogun-image {
    

    
    
    
  }


#s-2b40ed84-08f5-405e-bf31-cf0bdfd90437 .shogun-image-content {
  
    align-items: center;
  
}

#s-c9c196cd-4198-41bb-8b68-06fa9b96f8cb {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c9c196cd-4198-41bb-8b68-06fa9b96f8cb .shogun-heading-component h2 {
  color: rgba(102, 102, 102, 1);
  font-weight:  normal ;
  font-family: "Playfair Display";
  font-style:  normal ;
  font-size: 30px;
  line-height: ;
  letter-spacing: ;
  
}



#s-75930575-049c-464f-bca9-754b5082c632 {
  margin-left: 12%;
margin-right: 12%;
min-height: 50px;
background-color: rgba(247, 247, 247, 1);
}








#s-75930575-049c-464f-bca9-754b5082c632 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-75930575-049c-464f-bca9-754b5082c632.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-af323509-81e7-42b3-86f4-f4a4bc2d525e {
  margin-top: 17px;
margin-left: 11%;
margin-bottom: 17px;
margin-right: 11%;
text-align: center;
}







  #s-af323509-81e7-42b3-86f4-f4a4bc2d525e img.shogun-image {
    

    
    
    
  }


#s-af323509-81e7-42b3-86f4-f4a4bc2d525e .shogun-image-content {
  
    align-items: center;
  
}

#s-536df297-2f98-4335-b6ec-25d7ff11fa0a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-536df297-2f98-4335-b6ec-25d7ff11fa0a .shogun-heading-component h2 {
  color: rgba(102, 102, 102, 1);
  font-weight:  normal ;
  font-family: "Playfair Display";
  font-style:  normal ;
  font-size: 30px;
  line-height: ;
  letter-spacing: ;
  
}



#s-5bcfbf5e-4923-4088-af8d-dd6ef5955d0c {
  margin-left: 12%;
margin-right: 12%;
min-height: 50px;
background-color: rgba(247, 247, 247, 1);
}








#s-5bcfbf5e-4923-4088-af8d-dd6ef5955d0c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5bcfbf5e-4923-4088-af8d-dd6ef5955d0c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ccbc62d0-8637-42e3-9078-d1a28310392b {
  margin-top: 17px;
margin-left: 11%;
margin-bottom: 17px;
margin-right: 11%;
text-align: center;
}







  #s-ccbc62d0-8637-42e3-9078-d1a28310392b img.shogun-image {
    

    
    
    
  }


#s-ccbc62d0-8637-42e3-9078-d1a28310392b .shogun-image-content {
  
    align-items: center;
  
}

#s-dfabfa8f-28ff-438e-8755-62b32f0b81e6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-dfabfa8f-28ff-438e-8755-62b32f0b81e6 .shogun-heading-component h2 {
  color: rgba(102, 102, 102, 1);
  font-weight:   ;
  font-family: "Playfair Display";
  font-style:   ;
  font-size: 30px;
  line-height: ;
  letter-spacing: ;
  
}



#s-b2125f81-23e8-497b-9856-42d6d9842aba {
  min-height: 50px;
}








#s-b2125f81-23e8-497b-9856-42d6d9842aba > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b2125f81-23e8-497b-9856-42d6d9842aba.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1d326a31-7d5a-434c-83b4-b7bfc28afcdb {
  text-align: center;
}
@media (min-width: 1200px){#s-1d326a31-7d5a-434c-83b4-b7bfc28afcdb {
  display: none;
}
#s-1d326a31-7d5a-434c-83b4-b7bfc28afcdb, #wrap-s-1d326a31-7d5a-434c-83b4-b7bfc28afcdb { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1d326a31-7d5a-434c-83b4-b7bfc28afcdb {
  display: none;
}
#s-1d326a31-7d5a-434c-83b4-b7bfc28afcdb, #wrap-s-1d326a31-7d5a-434c-83b4-b7bfc28afcdb { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1d326a31-7d5a-434c-83b4-b7bfc28afcdb {
  display: none;
}
#s-1d326a31-7d5a-434c-83b4-b7bfc28afcdb, #wrap-s-1d326a31-7d5a-434c-83b4-b7bfc28afcdb { display:none !important; }}






  #s-1d326a31-7d5a-434c-83b4-b7bfc28afcdb img.shogun-image {
    

    
    
    
  }


#s-1d326a31-7d5a-434c-83b4-b7bfc28afcdb .shogun-image-content {
  
    align-items: center;
  
}

#s-f54df144-90c5-4aea-b106-a42d2518b9c3 {
  margin-top: -16px;
margin-bottom: 0px;
padding-top: 1.5em;
padding-bottom: 1.5em;
}

#s-4d5f325c-898a-4de3-adaa-c4544f29bb18 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-color: rgba(239, 208, 209, 0);
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(89, 89, 89, 1);
}
#s-4d5f325c-898a-4de3-adaa-c4544f29bb18:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-4d5f325c-898a-4de3-adaa-c4544f29bb18:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-4d5f325c-898a-4de3-adaa-c4544f29bb18-btn-wrapper {
    text-align: center;
  }


#s-4d5f325c-898a-4de3-adaa-c4544f29bb18.shg-btn {
  color: rgba(89, 89, 89, 1);
  font-size: 20px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-4d5f325c-898a-4de3-adaa-c4544f29bb18-btn-wrapper {
    text-align: center;
  }


#s-4d5f325c-898a-4de3-adaa-c4544f29bb18.shg-btn {
  color: rgba(89, 89, 89, 1);
  font-size: 20px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4d5f325c-898a-4de3-adaa-c4544f29bb18-btn-wrapper {
    text-align: center;
  }


#s-4d5f325c-898a-4de3-adaa-c4544f29bb18.shg-btn {
  color: rgba(89, 89, 89, 1);
  font-size: 20px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4d5f325c-898a-4de3-adaa-c4544f29bb18-btn-wrapper {
    text-align: center;
  }


#s-4d5f325c-898a-4de3-adaa-c4544f29bb18.shg-btn {
  color: rgba(89, 89, 89, 1);
  font-size: 20px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-4d5f325c-898a-4de3-adaa-c4544f29bb18-btn-wrapper {
    text-align: center;
  }


#s-4d5f325c-898a-4de3-adaa-c4544f29bb18.shg-btn {
  color: rgba(89, 89, 89, 1);
  font-size: 20px;
  
  
  
  display:  inline-block ;
}
}
  #s-4d5f325c-898a-4de3-adaa-c4544f29bb18-btn-wrapper {
    text-align: center;
  }


#s-4d5f325c-898a-4de3-adaa-c4544f29bb18.shg-btn {
  color: rgba(89, 89, 89, 1);
  font-size: 20px;
  
  
  
  display:  inline-block ;
}

/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

@media (max-width: 1024px) {
  .shg-c,
  .shg-box {
    background-attachment: scroll !important;
  }
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape) {
  .shg-box {
    background-attachment: scroll !important;
  }
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}
.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-lazyload-bg-image {
  display: none;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}
/* <-- User Content Animations */

.shogun-form-error-msg, .shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}

.shg-c:before,.shg-c:after{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width: 1024px){.shg-c,.shg-box{background-attachment:scroll !important}}@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape){.shg-box{background-attachment:scroll !important}}#mc_embed_signup .clear{width:auto !important;height:auto !important;visibility:visible !important}.shg-clearfix:after{content:"";display:block;clear:both}.shogun-image{max-width:100%;min-height:inherit;max-height:inherit;display:inline !important;border:0;vertical-align:middle}.shg-fw{margin-left:calc(50% - 50vw);width:100vw}.shg-fw .shg-fw{margin-left:auto;margin-right:auto;width:100%}div[data-shg-lightbox-switch]{cursor:pointer}.shg-lightbox{position:fixed;z-index:999999;left:0;top:0;width:100%;height:100%;overflow:hidden;background-color:#000;background-color:rgba(0,0,0,0.85)}.shg-lightbox.hidden{display:none !important}.shg-lightbox .shg-lightbox-content{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:100%;text-align:center}.shg-lightbox .shg-lightbox-close{position:absolute;right:0;padding:5px 0;color:#fff;font-size:45px;margin-right:10px;line-height:30px;user-select:none;cursor:pointer;z-index:1}.shg-lightbox .shg-lightbox-image-container{padding:25px}.shg-lightbox .shg-lightbox-image{margin:auto;max-height:90vh;max-width:100%}.shg-lightbox .shg-lightbox-close:hover,.shg-lightbox .shg-lightbox-close:focus{color:#a2a2a2;text-decoration:none;cursor:pointer}.shg-lightbox .shg-lightbox-nav{cursor:pointer;position:absolute;top:50%;width:35px;height:100px;background-size:contain;background-repeat:no-repeat;background-position:center;transform:translate(0%, -50%);z-index:1}.shg-lightbox .shg-lightbox-nav.hidden{display:none !important}.shg-lightbox .shg-lightbox-nav.shg-nav-left{left:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==)}.shg-lightbox .shg-lightbox-nav.shg-nav-right{right:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+)}@media screen and (min-width: 769px){.shg-lightbox .shg-lightbox-image-container{padding:50px}}.shogun-lazyload:not([src]),.shogun-lazyloading:not([src]){opacity:0}.shogun-lazyloaded{opacity:1;transition:opacity 300ms}.shogun-lazyload-bg-image{display:none}.shogun-root a:empty,.shogun-root article:empty,.shogun-root dl:empty,.shogun-root h1:empty,.shogun-root h2:empty,.shogun-root h3:empty,.shogun-root h4:empty,.shogun-root h5:empty,.shogun-root h6:empty,.shogun-root p:empty,.shogun-root section:empty,.shogun-root ul:empty{display:unset}.shogun-root div:empty{display:inline-block}[data-animations*="enterviewport"][data-animations*="fadeIn"],[data-animations*="enterviewport"][data-animations*="zoomIn"]{opacity:0}.shogun-form-error-msg,.shogun-form-field-error-msg{display:flex;align-items:center;color:#dc143c}.shogun-badge{margin-bottom:50px}.shogun-badge-container{position:fixed;right:0;bottom:0;margin-bottom:-10px}
