.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-6adf0ea3-402f-45ff-bf81-130f1e53c0cf {
  margin-top: 0px;
margin-left: 20px;
margin-bottom: 0px;
margin-right: 20px;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-6adf0ea3-402f-45ff-bf81-130f1e53c0cf {
  display: none;
}
#s-6adf0ea3-402f-45ff-bf81-130f1e53c0cf, #wrap-s-6adf0ea3-402f-45ff-bf81-130f1e53c0cf { display:none !important; }}@media (max-width: 767px){#s-6adf0ea3-402f-45ff-bf81-130f1e53c0cf {
  display: none;
}
#s-6adf0ea3-402f-45ff-bf81-130f1e53c0cf, #wrap-s-6adf0ea3-402f-45ff-bf81-130f1e53c0cf { display:none !important; }}







#s-6adf0ea3-402f-45ff-bf81-130f1e53c0cf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6adf0ea3-402f-45ff-bf81-130f1e53c0cf.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.shogun-accordion-wrapper .shogun-accordion {
  margin-bottom: 0;
  border-radius: 4px;
}

.shogun-accordion {
  margin-bottom: 20px;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.shogun-accordion-wrapper .shogun-accordion + .shogun-accordion {
  margin-top: 5px;
}

.shogun-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.shogun-accordion-heading {
  color: #333;
  border-bottom: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  cursor: pointer;
}

.shogun-accordion-title {
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer;
  text-decoration: none;
  flex: 1;
  user-select: none;
}

.shogun-accordion-body {
  display: none;
  opacity: 0;
  transition: opacity 0.5s linear;
}

.shogun-accordion-body.shogun-accordion-active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.shogun-accordion-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1.2em;
}

.shogun-accordion-icon > span {
  transition: 0.3s transform;
  position: absolute;
  right: 0;
  font-size: 1.2em;
}

.shogun-accordion-icon.shogun-icon-chevron > span::after {
  content: "▸";
}

.shogun-accordion.shogun-accordion-active
  > .shogun-accordion-heading
  .shogun-accordion-icon.shogun-icon-chevron
  > span {
  transform: rotate(90deg);
}

.shogun-accordion-icon.shogun-icon-plus > span::after {
  content: "＋";
}

.shogun-accordion.shogun-accordion-active
  > .shogun-accordion-heading
  .shogun-accordion-icon.shogun-icon-plus
  > span {
  transform: rotate(-225deg);
}

#s-fc029cfa-a44d-46e5-b4f8-df46d8f9859c {
  margin-left: 100px;
margin-right: 100px;
padding-top: 50px;
padding-bottom: 50px;
}
@media (max-width: 767px){#s-fc029cfa-a44d-46e5-b4f8-df46d8f9859c {
  
}
}
#s-fc029cfa-a44d-46e5-b4f8-df46d8f9859c > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(255, 255, 255, 1);
}

#s-fc029cfa-a44d-46e5-b4f8-df46d8f9859c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 10px;
}

#s-fc029cfa-a44d-46e5-b4f8-df46d8f9859c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 1);
}

#s-fc029cfa-a44d-46e5-b4f8-df46d8f9859c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-fc029cfa-a44d-46e5-b4f8-df46d8f9859c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 1);
  text-align: center;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 20px;
}

#s-fc029cfa-a44d-46e5-b4f8-df46d8f9859c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 20px;
}
.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-50906114-a235-4876-912c-5b5ecc25d1e5 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-e54d31d3-e1af-4846-b267-7f1a315d4672 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-e1c1f006-f962-4344-84be-a8fb47670fb0 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
padding-left: 10px;
padding-right: 10px;
}

.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-eb6b2d6f-f9ab-4d03-af55-6947658d4981 {
  margin-top: 10px;
margin-left: 250px;
margin-right: 300px;
text-align: center;
}







  #s-eb6b2d6f-f9ab-4d03-af55-6947658d4981 img.shogun-image {
    

    
    
    
  }


