.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-a14f7097-dc5b-4700-a6fc-5751ea8d229a {
  margin-top: 0px;
margin-bottom: 0px;
min-height: 50px;
background-color: rgba(215, 244, 242, 1);
}








#s-a14f7097-dc5b-4700-a6fc-5751ea8d229a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a14f7097-dc5b-4700-a6fc-5751ea8d229a.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-a502e29f-76d7-4e8d-8a97-8859cb60c39f {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 0px;
margin-right: 5px;
min-height: 41px;
background-color: rgba(255, 255, 255, 1);
}








#s-a502e29f-76d7-4e8d-8a97-8859cb60c39f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a502e29f-76d7-4e8d-8a97-8859cb60c39f.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.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: ;
}

.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-b71a43b1-db0b-4cf7-b9ef-0ce115325b9f {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}

@media (min-width: 0px) {
[id="s-b71a43b1-db0b-4cf7-b9ef-0ce115325b9f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b71a43b1-db0b-4cf7-b9ef-0ce115325b9f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-b71a43b1-db0b-4cf7-b9ef-0ce115325b9f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-b71a43b1-db0b-4cf7-b9ef-0ce115325b9f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.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;
}

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

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

#s-203d1920-40ed-42a7-96c9-31d16915f267 {
  text-align: center;
}







  img.s-203d1920-40ed-42a7-96c9-31d16915f267.shogun-image {
    
    
  }


.s-203d1920-40ed-42a7-96c9-31d16915f267 .shogun-image-content {
  
    align-items: center;
  
}

.s-203d1920-40ed-42a7-96c9-31d16915f267.shg-align-container {
  text-align: center
}

.s-203d1920-40ed-42a7-96c9-31d16915f267.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-203d1920-40ed-42a7-96c9-31d16915f267.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-203d1920-40ed-42a7-96c9-31d16915f267.shogun-image {
    
    
  }


.s-203d1920-40ed-42a7-96c9-31d16915f267 .shogun-image-content {
  
    align-items: center;
  
}

.s-203d1920-40ed-42a7-96c9-31d16915f267.shg-align-container {
  text-align: center
}

.s-203d1920-40ed-42a7-96c9-31d16915f267.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-203d1920-40ed-42a7-96c9-31d16915f267.shogun-image {
  box-sizing: border-box;
}


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





  img.s-203d1920-40ed-42a7-96c9-31d16915f267.shogun-image {
    
    
  }


.s-203d1920-40ed-42a7-96c9-31d16915f267 .shogun-image-content {
  
    align-items: center;
  
}

.s-203d1920-40ed-42a7-96c9-31d16915f267.shg-align-container {
  text-align: center
}

.s-203d1920-40ed-42a7-96c9-31d16915f267.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-203d1920-40ed-42a7-96c9-31d16915f267.shogun-image {
  box-sizing: border-box;
}


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





  img.s-203d1920-40ed-42a7-96c9-31d16915f267.shogun-image {
    
    
  }


.s-203d1920-40ed-42a7-96c9-31d16915f267 .shogun-image-content {
  
    align-items: center;
  
}

.s-203d1920-40ed-42a7-96c9-31d16915f267.shg-align-container {
  text-align: center
}

.s-203d1920-40ed-42a7-96c9-31d16915f267.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-203d1920-40ed-42a7-96c9-31d16915f267.shogun-image {
  box-sizing: border-box;
}


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





  img.s-203d1920-40ed-42a7-96c9-31d16915f267.shogun-image {
    
    
  }


.s-203d1920-40ed-42a7-96c9-31d16915f267 .shogun-image-content {
  
    align-items: center;
  
}

.s-203d1920-40ed-42a7-96c9-31d16915f267.shg-align-container {
  text-align: center
}

.s-203d1920-40ed-42a7-96c9-31d16915f267.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-203d1920-40ed-42a7-96c9-31d16915f267.shogun-image {
  box-sizing: border-box;
}


}
.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-14a229de-9339-4d5b-a387-4870a3a8d090 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-14a229de-9339-4d5b-a387-4870a3a8d090 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-5fe203b3-d697-43cf-8077-64cb80a1beef {
  margin-top: 25px;
margin-left: 5px;
margin-bottom: 0px;
margin-right: 5px;
min-height: 450px;
}








#s-5fe203b3-d697-43cf-8077-64cb80a1beef > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5fe203b3-d697-43cf-8077-64cb80a1beef.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-8f7410fc-8d00-4d1d-9335-5a6bc980e8b3 {
  margin-top: 0px;
margin-bottom: 0px;
padding-left: 3%;
padding-right: 3%;
}

#s-d406d84e-486b-4e7e-92a7-c408119939a9 {
  padding-top: 10px;
padding-left: 2%;
padding-bottom: 10px;
padding-right: 2%;
background-color: rgba(247, 241, 241, 1);
}

#s-552fa24e-362b-4246-b745-810ca501d1bc {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-552fa24e-362b-4246-b745-810ca501d1bc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-552fa24e-362b-4246-b745-810ca501d1bc.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

@media (min-width: 0px) {
[id="s-ef44befc-4291-428a-a7ac-7a3ffcb0c7e3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ef44befc-4291-428a-a7ac-7a3ffcb0c7e3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-ef44befc-4291-428a-a7ac-7a3ffcb0c7e3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-ef44befc-4291-428a-a7ac-7a3ffcb0c7e3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-8843ee66-5130-446b-b280-844c576bf9a4 {
  margin-top: 10px;
margin-bottom: 10px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 0px;
max-width: 300px;
text-align: center;
}








.s-8843ee66-5130-446b-b280-844c576bf9a4 .shogun-image-content {
  
    align-items: center;
  
}

.s-8843ee66-5130-446b-b280-844c576bf9a4.shg-align-container {
  text-align: center
}

.s-8843ee66-5130-446b-b280-844c576bf9a4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8843ee66-5130-446b-b280-844c576bf9a4.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){






.s-8843ee66-5130-446b-b280-844c576bf9a4 .shogun-image-content {
  
    align-items: center;
  
}

.s-8843ee66-5130-446b-b280-844c576bf9a4.shg-align-container {
  text-align: center
}

.s-8843ee66-5130-446b-b280-844c576bf9a4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8843ee66-5130-446b-b280-844c576bf9a4.shogun-image {
  box-sizing: border-box;
}


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






.s-8843ee66-5130-446b-b280-844c576bf9a4 .shogun-image-content {
  
    align-items: center;
  
}

.s-8843ee66-5130-446b-b280-844c576bf9a4.shg-align-container {
  text-align: center
}

.s-8843ee66-5130-446b-b280-844c576bf9a4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8843ee66-5130-446b-b280-844c576bf9a4.shogun-image {
  box-sizing: border-box;
}


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






.s-8843ee66-5130-446b-b280-844c576bf9a4 .shogun-image-content {
  
    align-items: center;
  
}

.s-8843ee66-5130-446b-b280-844c576bf9a4.shg-align-container {
  text-align: center
}

.s-8843ee66-5130-446b-b280-844c576bf9a4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8843ee66-5130-446b-b280-844c576bf9a4.shogun-image {
  box-sizing: border-box;
}


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






.s-8843ee66-5130-446b-b280-844c576bf9a4 .shogun-image-content {
  
    align-items: center;
  
}

.s-8843ee66-5130-446b-b280-844c576bf9a4.shg-align-container {
  text-align: center
}

.s-8843ee66-5130-446b-b280-844c576bf9a4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8843ee66-5130-446b-b280-844c576bf9a4.shogun-image {
  box-sizing: border-box;
}


}
#s-89155435-56d6-4a0c-bda2-bfabb34ddb0e {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-48f7c6c9-849c-4101-b702-519a5c77cdf5 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 300px;
text-align: center;
}







  img.s-48f7c6c9-849c-4101-b702-519a5c77cdf5.shogun-image {
    
    
  }


.s-48f7c6c9-849c-4101-b702-519a5c77cdf5 .shogun-image-content {
  
    align-items: center;
  
}

.s-48f7c6c9-849c-4101-b702-519a5c77cdf5.shg-align-container {
  text-align: center
}

.s-48f7c6c9-849c-4101-b702-519a5c77cdf5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-48f7c6c9-849c-4101-b702-519a5c77cdf5.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-48f7c6c9-849c-4101-b702-519a5c77cdf5.shogun-image {
    
    
  }


.s-48f7c6c9-849c-4101-b702-519a5c77cdf5 .shogun-image-content {
  
    align-items: center;
  
}

.s-48f7c6c9-849c-4101-b702-519a5c77cdf5.shg-align-container {
  text-align: center
}

.s-48f7c6c9-849c-4101-b702-519a5c77cdf5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-48f7c6c9-849c-4101-b702-519a5c77cdf5.shogun-image {
  box-sizing: border-box;
}


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





  img.s-48f7c6c9-849c-4101-b702-519a5c77cdf5.shogun-image {
    
    
  }


.s-48f7c6c9-849c-4101-b702-519a5c77cdf5 .shogun-image-content {
  
    align-items: center;
  
}

.s-48f7c6c9-849c-4101-b702-519a5c77cdf5.shg-align-container {
  text-align: center
}

.s-48f7c6c9-849c-4101-b702-519a5c77cdf5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-48f7c6c9-849c-4101-b702-519a5c77cdf5.shogun-image {
  box-sizing: border-box;
}


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





  img.s-48f7c6c9-849c-4101-b702-519a5c77cdf5.shogun-image {
    
    
  }


.s-48f7c6c9-849c-4101-b702-519a5c77cdf5 .shogun-image-content {
  
    align-items: center;
  
}