#s-eb6b2d6f-f9ab-4d03-af55-6947658d4981 .shogun-image-content {
  
    align-items: center;
  
}

#s-58ac6e10-7cd8-4c26-bb89-a1b08406f3c4 {
  margin-left: 300px;
margin-right: 300px;
text-align: center;
}







  #s-58ac6e10-7cd8-4c26-bb89-a1b08406f3c4 img.shogun-image {
    

    
    
    
  }


#s-58ac6e10-7cd8-4c26-bb89-a1b08406f3c4 .shogun-image-content {
  
    align-items: center;
  
}

#s-52be3fae-0ecf-49f4-b9b0-32fb07cc35df {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-52be3fae-0ecf-49f4-b9b0-32fb07cc35df {
  display: none;
}
#s-52be3fae-0ecf-49f4-b9b0-32fb07cc35df, #wrap-s-52be3fae-0ecf-49f4-b9b0-32fb07cc35df { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-52be3fae-0ecf-49f4-b9b0-32fb07cc35df {
  display: none;
}
#s-52be3fae-0ecf-49f4-b9b0-32fb07cc35df, #wrap-s-52be3fae-0ecf-49f4-b9b0-32fb07cc35df { display:none !important; }}
#s-368375b3-12e0-4644-847f-b99113db09b1 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
padding-left: 10px;
padding-right: 10px;
}
@media (min-width: 1200px){#s-368375b3-12e0-4644-847f-b99113db09b1 {
  display: none;
}
#s-368375b3-12e0-4644-847f-b99113db09b1, #wrap-s-368375b3-12e0-4644-847f-b99113db09b1 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-368375b3-12e0-4644-847f-b99113db09b1 {
  display: none;
}
#s-368375b3-12e0-4644-847f-b99113db09b1, #wrap-s-368375b3-12e0-4644-847f-b99113db09b1 { display:none !important; }}
#s-f5b25c1d-2ae0-4736-91d9-4b7519a8e7e1 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-379dd9c4-d444-4a43-8ccc-6d37740c794b {
  margin-left: 300px;
margin-right: 300px;
text-align: center;
}







  #s-379dd9c4-d444-4a43-8ccc-6d37740c794b img.shogun-image {
    

    
    
    
  }


#s-379dd9c4-d444-4a43-8ccc-6d37740c794b .shogun-image-content {
  
    align-items: center;
  
}

#s-a27eaed2-3e1a-4e7b-b60f-c79484f01610 {
  text-align: center;
}







  #s-a27eaed2-3e1a-4e7b-b60f-c79484f01610 img.shogun-image {
    

    
    
    
  }


#s-a27eaed2-3e1a-4e7b-b60f-c79484f01610 .shogun-image-content {
  
    align-items: center;
  
}

#s-ecec6a04-2fca-4938-9b37-886d623dfac2 {
  margin-top: 0px;
margin-left: 20px;
margin-bottom: 0px;
margin-right: 20px;
min-height: 50px;
}
@media (min-width: 1200px){#s-ecec6a04-2fca-4938-9b37-886d623dfac2 {
  display: none;
}
#s-ecec6a04-2fca-4938-9b37-886d623dfac2, #wrap-s-ecec6a04-2fca-4938-9b37-886d623dfac2 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ecec6a04-2fca-4938-9b37-886d623dfac2 {
  display: none;
}
#s-ecec6a04-2fca-4938-9b37-886d623dfac2, #wrap-s-ecec6a04-2fca-4938-9b37-886d623dfac2 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ecec6a04-2fca-4938-9b37-886d623dfac2 {
  
}
}@media (max-width: 767px){#s-ecec6a04-2fca-4938-9b37-886d623dfac2 {
  
}
}







#s-ecec6a04-2fca-4938-9b37-886d623dfac2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ecec6a04-2fca-4938-9b37-886d623dfac2.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-fdd24307-ad2b-4084-aa23-21bf1d8af334 {
  padding-top: 40px;