.s-48f7c6c9-849c-4101-b702-519a5c77cdf5.shg-align-container {
  text-align: center
}

.s-48f7c6c9-849c-4101-b702-519a5c77cdf5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-48f7c6c9-849c-4101-b702-519a5c77cdf5.shogun-image {
  box-sizing: border-box;
}


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





  img.s-48f7c6c9-849c-4101-b702-519a5c77cdf5.shogun-image {
    
    
  }


.s-48f7c6c9-849c-4101-b702-519a5c77cdf5 .shogun-image-content {
  
    align-items: center;
  
}

.s-48f7c6c9-849c-4101-b702-519a5c77cdf5.shg-align-container {
  text-align: center
}

.s-48f7c6c9-849c-4101-b702-519a5c77cdf5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-48f7c6c9-849c-4101-b702-519a5c77cdf5.shogun-image {
  box-sizing: border-box;
}


}
#s-5e04de4b-51b1-4798-aa66-7ec1e6a8dc92 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-9b47b8ea-46c1-4d4a-937c-07712d1342bd {
  margin-top: 0px;
margin-left: 50px;
margin-bottom: 25px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9b47b8ea-46c1-4d4a-937c-07712d1342bd .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Questrial";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}



@media (min-width: 0px) {
[id="s-cfc094b0-4df5-4ef5-b8a7-ef14877946be"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cfc094b0-4df5-4ef5-b8a7-ef14877946be"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-cfc094b0-4df5-4ef5-b8a7-ef14877946be"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-cfc094b0-4df5-4ef5-b8a7-ef14877946be"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-c1f7b749-109c-45e2-9f38-d8fa5c62d895 {
  border-style: solid;
border-color: #2C2A34;
border-radius: 15px;
max-width: 300px;
text-align: left;
}







  img.s-c1f7b749-109c-45e2-9f38-d8fa5c62d895.shogun-image {
    
    
  }


.s-c1f7b749-109c-45e2-9f38-d8fa5c62d895 .shogun-image-content {
  
    align-items: center;
  
}

.s-c1f7b749-109c-45e2-9f38-d8fa5c62d895.shg-align-container {
  text-align: left
}

.s-c1f7b749-109c-45e2-9f38-d8fa5c62d895.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c1f7b749-109c-45e2-9f38-d8fa5c62d895.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-c1f7b749-109c-45e2-9f38-d8fa5c62d895.shogun-image {
    
    
  }


.s-c1f7b749-109c-45e2-9f38-d8fa5c62d895 .shogun-image-content {
  
    align-items: center;
  
}

.s-c1f7b749-109c-45e2-9f38-d8fa5c62d895.shg-align-container {
  text-align: left
}

.s-c1f7b749-109c-45e2-9f38-d8fa5c62d895.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c1f7b749-109c-45e2-9f38-d8fa5c62d895.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c1f7b749-109c-45e2-9f38-d8fa5c62d895.shogun-image {
    
    
  }


.s-c1f7b749-109c-45e2-9f38-d8fa5c62d895 .shogun-image-content {
  
    align-items: center;
  
}

.s-c1f7b749-109c-45e2-9f38-d8fa5c62d895.shg-align-container {
  text-align: left
}

.s-c1f7b749-109c-45e2-9f38-d8fa5c62d895.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c1f7b749-109c-45e2-9f38-d8fa5c62d895.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c1f7b749-109c-45e2-9f38-d8fa5c62d895.shogun-image {
    
    
  }


.s-c1f7b749-109c-45e2-9f38-d8fa5c62d895 .shogun-image-content {
  
    align-items: center;
  
}

.s-c1f7b749-109c-45e2-9f38-d8fa5c62d895.shg-align-container {
  text-align: left
}

.s-c1f7b749-109c-45e2-9f38-d8fa5c62d895.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c1f7b749-109c-45e2-9f38-d8fa5c62d895.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c1f7b749-109c-45e2-9f38-d8fa5c62d895.shogun-image {
    
    
  }


.s-c1f7b749-109c-45e2-9f38-d8fa5c62d895 .shogun-image-content {
  
    align-items: center;
  
}

.s-c1f7b749-109c-45e2-9f38-d8fa5c62d895.shg-align-container {
  text-align: left
}

.s-c1f7b749-109c-45e2-9f38-d8fa5c62d895.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c1f7b749-109c-45e2-9f38-d8fa5c62d895.shogun-image {
  box-sizing: border-box;
}


}
#s-4c7812d4-7133-47fe-835e-96971e951a78 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-c5d08e60-3939-41b3-95fa-1fc0c8fa5ce0 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 300px;
}

#s-c20a1612-9aa9-4936-ac1c-dad98a1c8d4e {
  border-radius: 15px;
max-width: 300px;
text-align: left;
}







  img.s-c20a1612-9aa9-4936-ac1c-dad98a1c8d4e.shogun-image {
    
    
  }


.s-c20a1612-9aa9-4936-ac1c-dad98a1c8d4e .shogun-image-content {
  
    align-items: center;
  
}

.s-c20a1612-9aa9-4936-ac1c-dad98a1c8d4e.shg-align-container {
  text-align: left
}

.s-c20a1612-9aa9-4936-ac1c-dad98a1c8d4e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c20a1612-9aa9-4936-ac1c-dad98a1c8d4e.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-c20a1612-9aa9-4936-ac1c-dad98a1c8d4e.shogun-image {
    
    
  }


.s-c20a1612-9aa9-4936-ac1c-dad98a1c8d4e .shogun-image-content {
  
    align-items: center;
  
}

.s-c20a1612-9aa9-4936-ac1c-dad98a1c8d4e.shg-align-container {
  text-align: left
}

.s-c20a1612-9aa9-4936-ac1c-dad98a1c8d4e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c20a1612-9aa9-4936-ac1c-dad98a1c8d4e.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c20a1612-9aa9-4936-ac1c-dad98a1c8d4e.shogun-image {
    
    
  }


.s-c20a1612-9aa9-4936-ac1c-dad98a1c8d4e .shogun-image-content {
  
    align-items: center;
  
}

.s-c20a1612-9aa9-4936-ac1c-dad98a1c8d4e.shg-align-container {
  text-align: left
}

.s-c20a1612-9aa9-4936-ac1c-dad98a1c8d4e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c20a1612-9aa9-4936-ac1c-dad98a1c8d4e.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c20a1612-9aa9-4936-ac1c-dad98a1c8d4e.shogun-image {
    
    
  }


.s-c20a1612-9aa9-4936-ac1c-dad98a1c8d4e .shogun-image-content {
  
    align-items: center;
  
}

.s-c20a1612-9aa9-4936-ac1c-dad98a1c8d4e.shg-align-container {
  text-align: left
}

.s-c20a1612-9aa9-4936-ac1c-dad98a1c8d4e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c20a1612-9aa9-4936-ac1c-dad98a1c8d4e.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c20a1612-9aa9-4936-ac1c-dad98a1c8d4e.shogun-image {
    
    
  }


.s-c20a1612-9aa9-4936-ac1c-dad98a1c8d4e .shogun-image-content {
  
    align-items: center;
  
}

.s-c20a1612-9aa9-4936-ac1c-dad98a1c8d4e.shg-align-container {
  text-align: left
}

.s-c20a1612-9aa9-4936-ac1c-dad98a1c8d4e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c20a1612-9aa9-4936-ac1c-dad98a1c8d4e.shogun-image {
  box-sizing: border-box;
}


}
#s-37834466-c184-45e8-84a1-a64a96335de7 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-01bf32a3-58ac-421c-a819-f203d3171c0c {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 300px;
}

#s-989549d5-1632-416b-85c1-ae754f8435bb {
  border-radius: 15px;
max-width: 300px;
text-align: left;
}







  img.s-989549d5-1632-416b-85c1-ae754f8435bb.shogun-image {
    
    
  }


.s-989549d5-1632-416b-85c1-ae754f8435bb .shogun-image-content {
  
    align-items: center;
  
}

.s-989549d5-1632-416b-85c1-ae754f8435bb.shg-align-container {
  text-align: left
}

.s-989549d5-1632-416b-85c1-ae754f8435bb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-989549d5-1632-416b-85c1-ae754f8435bb.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-989549d5-1632-416b-85c1-ae754f8435bb.shogun-image {
    
    
  }


.s-989549d5-1632-416b-85c1-ae754f8435bb .shogun-image-content {
  
    align-items: center;
  
}

.s-989549d5-1632-416b-85c1-ae754f8435bb.shg-align-container {
  text-align: left
}

.s-989549d5-1632-416b-85c1-ae754f8435bb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-989549d5-1632-416b-85c1-ae754f8435bb.shogun-image {
  box-sizing: border-box;
}


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





  img.s-989549d5-1632-416b-85c1-ae754f8435bb.shogun-image {
    
    
  }


.s-989549d5-1632-416b-85c1-ae754f8435bb .shogun-image-content {
  
    align-items: center;
  
}

.s-989549d5-1632-416b-85c1-ae754f8435bb.shg-align-container {
  text-align: left
}

.s-989549d5-1632-416b-85c1-ae754f8435bb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-989549d5-1632-416b-85c1-ae754f8435bb.shogun-image {
  box-sizing: border-box;
}


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





  img.s-989549d5-1632-416b-85c1-ae754f8435bb.shogun-image {
    
    
  }


.s-989549d5-1632-416b-85c1-ae754f8435bb .shogun-image-content {
  
    align-items: center;
  
}

.s-989549d5-1632-416b-85c1-ae754f8435bb.shg-align-container {
  text-align: left
}

.s-989549d5-1632-416b-85c1-ae754f8435bb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-989549d5-1632-416b-85c1-ae754f8435bb.shogun-image {
  box-sizing: border-box;
}


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





  img.s-989549d5-1632-416b-85c1-ae754f8435bb.shogun-image {
    
    
  }


.s-989549d5-1632-416b-85c1-ae754f8435bb .shogun-image-content {
  
    align-items: center;
  
}

.s-989549d5-1632-416b-85c1-ae754f8435bb.shg-align-container {
  text-align: left
}

.s-989549d5-1632-416b-85c1-ae754f8435bb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-989549d5-1632-416b-85c1-ae754f8435bb.shogun-image {
  box-sizing: border-box;
}


}
#s-3a274b56-2c2a-41ef-ab0a-95040d73e0f0 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-fb690bd9-4bb3-4fe2-ac9f-87cc7371a688 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 300px;
}

@media (min-width: 0px) {
[id="s-2c496281-5b0c-44b2-97fc-1c470bb06ab8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2c496281-5b0c-44b2-97fc-1c470bb06ab8"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-2c496281-5b0c-44b2-97fc-1c470bb06ab8"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-2c496281-5b0c-44b2-97fc-1c470bb06ab8"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-4b457e29-8d32-41f4-b72c-0a6fedeb45e5 {
  border-style: solid;
border-color: #2C2A34;
border-radius: 15px;
max-width: 300px;
text-align: left;
}







  img.s-4b457e29-8d32-41f4-b72c-0a6fedeb45e5.shogun-image {
    
    
  }


.s-4b457e29-8d32-41f4-b72c-0a6fedeb45e5 .shogun-image-content {
  
    align-items: center;
  
}

.s-4b457e29-8d32-41f4-b72c-0a6fedeb45e5.shg-align-container {
  text-align: left
}

.s-4b457e29-8d32-41f4-b72c-0a6fedeb45e5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4b457e29-8d32-41f4-b72c-0a6fedeb45e5.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-4b457e29-8d32-41f4-b72c-0a6fedeb45e5.shogun-image {
    
    
  }


.s-4b457e29-8d32-41f4-b72c-0a6fedeb45e5 .shogun-image-content {
  
    align-items: center;
  
}

.s-4b457e29-8d32-41f4-b72c-0a6fedeb45e5.shg-align-container {
  text-align: left
}

.s-4b457e29-8d32-41f4-b72c-0a6fedeb45e5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4b457e29-8d32-41f4-b72c-0a6fedeb45e5.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4b457e29-8d32-41f4-b72c-0a6fedeb45e5.shogun-image {
    
    
  }


.s-4b457e29-8d32-41f4-b72c-0a6fedeb45e5 .shogun-image-content {
  
    align-items: center;
  
}

.s-4b457e29-8d32-41f4-b72c-0a6fedeb45e5.shg-align-container {
  text-align: left
}

.s-4b457e29-8d32-41f4-b72c-0a6fedeb45e5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4b457e29-8d32-41f4-b72c-0a6fedeb45e5.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4b457e29-8d32-41f4-b72c-0a6fedeb45e5.shogun-image {
    
    
  }


.s-4b457e29-8d32-41f4-b72c-0a6fedeb45e5 .shogun-image-content {
  
    align-items: center;
  
}

.s-4b457e29-8d32-41f4-b72c-0a6fedeb45e5.shg-align-container {
  text-align: left
}

.s-4b457e29-8d32-41f4-b72c-0a6fedeb45e5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4b457e29-8d32-41f4-b72c-0a6fedeb45e5.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4b457e29-8d32-41f4-b72c-0a6fedeb45e5.shogun-image {
    
    
  }


.s-4b457e29-8d32-41f4-b72c-0a6fedeb45e5 .shogun-image-content {
  
    align-items: center;
  
}

.s-4b457e29-8d32-41f4-b72c-0a6fedeb45e5.shg-align-container {
  text-align: left
}

.s-4b457e29-8d32-41f4-b72c-0a6fedeb45e5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4b457e29-8d32-41f4-b72c-0a6fedeb45e5.shogun-image {
  box-sizing: border-box;
}


}
#s-078bb9a9-79fd-48ef-ae86-692f2b969dec {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-30e04156-b42b-4a9f-a484-aee0279b4214 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 300px;
}

#s-bea9485d-4b3c-4909-befd-07c1f8ceccd4 {
  border-radius: 15px;
max-width: 300px;
text-align: left;
}







  img.s-bea9485d-4b3c-4909-befd-07c1f8ceccd4.shogun-image {
    
    
  }


.s-bea9485d-4b3c-4909-befd-07c1f8ceccd4 .shogun-image-content {
  
    align-items: center;
  
}

.s-bea9485d-4b3c-4909-befd-07c1f8ceccd4.shg-align-container {
  text-align: left
}

.s-bea9485d-4b3c-4909-befd-07c1f8ceccd4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bea9485d-4b3c-4909-befd-07c1f8ceccd4.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-bea9485d-4b3c-4909-befd-07c1f8ceccd4.shogun-image {
    
    
  }


.s-bea9485d-4b3c-4909-befd-07c1f8ceccd4 .shogun-image-content {
  
    align-items: center;
  
}

.s-bea9485d-4b3c-4909-befd-07c1f8ceccd4.shg-align-container {
  text-align: left
}

.s-bea9485d-4b3c-4909-befd-07c1f8ceccd4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bea9485d-4b3c-4909-befd-07c1f8ceccd4.shogun-image {
  box-sizing: border-box;
}


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





  img.s-bea9485d-4b3c-4909-befd-07c1f8ceccd4.shogun-image {
    
    
  }


.s-bea9485d-4b3c-4909-befd-07c1f8ceccd4 .shogun-image-content {
  
    align-items: center;
  
}

.s-bea9485d-4b3c-4909-befd-07c1f8ceccd4.shg-align-container {
  text-align: left
}

.s-bea9485d-4b3c-4909-befd-07c1f8ceccd4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bea9485d-4b3c-4909-befd-07c1f8ceccd4.shogun-image {
  box-sizing: border-box;
}


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





  img.s-bea9485d-4b3c-4909-befd-07c1f8ceccd4.shogun-image {
    
    
  }


.s-bea9485d-4b3c-4909-befd-07c1f8ceccd4 .shogun-image-content {
  
    align-items: center;
  
}

.s-bea9485d-4b3c-4909-befd-07c1f8ceccd4.shg-align-container {
  text-align: left
}

.s-bea9485d-4b3c-4909-befd-07c1f8ceccd4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bea9485d-4b3c-4909-befd-07c1f8ceccd4.shogun-image {
  box-sizing: border-box;
}


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





  img.s-bea9485d-4b3c-4909-befd-07c1f8ceccd4.shogun-image {
    
    
  }


.s-bea9485d-4b3c-4909-befd-07c1f8ceccd4 .shogun-image-content {
  
    align-items: center;
  
}

.s-bea9485d-4b3c-4909-befd-07c1f8ceccd4.shg-align-container {
  text-align: left
}

.s-bea9485d-4b3c-4909-befd-07c1f8ceccd4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bea9485d-4b3c-4909-befd-07c1f8ceccd4.shogun-image {
  box-sizing: border-box;
}


}
#s-77f833a1-ce32-4e95-b119-20b3a3e48040 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-baae9056-4149-43a9-92dc-1e35724c4c22 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 300px;
}

#s-dfd9152c-dce8-4d5d-896b-5cedf84afb3f {
  border-radius: 15px;
max-width: 300px;
text-align: left;
}







  img.s-dfd9152c-dce8-4d5d-896b-5cedf84afb3f.shogun-image {
    
    
  }


.s-dfd9152c-dce8-4d5d-896b-5cedf84afb3f .shogun-image-content {
  
    align-items: center;
  
}

.s-dfd9152c-dce8-4d5d-896b-5cedf84afb3f.shg-align-container {
  text-align: left
}

.s-dfd9152c-dce8-4d5d-896b-5cedf84afb3f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dfd9152c-dce8-4d5d-896b-5cedf84afb3f.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-dfd9152c-dce8-4d5d-896b-5cedf84afb3f.shogun-image {
    
    
  }


.s-dfd9152c-dce8-4d5d-896b-5cedf84afb3f .shogun-image-content {
  
    align-items: center;
  
}

.s-dfd9152c-dce8-4d5d-896b-5cedf84afb3f.shg-align-container {
  text-align: left
}

.s-dfd9152c-dce8-4d5d-896b-5cedf84afb3f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dfd9152c-dce8-4d5d-896b-5cedf84afb3f.shogun-image {
  box-sizing: border-box;
}


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





  img.s-dfd9152c-dce8-4d5d-896b-5cedf84afb3f.shogun-image {
    
    
  }


.s-dfd9152c-dce8-4d5d-896b-5cedf84afb3f .shogun-image-content {
  
    align-items: center;
  
}

.s-dfd9152c-dce8-4d5d-896b-5cedf84afb3f.shg-align-container {
  text-align: left
}

.s-dfd9152c-dce8-4d5d-896b-5cedf84afb3f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dfd9152c-dce8-4d5d-896b-5cedf84afb3f.shogun-image {
  box-sizing: border-box;
}


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





  img.s-dfd9152c-dce8-4d5d-896b-5cedf84afb3f.shogun-image {
    
    
  }


.s-dfd9152c-dce8-4d5d-896b-5cedf84afb3f .shogun-image-content {
  
    align-items: center;
  
}

.s-dfd9152c-dce8-4d5d-896b-5cedf84afb3f.shg-align-container {
  text-align: left
}