padding-bottom: 40px;
}

#s-fdd24307-ad2b-4084-aa23-21bf1d8af334 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(255, 255, 255, 1);
}

#s-fdd24307-ad2b-4084-aa23-21bf1d8af334 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 10px;
}

#s-fdd24307-ad2b-4084-aa23-21bf1d8af334 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 1);
}

#s-fdd24307-ad2b-4084-aa23-21bf1d8af334 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-fdd24307-ad2b-4084-aa23-21bf1d8af334 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 1);
  text-align: center;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 20px;
}

#s-fdd24307-ad2b-4084-aa23-21bf1d8af334 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 20px;
}
#s-12b91962-093f-4dc6-bae9-ec436f784b9a {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-a816cd50-8d46-4881-817e-0039c817f23c {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 10px;
padding-right: 10px;
}

#s-27ca1c7a-b95d-4678-8766-50c3db767905 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-0f0efd64-43ff-419a-886a-cc9d85f50bb0 {
  text-align: center;
}







  #s-0f0efd64-43ff-419a-886a-cc9d85f50bb0 img.shogun-image {
    

    
    
    
  }


#s-0f0efd64-43ff-419a-886a-cc9d85f50bb0 .shogun-image-content {
  
    align-items: center;
  
}

#s-1470d818-5767-4ce4-9b67-bcda03218493 {
  margin-top: 10px;
margin-bottom: 10px;
}

.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-3ffc4a32-1dc1-4224-8ba3-bbc4e3080c65 {
  padding-top: 13px;
padding-bottom: 13px;
text-align: center;
}

#s-3ffc4a32-1dc1-4224-8ba3-bbc4e3080c65 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  letter-spacing: 1px;
  
}



#s-0470d1d2-a134-4ed2-a620-888783d94978 {
  text-align: center;
}
@media (min-width: 1200px){#s-0470d1d2-a134-4ed2-a620-888783d94978 {
  display: none;
}
#s-0470d1d2-a134-4ed2-a620-888783d94978, #wrap-s-0470d1d2-a134-4ed2-a620-888783d94978 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-0470d1d2-a134-4ed2-a620-888783d94978 {
  display: none;
}
#s-0470d1d2-a134-4ed2-a620-888783d94978, #wrap-s-0470d1d2-a134-4ed2-a620-888783d94978 { display:none !important; }}






  #s-0470d1d2-a134-4ed2-a620-888783d94978 img.shogun-image {
    

    
    
    
  }


#s-0470d1d2-a134-4ed2-a620-888783d94978 .shogun-image-content {
  
    align-items: center;
  
}

#s-7797a9e3-7b0f-4b25-b56c-646eb16534b2 {
  margin-left: 20px;
margin-right: 20px;
text-align: center;
}







  #s-7797a9e3-7b0f-4b25-b56c-646eb16534b2 img.shogun-image {
    

    
    
    
  }


#s-7797a9e3-7b0f-4b25-b56c-646eb16534b2 .shogun-image-content {
  
    align-items: center;
  
}

#s-a28040d8-9ccf-4309-94a0-747e3de22d7c {
  margin-left: 20px;
margin-right: 20px;
text-align: center;
}







  #s-a28040d8-9ccf-4309-94a0-747e3de22d7c img.shogun-image {
    

    
    
    
  }


#s-a28040d8-9ccf-4309-94a0-747e3de22d7c .shogun-image-content {
  
    align-items: center;
  
}

.shogun-table-wrapper {
  overflow: auto;
}

table.shogun-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  border-style: hidden;
}

thead.shogun-table-column-container {
  font-weight: bold;
}

td.shogun-table-column {
  padding: 10px;
}

td.shogun-table-row {
  padding: 10px;
  min-height: 45px;
}

td.shogun-table-column:only-child, td.shogun-table-row:only-child {
  width: 100%;
}