.s-dfd9152c-dce8-4d5d-896b-5cedf84afb3f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dfd9152c-dce8-4d5d-896b-5cedf84afb3f.shogun-image {
  box-sizing: border-box;
}


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





  img.s-dfd9152c-dce8-4d5d-896b-5cedf84afb3f.shogun-image {
    
    
  }


.s-dfd9152c-dce8-4d5d-896b-5cedf84afb3f .shogun-image-content {
  
    align-items: center;
  
}

.s-dfd9152c-dce8-4d5d-896b-5cedf84afb3f.shg-align-container {
  text-align: left
}

.s-dfd9152c-dce8-4d5d-896b-5cedf84afb3f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dfd9152c-dce8-4d5d-896b-5cedf84afb3f.shogun-image {
  box-sizing: border-box;
}


}
#s-d8f5032b-6c24-444f-badb-3cdc9df34747 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-4ec57d2d-2890-441e-a778-5ab7754f480a {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 300px;
}

@media (min-width: 0px) {
[id="s-034f22eb-56b2-48ff-a98a-4dbb8bbb4ae9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-034f22eb-56b2-48ff-a98a-4dbb8bbb4ae9"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-034f22eb-56b2-48ff-a98a-4dbb8bbb4ae9"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-034f22eb-56b2-48ff-a98a-4dbb8bbb4ae9"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-26940e35-a790-45ac-8861-baa888520dd5 {
  border-style: solid;
border-color: #2C2A34;
border-radius: 15px;
max-width: 300px;
text-align: left;
}







  img.s-26940e35-a790-45ac-8861-baa888520dd5.shogun-image {
    
    
  }


.s-26940e35-a790-45ac-8861-baa888520dd5 .shogun-image-content {
  
    align-items: center;
  
}

.s-26940e35-a790-45ac-8861-baa888520dd5.shg-align-container {
  text-align: left
}

.s-26940e35-a790-45ac-8861-baa888520dd5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26940e35-a790-45ac-8861-baa888520dd5.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-26940e35-a790-45ac-8861-baa888520dd5.shogun-image {
    
    
  }


.s-26940e35-a790-45ac-8861-baa888520dd5 .shogun-image-content {
  
    align-items: center;
  
}

.s-26940e35-a790-45ac-8861-baa888520dd5.shg-align-container {
  text-align: left
}

.s-26940e35-a790-45ac-8861-baa888520dd5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26940e35-a790-45ac-8861-baa888520dd5.shogun-image {
  box-sizing: border-box;
}


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





  img.s-26940e35-a790-45ac-8861-baa888520dd5.shogun-image {
    
    
  }


.s-26940e35-a790-45ac-8861-baa888520dd5 .shogun-image-content {
  
    align-items: center;
  
}

.s-26940e35-a790-45ac-8861-baa888520dd5.shg-align-container {
  text-align: left
}

.s-26940e35-a790-45ac-8861-baa888520dd5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26940e35-a790-45ac-8861-baa888520dd5.shogun-image {
  box-sizing: border-box;
}


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





  img.s-26940e35-a790-45ac-8861-baa888520dd5.shogun-image {
    
    
  }


.s-26940e35-a790-45ac-8861-baa888520dd5 .shogun-image-content {
  
    align-items: center;
  
}

.s-26940e35-a790-45ac-8861-baa888520dd5.shg-align-container {
  text-align: left
}

.s-26940e35-a790-45ac-8861-baa888520dd5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26940e35-a790-45ac-8861-baa888520dd5.shogun-image {
  box-sizing: border-box;
}


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





  img.s-26940e35-a790-45ac-8861-baa888520dd5.shogun-image {
    
    
  }


.s-26940e35-a790-45ac-8861-baa888520dd5 .shogun-image-content {
  
    align-items: center;
  
}

.s-26940e35-a790-45ac-8861-baa888520dd5.shg-align-container {
  text-align: left
}

.s-26940e35-a790-45ac-8861-baa888520dd5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26940e35-a790-45ac-8861-baa888520dd5.shogun-image {
  box-sizing: border-box;
}


}
#s-e1a7fd82-1394-4191-b43b-3a00d719d712 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-c165e173-04e7-4aaa-ae86-f1f7b6fabe98 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 300px;
}

#s-07b34bcf-d25f-459b-b0be-6b4c7bbd6988 {
  border-style: solid;
border-color: #2C2A34;
border-radius: 15px;
max-width: 300px;
text-align: left;
}







  img.s-07b34bcf-d25f-459b-b0be-6b4c7bbd6988.shogun-image {
    
    
  }


.s-07b34bcf-d25f-459b-b0be-6b4c7bbd6988 .shogun-image-content {
  
    align-items: center;
  
}

.s-07b34bcf-d25f-459b-b0be-6b4c7bbd6988.shg-align-container {
  text-align: left
}

.s-07b34bcf-d25f-459b-b0be-6b4c7bbd6988.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-07b34bcf-d25f-459b-b0be-6b4c7bbd6988.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-07b34bcf-d25f-459b-b0be-6b4c7bbd6988.shogun-image {
    
    
  }


.s-07b34bcf-d25f-459b-b0be-6b4c7bbd6988 .shogun-image-content {
  
    align-items: center;
  
}

.s-07b34bcf-d25f-459b-b0be-6b4c7bbd6988.shg-align-container {
  text-align: left
}

.s-07b34bcf-d25f-459b-b0be-6b4c7bbd6988.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-07b34bcf-d25f-459b-b0be-6b4c7bbd6988.shogun-image {
  box-sizing: border-box;
}


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





  img.s-07b34bcf-d25f-459b-b0be-6b4c7bbd6988.shogun-image {
    
    
  }


.s-07b34bcf-d25f-459b-b0be-6b4c7bbd6988 .shogun-image-content {
  
    align-items: center;
  
}

.s-07b34bcf-d25f-459b-b0be-6b4c7bbd6988.shg-align-container {
  text-align: left
}

.s-07b34bcf-d25f-459b-b0be-6b4c7bbd6988.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-07b34bcf-d25f-459b-b0be-6b4c7bbd6988.shogun-image {
  box-sizing: border-box;
}


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





  img.s-07b34bcf-d25f-459b-b0be-6b4c7bbd6988.shogun-image {
    
    
  }


.s-07b34bcf-d25f-459b-b0be-6b4c7bbd6988 .shogun-image-content {
  
    align-items: center;
  
}

.s-07b34bcf-d25f-459b-b0be-6b4c7bbd6988.shg-align-container {
  text-align: left
}

.s-07b34bcf-d25f-459b-b0be-6b4c7bbd6988.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-07b34bcf-d25f-459b-b0be-6b4c7bbd6988.shogun-image {
  box-sizing: border-box;
}


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





  img.s-07b34bcf-d25f-459b-b0be-6b4c7bbd6988.shogun-image {
    
    
  }


.s-07b34bcf-d25f-459b-b0be-6b4c7bbd6988 .shogun-image-content {
  
    align-items: center;
  
}

.s-07b34bcf-d25f-459b-b0be-6b4c7bbd6988.shg-align-container {
  text-align: left
}

.s-07b34bcf-d25f-459b-b0be-6b4c7bbd6988.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-07b34bcf-d25f-459b-b0be-6b4c7bbd6988.shogun-image {
  box-sizing: border-box;
}


}
#s-91f54825-6eec-4074-b28a-6920047b1c90 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-ad9df994-8e03-45ee-96db-e24d6638e4f2 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 300px;
}

#s-b26f660b-c6aa-40fc-85bf-2c0532f818f1 {
  border-radius: 15px;
max-width: 300px;
text-align: left;
}







  img.s-b26f660b-c6aa-40fc-85bf-2c0532f818f1.shogun-image {
    
    
  }


.s-b26f660b-c6aa-40fc-85bf-2c0532f818f1 .shogun-image-content {
  
    align-items: center;
  
}

.s-b26f660b-c6aa-40fc-85bf-2c0532f818f1.shg-align-container {
  text-align: left
}

.s-b26f660b-c6aa-40fc-85bf-2c0532f818f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b26f660b-c6aa-40fc-85bf-2c0532f818f1.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-b26f660b-c6aa-40fc-85bf-2c0532f818f1.shogun-image {
    
    
  }


.s-b26f660b-c6aa-40fc-85bf-2c0532f818f1 .shogun-image-content {
  
    align-items: center;
  
}

.s-b26f660b-c6aa-40fc-85bf-2c0532f818f1.shg-align-container {
  text-align: left
}

.s-b26f660b-c6aa-40fc-85bf-2c0532f818f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b26f660b-c6aa-40fc-85bf-2c0532f818f1.shogun-image {
  box-sizing: border-box;
}


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





  img.s-b26f660b-c6aa-40fc-85bf-2c0532f818f1.shogun-image {
    
    
  }


.s-b26f660b-c6aa-40fc-85bf-2c0532f818f1 .shogun-image-content {
  
    align-items: center;
  
}

.s-b26f660b-c6aa-40fc-85bf-2c0532f818f1.shg-align-container {
  text-align: left
}

.s-b26f660b-c6aa-40fc-85bf-2c0532f818f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b26f660b-c6aa-40fc-85bf-2c0532f818f1.shogun-image {
  box-sizing: border-box;
}


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





  img.s-b26f660b-c6aa-40fc-85bf-2c0532f818f1.shogun-image {
    
    
  }


.s-b26f660b-c6aa-40fc-85bf-2c0532f818f1 .shogun-image-content {
  
    align-items: center;
  
}

.s-b26f660b-c6aa-40fc-85bf-2c0532f818f1.shg-align-container {
  text-align: left
}

.s-b26f660b-c6aa-40fc-85bf-2c0532f818f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b26f660b-c6aa-40fc-85bf-2c0532f818f1.shogun-image {
  box-sizing: border-box;
}


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





  img.s-b26f660b-c6aa-40fc-85bf-2c0532f818f1.shogun-image {
    
    
  }


.s-b26f660b-c6aa-40fc-85bf-2c0532f818f1 .shogun-image-content {
  
    align-items: center;
  
}

.s-b26f660b-c6aa-40fc-85bf-2c0532f818f1.shg-align-container {
  text-align: left
}

.s-b26f660b-c6aa-40fc-85bf-2c0532f818f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b26f660b-c6aa-40fc-85bf-2c0532f818f1.shogun-image {
  box-sizing: border-box;
}


}
#s-81e8cf43-ce06-43f0-9c7c-c1978d99e39f {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-84861891-d63e-49af-a7c7-73912e221c8a {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 300px;
}

#s-b9a2f940-cf7b-43ec-ac4a-7a65bc614fe6 {
  margin-top: 10px;
margin-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-6ccf7930-e8a7-49c6-af3c-cd10e1b24472"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6ccf7930-e8a7-49c6-af3c-cd10e1b24472"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-6ccf7930-e8a7-49c6-af3c-cd10e1b24472"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-6ccf7930-e8a7-49c6-af3c-cd10e1b24472"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-3623601c-cb20-4153-b31f-307e9276fb35 {
  border-style: solid;
border-color: #2C2A34;
border-radius: 15px;
max-width: 300px;
text-align: left;
}







  img.s-3623601c-cb20-4153-b31f-307e9276fb35.shogun-image {
    
    
  }


.s-3623601c-cb20-4153-b31f-307e9276fb35 .shogun-image-content {
  
    align-items: center;
  
}

.s-3623601c-cb20-4153-b31f-307e9276fb35.shg-align-container {
  text-align: left
}

.s-3623601c-cb20-4153-b31f-307e9276fb35.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3623601c-cb20-4153-b31f-307e9276fb35.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-3623601c-cb20-4153-b31f-307e9276fb35.shogun-image {
    
    
  }


.s-3623601c-cb20-4153-b31f-307e9276fb35 .shogun-image-content {
  
    align-items: center;
  
}

.s-3623601c-cb20-4153-b31f-307e9276fb35.shg-align-container {
  text-align: left
}

.s-3623601c-cb20-4153-b31f-307e9276fb35.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3623601c-cb20-4153-b31f-307e9276fb35.shogun-image {
  box-sizing: border-box;
}


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





  img.s-3623601c-cb20-4153-b31f-307e9276fb35.shogun-image {
    
    
  }


.s-3623601c-cb20-4153-b31f-307e9276fb35 .shogun-image-content {
  
    align-items: center;
  
}

.s-3623601c-cb20-4153-b31f-307e9276fb35.shg-align-container {
  text-align: left
}

.s-3623601c-cb20-4153-b31f-307e9276fb35.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3623601c-cb20-4153-b31f-307e9276fb35.shogun-image {
  box-sizing: border-box;
}


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





  img.s-3623601c-cb20-4153-b31f-307e9276fb35.shogun-image {
    
    
  }


.s-3623601c-cb20-4153-b31f-307e9276fb35 .shogun-image-content {
  
    align-items: center;
  
}

.s-3623601c-cb20-4153-b31f-307e9276fb35.shg-align-container {
  text-align: left
}

.s-3623601c-cb20-4153-b31f-307e9276fb35.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3623601c-cb20-4153-b31f-307e9276fb35.shogun-image {
  box-sizing: border-box;
}


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





  img.s-3623601c-cb20-4153-b31f-307e9276fb35.shogun-image {
    
    
  }


.s-3623601c-cb20-4153-b31f-307e9276fb35 .shogun-image-content {
  
    align-items: center;
  
}

.s-3623601c-cb20-4153-b31f-307e9276fb35.shg-align-container {
  text-align: left
}

.s-3623601c-cb20-4153-b31f-307e9276fb35.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3623601c-cb20-4153-b31f-307e9276fb35.shogun-image {
  box-sizing: border-box;
}


}
#s-20b9b649-b318-425b-9129-7c8382036c98 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-1e4d2290-cf12-46e7-a625-3a9f5f35aa6d {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 300px;
}

#s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b {
  border-style: solid;
border-color: #2C2A34;
border-radius: 15px;
max-width: 300px;
aspect-ratio: 1/1;
text-align: left;
}





  #s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b img.shogun-image,
  #s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b {
    width: 100%;
    height: auto;
  }



  img.s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b.shogun-image {
    
    
  }


.s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b .shogun-image-content {
  
    align-items: center;
  
}

.s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b.shg-align-container {
  text-align: left
}

.s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b img.shogun-image,
  #s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b {
    width: 100%;
    height: auto;
  }



  img.s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b.shogun-image {
    
    
  }


.s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b .shogun-image-content {
  
    align-items: center;
  
}

.s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b.shg-align-container {
  text-align: left
}

.s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b.shogun-image {
  box-sizing: border-box;
}


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



  #s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b img.shogun-image,
  #s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b {
    width: 100%;
    height: auto;
  }



  img.s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b.shogun-image {
    
    
  }


.s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b .shogun-image-content {
  
    align-items: center;
  
}

.s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b.shg-align-container {
  text-align: left
}

.s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b.shogun-image {
  box-sizing: border-box;
}


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



  #s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b img.shogun-image,
  #s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b {
    width: 100%;
    height: auto;
  }



  img.s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b.shogun-image {
    
    
  }


.s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b .shogun-image-content {
  
    align-items: center;
  
}

.s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b.shg-align-container {
  text-align: left
}

.s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b.shogun-image {
  box-sizing: border-box;
}


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



  #s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b img.shogun-image,
  #s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b {
    width: 100%;
    height: auto;
  }



  img.s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b.shogun-image {
    
    
  }


.s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b .shogun-image-content {
  
    align-items: center;
  
}

.s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b.shg-align-container {
  text-align: left
}

.s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1cb8d14c-468a-4ee9-ac6b-0b0be7d7c34b.shogun-image {
  box-sizing: border-box;
}


}
#s-bd94c18a-febe-4809-a9e3-005e20230114 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 300px;
}

#s-57c0051f-5db8-4230-aba0-627b35251805 {
  border-radius: 15px;
max-width: 300px;
text-align: left;
}







  img.s-57c0051f-5db8-4230-aba0-627b35251805.shogun-image {
    
    
  }


.s-57c0051f-5db8-4230-aba0-627b35251805 .shogun-image-content {
  
    align-items: center;
  
}

.s-57c0051f-5db8-4230-aba0-627b35251805.shg-align-container {
  text-align: left
}

.s-57c0051f-5db8-4230-aba0-627b35251805.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-57c0051f-5db8-4230-aba0-627b35251805.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-57c0051f-5db8-4230-aba0-627b35251805.shogun-image {
    
    
  }


.s-57c0051f-5db8-4230-aba0-627b35251805 .shogun-image-content {
  
    align-items: center;
  
}

.s-57c0051f-5db8-4230-aba0-627b35251805.shg-align-container {
  text-align: left
}

.s-57c0051f-5db8-4230-aba0-627b35251805.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-57c0051f-5db8-4230-aba0-627b35251805.shogun-image {
  box-sizing: border-box;
}


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





  img.s-57c0051f-5db8-4230-aba0-627b35251805.shogun-image {
    
    
  }


.s-57c0051f-5db8-4230-aba0-627b35251805 .shogun-image-content {
  
    align-items: center;
  
}

.s-57c0051f-5db8-4230-aba0-627b35251805.shg-align-container {
  text-align: left
}

.s-57c0051f-5db8-4230-aba0-627b35251805.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-57c0051f-5db8-4230-aba0-627b35251805.shogun-image {
  box-sizing: border-box;
}


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





  img.s-57c0051f-5db8-4230-aba0-627b35251805.shogun-image {
    
    
  }


.s-57c0051f-5db8-4230-aba0-627b35251805 .shogun-image-content {
  
    align-items: center;
  
}

.s-57c0051f-5db8-4230-aba0-627b35251805.shg-align-container {
  text-align: left
}

.s-57c0051f-5db8-4230-aba0-627b35251805.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-57c0051f-5db8-4230-aba0-627b35251805.shogun-image {
  box-sizing: border-box;
}


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





  img.s-57c0051f-5db8-4230-aba0-627b35251805.shogun-image {
    
    
  }


.s-57c0051f-5db8-4230-aba0-627b35251805 .shogun-image-content {
  
    align-items: center;
  
}

.s-57c0051f-5db8-4230-aba0-627b35251805.shg-align-container {
  text-align: left
}

.s-57c0051f-5db8-4230-aba0-627b35251805.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-57c0051f-5db8-4230-aba0-627b35251805.shogun-image {
  box-sizing: border-box;
}


}
#s-d82d03b4-f9e1-4b92-94ed-f0b955f507cf {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-adcb1901-56a4-4d69-bda7-f60d37a05825 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 300px;
}