#s-b75d6145-75e5-4ae2-a156-00227d3b8656 .shogun-table-wrapper {
  overflow: auto;
  border: 1px solid #D5D6D7;
  border-radius: 0px;
}

#s-b75d6145-75e5-4ae2-a156-00227d3b8656 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-b75d6145-75e5-4ae2-a156-00227d3b8656 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
}

#s-b75d6145-75e5-4ae2-a156-00227d3b8656 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-b75d6145-75e5-4ae2-a156-00227d3b8656 td.shogun-table-column, #s-b75d6145-75e5-4ae2-a156-00227d3b8656 td.shogun-table-row {
  border: 1px solid #D5D6D7;
}

#s-45afb1bc-9e4a-4651-bb97-2fe3c7076629 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-340b77af-86c4-4128-9405-410d5e19ed7a {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-a192c321-6912-4bb2-a12f-93e3aa639f6d {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-c57d9c60-ef23-4de4-8990-72d57f7561cb {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-579cc2c2-a506-4152-9da3-50cf061858ed {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-213f7c82-3941-47db-b735-d0bdd738c6a0 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-08f45f3e-bd1a-4158-ae7b-0fc9f25400f9 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-26c97658-201a-41a0-ac72-25e240c54418 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-227a877e-7cf9-4bd0-9931-afd2378be60d {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-54c17512-5d99-4224-bba8-68a840a2e53e {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-ffdd5f29-d562-48d4-a05f-8b896b0d5c14 {
  min-height: 50px;
}








#s-ffdd5f29-d562-48d4-a05f-8b896b0d5c14 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ffdd5f29-d562-48d4-a05f-8b896b0d5c14.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c4e48c92-bc15-4f58-9e4b-4d5771fd120a {
  padding-top: 13px;
padding-bottom: 13px;
text-align: center;
}

#s-c4e48c92-bc15-4f58-9e4b-4d5771fd120a .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  letter-spacing: 1px;
  
}



#s-1ea4d587-96f0-4b24-a1ad-90702156834f .shogun-table-wrapper {
  overflow: auto;
  border: 1px solid #D5D6D7;
  border-radius: 0px;
}

#s-1ea4d587-96f0-4b24-a1ad-90702156834f table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-1ea4d587-96f0-4b24-a1ad-90702156834f td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
}

#s-1ea4d587-96f0-4b24-a1ad-90702156834f td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-1ea4d587-96f0-4b24-a1ad-90702156834f td.shogun-table-column, #s-1ea4d587-96f0-4b24-a1ad-90702156834f td.shogun-table-row {
  border: 1px solid #D5D6D7;
}

#s-53c782a1-4fe6-427c-946a-ca6c02cd3159 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-cb6b9096-4aa9-4115-b36b-15378f2ba04d {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-f248f85c-34df-4443-9123-8b1d51f3ab0b {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-d5f8fbc9-8c0e-457e-9832-c36021e4eab1 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-b91a4a1b-f665-4a67-b6c5-c872c9d06f9c {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-d2e6682a-2808-4837-ba8e-7a69fb333abd {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-ea38388c-8d05-49d6-9929-c2e5baf6766f {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-aa43fbc4-9e1d-412e-9050-155f08f5a2e7 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-5abee182-5b54-47f3-82ff-b6de8251d78b {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-b727ff2d-0a60-410b-9ee6-11abdd332bfe {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-88e363f2-50dd-47dc-89bf-af9e1711f4e8 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-d08c4276-4f9f-4809-a38d-e82219822439 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-790ec6e1-b70c-49de-b59a-d249da79f444 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-7c8e636f-70fe-43f3-b875-a878c0c8cc69 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-bd968f17-562c-4df4-b1da-4c2925fd5185 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-6471cc56-b637-48c4-b96d-d47169f08bfa {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-8d6fa364-aa95-405a-9586-0bbcd104cd9b {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-dad92e8d-75b9-44a3-abf2-9642a8cd2c45 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-2676cf62-81db-469d-8013-c03da67e71d5 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-41401dd5-944c-42a0-b867-30ec6a7f0d16 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-ae8c4a8e-2b2a-4182-9350-04da782c310c {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-c5195a7e-b062-4e56-87b3-b4b09217fe24 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-02bfa434-3bc9-4fb8-a4a6-1c0fba88ebf1 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-882cea1a-eca8-4cec-a18d-c2e64030cc20 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-d1e2a29e-c28b-4b55-8aad-88ad5e52f763 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-d594c927-17b7-4a2b-939c-16d49ead4c10 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-4f273f4d-d005-4277-befd-a44d12aebf87 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-622be612-6dc0-4c1e-a1ba-a0917a14e475 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-840cc6d3-947c-470a-a132-9a3108571c95 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-b919cdb8-e6be-409f-baba-cf6e40a7f3e9 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-a72f0da6-4d72-4e7c-ac8c-44385bbbdc3e {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-5e8c8227-f923-4628-8503-244f9dc7f373 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-defb75e4-19e5-4d14-882a-72a49765886d {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-c37a8a6a-5b0c-4ab6-8c55-e88695223650 {
  min-height: 50px;
}