@media (min-width: 0px) {
[id="s-103bc772-cdfe-435f-98e7-5cb4cc74c7a1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-103bc772-cdfe-435f-98e7-5cb4cc74c7a1"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-103bc772-cdfe-435f-98e7-5cb4cc74c7a1"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-103bc772-cdfe-435f-98e7-5cb4cc74c7a1"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-86c7c853-0e7b-43ba-a916-06c549360e7f {
  border-style: solid;
border-color: #2C2A34;
border-radius: 15px;
max-width: 300px;
text-align: left;
}







  img.s-86c7c853-0e7b-43ba-a916-06c549360e7f.shogun-image {
    
    
  }


.s-86c7c853-0e7b-43ba-a916-06c549360e7f .shogun-image-content {
  
    align-items: center;
  
}

.s-86c7c853-0e7b-43ba-a916-06c549360e7f.shg-align-container {
  text-align: left
}

.s-86c7c853-0e7b-43ba-a916-06c549360e7f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-86c7c853-0e7b-43ba-a916-06c549360e7f.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-86c7c853-0e7b-43ba-a916-06c549360e7f.shogun-image {
    
    
  }


.s-86c7c853-0e7b-43ba-a916-06c549360e7f .shogun-image-content {
  
    align-items: center;
  
}

.s-86c7c853-0e7b-43ba-a916-06c549360e7f.shg-align-container {
  text-align: left
}

.s-86c7c853-0e7b-43ba-a916-06c549360e7f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-86c7c853-0e7b-43ba-a916-06c549360e7f.shogun-image {
  box-sizing: border-box;
}


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





  img.s-86c7c853-0e7b-43ba-a916-06c549360e7f.shogun-image {
    
    
  }


.s-86c7c853-0e7b-43ba-a916-06c549360e7f .shogun-image-content {
  
    align-items: center;
  
}

.s-86c7c853-0e7b-43ba-a916-06c549360e7f.shg-align-container {
  text-align: left
}

.s-86c7c853-0e7b-43ba-a916-06c549360e7f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-86c7c853-0e7b-43ba-a916-06c549360e7f.shogun-image {
  box-sizing: border-box;
}


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





  img.s-86c7c853-0e7b-43ba-a916-06c549360e7f.shogun-image {
    
    
  }


.s-86c7c853-0e7b-43ba-a916-06c549360e7f .shogun-image-content {
  
    align-items: center;
  
}

.s-86c7c853-0e7b-43ba-a916-06c549360e7f.shg-align-container {
  text-align: left
}

.s-86c7c853-0e7b-43ba-a916-06c549360e7f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-86c7c853-0e7b-43ba-a916-06c549360e7f.shogun-image {
  box-sizing: border-box;
}


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





  img.s-86c7c853-0e7b-43ba-a916-06c549360e7f.shogun-image {
    
    
  }


.s-86c7c853-0e7b-43ba-a916-06c549360e7f .shogun-image-content {
  
    align-items: center;
  
}

.s-86c7c853-0e7b-43ba-a916-06c549360e7f.shg-align-container {
  text-align: left
}

.s-86c7c853-0e7b-43ba-a916-06c549360e7f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-86c7c853-0e7b-43ba-a916-06c549360e7f.shogun-image {
  box-sizing: border-box;
}


}
#s-6a1ed56f-3358-4722-b5a2-6e9038d38f69 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-334dbf72-7f7a-448c-aecd-98eb7f0dc963 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 300px;
}

#s-12ae7fa9-7f74-4628-9f59-fd143311d5c1 {
  border-style: solid;
border-color: #2C2A34;
border-radius: 15px;
max-width: 300px;
text-align: left;
}







  img.s-12ae7fa9-7f74-4628-9f59-fd143311d5c1.shogun-image {
    
    
  }


.s-12ae7fa9-7f74-4628-9f59-fd143311d5c1 .shogun-image-content {
  
    align-items: center;
  
}

.s-12ae7fa9-7f74-4628-9f59-fd143311d5c1.shg-align-container {
  text-align: left
}

.s-12ae7fa9-7f74-4628-9f59-fd143311d5c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-12ae7fa9-7f74-4628-9f59-fd143311d5c1.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-12ae7fa9-7f74-4628-9f59-fd143311d5c1.shogun-image {
    
    
  }


.s-12ae7fa9-7f74-4628-9f59-fd143311d5c1 .shogun-image-content {
  
    align-items: center;
  
}

.s-12ae7fa9-7f74-4628-9f59-fd143311d5c1.shg-align-container {
  text-align: left
}

.s-12ae7fa9-7f74-4628-9f59-fd143311d5c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-12ae7fa9-7f74-4628-9f59-fd143311d5c1.shogun-image {
  box-sizing: border-box;
}


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





  img.s-12ae7fa9-7f74-4628-9f59-fd143311d5c1.shogun-image {
    
    
  }


.s-12ae7fa9-7f74-4628-9f59-fd143311d5c1 .shogun-image-content {
  
    align-items: center;
  
}

.s-12ae7fa9-7f74-4628-9f59-fd143311d5c1.shg-align-container {
  text-align: left
}

.s-12ae7fa9-7f74-4628-9f59-fd143311d5c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-12ae7fa9-7f74-4628-9f59-fd143311d5c1.shogun-image {
  box-sizing: border-box;
}


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





  img.s-12ae7fa9-7f74-4628-9f59-fd143311d5c1.shogun-image {
    
    
  }


.s-12ae7fa9-7f74-4628-9f59-fd143311d5c1 .shogun-image-content {
  
    align-items: center;
  
}

.s-12ae7fa9-7f74-4628-9f59-fd143311d5c1.shg-align-container {
  text-align: left
}

.s-12ae7fa9-7f74-4628-9f59-fd143311d5c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-12ae7fa9-7f74-4628-9f59-fd143311d5c1.shogun-image {
  box-sizing: border-box;
}


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





  img.s-12ae7fa9-7f74-4628-9f59-fd143311d5c1.shogun-image {
    
    
  }


.s-12ae7fa9-7f74-4628-9f59-fd143311d5c1 .shogun-image-content {
  
    align-items: center;
  
}

.s-12ae7fa9-7f74-4628-9f59-fd143311d5c1.shg-align-container {
  text-align: left
}

.s-12ae7fa9-7f74-4628-9f59-fd143311d5c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-12ae7fa9-7f74-4628-9f59-fd143311d5c1.shogun-image {
  box-sizing: border-box;
}


}
#s-3a0a1508-f46f-40c4-9a9e-5c2356a741bf {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-bf1c801e-ac9d-4a14-b48d-2ad138d63f7c {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 300px;
}

#s-a21182be-efe1-45b0-8645-2d6a6480a277 {
  border-radius: 15px;
max-width: 300px;
text-align: left;
}







  img.s-a21182be-efe1-45b0-8645-2d6a6480a277.shogun-image {
    
    
  }


.s-a21182be-efe1-45b0-8645-2d6a6480a277 .shogun-image-content {
  
    align-items: center;
  
}

.s-a21182be-efe1-45b0-8645-2d6a6480a277.shg-align-container {
  text-align: left
}

.s-a21182be-efe1-45b0-8645-2d6a6480a277.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a21182be-efe1-45b0-8645-2d6a6480a277.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-a21182be-efe1-45b0-8645-2d6a6480a277.shogun-image {
    
    
  }


.s-a21182be-efe1-45b0-8645-2d6a6480a277 .shogun-image-content {
  
    align-items: center;
  
}

.s-a21182be-efe1-45b0-8645-2d6a6480a277.shg-align-container {
  text-align: left
}

.s-a21182be-efe1-45b0-8645-2d6a6480a277.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a21182be-efe1-45b0-8645-2d6a6480a277.shogun-image {
  box-sizing: border-box;
}


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





  img.s-a21182be-efe1-45b0-8645-2d6a6480a277.shogun-image {
    
    
  }


.s-a21182be-efe1-45b0-8645-2d6a6480a277 .shogun-image-content {
  
    align-items: center;
  
}

.s-a21182be-efe1-45b0-8645-2d6a6480a277.shg-align-container {
  text-align: left
}

.s-a21182be-efe1-45b0-8645-2d6a6480a277.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a21182be-efe1-45b0-8645-2d6a6480a277.shogun-image {
  box-sizing: border-box;
}


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





  img.s-a21182be-efe1-45b0-8645-2d6a6480a277.shogun-image {
    
    
  }


.s-a21182be-efe1-45b0-8645-2d6a6480a277 .shogun-image-content {
  
    align-items: center;
  
}

.s-a21182be-efe1-45b0-8645-2d6a6480a277.shg-align-container {
  text-align: left
}

.s-a21182be-efe1-45b0-8645-2d6a6480a277.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a21182be-efe1-45b0-8645-2d6a6480a277.shogun-image {
  box-sizing: border-box;
}


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





  img.s-a21182be-efe1-45b0-8645-2d6a6480a277.shogun-image {
    
    
  }


.s-a21182be-efe1-45b0-8645-2d6a6480a277 .shogun-image-content {
  
    align-items: center;
  
}

.s-a21182be-efe1-45b0-8645-2d6a6480a277.shg-align-container {
  text-align: left
}

.s-a21182be-efe1-45b0-8645-2d6a6480a277.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a21182be-efe1-45b0-8645-2d6a6480a277.shogun-image {
  box-sizing: border-box;
}


}
#s-833a3bf3-45a7-4a55-bb67-63ebc31dfbe1 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-4d2fae74-043a-462d-9fff-2b3b8615c2ce {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 300px;
}

#s-be60f22f-9c5c-482c-9e99-7c4087390f64 {
  margin-top: 10px;
margin-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-6ba868c4-34e8-41c3-81ba-bc1e13c47a75"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6ba868c4-34e8-41c3-81ba-bc1e13c47a75"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-6ba868c4-34e8-41c3-81ba-bc1e13c47a75"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-6ba868c4-34e8-41c3-81ba-bc1e13c47a75"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-3bdb387a-c1ee-4230-96c5-744fed8324c4 {
  border-style: solid;
border-color: #2C2A34;
border-radius: 15px;
max-width: 300px;
text-align: left;
}







  img.s-3bdb387a-c1ee-4230-96c5-744fed8324c4.shogun-image {
    
    
  }