#s-c37a8a6a-5b0c-4ab6-8c55-e88695223650 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c37a8a6a-5b0c-4ab6-8c55-e88695223650.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b352d8eb-ddb4-48b5-857d-ad2509771dde {
  padding-top: 13px;
padding-bottom: 13px;
text-align: center;
}

#s-b352d8eb-ddb4-48b5-857d-ad2509771dde .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  letter-spacing: 1px;
  
}



#s-57da34fe-a90a-4ff4-9773-5c8484ac5653 .shogun-table-wrapper {
  overflow: auto;
  border: 1px solid #D5D6D7;
  border-radius: 0px;
}

#s-57da34fe-a90a-4ff4-9773-5c8484ac5653 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-57da34fe-a90a-4ff4-9773-5c8484ac5653 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
}

#s-57da34fe-a90a-4ff4-9773-5c8484ac5653 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-57da34fe-a90a-4ff4-9773-5c8484ac5653 td.shogun-table-column, #s-57da34fe-a90a-4ff4-9773-5c8484ac5653 td.shogun-table-row {
  border: 1px solid #D5D6D7;
}

#s-e483125c-a8d4-4e5d-bf9e-8d81ca422829 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-dd5a83fe-2dcc-4bf9-a7a0-9d87eef79ad2 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-3e963338-5be4-48c8-b5b6-02606bcf48a8 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-413e387f-296d-4496-b519-0bec2050f67a {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-71c09470-6bb1-4ab6-b4ac-801bf71bcc59 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-d7692b4c-c40e-4026-9390-92071534d059 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-b38146b9-4f47-4321-890c-bf33e2754925 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-e5f0ecbd-8638-4331-bfb4-7e472a870659 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-0dec1c27-4c51-4d75-b924-417d07e2ab60 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-884f27d5-72d2-4d53-b109-0a664964b109 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-02253e2a-2d3e-4d75-8159-c768f2523d94 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-8699afa1-9722-40c0-a613-bd7fee265214 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-a0198129-de06-452d-9f09-d4563a6d17b6 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-a673c909-2ac5-4705-92ad-6f379af6a8a1 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-f1257fb4-69b0-444a-ab51-0d5125c479a4 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-2aff684b-da8f-43dc-b69c-8be689c36dca {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-05503df4-77dc-4071-a284-8a787b15d661 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-c94645db-e51b-4913-b864-ce290b37c1e4 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-a5e8760f-2580-4750-bb3a-91311745e3e0 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-aade2217-d3f2-47be-bc39-0ba26811be46 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-40686f3f-689a-4ebe-a43e-051ab5501b98 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

#s-034e1b3a-62c7-423a-a171-56127add835c {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}

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