.s-3bdb387a-c1ee-4230-96c5-744fed8324c4 .shogun-image-content {
  
    align-items: center;
  
}

.s-3bdb387a-c1ee-4230-96c5-744fed8324c4.shg-align-container {
  text-align: left
}

.s-3bdb387a-c1ee-4230-96c5-744fed8324c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3bdb387a-c1ee-4230-96c5-744fed8324c4.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-3bdb387a-c1ee-4230-96c5-744fed8324c4.shogun-image {
    
    
  }


.s-3bdb387a-c1ee-4230-96c5-744fed8324c4 .shogun-image-content {
  
    align-items: center;
  
}

.s-3bdb387a-c1ee-4230-96c5-744fed8324c4.shg-align-container {
  text-align: left
}

.s-3bdb387a-c1ee-4230-96c5-744fed8324c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3bdb387a-c1ee-4230-96c5-744fed8324c4.shogun-image {
  box-sizing: border-box;
}


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





  img.s-3bdb387a-c1ee-4230-96c5-744fed8324c4.shogun-image {
    
    
  }


.s-3bdb387a-c1ee-4230-96c5-744fed8324c4 .shogun-image-content {
  
    align-items: center;
  
}

.s-3bdb387a-c1ee-4230-96c5-744fed8324c4.shg-align-container {
  text-align: left
}

.s-3bdb387a-c1ee-4230-96c5-744fed8324c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3bdb387a-c1ee-4230-96c5-744fed8324c4.shogun-image {
  box-sizing: border-box;
}


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





  img.s-3bdb387a-c1ee-4230-96c5-744fed8324c4.shogun-image {
    
    
  }


.s-3bdb387a-c1ee-4230-96c5-744fed8324c4 .shogun-image-content {
  
    align-items: center;
  
}

.s-3bdb387a-c1ee-4230-96c5-744fed8324c4.shg-align-container {
  text-align: left
}

.s-3bdb387a-c1ee-4230-96c5-744fed8324c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3bdb387a-c1ee-4230-96c5-744fed8324c4.shogun-image {
  box-sizing: border-box;
}


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





  img.s-3bdb387a-c1ee-4230-96c5-744fed8324c4.shogun-image {
    
    
  }


.s-3bdb387a-c1ee-4230-96c5-744fed8324c4 .shogun-image-content {
  
    align-items: center;
  
}

.s-3bdb387a-c1ee-4230-96c5-744fed8324c4.shg-align-container {
  text-align: left
}

.s-3bdb387a-c1ee-4230-96c5-744fed8324c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3bdb387a-c1ee-4230-96c5-744fed8324c4.shogun-image {
  box-sizing: border-box;
}


}
#s-e24f925a-d0ec-45f2-9837-cf5dc2b10f82 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-12aeaa27-7de8-4504-8610-a0eb00a84ed5 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 300px;
}

#s-409813fb-1891-417e-b589-cdecbdf5bf10 {
  border-style: solid;
border-color: #2C2A34;
border-radius: 15px;
max-width: 300px;
text-align: left;
}







  img.s-409813fb-1891-417e-b589-cdecbdf5bf10.shogun-image {
    
    
  }


.s-409813fb-1891-417e-b589-cdecbdf5bf10 .shogun-image-content {
  
    align-items: center;
  
}

.s-409813fb-1891-417e-b589-cdecbdf5bf10.shg-align-container {
  text-align: left
}

.s-409813fb-1891-417e-b589-cdecbdf5bf10.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-409813fb-1891-417e-b589-cdecbdf5bf10.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-409813fb-1891-417e-b589-cdecbdf5bf10.shogun-image {
    
    
  }


.s-409813fb-1891-417e-b589-cdecbdf5bf10 .shogun-image-content {
  
    align-items: center;
  
}

.s-409813fb-1891-417e-b589-cdecbdf5bf10.shg-align-container {
  text-align: left
}

.s-409813fb-1891-417e-b589-cdecbdf5bf10.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-409813fb-1891-417e-b589-cdecbdf5bf10.shogun-image {
  box-sizing: border-box;
}


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





  img.s-409813fb-1891-417e-b589-cdecbdf5bf10.shogun-image {
    
    
  }


.s-409813fb-1891-417e-b589-cdecbdf5bf10 .shogun-image-content {
  
    align-items: center;
  
}

.s-409813fb-1891-417e-b589-cdecbdf5bf10.shg-align-container {
  text-align: left
}

.s-409813fb-1891-417e-b589-cdecbdf5bf10.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-409813fb-1891-417e-b589-cdecbdf5bf10.shogun-image {
  box-sizing: border-box;
}


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





  img.s-409813fb-1891-417e-b589-cdecbdf5bf10.shogun-image {
    
    
  }


.s-409813fb-1891-417e-b589-cdecbdf5bf10 .shogun-image-content {
  
    align-items: center;
  
}

.s-409813fb-1891-417e-b589-cdecbdf5bf10.shg-align-container {
  text-align: left
}

.s-409813fb-1891-417e-b589-cdecbdf5bf10.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-409813fb-1891-417e-b589-cdecbdf5bf10.shogun-image {
  box-sizing: border-box;
}


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





  img.s-409813fb-1891-417e-b589-cdecbdf5bf10.shogun-image {
    
    
  }


.s-409813fb-1891-417e-b589-cdecbdf5bf10 .shogun-image-content {
  
    align-items: center;
  
}

.s-409813fb-1891-417e-b589-cdecbdf5bf10.shg-align-container {
  text-align: left
}

.s-409813fb-1891-417e-b589-cdecbdf5bf10.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-409813fb-1891-417e-b589-cdecbdf5bf10.shogun-image {
  box-sizing: border-box;
}


}
#s-4bcd0b39-586f-415e-a1c2-56b9590070d1 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-4b0c6d92-3766-4ad0-b37b-7a01660eaa36 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 300px;
}

#s-f50c2852-0d8f-4e2d-b2d3-705a74ded586 {
  border-radius: 15px;
max-width: 300px;
text-align: left;
}







  img.s-f50c2852-0d8f-4e2d-b2d3-705a74ded586.shogun-image {
    
    
  }


.s-f50c2852-0d8f-4e2d-b2d3-705a74ded586 .shogun-image-content {
  
    align-items: center;
  
}

.s-f50c2852-0d8f-4e2d-b2d3-705a74ded586.shg-align-container {
  text-align: left
}

.s-f50c2852-0d8f-4e2d-b2d3-705a74ded586.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f50c2852-0d8f-4e2d-b2d3-705a74ded586.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-f50c2852-0d8f-4e2d-b2d3-705a74ded586.shogun-image {
    
    
  }


.s-f50c2852-0d8f-4e2d-b2d3-705a74ded586 .shogun-image-content {
  
    align-items: center;
  
}

.s-f50c2852-0d8f-4e2d-b2d3-705a74ded586.shg-align-container {
  text-align: left
}

.s-f50c2852-0d8f-4e2d-b2d3-705a74ded586.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f50c2852-0d8f-4e2d-b2d3-705a74ded586.shogun-image {
  box-sizing: border-box;
}


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





  img.s-f50c2852-0d8f-4e2d-b2d3-705a74ded586.shogun-image {
    
    
  }


.s-f50c2852-0d8f-4e2d-b2d3-705a74ded586 .shogun-image-content {
  
    align-items: center;
  
}

.s-f50c2852-0d8f-4e2d-b2d3-705a74ded586.shg-align-container {
  text-align: left
}

.s-f50c2852-0d8f-4e2d-b2d3-705a74ded586.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f50c2852-0d8f-4e2d-b2d3-705a74ded586.shogun-image {
  box-sizing: border-box;
}


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





  img.s-f50c2852-0d8f-4e2d-b2d3-705a74ded586.shogun-image {
    
    
  }


.s-f50c2852-0d8f-4e2d-b2d3-705a74ded586 .shogun-image-content {
  
    align-items: center;
  
}

.s-f50c2852-0d8f-4e2d-b2d3-705a74ded586.shg-align-container {
  text-align: left
}

.s-f50c2852-0d8f-4e2d-b2d3-705a74ded586.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f50c2852-0d8f-4e2d-b2d3-705a74ded586.shogun-image {
  box-sizing: border-box;
}


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





  img.s-f50c2852-0d8f-4e2d-b2d3-705a74ded586.shogun-image {
    
    
  }


.s-f50c2852-0d8f-4e2d-b2d3-705a74ded586 .shogun-image-content {
  
    align-items: center;
  
}

.s-f50c2852-0d8f-4e2d-b2d3-705a74ded586.shg-align-container {
  text-align: left
}

.s-f50c2852-0d8f-4e2d-b2d3-705a74ded586.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f50c2852-0d8f-4e2d-b2d3-705a74ded586.shogun-image {
  box-sizing: border-box;
}


}
#s-44556094-e0ad-43ac-b91a-8ae9f567c2ba {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-a5c61853-b9e6-4ad0-947a-171a62e6c060 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 300px;
}

#s-c93c515c-a6e1-428e-a394-e2f169fd4c33 {
  margin-top: 10px;
margin-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-c7ef60a8-3161-4f45-87d9-49da916cdcab"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c7ef60a8-3161-4f45-87d9-49da916cdcab"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-c7ef60a8-3161-4f45-87d9-49da916cdcab"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-c7ef60a8-3161-4f45-87d9-49da916cdcab"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-1c20ea9a-e75f-409b-9010-8d7f10e5a0fe {
  border-style: solid;
border-color: #2C2A34;
border-radius: 15px;
max-width: 300px;
text-align: left;
}







  img.s-1c20ea9a-e75f-409b-9010-8d7f10e5a0fe.shogun-image {
    
    
  }


.s-1c20ea9a-e75f-409b-9010-8d7f10e5a0fe .shogun-image-content {
  
    align-items: center;
  
}

.s-1c20ea9a-e75f-409b-9010-8d7f10e5a0fe.shg-align-container {
  text-align: left
}

.s-1c20ea9a-e75f-409b-9010-8d7f10e5a0fe.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1c20ea9a-e75f-409b-9010-8d7f10e5a0fe.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-1c20ea9a-e75f-409b-9010-8d7f10e5a0fe.shogun-image {
    
    
  }


.s-1c20ea9a-e75f-409b-9010-8d7f10e5a0fe .shogun-image-content {
  
    align-items: center;
  
}

.s-1c20ea9a-e75f-409b-9010-8d7f10e5a0fe.shg-align-container {
  text-align: left
}

.s-1c20ea9a-e75f-409b-9010-8d7f10e5a0fe.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1c20ea9a-e75f-409b-9010-8d7f10e5a0fe.shogun-image {
  box-sizing: border-box;
}


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





  img.s-1c20ea9a-e75f-409b-9010-8d7f10e5a0fe.shogun-image {
    
    
  }


.s-1c20ea9a-e75f-409b-9010-8d7f10e5a0fe .shogun-image-content {
  
    align-items: center;
  
}

.s-1c20ea9a-e75f-409b-9010-8d7f10e5a0fe.shg-align-container {
  text-align: left
}

.s-1c20ea9a-e75f-409b-9010-8d7f10e5a0fe.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1c20ea9a-e75f-409b-9010-8d7f10e5a0fe.shogun-image {
  box-sizing: border-box;
}


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





  img.s-1c20ea9a-e75f-409b-9010-8d7f10e5a0fe.shogun-image {
    
    
  }


.s-1c20ea9a-e75f-409b-9010-8d7f10e5a0fe .shogun-image-content {
  
    align-items: center;
  
}

.s-1c20ea9a-e75f-409b-9010-8d7f10e5a0fe.shg-align-container {
  text-align: left
}

.s-1c20ea9a-e75f-409b-9010-8d7f10e5a0fe.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1c20ea9a-e75f-409b-9010-8d7f10e5a0fe.shogun-image {
  box-sizing: border-box;
}


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





  img.s-1c20ea9a-e75f-409b-9010-8d7f10e5a0fe.shogun-image {
    
    
  }


.s-1c20ea9a-e75f-409b-9010-8d7f10e5a0fe .shogun-image-content {
  
    align-items: center;
  
}

.s-1c20ea9a-e75f-409b-9010-8d7f10e5a0fe.shg-align-container {
  text-align: left
}

.s-1c20ea9a-e75f-409b-9010-8d7f10e5a0fe.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1c20ea9a-e75f-409b-9010-8d7f10e5a0fe.shogun-image {
  box-sizing: border-box;
}


}
#s-7258af38-93e1-47af-a977-c6884d8226ec {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-149ec8c3-6795-4fde-8c0c-f21dc7133f03 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 300px;
}

#s-a2c0ead4-7518-41f8-9787-3b8a6b9299a5 {
  border-style: solid;
border-color: #2C2A34;
border-radius: 15px;
max-width: 300px;
text-align: left;
}







  img.s-a2c0ead4-7518-41f8-9787-3b8a6b9299a5.shogun-image {
    
    
  }


.s-a2c0ead4-7518-41f8-9787-3b8a6b9299a5 .shogun-image-content {
  
    align-items: center;
  
}

.s-a2c0ead4-7518-41f8-9787-3b8a6b9299a5.shg-align-container {
  text-align: left
}

.s-a2c0ead4-7518-41f8-9787-3b8a6b9299a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a2c0ead4-7518-41f8-9787-3b8a6b9299a5.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-a2c0ead4-7518-41f8-9787-3b8a6b9299a5.shogun-image {
    
    
  }


.s-a2c0ead4-7518-41f8-9787-3b8a6b9299a5 .shogun-image-content {
  
    align-items: center;
  
}

.s-a2c0ead4-7518-41f8-9787-3b8a6b9299a5.shg-align-container {
  text-align: left
}

.s-a2c0ead4-7518-41f8-9787-3b8a6b9299a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a2c0ead4-7518-41f8-9787-3b8a6b9299a5.shogun-image {
  box-sizing: border-box;
}


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





  img.s-a2c0ead4-7518-41f8-9787-3b8a6b9299a5.shogun-image {
    
    
  }


.s-a2c0ead4-7518-41f8-9787-3b8a6b9299a5 .shogun-image-content {
  
    align-items: center;
  
}

.s-a2c0ead4-7518-41f8-9787-3b8a6b9299a5.shg-align-container {
  text-align: left
}

.s-a2c0ead4-7518-41f8-9787-3b8a6b9299a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a2c0ead4-7518-41f8-9787-3b8a6b9299a5.shogun-image {
  box-sizing: border-box;
}


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





  img.s-a2c0ead4-7518-41f8-9787-3b8a6b9299a5.shogun-image {
    
    
  }


.s-a2c0ead4-7518-41f8-9787-3b8a6b9299a5 .shogun-image-content {
  
    align-items: center;
  
}

.s-a2c0ead4-7518-41f8-9787-3b8a6b9299a5.shg-align-container {
  text-align: left
}

.s-a2c0ead4-7518-41f8-9787-3b8a6b9299a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a2c0ead4-7518-41f8-9787-3b8a6b9299a5.shogun-image {
  box-sizing: border-box;
}


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





  img.s-a2c0ead4-7518-41f8-9787-3b8a6b9299a5.shogun-image {
    
    
  }


.s-a2c0ead4-7518-41f8-9787-3b8a6b9299a5 .shogun-image-content {
  
    align-items: center;
  
}

.s-a2c0ead4-7518-41f8-9787-3b8a6b9299a5.shg-align-container {
  text-align: left
}

.s-a2c0ead4-7518-41f8-9787-3b8a6b9299a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a2c0ead4-7518-41f8-9787-3b8a6b9299a5.shogun-image {
  box-sizing: border-box;
}


}
#s-d8ea7193-080c-4278-a44c-bf1a483881f2 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-94e3200a-df4c-46f7-b817-e57d79e0e0a9 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 300px;
}

#s-8354b049-03da-4057-bbdf-fb84a036a0b9 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-style: solid;
border-radius: 15px;
max-width: 300px;
text-align: left;
}







  img.s-8354b049-03da-4057-bbdf-fb84a036a0b9.shogun-image {
    
    
  }


.s-8354b049-03da-4057-bbdf-fb84a036a0b9 .shogun-image-content {
  
    align-items: center;
  
}

.s-8354b049-03da-4057-bbdf-fb84a036a0b9.shg-align-container {
  text-align: left
}

.s-8354b049-03da-4057-bbdf-fb84a036a0b9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8354b049-03da-4057-bbdf-fb84a036a0b9.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-8354b049-03da-4057-bbdf-fb84a036a0b9.shogun-image {
    
    
  }


.s-8354b049-03da-4057-bbdf-fb84a036a0b9 .shogun-image-content {
  
    align-items: center;
  
}

.s-8354b049-03da-4057-bbdf-fb84a036a0b9.shg-align-container {
  text-align: left
}

.s-8354b049-03da-4057-bbdf-fb84a036a0b9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8354b049-03da-4057-bbdf-fb84a036a0b9.shogun-image {
  box-sizing: border-box;
}


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





  img.s-8354b049-03da-4057-bbdf-fb84a036a0b9.shogun-image {
    
    
  }


.s-8354b049-03da-4057-bbdf-fb84a036a0b9 .shogun-image-content {
  
    align-items: center;
  
}

.s-8354b049-03da-4057-bbdf-fb84a036a0b9.shg-align-container {
  text-align: left
}

.s-8354b049-03da-4057-bbdf-fb84a036a0b9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8354b049-03da-4057-bbdf-fb84a036a0b9.shogun-image {
  box-sizing: border-box;
}


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





  img.s-8354b049-03da-4057-bbdf-fb84a036a0b9.shogun-image {
    
    
  }


.s-8354b049-03da-4057-bbdf-fb84a036a0b9 .shogun-image-content {
  
    align-items: center;
  
}

.s-8354b049-03da-4057-bbdf-fb84a036a0b9.shg-align-container {
  text-align: left
}

.s-8354b049-03da-4057-bbdf-fb84a036a0b9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8354b049-03da-4057-bbdf-fb84a036a0b9.shogun-image {
  box-sizing: border-box;
}


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





  img.s-8354b049-03da-4057-bbdf-fb84a036a0b9.shogun-image {
    
    
  }


.s-8354b049-03da-4057-bbdf-fb84a036a0b9 .shogun-image-content {
  
    align-items: center;
  
}

.s-8354b049-03da-4057-bbdf-fb84a036a0b9.shg-align-container {
  text-align: left
}

.s-8354b049-03da-4057-bbdf-fb84a036a0b9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8354b049-03da-4057-bbdf-fb84a036a0b9.shogun-image {
  box-sizing: border-box;
}


}
#s-3aca99f6-0843-40d8-b9d4-417097953694 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-3db3b84b-910a-4f76-bf6d-2f029020e17a {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 300px;
}

#s-e764ceb7-3429-4fc0-95ef-d34bbc70a730 {
  margin-top: 10px;
margin-bottom: 10px;
}

/*
  $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:after,.shg-c:before{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width:1024px){.shg-box,.shg-c{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,.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:focus,.shg-lightbox .shg-lightbox-close:hover{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 .3s}.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}